diff --git a/Genshin-Impact-Wish-Simulator/.gitignore b/Genshin-Impact-Wish-Simulator/.gitignore
new file mode 100644
index 00000000..7835d869
--- /dev/null
+++ b/Genshin-Impact-Wish-Simulator/.gitignore
@@ -0,0 +1,25 @@
+.DS_Store
+node_modules
+/build
+/dist
+/.svelte-kit
+/package
+/static/g
+
+.vercel_build_output
+.vercel
+.env
+
+README.html
+
+CNAME
+
+### Node ###
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+ads.txt
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/ambient.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/ambient.d.ts
deleted file mode 100644
index f2d05d17..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/ambient.d.ts
+++ /dev/null
@@ -1,166 +0,0 @@
-
-// this file is generated — do not edit it
-
-
-/// <reference types="@sveltejs/kit" />
-
-/**
- * Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env).
- * 
- * _Unlike_ [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination.
- * 
- * ```ts
- * import { API_KEY } from '$env/static/private';
- * ```
- * 
- * Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don't have a value until the app is deployed:
- * 
- * ```
- * MY_FEATURE_FLAG=""
- * ```
- * 
- * You can override `.env` values from the command line like so:
- * 
- * ```bash
- * MY_FEATURE_FLAG="enabled" npm run dev
- * ```
- */
-declare module '$env/static/private' {
-	export const SUDO_GID: string;
-	export const LESSOPEN: string;
-	export const MAIL: string;
-	export const USER: string;
-	export const npm_config_user_agent: string;
-	export const npm_node_execpath: string;
-	export const SHLVL: string;
-	export const npm_config_noproxy: string;
-	export const HOME: string;
-	export const OLDPWD: string;
-	export const npm_package_json: string;
-	export const npm_config_userconfig: string;
-	export const npm_config_local_prefix: string;
-	export const COLOR: string;
-	export const SUDO_UID: string;
-	export const LOGNAME: string;
-	export const _: string;
-	export const npm_config_prefix: string;
-	export const npm_config_npm_version: string;
-	export const TERM: string;
-	export const npm_config_cache: string;
-	export const npm_config_node_gyp: string;
-	export const PATH: string;
-	export const NODE: string;
-	export const npm_package_name: string;
-	export const LANG: string;
-	export const LS_COLORS: string;
-	export const npm_lifecycle_script: string;
-	export const SUDO_COMMAND: string;
-	export const SHELL: string;
-	export const npm_package_version: string;
-	export const npm_lifecycle_event: string;
-	export const PROMPT_COMMAND: string;
-	export const SUDO_USER: string;
-	export const LESSCLOSE: string;
-	export const npm_config_globalconfig: string;
-	export const npm_config_init_module: string;
-	export const PWD: string;
-	export const npm_execpath: string;
-	export const npm_config_global_prefix: string;
-	export const npm_command: string;
-	export const INIT_CWD: string;
-	export const EDITOR: string;
-	export const NODE_ENV: string;
-	export const VIPSHOME: string;
-}
-
-/**
- * Similar to [`$env/static/private`](https://kit.svelte.dev/docs/modules#$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
- * 
- * Values are replaced statically at build time.
- * 
- * ```ts
- * import { PUBLIC_BASE_URL } from '$env/static/public';
- * ```
- */
-declare module '$env/static/public' {
-
-}
-
-/**
- * This module provides access to runtime environment variables, as defined by the platform you're running on. For example if you're using [`adapter-node`](https://github.com/sveltejs/kit/tree/master/packages/adapter-node) (or running [`vite preview`](https://kit.svelte.dev/docs/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env).
- * 
- * This module cannot be imported into client-side code.
- * 
- * ```ts
- * import { env } from '$env/dynamic/private';
- * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE);
- * ```
- * 
- * > In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter.
- */
-declare module '$env/dynamic/private' {
-	export const env: {
-		SUDO_GID: string;
-		LESSOPEN: string;
-		MAIL: string;
-		USER: string;
-		npm_config_user_agent: string;
-		npm_node_execpath: string;
-		SHLVL: string;
-		npm_config_noproxy: string;
-		HOME: string;
-		OLDPWD: string;
-		npm_package_json: string;
-		npm_config_userconfig: string;
-		npm_config_local_prefix: string;
-		COLOR: string;
-		SUDO_UID: string;
-		LOGNAME: string;
-		_: string;
-		npm_config_prefix: string;
-		npm_config_npm_version: string;
-		TERM: string;
-		npm_config_cache: string;
-		npm_config_node_gyp: string;
-		PATH: string;
-		NODE: string;
-		npm_package_name: string;
-		LANG: string;
-		LS_COLORS: string;
-		npm_lifecycle_script: string;
-		SUDO_COMMAND: string;
-		SHELL: string;
-		npm_package_version: string;
-		npm_lifecycle_event: string;
-		PROMPT_COMMAND: string;
-		SUDO_USER: string;
-		LESSCLOSE: string;
-		npm_config_globalconfig: string;
-		npm_config_init_module: string;
-		PWD: string;
-		npm_execpath: string;
-		npm_config_global_prefix: string;
-		npm_command: string;
-		INIT_CWD: string;
-		EDITOR: string;
-		NODE_ENV: string;
-		VIPSHOME: string;
-		[key: string]: string | undefined;
-	}
-}
-
-/**
- * Similar to [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
- * 
- * Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests — when possible, use `$env/static/public` instead.
- * 
- * ```ts
- * import { env } from '$env/dynamic/public';
- * console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE);
- * ```
- */
-declare module '$env/dynamic/public' {
-	export const env: {
-		[key: string]: string | undefined;
-	}
-}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/build/hooks.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/build/hooks.js
deleted file mode 100644
index e69de29b..00000000
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/build/index.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/build/index.js
deleted file mode 100644
index e80620dd..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/build/index.js
+++ /dev/null
@@ -1,102 +0,0 @@
-
-import root from '__GENERATED__/root.svelte';
-import { respond } from '../../node_modules/@sveltejs/kit/src/runtime/server/index.js';
-import { set_paths, assets, base } from '../../node_modules/@sveltejs/kit/src/runtime/paths.js';
-import { set_prerendering } from '../../node_modules/@sveltejs/kit/src/runtime/env.js';
-import { set_private_env } from '../../node_modules/@sveltejs/kit/src/runtime/env-private.js';
-import { set_public_env } from '../../node_modules/@sveltejs/kit/src/runtime/env-public.js';
-
-const app_template = ({ head, body, assets, nonce }) => "<!DOCTYPE html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<meta\n\t\t\tname=\"viewport\"\n\t\t\tcontent=\"width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no\"\n\t\t/>\n\t\t<meta name=\"a.validate.02\" content=\"gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F\" />\n\t\t<meta name=\"google-site-verification\" content=\"zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI\" />\n\t\t<meta name=\"google-adsense-account\" content=\"ca-pub-1874822310102113\" />\n\n\t\t<meta property=\"og:type\" content=\"profile\" />\n\t\t<meta property=\"profile:username\" content=\"AguzzTN54\" />\n\t\t<meta property=\"twitter:card\" content=\"summary_large_image\" />\n\t\t<meta name=\"author\" content=\"AguzzTN54\" />\n\t\t<meta name=\"robots\" content=\"index, follow\" />\n\n\t\t<meta name=\"language\" content=\"English\" />\n\t\t<meta property=\"og:locale\" content=\"en_US\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"id_ID\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"it_IT\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"ja_JP\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"pt_BR\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"ru_RU\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"th_TH\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"vi_VN\" />\n\t\t<meta property=\"og:locale:alternate\" content=\"zh_CN\" />\n\t\t<title>Genshin Impact Wish Simulator</title>\n\n\t\t<link rel=\"stylesheet\" href=\"/icons.css\" />\n\t\t<link rel=\"icon\" href=\"/favicon.ico\" />\n\t\t<link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/apple-touch-icon.png\" />\n\t\t<link rel=\"mask-icon\" href=\"/safari-pinned-tab.svg\" color=\"#5bbad5\" />\n\t\t<meta name=\"msapplication-TileColor\" content=\"#2d89ef\" />\n\t\t<meta name=\"theme-color\" content=\"#ffffff\" />\n\n\t\t" + head + "\n\n\t\t<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-211756322-1\"></script>\n\t\t<script>\n\t\t\twindow.dataLayer = window.dataLayer || [];\n\t\t\tfunction gtag() {\n\t\t\t\tdataLayer.push(arguments);\n\t\t\t}\n\t\t\tgtag('js', new Date());\n\t\t\tgtag('config', 'UA-211756322-1');\n\t\t</script>\n\t</head>\n\t<body>\n\t\t<div id=\"svelte\" class=\"svelte\">" + body + "</div>\n\t</body>\n</html>\n";
-
-const error_template = ({ status, message }) => "<!DOCTYPE html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,\n\t\t\t\t\tUbuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid #ccc;\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n";
-
-let read = null;
-
-set_paths({"base":"","assets":""});
-
-let default_protocol = 'https';
-
-// allow paths to be globally overridden
-// in svelte-kit preview and in prerendering
-export function override(settings) {
-	default_protocol = settings.protocol || default_protocol;
-	set_paths(settings.paths);
-	set_prerendering(settings.prerendering);
-	read = settings.read;
-}
-
-export class Server {
-	constructor(manifest) {
-		this.options = {
-			csp: {"mode":"auto","directives":{"upgrade-insecure-requests":false,"block-all-mixed-content":false},"reportOnly":{"upgrade-insecure-requests":false,"block-all-mixed-content":false}},
-			csrf: {
-				check_origin: true,
-			},
-			dev: false,
-			handle_error: (error, event) => {
-				return this.options.hooks.handleError({
-					error,
-					event,
-
-					// TODO remove for 1.0
-					// @ts-expect-error
-					get request() {
-						throw new Error('request in handleError has been replaced with event. See https://github.com/sveltejs/kit/pull/3384 for details');
-					}
-				}) ?? { message: event.route.id != null ? 'Internal Error' : 'Not Found' };
-			},
-			hooks: null,
-			manifest,
-			paths: { base, assets },
-			public_env: {},
-			read,
-			root,
-			service_worker: false,
-			app_template,
-			app_template_contains_nonce: false,
-			error_template,
-			trailing_slash: "never"
-		};
-	}
-
-	/**
-	 * Take care: Some adapters may have to call `Server.init` per-request to set env vars,
-	 * so anything that shouldn't be rerun should be wrapped in an `if` block to make sure it hasn't
-	 * been done already.
-	 */
-	async init({ env }) {
-		const entries = Object.entries(env);
-
-		const prv = Object.fromEntries(entries.filter(([k]) => !k.startsWith('PUBLIC_')));
-
-		const pub = Object.fromEntries(entries.filter(([k]) => k.startsWith('PUBLIC_')));
-
-		set_private_env(prv);
-		set_public_env(pub);
-
-		this.options.public_env = pub;
-
-		if (!this.options.hooks) {
-			const module = await import("./hooks.js");
-
-			// TODO remove this for 1.0
-			if (module.externalFetch) {
-				throw new Error('externalFetch has been removed — use handleFetch instead. See https://github.com/sveltejs/kit/pull/6565 for details');
-			}
-
-			this.options.hooks = {
-				handle: module.handle || (({ event, resolve }) => resolve(event)),
-				handleError: module.handleError || (({ error }) => console.error(error.stack)),
-				handleFetch: module.handleFetch || (({ request, fetch }) => fetch(request))
-			};
-		}
-	}
-
-	async respond(request, options = {}) {
-		if (!(request instanceof Request)) {
-			throw new Error('The first argument to server.respond must be a Request object. See https://github.com/sveltejs/kit/pull/3384 for details');
-		}
-
-		return respond(request, this.options, options);
-	}
-}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/client-manifest.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/client-manifest.js
deleted file mode 100644
index 5765000e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/client-manifest.js
+++ /dev/null
@@ -1,31 +0,0 @@
-export { matchers } from './client-matchers.js';
-
-export const nodes = [() => import('./nodes/0'),
-	() => import('./nodes/1'),
-	() => import('./nodes/2'),
-	() => import('./nodes/3'),
-	() => import('./nodes/4'),
-	() => import('./nodes/5'),
-	() => import('./nodes/6'),
-	() => import('./nodes/7'),
-	() => import('./nodes/8'),
-	() => import('./nodes/9'),
-	() => import('./nodes/10')];
-
-export const server_loads = [];
-
-export const dictionary = {
-	"/": [2],
-	"/adkey": [3],
-	"/bnlist": [4],
-	"/install": [5],
-	"/privacy-policy": [6],
-	"/screen": [7],
-	"/screen/chars": [8],
-	"/screen/wishitem": [9],
-	"/screen/wishlist": [10]
-};
-
-export const hooks = {
-	handleError: (({ error }) => { console.error(error) }),
-};
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/client-matchers.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/client-matchers.js
deleted file mode 100644
index f6bd30a4..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/client-matchers.js
+++ /dev/null
@@ -1 +0,0 @@
-export const matchers = {};
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/0.js
deleted file mode 100644
index 9d93996b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/0.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import * as shared from "../../../src/routes/+layout.js";
-export { shared };
-export { default as component } from "../../../src/routes/+layout.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/1.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/1.js
deleted file mode 100644
index 40ef3d64..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/1.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/+error.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/10.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/10.js
deleted file mode 100644
index 4a58398d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/10.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/screen/wishlist/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/2.js
deleted file mode 100644
index efaa62f1..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/2.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/3.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/3.js
deleted file mode 100644
index 699c1484..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/3.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/adkey/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/4.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/4.js
deleted file mode 100644
index 68166d45..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/4.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/bnlist/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/5.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/5.js
deleted file mode 100644
index 302c1f99..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/5.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/install/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/6.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/6.js
deleted file mode 100644
index 431417cd..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/6.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/privacy-policy/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/7.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/7.js
deleted file mode 100644
index a995b4d8..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/7.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/screen/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/8.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/8.js
deleted file mode 100644
index 28cd9100..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/8.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/screen/chars/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/9.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/9.js
deleted file mode 100644
index 6f7b049c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/nodes/9.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as component } from "../../../src/routes/screen/wishitem/+page.svelte";
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/prerendered.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/prerendered.json
deleted file mode 100644
index 3fce26cf..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/prerendered.json
+++ /dev/null
@@ -1 +0,0 @@
-{"prerendered":{"pages":[["/",{"file":"index.html"}],["/adkey",{"file":"adkey.html"}],["/bnlist",{"file":"bnlist.html"}],["/install",{"file":"install.html"}],["/privacy-policy",{"file":"privacy-policy.html"}],["/screen",{"file":"screen.html"}],["/screen/chars",{"file":"screen/chars.html"}],["/screen/wishitem",{"file":"screen/wishitem.html"}],["/screen/wishlist",{"file":"screen/wishlist.html"}]],"assets":[],"redirects":[],"paths":["/","/adkey","/bnlist","/install","/privacy-policy","/screen","/screen/chars","/screen/wishitem","/screen/wishlist"]},"prerender_map":[["/",true],["/adkey",true],["/bnlist",true],["/install",true],["/privacy-policy",true],["/screen",true],["/screen/chars",true],["/screen/wishitem",true],["/screen/wishlist",true]]}
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/root.svelte b/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/root.svelte
deleted file mode 100644
index 789457f2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/generated/root.svelte
+++ /dev/null
@@ -1,53 +0,0 @@
-<!-- This file is generated by @sveltejs/kit — do not edit it! -->
-<script>
-	import { setContext, afterUpdate, onMount } from 'svelte';
-	import { browser } from '$app/environment';
-
-	// stores
-	export let stores;
-	export let page;
-
-	export let components;
-	export let form;
-	export let data_0 = null;
-	export let data_1 = null;
-
-	if (!browser) {
-		setContext('__svelte__', stores);
-	}
-
-	$: stores.page.set(page);
-	afterUpdate(stores.page.notify);
-
-	let mounted = false;
-	let navigated = false;
-	let title = null;
-
-	onMount(() => {
-		const unsubscribe = stores.page.subscribe(() => {
-			if (mounted) {
-				navigated = true;
-				title = document.title || 'untitled page';
-			}
-		});
-
-		mounted = true;
-		return unsubscribe;
-	});
-</script>
-
-{#if components[1]}
-	<svelte:component this={components[0]} data={data_0}>
-		<svelte:component this={components[1]} data={data_1} {form} />
-	</svelte:component>
-{:else}
-	<svelte:component this={components[0]} data={data_0} {form} />
-{/if}
-
-{#if mounted}
-	<div id="svelte-announcer" aria-live="assertive" aria-atomic="true" style="position: absolute; left: 0; top: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; width: 1px; height: 1px">
-		{#if navigated}
-			{title}
-		{/if}
-	</div>
-{/if}
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/.nojekyll b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/.nojekyll
deleted file mode 100644
index e69de29b..00000000
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/.well-known/assetlinks.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/.well-known/assetlinks.json
deleted file mode 100644
index e9da93cb..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/.well-known/assetlinks.json
+++ /dev/null
@@ -1,13 +0,0 @@
-[
-	{
-		"relation": ["delegate_permission/common.handle_all_urls"],
-		"target": {
-			"namespace": "android_app",
-			"package_name": "twa.wishsimulator.app",
-			"sha256_cert_fingerprints": [
-				"64:37:0F:C3:47:0D:34:DA:C0:8B:3D:DA:4E:F6:FB:55:13:BD:92:6C:71:25:75:14:BB:9D:58:3F:7B:AD:70:84",
-				"D8:1F:F7:07:1A:99:D9:4C:06:88:51:FC:9F:C5:51:6C:1F:37:2E:BC:13:EE:89:64:F4:99:85:AA:CF:DC:2F:D4"
-			]
-		}
-	}
-]
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/apple-touch-icon.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/apple-touch-icon.png
deleted file mode 100644
index 90aae3e4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/apple-touch-icon.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/appmanifest.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/appmanifest.json
deleted file mode 100644
index bce0ba27..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/appmanifest.json
+++ /dev/null
@@ -1 +0,0 @@
-{"short_name":"WishSimulator.App","start_url":"/?pwasc=homescreen","display":"fullscreen","background_color":"#ffffff","lang":"en","scope":"/","orientation":"landscape","id":"wishsimulator.app","theme_color":"#ffffff","display_override":["fullscreen","window-controls-overlay","standalone","minimal-ui","browser"],"scope_extensions":[{"origin":"wishsimulator.app"},{"origin":"wishsimulator.pages.dev"}],"categories":["games","utilities"],"dir":"auto","icons":[{"src":"./icons/icon-16x16.png","sizes":"16x16","type":"image/png"},{"src":"./icons/icon-32x32.png","sizes":"32x32","type":"image/png"},{"src":"./icons/icon-72x72.png","sizes":"72x72","type":"image/png"},{"src":"./icons/icon-96x96.png","sizes":"96x96","type":"image/png"},{"src":"./icons/icon-128x128.png","sizes":"128x128","type":"image/png"},{"src":"./icons/icon-144x144.png","sizes":"144x144","type":"image/png"},{"src":"./icons/icon-152x152.png","sizes":"152x152","type":"image/png"},{"src":"./icons/icon-192x192.png","sizes":"192x192","type":"image/png","purpose":"maskable"},{"src":"./icons/icon-256x256.png","sizes":"256x256","type":"image/png"},{"src":"./icons/icon-384x384.png","sizes":"384x384","type":"image/png","purpose":"any"},{"src":"./icons/icon-512x512.png","sizes":"512x512","type":"image/png"}],"screenshots":[{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561929-52a32a57-bd2c-473c-b25d-dcd8877ce253.jpg","label":"Section 1","type":"image/jpg"},{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561938-c8429695-d7fe-4cf2-8391-d3e78daa789c.jpg","label":"Section 2","type":"image/jpg"},{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561909-2f965a06-6cdb-45a3-92c9-646546d514f8.jpg","label":"Section 3","type":"image/jpg"},{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561919-b76b11e2-dbda-4534-845e-48714f60fc40.jpg","label":"Section 4","type":"image/jpg"}],"handle_links":"preferred","prefer_related_applications":true,"launch_handler":{"client_mode":["focus-existing","auto"]},"related_applications":[{"platform":"webapp","url":"undefined/appmanifest.json"},{"platform":"play","url":"https://play.google.com/store/apps/details?id=twa.wishsimulator.app","id":"twa.wishsimulator.app"}],"edge_side_panel":{"preferred_width":412}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/browserconfig.xml b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/browserconfig.xml
deleted file mode 100644
index 00a45a3c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/browserconfig.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<browserconfig>
-    <msapplication>
-        <tile>
-            <square150x150logo src="/icons/mstile-150x150.png"/>
-            <TileColor>#2d89ef</TileColor>
-        </tile>
-    </msapplication>
-</browserconfig>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/favicon.ico b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/favicon.ico
deleted file mode 100644
index 2c72e4b6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/favicon.ico and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/aaqishu.woff b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/aaqishu.woff
deleted file mode 100644
index c45eb701..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/aaqishu.woff and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.eot b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.eot
deleted file mode 100644
index 8a8c78c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.eot and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.svg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.svg
deleted file mode 100644
index 9c6849d7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.svg
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>Generated by Fontastic.me</metadata>
-<defs>
-<font id="genshin-icon" horiz-adv-x="512">
-<font-face font-family="genshin-icon" units-per-em="512" ascent="480" descent="-32"/>
-<missing-glyph horiz-adv-x="512" />
-
-<glyph glyph-name="anemo" unicode="&#97;" d="M238 88c13 4 7 2 18 9 11-7 5-5 19-9-5-18-9-12-14-33z m-10 18c16 14 19 11 24 28l9 0c4-15-3-2 8-15l15-13c-18 2-17 7-28 7-11 0-9-5-28-7z m-191 248c0-109 117-88 168-117 50-28 57-82 16-105-29-16-19 2-53 2 2-27 23-26 47-60 10-14 32-51 37-70l9 0c17 72 81 100 84 130-33 0-23-16-50-3-47 22-52 103 74 124 153 26 99 126 88 173l-10 0c0-148-169-152-186-214l-9 0c-6 23-30 37-50 48-26 14-42 21-66 37-37 24-71 74-71 134-17-13-28-49-28-79z m275-215c19 0 26-1 28 23-65 6-43 56-14 56 27 0 73-42 121-27 87 28 61 120 61 139-32-21-41-87-135-88-63-1-100-31-90-71 3-15 15-32 29-32z m-312 149c0-62 50-120 125-92 12 4 89 49 89-6 0-18-23-26-42-28 5-55 87-6 51 46-42 59-99 10-163 61-30 24-36 49-55 61-1-21-5-18-5-42z m359 154c0-78-22-122-79-172 50 4 139 53 139 107 0 73-7 93-79 131 6-23 19-37 19-66z m-266-32c0-45 5-73 47-103 18-13 65-35 93-37-7 9-18 15-29 26-37 38-50 91-50 146 0 29 13 43 18 66-27-15-30-13-52-36-15-15-27-35-27-62z"/>
-<glyph glyph-name="arrow-left" unicode="&#98;" d="M338 512l-256-256 256-255 0 0 0 128 0 0-128 127 128 128 0 0 0 128z m0-164l-92-92 92-91 91 91z m0-62l-30-30 30-29 29 29z"/>
-<glyph glyph-name="arrow-right" unicode="&#99;" d="M174 512l255-256-255-255-1 0 0 128 1 0 128 127-128 128-1 0 0 128z m0-164l91-92-91-91-92 91z m0-62l29-30-29-29-30 29z"/>
-<glyph glyph-name="bow" unicode="&#122;" d="M257 267c22 11 11-8 17 23-16 12-9-17-12 28l0 108c-22-6-9-5-24-15-14-10-13-7-27-14-9 18-9 24-10 47-3 33 4 34 5 61-78 0-129-30-166-72-66-74-32-137-22-183l63 0c16 68 6 24-6 68l-17 0c0-33 8-37-23-40-9 42 4 101 42 112 17 4 63 6 72-3 12-12 6-60 6-80l68 0c10-23-16-8 17-28 1-1 3-2 4-3 2-1 3-2 4-2 2-1 3-3 5-4 1 0 3-2 4-3z m13-10c11 23-9 12 22 17 13-15-16-8 28-12l109 1c-6-22-5-9-15-24-10-14-7-13-14-27 18-9 24-9 46-11 34-2 35 5 62 5 0-78-30-128-72-166-74-66-137-32-183-21l0 62c68 16 24 6 68-5l0-17c-33 0-37 7-40-23 42-10 100 4 111 42 5 17 7 62-2 72-12 12-60 5-81 5l0 68c-12 6-18 3-21 5-1 0-11 20-15 25-1 1-2 3-3 4z m146 135c21-5 25-11 51-12 3 40 42 91 45 131-39-3-91-42-130-45 0-26 6-30 11-51l23-23z m-313-250c23 0 28-3 44 6 14 8 16 17 19 34-9 23-3 34 6 51l125-6c3 2-3 18-40 46l-137 11c0-32-2-44-5-69-3-35-7-43-12-73z m131 68c0-42 4-45-40-45-24-22-39-20-39-63 33 15 82 17 130 17 0 34-11 68-11 102l-29 0c-4-7-3-7-11-11z m48 161l90 0 0-90-90 0z m139 71l22-22-283-283c-1-26-25-71-43-89l-48 0 0-7-27 0 0 26 7 0 0 49c19 19 62 41 89 42l283 284z"/>
-<glyph glyph-name="catalyst" unicode="&#101;" d="M254 502c2-37 7-69 17-98 4-2 9-6 15-9 8-2 15-5 22-8 8-2 17-3 26-3 48 1 88 38 81 19-10-32-47-70-2-142 41-11 99-19 74-24-46-8-87-23-122-46-10-17-24-32-41-43l0-41c-18 2-33-6-45-16-15-35-32-111-37-87-11 55-19 96-37 127-12 4-24 10-35 17-15-11-30-24-47-36-8-7-14-15-24-19-12-6 7 17 14 26 11 15 23 31 36 47-7 7-14 16-19 24-8 3-18 6-27 8-24 4-108 0-77 13 17 6 35 16 52 27 0 16 35 45 32 84l8 0c-9 11-18 22-26 34-9 14 27 6 55 1 18 20 42 34 70 40 17 42 34 148 37 105z m73-240c-3-1-6-2-9-4-9-6-19-13-30-21-5-18-22-32-42-32 0 0 0 0-1 0-12-9-25-19-39-29 12-6 24-9 38-9 46 0 84 37 84 84 0 3-1 7-1 11z m-150-62c9 12 19 23 27 34-1 5-2 10-2 16 0 24 20 44 44 44 1 0 2 0 4 0 6 9 12 17 16 25 2 3 3 7 4 11-8 3-17 4-26 4-46 0-84-37-84-83 0-19 6-37 17-51z"/>
-<glyph glyph-name="character" unicode="&#102;" d="M119 240c28-1 1 6-5 26-3 14-3 23-2 40 27-17 56-10 97-13-13-1-20 1-50-3-11-1-19-2-18-6 18-42 59-25 59-25 15-15 15-16 17-44 18 3 28 10 38 17-1-18 1-35 8-53 16 11 11 12 32 21 23 10 8 11 47 28-14-37-19-25-25-48 0-19-7-22-25-37 3-10 2-31 9-40 11-14 54-34 66-43 13-10 26-27 39-29 4 135-65 67 4 200l36 0c-12 47-23 9-23 99 0 49-22 56-37 86 8 22 2 4 9 14 6 8 4 1 10 12-65 6-63 30-114 37-78 11-86-21-129-29-1 40 8 45 31 62-23 0-42-9-52-22-20-24-2-36 11-53-11-13-24-11-42-28-8-7-25-27-31-40-19-43-25-127 40-129z m176-46c10 0 17-8 17-17 0-10-7-18-17-18-10 0-17 8-17 18 0 9 7 17 17 17z m-187-33c0-14 24-41 32-49 23-21 32-2 64-3 9-15 18-31 27-44-21-15-47-38-51-65 57 15 43 32 169 51l-18 22c-47 22-41 50-46 65-12 30-43 18-35 86-9-6-23-16-38-13 2 14-5 24-13 38-12 0-34 1-45 9-25 18-9 29-38 40 2-24-3-28 13-45 10-11 7 3 13-13-30-2-54-29-34-79z m246 89c3 13 23 12 46 1 2-1-35 55-48 71-16 21 22-37 36-58 10-14-42 16-37-14 2-2 3-1 3 0z"/>
-<glyph glyph-name="claymore" unicode="&#121;" d="M431 377c16-27 25-57 27-87l-70-4c-1 12-3 23-7 34l-146-164c21-5 43-4 64 2l30-64c-4-1-7-3-10-4-24-24-35-42-48-79-12-36-16 32-50 74l0-1-16 0c0 3 0 5 0 7-25 8-49 21-70 39l-7-8 0-13-14 0-21-21 0-21-15 0 0-6-9 0 0-6-14 0 0-4-16 0 0 16 4 0 0 14 5 0 0 10 6 0 0 15 21 0 21 21 0 14 13 0 8 7c-17 19-29 40-37 62-11 0-21 0-35-1-14 0 11 16 26 35-8 41-1 85 18 123-19 26-34 45-58 75-24 29 48-9 101-20 31 29 69 45 108 50 9 9 11 19 18 35 7 16 11-9 25-35 27-3 53-11 77-25l18 16c13 9 88 37 99 26 12-12-19-83-30-93z m-127 19c-44 15-94 5-130-30-32-32-43-78-32-119z m-157-167c4-7 8-15 12-22l11 0z m47-56c7-4 14-8 21-11l-21 21z m264 90c-2-25-9-49-20-72 6-32 21-42 43-72 22-29-48 3-103 0-8-5-16-10-24-14l-30 64c10 5 19 12 27 20 20 20 32 44 36 70l71 4z"/>
-<glyph glyph-name="companion" unicode="&#104;" d="M0 306c6-3 7-2 13-6 2-1 10-7 11-9 4-4 15-19 18-24 20-39 13-41 51-74 84-76 241-18 241 116 0 22-9 52-17 67-22-2-46-21-53-39-6-14 14-46-21-85-43-47-137-23-137 57 0 45 35 78 80 78 8 15 11 16 22 28 7 8 19 22 29 25l0 8c-19 2-16 8-56 8-57 0-104-38-127-79-14-24-16-44-41-61-9-7-7-1-13-10z m178 17c0-75 5-42 14-81 23 0 36 10 46 23 18 24 3 29 9 56 20 102 156 74 156-4l0-19c0-62-74-68-81-74l-15-19c-7-9-24-27-34-30l0-8c14 0 11-3 25-6 59-9 109 13 141 51 5 7 12 17 16 25 6 11 8 19 13 29 9 17 26 36 44 40-8 11-9 2-24 17-25 24-22 48-49 80-51 59-127 69-195 29-32-18-66-70-66-109z m-17-176c18-23 70-44 92-91 7 5 12 16 20 24l50 45c9 7 18 13 25 22-65 0-78 15-92 16-6 0-32-10-42-12-19-3-32-4-53-4z"/>
-<glyph glyph-name="close" unicode="&#107;" d="M0 347l0 0 40 40 347-348-39-39 0 0 164 0 0 164 0 0-39-39-348 347 40 40 0 0-165 0z m165-347l0 0-40 39 348 348 39-40 0 0 0 165-164 0 0 0 39-40-347-347-40 39 0 0 0-164z"/>
-<glyph glyph-name="cryo" unicode="&#110;" d="M258 167c1-34 16-45 19-74-23-6-5-8-28-14-4 14 0 10-14 14l23 74z m0 47c-1 9 6 17 3 3 0 0 0-19-3-3z m-9 0c-2 9 6 17 3 3 0 0 0-19-3-3z m5 19c-2 8 6 16 3 3 0-1 0-20-3-3z m28 4l-11 9c13-3 6 2 11-9z m-52 0c3 12-2 7 10 10z m42 28z m-32 0z m42 10c0-1 8-9 9-10l-19 0 10 10z m-28 9l4 0z m-24-9l10-10-19 0c0 0 9 9 9 10z m66 0c4 4 17-8 5-3 0 0-13-5-5 3z m-89 0c5 4 18-8 5-3 0 0-13-5-5 3z m79 4l-4-4z m-56-4l-4 4z m33 27c0-2 0-7 0-9-3-8-2-4-5-9 0 2 0 7 1 9 2 8 1 5 4 9z m-9-18c-5 6-5-10-5 14 4-6 3 5 5-14z m83 18z m-162 0z m162 0c11 17 19 17 42 52 10-5 19-8 33-10-5-10-8-18-9-32-30 0-41-7-66-10z m-162 0c-25 3-36 10-66 10-1 14-4 22-9 32 14 2 23 5 33 10 23-35 31-35 42-52z m60 108l20 22 23-21-24-67c-1 19-12 49-19 66z m-9-131c-20 5-28 21-39 36l-31 48 15 18c-45 1-99-3-136 5l70-121c10 43 46 15 97 14-11-17-12-9-23-23 9-13 12-17 33-19 1 1 2 3 3 2 0-1 2 1 2 1 10 0 3 1 9-3l4 0-4-4-10-10-4-4c0-19 1-19 4-33 18 4 23 8 33 19-1-17-9-36-15-50-7-15-19-30-22-43-8 4-15 5-23 9l65-121c16 12 23 39 34 58 11 18 31 46 35 63-8-4-15-5-23-9-5 18-34 53-37 93 10-11 15-15 33-19 3 14 4 14 4 33l-4 4-5 5-5 5-4 4 4 0c1 1 3 3 3 2 0-1 2 1 3 1 9 0 3 1 8-3 21 2 24 6 33 19-11 14-12 6-24 23 17 1 44 7 58 9 43 5 27-10 45-23 7 30 60 98 65 121-37-8-91-4-135-4l15-18-15-24c-11-19-35-55-56-61 22 32 13 6 10 47-17-9-21-10-33-24 0 22 11 46 18 61 22 44 25 32 42 28l-51 89c-6 11-8 20-14 32l-69-121c17 4 13 10 26-2 10-9 33-62 34-87-12 14-16 15-33 24-8-36-6-23 10-47z m111-70c12-2 20-6 30-8 16-3 22-2 35-6 3-11 5-23 10-32-22 0-19-3-37-5-6 20-27 36-38 51z m-37 28l-14 0 0-4 5-5 5-5 4-4c24-16 33-36 48-59 6-9 2-4 8-11-8-21 1 2-7-11-5-8-4-2-7-12 29 0 37 5 65 5 25-1 39-5 70-5-6 21-56 80-65 121-9-10-8-7-10-24-16 0-39-1-55 1l-47 13z m-163-79c-18 2-15 5-37 5 5 9 7 21 9 32l66 14c-11-15-32-31-38-51z m75 61l4 4 10 10 0 4-14 0-44-12c-18-3-39-2-59-2-1 17 0 14-9 24-8-37-60-101-65-121 30 0 42 3 65 4 30 2 40-4 70-4-4 15-8 6-14 23 4 5 1 0 6 8 16 23 25 45 50 62z"/>
-<glyph glyph-name="dendro" unicode="&#105;" d="M53 242z m0 0c-36 17-24-2-53-10l0-10c37-9 16-27 57 0 22-46 10-59 92-109 37-22 89-34 104-101 22 16 8 26 42 59 35 34 152 60 159 151 15-3 32-32 57 5-15 23-29 25-52 10 0 99-14 68-24 110l38 0c11 16 22 32 24 57-48 0-70 2-72-48-29 16-38 34-86 34-40 0-62-17-76-43l14-19c20 13 17 24 48 28 121 15 148-144 21-207-107-52-57-39-93-65-15 66-133 46-161 149-19 67 15 130 94 124 43-4 27-22 58-24 6 25 10 25-12 40-14 9-26 15-46 17-47 4-69-16-95-34-12 50-18 48-77 48 24-49 4-57 67-57-9-17-16-23-21-46-5-21-7-35-7-59z m243 57c26 0 31 2 41-17 26-54-42-81-50-112 17 4 10 5 24 14 43 26 44 24 91 24-5 17-5 18-24 19 5 21 19 28 19 43 0 65-97 78-101 29z m-176-14c0-31-2-22 19-53-18-9-18-8-29-24 37 0 42 4 67-9l52-29c-23 43-57 45-57 91 0 31 15 38 48 38-4 44-65 30-82 15-6-4-18-21-18-29z m95 138c0-24 28-47 43-57 17 11 47 37 41 64-5 22-31 60-46 70-15-29-38-55-38-77z"/>
-<glyph glyph-name="domain" unicode="&#108;" d="M124 231l3 0 0-3-3 0z m343 57l0-2 4 0 0-2 2 0 0-4 5 0 0-3 2 0 0-2 2 0 0-4 2 0 0-3 5 0 0-2 2 0 0-2 2 0 0-4 3 0 0-3-3 0 0-4-2 0 0-2-2 0 0-3-5 0 0-2-2 0 0-4-2 0 0-2-4 0 0-3-3 0 0-4-2 0 0-2-4 0 0-3-3 0 0-4-2 0 0-2-4 0 0-2-2 0 0-5-3 0 0-2-4 0 0-2-2 0 0-5-3 0 0-2-2 0 0-2-4 0 0-5-2 0 0-2-5 0 0-2-2 0 0-5-2 0 0-2-3 0 0-2-2 0 0-4-2 0 0-9 4 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 5-4 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-5 0 0-11 2 0 0-5z m-303-193l7 0 0-2 2 0 0 4-2 0 0 3-2 0 0 2-2 0 0 2-3 0z m183 7l-3 0 0-2-4 0 0-3-2 0 0-2 11 0 0 11-2 0z m-109 124l2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 5 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-4-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-5 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0z m15 22l-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-4 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 5 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 4-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-5 0z m151 189l-2 0 0-2-2 0 0-2-7 0 0-2-2 0 0-3-4 0 0-2-5 0 0-2-4 0 0-2-2 0 0-2-3 0 0-7-2 0 0-5-2 0 0-4-2 0 0-4-3 0 0-5-2 0 0-2 5 0 0 2 6 0 0 2 5 0 0 3 6 0 0 2 5 0 0 2 9 0 0 4 2 0 0 5 2 0 0 9 2 0 0 4 3 0 0 7 2 0 0 2 2 0 0 5-7 0z m-304-2l2 0 0-2 2 0 0-7 3 0 0-4 2 0 0-9 2 0 0-5 2 0 0-4 9 0 0-2 5 0 0-2 6 0 0-3 5 0 0-2 6 0 0-2 5 0 0 2-2 0 0 5-3 0 0 4-2 0 0 4-2 0 0 5-2 0 0 7-2 0 0 2-3 0 0 2-4 0 0 2-5 0 0 2-4 0 0 3-2 0 0 2-7 0 0 2-2 0 0 2-2 0 0 3-7 0z m109-387l2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 5 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3-13 0 0-3-5 0 0-2-2 0 0-4-2 0 0-2-4 0 0-3-3 0 0-4-2 0 0-2-4 0 0-3-3 0 0-2-2 0 0-4-4 0 0-2-2 0 0-3-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-13 0z m11 365l2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 5 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-5-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-5 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0z m33 40l-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0-2-2 0 0-5 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 5 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 5-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-5 0z m-209-153l-4 0 0-3-2 0 0-4-2 0 0-2-3 0 0-3-4 0 0-2-2 0 0-4-3 0 0-2-4 0 0-3-2 0 0-4-5 0 0-2-2 0 0-3-2 0 0-4-2 0 0-2-5 0 0-2-2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0 14-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 5 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 13-5 0z m209 137l-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-5 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 5 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 5-2 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-5 0z m111-271l-2 0 0-2-2 0 0-2-4 0 0-5-3 0 0-2-2 0 0-2-4 0 0-5-3 0 0-2-2 0 0-2-4 0 0-4-2 0 0-3-3 0 0-2-4 0 0-4-2 0 0-3-3 0 0-2-2 0 0-2-9 0 0 2-2 0 0 5-2 0 0 2-2 0 0 2-5 0 0 5-2 0 0 2-4 0 0 2-3 0 0 2-2 0 0 5-4 0 0 2-3 0 0 2-2 0 0 5-2 0 0 2-4 0 0 2-3 0 0 4-2 0 0 3-4 0 0 2-3 0 0 7 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 5 0 0-4 4 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-4-2 0 0-2-3 0 0-3-4 0 0-4-2 0 0-2-3 0 0-3-4 0 0 5-2 0 0 2-2 0 0 2-5 0 0 5-2 0 0 2-7 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 4 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 2 0z m-102-2l2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-5 2 0 0 2 5 0 0 3 2 0 0 4 2 0 0 2 4 0 0 2 3 0 0 5 2 0 0 2 4 0 0 2 3 0 0 5 2 0 0 2 4 0 0 2 2 0 0-13 5 0 0-2 55 0 0 31-2 0 0 2-2 0 0 2-11 0 0 56-25 0 0 2-2 0 0 4 2 0 0-2 3 0 0-2 22 0 0 2 2 0 0-2 13 0 0 4 3 0 0 9-3 0 0 5 3 0 0 49-3 0 0 2-77 0 0 40-3 0 0 4 3 0 0 3 6 0 0-29 3 0 0-7-3 0 0-2 98 0 0 2 2 0 0 56-2 0 0 2-164 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 25 0 0 2 15 0 0-2 83 0 0 2 6 0 0 2 2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-4 0 0 3-20 0 0-3-9 0 0 3-2 0 0-3-9 0 0-2-2 0 0-2-5 0 0-2-2 0 0-3-2 0 0-2-5 0 0-2-2 0 0-2-35 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 5-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-5 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-5 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2-35 0 0 2-2 0 0 2-5 0 0 2-2 0 0 3-2 0 0 2-5 0 0 2-2 0 0 2-9 0 0 3-2 0 0-3-9 0 0 3-20 0 0-3-4 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2 2 0 0-2 7 0 0-2 82 0 0 2 15 0 0-2 25 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2-164 0 0-2-2 0 0-56 2 0 0-2 98 0 0 2-2 0 0 7 2 0 0 29 6 0 0-3 3 0 0-4-3 0 0-40-77 0 0-2-3 0 0-49 3 0 0-5-3 0 0-9 3 0 0-4 13 0 0 2 2 0 0-2 22 0 0 2 3 0 0 2 2 0 0-4-2 0 0-2-25 0 0-56-11 0 0-2-2 0 0-2-2 0 0-31 55 0 0 2 5 0 0 18 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0 5 5 0 0 2 2 0 0 4 2 0 0 2 5 0 0 3 2 0 0 2 2 0 0 4 5 0 0 3 2 0 0 2 2 0 0 4 5 0 0 2 2 0 0 3 2 0 0 4 4 0 0 2 3 0 0 3 2 0 0 4 4 0 0 2 3 0 0 2 2 0 0 5 4 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0-7-2 0 0-11 2 0 0-4-2 0 0-5-2 0 0-2-5 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-4-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-5 0 0 2-4 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0-24 3 0 0-2 40 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 4 2 0 0-11-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-4-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2 22 0 0 2 2 0 0 2 5 0 0 5 2 0 0 2 2 0 0 2 2 0 0 2 5 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-2 25 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 11 2 0 0-4 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 40 0 0 2 3 0 0 24-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-4 0 0-2-5 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 4-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-5 0 0 2-2 0 0 5-2 0 0 4 2 0 0 11-2 0 0 7 2 0 0 2z m-15 9l0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 3-2 0 0 26 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 5 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-4 0 0-2-3 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-7 0 0 2-2 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 2 0 0 2 3 0 0 2 4 0 0 5 2 0 0 2 5 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 4 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2-2 0z m117 47l-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2 20 0 0-2 7 0 0 2 4 0 0-5 2 0z m-33 33l-2 0 0 2 2 0z m-2 2l-2 0 0 2 2 0z m-2 2l-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 7 40 0 0-45z m0 56l-49 0 0-2-2 0 0-20 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-4-4 0 0-4-3 0 0-3-2 0 0-2-4 0 0-2-3 0 0 2-2 0 0 2-4 0 0 5-5 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-2 0 0 2-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 44 65 0 0-4z m-143-58l0-2-2 0 0 2z m-2-2l0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-2 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0 31 2 0 0 5 4 0 0-2 7 0 0 2z m18-31l-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-4 0 0 2-3 0 0 2-2 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 22-54 0 0 4 65 0 0-44-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0z m-16 80l43 0 0-9-3 0 0-2-4 0 0-5-2 0 0-2-5 0 0-2-2 0 0-2-2 0 0-5-5 0 0-2-2 0 0-2-2 0 0-5-4 0 0-2-3 0 0-2-2 0 0-2-2 0 0-3-2 0 0-2-3 0 0 47z m38-76l2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 2 0 0 2 3 0 0 3 2 0 0 2 2 0 0 2 2 0 0 2 5 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-2 2 0 0-2 2 0 0-2 3 0 0-3 2 0 0-2 2 0 0-2 2 0 0-2 2 0 0-3 3 0 0-2 2 0 0-4-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-3 0 0-3-2 0 0-2-2 0 0-2-2 0 0-2-5 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0z m138-120l-4 0 0-60 2 0 0-2 9 0 0 2 6 0 0-2 91 0 0 31-2 0 0 2-33 0 0 25-2 0 0 4-3 0 0 2-64 0z m-273 0l-3 0 0-4-2 0 0-25-33 0 0-2-2 0 0-31 91 0 0 2 6 0 0-2 9 0 0 2 3 0 0 60-5 0 0 2-64 0 0-2z m297 125l3 0 0-3-3 0z m45 71l2 0 0-5-2 0z m-56-2l34 0 0-3-34 0z m-269 0l34 0 0-3-34 0z m-24 2l2 0 0-5-2 0z m349 15l2 0 0-2-2 0z m-349 0l2 0 0-2-2 0z m104 96l3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 3 0 0 2 2 0 0 2 2 0 0 3 2 0 0 2 5 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-2 2 0 0-2 2 0 0-3 2 0 0-2 2 0 0-2 3 0 0-5-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-3-3 0 0-2-2 0 0-2-2 0 0-2-2 0 0-2-5 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0 0 3-2 0 0 2-2 0 0 2-2 0 0 2-2 0 0 3-3 0 0 2-2 0 0 2-2 0 0 2-2 0 0 2-3 0z"/>
-<glyph glyph-name="dragonspine" unicode="&#109;" d="M167 293c6-9 18-23 20-29 8 6 41 50 50 61 6 8 11 14 16 21 7-4 20-22 26-29l63-82c6-11-6-7 0-20 9 7 18 25 27 31-9 14-17 27-27 40l-47 69c-9 11-19 0-34 16-7 7-8 16-12 24l-16 0c0-9-5-24-7-35-7-38-28-7-44-40-5-11-8-18-15-27z m184 124l-2 3 0 2-3-2 3 0 2-3c3-10 10-27 17-33 18-18 69-72 81-80 9 6 0 4 9 7l7-7c1-6 14-21 19-28l21-25 6 5c-2 6-4 7-9 12-11 10-29 30-37 36l-7 7-107 106z m-242-51l-5-4 5 4 2 0-2 3z m-87-86l-2-3c-6-4-18-14-20-22 8 2 7 3 11 9 5 6 7 6 9 13l2 3 2 0-1 2-1-2z m307 160l0-3 3 2-3 1-33 34c-3-9-3-4-5-12 10-15 18-18 38-22z m71-258l5 0c2 8 2 5 6 11-23 0-13-3-11-11z m-124 222c0-22 23-16 26-15l0 4c-10 0-10 0-18 2-1 7-5 9 2 18 3 4 5 3 7 9-11-1-17-6-17-18z m42-271l-7-13c12 1 3 1 12 3 6 2 11 0 17 1 9 1 19 10 20 16-19-5 11-7-42-7z m-114-13c-1 7-2 6-4 13-51 0-27 2-44 7 2-6 10-15 17-16 5-1 13 1 18 0 17-2-3-3 13-4z m65 373l0-4c6-1 6-1 11-3 2-6 2-6 2-15l5 0c2 21 7 11 15 22-14 3-12 4-15 18l-5 0c0-13-3-16-13-18z m20-313c44 0 54-6 55 11-12 6-50 2-68 2 1-6 6-13 13-13z m78 22c-12 8-4 10-20 7 0-7 0-7 5-11l12-5c-12 0-16-1-17-13 17-4 12 3 22 11-3-15-8-12 0-25 9 3 0 1 9 7l-5 15 13-11c5 2 4 2 10 3-3 10-6 12-18 13 10 7 14 0 18 16-17 3-8 1-20-7 0 7 2 9 1 13-2 5-6 6-8 7-8-12-3-6-2-20z m-243 164l81 80c7 7 17 26 19 36l-107-106 7-10c-13-9-43-55-53-62-6 4-4 1-7 9-7-5-10-12-16-19-6-8-11-14-17-21-7-10-29-36-31-44 58 0 36-10 83 48 4 6 8 12 13 18l29 37c10 14 12 11 13 21-8 2-12 6-14 13z m134 36c0-43 64-48 64 2 0 10-7 18-13 22-4-15 4-8 4-20 0-29-42-31-42 0 0 22 18 11 22 27-21 0-35-15-35-31z m-22-5l13 0c1 18 9 35 24 38 0 12-4 23-6 34-2 8-7 24-7 33l-4 0c0-11-8-38-11-52-3-16-9-37-9-53z m19-396l70 69c-22 1-14 4-39-21-9-9-21-23-30-29l-45 44c-9 9-7 7-24 7l68-70z m-195 216l47 0c4 7 6 11 13 16 9-13 6-16 27-16-4 8-38 52-45 56-13-19-29-36-42-56z m118-135c1 6 2 6 4 11-10 7-24 23-34 33-11 11-21 21-33 33l-50 50c-8 8-10 11-25 11 2-9 9-13 15-19 6-6 11-11 18-17 11-12 95-99 105-102z m155 15c3-4 3-5 5-11 11 3 104 101 119 116 6 7 14 11 16 20-20 0-19-5-39-25l-101-100z m-100 120c-2-8-2-2-4-11l-138 0c3-9 14-16 23-24 9-8 17-5 42-5l62 3c13-1 12-2 18 6-19 0-37 0-56 0-27 0-31-4-42 14l104 0c4 6 7 11 11 17l76 0-49 65 7 8-27 36c-4-3-18-21-22-26l-65-83 60 0z m180 12l96 0c-5 10-27 34-36 46-4 6-7 12-13 16l-35-46c-4-6-9-8-12-16z m-211 182l10-11c-2-6-3-8-5-13-3-9-1-7-7-12-3 7 2 8 2 20-6 2-3 1-9 5 4 6 6 11 7 20-13-1-14-14-27-36-3-6-7-13-11-20-4-7-9-13-11-22-11 3-6 4-14-8l-35-48c5-5 14-15 16-22 9 3 33 34 35 42l9-7c40 73 26 39 51 56 12 8 28 122 38 142-12-3-18-23-27-40l-22-46z m129-11c0-20-9-34-27-38 3-9 86-118 89-131 9 2 12 9 21 21l19 23c-59 89-25 22-57 65-5 6-13 21-18 24-4-18-17-15-7-31-14 0-14 7-20 16 33 22 18 90-24 91 5-8 24-16 24-40z m-75-260c-5 2-6 3-12 4l0-11c-4 3-8 9-12 14-7 11-3 7-1 17-20-5-27 0-44 0l24-33c14 0 20 0 31-2-4-4-2-3-9-5 2-7 4-3 7-11-15 0-18-5-27 0-9 4 5 0-6 4-4-17-18-29-20-37 10 0 16 1 22 2 9 0 11-2 22-2-2 5-7 5 1 16 4 5 9 12 12 15l0-11c10 0 4-1 12 4-1-13-6-26-20-27l22-37c4 3 21 35 22 37-13 1-17 15-18 27 7-5 2-4 11-4 0 11-5 8 3 11 2-8 4-8 10-15 3-5 5-7 3-12l-2-4c9 0 13 2 21 1 8-1 14-1 23-1-2 8-19 24-20 37l-4 0c-4-13-7-4-29-4 2 7 0 5 6 7l-11 8c12 1 19 3 34 3l24 33c-18 0-24-5-44 0 2-10 6-6-1-17-4-5-8-11-13-14l0 11c-5-1-6-2-11-4 1 8 4 20 11 24l7 2c-4 7-6 11-10 19l-10 19-24-40c9 2 9 3 14-6 3-5 5-12 6-18z"/>
-<glyph glyph-name="sword" unicode="&#106;" d="M122 437l59 0 75 75 75-75 60 0c51 33 79 42 85 35 7-6-3-37-39-93l0-48 76-75-76-75 0-87 7-7 25 0 0-20 8 0 0-35-35 0 0 8-20 0 0 25-10 10-81 0-75-76-75 76-79 0-9-10 0-25-21 0 0-8-34 0 0 35 8 0 0 20 25 0 4 5 0 89-75 75 75 75 0 50c-36 54-45 83-38 89 6 7 34-1 85-33z m265-117c-21-19-46-41-70-64 19-12 37-20 55-20l0-43 3 3c5 5 9 9 12 13z m-130-135c-9-16-15-32-15-48l-43 0 3-3c3-3 6-6 9-9l93 0c2 3 5 6 9 9l3 3-43 0c0 16-6 32-16 48z m-132 26c4-4 9-9 15-15l3-3 0 43c17 0 36 8 55 20-25 24-51 46-73 65z m132 96c27 27 52 56 73 80l-145 0c21-24 46-53 72-80z"/>
-<glyph glyph-name="rotate-phone" unicode="&#119;" d="M152 360c0-6-1-12-1-17-2-16-7-18-1-37 3-11 3-106 2-170l10 10c-1 71-1 175-1 195l-1 11z m210-254l0 175c0 14 2 26 2 38-1 14-1 29-1 43l-10-9c0-5 0-9 0-14 0-29 0-56 0-86 0-23 2-95 2-139z m-273-33c-1 0-2 0-4 0 0-1-1-3-1-5z m63 63c-1-25-1-46-1-55 0-50 41-34 94-37 27-1 51 0 75 0 42 0 42 15 42 50l0 12-7 8c0-16-1-29-2-34-8-2-173-3-189-1-1 3-2 31-2 67z m-35-79l3 7c0 1 0 2 1 2l1 4c-10 1-22 3-33 3l-5-5c-1-10 2-26 3-33 1 0 2 1 2 1-3-6 2 2 11 4 19-15 67-66 107-23-41-20-59 0-90 40z m226 408c-17 6-129 2-149 2-40 0-43-8-43-49 0-17 1-39 1-58l8-8c0 25 0 50 1 75 10 4 78 2 95 2 18 0 83 3 96-1l1-45c0-11 0-20 0-30l10 9c-1 12-1 22-1 32 0 32 6 62-19 71z m-34 34c39 4 43 14 87-45-1-2-4-7-4-12 11 0 22-3 36-3 1 6 0 30-4 39-16-7-7-10-27 7-23 20-55 42-88 14z"/>
-<glyph glyph-name="recomended" unicode="&#112;" d="M136 298c-20-76-17-171-9-251 49-23 134-13 198-6 19 32 38 69 44 119 16 120 30 22 26 116l-155 14c50 59 51 130-22 170l-16-38c-39-115-13-41-66-124z m-49-261c19 80 8 166-1 248l-86 3 36-240z m215 365c49-28 34-5 73-54l13-18c43 62 35 36 80 79-73 22-47 11-82 70-42-60-8-39-84-77z m108-252c33-16 37-26 56-48 21 40 9 25 46 44-19 20-31 29-46 57-20-22-28-33-56-53z"/>
-<glyph glyph-name="pyro" unicode="&#76;" d="M406 249z m-291 9l-5-4z m0 0z m138 53z m153-62c30-8 80-76-8-126-74-43-62-32-140-85-68 60-179 76-186 144-4 33 15 65 38 72-5-18-13-18-15-44-4-51 32-79 72-100-6 21-45 53-10 110 18 29 55 52 101 53-1 0-3 2-3 1l-13 7c-39 19-83 35-84 92l-35-52c-30-40-106-116-71-178 14-24 125-80 182-124 12-9 13-15 29-19 34 23 34 37 100 72 34 17 78 45 98 79 39 71-73 148-84 164-7 9-10 17-16 28-6 14-7 23-12 35-13-9-29-35-28-57 1-28 21-39 28-63-16 11-36 39-43 58-10 29-2 60 5 86-42-11-58-48-58-91-36 42 29 84 39 100 21 30-26 96-44 101-1-77-82-101-65-165 16-58 95-65 140-95 51-35 62-114-1-143-26-13-70-22-97-3-12 9-18 19-15 42 3 22 14 23 24 39-29 0-43 2-56-16-14-18-12-36 2-53 66-79 225-18 235 64 5 36-7 41-9 67z m-215-48c13 3 24 10 38 10 42 0 76-40 48-82 35 3 85 44 37 95-14 16-18 18-44 23-42 7-63-16-79-46z"/>
-<glyph glyph-name="primo-star" unicode="&#114;" d="M105 303c-14-8-29-19-45-24-11-10-25-10-30-22 16 0 34 0 51 0 14 0 45 2 55 0l90 2-42 25c-23 16-11 18-44 19l39 24c7-5 13-12 19-18l51-44c9-11 3-10 3-11-6-6-11-11-16-19l13-103 5-38 3-38c8 32-2 179 6 196 7 3 28 3 36 3 2 1 2 2 7 3 2 1 4 0 5 0l-43 3-7 0 0 8-4 122 1 5c-4 5-7 5-4 17l1-56c-8 9-8 17-12 28l1-3c-5-4-1-2-8-5l-16-6c-15-18 24-56 29-95-10 6-13 10-20 20-15 19-15 13-20 21-12 14-15 37-6 57 7 17 16 35 25 53l26 53 7-5 24-47c9-13 23-40 27-54 5-11 21-36 28-43 5-7 7-6 15-11 7-3 78-37 84-45 12-1 11-5 21-7 3 3 4-1 1 5-5 5-93 53-106 59-13 5-18 22-24 34-6 13-12 23-17 37-5 7-9 17-14 26l-39 77c-10-3-8-2-13-12l-37-74c-13-24-34-79-47-86-9-6-18-9-30-16-4-3-11-5-14-7-5-3-9-5-15-8z m355-35l6-6c0 0 1-1 2-1l-15-1 23-2c0-16 1-4-5-7l-15-5c-10-9-29-18-42-21l-34-17c-4-4-10-5-15-10-12-3-25-9-33-17l-44-86c-9-22-22-42-31-64-7 9-61 122-70 142-11 23-41 33-62 44-12 7-57 34-67 36l16 1c19 1 46-3 62 3-10 2-41 0-55 0-17 0-35 0-51 0 5-11 3-4 14-13 17-5 56-30 75-39 48-24 49-22 61-49l57-115c6-12 12-26 20-33 17 16 75 151 87 164 4 9-1 4 8 9l64 34c13 7 24 13 37 20l26 14c8 5 3 0 7 8-3 8-5 10-25 16 3-6 2-2-1-5z m-324-11c-16-6-43-2-62-3 18-13 38-24 59-35 10-5 22-11 32-16 19-10 15-7 28-21 2 6 15 22 20 27 5 7 6 7 11 14 4 6 8 8 12 12 5 8 10 13 16 19-5 8 3 5-13 5-3 1-10 0-13 0l-90-2z m152-162c-13 1-2-1-6 5-7 14 1 32 8 46l-14-4-12-21c-3 35 2 67 1 100l-2 31c-8-17 2-164-6-196l-3 38c-11 7-15 29-26 33-8 20-23 39-35 55-13 14-9 11-28 21-10 5-22 11-32 16-21 11-41 22-59 35l-16-1c10-2 55-29 67-36 21-11 51-21 62-44 9-20 63-133 70-142 9 22 22 42 31 64z m-23 126c7-7 31-29 39-32l3 11c-7 8-1 4-1 5 8-4 1-1 11-1-1 4-2 2 4 6 9 5 3 2 10 3 9 9 39 23 51 28 12 5 55 3 74 5l15 5c0 1-1 1-1 1l-14 5c-6 0-14 0-20 0-11 0-23-2-35-2-25-1-50 0-76 0l-26 0c-8 0-29 0-36-3l2-31z m-224 17l73-41c20-11 44-18 52-32l18-38c3-7 6-13 10-20 9-17 47-108 63-108 15 0 45 73 50 84l45 93-8-4c-12-13-70-148-87-164-8 7-14 22-20 33l-57 115c-13 27-13 25-61 49-19 9-58 34-75 39-5-3-6 2-3-6z m179 133l18 37 5-23c4-11 4-19 12-28l-1 56c-3-12 0-12 4-17 1 21-3 40-2 62 0 18 2 15 5 17l-7 5-26-53c-9-18-18-36-25-53-9-20-6-43 6-57 5-8 5-2 20-21 7-10 10-14 20-20-5 39-44 77-29 95z m37 20l3-122 3 16c8-10 4 0 12 13 18 30 32 68 37 76-4 14-18 41-27 54l-4-1c0 0-3 2-4 3 0-1-2-5-2-6l-10-4 6-17c1-4 1-3 0-7 0-22 0-18-5-21-9 4-4 1-7 9-2 3 0 2-2 7z m64-74c-9-16-43-38-53-56l43-3c-1 0-3 1-5 0-5-1-5-2-7-3l26 0 16 5c10 1 42 2 48-3l-47 3 7 9c0 0 4 4 5 7 3 8-1 12-1 23 10 0 19-5 22-4-5 8-15 8-22 18l-26 9z m-128-135c12-16 27-35 35-55 7 3 3 0 7 3 0 0 1 0 1 1 1 0 2 1 3 1 7-3 4 6 5-8 1 1 2 3 2 2l3 6-13 103c-4-4-8-6-12-12-5-7-6-7-11-14-5-5-18-21-20-27z m67 87l1-8 7 0c10 18 44 40 53 56 2 3 4 5 7 8 8 8-1 7 12 6-7 7-23 32-28 43-5-8-19-46-37-76-8-13-4-23-12-13l-2-16z m-139 48l-3-4c-2-2-2-2-5-4-4-3-3-1-8-6 6 3 10 5 15 8 3 2 10 4 14 7 12 7 21 10 30 16 13 7 34 62 47 86l37 74c5 10 3 9 13 12l39-77c5-9 9-19 14-26-1 13-1 4 3 7-4 14-18 37-24 50-9 18-17 36-27 52l-17 0c-13-20-63-134-81-163-6-10-12-11-24-17-5-2-7-4-12-7l-11-8z m204-62c26 0 51-1 76 0 12 0 24 2 36 2 5 0 13 0 19 0l14-5c0 0 1 0 1-1 6 3 5-9 5 7l-23 2c-36-1-22-1-43 12-5 3-2 1-6 4l-29 19c-3-1-12 4-22 4 0-11 4-15 1-23-1-3-5-7-5-7l-7-9 47-3c-6 5-39 4-48 3l-16-5z m-99 4c3 0 10 1 13 0 16-1 8 3 13-5 0 1 6 0-3 11l-51 44c-6 6-12 13-19 18l-39-24c33-1 21-3 44-19l42-25z m129 73c13-6 101-54 106-59 20-6 22-8 25-16-4-8 1-2-7-8l-26-14c-13-7-24-13-37-20l-64-34c-9-5-4 0-8-9l8 4c8-2 3-2 10 1l123 67c11 8 8 7 8 21-12 9-25 13-38 21l-58 32c-8 4-11 6-19 10-36 18-19 9-34 27-2-4-4 5-1-7 1-3 2-4 3-5 4-6 5-4 9-11z m-48-132c6-4 4 7 6-9 0-2-1-2-3-5-3-7-5-15-9-21-3-5-4-7-7-11-1-2-3-7-4-8-7-14-15-32-8-46 4-6-7-4 6-5l44 86c-1 1-5 5-7 7-7 7-8 5-8 16-10 0-3-3-11 1 0-1-6 3 1-5z m-31-58c2 11 0 5 8 15 3 5 4 7 7 12 4 7 10 20 19 17 2 3 3 3 3 6-2 15 0 4-6 8l-3-11c-8 3-32 25-39 32 1-33-4-65-1-100l12 21z m55 71l18 3 16-18c5 5 11 6 15 10-10 6-4 1-8 11 2 2 1 1 7 4 13 5 23 8 35 2 13 3 32 12 42 21-19-2-62 0-74-5-12-5-42-19-51-28z m-202 28c6-16 56-32 58-32 10 0 11 8 18 14 3 4 15 8 11 17-5 8-14 2-25 1-20-1-41 2-62 0z m129 155l-1-5c2-5 0-4 2-7 3-8-2-5 7-9 5 3 5-1 5 21 1 4 1 3 0 7l-6 17 10 4c0 1 2 5 2 6 1-1 4-3 4-3l4 1-24 47c-3-2-5 1-5-17-1-22 3-41 2-62z m95-83c7-10 17-10 22-18l29-19c4-3 1-1 6-4 5 12 19 6 29 3-6 8-77 42-84 45-2-5-1-5-2-7z m-36-109c0-11 1-9 8-16 2-2 6-6 7-7 8 8 21 14 33 17l-16 18-18-3c-7-1-1 2-10-3-6-4-5-2-4-6z m136 56l15 1c-1 0-2 1-2 1l-6 6c-10 2-9 6-21 7-10 3-24 9-29-3 21-13 7-13 43-12z m-412-22c-3 8-2 3 3 6-11 9-9 2-14 13 5 12 19 12 30 22 5 10 3 3-1 6-8-3-14-7-22-11-14-6-12-4-18-17 8-15 7-12 22-19z m235-96l14 4c1 1 3 6 4 8 3 4 4 6 7 11 4 6 6 14 9 21-9 3-15-10-19-17-3-5-4-7-7-12-8-10-6-4-8-15z m38 261c5-14 11-24 17-37 6-12 11-29 24-34-4 7-5 5-9 11-1 1-2 2-3 5-3 12-1 3 1 7l-27 55c-4-3-4 6-3-7z m-255-118c4-3 6 4 1-6 16 5 31 16 45 24 5 5 4 3 8 6 3 2 3 2 5 4l3 4c-15-3-21-9-33-16-12-6-18-9-29-16z m321-77l34 17c-12 6-22 3-35-2-6-3-5-2-7-4 4-10-2-5 8-11z m-152-81c11-4 15-26 26-33l-5 38-3-6c0 1-1-1-2-2-1 14 2 5-6 8 0 0-1-1-2-1 0-1-1-1-1-1-4-3 0 0-7-3z m-8 244l16 6c7 3 3 1 8 5l-1 3-5 23-18-37z m101-54l6 5 26-9c1 2 0 2 2 7-8 5-10 4-15 11-13 1-4 2-12-6-3-3-5-5-7-8z"/>
-<glyph glyph-name="polearm" unicode="&#115;" d="M76 334l32-32 12-11 31 31 0 30 30 0 40 40-43 44 75 76 78-78-34-33-4-5 14-14c52 33 102 66 158 92 32 14-34-86-84-166l15-15 38 38 78-78-76-75-44 43-44-44 0-23-23 0-34-34 4-5 40-39-76-76-78 78 42 42-39 39-38-37 0-11-10 0-65-61c-7-6-26 13-20 19l61 66 0 11 11 0 37 37-40 40-10-9-32-33-78 78z m165-50l15 0c12 11 30 34 36 46l-13 13c-9 1-21 1-27 6 5 2 9 5 13 7l-6 7 0 0-4-4-44-45 30-30 0 0z m115-18c-3-4-6-9-8-13-5 7-4 17-5 25l-13 14c-13-3-33-21-45-35l0-17 29-29 49 48z m-63-76l0 1-28 27-12 0-18-18 0 0-11 0-7-7 40-40 36 37z m-99 27l7 7 0 10 0 0 18 19 0 11-29 29-37-36z"/>
-<glyph glyph-name="montstad" unicode="&#117;" d="M250 85c-3-4-3-4-5-7 0 13-1 4 5 7z m-24 205l2 0-2 3 0-3c-8 0-34-5-40-7-8-4-12-25-12-35 13 7 28 21 40 31 6 5 7 4 12 11z m-118 56c5 9 39 42 47 48l57-52c-19 5 5 13-42 5-9-2-10-1-15-7l66-17c-16 0-43 8-57 11-10 3-17 4-27 6-8 1-22 4-29 6z m38 58l-52-55c-6 2-16 4-23 5-9-14-10-16-10-38l-31-30c7-10 52-53 67-68 18-18 14-18 25-10l-75 77 14 15c1-12 5-25 10-33 34 0 134 30 155 30 0 13 2 15 2 24-12 0-3 0-7 2l7 0-4 7c12-3 2-6 12-3 10 3 0 5 16 6-3 13-17 42-24 56-4 10-18 49-25 57 8 3 6 2 14 11l40 38c6-4 47-44 49-51-5-12-44-100-45-111 10-3 10-3 14-10 10 0 1 0 5 3 5-3 12 0 19 1 8 2 17 3 22 5 11 3 7 3 11 15 2 7 4 13 5 21-11-3-12-9-22-12 6 8 14 12 21 19 8 8 13 15 21 21l47-47c0-1-1-4-1-6-11 2-50-8-62-10l-61-12c7-30-19-17 88-42 18-4 34-8 52-11 13-3 21-3 25 6 2 5 5 21 4 28l18-16c-18-25-98-86-70-85 6 1 18 15 23 20 13 14 56 55 63 65l-34 32c1 12 0 23-5 30-6 8-15 3-25 1-7 10-18 19-26 28-5 5-9 8-13 13-6 6-11 8-13 16 7 4 8 7 14 12 14 12 22 17-14 48-14 11-26 17-44 17-2-7-7-17-11-26l-55 55-55-54c-1 1-5 1-7 2 3 8 2 3-2 12-1 3-3 8-5 11-14 0-14 0-23-4-17-9-46-32-47-43 2-11 19-28 28-32z m141-123c2 3 1 3 3 0z m7-5c7-2 4 0 7-5-6 2-3 0-7 5z m12-9c12-4 2-6 20-2 9 2 15 4 25 4l0 5c-11 1-23 6-33 9-9 3-26 9-35 10-3-6 3-1-1-7-7 3-5-4-18-8 1-12 12-30 16-42 6-13 13-27 19-40 4-13 10-21 15-34 5-11 10-22 16-32l16 0c-3-3-5-4-11-6-8-2-7-2-12 2-5 3-9 15-12 21-19-2-51-27-52-45 0 0-1 2-1 1 0 0-23 43-58 46-6-13-4-18-16-26-14 1-39 13-45 21 9-2 11-5 19-9 8-3 12-5 23-5 6 10 12 20 14 33 4 1 1-2 4 4l10 21c4 12 8 18 13 29 6 15 22 47 25 59-7 4-10 5-16 9-15-7-75-64-92-77-6-5-28-22-28-28 0-8 0-6 3-11 7-10 4-6 8-6 3-6 1-3 5-9-10 2-18 15-22 24-4 12 3 5-6 11l-45 19c1-15 19-40 28-47 16-12 28-21 48-30 81-36 95 11 120-38-7 4-2 0-10 9-18 24-50 0-64-2-9-1-25 0-35 0 1-12 7-12 17-17 7-3 16-9 26-9 28-2 25 23 47 23l0-7c-17-1-21-24 11-16-9-14-13-7-30-7 0-13 3-11 10-17 5-4 9-8 13-14 9-12 14-22 22-35 7 5 10 19 22 33 5 6 8 11 14 15 8 7 10 4 11 18-17-1-22-7-31 7 32-8 29 15 12 16l0 7c26 0 25-47 82-9 6 4 7 3 7 12-51 0-26-1-60 10-18 6-40 2-43-17-4 9 5 18 13 22 24 9 44-16 125 28 9 4 15 11 23 17 10 8 28 32 29 48l-25-12c-8-3-19-8-29-9 0-15-14-33-26-36 9 14 19 12 19 33-4 3-7 5-11 8-7 6-3 5-12 9-1 6 2-2-2 3 0 0-4 4-5 5l-27 24c-4 4-5 4-9 7l-28 27z m-14 68c-2-3 0-3-2-1z m-38 5c10 7 13 24 19 35-11 7-32 26-40 28 1-9 7-23 10-32 3-10 9-22 11-31z m-21-167c0-36-3-37 12-40 0 18-1 34 2 49 15 4 8 0 17 0 3-15 2-31 2-49 9 2 3 2 12 4 0 31 5 57-24 57-11 0-21-10-21-21z m21 108c29 0 33 47 0 47-13 0-23-12-22-24 0-10 9-23 22-23z m-30 157c20-4 28-11 30-32 13 3 7 12 14 21 7 10 17 4 24 14-7 9-16 4-23 12-8 9-1 20-15 23-3-39-26-21-30-38z m-94-287c8-2 5-1 9-7-8 3-5 1-9 7z m21 21l0-11c12 0 16-3 21-10-2 1-10 2-12 3-10 4-6 0-9 9l0 9z m-5 0c0-10 0-6-2-9l-10 8c-1 1-1 1-2 2 0 3 1 1 0 7 5-4 8-6 14-8z m125-87l0-7c-4 4-3 1 0 7z m-43 57c0 19-7 56 29 56 31 0 26-39 26-56 10 7 7 9 7 40 0 11-18 56-24 71-8 21-3 17-14 18-2-9-7-19-11-29-4-11-7-20-11-31-5-12-9-17-9-34 0-35-3-30 7-35z m137-2c-4-6-10-9-19-10 2 2-1 0 4 3 2 2 1 1 5 3 4 2 5 2 10 4z m-24 56c2-4 2-5 3-9-9 3-1-1-7 5 0 0-2 2-2 2-4 4 0 1-5 4 0 5 1 1 0 8 5-4 2-3 6-6 5-5-3 2 2-2 6-5-4-1 3-2z"/>
-<glyph glyph-name="inazuma" unicode="&#118;" d="M166 235l0-9c0-31 23-63 49-76 29-16 69-12 96 8 34 25 47 70 28 111-3 5-6 10-9 14-5 8-3 9-15 9 2-5 8-12 11-17 3-5 8-13 9-20-3 3-5 7-8 10-3 2-7 5-12 5 2-7 1-15 1-25 0-18-9-34-24-37 0 8 1 12-3 17-10 18-39 3-39-17 0-11 0-18 10-28 16-16 37-9 55-1 4 1 6 3 10 4-14-21-55-41-82-33l-3 1c7 1 18 3 21 8-4 5-18 5-29 16-8 8-12 17-12 33 20-14 32 4 32 17 0 40-71 47-71-23-2 2-1 1-3 5-6 20-4 39 4 58 2 5 5 9 7 13 3 5 8 10 8 14-10 0-8-1-13-8-9-14-18-27-18-49z m-88 100l1 0 0 1-1-1c-3-3-17-16-19-19l-3 0 0-3-40-40 14 2c6 1 17 18 26 24l0-5c15 0 30 0 45 0 21 0 22-7 22 22l-51 0c1 7 6 13 6 19z m98 98l-1 0 1-1 0 1c6 1 10 3 15 5 9 3 7 3 13 9 5 5 17 16 21 21l-7 7z m5-357l0 1-1-1 1 0 75-75 75 75c-3 0-19-5-24-10l-50-50c-4 1-6 5-9 8l-42 42c-4 4-6 4-12 6-4 1-8 3-13 4z m62 377l3 0 0 1-3 0z m186-173l8 0 0 6c0 4-7 3-12 3 2-5-1-10 4-10z m24 36l-19 19c1-7 5-12 6-19l-48 0c0-26-4-21 22-21 15 0 29 0 44 0l0 3 40-40-15-17c1 0 2 0 3 0 2-1 0 0 2-1l-48 0c-2 2-9 10 4 11 23 3 16 21 9 25-5 3-36 1-44 1-21 1-13 2-14-18 0-6-1-7 4-8 6 0 17 0 23 0 1 0 10-10-4-11-6-1-12-2-12-9 0-12 19-9 35-9 14 0 28 0 43 0 21 0 14 13 13 15-3 3-5 1-8 3 10 1 7 1 13 6 3 4 7 7 9 10-1 5-51 53-53 55l0 5-5 0z m-164-224c0-4 1-6 1-12 2 1 12 3 14 3-1 4-4 4-6 11-2-1-5-2-9-2z m-125 237c0-12-1-10 11-10 1 3 2 10 2 13-5-1-7-3-13-3z m175-10c12 0 11-2 11 10-6 0-9 2-13 3 0-3 1-10 2-13z m-128-236c4-1 10-3 15-3 0 8 0 6 1 11-3 1-6 2-9 2-5-10-4-4-7-10z m-136 192l13 0c0 7 1 9 1 14-11 0-14 3-14-14z m38 44c10 0 9-1 10 4l0 5c0 0 0 0 0 0 0 2-6 2-8 3-3 1-5 2-7 3 0-5 0-15 5-15z m278 8c0-10-1-8 11-8 4 0 3 2 4 5 0 3 0 6 0 10-12-7-15-2-15-7z m44-146c3 2 36 33 37 37-17 0-10 2-25-12-5-5-5-3-7-11-1-5-3-9-5-14z m-147 287c4-5 25-27 32-30l16-5-41 41z m62-103c0-6 1-7 1-12l38 0c1 5 2 10 3 14-15 0-27-2-42-2z m-222-12c38 0 37-4 37 12-15 0-28 2-42 2 0-3 1-14 5-14z m288-31l11 0c0 5-20 48-29 50 0-6-3-10-1-15l11-17c5-9 4-10 8-18z m-331 0l14 0c1 6 8 19 11 25 8 13 9 7 5 25-11-7-25-40-30-50z m23-167c0 12 0 11 6 11l-12 22c-2 4-3 8-5 12l-4 13-13 0c1-2 2-5 3-8 3-12 18-44 25-50z m293 11l4 0c0-5 1-5 1-11 9 11 20 34 24 46 1 4 2 7 3 10 2 8 2 7-8 7-3 0-2-2-3-5-4-14-8-22-14-35-2-2-2-3-4-6-1-2-2-3-3-6z m-401 91l77-78c-1 5-3 10-4 14-2 6-2 9-6 13l-47 47c-7 7-8 7-6 17z m299-152c0-29 26-19 26-19 5 0 7-8 8-13 5 4 10 27 0 40-13 17-34 4-34-8z m-121-4c0-3 2-6-1-10-2-2-8-2-12-2 9-14 50-16 50 10 0 24-37 24-37 2z m8 326c13 0 23-3 35-1 45 10 62 0 82 0 10 0 15 1 24 1-2 2-11 5-14 6-40 12-85 12-123-4z m61 67c-4 3-5 5-10 4-9-3-11-12-6-18 4-5 6-3 11-3-2-1 0 0-2-1-4-3-7-6-5-12 1-4 6-7 8-7 2-1 3-1 6 0 4 1 6 3 7 8l1-1c0 0 0-1 0-1 4-7 10-8 13-6 5 3-2 3 6 3 1 15 4 7-3 16 6 1 12 4 10 12l0 2c0 2 2 4-7 7-5 2-6 0-10-2 4 16-12 20-19 10-3-4-1-6 0-11z m142-202c0 20-2 37-2 57-39 0-34 3-34-11 0-15 0-31 0-46l0-60 0-53c0-5-1-8 2-9l32 0c5-1 8-1 9 2 0 0-2 58-4 61 0 20-2 35-2 53 0 4 0 5-1 6z m-159-212c0-31 27-15 27-36 0-5-2-8-3-13 13 8 31 26 31 42 0 11 0 18-7 27-13 15-48 10-48-20z m-66 215l186 0 0 21-61 0 0-15-64 0 0 15-61 0 0-21z m-42-53c0-25-3-47-3-72l42 0 0 70 0 106c-1 4-1 3-6 3l-27 0-2-26c0-5 0-10 0-14l-2-27c-1-5-1-33-2-40z m229-136l52 0c0 14-2 32-3 46-1 16 11 13-49 13l0-59z m-240 0l53 0 0 59-49 0c0-12-4-47-4-59z m-96 160c0-6 0-10 10-11 15 0 51 4 51-5 0-13-22-1-22-17 0-7 1-16 14-16 14 0 24 1 37 1 10 0 12-3 12 7 0 7 1 11 1 18-21 0-26-2-30 6 2 6 2 6 10 6 13 2 13 18-5 18l-57 0c-7 0-21 0-21-7z m176-3c4 1 6 4 9 6 17 13 41 16 58 1-27 0-18-36 11-36 16 0 28 13 28 29 0 9 1 15-6 22-4 5-7 7-15 7l-71 0c-6 0-13-21-14-29z m38 44l56 0 0 69-56 0z m-9 62l5 0 0 12 51 0c6 0 7-1 13-1l0-11c25 0 116 2 133 10 3 2 5 3 7 5 7 6 11 18 12 26-8 0-15-2-22-3-16-2-54-6-67-7-6 0-17-1-23-1-4-1-8 0-12-1-5 0-6-1-12-1-17 0-31-1-48-1l-71 2c-22 2-70 6-90 9-6 1-16 3-23 3 0-5 4-16 5-19 8-16 32-16 52-18 19-3 68-4 90-4z m11 31l53 0c22 0 41 2 62 2 6 1 8 1 15 1 21 1 98 11 106 23 6 9 11 26 13 36-5 0-14-7-23-11-49-20-53-19-108-27-15-2-49-3-64-3-6 0-9-1-16-1-68 0-129 1-191 22-8 3-16 6-23 10-3 2-7 3-11 5-3 2-8 5-11 6 10-43 14-46 76-54 9-2 19-3 28-4 22-3 76-5 94-5z"/>
-<glyph glyph-name="hydro" unicode="&#111;" d="M381 62z m5 5l-5-5z m5 5l-5-5z m5 5l-5-5z m0 0c4 16 97 128-14 239-14 14-25 26-45 35-47 22-92 25-138 10-30-10-30-20-30-57 41-27 31-12 78-7 27 4 62-9 81-21 123-78 64-294-141-242-30 8-52 22-78 28 70-104 315-79 385 99 22 54 25 117 5 176-58 167-254 222-387 131-130-89-78-150-38-139 25 8 84 128 233 93 33-8 53-21 77-39 39-29 73-84 78-145 5-67-28-136-66-161z m-232 71c0-34-1-53 24-77 56-56 133-20 143 16-23-14-75-55-118-11-55 55 33 124 59 74 9-18 6-38 34-40 41-2 45 59 15 89-55 55-157 12-157-51z m-90 101c0 73-105 29-65-19 25-31 65-3 65 19z m-15-96l0-25c10-8 14-12 30-15l8 7c30 31 0 39-18 48-8-6 3 2-8-7-6-4-8-5-12-8z"/>
-<glyph glyph-name="gift-shop" unicode="&#120;" d="M140 384c84-21 148-21 232 1 36 29 36 67 51 124-54-5-90-9-135-51l-24-27c-2-2-5-7-8-10-40 46-75 80-167 88 15-57 14-95 51-125z m-72-162l90 0 0-219-90 0c-10 0-18 8-18 18l0 182c0 10 8 19 18 19z m116 134l144 0 0-353-144 0z m170-134l90 0c10 0 18-9 18-19l0-182c0-10-8-18-18-18l-90 0z m-345 134l149 0 0-109-149 0c-5 0-9 5-9 10l0 90c0 5 4 9 9 9z m345 0l149 0c5 0 9-4 9-9l0-90c0-5-4-10-9-10l-149 0z"/>
-<glyph glyph-name="geo" unicode="&#103;" d="M361 185z m0 0c-4-42-78-140-106-159-15 23-36 44-53 66-35 46-124 176-128 230-17-5-47-44-53-62-5-12-2-10 7-24 36-58 36-50 66-88 29-37 119-120 161-148 12 3 55 39 65 49 21 21 40 33 60 56l37 46c18 29-20 68-30 109-20-5-104-100-128-97-17 9-18 11-30 27l-23 39c17 26 41 33 58 58-7 9-9 15-18 22-14-4-37-22-47-32-16-15-30-23-41-39 5-24 28-54 42-73l55-64c38 26 68 59 106 84z m-269 164c0-27 28-80 39-102 22 15 36 37 57 54 22 17 42 34 67 48 26-18 38-39 53-67l-59-61 23-24 45 37c14 11 29 24 39 39-7 34-75 116-101 133-19-12-89-79-106-84 23 49 12 35 46 87 10 15 48 64 60 72 14-9 18-15 28-29l78-103c20-30 76-124 79-164l9 0c10 36 63 45 37 90-61 106-222 231-227 237l-89-74c-12-13-78-77-78-89z"/>
-<glyph glyph-name="electro" unicode="&#100;" d="M469 121c-10-3-166-115-224 17-21 48 6 96 40 112 52 25 101-11 73-68 59 13 92 73 93 130 1 25-9 40-9 65 45-30 45-65 65-79 0 87-83 159-152 192-43 20-76 13-94 21 8-24 39-9 96-75 29-34 36-89 8-131-23-34-83-52-122-20-15 12-29 30-27 53 3 28 19 39 49 39l0 9c-17 5-82 60-167 0-14-10-28-24-42-33 3 37 28 71 42 98-40-11-80-93-90-133-14-53-11-126 17-177 6-9 4-5 8-11 0 65 0 100 25 143 20 33 58 60 117 46 101-22 61-184-14-140l-21 21c-1-34-8-71 31-113 18-19 44-33 69-42l20-8c1 0 3-1 4-1 0-1 2-1 3-2 0 0 2 0 3-1-17-4-28-9-48-12-19-3-39-2-59-2 12-10 22-11 41-15 15-4 30-4 52-4 97 0 199 68 213 121z m0 0l5 0-4 6z m38 177l0-5 5 4z"/>
-<glyph glyph-name="times" unicode="&#65;" d="M60 0l-60 60 452 452 60-60z m-60 452l60 60 452-452-60-60z"/>
-<glyph glyph-name="paimon-bargains" unicode="&#66;" d="M250 0c2 0 4 0 5 0 192-5 233 99 203 200l-120 0c-49-18-60-30-82-107-2 5-4 11-6 16z m-197 200c-28-96 12-193 198-200l0 108c-18 52-22 80-89 91 1 0 2 1 3 1z m202 186c-2 0-3 0-5-1l0-108c4 8 8 17 11 27 16-62 37-91 84-101-4-2-8-3-11-5l124 0c-27 95-117 188-203 188z m-5 4l0 121c37-2 75-9 95-13-20-75-58-111-95-108z m3-4c-82-2-174-94-200-188l111 0c-1 1-1 1-2 1 54 21 76 47 91 85z m0 125l0-121c-35 0-70 36-88 108 18 14 53 16 88 13z"/>
-<glyph glyph-name="genesis" unicode="&#67;" d="M512 459c-112 25-176 38-233 41l0-33c26-26 35-55 26-113l118 45-91-72c22-17 41-31 55-63l67 0c33 67 54 136 58 195z m-275-247c-39-27-82-34-131-22 6 43 15 71 24 90l-80 0c45-100 114-197 187-254z m-14 68l-17-12 34 11c1-5 1-10 2-15l33 0c2 5 3 10 4 16z m56 0l34-14-31 25c22 9 26 18 29 35-12 5-21 7-32 1z m108-16c7-18 13-41 18-73-57 1-92 12-132 29l-23-108-8 104c-2-1-3-3-5-4l0-186c6-5 12-10 19-14 75 51 149 149 198 252z m-145 0l33 0c-3-8-9-16-22-26-6 10-9 18-11 26z m37 236c-74 3-138-12-279-41 3-55 22-117 50-179l80 0c17 34 36 38 49 45l-83 55 107-31 1 1c-9 76 9 105 52 138 9-7 16-14 23-21z m0-173l0-47-56 0 11 7c-15 6-24 17-29 33 36 15 42 6 49 2l2 31 8-34 1 0c5 4 10 6 14 8z"/>
-<glyph glyph-name="weapon" unicode="&#68;" d="M229 317c-54-57-140-143-170-166-16-28-65-92-58-138l12 2c41 4 123 59 123 59 7 11 186 196 208 202 23-12 27-31 48-38 29 0 35 19 28 50-13 6-13 2-22 6-13 5-20 13-22 23z m177 0l29-11c0 3 1 6 1 11z m-69-252c39 30 82 100 99 140 8 20 1 4 1 29-39-18-48-38-93 7-18-7-184-157-193-177 64-96 113-64 186 1z m-287 137c4-10 5-15 14-27 41 40 97 99 143 142l-163 0c1-49 4-96 6-115z m331 218c-16-11-46-32-63-35-20-5-24 3-29 15-7 17-1 35-24 30-29-5-49-13-37-38 12-8 33-21 34-39-8-10-19-22-33-36l147 0c-5 23 17 55 33 72 22 18 34 29 55 40 6 3 30-1 40 13 23 32-6 88-62 58-21-12-10-36-15-42-10-13-25-23-46-38z m-337-103l163 0c9 9 19 17 27 24-3 28-13 12-29 37-16 25 0 52 17 62 39 23 73 20 89-22 3-31 37 9 59 18 64 71-308 28-321 11-7-13-7-72-5-130z m362 0l30 0c1 21 2 62-13 52l-29-40 3-9z"/>
-<glyph glyph-name="star" unicode="&#69;" d="M494 327c0-4-3-9-8-14l-103-101 24-143c0-1 0-3 0-5 0-4-1-8-3-10-2-3-4-5-8-5-4 0-8 2-12 4l-128 67-128-67c-4-2-8-4-12-4-4 0-7 2-9 5-2 2-3 6-3 10 0 1 0 3 1 5l24 143-104 101c-4 6-7 10-7 14 0 7 6 12 16 13l144 21 64 130c4 8 8 12 14 12 6 0 10-4 14-12l64-130 144-21c10-1 16-6 16-13z"/>
-<glyph glyph-name="circle-o" unicode="&#70;" d="M256 411c-28 0-54-7-78-20-24-14-43-33-57-57-13-24-20-50-20-78 0-28 7-54 20-78 14-24 33-43 57-57 24-13 50-20 78-20 28 0 54 7 78 20 24 14 43 33 57 57 13 24 20 50 20 78 0 28-7 54-20 78-14 24-33 43-57 57-24 13-50 20-78 20z m219-155c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
-<glyph glyph-name="caret-up" unicode="&#71;" d="M402 165c0-5-2-10-5-13-4-4-8-6-13-6l-256 0c-5 0-9 2-13 6-3 3-5 8-5 13 0 5 2 9 5 12l128 128c4 4 8 6 13 6 5 0 9-2 13-6l128-128c3-3 5-7 5-12z"/>
-<glyph glyph-name="caret-down" unicode="&#72;" d="M402 311c0-5-2-9-5-13l-128-128c-4-4-8-5-13-5-5 0-9 1-13 5l-128 128c-3 4-5 8-5 13 0 5 2 9 5 13 4 3 8 5 13 5l256 0c5 0 9-2 13-5 3-4 5-8 5-13z"/>
-<glyph glyph-name="angle-left" unicode="&#73;" d="M344 357c0-3-1-5-3-7l-112-112 112-113c2-1 3-4 3-6 0-3-1-5-3-7l-14-14c-2-2-5-3-7-3-2 0-5 1-7 3l-133 133c-2 2-3 4-3 7 0 2 1 4 3 6l133 133c2 2 5 3 7 3 2 0 5-1 7-3l14-14c2-2 3-4 3-6z"/>
-<glyph glyph-name="angle-right" unicode="&#74;" d="M335 238c0-3-1-5-3-7l-133-133c-2-2-5-3-7-3-2 0-5 1-7 3l-14 14c-2 2-3 4-3 7 0 2 1 5 3 6l112 113-112 112c-2 2-3 4-3 7 0 2 1 4 3 6l14 14c2 2 5 3 7 3 2 0 5-1 7-3l133-133c2-2 3-4 3-6z"/>
-<glyph glyph-name="reply" unicode="&#75;" d="M486 82c-29 52-64 85-106 101-42 15-98 23-169 23 0 0 0-112 0-112 0 0-185 171-185 171 0 0 185 165 185 165 0 0 0-98 0-98 31 0 59-5 86-14 27-9 49-21 67-36 18-15 35-31 49-49 15-17 27-35 36-53 8-18 16-34 22-48 6-15 10-27 12-36 0 0 3-14 3-14"/>
-<glyph glyph-name="delete" unicode="&#113;" d="M171 363c-6 0-11-5-11-11l0-267c0-6 5-10 11-10 6 0 10 4 10 10l0 267c0 6-4 11-10 11z m85 0c-6 0-11-5-11-11l0-267c0-6 5-10 11-10 6 0 11 4 11 10l0 267c0 6-5 11-11 11z m85 0c-6 0-10-5-10-11l0-267c0-6 4-10 10-10 6 0 11 4 11 10l0 267c0 6-5 11-11 11z m171 74l-139 0 0 64-234 0 0-64-139 0 0-21 75 0 0-416 362 0 0 416 75 0z m-352 43l192 0 0-43-192 0z m256-459l-320 0 0 395 320 0z"/>
-<glyph glyph-name="arrow-up" unicode="&#77;" d="M256 416l-160-192 96 0 0-128 128 0 0 128 96 0z"/>
-<glyph glyph-name="cancel" unicode="&#78;" d="M367 176c6-6 9-13 9-22 0-8-3-16-9-22-6-5-13-8-22-8-8 0-16 3-22 8 0 0-68 78-68 78 0 0-67-78-67-78-6-5-14-8-22-8-9 0-16 3-22 8-6 6-8 14-8 22 0 9 2 16 8 22 0 0 71 80 71 80 0 0-71 81-71 81-6 6-8 13-8 22 0 8 2 16 8 22 6 5 13 8 22 8 8 0 16-3 22-8 0 0 67-78 67-78 0 0 68 78 68 78 6 5 14 8 22 8 9 0 16-3 22-8 6-6 9-14 9-22 0-9-3-16-9-22 0 0-71-81-71-81 0 0 71-80 71-80"/>
-<glyph glyph-name="exchange" unicode="&#79;" d="M512 174l0-55c0-3-1-5-3-7-2-1-4-2-6-2l-393 0 0-55c0-3-1-5-3-7-2-1-4-2-6-2-3 0-5 1-7 3l-91 91c-2 2-3 4-3 6 0 3 1 5 3 7l91 91c2 2 4 3 7 3 2 0 4-1 6-3 2-2 3-4 3-6l0-55 393 0c2 0 4-1 6-3 2-2 3-4 3-6z m0 155c0-3-1-5-3-6l-91-92c-2-2-4-2-7-2-2 0-4 0-6 2-2 2-3 4-3 7l0 55-393 0c-2 0-4 0-6 2-2 2-3 4-3 7l0 55c0 2 1 4 3 6 2 2 4 3 6 3l393 0 0 55c0 2 1 4 3 6 2 2 4 3 6 3 3 0 5-1 7-3l91-91c2-2 3-4 3-7z"/>
-<glyph glyph-name="save" unicode="&#80;" d="M146 73l220 0 0 110-220 0z m256 0l37 0 0 256c0 3-1 6-3 11-2 5-4 8-6 10l-80 80c-2 2-5 4-10 6-4 2-8 3-11 3l0-119c0-8-3-14-8-19-5-6-12-8-19-8l-165 0c-7 0-14 2-19 8-6 5-8 11-8 19l0 119-37 0 0-366 37 0 0 119c0 8 2 14 8 19 5 6 12 8 19 8l238 0c7 0 14-2 19-8 6-5 8-11 8-19z m-109 265l0 92c0 2-1 4-3 6-2 2-4 3-7 3l-54 0c-3 0-5-1-7-3-2-2-3-4-3-6l0-92c0-2 1-4 3-6 2-2 4-3 7-3l54 0c3 0 5 1 7 3 2 2 3 4 3 6z m182-9l0-265c0-8-2-14-8-19-5-6-11-8-19-8l-384 0c-8 0-14 2-19 8-6 5-8 11-8 19l0 384c0 8 2 14 8 19 5 6 11 8 19 8l265 0c8 0 16-1 25-5 9-4 17-9 22-14l80-80c5-5 10-13 14-22 4-9 5-17 5-25z"/>
-<glyph glyph-name="copy" unicode="&#81;" d="M385 474l0 0 0 20c0 5-4 9-8 9l-169 0-133-133 0-301c0-5 4-9 9-9l293 0c4 0 8 4 8 9l0 13 0 0z m-259-363l0 242 91 0c5 0 9 4 9 8l0 91 108 0 0-341z m303 274l-18 0 0-343c0-4-3-8-8-8l-253 0 0-17c0-5 4-8 8-8l271 0c4 0 8 3 8 8l0 360c0 4-4 8-8 8z"/>
-<glyph glyph-name="help" unicode="&#83;" d="M360 456c30-21 44-53 44-95 0-21-7-43-21-63-4-7-19-20-45-41 0 0-24-15-24-15-13-12-21-22-24-31-2-6-4-13-4-23 0-4-3-7-8-7 0 0-66 0-66 0-5 0-8 2-8 6 1 34 6 55 14 64 6 7 14 16 25 24 11 9 20 16 28 22 0 0 13 7 13 7 7 6 13 11 17 18 10 15 14 26 14 35 0 14-4 27-13 40-9 13-25 19-47 19-23 0-39-8-48-23-10-14-14-30-14-47 0 0-85 0-85 0 2 55 21 95 58 119 24 14 52 21 85 21 44 0 81-10 109-30m-110-326c15 0 27-5 37-15 10-11 15-23 14-38-1-16-6-28-16-38-11-9-23-13-38-12-15 0-28 5-38 14-9 10-14 23-13 39 0 16 6 28 16 37 10 9 23 14 38 13"/>
-<glyph glyph-name="twitter" unicode="&#84;" d="M492 402c-13-18-29-35-49-50 0 0 0-12 0-12 0-44-10-87-30-128-21-41-53-76-96-104-43-28-92-42-148-42-55 0-104 14-149 43 5-1 13-1 24-1 45 0 85 13 120 40-21 1-40 8-56 20-17 12-28 28-34 48 3-1 9-2 17-2 9 0 18 1 26 3-23 5-41 16-56 34-14 18-21 38-21 61 0 0 0 1 0 1 12-6 27-11 43-12-29 20-43 47-43 81 0 16 4 32 13 48 53-64 119-98 200-100-2 6-3 13-3 21 0 27 9 50 28 68 19 19 42 28 69 28 28 0 51-9 70-29 20 4 41 11 61 22-7-22-21-40-42-53 19 3 38 8 56 15"/>
-<glyph glyph-name="facebook" unicode="&#82;" d="M384 407c0 0-73 0-73 0-4 0-9-3-13-8-3-5-5-12-5-19 0 0 0-52 0-52 0 0 91 0 91 0 0 0 0-76 0-76 0 0-91 0-91 0 0 0 0-226 0-226 0 0-87 0-87 0 0 0 0 226 0 226 0 0-78 0-78 0 0 0 0 76 0 76 0 0 78 0 78 0 0 0 0 44 0 44 0 32 10 59 30 81 20 22 45 33 75 33 0 0 73 0 73 0 0 0 0-79 0-79"/>
-<glyph glyph-name="instagram" unicode="&#85;" d="M256 387c-73 0-131-58-131-131 0-73 59-131 131-131 73 0 131 59 131 131 0 73-58 131-131 131z m0-216c-47 0-85 38-85 85 0 47 38 85 85 85 47 0 85-38 85-85 0-47-38-85-85-85z m106 339c-48 3-164 2-211 0-42-2-78-12-108-41-49-49-43-116-43-213 0-100-5-164 43-213 50-49 117-43 213-43 99 0 133 0 168 14 47 18 83 60 86 137 3 47 2 163 0 211-4 89-52 144-148 148z m74-434c-32-33-77-30-181-30-106 0-149-1-180 30-36 36-30 93-30 180 0 118-12 203 107 209 27 1 35 2 103 2l1-1c114 0 203 12 208-106 2-27 2-36 2-104 0-105 2-148-30-180z m-13 317c0-17-13-31-30-31-17 0-31 14-31 31 0 17 14 30 31 30 17 0 30-13 30-30z"/>
-<glyph glyph-name="link" unicode="&#86;" d="M202 136c5 5 10 7 17 7 7 0 13-2 19-7 10-11 10-23 0-36 0 0-22-20-22-20-19-19-42-29-68-29-26 0-49 10-68 29-19 19-29 42-29 67 0 27 10 50 29 69 0 0 76 76 76 76 24 23 48 36 73 39 26 3 47-4 66-22 5-5 8-11 8-18 0-7-3-13-8-19-12-11-24-11-36 0-17 17-40 11-68-17 0 0-75-75-75-75-9-9-14-20-14-33 0-13 5-23 14-31 9-9 19-14 32-14 13 0 23 5 32 14 0 0 22 20 22 20m230 294c19-19 29-42 29-68 0-26-10-49-29-68 0 0-81-81-81-81-25-25-51-37-77-37-21 0-40 9-57 26-5 5-7 10-7 17 0 7 2 13 7 19 5 4 11 7 18 7 7 0 13-3 18-7 17-17 38-13 62 12 0 0 81 80 81 80 10 9 15 20 15 32 0 13-5 24-15 32-8 9-17 14-28 16-11 2-22-2-31-11 0 0-26-25-26-25-5-5-11-7-18-7-7 0-13 2-18 7-11 11-11 23 0 36 0 0 26 25 26 25 18 19 40 27 65 26 25-1 47-11 66-31"/>
-<glyph glyph-name="dot-3" unicode="&#87;" d="M77 312c16 0 29-5 40-16 11-11 16-24 16-40 0-15-5-28-16-39-11-12-24-17-40-17-16 0-29 5-40 17-11 11-17 24-17 39 0 16 6 29 17 40 11 11 24 16 40 16m179 0c16 0 29-5 40-16 11-11 16-24 16-40 0-15-5-28-17-39-11-12-24-17-39-17-15 0-28 5-39 17-12 11-17 24-17 39 0 16 5 29 16 40 11 11 24 16 40 16m179 0c16 0 29-5 40-16 11-11 17-24 17-40 0-15-6-28-17-39-11-12-24-17-40-17-15 0-29 5-40 17-11 11-16 24-16 39 0 16 5 29 16 40 11 11 25 16 40 16"/>
-<glyph glyph-name="search" unicode="&#88;" d="M493 96l-125 125c18 29 29 62 29 99 0 106-86 192-192 192-106 0-192-86-192-192 0-106 86-192 192-192 36 0 70 11 99 28l125-124c9-9 23-9 32 0l32 32c9 9 9 23 0 32z m-288 96c-71 0-128 57-128 128 0 71 57 128 128 128 70 0 128-57 128-128 0-71-58-128-128-128z"/>
-<glyph glyph-name="plus" unicode="&#89;" d="M288 288l0 128-64 0 0-128-128 0 0-64 128 0 0-128 64 0 0 128 128 0 0 64z"/>
-<glyph glyph-name="outfit" unicode="&#116;" d="M243 381c-14-5-25-18-28-34-1-10 1-17 7-21 9-6 21 1 21 13 0 5 2 11 5 14 5 4 15 2 20-3 3-3 3-10 0-15 0-2-6-8-11-14-13-12-15-18-15-34 0-8-1-13-2-13-1 0-6-2-11-4-10-5-62-25-79-31-60-22-126-49-134-55-6-4-13-13-15-19-4-15 4-30 20-34 3-1 71-1 236-1 229 0 232 0 237 2 13 6 19 18 17 30-2 10-7 17-18 24-7 5-52 23-113 46-20 8-50 19-65 25-17 6-30 11-33 11-6 0-13-7-13-12 0-5 2-10 6-12 3-2 45-19 69-28 45-17 84-32 123-48 6-2 12-6 13-7l3-3-226-1c-125 0-228 1-228 1-2 1 7 7 18 11 7 3 22 9 33 14 20 9 36 15 103 40 16 5 38 14 49 18 37 15 37 15 38 39l0 15 9 9c14 14 21 29 19 43-1 13-10 25-24 31-8 4-23 5-31 3z"/>
-<glyph glyph-name="shrink" unicode="&#48;" d="M185 208l-120-121c-6-6-6-16 0-22 6-6 16-6 22 0l121 120 0-57c0-9 7-16 16-16 9 0 16 7 16 16l0 96c0 4-2 8-5 11-3 3-7 5-11 5l-96 0c-9 0-16-7-16-16 0-9 7-16 16-16z m92 69c-3 3-5 7-5 11l0 96c0 9 7 16 16 16 9 0 16-7 16-16l0-57 121 120c4 4 10 6 15 5 6-2 10-6 12-12 1-5-1-11-5-15l-120-121 57 0c9 0 16-7 16-16 0-9-7-16-16-16l-96 0c-4 0-8 2-11 5z"/>
-<glyph glyph-name="lose" unicode="&#49;" d="M361 161c1-5 1-10-2-14-2-4-5-7-10-9-5-2-10-1-14 1-5 2-8 6-9 11-5 15-14 28-27 37-13 9-27 14-43 14-16 0-30-5-43-14-13-9-22-22-27-37-1-5-4-9-9-11-4-2-9-3-14-1-5 2-8 5-10 9-3 4-3 9-2 14 7 23 21 41 40 56 19 14 41 21 65 21 24 0 46-7 65-21 19-15 33-33 40-56z m-142 168c0-10-3-19-10-26-7-7-16-10-26-10-10 0-19 3-26 10-7 7-11 16-11 26 0 10 4 19 11 26 7 7 16 11 26 11 10 0 19-4 26-11 7-7 10-16 10-26z m147 0c0-10-4-19-11-26-7-7-16-10-26-10-10 0-19 3-26 10-7 7-10 16-10 26 0 10 3 19 10 26 7 7 16 11 26 11 10 0 19-4 26-11 7-7 11-16 11-26z m73-73c0 25-5 48-15 71-9 23-22 42-39 58-16 17-35 30-58 39-23 10-46 15-71 15-25 0-48-5-71-15-23-9-42-22-58-39-17-16-30-35-39-58-10-23-15-46-15-71 0-25 5-48 15-71 9-23 22-42 39-58 16-17 35-30 58-39 23-10 46-15 71-15 25 0 48 5 71 15 23 9 42 22 58 39 17 16 30 35 39 58 10 23 15 46 15 71z m36 0c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
-<glyph glyph-name="win" unicode="&#51;" d="M105 122c42 13 94 21 151 21 57 0 109-8 151-21 2 18 9 41 25 69 54 92 54 92 54 92 0 0-115-123-169-100-53 22-61 244-61 244-8-80-8-222-61-244-54-23-169 100-169 100 0 0 0 0 54-92 16-28 23-51 25-69z m151 5c-56 0-107-8-148-22 3-8 4-16 5-23 40 13 89 21 143 21 54 0 103-8 143-21 1 7 2 15 5 23-41 14-92 22-148 22z m-29 274c0-15 13-28 29-28 16 0 28 13 28 28 0 16-12 29-28 29-16 0-29-13-29-29z m238-117c0-12 9-21 21-21 11 0 21 9 21 21 0 12-10 21-21 21-12 0-21-9-21-21z m-460 0c0-12 10-21 21-21 12 0 21 9 21 21 0 12-9 21-21 21-11 0-21-9-21-21z"/>
-<glyph glyph-name="selected" unicode="&#50;" d="M224 160l32-160 32 160c-10-1-21-2-32-2-10 0-22 1-32 2z m127 149c-16 9-31 30-31 43l0 32c0 11 6 19 12 26 7 6 12 14 12 22 0 27-31 48-88 48-57 0-87-21-87-48 0-8 4-16 12-22 5-7 11-15 11-26l0-32c0-13-14-34-31-43-19-9-35-27-35-44 0-37 51-74 130-74 80 0 130 37 130 74 0 17-15 34-35 44z"/>
-<glyph glyph-name="guaranteed" unicode="&#53;" d="M420 194c-4 0-8-1-12-2l-35 60 35 60c2-1 4-1 7-1 15 0 27 12 27 27 0 16-12 28-27 28-10 0-18-5-23-12l-78 0-36 62c3 5 5 10 5 15 0 16-13 28-28 28-15 0-28-12-28-28 0-5 2-10 5-14l-37-63-79 0c-5 9-14 14-24 14-15 0-28-12-28-27 0-15 13-28 28-28 4 0 8 2 12 3l35-60-35-60c-2 1-4 1-7 1-15 0-27-12-27-28 0-15 12-27 27-27 10 0 18 5 23 12l78 0 35-61c-2-3-4-8-4-12 0-16 13-28 28-28 15 0 28 12 28 28 0 4-2 8-4 12l36 61 79 0c5-9 14-15 24-15 15 0 28 13 28 28 0 15-13 27-28 27z"/>
-<glyph glyph-name="apple" unicode="&#52;" d="M400 20c-28-26-58-22-88-10-31 13-59 14-92 0-41-17-62-12-87 10-139 143-118 361 40 369 38-2 65-21 87-23 34 7 66 27 101 24 44-3 76-20 97-51-88-53-67-170 14-203-16-42-37-85-72-116z m-143 371c-4 63 47 115 107 120 8-73-67-128-107-120z"/>
-<glyph glyph-name="android" unicode="&#54;" d="M78 343c-9 0-16-3-22-9-6-6-9-13-9-21l0-127c0-9 3-16 9-22 6-6 13-9 22-9 8 0 15 3 21 9 6 6 9 13 9 22l0 127c0 8-3 15-9 21-6 6-13 9-21 9z m245 115l21 39c2 2 1 4-1 5-3 2-5 1-6-1l-22-39c-18 8-38 12-59 12-21 0-41-4-60-12l-21 39c-1 2-3 3-6 1-2-1-3-3-1-5l21-39c-22-11-39-26-51-46-13-19-19-41-19-64l274 0c0 23-6 45-19 64-13 20-30 35-51 46z m-121-57c-3-2-5-3-9-3-3 0-5 1-8 3-2 2-3 5-3 8 0 4 1 6 3 9 3 2 5 3 8 3 4 0 6-1 9-3 2-3 3-5 3-9 0-3-1-6-3-8z m124 0c-2-2-4-3-8-3-3 0-5 1-8 3-2 2-3 5-3 8 0 4 1 6 3 9 3 2 5 3 8 3 4 0 6-1 8-3 3-3 4-5 4-9 0-3-1-6-4-8z m-206-261c0-9 3-17 9-23 7-6 14-9 23-9l22 0 1-68c0-8 3-15 9-21 6-6 13-9 21-9 8 0 16 3 22 9 5 6 8 13 8 21l0 68 41 0 0-68c0-8 3-15 9-21 6-6 13-9 22-9 8 0 16 3 22 9 5 6 8 13 8 21l0 68 23 0c9 0 16 3 22 9 7 6 10 14 10 23l0 198-272 0z m314 203c-8 0-15-3-21-8-6-6-9-13-9-22l0-127c0-9 3-16 9-22 6-6 13-9 21-9 9 0 16 3 22 9 6 6 9 13 9 22l0 127c0 9-3 16-9 22-6 5-13 8-22 8z"/>
-<glyph glyph-name="windows" unicode="&#55;" d="M0 388l0-123 124 0 123 0 0 246-247 0z m265 0l0-123 123 0 124 0 0 123 0 123-247 0z m-265-141c0 0 0-56 0-123l0-123 247 0 0 246-123 0c-68 0-123 0-124 0z m265-123l0-123 247 0 0 123 0 123-124 0-123 0z"/>
-<glyph glyph-name="eye-slash" unicode="&#56;" d="M159 131l22 40c-17 12-30 27-39 45-9 19-14 38-14 58 0 23 6 45 17 65-43-23-79-56-108-101 31-49 72-85 122-107z m111 216c0 4-2 7-4 10-3 3-6 4-10 4-24 0-44-8-61-25-17-17-26-38-26-62 0-4 1-7 4-9 3-3 6-4 10-4 4 0 7 1 10 4 2 2 4 5 4 9 0 17 5 31 17 42 12 12 26 18 42 18 4 0 7 1 10 4 2 2 4 6 4 9z m103 55c0-1 0-2 0-3-20-35-50-89-90-161-40-72-70-126-90-162l-14-26c-2-3-5-4-8-4-2 0-15 6-38 20-3 2-5 4-5 8 0 2 4 10 13 25-28 12-53 28-76 49-23 21-43 44-59 70-4 6-6 12-6 20 0 7 2 14 6 19 29 45 65 81 108 106 44 26 91 39 142 39 17 0 34-1 51-5l16 28c2 3 4 5 8 5 1 0 3-1 5-2 2-1 5-3 9-4 3-2 6-4 9-6 3-1 6-3 9-5 3-2 5-3 6-3 3-2 4-5 4-8z m11-128c0-26-8-50-23-72-15-22-35-38-59-47l80 143c1-8 2-16 2-24z m128-36c0-7-2-14-6-20-7-12-18-26-31-41-28-33-62-59-99-77-38-18-78-27-120-27l21 38c41 3 78 16 112 39 35 23 63 52 86 88-21 34-48 62-80 84l18 32c18-12 35-27 52-44 17-17 30-34 41-53 4-6 6-13 6-19z"/>
-<glyph glyph-name="eye" unicode="&#57;" d="M475 238c-29 45-65 78-108 101 11-20 17-42 17-65 0-35-13-65-38-90-25-25-55-38-90-38-35 0-65 13-90 38-25 25-38 55-38 90 0 23 6 45 17 65-43-23-79-56-108-101 25-39 57-70 95-94 38-23 79-34 124-34 45 0 86 11 124 34 38 24 70 55 95 94z m-205 109c0 4-2 7-4 10-3 3-6 4-10 4-24 0-44-8-61-25-17-17-26-38-26-62 0-4 1-7 4-9 3-3 6-4 10-4 4 0 7 1 10 4 2 2 4 5 4 9 0 17 5 31 17 42 12 12 26 18 42 18 4 0 7 1 10 4 2 2 4 6 4 9z m242-109c0-7-2-13-6-20-26-44-62-79-107-105-45-27-93-40-143-40-50 0-98 13-143 40-45 26-81 61-107 105-4 7-6 13-6 20 0 6 2 13 6 19 26 44 62 79 107 106 45 26 93 39 143 39 50 0 98-13 143-39 45-27 81-62 107-106 4-6 6-13 6-19z"/>
-<glyph glyph-name="check" unicode="&#33;" d="M384 416l-192-192-64 64-64-64 128-128 256 256z"/>
-<glyph glyph-name="chat" unicode="&#90;" d="M237 468c-19-1-39-4-56-9-93-22-157-84-165-157-1-10-1-28 1-37 5-25 15-49 33-70 8-11 23-25 34-34 3-2 5-4 5-4 0-1-7-28-15-60-9-33-15-60-15-60 0 0 28 18 61 40l60 39 5-1c34-8 70-10 103-6 12 2 51 8 57 10 27 7 60 25 92 50 29 23 50 57 57 91 9 47-6 95-42 133-38 40-95 66-160 73-12 2-44 3-55 2z m-79-151c6-3 11-8 14-14 3-6 3-14 1-21-5-13-19-22-32-20-13 3-23 12-25 25-2 14 7 28 21 32 2 1 5 1 9 1 6 0 7 0 12-3z m107 2c8-2 14-8 18-16 5-11 3-23-6-32-7-7-16-10-25-9-23 4-33 32-17 49 7 8 20 11 30 8z m115-2c6-3 11-8 14-14 3-6 4-14 1-21-4-13-18-22-32-20-12 3-22 12-24 25-2 8 2 18 9 25 6 6 12 8 21 8 6 0 7 0 11-3z"/>
-<glyph glyph-name="fullscreen" unicode="&#35;" d="M65 462c-6-2-10-6-12-11l-2-3 0-382 2-3c2-5 7-9 11-10 3-1 17-1 193 0l190 0 3 1c4 2 7 5 9 9l2 3 0 144-2 3c-3 6-8 10-14 11-10 1-20-6-21-16-1-2-1-26-1-61l0-57-334 0 0 335 60 0 60 0 3 2c14 6 14 27 0 33l-3 2-71 0c-57 0-72 0-73 0z m272 0c-5-2-10-7-12-13-1-3-1-8 0-11 2-6 6-11 12-12 3-1 4-1 31-1l29 0-60-60c-57-57-60-60-61-62-1-4-2-8-1-11 2-13 16-20 28-14 1 1 22 22 61 61l59 59 0-27c0-14 0-28 1-29 0-4 2-8 5-11 10-10 27-6 31 7 1 3 1 4 1 56 0 52 0 53-1 56-1 5-5 8-11 11-1 1-3 1-56 1-43 0-54 0-56 0z"/>
-<glyph glyph-name="picture" unicode="&#34;" d="M165 347c0-15-6-28-16-38-11-11-24-16-39-16-16 0-28 5-39 16-11 10-16 23-16 38 0 16 5 29 16 39 11 11 23 16 39 16 15 0 28-5 39-16 10-10 16-23 16-39z m292-109l0-128-402 0 0 55 91 91 46-46 146 147z m28 201l-458 0c-2 0-4-1-6-3-2-2-3-4-3-6l0-348c0-2 1-4 3-6 2-2 4-3 6-3l458 0c2 0 4 1 6 3 2 2 3 4 3 6l0 348c0 2-1 4-3 6-2 2-4 3-6 3z m45-9l0-348c0-12-4-23-13-32-9-9-20-13-32-13l-458 0c-12 0-23 4-32 13-9 9-13 20-13 32l0 348c0 12 4 23 13 32 9 9 20 13 32 13l458 0c12 0 23-4 32-13 9-9 13-20 13-32z"/>
-<glyph glyph-name="team" unicode="&#36;" d="M242 453c-8-1-14-3-22-7-22-11-38-30-43-55-1-4-1-8-1-15 0-11 1-16 4-26 9-26 31-45 58-51 5-1 9-1 16-1 11 0 19 1 29 5 21 8 38 26 45 47 3 10 4 15 4 26 0 11-1 16-4 25-5 15-15 28-27 38-6 4-18 10-25 12-11 3-24 4-34 2z m-120-61c-30-4-53-29-53-60 0-43 44-72 84-56 13 6 26 18 31 30 1 2 1 2-2 6-5 5-12 16-15 22-7 14-10 33-9 46l0 6-5 2c-9 4-21 5-31 4z m249 0c-6 0-11-2-16-4l-5-2 0-5c1-11-1-24-4-35-4-12-12-25-20-34-3-4-3-4-2-6 3-8 13-19 21-25 11-6 21-9 33-9 10 0 16 1 24 4 22 9 37 32 37 56 0 33-25 59-58 61-3 0-8 0-10-1z m-143-121c-37-5-73-24-96-52-17-20-28-44-32-70-2-11-2-28-1-33 2-7 7-14 13-18 3-2 17-8 28-13 22-9 48-15 71-19 16-2 23-2 43-2 20 0 28 0 44 3 31 4 64 14 90 27 7 3 9 5 13 8 4 4 6 9 8 14 1 3 1 6 1 15-1 22-6 41-16 60-21 42-59 70-106 79-6 1-9 1-31 1-14 0-27 0-29 0z m-119-20c-39-5-72-29-89-64-6-13-10-25-11-40-1-14 1-21 8-27 6-6 32-16 53-22 10-2 19-4 19-3 0 0 0 1 0 1-2 2-5 8-7 13-2 7-3 12-2 23 1 28 9 55 24 79 7 11 14 20 25 31l10 10-13 0c-8 0-15-1-17-1z m267-6c28-27 45-60 51-98 1-9 2-24 1-29-1-8-5-18-9-22 0 0 0-1 0-1 1-1 23 4 36 8 10 4 22 9 29 12 8 4 13 11 15 19 1 5 0 18-2 27-8 40-39 74-78 86-12 4-21 5-38 5l-12 0z"/>
-<glyph glyph-name="user" unicode="&#37;" d="M256 192c0 0-171 0-235-149 0 0 107-43 235-43 128 0 235 43 235 43-64 149-235 149-235 149z m0 21c64 0 107 64 107 171 0 107-107 107-107 107 0 0-107 0-107-107 0-107 43-171 107-171z"/>
-<glyph glyph-name="min" unicode="&#38;" d="M389 282c10 0 15-9 15-26 0-17-5-26-15-26 0 0-266 0-266 0-10 0-15 9-15 26 0 17 5 26 15 26 0 0 266 0 266 0"/>
-<glyph glyph-name="gear" unicode="&#39;" d="M453 290l-52 5c-4 12-9 25-15 36l33 41c4 4 4 11 0 15l-32 32c-3 2-5 3-8 3-3 0-5-1-7-3l-41-33c-12 6-24 11-36 15l-5 52c-1 6-6 10-11 10l-46 0c-5 0-10-4-11-10l-5-52c-12-4-24-9-36-15l-41 33c-2 2-4 3-7 3-3 0-5-1-8-3l-32-32c-4-4-4-11 0-15l33-41c-6-11-11-24-15-36l-52-5c-6-1-10-6-10-11l0-46c0-5 4-10 10-11l52-5c4-12 9-24 15-36l-33-41c-4-4-4-11 0-15l32-32c3-2 5-3 8-3 3 0 5 1 7 3l41 33c12-6 24-11 36-15l5-52c1-6 6-10 11-10l46 0c5 0 10 4 11 10l5 52c12 4 24 9 36 15l41-33c2-2 4-3 7-3 3 0 5 1 8 3l32 32c4 4 4 11 0 15l-33 41c6 12 11 24 15 36l52 5c6 1 10 6 10 11l0 46c0 5-4 10-10 11z m-197-95c-34 0-61 27-61 61 0 34 27 61 61 61 34 0 61-27 61-61 0-34-27-61-61-61z"/>
-<glyph glyph-name="zoom-in" unicode="&#40;" d="M17 60l30-30 94 94-30 31z m284 431c-104 0-189-85-189-190 0-41 13-78 35-109l36-38c32-26 73-42 118-42 105 0 190 85 190 189 0 105-85 190-190 190z m0-336c-81 0-146 65-146 146 0 81 65 147 146 147 81 0 147-66 147-147 0-81-66-146-147-146z m19 208l-42 0 0-43-43 0 0-43 43 0 0-42 42 0 0 42 43 0 0 43-43 0z"/>
-<glyph glyph-name="zoom-out" unicode="&#41;" d="M17 60l30-30 94 94-30 31z m284 431c-104 0-189-85-189-190 0-41 13-78 35-109l36-38c32-26 73-42 118-42 105 0 190 85 190 189 0 105-85 190-190 190z m0-336c-81 0-146 65-146 146 0 81 65 147 146 147 81 0 147-66 147-147 0-81-66-146-147-146z m-66 165l128 0 0-43-128 0z"/>
-<glyph glyph-name="reset" unicode="&#42;" d="M288 454c58 0 107-21 148-62 40-41 61-90 61-148 0-58-21-108-61-149-41-41-90-61-148-61-49 0-92 15-129 45 0 0 36 38 36 38 28-21 59-31 93-31 43 0 80 15 110 46 31 31 46 68 46 112 0 43-15 81-46 111-30 31-67 46-110 46-43 0-79-14-110-44-31-30-46-66-47-108 0 0 73 0 73 0 0 0-94-105-94-105 0 0-95 105-95 105 0 0 64 0 64 0 1 56 21 105 62 145 41 40 90 60 147 60"/>
-<glyph glyph-name="pen" unicode="&#43;" d="M509 448l-61 61c-2 2-4 3-7 3-3 0-6-1-8-3l-8-9c-21 14-49 12-67-6l-121-121c-4-4-4-11 0-15 2-2 5-3 8-3 2 0 5 1 7 3l121 121c10 9 24 11 36 6l-346-346c-4-4-4-11 0-15l8-8-38-37c-2-2-3-5-3-8 0-3 1-6 3-8l8-7-38-38c-4-4-4-11 0-15 2-2 5-3 8-3 2 0 5 1 7 3l38 38 7-8c3-2 5-3 8-3 3 0 5 1 8 3l37 38 8-8c2-2 5-3 7-3 3 0 6 1 8 3l370 370c4 4 4 11 0 15z m-438-392l-15 15 30 30 15-15z m60 30l-37 38c0 0 0 0 0 0 0 0 0 0 0 0l-8 7 234 234 45-45z m249 249l-45 45 106 106 45-45z"/>
-<glyph glyph-name="move" unicode="&#44;" d="M512 256c0-5-2-9-5-13l-74-73c-3-4-7-5-12-5-5 0-10 1-13 5-4 4-6 8-6 13l0 36-109 0 0-109 36 0c5 0 9-2 13-6 4-3 5-8 5-13 0-5-1-9-5-12l-73-74c-4-3-8-5-13-5-5 0-9 2-13 5l-73 74c-4 3-5 7-5 12 0 5 1 10 5 13 4 4 8 6 13 6l36 0 0 109-109 0 0-36c0-5-2-9-6-13-3-4-8-5-13-5-5 0-9 1-12 5l-74 73c-3 4-5 8-5 13 0 5 2 9 5 13l74 73c3 4 7 5 12 5 5 0 10-1 13-5 4-4 6-8 6-13l0-36 109 0 0 109-36 0c-5 0-9 2-13 6-4 3-5 8-5 13 0 5 1 9 5 12l73 74c4 3 8 5 13 5 5 0 9-2 13-5l73-74c4-3 5-7 5-12 0-5-1-10-5-13-4-4-8-6-13-6l-36 0 0-109 109 0 0 36c0 5 2 9 6 13 3 4 8 5 13 5 5 0 9-1 12-5l74-73c3-4 5-8 5-13z"/>
-<glyph glyph-name="lock" unicode="&#45;" d="M183 293l146 0 0 54c0 21-7 38-21 52-15 14-32 22-52 22-20 0-37-8-52-22-14-14-21-31-21-52z m238-28l0-164c0-8-3-15-8-20-6-5-12-8-20-8l-274 0c-8 0-14 3-20 8-5 5-8 12-8 20l0 164c0 8 3 14 8 20 6 5 12 8 20 8l9 0 0 54c0 35 13 66 38 91 25 25 55 37 90 37 35 0 65-12 90-37 25-25 38-56 38-91l0-54 9 0c8 0 14-3 20-8 5-6 8-12 8-20z"/>
-<glyph glyph-name="share" unicode="&#46;" d="M188 256c0-2 0-3 0-5l165-82c14 12 32 19 52 19 45 0 81-36 81-81 0-45-36-81-81-81-45 0-81 36-81 81 0 2 0 3 0 5l-165 82c-14-12-32-19-52-19-45 0-81 36-81 81 0 45 36 81 81 81 20 0 38-7 52-19l165 82c0 2 0 4 0 5 0 45 36 81 81 81 45 0 81-36 81-81 0-45-36-81-81-81-20 0-38 7-52 19l-165-82c0-2 0-3 0-5z"/>
-<glyph glyph-name="network" unicode="&#47;" d="M135 335c-7 0-15-2-21-5-17 17-32 39-47 65 18 26 40 46 65 61 32-13 57-27 78-42-2-6-3-11-3-17 0-2 1-5 2-11-21-16-41-34-59-53-6 1-11 2-15 2m-50-50c0-12 3-22 10-31-20-39-34-79-41-119-22 36-34 77-34 121 0 38 9 73 26 105 13-21 27-40 43-57-3-8-4-15-4-19m172 162c-10 0-18-2-26-7-19 15-39 27-58 36 29 10 56 16 83 16 41 0 80-11 118-32-26-5-54-14-83-26-9 9-20 13-34 13m75-235c-55 8-104 27-149 57 2 7 2 12 2 16 0 8-2 17-7 26 13 15 30 31 50 46 9-6 19-10 29-10 5 0 11 1 19 4 33-37 55-78 69-123-5-4-10-10-13-16m65-68c13 5 23 15 28 31 20 1 38 5 55 9-15-50-44-89-85-118 2 16 3 33 3 50 0 3 0 8 0 14-1 6-1 11-1 14m-76 34c-65-33-117-79-156-139-31 12-58 31-81 56 4 49 18 96 41 141 2-1 5-2 10-2 10 0 19 3 27 8 48-34 101-55 159-64m94 252c51-46 77-104 77-174 0-8-1-19-3-34-21-6-44-10-66-12-8 19-23 29-45 31-17 49-42 95-76 135 3 7 5 14 5 21 0 0 0 5 0 5 34 15 70 24 108 28m-70-278c5-4 10-7 16-10 1-6 1-15 1-26 0-28-2-52-7-74-29-14-62-22-99-22-20 0-39 3-57 7 37 54 86 96 146 125"/>
-<glyph glyph-name="cloud" unicode="&#58;" d="M218 398c-24 1-34 5-58-2-50-15-80-60-80-113-63-14-110-103-57-175 18-24 48-44 95-44 46 0 93 0 140 0l1 0 0 32-117 0c-20 0-38-1-56 5-64 20-74 110-15 144 19 11 25 9 47 12-20 48 10 104 63 111 27 3 31-5 51-10 5 13 14 26 27 36l0 39c-5-3-9-6-14-9-13-9-16-15-27-26z m41-334c42 0 96-2 137 1 79 6 130 83 112 158-10 40-32 62-60 80-2 17 1 29-4 48-20 80-111 122-185 82l0-39c24 20 60 31 98 15 21-9 38-25 48-45 15-28 12-47 5-78l21-10c79-42 61-180-52-180l-120 0 0-32z"/>
-<glyph glyph-name="cloud-sync" unicode="&#59;" d="M218 398c-24 1-34 5-58-2-50-15-80-60-80-113-63-14-110-103-57-175 18-24 48-44 95-44 46 0 93 0 140 0l1 0 0 32-117 0c-20 0-38-1-56 5-64 20-74 110-15 144 19 11 25 9 47 12-20 48 10 104 63 111 27 3 31-5 51-10 5 13 14 26 27 36l0 39c-5-3-9-6-14-9-13-9-16-15-27-26z m41-334c42 0 96-2 137 1 79 6 130 83 112 158-10 40-32 62-60 80-2 17 1 29-4 48-20 80-111 122-185 82l0-39c24 20 60 31 98 15 21-9 38-25 48-45 15-28 12-47 5-78l21-10c79-42 61-180-52-180l-120 0 0-32z m-130 160c3-6 27-37 35-48 5-7 7-11 13-15 9 14 41 54 46 63l-30 0c-5 23 16 47 28 54 26 16 40 11 68 2 4 4 16 19 18 25-35 30-115 19-141-46-15-38 12-34-37-35z m160 0l31 0c-1-27-14-44-30-54-26-16-40-10-67-1-5-5-16-19-18-25 26-21 71-20 100-2 45 27 40 57 48 82l30 0-43 59c-1 0-2 2-2 2-2 2-1 1-3 3-7-11-15-21-23-32-4-5-22-28-23-32z"/>
-<glyph glyph-name="drive" unicode="&#60;" d="M208 207l-67-115 240 0 67 115z m232 6l-120 208-133 1 121-208z m-256 200l-120-208 66-115 120 208z"/>
-<glyph glyph-name="local" unicode="&#61;" d="M495 178c7-3 11-9 14-16 3-8 4-15 2-21 0 0-14-79-14-79-2-6-6-12-12-16-6-5-13-7-20-7 0 0-418 0-418 0-8 0-14 2-21 7-6 4-9 10-11 16 0 0-14 79-14 79-4 17 2 29 16 37 0 0 81 55 81 55 0 0 50 0 50 0 0 0-87-66-87-66 0 0 91 0 91 0 3 0 5-1 7-4 0 0 20-57 20-57 0 0 154 0 154 0 0 0 20 57 20 57 3 3 5 4 6 4 0 0 91 0 91 0 0 0-87 66-87 66 0 0 51 0 51 0 0 0 81-55 81-55m-106 165c0 0-133-125-133-125 0 0-133 125-133 125 0 0 85 0 85 0 0 0 0 131 0 131 0 0 97 0 97 0 0 0 0-131 0-131 0 0 84 0 84 0"/>
-<glyph glyph-name="import" unicode="&#62;" d="M256 474c0 0 133-125 133-125 0 0-84 0-84 0 0 0 0-131 0-131 0 0-97 0-97 0 0 0 0 131 0 131 0 0-85 0-85 0 0 0 133 125 133 125m239-296c7-3 11-9 14-16 3-8 4-15 2-21 0 0-14-79-14-79-2-6-6-12-12-16-6-5-13-7-20-7 0 0-418 0-418 0-8 0-14 2-21 7-6 4-9 10-11 16 0 0-14 79-14 79-4 17 2 29 16 37 0 0 81 55 81 55 0 0 50 0 50 0 0 0-87-66-87-66 0 0 91 0 91 0 3 0 5-1 7-4 0 0 20-57 20-57 0 0 154 0 154 0 0 0 20 57 20 57 3 3 5 4 6 4 0 0 91 0 91 0 0 0-87 66-87 66 0 0 51 0 51 0 0 0 81-55 81-55"/>
-</font></defs></svg>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.ttf b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.ttf
deleted file mode 100644
index ca896419..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.ttf and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.woff b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.woff
deleted file mode 100644
index 5efaae8f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/genshin-icon.woff and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_global_web.woff2 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_global_web.woff2
deleted file mode 100644
index ff2c99d8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_global_web.woff2 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_jp_web.woff2 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_jp_web.woff2
deleted file mode 100644
index c3919126..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_jp_web.woff2 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_th_web.woff2 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_th_web.woff2
deleted file mode 100644
index 44fc1341..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_th_web.woff2 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_zh_web.woff2 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_zh_web.woff2
deleted file mode 100644
index 4d0b9925..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/fonts/optimized_zh_web.woff2 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/google77966abbed90508f.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/google77966abbed90508f.html
deleted file mode 100644
index f4e54a87..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/google77966abbed90508f.html
+++ /dev/null
@@ -1 +0,0 @@
-google-site-verification: google77966abbed90508f.html
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons.css
deleted file mode 100644
index 258a7ee0..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons.css
+++ /dev/null
@@ -1,283 +0,0 @@
-@charset "UTF-8";
-
-@font-face {
-	font-family: 'genshin-icon';
-	src: url('fonts/genshin-icon.eot');
-	src: url('fonts/genshin-icon.eot?#iefix') format('embedded-opentype'),
-		url('fonts/genshin-icon.woff') format('woff'), url('fonts/genshin-icon.ttf') format('truetype'),
-		url('fonts/genshin-icon.svg#genshin-icon') format('svg');
-	font-weight: normal;
-	font-style: normal;
-}
-
-[data-icon]:before {
-	font-family: 'genshin-icon' !important;
-	content: attr(data-icon);
-	font-style: normal !important;
-	font-weight: normal !important;
-	font-variant: normal !important;
-	text-transform: none !important;
-	speak: none;
-	line-height: 1;
-	-webkit-font-smoothing: antialiased;
-	-moz-osx-font-smoothing: grayscale;
-}
-
-[class^='gi-']:before,
-[class*=' gi-']:before {
-	font-family: 'genshin-icon' !important;
-	font-style: normal !important;
-	font-weight: normal !important;
-	font-variant: normal !important;
-	text-transform: none !important;
-	speak: none;
-	line-height: 1;
-	-webkit-font-smoothing: antialiased;
-	-moz-osx-font-smoothing: grayscale;
-}
-.gi-anemo:before {
-	content: '\61';
-}
-.gi-arrow-left:before {
-	content: '\62';
-}
-.gi-arrow-right:before {
-	content: '\63';
-}
-.gi-bow:before {
-	content: '\7a';
-}
-.gi-catalyst:before {
-	content: '\65';
-}
-.gi-character:before {
-	content: '\66';
-}
-.gi-claymore:before {
-	content: '\79';
-}
-.gi-companion:before {
-	content: '\68';
-}
-.gi-close:before {
-	content: '\6b';
-}
-.gi-cryo:before {
-	content: '\6e';
-}
-.gi-dendro:before {
-	content: '\69';
-}
-.gi-domain:before {
-	content: '\6c';
-}
-.gi-dragonspine:before {
-	content: '\6d';
-}
-.gi-sword:before {
-	content: '\6a';
-}
-.gi-rotate-phone:before {
-	content: '\77';
-}
-.gi-recomended:before {
-	content: '\70';
-}
-.gi-pyro:before {
-	content: '\4c';
-}
-.gi-primo-star:before {
-	content: '\72';
-}
-.gi-polearm:before {
-	content: '\73';
-}
-.gi-montstad:before {
-	content: '\75';
-}
-.gi-inazuma:before {
-	content: '\76';
-}
-.gi-hydro:before {
-	content: '\6f';
-}
-.gi-gift-shop:before {
-	content: '\78';
-}
-.gi-geo:before {
-	content: '\67';
-}
-.gi-electro:before {
-	content: '\64';
-}
-.gi-times:before {
-	content: '\41';
-}
-.gi-paimon-bargains:before {
-	content: '\42';
-}
-.gi-genesis:before {
-	content: '\43';
-}
-.gi-weapon:before {
-	content: '\44';
-}
-.gi-star:before {
-	content: '\45';
-}
-.gi-circle-o:before {
-	content: '\46';
-}
-.gi-caret-up:before {
-	content: '\47';
-}
-.gi-caret-down:before {
-	content: '\48';
-}
-.gi-angle-left:before {
-	content: '\49';
-}
-.gi-angle-right:before {
-	content: '\4a';
-}
-.gi-reply:before {
-	content: '\4b';
-}
-.gi-delete:before {
-	content: '\71';
-}
-.gi-arrow-up:before {
-	content: '\4d';
-}
-.gi-cancel:before {
-	content: '\4e';
-}
-.gi-exchange:before {
-	content: '\4f';
-}
-.gi-save:before {
-	content: '\50';
-}
-.gi-copy:before {
-	content: '\51';
-}
-.gi-help:before {
-	content: '\53';
-}
-.gi-twitter:before {
-	content: '\54';
-}
-.gi-facebook:before {
-	content: '\52';
-}
-.gi-instagram:before {
-	content: '\55';
-}
-.gi-link:before {
-	content: '\56';
-}
-.gi-dot-3:before {
-	content: '\57';
-}
-.gi-search:before {
-	content: '\58';
-}
-.gi-plus:before {
-	content: '\59';
-}
-.gi-outfit:before {
-	content: '\74';
-}
-.gi-shrink:before {
-	content: '\30';
-}
-.gi-lose:before {
-	content: '\31';
-}
-.gi-win:before {
-	content: '\33';
-}
-.gi-selected:before {
-	content: '\32';
-}
-.gi-guaranteed:before {
-	content: '\35';
-}
-.gi-apple:before {
-	content: '\34';
-}
-.gi-android:before {
-	content: '\36';
-}
-.gi-windows:before {
-	content: '\37';
-}
-.gi-eye-slash:before {
-	content: '\38';
-}
-.gi-eye:before {
-	content: '\39';
-}
-.gi-check:before {
-	content: '\21';
-}
-.gi-chat:before {
-	content: '\5a';
-}
-.gi-fullscreen:before {
-	content: '\23';
-}
-.gi-picture:before {
-	content: '\22';
-}
-.gi-team:before {
-	content: '\24';
-}
-.gi-user:before {
-	content: '\25';
-}
-.gi-min:before {
-	content: '\26';
-}
-.gi-gear:before {
-	content: '\27';
-}
-.gi-zoom-in:before {
-	content: '\28';
-}
-.gi-zoom-out:before {
-	content: '\29';
-}
-.gi-reset:before {
-	content: '\2a';
-}
-.gi-pen:before {
-	content: '\2b';
-}
-.gi-move:before {
-	content: '\2c';
-}
-.gi-lock:before {
-	content: '\2d';
-}
-.gi-share:before {
-	content: '\2e';
-}
-.gi-network:before {
-	content: '\2f';
-}
-.gi-cloud:before {
-	content: '\3a';
-}
-.gi-cloud-sync:before {
-	content: '\3b';
-}
-.gi-drive:before {
-	content: '\3c';
-}
-.gi-local:before {
-	content: '\3d';
-}
-.gi-import:before {
-	content: '\3e';
-}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-128x128.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-128x128.png
deleted file mode 100644
index c5eb8f47..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-128x128.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-144x144.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-144x144.png
deleted file mode 100644
index b6bad28d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-144x144.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-152x152.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-152x152.png
deleted file mode 100644
index f70eed2b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-152x152.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-16x16.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-16x16.png
deleted file mode 100644
index 3c36d632..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-16x16.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-192x192.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-192x192.png
deleted file mode 100644
index 81d84f02..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-192x192.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-256x256.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-256x256.png
deleted file mode 100644
index 93fc3dbe..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-256x256.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-32x32.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-32x32.png
deleted file mode 100644
index 6625dd32..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-32x32.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-384x384.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-384x384.png
deleted file mode 100644
index 5561aee3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-384x384.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-512x512.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-512x512.png
deleted file mode 100644
index f4c66a79..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-512x512.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-72x72.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-72x72.png
deleted file mode 100644
index de53fd9d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-72x72.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-96x96.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-96x96.png
deleted file mode 100644
index 52e83dd9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/icon-96x96.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/mstile-150x150.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/mstile-150x150.png
deleted file mode 100644
index a253942e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/icons/mstile-150x150.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg1.webp
deleted file mode 100644
index 957f92f7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg10.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg10.webp
deleted file mode 100644
index 173def22..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg10.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg11.webp
deleted file mode 100644
index 62b6b197..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg12.webp
deleted file mode 100644
index 8f365ff7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg13.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg13.webp
deleted file mode 100644
index 967d7502..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg13.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg14.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg14.webp
deleted file mode 100644
index 930fcd6e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg14.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg15.webp
deleted file mode 100644
index 1016fa20..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg16.webp
deleted file mode 100644
index d327f13d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg17.webp
deleted file mode 100644
index d33ca5da..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg18.webp
deleted file mode 100644
index 930b0a3b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg19.webp
deleted file mode 100644
index 8fdb70c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg2.webp
deleted file mode 100644
index a05d9297..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg20.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg20.webp
deleted file mode 100644
index 439f857f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg20.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg3.webp
deleted file mode 100644
index e50fd8b1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg4.webp
deleted file mode 100644
index ff3602ed..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg5.webp
deleted file mode 100644
index bf3b7c32..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg6.webp
deleted file mode 100644
index bb04a235..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg7.webp
deleted file mode 100644
index f7cd3a7b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg8.webp
deleted file mode 100644
index 654c716f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg9.webp
deleted file mode 100644
index bc93c270..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/bg9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/constellation.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/constellation.webp
deleted file mode 100644
index cfbcf1ea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/constellation.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/detailbg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/detailbg.webp
deleted file mode 100644
index e46c16de..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/detailbg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-anemo-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-anemo-bg.webp
deleted file mode 100644
index 8bb2cfec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-anemo-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-cryo-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-cryo-bg.webp
deleted file mode 100644
index 910328d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-cryo-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-dendro-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-dendro-bg.webp
deleted file mode 100644
index 67020b7f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-dendro-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-electro-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-electro-bg.webp
deleted file mode 100644
index bcd96887..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-electro-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-geo-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-geo-bg.webp
deleted file mode 100644
index da6af8c9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-geo-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-hydro-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-hydro-bg.webp
deleted file mode 100644
index 6ca39cb2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-hydro-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-pyro-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-pyro-bg.webp
deleted file mode 100644
index 2ef190f5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/element-pyro-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/outfit-background.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/outfit-background.webp
deleted file mode 100644
index acd28aeb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/outfit-background.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/splash-background.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/splash-background.webp
deleted file mode 100644
index 79394344..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/splash-background.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/wish-background.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/wish-background.webp
deleted file mode 100644
index 78b6f8c2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/background/wish-background.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/beginner/beginner.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/beginner/beginner.webp
deleted file mode 100644
index 44b7e3c5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/beginner/beginner.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-1.webp
deleted file mode 100644
index 5f5ff955..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-2.webp
deleted file mode 100644
index fc37da1c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-3.webp
deleted file mode 100644
index fa6dc536..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-4.webp
deleted file mode 100644
index 02baa9bf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/adrift-in-the-harbor-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/auric-blaze-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/auric-blaze-1.webp
deleted file mode 100644
index 4604ae19..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/auric-blaze-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/azure-excursion-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/azure-excursion-1.webp
deleted file mode 100644
index df9483ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/azure-excursion-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/azure-excursion-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/azure-excursion-2.webp
deleted file mode 100644
index 3067f803..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/azure-excursion-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-1.webp
deleted file mode 100644
index 0a604204..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-2.webp
deleted file mode 100644
index 43f080de..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-3.webp
deleted file mode 100644
index 5c31e553..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-4.webp
deleted file mode 100644
index 172af357..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-5.webp
deleted file mode 100644
index 50cb1933..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/ballad-in-goblets-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-1.webp
deleted file mode 100644
index a17833bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-2.webp
deleted file mode 100644
index 2d661718..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-3.webp
deleted file mode 100644
index 09ed43f0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/born-of-ocean-swell-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/caution-in-confidence-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/caution-in-confidence-1.webp
deleted file mode 100644
index 8427a207..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/caution-in-confidence-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/caution-in-confidence-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/caution-in-confidence-2.webp
deleted file mode 100644
index cbfbb9af..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/caution-in-confidence-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/chanson-of-many-waters-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/chanson-of-many-waters-1.webp
deleted file mode 100644
index fd0a4344..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/chanson-of-many-waters-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/conjuring-chiaroscuro-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/conjuring-chiaroscuro-1.webp
deleted file mode 100644
index 07016deb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/conjuring-chiaroscuro-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/dance-of-lantern-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/dance-of-lantern-1.webp
deleted file mode 100644
index 1d6da71d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/dance-of-lantern-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/decree-of-the-deeps-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/decree-of-the-deeps-1.webp
deleted file mode 100644
index 6f5ef7c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/decree-of-the-deeps-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-1.webp
deleted file mode 100644
index 6af1cabc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-2.webp
deleted file mode 100644
index b9c6042c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-3.webp
deleted file mode 100644
index 8d83161b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/discerner-of-enigmas-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-1.webp
deleted file mode 100644
index c285c9c4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-2.webp
deleted file mode 100644
index 51a6a17d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-3.webp
deleted file mode 100644
index 57c0ced2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-4.webp
deleted file mode 100644
index 2add530c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/drifting-luminescence-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-1.webp
deleted file mode 100644
index 7f309a40..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-2.webp
deleted file mode 100644
index 8b22d9c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-3.webp
deleted file mode 100644
index 96e58e11..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/everbloom-violet-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-1.webp
deleted file mode 100644
index 336ec951..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-2.webp
deleted file mode 100644
index 85d2e3c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-3.webp
deleted file mode 100644
index f9bac39c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-4.webp
deleted file mode 100644
index c7296fc0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-5.webp
deleted file mode 100644
index b6a4a8fc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/farewell-of-snezhnaya-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/from-ashes-reborn-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/from-ashes-reborn-1.webp
deleted file mode 100644
index ac7b08ef..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/from-ashes-reborn-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/from-ashes-reborn-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/from-ashes-reborn-2.webp
deleted file mode 100644
index 055f63a0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/from-ashes-reborn-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-1.webp
deleted file mode 100644
index a12aa106..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-2.webp
deleted file mode 100644
index 72a5f17c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-3.webp
deleted file mode 100644
index 0247d39c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-4.webp
deleted file mode 100644
index 424aa240..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-5.webp
deleted file mode 100644
index 3a154eb5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/gentry-of-hermitage-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/immaculate-pulse-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/immaculate-pulse-1.webp
deleted file mode 100644
index 0b306638..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/immaculate-pulse-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/immaculate-pulse-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/immaculate-pulse-2.webp
deleted file mode 100644
index 5be184e7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/immaculate-pulse-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-1.webp
deleted file mode 100644
index 5318f42d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-2.webp
deleted file mode 100644
index 13ad923e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-3.webp
deleted file mode 100644
index be4937e5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-4.webp
deleted file mode 100644
index f0f7d636..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/invitation-to-mundane-life-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-1.webp
deleted file mode 100644
index 0723c01d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-2.webp
deleted file mode 100644
index 705dd953..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-3.webp
deleted file mode 100644
index e7765053..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/leaves-in-the-wind-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-1.webp
deleted file mode 100644
index bed03870..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-2.webp
deleted file mode 100644
index c794794e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-3.webp
deleted file mode 100644
index 82229b3c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-4.webp
deleted file mode 100644
index e714accc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/moment-of-bloom-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-1.webp
deleted file mode 100644
index 20a597b9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-2.webp
deleted file mode 100644
index 08403ff7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-3.webp
deleted file mode 100644
index 8544a2be..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/oni_s-royale-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-1.webp
deleted file mode 100644
index a4f18f40..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-2.webp
deleted file mode 100644
index 7f83bf9c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-3.webp
deleted file mode 100644
index 66c328dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/reign-of-serenity-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-1.webp
deleted file mode 100644
index d5756a69..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-2.webp
deleted file mode 100644
index fd3fcb5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-3.webp
deleted file mode 100644
index 824ab1b6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/secretum-secretorum-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-1.webp
deleted file mode 100644
index 8a0eeea5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-2.webp
deleted file mode 100644
index ddef8f39..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-3.webp
deleted file mode 100644
index a7480ae2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-4.webp
deleted file mode 100644
index 94c77e5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/sparkling-steps-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-1.webp
deleted file mode 100644
index 7669ef92..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-2.webp
deleted file mode 100644
index 7ced9e4b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-3.webp
deleted file mode 100644
index d4564784..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-4.webp
deleted file mode 100644
index d30eb93e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tapestry-of-golden-flames-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tempestuous-destiny-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tempestuous-destiny-1.webp
deleted file mode 100644
index 77b1b3dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/tempestuous-destiny-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-1.webp
deleted file mode 100644
index d21f1e0d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-2.webp
deleted file mode 100644
index 974099b3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-3.webp
deleted file mode 100644
index 0eae35c6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-heron_s-court-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-moongrass-enlightenment-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-moongrass-enlightenment-1.webp
deleted file mode 100644
index d51abb30..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-moongrass-enlightenment-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-moongrass-enlightenment-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-moongrass-enlightenment-2.webp
deleted file mode 100644
index 14621dbd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-moongrass-enlightenment-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-transcendent-one-returns-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-transcendent-one-returns-1.webp
deleted file mode 100644
index 8b06de82..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-transcendent-one-returns-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-transcendent-one-returns-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-transcendent-one-returns-2.webp
deleted file mode 100644
index 0ec6bae2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/the-transcendent-one-returns-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twilight-arbiter-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twilight-arbiter-1.webp
deleted file mode 100644
index d4cf515e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twilight-arbiter-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twilight-arbiter-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twilight-arbiter-2.webp
deleted file mode 100644
index 607c0554..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twilight-arbiter-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twirling-lotus-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twirling-lotus-1.webp
deleted file mode 100644
index 2e78d84f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twirling-lotus-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twirling-lotus-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twirling-lotus-2.webp
deleted file mode 100644
index de9ccd34..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/twirling-lotus-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/viridescent-vigil-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/viridescent-vigil-1.webp
deleted file mode 100644
index 01bd3796..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/character-events/viridescent-vigil-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/standard/wanderlust-invocation-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/standard/wanderlust-invocation-1.webp
deleted file mode 100644
index 1540b69e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/standard/wanderlust-invocation-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/standard/wanderlust-invocation-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/standard/wanderlust-invocation-2.webp
deleted file mode 100644
index 9d906cd9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/standard/wanderlust-invocation-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-1.webp
deleted file mode 100644
index 7e001090..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-2.webp
deleted file mode 100644
index 18db4fc9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-3.webp
deleted file mode 100644
index ec07d565..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-4.webp
deleted file mode 100644
index 819139ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/adrift-in-the-harbor-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/auric-blaze-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/auric-blaze-1.webp
deleted file mode 100644
index 8a5e9476..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/auric-blaze-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/azure-excursion-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/azure-excursion-1.webp
deleted file mode 100644
index 2aca5e47..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/azure-excursion-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/azure-excursion-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/azure-excursion-2.webp
deleted file mode 100644
index db2fcf30..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/azure-excursion-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-1.webp
deleted file mode 100644
index e9b058bf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-2.webp
deleted file mode 100644
index 8ae97ce5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-3.webp
deleted file mode 100644
index 1b1351b0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-4.webp
deleted file mode 100644
index 2529c34d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-5.webp
deleted file mode 100644
index 3edd18e1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/ballad-in-goblets-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-1.webp
deleted file mode 100644
index af98d038..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-2.webp
deleted file mode 100644
index 241a52c7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-3.webp
deleted file mode 100644
index c31ea1ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/born-of-ocean-swell-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/caution-in-confidence-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/caution-in-confidence-1.webp
deleted file mode 100644
index 252e51b0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/caution-in-confidence-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/caution-in-confidence-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/caution-in-confidence-2.webp
deleted file mode 100644
index 72c9bf3e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/caution-in-confidence-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/chanson-of-many-waters-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/chanson-of-many-waters-1.webp
deleted file mode 100644
index 0c85d2cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/chanson-of-many-waters-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/conjuring-chiaroscuro-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/conjuring-chiaroscuro-1.webp
deleted file mode 100644
index bea35e02..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/conjuring-chiaroscuro-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/dance-of-lantern-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/dance-of-lantern-1.webp
deleted file mode 100644
index 5c67861b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/dance-of-lantern-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/decree-of-the-deeps-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/decree-of-the-deeps-1.webp
deleted file mode 100644
index a083d0ee..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/decree-of-the-deeps-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-1.webp
deleted file mode 100644
index 64b6ddc2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-2.webp
deleted file mode 100644
index b4f0d3ee..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-3.webp
deleted file mode 100644
index 7cbce3ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/discerner-of-enigmas-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-1.webp
deleted file mode 100644
index e0f6d876..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-2.webp
deleted file mode 100644
index dc3d927e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-3.webp
deleted file mode 100644
index 236be07a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-4.webp
deleted file mode 100644
index 6d614463..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/drifting-luminescence-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-1.webp
deleted file mode 100644
index ece22200..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-10.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-10.webp
deleted file mode 100644
index b85a3b60..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-10.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-11.webp
deleted file mode 100644
index edd75b4c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-12.webp
deleted file mode 100644
index 584625e4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-13.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-13.webp
deleted file mode 100644
index 80ec142d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-13.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-14.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-14.webp
deleted file mode 100644
index a463b5ad..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-14.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-15.webp
deleted file mode 100644
index 88f40b2d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-16.webp
deleted file mode 100644
index a9474e12..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-17.webp
deleted file mode 100644
index ecddbdcf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-18.webp
deleted file mode 100644
index c6a0135e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-19.webp
deleted file mode 100644
index d2668407..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-2.webp
deleted file mode 100644
index b2d83bb6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-20.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-20.webp
deleted file mode 100644
index 6ce81f02..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-20.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-21.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-21.webp
deleted file mode 100644
index c0b9ddcd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-21.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-22.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-22.webp
deleted file mode 100644
index f97df76d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-22.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-23.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-23.webp
deleted file mode 100644
index 97e55567..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-23.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-24.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-24.webp
deleted file mode 100644
index b34d74bd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-24.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-25.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-25.webp
deleted file mode 100644
index 6f5650bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-25.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-26.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-26.webp
deleted file mode 100644
index 698d130f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-26.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-27.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-27.webp
deleted file mode 100644
index 40d68551..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-27.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-28.webp
deleted file mode 100644
index cc59741c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-29.webp
deleted file mode 100644
index 96591d26..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-3.webp
deleted file mode 100644
index 58b09aa0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-30.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-30.webp
deleted file mode 100644
index 9cd250f4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-30.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-31.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-31.webp
deleted file mode 100644
index 2ad8cc46..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-31.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-32.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-32.webp
deleted file mode 100644
index cd8ab937..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-32.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-33.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-33.webp
deleted file mode 100644
index d53ab6c9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-33.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-34.webp
deleted file mode 100644
index d58f1812..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-35.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-35.webp
deleted file mode 100644
index be70d0d5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-35.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-36.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-36.webp
deleted file mode 100644
index 6604d6c6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-36.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-37.webp
deleted file mode 100644
index 295f43aa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-38.webp
deleted file mode 100644
index 5a29786f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-39.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-39.webp
deleted file mode 100644
index 59215d6b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-39.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-4.webp
deleted file mode 100644
index bfdc20ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-40.webp
deleted file mode 100644
index b517ceaa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-41.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-41.webp
deleted file mode 100644
index bad72e26..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-41.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-42.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-42.webp
deleted file mode 100644
index 3767a3ca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-42.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-43.webp
deleted file mode 100644
index 5c8e863c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-44.webp
deleted file mode 100644
index 302c6a24..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-45.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-45.webp
deleted file mode 100644
index 3b8ec7d8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-45.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-46.webp
deleted file mode 100644
index 1f4edb2f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-47.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-47.webp
deleted file mode 100644
index 69d6767f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-47.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-48.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-48.webp
deleted file mode 100644
index 079a9965..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-48.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-49.webp
deleted file mode 100644
index 66fb0752..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-5.webp
deleted file mode 100644
index 996bed8b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-50.webp
deleted file mode 100644
index b8d60442..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-51.webp
deleted file mode 100644
index c80938c5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-52.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-52.webp
deleted file mode 100644
index 3b857a23..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-52.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-53.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-53.webp
deleted file mode 100644
index eb86960f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-53.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-54.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-54.webp
deleted file mode 100644
index 0c99b14d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-54.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-55.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-55.webp
deleted file mode 100644
index 230ea615..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-55.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-6.webp
deleted file mode 100644
index 6a306c70..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-7.webp
deleted file mode 100644
index 1085e568..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-8.webp
deleted file mode 100644
index d86aed5d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-9.webp
deleted file mode 100644
index 0ce543b5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/epitome-invocation-9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-1.webp
deleted file mode 100644
index c4098ecb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-2.webp
deleted file mode 100644
index 68ba4b86..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-3.webp
deleted file mode 100644
index 55fa0672..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/everbloom-violet-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-1.webp
deleted file mode 100644
index 232aaa12..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-2.webp
deleted file mode 100644
index 29a8f32a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-3.webp
deleted file mode 100644
index 67d75b01..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-4.webp
deleted file mode 100644
index 7987e3c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-5.webp
deleted file mode 100644
index 3943eeb9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/farewell-of-snezhnaya-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/from-ashes-reborn-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/from-ashes-reborn-1.webp
deleted file mode 100644
index 81a1aa95..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/from-ashes-reborn-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/from-ashes-reborn-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/from-ashes-reborn-2.webp
deleted file mode 100644
index 988cf00b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/from-ashes-reborn-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-1.webp
deleted file mode 100644
index b1e5bc6e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-2.webp
deleted file mode 100644
index 3cd6e689..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-3.webp
deleted file mode 100644
index f736a9d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-4.webp
deleted file mode 100644
index 85f2c95b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-5.webp
deleted file mode 100644
index a7a93509..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/gentry-of-hermitage-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/immaculate-pulse-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/immaculate-pulse-1.webp
deleted file mode 100644
index 316f6520..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/immaculate-pulse-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/immaculate-pulse-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/immaculate-pulse-2.webp
deleted file mode 100644
index b562d821..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/immaculate-pulse-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-1.webp
deleted file mode 100644
index ca31514e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-2.webp
deleted file mode 100644
index 35249d5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-3.webp
deleted file mode 100644
index 59d20999..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-4.webp
deleted file mode 100644
index d8090a10..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/invitation-to-mundane-life-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-1.webp
deleted file mode 100644
index cad63734..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-2.webp
deleted file mode 100644
index 222264ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-3.webp
deleted file mode 100644
index cfbf2bb1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/leaves-in-the-wind-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-1.webp
deleted file mode 100644
index 0de9b2ff..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-2.webp
deleted file mode 100644
index 0d3b850c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-3.webp
deleted file mode 100644
index bb9b84d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-4.webp
deleted file mode 100644
index c1d5b37d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/moment-of-bloom-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-1.webp
deleted file mode 100644
index 1d6be8e9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-2.webp
deleted file mode 100644
index bd861326..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-3.webp
deleted file mode 100644
index 781a8f14..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/oni_s-royale-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-1.webp
deleted file mode 100644
index 6e0581f6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-2.webp
deleted file mode 100644
index d0724a92..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-3.webp
deleted file mode 100644
index 200e5b35..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/reign-of-serenity-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-1.webp
deleted file mode 100644
index 016a851b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-2.webp
deleted file mode 100644
index 2ab4e290..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-3.webp
deleted file mode 100644
index ce059204..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/secretum-secretorum-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-1.webp
deleted file mode 100644
index d79bd732..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-2.webp
deleted file mode 100644
index 52ed56b4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-3.webp
deleted file mode 100644
index a56f48eb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-4.webp
deleted file mode 100644
index b5960e64..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/sparkling-steps-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-1.webp
deleted file mode 100644
index 1c50fa66..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-2.webp
deleted file mode 100644
index 7470e030..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-3.webp
deleted file mode 100644
index 24c96e72..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-4.webp
deleted file mode 100644
index 2e565494..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tapestry-of-golden-flames-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tempestuous-destiny-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tempestuous-destiny-1.webp
deleted file mode 100644
index 1848aa1a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/tempestuous-destiny-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-1.webp
deleted file mode 100644
index 0f57dff9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-2.webp
deleted file mode 100644
index 09ce0e17..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-3.webp
deleted file mode 100644
index 1e70a0af..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-heron_s-court-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-moongrass-enlightenment-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-moongrass-enlightenment-1.webp
deleted file mode 100644
index ecab252b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-moongrass-enlightenment-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-moongrass-enlightenment-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-moongrass-enlightenment-2.webp
deleted file mode 100644
index aad63bda..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-moongrass-enlightenment-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-transcendent-one-returns-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-transcendent-one-returns-1.webp
deleted file mode 100644
index 1ffc5093..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-transcendent-one-returns-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-transcendent-one-returns-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-transcendent-one-returns-2.webp
deleted file mode 100644
index 22c4da08..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/the-transcendent-one-returns-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twilight-arbiter-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twilight-arbiter-1.webp
deleted file mode 100644
index 2c20229e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twilight-arbiter-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twilight-arbiter-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twilight-arbiter-2.webp
deleted file mode 100644
index 460cbcd5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twilight-arbiter-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twirling-lotus-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twirling-lotus-1.webp
deleted file mode 100644
index afa1855a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twirling-lotus-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twirling-lotus-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twirling-lotus-2.webp
deleted file mode 100644
index d9a6e72b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/twirling-lotus-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/viridescent-vigil-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/viridescent-vigil-1.webp
deleted file mode 100644
index c6e140a6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/thumbnail/viridescent-vigil-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-1.webp
deleted file mode 100644
index 30aa58ba..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-10.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-10.webp
deleted file mode 100644
index d76989f5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-10.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-11.webp
deleted file mode 100644
index 7b5eccf3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-12.webp
deleted file mode 100644
index 9b066c23..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-13.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-13.webp
deleted file mode 100644
index 401c62e1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-13.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-14.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-14.webp
deleted file mode 100644
index fab7bf0a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-14.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-15.webp
deleted file mode 100644
index f6d17ec3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-16.webp
deleted file mode 100644
index f843cf6a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-17.webp
deleted file mode 100644
index e75ce9d8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-18.webp
deleted file mode 100644
index 4765b94a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-19.webp
deleted file mode 100644
index 8771c80d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-2.webp
deleted file mode 100644
index d9b00ec9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-20.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-20.webp
deleted file mode 100644
index f5158f89..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-20.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-21.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-21.webp
deleted file mode 100644
index 4b97ebf0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-21.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-22.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-22.webp
deleted file mode 100644
index 89ffc12f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-22.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-23.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-23.webp
deleted file mode 100644
index fe46e3f5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-23.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-24.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-24.webp
deleted file mode 100644
index 4c2ae617..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-24.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-25.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-25.webp
deleted file mode 100644
index 374833f2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-25.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-26.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-26.webp
deleted file mode 100644
index 03291ba7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-26.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-27.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-27.webp
deleted file mode 100644
index a08fe5ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-27.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-28.webp
deleted file mode 100644
index 00ce55f4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-29.webp
deleted file mode 100644
index b96df902..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-3.webp
deleted file mode 100644
index 58e9ac84..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-30.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-30.webp
deleted file mode 100644
index f91364f6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-30.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-31.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-31.webp
deleted file mode 100644
index 2d8594f5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-31.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-32.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-32.webp
deleted file mode 100644
index b5876296..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-32.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-33.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-33.webp
deleted file mode 100644
index 6e0e7bc9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-33.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-34.webp
deleted file mode 100644
index 6e23f7f5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-35.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-35.webp
deleted file mode 100644
index e69c76d1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-35.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-36.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-36.webp
deleted file mode 100644
index a46b1e31..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-36.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-37.webp
deleted file mode 100644
index 2d8d34b3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-38.webp
deleted file mode 100644
index 420272fc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-39.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-39.webp
deleted file mode 100644
index 9bebd21d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-39.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-4.webp
deleted file mode 100644
index db2912a0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-40.webp
deleted file mode 100644
index 351ee5a1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-41.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-41.webp
deleted file mode 100644
index 207d535d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-41.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-42.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-42.webp
deleted file mode 100644
index 6e330533..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-42.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-43.webp
deleted file mode 100644
index 67b9335a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-44.webp
deleted file mode 100644
index 701be67d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-45.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-45.webp
deleted file mode 100644
index 55e26dd4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-45.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-46.webp
deleted file mode 100644
index 6326559b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-47.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-47.webp
deleted file mode 100644
index 7564ba7c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-47.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-48.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-48.webp
deleted file mode 100644
index eabf66c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-48.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-49.webp
deleted file mode 100644
index 6ab04c49..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-5.webp
deleted file mode 100644
index 63a30bb4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-50.webp
deleted file mode 100644
index f0c2528a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-51.webp
deleted file mode 100644
index 960f0a3c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-52.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-52.webp
deleted file mode 100644
index 6c18bf9f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-52.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-53.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-53.webp
deleted file mode 100644
index 3e458e55..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-53.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-54.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-54.webp
deleted file mode 100644
index 295cb59e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-54.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-55.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-55.webp
deleted file mode 100644
index 31ac49a4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-55.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-6.webp
deleted file mode 100644
index b02d1139..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-7.webp
deleted file mode 100644
index 54343ae2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-8.webp
deleted file mode 100644
index 7321cb61..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-9.webp
deleted file mode 100644
index ce82c586..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/banner/weapons/epitome-invocation-9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/albedo.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/albedo.webp
deleted file mode 100644
index b1fa8a67..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/albedo.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/alhaitham.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/alhaitham.webp
deleted file mode 100644
index 768c17e4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/alhaitham.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/arataki-itto.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/arataki-itto.webp
deleted file mode 100644
index 7fbb509e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/arataki-itto.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/baizhu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/baizhu.webp
deleted file mode 100644
index 8507ce38..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/baizhu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/cyno.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/cyno.webp
deleted file mode 100644
index 710c6b7a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/cyno.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/dehya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/dehya.webp
deleted file mode 100644
index 353d5f9a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/dehya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/eula.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/eula.webp
deleted file mode 100644
index eafc1af6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/eula.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/furina.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/furina.webp
deleted file mode 100644
index d84c0c88..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/furina.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/ganyu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/ganyu.webp
deleted file mode 100644
index 4c500bdc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/ganyu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/hu-tao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/hu-tao.webp
deleted file mode 100644
index d9c08958..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/hu-tao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/jean.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/jean.webp
deleted file mode 100644
index 3be08117..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/jean.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kaedehara-kazuha.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kaedehara-kazuha.webp
deleted file mode 100644
index 71ce1a10..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kaedehara-kazuha.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kamisato-ayaka.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kamisato-ayaka.webp
deleted file mode 100644
index 74b3d3dc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kamisato-ayaka.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kamisato-ayato.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kamisato-ayato.webp
deleted file mode 100644
index fd1e0168..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/kamisato-ayato.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/keqing.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/keqing.webp
deleted file mode 100644
index bc14e981..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/keqing.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/klee.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/klee.webp
deleted file mode 100644
index 4d5bcf51..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/klee.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/lyney.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/lyney.webp
deleted file mode 100644
index 46394b92..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/lyney.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/nahida.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/nahida.webp
deleted file mode 100644
index d86c90b3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/nahida.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/neuvillette.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/neuvillette.webp
deleted file mode 100644
index d3a13732..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/neuvillette.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/nilou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/nilou.webp
deleted file mode 100644
index c331160a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/nilou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/noelle.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/noelle.webp
deleted file mode 100644
index 00b12cbc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/noelle.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/qiqi.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/qiqi.webp
deleted file mode 100644
index 3d5c980c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/qiqi.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/raiden-shogun.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/raiden-shogun.webp
deleted file mode 100644
index a7b75828..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/raiden-shogun.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/sangonomiya-kokomi.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/sangonomiya-kokomi.webp
deleted file mode 100644
index 2b2ed539..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/sangonomiya-kokomi.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/shenhe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/shenhe.webp
deleted file mode 100644
index 7608a4dc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/shenhe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/tartaglia.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/tartaglia.webp
deleted file mode 100644
index 169d0f0f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/tartaglia.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/tighnari.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/tighnari.webp
deleted file mode 100644
index fe51dc46..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/tighnari.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/venti.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/venti.webp
deleted file mode 100644
index b0c4ab3a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/venti.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/wanderer.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/wanderer.webp
deleted file mode 100644
index 90a765c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/wanderer.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/wriothesley.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/wriothesley.webp
deleted file mode 100644
index 64096607..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/wriothesley.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/xiao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/xiao.webp
deleted file mode 100644
index aa456f7e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/xiao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yae-miko.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yae-miko.webp
deleted file mode 100644
index 45f60520..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yae-miko.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yelan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yelan.webp
deleted file mode 100644
index fe8f3793..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yelan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yoimiya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yoimiya.webp
deleted file mode 100644
index c8caa5ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/yoimiya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/zhongli.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/zhongli.webp
deleted file mode 100644
index 2a64c829..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/banner-button/zhongli.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/amber.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/amber.webp
deleted file mode 100644
index 677a41df..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/amber.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/barbara.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/barbara.webp
deleted file mode 100644
index 22e27605..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/barbara.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/beidou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/beidou.webp
deleted file mode 100644
index 41fa15f4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/beidou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/bennett.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/bennett.webp
deleted file mode 100644
index 04441f3d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/bennett.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/candace.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/candace.webp
deleted file mode 100644
index 3e932a08..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/candace.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/charlotte.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/charlotte.webp
deleted file mode 100644
index f1a665eb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/charlotte.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/chongyun.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/chongyun.webp
deleted file mode 100644
index 9780df6b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/chongyun.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/collei.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/collei.webp
deleted file mode 100644
index 39de0c86..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/collei.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/diona.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/diona.webp
deleted file mode 100644
index b19297ba..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/diona.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/dori.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/dori.webp
deleted file mode 100644
index f5b53f70..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/dori.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/faruzan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/faruzan.webp
deleted file mode 100644
index dc789862..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/faruzan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/fischl.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/fischl.webp
deleted file mode 100644
index 214f7bad..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/fischl.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/freminet.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/freminet.webp
deleted file mode 100644
index 50b035c2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/freminet.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/gorou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/gorou.webp
deleted file mode 100644
index 0481946d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/gorou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kaeya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kaeya.webp
deleted file mode 100644
index 169d5ef7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kaeya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kaveh.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kaveh.webp
deleted file mode 100644
index 8522322a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kaveh.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kirara.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kirara.webp
deleted file mode 100644
index 353f5930..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kirara.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kujou-sara.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kujou-sara.webp
deleted file mode 100644
index 44b65cfc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kujou-sara.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kuki-shinobu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kuki-shinobu.webp
deleted file mode 100644
index a184c63d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/kuki-shinobu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/layla.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/layla.webp
deleted file mode 100644
index 011dc99c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/layla.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/lisa.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/lisa.webp
deleted file mode 100644
index 21f6d89b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/lisa.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/lynette.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/lynette.webp
deleted file mode 100644
index 3f3621a5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/lynette.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/mika.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/mika.webp
deleted file mode 100644
index 3a391622..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/mika.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/ningguang.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/ningguang.webp
deleted file mode 100644
index 93f79e59..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/ningguang.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/noelle.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/noelle.webp
deleted file mode 100644
index 87f5359e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/noelle.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/razor.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/razor.webp
deleted file mode 100644
index dcb8386d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/razor.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/rosaria.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/rosaria.webp
deleted file mode 100644
index c9f17693..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/rosaria.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/sayu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/sayu.webp
deleted file mode 100644
index 2d7fae3c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/sayu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/shikanoin-heizou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/shikanoin-heizou.webp
deleted file mode 100644
index 10a6619a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/shikanoin-heizou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/sucrose.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/sucrose.webp
deleted file mode 100644
index 3f5733e4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/sucrose.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/thoma.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/thoma.webp
deleted file mode 100644
index 3d925d15..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/thoma.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xiangling.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xiangling.webp
deleted file mode 100644
index dc9305dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xiangling.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xingqiu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xingqiu.webp
deleted file mode 100644
index 62095244..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xingqiu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xinyan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xinyan.webp
deleted file mode 100644
index 1bf79e09..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/xinyan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yanfei.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yanfei.webp
deleted file mode 100644
index 4c910016..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yanfei.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yaoyao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yaoyao.webp
deleted file mode 100644
index e96a6859..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yaoyao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yun-jin.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yun-jin.webp
deleted file mode 100644
index e31a0639..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/4star/yun-jin.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/albedo.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/albedo.webp
deleted file mode 100644
index 6588b6dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/albedo.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/alhaitham.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/alhaitham.webp
deleted file mode 100644
index 365ccbd6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/alhaitham.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/arataki-itto.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/arataki-itto.webp
deleted file mode 100644
index 4cf6c91a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/arataki-itto.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/baizhu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/baizhu.webp
deleted file mode 100644
index 12a902f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/baizhu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/cyno.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/cyno.webp
deleted file mode 100644
index 20c3aac5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/cyno.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/dehya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/dehya.webp
deleted file mode 100644
index ea6451cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/dehya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/diluc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/diluc.webp
deleted file mode 100644
index 3c58d207..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/diluc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/eula.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/eula.webp
deleted file mode 100644
index ef90fd81..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/eula.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/furina.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/furina.webp
deleted file mode 100644
index 6b404441..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/furina.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/ganyu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/ganyu.webp
deleted file mode 100644
index c9f81a04..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/ganyu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/hu-tao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/hu-tao.webp
deleted file mode 100644
index 244f8674..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/hu-tao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/jean.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/jean.webp
deleted file mode 100644
index d7f5f5c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/jean.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kaedehara-kazuha.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kaedehara-kazuha.webp
deleted file mode 100644
index 1fcb3b9f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kaedehara-kazuha.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kamisato-ayaka.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kamisato-ayaka.webp
deleted file mode 100644
index d39bfa7f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kamisato-ayaka.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kamisato-ayato.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kamisato-ayato.webp
deleted file mode 100644
index d770f74b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/kamisato-ayato.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/keqing.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/keqing.webp
deleted file mode 100644
index 760de945..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/keqing.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/klee.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/klee.webp
deleted file mode 100644
index 4bfff1dc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/klee.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/lyney.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/lyney.webp
deleted file mode 100644
index 4243a38e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/lyney.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/mona.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/mona.webp
deleted file mode 100644
index b6c2bf9a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/mona.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/nahida.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/nahida.webp
deleted file mode 100644
index e461aa7b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/nahida.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/neuvillette.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/neuvillette.webp
deleted file mode 100644
index ed230e6b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/neuvillette.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/nilou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/nilou.webp
deleted file mode 100644
index f8755989..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/nilou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/qiqi.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/qiqi.webp
deleted file mode 100644
index 2597abcc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/qiqi.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/raiden-shogun.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/raiden-shogun.webp
deleted file mode 100644
index d0a6d71a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/raiden-shogun.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/sangonomiya-kokomi.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/sangonomiya-kokomi.webp
deleted file mode 100644
index dd2f53e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/sangonomiya-kokomi.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/shenhe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/shenhe.webp
deleted file mode 100644
index 27e5bf79..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/shenhe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/tartaglia.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/tartaglia.webp
deleted file mode 100644
index 772038a1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/tartaglia.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/tighnari.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/tighnari.webp
deleted file mode 100644
index 218f6d2a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/tighnari.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/venti.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/venti.webp
deleted file mode 100644
index 3659b145..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/venti.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/wanderer.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/wanderer.webp
deleted file mode 100644
index a656a4d2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/wanderer.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/wriothesley.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/wriothesley.webp
deleted file mode 100644
index a5c72705..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/wriothesley.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/xiao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/xiao.webp
deleted file mode 100644
index b8301775..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/xiao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yae-miko.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yae-miko.webp
deleted file mode 100644
index 48ea4fe4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yae-miko.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yelan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yelan.webp
deleted file mode 100644
index 4a11b7ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yelan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yoimiya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yoimiya.webp
deleted file mode 100644
index 5affd6a3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/yoimiya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/zhongli.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/zhongli.webp
deleted file mode 100644
index 79da1022..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/face/5star/zhongli.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/amber.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/amber.webp
deleted file mode 100644
index 88d884e4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/amber.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/barbara.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/barbara.webp
deleted file mode 100644
index 19a5d34f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/barbara.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/beidou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/beidou.webp
deleted file mode 100644
index 7870fff5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/beidou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/bennett.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/bennett.webp
deleted file mode 100644
index 883d6654..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/bennett.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/candace.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/candace.webp
deleted file mode 100644
index 86637bab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/candace.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/charlotte.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/charlotte.webp
deleted file mode 100644
index 89a8cde5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/charlotte.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/chongyun.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/chongyun.webp
deleted file mode 100644
index 974fe70d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/chongyun.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/collei.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/collei.webp
deleted file mode 100644
index 1cd2f230..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/collei.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/diona.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/diona.webp
deleted file mode 100644
index 6b7edccc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/diona.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/dori.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/dori.webp
deleted file mode 100644
index db9c996d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/dori.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/faruzan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/faruzan.webp
deleted file mode 100644
index 682e8b78..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/faruzan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/fischl.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/fischl.webp
deleted file mode 100644
index 8ed44cd7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/fischl.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/freminet.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/freminet.webp
deleted file mode 100644
index 13dd5875..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/freminet.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/gorou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/gorou.webp
deleted file mode 100644
index e25d382b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/gorou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kaeya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kaeya.webp
deleted file mode 100644
index 1d7e276d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kaeya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kaveh.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kaveh.webp
deleted file mode 100644
index c6c7aaee..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kaveh.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kirara.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kirara.webp
deleted file mode 100644
index e053b7a2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kirara.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kujou-sara.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kujou-sara.webp
deleted file mode 100644
index 8945b596..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kujou-sara.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kuki-shinobu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kuki-shinobu.webp
deleted file mode 100644
index 3f7810fd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/kuki-shinobu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/layla.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/layla.webp
deleted file mode 100644
index 5fcb3c90..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/layla.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/lisa.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/lisa.webp
deleted file mode 100644
index 5acc1f50..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/lisa.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/lynette.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/lynette.webp
deleted file mode 100644
index bd14a56f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/lynette.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/mika.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/mika.webp
deleted file mode 100644
index cb1bec0c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/mika.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/ningguang.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/ningguang.webp
deleted file mode 100644
index c0653bdc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/ningguang.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/noelle.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/noelle.webp
deleted file mode 100644
index 74dd9794..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/noelle.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/razor.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/razor.webp
deleted file mode 100644
index 635086a8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/razor.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/rosaria.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/rosaria.webp
deleted file mode 100644
index f51ceb11..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/rosaria.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/sayu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/sayu.webp
deleted file mode 100644
index 777283ba..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/sayu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/shikanoin-heizou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/shikanoin-heizou.webp
deleted file mode 100644
index 71dc27f0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/shikanoin-heizou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/sucrose.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/sucrose.webp
deleted file mode 100644
index 4984c1e5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/sucrose.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/thoma.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/thoma.webp
deleted file mode 100644
index 083b708e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/thoma.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xiangling.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xiangling.webp
deleted file mode 100644
index 66325a71..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xiangling.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xingqiu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xingqiu.webp
deleted file mode 100644
index bbdc09cc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xingqiu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xinyan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xinyan.webp
deleted file mode 100644
index 5d3b3488..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/xinyan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yanfei.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yanfei.webp
deleted file mode 100644
index 8d535a17..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yanfei.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yaoyao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yaoyao.webp
deleted file mode 100644
index 4efe4ef9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yaoyao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yun-jin.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yun-jin.webp
deleted file mode 100644
index d42370cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/4star/yun-jin.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/albedo.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/albedo.webp
deleted file mode 100644
index 62f745c0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/albedo.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/alhaitham.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/alhaitham.webp
deleted file mode 100644
index dd754d5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/alhaitham.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/arataki-itto.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/arataki-itto.webp
deleted file mode 100644
index b7e2eb45..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/arataki-itto.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/baizhu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/baizhu.webp
deleted file mode 100644
index 2db004e8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/baizhu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/cyno.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/cyno.webp
deleted file mode 100644
index 75660e38..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/cyno.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/dehya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/dehya.webp
deleted file mode 100644
index fd7cdc47..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/dehya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/diluc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/diluc.webp
deleted file mode 100644
index e63bccb0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/diluc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/eula.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/eula.webp
deleted file mode 100644
index d44a65de..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/eula.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/furina.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/furina.webp
deleted file mode 100644
index efb6ac35..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/furina.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/ganyu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/ganyu.webp
deleted file mode 100644
index d95fc02a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/ganyu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/hu-tao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/hu-tao.webp
deleted file mode 100644
index c26d5f7b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/hu-tao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/jean.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/jean.webp
deleted file mode 100644
index cb658e9d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/jean.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kaedehara-kazuha.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kaedehara-kazuha.webp
deleted file mode 100644
index 94864406..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kaedehara-kazuha.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kamisato-ayaka.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kamisato-ayaka.webp
deleted file mode 100644
index 43071efb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kamisato-ayaka.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kamisato-ayato.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kamisato-ayato.webp
deleted file mode 100644
index 8dc5cb63..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/kamisato-ayato.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/keqing.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/keqing.webp
deleted file mode 100644
index 8eff59b6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/keqing.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/klee.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/klee.webp
deleted file mode 100644
index 27906551..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/klee.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/lyney.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/lyney.webp
deleted file mode 100644
index e1ce7208..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/lyney.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/mona.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/mona.webp
deleted file mode 100644
index 070d9a07..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/mona.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/nahida.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/nahida.webp
deleted file mode 100644
index 419fc895..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/nahida.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/neuvillette.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/neuvillette.webp
deleted file mode 100644
index 0536d51a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/neuvillette.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/nilou.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/nilou.webp
deleted file mode 100644
index c196101c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/nilou.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/qiqi.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/qiqi.webp
deleted file mode 100644
index fa8f9ca7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/qiqi.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/raiden-shogun.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/raiden-shogun.webp
deleted file mode 100644
index 931238fe..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/raiden-shogun.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/sangonomiya-kokomi.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/sangonomiya-kokomi.webp
deleted file mode 100644
index 78bf7b95..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/sangonomiya-kokomi.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/shenhe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/shenhe.webp
deleted file mode 100644
index e11f0da8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/shenhe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/tartaglia.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/tartaglia.webp
deleted file mode 100644
index 5abe8d91..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/tartaglia.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/tighnari.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/tighnari.webp
deleted file mode 100644
index 6563516d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/tighnari.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/venti.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/venti.webp
deleted file mode 100644
index 09dc6083..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/venti.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/wanderer.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/wanderer.webp
deleted file mode 100644
index b746ddad..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/wanderer.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/wriothesley.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/wriothesley.webp
deleted file mode 100644
index 42913faa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/wriothesley.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/xiao.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/xiao.webp
deleted file mode 100644
index f13218c3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/xiao.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yae-miko.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yae-miko.webp
deleted file mode 100644
index 1efa998d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yae-miko.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yelan.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yelan.webp
deleted file mode 100644
index 43bbfd3a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yelan.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yoimiya.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yoimiya.webp
deleted file mode 100644
index e94bd42b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/yoimiya.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/zhongli.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/zhongli.webp
deleted file mode 100644
index f4a396dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/characters/splash-art/5star/zhongli.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/5-star-outrider.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/5-star-outrider.webp
deleted file mode 100644
index c060b270..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/5-star-outrider.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/a-sobriquet-under-shade.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/a-sobriquet-under-shade.webp
deleted file mode 100644
index ff8a6c07..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/a-sobriquet-under-shade.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/blossoming-starlight.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/blossoming-starlight.webp
deleted file mode 100644
index 88cd6121..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/blossoming-starlight.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/ein-immernachtstraum.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/ein-immernachtstraum.webp
deleted file mode 100644
index 1b3a36e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/ein-immernachtstraum.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/executor_s-thorns.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/executor_s-thorns.webp
deleted file mode 100644
index 2cbf4733..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/executor_s-thorns.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/favonian-fevotion.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/favonian-fevotion.webp
deleted file mode 100644
index a426699f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/favonian-fevotion.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/flowing-fate.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/flowing-fate.webp
deleted file mode 100644
index 280c93ea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/flowing-fate.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/opulent-splendor.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/opulent-splendor.webp
deleted file mode 100644
index 6d506ca3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/opulent-splendor.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/orchid_s-evening-gown.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/orchid_s-evening-gown.webp
deleted file mode 100644
index 08e43bc5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/orchid_s-evening-gown.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/red-dead-of-night.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/red-dead-of-night.webp
deleted file mode 100644
index ab6a1068..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/red-dead-of-night.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/sailwind-shadow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/sailwind-shadow.webp
deleted file mode 100644
index 4e29109c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/sailwind-shadow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/sea-breeze-dandelion.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/sea-breeze-dandelion.webp
deleted file mode 100644
index cab77c2c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/sea-breeze-dandelion.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/springbloom-missive.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/springbloom-missive.webp
deleted file mode 100644
index 6f98854d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/springbloom-missive.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/summertime-sparkle.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/summertime-sparkle.webp
deleted file mode 100644
index 90e3b048..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/face/summertime-sparkle.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/5-star-outrider.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/5-star-outrider.webp
deleted file mode 100644
index 00671ecf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/5-star-outrider.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/a-sobriquet-under-shade.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/a-sobriquet-under-shade.webp
deleted file mode 100644
index 591739f0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/a-sobriquet-under-shade.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/blossoming-starlight.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/blossoming-starlight.webp
deleted file mode 100644
index eec99d83..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/blossoming-starlight.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/ein-immernachtstraum.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/ein-immernachtstraum.webp
deleted file mode 100644
index a508abb2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/ein-immernachtstraum.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/executor_s-thorns.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/executor_s-thorns.webp
deleted file mode 100644
index a9d343b1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/executor_s-thorns.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/favonian-fevotion.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/favonian-fevotion.webp
deleted file mode 100644
index a4329df9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/favonian-fevotion.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/flowing-fate.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/flowing-fate.webp
deleted file mode 100644
index 62fedd8a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/flowing-fate.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/opulent-splendor.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/opulent-splendor.webp
deleted file mode 100644
index d26e2b12..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/opulent-splendor.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/orchid_s-evening-gown.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/orchid_s-evening-gown.webp
deleted file mode 100644
index b72b11f8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/orchid_s-evening-gown.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/red-dead-of-night.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/red-dead-of-night.webp
deleted file mode 100644
index f211eef9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/red-dead-of-night.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/sailwind-shadow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/sailwind-shadow.webp
deleted file mode 100644
index d67d2b08..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/sailwind-shadow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/sea-breeze-dandelion.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/sea-breeze-dandelion.webp
deleted file mode 100644
index b701ed14..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/sea-breeze-dandelion.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/springbloom-missive.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/springbloom-missive.webp
deleted file mode 100644
index 5a63f288..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/springbloom-missive.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/summertime-sparkle.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/summertime-sparkle.webp
deleted file mode 100644
index d8cdd0da..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/splash-art/summertime-sparkle.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/a-sobriquet-under-shade.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/a-sobriquet-under-shade.webp
deleted file mode 100644
index 43a71c8c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/a-sobriquet-under-shade.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/blossoming-starlight.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/blossoming-starlight.webp
deleted file mode 100644
index 90af395e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/blossoming-starlight.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/ein-immernachtstraum.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/ein-immernachtstraum.webp
deleted file mode 100644
index bdf8ba38..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/ein-immernachtstraum.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/opulent-splendor.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/opulent-splendor.webp
deleted file mode 100644
index 5fd7f7f3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/opulent-splendor.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/orchid_s-evening-gown.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/orchid_s-evening-gown.webp
deleted file mode 100644
index 6e7393f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/orchid_s-evening-gown.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/red-dead-of-night.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/red-dead-of-night.webp
deleted file mode 100644
index c41beaf6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/red-dead-of-night.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/sailwind-shadow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/sailwind-shadow.webp
deleted file mode 100644
index 39225298..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/sailwind-shadow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/sea-breeze-dandelion.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/sea-breeze-dandelion.webp
deleted file mode 100644
index b18b07a2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/sea-breeze-dandelion.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/springbloom-missive.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/springbloom-missive.webp
deleted file mode 100644
index aedef0e8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/springbloom-missive.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/summertime-sparkle.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/summertime-sparkle.webp
deleted file mode 100644
index cfab16b0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/outfits/thumbnail/summertime-sparkle.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/3star-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/3star-bg.webp
deleted file mode 100644
index fda8f420..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/3star-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/4star-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/4star-bg.webp
deleted file mode 100644
index cfa537f3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/4star-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/5star-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/5star-bg.webp
deleted file mode 100644
index d5ceeb7d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/5star-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/acquaint-fate.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/acquaint-fate.webp
deleted file mode 100644
index f605ba5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/acquaint-fate.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/admin.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/admin.webp
deleted file mode 100644
index 7ea7124f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/admin.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-bonus.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-bonus.webp
deleted file mode 100644
index 08b43da6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-bonus.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-bow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-bow.webp
deleted file mode 100644
index aac6f6c3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-bow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-catalyst.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-catalyst.webp
deleted file mode 100644
index 9f81b884..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-catalyst.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-claymore.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-claymore.webp
deleted file mode 100644
index 30213a91..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-claymore.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-polearm.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-polearm.webp
deleted file mode 100644
index 32d119cf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-polearm.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-sword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-sword.webp
deleted file mode 100644
index 14e03e2e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/bg-sword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/book-select-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/book-select-bg.webp
deleted file mode 100644
index 4742bf99..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/book-select-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/book.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/book.webp
deleted file mode 100644
index 01d92170..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/book.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/brand.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/brand.png
deleted file mode 100644
index deb15359..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/brand.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/button.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/button.webp
deleted file mode 100644
index 0f981f62..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/button.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-bnb.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-bnb.png
deleted file mode 100644
index 87a6156d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-bnb.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-btc.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-btc.png
deleted file mode 100644
index c460b8e5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-btc.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-dana.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-dana.png
deleted file mode 100644
index 445816b9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-dana.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-ethereum.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-ethereum.png
deleted file mode 100644
index 6ac68066..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-ethereum.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-gopay.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-gopay.png
deleted file mode 100644
index b4e9b4b3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-gopay.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-kofi.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-kofi.png
deleted file mode 100644
index 0f9a1403..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-kofi.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-linkaja.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-linkaja.png
deleted file mode 100644
index 382a432a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-linkaja.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-ovo.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-ovo.png
deleted file mode 100644
index eeb00a8e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-ovo.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-saweria.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-saweria.webp
deleted file mode 100644
index e4260349..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-saweria.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-shopeepay.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-shopeepay.png
deleted file mode 100644
index a2af774a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-shopeepay.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-solana.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-solana.png
deleted file mode 100644
index a738f40d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/donate-solana.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/fatepointbook-half.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/fatepointbook-half.webp
deleted file mode 100644
index 55b7230a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/fatepointbook-half.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/fatepointbook.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/fatepointbook.webp
deleted file mode 100644
index 797bc3d9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/fatepointbook.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-1980.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-1980.webp
deleted file mode 100644
index 65d6c46f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-1980.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-300.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-300.webp
deleted file mode 100644
index c09bd4b3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-300.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-3280.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-3280.webp
deleted file mode 100644
index 3d07a307..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-3280.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-60.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-60.webp
deleted file mode 100644
index cbfde2c4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-60.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-6480.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-6480.webp
deleted file mode 100644
index 3b1ecfb6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-6480.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-980.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-980.webp
deleted file mode 100644
index d0ca0f6e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-980.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-bg.webp
deleted file mode 100644
index f85ca686..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis.webp
deleted file mode 100644
index c38dbd76..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genesis.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genshin-logo-cn.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genshin-logo-cn.webp
deleted file mode 100644
index 75254df2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genshin-logo-cn.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genshin-logo.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genshin-logo.webp
deleted file mode 100644
index d8e0e57c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/genshin-logo.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/history-select-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/history-select-bg.webp
deleted file mode 100644
index cc192d2d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/history-select-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/imbroke.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/imbroke.webp
deleted file mode 100644
index 6c579640..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/imbroke.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/intertwined-fate.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/intertwined-fate.webp
deleted file mode 100644
index 4cfff65c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/intertwined-fate.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/masterless-stardust.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/masterless-stardust.webp
deleted file mode 100644
index 0d996cb2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/masterless-stardust.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/masterless-starglitter.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/masterless-starglitter.webp
deleted file mode 100644
index 8ae2d5ea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/masterless-starglitter.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/menu-active.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/menu-active.png
deleted file mode 100644
index 05dbc54f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/menu-active.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/modal-bg-icon.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/modal-bg-icon.png
deleted file mode 100644
index 5c6134de..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/modal-bg-icon.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-childe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-childe.webp
deleted file mode 100644
index 75b5080e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-childe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-tears.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-tears.webp
deleted file mode 100644
index 06148a30..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-tears.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-wakaranai.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-wakaranai.webp
deleted file mode 100644
index f38dd2fe..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/payment-wakaranai.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/paypal.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/paypal.png
deleted file mode 100644
index 2f084cd4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/paypal.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/playstore-button.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/playstore-button.webp
deleted file mode 100644
index 02a95170..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/playstore-button.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/primogem.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/primogem.webp
deleted file mode 100644
index f30366b1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/primogem.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/resultcard-bg.svg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/resultcard-bg.svg
deleted file mode 100644
index 4ff9c7af..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/resultcard-bg.svg
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg width="100%" height="100%" viewBox="0 0 142 614" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
-    <rect id="画板1" x="0" y="0" width="142" height="614" style="fill:none;"/>
-    <clipPath id="_clip1">
-        <rect id="画板11" serif:id="画板1" x="0" y="0" width="142" height="614"/>
-    </clipPath>
-    <g clip-path="url(#_clip1)">
-        <g>
-            <path d="M70.912,613.913C70.04,613.058 62.81,606.111 54.588,602.644C34.667,594.243 32.886,579.064 32.886,579.064L32.886,572.226C32.886,572.226 28.818,565.043 19.557,565.043C10.296,565.043 10.811,559.633 10.811,559.633C10.811,559.633 10.93,553.378 10.811,553.378C0.046,553.378 0,537.745 0,537.745L0,76.215C0,63.008 10.854,60.235 10.854,60.235C10.854,60.235 10.722,56.801 10.722,55.613C10.722,54.424 11.251,49.273 18.118,49.273C27.495,49.273 32.91,42.934 32.91,42.934C32.91,28.539 34.23,22.332 51.795,13.615C69.36,4.899 71,0 71,0L71.005,0.014C71.118,0.309 73.188,5.171 90.205,13.615C107.77,22.332 109.09,28.539 109.09,42.934C109.09,42.934 114.505,49.273 123.882,49.273C130.749,49.273 131.278,54.424 131.278,55.613C131.278,56.801 131.146,60.235 131.146,60.235C131.146,60.235 142,63.008 142,76.215L142,537.745C142,537.745 141.954,553.378 131.189,553.378C131.07,553.378 131.189,559.633 131.189,559.633C131.189,559.633 131.704,565.043 122.443,565.043C113.182,565.043 109.114,572.226 109.114,572.226L109.114,579.064C109.114,579.064 107.333,594.243 87.412,602.644C78.642,606.342 71,614 71,614L70.912,613.913Z" style="fill:url(#_Linear2);stroke:rgb(192,186,199);stroke-width:2px;"/>
-            <g>
-                <g transform="matrix(-0.511274,0.511274,0.511274,0.511274,73.9625,-5.43667)">
-                    <path d="M79.755,83.555C79.938,83.937 79.938,84.382 79.755,84.764C78.688,87.001 74.912,94.914 72.683,99.587C72.43,100.116 72.539,100.746 72.953,101.16C73.367,101.575 73.998,101.683 74.526,101.431C79.199,99.201 87.113,95.425 89.349,94.358C89.732,94.175 90.176,94.175 90.559,94.358C92.795,95.425 100.709,99.201 105.381,101.431C105.91,101.683 106.54,101.575 106.955,101.16C107.369,100.746 107.477,100.116 107.225,99.587C104.995,94.914 101.219,87.001 100.152,84.764C99.97,84.382 99.97,83.937 100.152,83.555C101.219,81.318 104.995,73.405 107.225,68.732C107.477,68.203 107.369,67.573 106.955,67.159C106.54,66.744 105.91,66.636 105.381,66.888C100.709,69.118 92.795,72.894 90.559,73.961C90.176,74.144 89.732,74.144 89.349,73.961C87.113,72.894 79.199,69.118 74.526,66.888C73.998,66.636 73.367,66.744 72.953,67.159C72.539,67.573 72.43,68.203 72.683,68.732C74.912,73.405 78.688,81.318 79.755,83.555Z" style="fill:rgb(249,255,244);"/>
-                </g>
-                <g transform="matrix(-0.29806,0.29806,0.29806,0.29806,72.7271,-18.2343)">
-                    <path d="M79.549,83.122C79.862,83.778 79.862,84.541 79.549,85.197C78.489,87.418 75.93,92.781 73.886,97.064C73.454,97.971 73.639,99.053 74.35,99.763C75.061,100.474 76.142,100.66 77.049,100.227C81.332,98.183 86.695,95.624 88.916,94.564C89.573,94.251 90.335,94.251 90.991,94.564C93.213,95.624 98.575,98.183 102.859,100.227C103.766,100.66 104.847,100.474 105.558,99.763C106.268,99.053 106.454,97.971 106.021,97.064C103.978,92.781 101.419,87.418 100.359,85.197C100.046,84.541 100.046,83.778 100.359,83.122C101.419,80.901 103.978,75.538 106.021,71.255C106.454,70.348 106.268,69.266 105.558,68.556C104.847,67.845 103.766,67.659 102.859,68.092C98.575,70.136 93.213,72.695 90.991,73.755C90.335,74.068 89.573,74.068 88.916,73.755C86.695,72.695 81.332,70.136 77.049,68.092C76.142,67.659 75.061,67.845 74.35,68.556C73.639,69.266 73.454,70.348 73.886,71.255C75.93,75.538 78.489,80.901 79.549,83.122Z" style="fill:rgb(249,255,244);"/>
-                </g>
-                <g transform="matrix(-0.29806,0.29806,0.29806,0.29806,72.7271,83.137)">
-                    <path d="M79.549,83.122C79.862,83.778 79.862,84.541 79.549,85.197C78.489,87.418 75.93,92.781 73.886,97.064C73.454,97.971 73.639,99.053 74.35,99.763C75.061,100.474 76.142,100.66 77.049,100.227C81.332,98.183 86.695,95.624 88.916,94.564C89.573,94.251 90.335,94.251 90.991,94.564C93.213,95.624 98.575,98.183 102.859,100.227C103.766,100.66 104.847,100.474 105.558,99.763C106.268,99.053 106.454,97.971 106.021,97.064C103.978,92.781 101.419,87.418 100.359,85.197C100.046,84.541 100.046,83.778 100.359,83.122C101.419,80.901 103.978,75.538 106.021,71.255C106.454,70.348 106.268,69.266 105.558,68.556C104.847,67.845 103.766,67.659 102.859,68.092C98.575,70.136 93.213,72.695 90.991,73.755C90.335,74.068 89.573,74.068 88.916,73.755C86.695,72.695 81.332,70.136 77.049,68.092C76.142,67.659 75.061,67.845 74.35,68.556C73.639,69.266 73.454,70.348 73.886,71.255C75.93,75.538 78.489,80.901 79.549,83.122Z" style="fill:rgb(249,255,244);"/>
-                </g>
-            </g>
-            <g id="_Image2_" serif:id="_Image2" transform="matrix(1.27493,0,0,1.27876,-19.5201,185.73)">
-                <use id="_Image2_1" serif:id="_Image2" xlink:href="#_Image3" x="0" y="0" width="142px" height="190px"/>
-            </g>
-            <g transform="matrix(0.93851,0,0,0.983559,4.3658,5.04741)">
-                <path d="M10.862,554.352C6.688,553.995 3.917,551.439 2.116,548.373C-0.642,543.679 -1.063,537.814 -1.063,537.814C-1.065,537.791 -1.066,537.768 -1.066,537.745L-1.066,76.215C-1.066,64.366 7.988,60.435 10.827,59.494C10.788,58.401 10.722,56.452 10.722,55.613C10.722,54.796 10.566,52.36 12.089,50.53C13.121,49.288 14.915,48.257 18.118,48.257C26.065,48.257 32.617,41.921 33.975,40.512C33.97,33.331 33.858,28.659 35.872,24.686C37.934,20.617 42.217,17.223 51.304,12.713C61.692,7.558 66.437,4.131 68.565,2.204C69.666,1.206 70.027,0.602 70.027,0.602L71,2.033C71,2.033 71.624,-0.274 71.994,0.651C72.036,0.714 72.523,1.432 73.633,2.408C75.856,4.363 80.627,7.716 90.696,12.713C99.783,17.223 104.066,20.617 106.128,24.686C108.142,28.659 108.03,33.331 108.026,40.513C109.384,41.921 115.935,48.257 123.882,48.257C127.085,48.257 128.879,49.288 129.911,50.53C131.434,52.36 131.278,54.796 131.278,55.613C131.278,56.452 131.212,58.401 131.173,59.494C134.012,60.435 143.066,64.366 143.066,76.215L143.066,537.745C143.066,537.768 143.065,537.791 143.063,537.814C143.063,537.814 142.642,543.679 139.884,548.373C138.083,551.439 135.312,553.995 131.138,554.352C131.122,555.894 131.176,558.915 131.187,559.507C131.308,560.07 131.608,562.137 129.921,563.837C128.768,565 126.591,566.059 122.443,566.059C114.569,566.059 109.065,573.157 108.048,574.568C108.048,574.568 108.048,581.085 108.049,581.085C108.059,581.572 108.169,595.003 87.842,603.574C79.226,607.207 71.717,613.735 71.717,613.735C71.534,613.895 71.297,613.988 71.05,613.999L71,614C70.684,614 70.392,613.867 70.194,613.647C70.178,613.634 70.163,613.62 70.148,613.605C69.295,612.768 62.208,606.969 54.158,603.574C33.812,594.994 33.941,581.546 33.952,581.085C33.952,581.085 33.952,574.568 33.951,574.567C32.936,573.158 27.432,566.059 19.557,566.059C15.409,566.059 13.232,565 12.079,563.837C10.391,562.136 10.692,560.068 10.813,559.511C10.824,558.915 10.878,555.893 10.862,554.352ZM70.975,2.728C71.278,3.059 71.675,3.451 72.189,3.904C74.474,5.913 79.363,9.381 89.713,14.517C98.191,18.724 102.286,21.775 104.21,25.571C106.146,29.392 105.894,33.908 105.894,40.901C105.894,41.144 105.985,41.379 106.151,41.564C106.151,41.564 114.068,50.29 123.882,50.29C126.173,50.29 127.503,50.906 128.242,51.794C129.378,53.16 129.147,55.003 129.147,55.613C129.147,56.792 129.015,60.198 129.015,60.198C128.997,60.68 129.336,61.108 129.828,61.223C129.828,61.223 140.934,63.853 140.934,76.215L140.934,537.708C140.898,538.164 140.443,543.263 138.025,547.378C136.442,550.074 133.991,552.362 130.124,552.362C129.862,552.362 129.572,552.436 129.321,552.708C129.272,552.761 129.064,553.01 129.032,553.489C128.963,554.516 129.059,559.652 129.059,559.652C129.06,559.738 129.073,559.823 129.098,559.906C129.098,559.906 129.492,561.312 128.374,562.44C127.466,563.354 125.705,564.026 122.443,564.026C112.664,564.026 106.086,573.711 106.086,573.711C105.976,573.874 105.917,574.065 105.917,574.26L105.917,581.097C105.917,581.106 105.918,581.115 105.918,581.123C105.918,581.123 106.121,593.643 86.981,601.714C79.693,604.787 73.17,609.857 71.025,611.612C68.877,609.801 62.334,604.799 55.019,601.714C35.879,593.643 36.082,581.123 36.082,581.123C36.082,581.115 36.083,581.106 36.083,581.097L36.083,574.26C36.083,574.065 36.024,573.874 35.914,573.711C35.914,573.711 29.336,564.026 19.557,564.026C16.295,564.026 14.534,563.354 13.626,562.44C12.508,561.312 12.902,559.906 12.902,559.906C12.927,559.823 12.94,559.738 12.941,559.652C12.941,559.652 13.037,554.516 12.968,553.489C12.936,553.01 12.728,552.761 12.679,552.708C12.428,552.436 12.138,552.362 11.876,552.362C8.009,552.362 5.558,550.074 3.975,547.378C1.568,543.282 1.106,538.212 1.066,537.716L1.066,76.215C1.066,63.853 12.172,61.223 12.172,61.223C12.664,61.108 13.003,60.68 12.985,60.198C12.985,60.198 12.853,56.792 12.853,55.613C12.853,55.003 12.622,53.16 13.758,51.794C14.497,50.906 15.827,50.29 18.118,50.29C27.932,50.29 35.849,41.564 35.849,41.564C36.015,41.379 36.106,41.144 36.106,40.901C36.106,33.908 35.854,29.392 37.79,25.571C39.714,21.775 43.809,18.724 52.287,14.517C64.518,8.448 69.215,4.591 70.975,2.728ZM72.006,0.683C72.087,0.914 71.26,1.785 71.052,2L71.988,1.397C71.988,1.397 71.954,1.485 71.838,1.665C71.852,1.648 71.865,1.631 71.878,1.614C72.077,1.342 72.125,0.995 72.006,0.683ZM70.039,1.459C70.026,1.433 70.014,1.406 70.004,1.379C70.01,1.395 70.021,1.422 70.039,1.459Z" style="fill:rgb(155,175,176);"/>
-            </g>
-        </g>
-    </g>
-    <defs>
-        <linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.0932082,613.899,-613.899,-0.0932082,71.0052,0.0143191)"><stop offset="0" style="stop-color:rgb(77,103,128);stop-opacity:1"/><stop offset="0.19" style="stop-color:rgb(106,128,140);stop-opacity:1"/><stop offset="0.39" style="stop-color:rgb(188,197,174);stop-opacity:1"/><stop offset="0.61" style="stop-color:rgb(188,197,174);stop-opacity:1"/><stop offset="0.78" style="stop-color:rgb(104,125,143);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(82,106,135);stop-opacity:1"/></linearGradient>
-        <image id="_Image3" width="142px" height="190px" xlink:href="data:image/png;base64,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"/>
-    </defs>
-</svg>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/shop-nav-bg.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/shop-nav-bg.webp
deleted file mode 100644
index d0662edc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/shop-nav-bg.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/stella-fortuna-4star.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/stella-fortuna-4star.webp
deleted file mode 100644
index 7c77a9fd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/stella-fortuna-4star.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/stella-fortuna-5star.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/stella-fortuna-5star.webp
deleted file mode 100644
index 1ab1b082..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/stella-fortuna-5star.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin-card.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin-card.webp
deleted file mode 100644
index 8d4c5631..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin-card.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin-moon-girl.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin-moon-girl.webp
deleted file mode 100644
index 0800eb5f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin-moon-girl.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin.webp
deleted file mode 100644
index 88f9ac15..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/utility/welkin.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-01.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-01.webp
deleted file mode 100644
index e58e33dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-01.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-02.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-02.webp
deleted file mode 100644
index 81f84ce1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-02.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-03.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-03.webp
deleted file mode 100644
index 2d1c579d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-03.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-04.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-04.webp
deleted file mode 100644
index e63394d4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-04.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-05.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-05.webp
deleted file mode 100644
index 1f3d311f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-05.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-06.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-06.webp
deleted file mode 100644
index 9996bd3f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-06.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-07.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-07.webp
deleted file mode 100644
index 619a6f5f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-07.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-08.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-08.webp
deleted file mode 100644
index dfc69876..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-08.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-09.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-09.webp
deleted file mode 100644
index 3849f40f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-09.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-10.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-10.webp
deleted file mode 100644
index 26bfe400..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-10.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-11.webp
deleted file mode 100644
index 1ef8161c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-12.webp
deleted file mode 100644
index fc4111a4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-13.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-13.webp
deleted file mode 100644
index a59fb44d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-13.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-14.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-14.webp
deleted file mode 100644
index 9b04ec1a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-14.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-15.webp
deleted file mode 100644
index f2f1ec31..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-16.webp
deleted file mode 100644
index 3791202b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-17.webp
deleted file mode 100644
index 90aacb99..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-18.webp
deleted file mode 100644
index 610e7f1b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-19.webp
deleted file mode 100644
index 95ba32d3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-20.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-20.webp
deleted file mode 100644
index 71d928bd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-20.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-21.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-21.webp
deleted file mode 100644
index 33aedbd9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-21.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-22.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-22.webp
deleted file mode 100644
index b9c31026..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-22.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-23.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-23.webp
deleted file mode 100644
index d723506f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-23.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-24.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-24.webp
deleted file mode 100644
index 8b262a0b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-24.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-25.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-25.webp
deleted file mode 100644
index 1a9c5823..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-25.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-26.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-26.webp
deleted file mode 100644
index 6b8fe6f0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-26.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-27.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-27.webp
deleted file mode 100644
index 214419cc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-27.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-28.webp
deleted file mode 100644
index 210ca24b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-29.webp
deleted file mode 100644
index 00278380..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-30.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-30.webp
deleted file mode 100644
index 7c16f774..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-30.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-31.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-31.webp
deleted file mode 100644
index 652a1bbc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-31.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-32.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-32.webp
deleted file mode 100644
index dacaca16..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-32.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-33.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-33.webp
deleted file mode 100644
index ca108e6f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-33.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-34.webp
deleted file mode 100644
index 8b48c07e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-35.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-35.webp
deleted file mode 100644
index 6d337224..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-35.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-36.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-36.webp
deleted file mode 100644
index c2e046e7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-36.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-37.webp
deleted file mode 100644
index 5ac0ba5f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-38.webp
deleted file mode 100644
index 6b9ace57..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-39.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-39.webp
deleted file mode 100644
index 11efdf2d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-39.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-40.webp
deleted file mode 100644
index 8d38942d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-41.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-41.webp
deleted file mode 100644
index b11474a0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-41.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-42.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-42.webp
deleted file mode 100644
index d60658a7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-42.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-43.webp
deleted file mode 100644
index a0f7746f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-44.webp
deleted file mode 100644
index a71875a0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-45.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-45.webp
deleted file mode 100644
index 7433f0c6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-45.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-46.webp
deleted file mode 100644
index 106257e2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-47.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-47.webp
deleted file mode 100644
index 52cff256..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-47.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-48.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-48.webp
deleted file mode 100644
index 1203410a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-48.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-49.webp
deleted file mode 100644
index dccdb654..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-50.webp
deleted file mode 100644
index 076559db..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-51.webp
deleted file mode 100644
index 2737d572..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/3star/a22-51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/alley-hunter.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/alley-hunter.webp
deleted file mode 100644
index b21113c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/alley-hunter.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/favonius-warbow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/favonius-warbow.webp
deleted file mode 100644
index f3a776ce..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/favonius-warbow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/mitternachts-waltz.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/mitternachts-waltz.webp
deleted file mode 100644
index 0c4a426b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/mitternachts-waltz.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/mouun_s-moon.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/mouun_s-moon.webp
deleted file mode 100644
index 6b8bd87d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/mouun_s-moon.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/range-gauge.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/range-gauge.webp
deleted file mode 100644
index ca0862c3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/range-gauge.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/rust.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/rust.webp
deleted file mode 100644
index bb8859fd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/rust.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/sacrificial-bow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/sacrificial-bow.webp
deleted file mode 100644
index 20353027..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/sacrificial-bow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/the-stringless.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/the-stringless.webp
deleted file mode 100644
index 85e31f4e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/4star/the-stringless.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/amos-bow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/amos-bow.webp
deleted file mode 100644
index 7fa55510..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/amos-bow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/aqua-simulacra.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/aqua-simulacra.webp
deleted file mode 100644
index 54db4768..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/aqua-simulacra.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/elegy-for-the-end.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/elegy-for-the-end.webp
deleted file mode 100644
index d35656a7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/elegy-for-the-end.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/hunter_s-path.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/hunter_s-path.webp
deleted file mode 100644
index e5dc29cf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/hunter_s-path.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/polar-star.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/polar-star.webp
deleted file mode 100644
index 7681b8b1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/polar-star.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/skyward-harp.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/skyward-harp.webp
deleted file mode 100644
index a24a0ad6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/skyward-harp.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/the-first-great-magic.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/the-first-great-magic.webp
deleted file mode 100644
index bfcc2550..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/the-first-great-magic.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/thundering-pulse.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/thundering-pulse.webp
deleted file mode 100644
index 48fe5174..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/bow/5star/thundering-pulse.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/emerald-orb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/emerald-orb.webp
deleted file mode 100644
index 970f57dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/emerald-orb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/magic-guide.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/magic-guide.webp
deleted file mode 100644
index 55c7373b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/magic-guide.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp
deleted file mode 100644
index 6b2ddaf4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/eye-of-perception.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/eye-of-perception.webp
deleted file mode 100644
index 781ff765..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/eye-of-perception.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/favonius-codex.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/favonius-codex.webp
deleted file mode 100644
index 95ae68de..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/favonius-codex.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/sacrificial-fragments.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/sacrificial-fragments.webp
deleted file mode 100644
index e4e6265d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/sacrificial-fragments.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/the-widsith.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/the-widsith.webp
deleted file mode 100644
index f79183d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/the-widsith.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/wandering-evenstar.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/wandering-evenstar.webp
deleted file mode 100644
index 173a9dfb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/wandering-evenstar.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/wine-and-song.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/wine-and-song.webp
deleted file mode 100644
index 40bd5246..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/4star/wine-and-song.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/a-thousand-floating-dreams.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/a-thousand-floating-dreams.webp
deleted file mode 100644
index 15b39cc1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/a-thousand-floating-dreams.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/cashflow-supervision.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/cashflow-supervision.webp
deleted file mode 100644
index 71700bde..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/cashflow-supervision.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/everlasting-moonglow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/everlasting-moonglow.webp
deleted file mode 100644
index 248c5e95..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/everlasting-moonglow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/jadefall-splendor.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/jadefall-splendor.webp
deleted file mode 100644
index 87c0e6ec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/jadefall-splendor.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/kagura_s-verity.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/kagura_s-verity.webp
deleted file mode 100644
index 5d82e50d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/kagura_s-verity.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp
deleted file mode 100644
index 803a5e7e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/memory-of-dust.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/memory-of-dust.webp
deleted file mode 100644
index 277ba3f8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/memory-of-dust.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/skyward-atlas.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/skyward-atlas.webp
deleted file mode 100644
index 9e801cd0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/skyward-atlas.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp
deleted file mode 100644
index e6c35094..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp
deleted file mode 100644
index e9d6f265..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/bloodtained-greatsword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/bloodtained-greatsword.webp
deleted file mode 100644
index aee0b83c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/bloodtained-greatsword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/debate-club.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/debate-club.webp
deleted file mode 100644
index af37dc57..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/debate-club.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/ferrous-shadow.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/ferrous-shadow.webp
deleted file mode 100644
index 77f342f3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/3star/ferrous-shadow.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/akuoumaru.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/akuoumaru.webp
deleted file mode 100644
index f4bb74c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/akuoumaru.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/favonius-greatsword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/favonius-greatsword.webp
deleted file mode 100644
index e086da1e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/favonius-greatsword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/lithic-blade.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/lithic-blade.webp
deleted file mode 100644
index 2a32337f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/lithic-blade.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/makhaira-aquamarine.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/makhaira-aquamarine.webp
deleted file mode 100644
index 347fa400..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/makhaira-aquamarine.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/portable-power-saw.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/portable-power-saw.webp
deleted file mode 100644
index 80d87bcb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/portable-power-saw.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/rainslasher.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/rainslasher.webp
deleted file mode 100644
index eaa367ea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/rainslasher.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/sacrificial-greatsword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/sacrificial-greatsword.webp
deleted file mode 100644
index efa45296..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/sacrificial-greatsword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/the-bell.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/the-bell.webp
deleted file mode 100644
index ec84b88c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/4star/the-bell.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/beacon-of-the-reed-sea.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/beacon-of-the-reed-sea.webp
deleted file mode 100644
index 6a8d3e2a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/beacon-of-the-reed-sea.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/redhorn-stonethresher.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/redhorn-stonethresher.webp
deleted file mode 100644
index 34ddeff1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/redhorn-stonethresher.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/skyward-pride.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/skyward-pride.webp
deleted file mode 100644
index 5c4d95d0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/skyward-pride.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/song-of-broken-pines.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/song-of-broken-pines.webp
deleted file mode 100644
index f00fc7af..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/song-of-broken-pines.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/the-unforged.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/the-unforged.webp
deleted file mode 100644
index 3e32ace0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/the-unforged.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/wolf_s-gravestone.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/wolf_s-gravestone.webp
deleted file mode 100644
index 35581025..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/claymore/5star/wolf_s-gravestone.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-01.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-01.webp
deleted file mode 100644
index d889fb0f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-01.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-02.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-02.webp
deleted file mode 100644
index 0d635edb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-02.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-03.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-03.webp
deleted file mode 100644
index 51884c78..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-03.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-04.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-04.webp
deleted file mode 100644
index 31ecadfb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-04.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-05.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-05.webp
deleted file mode 100644
index 3aa65f5a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-05.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-06.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-06.webp
deleted file mode 100644
index 867c1a7d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-06.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-07.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-07.webp
deleted file mode 100644
index 0259e59d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-07.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-08.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-08.webp
deleted file mode 100644
index 7f1c0c1e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-08.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-09.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-09.webp
deleted file mode 100644
index c73fec4e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-09.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-10.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-10.webp
deleted file mode 100644
index a53be274..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-10.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-11.webp
deleted file mode 100644
index b4d9652a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-12.webp
deleted file mode 100644
index 818678bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-13.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-13.webp
deleted file mode 100644
index 667590c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-13.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-14.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-14.webp
deleted file mode 100644
index 1563ae3a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-14.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-15.webp
deleted file mode 100644
index cc5aa277..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-16.webp
deleted file mode 100644
index e14b2deb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-17.webp
deleted file mode 100644
index 245abbc8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-18.webp
deleted file mode 100644
index 42c0a6f0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-19.webp
deleted file mode 100644
index 98b2542d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-20.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-20.webp
deleted file mode 100644
index 2d47fd10..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-20.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-21.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-21.webp
deleted file mode 100644
index 3586452b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-21.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-22.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-22.webp
deleted file mode 100644
index 931862f1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-22.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-23.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-23.webp
deleted file mode 100644
index 9468ce19..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-23.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-24.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-24.webp
deleted file mode 100644
index 584706a2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-24.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-25.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-25.webp
deleted file mode 100644
index ef97d80e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-25.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-26.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-26.webp
deleted file mode 100644
index b7f71eb0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-26.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-27.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-27.webp
deleted file mode 100644
index 7af98dd1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-27.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-28.webp
deleted file mode 100644
index 2f19cc1e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-29.webp
deleted file mode 100644
index c3f9e149..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-30.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-30.webp
deleted file mode 100644
index 91408870..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-30.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-31.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-31.webp
deleted file mode 100644
index 9ac0382d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-31.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-32.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-32.webp
deleted file mode 100644
index fcf8d055..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-32.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-33.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-33.webp
deleted file mode 100644
index a75cf032..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-33.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-34.webp
deleted file mode 100644
index 0437dc54..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-35.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-35.webp
deleted file mode 100644
index e368d807..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-35.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-36.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-36.webp
deleted file mode 100644
index b8d0e80a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-36.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-37.webp
deleted file mode 100644
index 2bf103f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-38.webp
deleted file mode 100644
index 49158ce8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-39.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-39.webp
deleted file mode 100644
index 243e5297..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-39.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-40.webp
deleted file mode 100644
index 3e60f3a1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-41.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-41.webp
deleted file mode 100644
index b4a904ee..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-41.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-42.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-42.webp
deleted file mode 100644
index 3c56d5f1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-42.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-43.webp
deleted file mode 100644
index 298a1368..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-44.webp
deleted file mode 100644
index b3697b65..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-45.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-45.webp
deleted file mode 100644
index 7b2361c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-45.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-46.webp
deleted file mode 100644
index b99386bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-47.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-47.webp
deleted file mode 100644
index a908561b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-47.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-48.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-48.webp
deleted file mode 100644
index 1d13ba9a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-48.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-49.webp
deleted file mode 100644
index cfba87db..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-50.webp
deleted file mode 100644
index 5cf26c8b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-51.webp
deleted file mode 100644
index 6e52e7b9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-52.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-52.webp
deleted file mode 100644
index a9ee8366..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-52.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-53.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-53.webp
deleted file mode 100644
index f88983e1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/a14-53.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/black-tassel.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/black-tassel.webp
deleted file mode 100644
index 0b73fa70..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/3star/black-tassel.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/dragon_s-bane.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/dragon_s-bane.webp
deleted file mode 100644
index c7cefdf1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/dragon_s-bane.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/favonius-lance.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/favonius-lance.webp
deleted file mode 100644
index 16ac9c53..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/favonius-lance.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/lithic-spear.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/lithic-spear.webp
deleted file mode 100644
index 61f519e4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/lithic-spear.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/prospector-drill.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/prospector-drill.webp
deleted file mode 100644
index 36fcaedb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/prospector-drill.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/wavebreaker_s-fin.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/wavebreaker_s-fin.webp
deleted file mode 100644
index 6d710321..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/4star/wavebreaker_s-fin.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/calamity-queller.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/calamity-queller.webp
deleted file mode 100644
index 234e8e46..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/calamity-queller.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/engulfing-lightning.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/engulfing-lightning.webp
deleted file mode 100644
index 521f740f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/engulfing-lightning.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/primordial-jade-winged-spear.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/primordial-jade-winged-spear.webp
deleted file mode 100644
index 2f41a73b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/primordial-jade-winged-spear.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/skyward-spine.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/skyward-spine.webp
deleted file mode 100644
index 6d313967..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/skyward-spine.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/staff-of-homa.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/staff-of-homa.webp
deleted file mode 100644
index c4a7c589..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/staff-of-homa.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp
deleted file mode 100644
index 1548eeb9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/vortex-vanquisher.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/vortex-vanquisher.webp
deleted file mode 100644
index 271c5fe7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/polearm/5star/vortex-vanquisher.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-01.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-01.webp
deleted file mode 100644
index 31ad37b1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-01.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-02.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-02.webp
deleted file mode 100644
index d22d535d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-02.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-03.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-03.webp
deleted file mode 100644
index 85db1bad..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-03.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-04.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-04.webp
deleted file mode 100644
index 718b1c6b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-04.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-05.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-05.webp
deleted file mode 100644
index 970ee44f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-05.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-06.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-06.webp
deleted file mode 100644
index 6fadfa7d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-06.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-07.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-07.webp
deleted file mode 100644
index 0b2b6b16..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-07.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-08.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-08.webp
deleted file mode 100644
index 2126f793..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-08.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-09.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-09.webp
deleted file mode 100644
index 04d8bb2d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-09.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-10.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-10.webp
deleted file mode 100644
index 1287994a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-10.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-11.webp
deleted file mode 100644
index b2097f7b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-12.webp
deleted file mode 100644
index 02e60cf6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-13.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-13.webp
deleted file mode 100644
index d2b5840a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-13.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-14.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-14.webp
deleted file mode 100644
index 27571948..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-14.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-15.webp
deleted file mode 100644
index 8fac279b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-16.webp
deleted file mode 100644
index 98ff20c6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-17.webp
deleted file mode 100644
index 51d72714..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-18.webp
deleted file mode 100644
index 43d9a002..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-19.webp
deleted file mode 100644
index f88cbfe8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-20.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-20.webp
deleted file mode 100644
index 1d099fa0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-20.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-21.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-21.webp
deleted file mode 100644
index 890ca1fa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-21.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-22.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-22.webp
deleted file mode 100644
index 873a201e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-22.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-23.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-23.webp
deleted file mode 100644
index b2df4e6f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-23.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-24.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-24.webp
deleted file mode 100644
index efd175cd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-24.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-25.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-25.webp
deleted file mode 100644
index d60ac0ef..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-25.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-26.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-26.webp
deleted file mode 100644
index 40dfa9c0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-26.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-27.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-27.webp
deleted file mode 100644
index 6fa7e67d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-27.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-28.webp
deleted file mode 100644
index 3f0fa605..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-29.webp
deleted file mode 100644
index f9b7fb6a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-30.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-30.webp
deleted file mode 100644
index 26c09ba6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-30.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-31.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-31.webp
deleted file mode 100644
index 6965c6ff..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-31.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-32.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-32.webp
deleted file mode 100644
index dba90920..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-32.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-33.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-33.webp
deleted file mode 100644
index 3e7f3179..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-33.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-34.webp
deleted file mode 100644
index 743c1075..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-35.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-35.webp
deleted file mode 100644
index cae72036..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-35.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-36.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-36.webp
deleted file mode 100644
index 5b2b9f49..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-36.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-37.webp
deleted file mode 100644
index 317541ed..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-38.webp
deleted file mode 100644
index c96f8524..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-39.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-39.webp
deleted file mode 100644
index a1326121..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-39.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-40.webp
deleted file mode 100644
index e1814d32..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-41.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-41.webp
deleted file mode 100644
index b9781ef9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-41.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-42.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-42.webp
deleted file mode 100644
index 69b6b0db..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-42.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-43.webp
deleted file mode 100644
index b52188ef..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-44.webp
deleted file mode 100644
index 769d15a7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-45.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-45.webp
deleted file mode 100644
index ca7ee387..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-45.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-46.webp
deleted file mode 100644
index d42a2ee0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-47.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-47.webp
deleted file mode 100644
index 17b88d0a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-47.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-48.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-48.webp
deleted file mode 100644
index 311ea332..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-48.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-49.webp
deleted file mode 100644
index b5278e5a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-50.webp
deleted file mode 100644
index d17f7a18..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/a03-50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/cool-steel.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/cool-steel.webp
deleted file mode 100644
index e15bb14a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/cool-steel.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/harbinger-of-dawn.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/harbinger-of-dawn.webp
deleted file mode 100644
index 68b5620c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/harbinger-of-dawn.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/skyrider-sword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/skyrider-sword.webp
deleted file mode 100644
index 57242381..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/3star/skyrider-sword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/favonius-sword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/favonius-sword.webp
deleted file mode 100644
index 239b6f8f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/favonius-sword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/lion_s-roar.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/lion_s-roar.webp
deleted file mode 100644
index e7d4a8dc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/lion_s-roar.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/sacrificial-sword.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/sacrificial-sword.webp
deleted file mode 100644
index a27880f7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/sacrificial-sword.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-alley-flash.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-alley-flash.webp
deleted file mode 100644
index 7f90465f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-alley-flash.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-dockhands-assistant.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-dockhands-assistant.webp
deleted file mode 100644
index 0a43029f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-dockhands-assistant.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-flute.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-flute.webp
deleted file mode 100644
index ec2977bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/the-flute.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/xiphos-moonlight.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/xiphos-moonlight.webp
deleted file mode 100644
index 081c8804..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/4star/xiphos-moonlight.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/aquila-favonia.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/aquila-favonia.webp
deleted file mode 100644
index d71e14e6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/aquila-favonia.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/freedom-sworn.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/freedom-sworn.webp
deleted file mode 100644
index 2b01571e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/freedom-sworn.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/haran-geppaku-futsu.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/haran-geppaku-futsu.webp
deleted file mode 100644
index 2172914f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/haran-geppaku-futsu.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/key-of-khaj-nisut.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/key-of-khaj-nisut.webp
deleted file mode 100644
index e64496ec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/key-of-khaj-nisut.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/light-of-foliar-incision.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/light-of-foliar-incision.webp
deleted file mode 100644
index f9f9ce69..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/light-of-foliar-incision.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/mistsplitter-reforged.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/mistsplitter-reforged.webp
deleted file mode 100644
index 339b875a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/mistsplitter-reforged.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/primordial-jade-cutter.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/primordial-jade-cutter.webp
deleted file mode 100644
index 4d4b8ba8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/primordial-jade-cutter.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/skyward-blade.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/skyward-blade.webp
deleted file mode 100644
index 0b38b34f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/skyward-blade.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/splendor-of-tranquil-waters.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/splendor-of-tranquil-waters.webp
deleted file mode 100644
index 77fc1fd7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/splendor-of-tranquil-waters.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/summit-shaper.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/summit-shaper.webp
deleted file mode 100644
index 6dc509d6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/images/weapons/sword/5star/summit-shaper.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/3star-bg-e32ae4e6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/3star-bg-e32ae4e6.webp
deleted file mode 100644
index fdf14b86..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/3star-bg-e32ae4e6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/4star-bg-fe0ec4b8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/4star-bg-fe0ec4b8.webp
deleted file mode 100644
index db015ec1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/4star-bg-fe0ec4b8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5-star-outrider-a1974a67.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5-star-outrider-a1974a67.webp
deleted file mode 100644
index 39b3fe9e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5-star-outrider-a1974a67.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5-star-outrider-cba01d40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5-star-outrider-cba01d40.webp
deleted file mode 100644
index 936a5f77..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5-star-outrider-cba01d40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5star-bg-7e695b0e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5star-bg-7e695b0e.webp
deleted file mode 100644
index 4b0c3e75..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5star-bg-7e695b0e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5star-special-6fe89819.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5star-special-6fe89819.webp
deleted file mode 100644
index 2d461c7c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/5star-special-6fe89819.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ButtonModal-dd0ea437.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ButtonModal-dd0ea437.css
deleted file mode 100644
index 2303d586..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ButtonModal-dd0ea437.css
+++ /dev/null
@@ -1 +0,0 @@
-button.svelte-1sz47b8.svelte-1sz47b8{border-radius:40px;align-items:center;padding:0 0 0 .3em;max-width:100%;height:2.3rem;position:relative;text-align:center;border:3.5px solid transparent;transition:all .2s;width:200px}button.light.svelte-1sz47b8.svelte-1sz47b8{background-color:#ece5d8;color:#4a5265}button.svelte-1sz47b8.svelte-1sz47b8:not(.light){color:#fff;background-color:#4a5265}button.svelte-1sz47b8.svelte-1sz47b8:active:not(:disabled){transform:scale(.9);background-color:#e0ddd4!important;border-color:#c3c3c3!important;box-shadow:#a0afbe99 0 0 7px 5px;color:#fff}button.svelte-1sz47b8.svelte-1sz47b8:disabled{opacity:.7}button.svelte-1sz47b8 i.svelte-1sz47b8{width:1.7rem;height:1.7rem;background-color:#353533;border-radius:100%;display:inline-flex;justify-content:center;align-items:center;font-size:.8rem;position:absolute;left:2%;top:50%;transform:translateY(-50%)}button.svelte-1sz47b8.svelte-1sz47b8:hover:not(:disabled){background-color:#333947}button.light.svelte-1sz47b8.svelte-1sz47b8:hover:not(:disabled){background-color:#c3b8a1}button.svelte-1sz47b8 i.svelte-1sz47b8{color:#ffc107}button.svelte-1sz47b8 i.gi-times.svelte-1sz47b8{color:#3f9ad1}.mobile button.svelte-1sz47b8.svelte-1sz47b8{height:2.1rem}.mobile button.svelte-1sz47b8.svelte-1sz47b8:not(.light){width:130px}@media screen and (max-width: 700px){main:not(.mobile) button.svelte-1sz47b8.svelte-1sz47b8{font-size:.85rem}main:not(.mobile) button.svelte-1sz47b8.svelte-1sz47b8:not(.light){width:120px}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/CheckBox-4ae22161.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/CheckBox-4ae22161.css
deleted file mode 100644
index cd63f30e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/CheckBox-4ae22161.css
+++ /dev/null
@@ -1 +0,0 @@
-.checkbox.svelte-1fmz7al.svelte-1fmz7al{margin:1%}label.svelte-1fmz7al.svelte-1fmz7al{cursor:inherit}.checkbox.svelte-1fmz7al input+label i.svelte-1fmz7al{color:#fff;display:inline-block;width:1.1rem;aspect-ratio:1/1;line-height:1rem;background-color:#fff;border:1px solid #aaa;transition:all .2s;text-align:center}.checkbox.svelte-1fmz7al input:checked+label i.svelte-1fmz7al{background-color:#06bbff;border-color:transparent}.checkbox.svelte-1fmz7al:hover input+label i.svelte-1fmz7al{border:1px solid #06bbff;box-shadow:#6aa8e699 0 0 7px 5px}.checkbox.svelte-1fmz7al input.svelte-1fmz7al{display:none}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/Iklan-27674bcf.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/Iklan-27674bcf.css
deleted file mode 100644
index 379f2d26..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/Iklan-27674bcf.css
+++ /dev/null
@@ -1 +0,0 @@
-ins.svelte-sv8va::-webkit-scrollbar,.row.svelte-sv8va::-webkit-scrollbar{display:none}.row.svelte-sv8va{width:100%;overflow:auto;display:flex}ins.svelte-sv8va{margin:auto;overflow:auto;max-width:100%}ins.adsbygoogle[data-ad-status=unfilled]{display:none!important}.banner.svelte-sv8va{margin:auto;width:100%;max-width:728px;height:280px;aspect-ratio:728/90;background-image:linear-gradient(40deg,#00aaff,pink 50%);background-size:cover}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ModalConvert-1cf56ccf.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ModalConvert-1cf56ccf.css
deleted file mode 100644
index 92783d98..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ModalConvert-1cf56ccf.css
+++ /dev/null
@@ -1 +0,0 @@
-.red.svelte-5sh5yx.svelte-5sh5yx{color:#de2f22!important}.content.svelte-5sh5yx.svelte-5sh5yx{width:100%;height:90%;display:flex;flex-direction:column}picture.svelte-5sh5yx.svelte-5sh5yx{display:flex;justify-content:center;align-items:center}.genesis-exchange.svelte-5sh5yx.svelte-5sh5yx{display:flex;width:80%;height:100%;position:relative;margin:0 auto}.col.svelte-5sh5yx.svelte-5sh5yx{width:100%;flex-basis:50%;display:flex;justify-content:center;align-items:center;position:relative;padding:.1em 0 .7em}.col.svelte-5sh5yx span.svelte-5sh5yx{width:100%;position:absolute;bottom:.3rem;left:50%;transform:translate(-50%);font-size:.7rem}.divider.svelte-5sh5yx.svelte-5sh5yx{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:xX-large;color:#fff}.genesis-exchange.svelte-5sh5yx .genesis.svelte-5sh5yx{background-color:#d1c8bb}.genesis-exchange.svelte-5sh5yx .primo-exchange.svelte-5sh5yx{background-color:#ecd7a5}.slider.svelte-5sh5yx.svelte-5sh5yx,.rangeNumber.svelte-5sh5yx.svelte-5sh5yx,.rangeInput.svelte-5sh5yx.svelte-5sh5yx{display:flex;justify-content:center;flex-direction:column;align-items:center;width:100%;position:relative;font-size:1rem}.mobile .rangeInput.svelte-5sh5yx.svelte-5sh5yx{font-size:.8rem}.rangeNumber.svelte-5sh5yx.svelte-5sh5yx{font-size:.8rem;margin-bottom:-.5rem}.slider.svelte-5sh5yx.svelte-5sh5yx{padding:1% 0}.error.svelte-5sh5yx.svelte-5sh5yx{font-size:80%}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ObtainedItem-64c93daf.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ObtainedItem-64c93daf.css
deleted file mode 100644
index 54d64eff..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ObtainedItem-64c93daf.css
+++ /dev/null
@@ -1 +0,0 @@
-section.svelte-1v6bqwa.svelte-1v6bqwa{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999;color:#000}.container.svelte-1v6bqwa.svelte-1v6bqwa{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.bg.svelte-1v6bqwa.svelte-1v6bqwa{min-width:100vw;min-height:100%;position:absolute;z-index:-1;left:0;background-image:linear-gradient(to top,rgba(136,132,133,.93),rgba(39,34,54,.93))}.content.svelte-1v6bqwa.svelte-1v6bqwa{display:flex;flex-direction:column;max-width:80%;width:35rem;text-align:center}.mobile .content.svelte-1v6bqwa.svelte-1v6bqwa{transform:scale(.85)}h3.svelte-1v6bqwa.svelte-1v6bqwa{color:#beb99c;font-weight:100;padding:.5rem;border-bottom:.01rem solid #959187}h4.svelte-1v6bqwa.svelte-1v6bqwa{color:#ede5d8;padding:.8rem;font-weight:100}h4.msg.svelte-1v6bqwa.svelte-1v6bqwa{border-top:.01rem solid #959187;margin-top:1.5rem}i.gi-primo-star.svelte-1v6bqwa.svelte-1v6bqwa{font-size:.7rem;vertical-align:top}.milestone.svelte-1v6bqwa.svelte-1v6bqwa{display:flex;width:100%;justify-content:center}.item.svelte-1v6bqwa.svelte-1v6bqwa{margin:.25rem}.item.svelte-1v6bqwa.svelte-1v6bqwa,.body.svelte-1v6bqwa.svelte-1v6bqwa{display:block;border-radius:.4rem;overflow:hidden;width:5rem}.body.svelte-1v6bqwa.svelte-1v6bqwa{background-color:#fff}.acquaint.svelte-1v6bqwa .pic.svelte-1v6bqwa,.intertwined.svelte-1v6bqwa .pic.svelte-1v6bqwa{padding:.55rem}.pic.svelte-1v6bqwa.svelte-1v6bqwa{background-image:var(--bg);background-size:cover;position:relative;border-bottom-right-radius:.8em}.star.svelte-1v6bqwa.svelte-1v6bqwa{position:absolute;left:50%;bottom:-.6rem;transform:translate(-50%)}.gi-star.svelte-1v6bqwa.svelte-1v6bqwa{color:#eac343;font-size:.9rem}span.svelte-1v6bqwa.svelte-1v6bqwa{font-size:.7rem;display:block;line-height:1rem}.name.svelte-1v6bqwa.svelte-1v6bqwa{font-size:.7rem;white-space:pre-wrap;width:5rem;color:#ede5d8;line-height:.9rem;margin-top:.3rem}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/RandomBackground-c01fc64e.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/RandomBackground-c01fc64e.css
deleted file mode 100644
index ed282587..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/RandomBackground-c01fc64e.css
+++ /dev/null
@@ -1 +0,0 @@
-.bg.svelte-1ghl7jp{width:100vw;height:100%;-o-object-fit:cover;object-fit:cover;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(1.1);filter:blur(10px);-webkit-filter:blur(10px);z-index:+1}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/WishResult-effb9a08.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/WishResult-effb9a08.css
deleted file mode 100644
index a398e1d1..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/WishResult-effb9a08.css
+++ /dev/null
@@ -1 +0,0 @@
-.loader-icon.svelte-1crtzgq{position:relative;aspect-ratio:1/1}span.svelte-1crtzgq{display:block;position:absolute;top:0;left:0;width:100%;height:100%}span.svelte-1crtzgq:before,span.svelte-1crtzgq:after{content:"";display:block;position:absolute;left:0;top:0;margin:auto;width:100%;height:100%;border:calc(.15 * var(--width)) solid var(--text-color);border-radius:50%;opacity:.5}span.svelte-1crtzgq:before{animation:svelte-1crtzgq-loaderAnim1 1.5s cubic-bezier(.075,.82,.165,1) infinite}span.svelte-1crtzgq:after{animation:svelte-1crtzgq-loaderAnim2 1.5s cubic-bezier(.075,.82,.165,1) .25s infinite}@keyframes svelte-1crtzgq-loaderAnim1{0%{transform:scale(0);opacity:1}20%{opacity:1}to{transform:scale(1.5);opacity:0}}@keyframes svelte-1crtzgq-loaderAnim2{0%{transform:scale(0);opacity:1}20%{opacity:1}to{transform:scale(1);opacity:0}}.primogem.svelte-19jgwr3 span.svelte-19jgwr3{width:1.2rem;height:1.2rem;color:#000000b3;background-color:#e0ddd4;border-radius:100%;position:absolute;right:3px;top:50%;font-size:110%;line-height:0;display:inline-flex;justify-content:center;align-items:center;transform:translateY(-50%);transition:all .2s}.primogem.increament.svelte-19jgwr3.svelte-19jgwr3{padding-right:2rem!important}.primogem.svelte-19jgwr3:active span.svelte-19jgwr3{transform:translateY(-50%) scale(.9);color:#fff;border-color:#a9a9a9}.primogem.svelte-19jgwr3:hover span.svelte-19jgwr3{border-color:#fff;box-shadow:#a0afbe99 0 0 7px 5px}button.svelte-19jgwr3.svelte-19jgwr3{display:inline-block;height:25px;overflow:hidden;background-color:#0000004d;border-radius:50px;color:#fff;vertical-align:middle;text-align:center;position:relative;margin:0 10px 0 0;padding:0 1rem 0 1.85rem;border:.7px solid #656565}@media screen and (max-width: 900px){button.svelte-19jgwr3.svelte-19jgwr3{height:20px;margin:0 3px}}@media screen and (max-width: 400px){.primogem.svelte-19jgwr3.svelte-19jgwr3{margin-bottom:2px}.gi-plus.svelte-19jgwr3.svelte-19jgwr3{right:2px;transform:translateY(-50%) scale(.9)}}.notice.svelte-v7y2hv{position:absolute;right:.5rem;z-index:+1}span.svelte-v7y2hv{color:#fff;background-color:#de2f22;display:inline-flex;justify-content:center;align-items:center;border-radius:100%;aspect-ratio:1/1;font-size:xx-small;padding:.3rem;line-height:0}.mobile span.svelte-v7y2hv{font-size:.4rem;padding:.25rem}.fatepoint-button.svelte-1vj2we9.svelte-1vj2we9{width:15vh}.mobile .fatepoint-button.svelte-1vj2we9.svelte-1vj2we9{width:18vh}.active.svelte-1vj2we9 svg.svelte-1vj2we9{filter:drop-shadow(0 0 .5rem rgb(0,183,255))}@media screen and (max-width: 500px){.fatepoint-button.svelte-1vj2we9.svelte-1vj2we9{width:10vh}}.fil1.svelte-1vj2we9.svelte-1vj2we9{fill:#fefefe}.fil2.svelte-1vj2we9.svelte-1vj2we9{fill:#5f6e8b}.fil3.svelte-1vj2we9.svelte-1vj2we9{fill:transparent}.active.svelte-1vj2we9 .fil3.svelte-1vj2we9{fill:#62c5ff}.fil0.svelte-1vj2we9.svelte-1vj2we9{fill:#a0907d}button.svelte-15mfo3k.svelte-15mfo3k{position:relative;pointer-events:initial}.point-number.svelte-15mfo3k.svelte-15mfo3k{border-radius:50px;background-color:#ece4d9;border:3px solid #fff;padding:.2rem;width:100%;transition:all .2s;color:#a49a90;border:1px solid #a49a90;display:inline-flex;justify-content:center;align-items:center;position:absolute;bottom:5%;left:50%;transform:translate(-50%)}.point-number.svelte-15mfo3k span.svelte-15mfo3k{color:#ff8700}.point-number.svelte-15mfo3k span.small.svelte-15mfo3k{font-size:calc(.101 * var(--height));line-height:110%;display:inline-block;color:var(--text-color);padding:1% 10%}.mobile button.svelte-15mfo3k.svelte-15mfo3k{font-size:90%;padding:0 .2rem;margin-top:auto;margin-bottom:10%}.mobile span.svelte-15mfo3k.svelte-15mfo3k:not(.small){font-size:120%}.mobile .point-number.svelte-15mfo3k.svelte-15mfo3k{padding:.1rem}button.svelte-1aipbo4.svelte-1aipbo4{display:block;background-color:var(--secondary-color);border-radius:.25rem;width:90px;min-width:50px;aspect-ratio:2.4/1;margin:.6em;position:relative;transition:all.2s}button.svelte-1aipbo4.svelte-1aipbo4:after,button.svelte-1aipbo4.svelte-1aipbo4:before{content:"";display:block;width:90%;height:75%;border:2.5px solid #6d8fbb;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transition:all .2s}button.svelte-1aipbo4.svelte-1aipbo4:after{border-radius:.4rem}button.svelte-1aipbo4.svelte-1aipbo4:before{border-radius:40px}button.active.svelte-1aipbo4.svelte-1aipbo4,button.svelte-1aipbo4.svelte-1aipbo4:hover{background-color:var(--tertiary-color)}button.active.svelte-1aipbo4.svelte-1aipbo4:before,button.active.svelte-1aipbo4.svelte-1aipbo4:after,button.svelte-1aipbo4.svelte-1aipbo4:hover:before,button.svelte-1aipbo4.svelte-1aipbo4:hover:after{border:2.5px solid #eee2c8}button.active.svelte-1aipbo4.svelte-1aipbo4,button.svelte-1aipbo4.svelte-1aipbo4:hover{transform:scale(1.1)}.gi-primo-star.svelte-1aipbo4.svelte-1aipbo4{left:15px;font-size:.7rem}.gi-companion.svelte-1aipbo4.svelte-1aipbo4{right:5px;font-size:3rem;line-height:0;top:55%!important}.gi-primo-star.svelte-1aipbo4.svelte-1aipbo4,.gi-companion.svelte-1aipbo4.svelte-1aipbo4{position:absolute;top:50%;transform:translateY(-50%);color:#6d8fbb;transition:all .2s}.active.svelte-1aipbo4 .gi-primo-star.svelte-1aipbo4,.active.svelte-1aipbo4 .gi-companion.svelte-1aipbo4,button.svelte-1aipbo4:hover .gi-primo-star.svelte-1aipbo4,button.svelte-1aipbo4:hover .gi-companion.svelte-1aipbo4{color:#eee2c8}.picture.svelte-1aipbo4.svelte-1aipbo4{width:100%;height:150%;position:absolute;bottom:0;left:0;overflow:hidden;pointer-events:none;border-bottom-left-radius:7px;border-bottom-right-radius:7px}.wrapper.svelte-1aipbo4.svelte-1aipbo4{width:100%;height:100%;position:relative;z-index:+1;transition:all .2s;transform:translateY(-10%)}.mobile .wrapper.svelte-1aipbo4.svelte-1aipbo4{transform:translateY(0)}.active.svelte-1aipbo4 .wrapper.svelte-1aipbo4{transform:translateY(-25%)}.mobile .active.svelte-1aipbo4 .wrapper.svelte-1aipbo4{transform:translateY(-15%)}img.svelte-1aipbo4.svelte-1aipbo4{position:absolute;z-index:+1;left:50%;transform:translate(-50%)}.discount.svelte-1aipbo4.svelte-1aipbo4{background-color:#8ab958;position:absolute;z-index:+2;left:50%;bottom:-5px;border-radius:20px;color:#fff;transform:scale(.65) translate(-50%);padding:.2rem .5rem}@media screen and (min-width: 750px){.discount.svelte-1aipbo4.svelte-1aipbo4{font-size:.7rem}}.mobile button.svelte-1aipbo4.svelte-1aipbo4{transform:scale(.88);margin:2.5% 0;aspect-ratio:2.2/1}.mobile button.active.svelte-1aipbo4.svelte-1aipbo4{transform:scale(.9)}#header.svelte-10cweyq.svelte-10cweyq{position:relative;display:block;width:100%;padding:30px 2%;z-index:5}h1.svelte-10cweyq button.svelte-10cweyq{display:inline-flex;justify-content:center;align-items:center;color:#fff;margin-left:.7rem;line-height:0;transition:all .2s}h1.svelte-10cweyq button.svelte-10cweyq:hover{background-color:var(--tertiary-color);color:#3a4156}.help.svelte-10cweyq.svelte-10cweyq{border-radius:50px;border:.15rem solid #fff;width:1.7rem;height:1.7rem}.fullscreen.svelte-10cweyq.svelte-10cweyq{border-color:transparent;transform:scale(1.3);width:1.3rem;height:1.3rem}.bg.svelte-10cweyq.svelte-10cweyq{display:none}.top.svelte-10cweyq.svelte-10cweyq{display:flex;justify-content:space-between;width:100%;position:relative}.wish-title.svelte-10cweyq.svelte-10cweyq{color:#fff;text-transform:capitalize;display:flex;align-items:center;text-align:left;font-size:110%}.wish-title.svelte-10cweyq img.svelte-10cweyq{width:30px;margin-right:15px}.budget.svelte-10cweyq.svelte-10cweyq{text-align:right;display:flex;justify-content:flex-end;align-items:center}.banner-button.svelte-10cweyq.svelte-10cweyq{text-align:center;display:flex;justify-content:center;position:relative;z-index:10}.mobile #header.svelte-10cweyq.svelte-10cweyq{padding:0!important}.mobile .top.svelte-10cweyq.svelte-10cweyq{position:fixed;top:0;right:2%;width:calc(100% - 100px);display:flex;justify-content:space-between;padding-right:4%}.mobile .wish-title.svelte-10cweyq img.svelte-10cweyq{display:none}.mobile .banner-button.svelte-10cweyq.svelte-10cweyq{flex-direction:column;align-items:center;width:120px;margin-top:0;height:100%;justify-content:flex-start;padding-top:2.5rem;z-index:-10}.mobile .bg.svelte-10cweyq.svelte-10cweyq{display:block;position:absolute;top:0;left:50%;width:40px;background-color:#0006;z-index:-1;transform:translate(-50%);text-align:center;border:solid rgba(207,186,143,.5);border-width:0 2px}.bg.svelte-10cweyq>img.svelte-10cweyq{width:60%;margin-top:3px}@media screen and (min-width: 975px){main:not(.mobile) .banner-button.svelte-10cweyq.svelte-10cweyq{position:absolute;max-width:50%;top:20px;left:50%;transform:translate(-50%);margin-top:0}}.a.svelte-he5183{fill:#a5c83b}.b.svelte-he5183{fill:none}.info.svelte-1pgmxjb.svelte-1pgmxjb{position:fixed;top:60%;display:flex;align-items:center;width:1200px;max-width:95%;z-index:+1;pointer-events:none}.info.svelte-1pgmxjb.svelte-1pgmxjb{left:50%;transform:translate(-50%,-50%)}.mobile .info.svelte-1pgmxjb.svelte-1pgmxjb{max-width:83%}.name.svelte-1pgmxjb.svelte-1pgmxjb{position:relative;z-index:+2;width:100%}.name.svelte-1pgmxjb span.svelte-1pgmxjb{color:#ffffffe6;padding:.2% 0 .5%;display:block}.name.svelte-1pgmxjb span.animate.svelte-1pgmxjb{animation-delay:2s!important;animation:svelte-1pgmxjb-revealName forwards .8s 1;opacity:0}.name.svelte-1pgmxjb .text.animate.svelte-1pgmxjb{animation-delay:1.3s!important;animation:svelte-1pgmxjb-revealName forwards .8s 1;opacity:0;transform:translate(20px)}.name.svelte-1pgmxjb .text.svelte-1pgmxjb{max-width:38%;font-size:2.5em;line-height:1.2em;color:#fff;-webkit-text-stroke:.04rem #000}.text.svelte-1pgmxjb.svelte-1pgmxjb,.star.svelte-1pgmxjb.svelte-1pgmxjb{filter:drop-shadow(0 0 .25rem rgba(0,0,0,.5))}.zh-CN .name.svelte-1pgmxjb .text.svelte-1pgmxjb,.ja-JP .name.svelte-1pgmxjb .text.svelte-1pgmxjb{font-size:3em}.icon.svelte-1pgmxjb.svelte-1pgmxjb{margin-top:-5px;position:relative;width:5rem}.icon.svelte-1pgmxjb svg{width:100%;height:100%}.mobile .icon.svelte-1pgmxjb.svelte-1pgmxjb{height:4rem}.icon.animate.svelte-1pgmxjb.svelte-1pgmxjb{opacity:0;animation-delay:1.2s!important;animation:svelte-1pgmxjb-revealIcon forwards 1.3s 1}.gi-star.svelte-1pgmxjb.svelte-1pgmxjb{color:#f7cf33;font-size:1.525em;display:inline-block}.gi-star.animate.svelte-1pgmxjb.svelte-1pgmxjb{opacity:0;transform:scale(5);animation:svelte-1pgmxjb-revealStar forwards .4s 1}.weapon-icon.svelte-1pgmxjb.svelte-1pgmxjb{background-image:linear-gradient(to right,#585a66,#bed0d4,#585a66);margin-top:-25px!important}.bonus.svelte-1pgmxjb.svelte-1pgmxjb{position:absolute;display:flex;bottom:-25vh;left:50%;transform:translate(-50%)}.bonus.animate.svelte-1pgmxjb.svelte-1pgmxjb{opacity:0;animation:svelte-1pgmxjb-opacityChange forwards 1.5s 1}.stella.svelte-1pgmxjb.svelte-1pgmxjb,.bonus.svelte-1pgmxjb .masterless.svelte-1pgmxjb{width:3.5rem;border-radius:10%;overflow:hidden;display:block;text-align:center;position:relative;margin-left:.5rem;margin-right:.5rem;padding-bottom:.5rem;box-shadow:0 0 7px #ffffff80,0 0 14px #ffffff4d,0 0 30px #fff3}.stella.svelte-1pgmxjb.svelte-1pgmxjb:after,.bonus.svelte-1pgmxjb .masterless span.svelte-1pgmxjb{width:100%;font-size:.6rem;content:"1";display:block;position:absolute;left:0;bottom:0;color:#fff;text-align:center;background-color:#00000080}.stella.svelte-1pgmxjb img.svelte-1pgmxjb,.bonus.svelte-1pgmxjb .masterless img.svelte-1pgmxjb{width:80%;height:auto}.stella5.svelte-1pgmxjb.svelte-1pgmxjb,.bonus.svelte-1pgmxjb .starglitter.svelte-1pgmxjb{background-image:linear-gradient(to top,#ca8937,#a47853)}.stella4.svelte-1pgmxjb.svelte-1pgmxjb{background-image:linear-gradient(to top,#a47ab9,#7e78a9)}@keyframes svelte-1pgmxjb-revealIcon{0%{opacity:0}to{opacity:1}}@keyframes svelte-1pgmxjb-revealName{to{transform:translate(0);opacity:1}}@keyframes svelte-1pgmxjb-revealStar{to{transform:scale(1);opacity:1}}@keyframes svelte-1pgmxjb-opacityChange{80%{opacity:0}85%{opacity:1}to{opacity:1}}.character.duplicate.svelte-yhto5y.svelte-yhto5y{animation:svelte-yhto5y-brighten forwards 1s;animation-delay:1s}.item.svelte-yhto5y.svelte-yhto5y{transition:all .2s;will-change:transform}.item.svelte-yhto5y.svelte-yhto5y:hover,.item.hover.svelte-yhto5y.svelte-yhto5y{transform:scale(1.04)}.item.svelte-yhto5y:hover .cover.svelte-yhto5y,.item.hover.svelte-yhto5y .cover.svelte-yhto5y{background-color:#0000}.star5.svelte-yhto5y .item-body.svelte-yhto5y{background-image:linear-gradient(to bottom,rgb(249,170,2),rgb(255,255,255),rgb(249,170,2))}.star4.svelte-yhto5y .item-body.svelte-yhto5y{background-image:linear-gradient(to bottom,rgb(196,77,218),rgb(255,255,255),rgb(196,77,218))}.new.svelte-yhto5y.svelte-yhto5y{position:absolute;z-index:10;display:block;top:3%;left:80%;transform:translate(-50%);padding:0 .4rem;border-radius:calc(2 / 100 * var(--card-height)) 0;color:#fffa66;background-color:#c3882a;border:1px solid #fffa66;font-size:calc(3 / 100 * var(--card-height))}.cover.svelte-yhto5y.svelte-yhto5y{display:block;position:absolute;left:0;top:0;height:100%;width:100%;transition:all .2s;background-color:#0003}.item-body.svelte-yhto5y.svelte-yhto5y{--scale:2.05;height:100%;-webkit-clip-path:url(#wishframe);clip-path:url(#wishframe);margin:0 .5px;display:flex;justify-content:center;align-items:center;touch-action:unset;background-image:linear-gradient(to bottom,#aac8f1,#fff,#aac8f1)}.item-body.catalyst.svelte-yhto5y.svelte-yhto5y{--scale:1.3}.character.svelte-yhto5y .item-body.svelte-yhto5y{--scale:5;--translate-y:150%}.item-content.svelte-yhto5y.svelte-yhto5y{-webkit-clip-path:url(#wishframe);clip-path:url(#wishframe);transform:scaleX(.98) scaleY(.99);background-image:var(--bg);background-size:cover;background-position:center center;position:relative}.item-content.svelte-yhto5y.svelte-yhto5y:after{content:"";display:block;position:absolute;bottom:0;left:0;width:100%;height:50%;background-image:linear-gradient(to top,rgba(0,0,0,.4) 60%,rgba(0,0,0,0))}#chinese-char.svelte-yhto5y.svelte-yhto5y{font-family:AaQiShu;position:absolute;left:50%;transform:translate(-50%,-50%);font-size:15vh;color:#2f2e2f;filter:drop-shadow(.2rem .2rem .02rem rgb(0,0,0))}.zoomist-image.svelte-yhto5y.svelte-yhto5y{position:absolute;transform:translate(var(--translate-x, 0px),var(--translate-y, 0px)) scale(var(--scale, 0))}.zoomist-image.weapon.svelte-yhto5y.svelte-yhto5y{width:100%;height:100%}img.svelte-yhto5y.svelte-yhto5y{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.weapon.svelte-yhto5y img.wishpic.svelte-yhto5y{filter:drop-shadow(.2rem .2rem .02rem rgb(0,0,0))}.stella.svelte-yhto5y.svelte-yhto5y{margin-top:10%}.stella.svelte-yhto5y.svelte-yhto5y,.masterless.svelte-yhto5y.svelte-yhto5y{width:60%;border-radius:10%;overflow:hidden;display:flex;justify-content:center;align-items:center;aspect-ratio:1/1;position:relative;box-shadow:0 0 7px #ffffffb3,0 0 14px #ffffff80,0 0 21px #fff3,0 0 42px #fff}.stella.svelte-yhto5y.svelte-yhto5y:after,.masterless.svelte-yhto5y span.svelte-yhto5y{width:100%;font-size:calc(3 / 100 * var(--card-height));content:"1";display:block;position:absolute;left:0;bottom:0;color:#fff;text-align:center;background-color:#00000080}.stella5.svelte-yhto5y.svelte-yhto5y,.starglitter.svelte-yhto5y.svelte-yhto5y{background-image:linear-gradient(to top,#ca8937,#a47853)}.stella4.svelte-yhto5y.svelte-yhto5y{background-image:linear-gradient(to top,#a47ab9,#7e78a9)}.info.svelte-yhto5y.svelte-yhto5y{position:absolute;bottom:10%;left:0;width:100%;z-index:10;display:flex;flex-direction:column;align-items:center}.info.svelte-yhto5y .gi-star.svelte-yhto5y{color:#f7cf33;display:inline-block;font-size:calc(3.5 / 100 * var(--card-height))}.icon.svelte-yhto5y svg{width:80%;aspect-ratio:1/1}@keyframes svelte-yhto5y-brighten{0%{filter:brightness(100%)}50%{filter:brightness(150%)}to{filter:brightness(100%)}}.scroll.svelte-13e6w8v.svelte-13e6w8v{width:100%;height:100%;display:block}.container.svelte-13e6w8v.svelte-13e6w8v{width:100%!important;height:100%;display:flex;justify-content:center;align-items:center}.container.animate.svelte-13e6w8v.svelte-13e6w8v:after{content:"";display:block;width:100%;height:100%;position:fixed;top:0;left:0;background-color:#fff;opacity:1;animation:svelte-13e6w8v-reveal forwards 1s 1;pointer-events:none}.close.svelte-13e6w8v.svelte-13e6w8v{position:fixed;top:15px;right:3%;z-index:10;opacity:0}.mobile .close.svelte-13e6w8v.svelte-13e6w8v{top:.3rem;right:6%}.wishlist.svelte-13e6w8v.svelte-13e6w8v,.shadows.svelte-13e6w8v.svelte-13e6w8v{display:block;height:40vw;max-height:60vh;min-height:40vh;width:100%;padding:0 20px;white-space:nowrap;text-align:center}.item-box.animate.svelte-13e6w8v.svelte-13e6w8v,.shadow.animate.svelte-13e6w8v.svelte-13e6w8v{opacity:0;animation:svelte-13e6w8v-wishReveal forwards .4s 1;pointer-events:none}.mobile .wishlist.svelte-13e6w8v.svelte-13e6w8v,.mobile .shadows.svelte-13e6w8v.svelte-13e6w8v{min-height:70vh}.mobile .wishlist.svelte-13e6w8v.svelte-13e6w8v,.mobile .shadows.svelte-13e6w8v.svelte-13e6w8v{max-height:72.5vh}.item-box.svelte-13e6w8v .item,.shadow.svelte-13e6w8v.svelte-13e6w8v{height:100%;aspect-ratio:7/30;border-radius:100%;filter:drop-shadow(0px 0px 6px rgb(101,187,246));position:relative}.shadow5.svelte-13e6w8v.svelte-13e6w8v,.shadow4.svelte-13e6w8v.svelte-13e6w8v,.item-box.svelte-13e6w8v .item.star4,.item-box.svelte-13e6w8v .item.star5{filter:unset}.item-box.svelte-13e6w8v.svelte-13e6w8v{height:100%;display:inline-block}.shadows.svelte-13e6w8v.svelte-13e6w8v{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:-1}.shadow.svelte-13e6w8v.svelte-13e6w8v{display:inline-block;height:100%;border-radius:100%}.shadow.svelte-13e6w8v span.svelte-13e6w8v{position:absolute;left:50%;bottom:-5%;color:#fff;transform:translate(-50%);-webkit-text-stroke:.3px #000}.shadow.shadow5.svelte-13e6w8v.svelte-13e6w8v{box-shadow:0 0 4rem #ffffff80,0 0 1rem #f9aa02,0 0 1.4rem #f9aa02,0 0 2rem #f97902;background-color:#f9aa02;filter:unset}.shadow.shadow4.svelte-13e6w8v.svelte-13e6w8v{box-shadow:0 0 4rem #fff9,0 0 1rem #8a03a1,0 0 1.4rem #d900ff,0 0 2rem #1d04ff;background-color:#b912d6}.convertion.svelte-13e6w8v.svelte-13e6w8v{font-size:calc(3 / 100 * var(--card-height))}@keyframes svelte-13e6w8v-wishReveal{0%{transform:translate(150%)}to{transform:translate(0);opacity:1}}@keyframes svelte-13e6w8v-reveal{20%{opacity:1}99%{opacity:0}to{opacity:0}}div.svelte-gc365d{aspect-ratio:1/1}.orbs.svelte-gc365d{background-color:transparent;border-radius:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(0);transform-origin:0 0;opacity:0}.in.svelte-gc365d{animation:svelte-gc365d-orbsIn forwards 1}.in1.svelte-gc365d{width:100%}.in2.svelte-gc365d{width:80%}.in3.svelte-gc365d{width:40%}.in4.svelte-gc365d{width:70%}.in5.svelte-gc365d{position:fixed;transform:translate(-50%,50%);bottom:0;width:100vw;aspect-ratio:1/1;opacity:1;animation:svelte-gc365d-orbs2 forwards 1s 1}.out.svelte-gc365d{transform:scale(0) translate(-50%,-50%);opacity:0}.out.svelte-gc365d{animation:svelte-gc365d-outOrbs forwards 1}.out1.svelte-gc365d{width:50%;background-color:#fe853f0d}.out2.svelte-gc365d{width:100%}.out3.svelte-gc365d{width:150%}.star5.in1.svelte-gc365d{background-color:#fe853f0d;box-shadow:0 0 50px #fe853f1a,inset 0 0 70px #fe853f1a}.star5.in2.svelte-gc365d{box-shadow:0 0 50px #fd94304d,inset 0 0 70px #fd94304d}.star5.in3.svelte-gc365d{box-shadow:0 0 50px #fbc13c7f,inset 0 0 70px #fbc13c00;background-image:radial-gradient(rgba(251,193,60,1),rgb(251,193,60,0))}.star5.in4.svelte-gc365d{box-shadow:0 0 30px #fd94301a,inset 0 0 30px #fd94301a}.star5.in5.svelte-gc365d{background-image:radial-gradient(rgba(253,148,48,.5),rgb(253,148,48,0),rgba(253,148,48,0))}.star5.out1.svelte-gc365d{box-shadow:0 0 50px #fbc13c7f,inset 0 0 50px #fbc13c7f}.star5.out2.svelte-gc365d{box-shadow:0 0 150px #ffffff7f,inset 0 0 170px #ffffff7f}.star5.out3.svelte-gc365d{box-shadow:0 0 200px #fd943099,inset 0 0 170px #fd943099}.star4.in1.svelte-gc365d{background-color:#f18fdf0d;box-shadow:0 0 50px #7e149e1a,inset 0 0 70px #9f33f11a}.star4.in2.svelte-gc365d{box-shadow:0 0 50px #7122dd4d,inset 0 0 70px #7122dd4d}.star4.in3.svelte-gc365d{box-shadow:0 0 50px #b42ff87f,inset 0 0 70px #b42ff800;background-image:radial-gradient(rgba(156,71,218,1),rgb(180,47,248,0))}.star4.in4.svelte-gc365d{box-shadow:0 0 30px #7122dd1a,inset 0 0 30px #7122dd1a}.star4.in5.svelte-gc365d{background-image:radial-gradient(rgba(156,71,218,.5),rgb(156,71,218,0),rgba(156,71,218,0))}.star4.out1.svelte-gc365d{box-shadow:0 0 50px #b42ff87f,inset 0 0 50px #b42ff87f}.star4.out2.svelte-gc365d{box-shadow:0 0 150px #ffffff7f,inset 0 0 170px #ffffff7f}.star4.out3.svelte-gc365d{box-shadow:0 0 200px #7122dd99,inset 0 0 170px #7122dd99}.star3.in1.svelte-gc365d{background-color:#ffffff0d;box-shadow:0 0 50px #ffffff1a,inset 0 0 70px #f7ede71a}.star3.in2.svelte-gc365d{box-shadow:0 0 50px #555dff4d,inset 0 0 70px #555dff4d}.star3.in3.svelte-gc365d{box-shadow:0 0 50px #6a80fe7f,inset 0 0 70px #6a80fe00;background-image:radial-gradient(rgba(99,124,205,1),rgba(99,124,205,0))}.star3.in4.svelte-gc365d{box-shadow:0 0 30px #555dff1a,inset 0 0 30px #555dff1a}.star3.in5.svelte-gc365d{background-image:radial-gradient(rgba(99,124,205,.5),rgba(99,124,205,0),rgba(99,124,205,0))}.star3.out1.svelte-gc365d{box-shadow:0 0 50px #9dd9fc7f,inset 0 0 50px #9dd9fc7f}.star3.out2.svelte-gc365d{box-shadow:0 0 150px #ffffff7f,inset 0 0 170px #637ccd}.star3.out3.svelte-gc365d{box-shadow:0 0 200px #555dff99,inset 0 0 170px #555dff99}@keyframes svelte-gc365d-orbsIn{0%{transform:scale(0) translate(-50%,-50%)}90%{transform:scale(1) translate(-50%,-50%);opacity:1}to{transform:scale(1) translate(-50%,-50%);opacity:0}}@keyframes svelte-gc365d-orbs2{0%{transform:scale(0) translate(-50%)}90%{transform:scale(1) translate(-50%);opacity:1}to{transform:scale(1) translate(-50%);opacity:0}}@keyframes svelte-gc365d-outOrbs{30%{opacity:1}to{transform:scale(2) translate(-50%,-50%);opacity:0}}.starfate.svelte-oj7u6a.svelte-oj7u6a{justify-content:flex-end;right:0;transform:translateY(-50%);text-transform:capitalize}.starfate.svelte-oj7u6a>.icon.svelte-oj7u6a{margin-right:-25px;position:relative;z-index:+1;transform:scale(1);animation-delay:1.3s!important}.starfate.anim.svelte-oj7u6a>.icon.svelte-oj7u6a{animation:svelte-oj7u6a-starfateIcon forwards .4s 1;opacity:0}.starfate.starglitter.svelte-oj7u6a img{filter:drop-shadow(0 0 6px rgba(245,193,63,1))}.starglitter.svelte-oj7u6a .text.svelte-oj7u6a{background-image:linear-gradient(to right,rgba(245,193,63,.9),rgba(245,193,63,.1));color:#ffff4d}.starfate.stardust.svelte-oj7u6a img{filter:drop-shadow(0 0 6px rgba(221,203,245,1))}.stardust.svelte-oj7u6a .text.svelte-oj7u6a{background-image:linear-gradient(to right,rgba(104,47,173,.9),rgba(104,47,173,.1));color:#c682d6}.starfate.svelte-oj7u6a .text.svelte-oj7u6a{width:330px;max-width:50%;padding:2px 25px;position:relative;z-index:-1;animation-delay:1.3s!important}.starfate.anim.svelte-oj7u6a .text.svelte-oj7u6a{opacity:0;animation:svelte-oj7u6a-starfateText forwards .7s 1}.mobile .starfate.svelte-oj7u6a .text.svelte-oj7u6a{width:230px}.starfate.svelte-oj7u6a span.svelte-oj7u6a{color:#ddd;position:absolute;top:-45%;left:25px;font-size:smaller}.starfate.svelte-oj7u6a.svelte-oj7u6a{position:fixed;top:60%;display:flex;align-items:center;width:1200px;max-width:95%;z-index:+1}@keyframes svelte-oj7u6a-starfateIcon{30%{transform:scale(1.5);opacity:1}to{transform:scale(1);opacity:1}}@keyframes svelte-oj7u6a-starfateText{0%{transform:translate(-10px);opacity:0}to{transform:translate(0);opacity:1}}.screenshot.svelte-1l9q1y3.svelte-1l9q1y3{width:100vw;height:var(--screen-height);position:fixed;z-index:998;top:0;left:0;display:flex;justify-content:center;align-items:center;background-color:#00000073;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.screenshot.svelte-1l9q1y3.svelte-1l9q1y3:after{content:"";display:block;width:100%;height:100%;position:fixed;top:0;left:0;background-color:#fff;pointer-events:none;animation:svelte-1l9q1y3-flash forwards 1s}.screenshot.svelte-1l9q1y3 .wrapper.svelte-1l9q1y3{width:75%;max-height:75%;display:flex;justify-content:center;align-items:center;position:relative;box-shadow:0 0 3px #fffc}picture.svelte-1l9q1y3.svelte-1l9q1y3{display:flex;justify-content:center;align-items:center;width:100%;height:100%;padding:.2rem;background-color:#fff}.screenshot.svelte-1l9q1y3 img.svelte-1l9q1y3{max-height:100%;max-width:100%}.divider.svelte-1l9q1y3.svelte-1l9q1y3{background-color:#fff;height:1.7rem;width:.1rem;display:inline-block;margin:0 .6rem}.toast.svelte-1l9q1y3.svelte-1l9q1y3{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:inline-block;padding:.5rem 1rem;border-radius:.5rem;background-color:#ad8041cc;color:#fff;font-size:.75rem}button.svelte-1l9q1y3.svelte-1l9q1y3:active{transform:scale(.9)}button.svelte-1l9q1y3.svelte-1l9q1y3:active,button.svelte-1l9q1y3.svelte-1l9q1y3:hover{background-color:#fff!important}.close.svelte-1l9q1y3.svelte-1l9q1y3{position:fixed;top:30px;right:2%}.mobile .close.svelte-1l9q1y3.svelte-1l9q1y3{top:.3rem;right:6%}.mobile .letshare.svelte-1l9q1y3.svelte-1l9q1y3{transform:scale(.8) translate(10%,-120%)}.letshare.svelte-1l9q1y3.svelte-1l9q1y3{position:absolute;top:0;right:0;width:100%;transform:translateY(-120%);display:flex;align-items:center;justify-content:flex-end}.letshare.svelte-1l9q1y3 button.svelte-1l9q1y3{padding:0;border-radius:100%;z-index:10;aspect-ratio:1 / 1;display:inline-flex;justify-content:center;align-items:center;line-height:0;margin:0 .2rem;font-size:1.3rem!important;background-color:#e0ddd4;min-width:2.2rem;transition:all .2s}@keyframes svelte-1l9q1y3-flash{0%{opacity:1}to{opacity:0}}.screenshot-button.svelte-122rc28.svelte-122rc28{width:100%}.screenshot-button.svelte-122rc28 span.svelte-122rc28{display:inline-flex;align-items:center;-webkit-text-stroke:.02rem #000}.progress.svelte-122rc28.svelte-122rc28{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background-color:var(--text-color);color:var(--tertiary-color);padding:2rem;border:1px solid var(--tertiary-color);border-radius:.5rem}.progress.svelte-122rc28 .row.svelte-122rc28{display:flex;align-items:center;justify-content:center}.loading.svelte-122rc28.svelte-122rc28{border:.2rem solid #f3f3f3;border-top:.2rem solid var(--text-color);border-radius:50%;width:2rem;height:2rem;margin-right:1rem;animation:svelte-122rc28-spin 1s linear infinite}@keyframes svelte-122rc28-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.zoomist-wrapper.svelte-upxcv7.svelte-upxcv7,.zoomist-image.svelte-upxcv7.svelte-upxcv7{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.zoomist-wrapper.svelte-upxcv7.svelte-upxcv7{--scale:1.5;--translate-x:0px;--translate-y:0px;background-color:unset;position:relative}.zoomist-wrapper.weapon.svelte-upxcv7.svelte-upxcv7{--scale:1.1}.zoomist-image.svelte-upxcv7.svelte-upxcv7{transform:translate(var(--translate-x, 0px),var(--translate-y, 0px)) scale(var(--scale, 0))}#chinese-char.svelte-upxcv7.svelte-upxcv7{font-family:AaQiShu;position:absolute;top:50%;left:45%;transform:translate(-50%,-50%);font-size:20vh;width:10%;word-wrap:break-word;line-height:85%;color:#1e1e1e;filter:drop-shadow(.2rem .2rem .02rem rgb(0,0,0))}img.svelte-upxcv7.svelte-upxcv7{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.splash-art.anim.svelte-upxcv7.svelte-upxcv7{filter:brightness(0) opacity(0);animation:svelte-upxcv7-splashart forwards 1.5s 1}.splash-art.svelte-upxcv7.svelte-upxcv7:not(.anim){transform:translate(2%)}.zoomist-image.svelte-upxcv7.svelte-upxcv7{position:relative;width:var(--width);height:var(--height)}.splash-art.svelte-upxcv7 .weapon img.svelte-upxcv7{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.splash-art.svelte-upxcv7 .weapon img.weaponbg.svelte-upxcv7{height:80%}.splash-art.svelte-upxcv7 .weapon.anim img.weaponbg.svelte-upxcv7{opacity:0;animation:svelte-upxcv7-weaponbg forwards 1.5s 1}.bow-parent.svelte-upxcv7 .weaponbg.svelte-upxcv7{transform:translate(-53%,-50%) scale(1.1)!important}.catalyst-parent.svelte-upxcv7 .weaponbg.svelte-upxcv7{height:90%!important}.anim.svelte-upxcv7 .bow.svelte-upxcv7,.anim.svelte-upxcv7 .polearm.svelte-upxcv7,.anim.svelte-upxcv7 .sword.svelte-upxcv7,.anim.svelte-upxcv7 .claymore.svelte-upxcv7,.anim.svelte-upxcv7 .catalyst.svelte-upxcv7{animation:svelte-upxcv7-weaponShadow forwards .1s 1;animation-delay:1.2s;filter:drop-shadow(0 0 0 rgba(0,0,0,0))}.bow.svelte-upxcv7.svelte-upxcv7,.polearm.svelte-upxcv7.svelte-upxcv7,.sword.svelte-upxcv7.svelte-upxcv7,.claymore.svelte-upxcv7.svelte-upxcv7,.catalyst.svelte-upxcv7.svelte-upxcv7{filter:drop-shadow(.6rem .6rem .05rem rgb(0,0,0))}.bow.svelte-upxcv7.svelte-upxcv7{height:115%}.catalyst.svelte-upxcv7.svelte-upxcv7{height:40%}.polearm.svelte-upxcv7.svelte-upxcv7{transform:translate(-53%,-35%) scale(1.2)!important}@keyframes svelte-upxcv7-splashart{0%{transform:scale(5) translateY(-5%);filter:brightness(0)}20%{transform:scale(1);filter:brightness(0)}75%{transform:scale(1);filter:brightness(0)}95%{transform:scale(1) translate(2%);filter:brightness(1)}to{transform:scale(1) translate(2%);filter:brightness(1)}}@keyframes svelte-upxcv7-weaponbg{80%{opacity:0}85%{opacity:1}to{opacity:1}}@keyframes svelte-upxcv7-weaponShadow{to{filter:drop-shadow(.7rem .6rem .2rem rgba(0,0,0,.7))}}.skip.svelte-1ikxtky,.close.svelte-1ikxtky{position:fixed;top:30px;right:2%;z-index:10}.mobile .close.svelte-1ikxtky{top:.3rem;right:6%}.skip.svelte-1ikxtky{color:#fff;font-size:1.2rem}.gi-caret-up.svelte-1ikxtky{display:inline-block;transform:rotate(90deg) translate(-.1rem);vertical-align:middle;margin-left:-.5em}.mobile .skip.svelte-1ikxtky{font-size:.8rem;right:5%;top:.5rem}.wish-result.svelte-1ikxtky{background-size:cover;background-position:center}.wish-result.svelte-1ikxtky{width:100%;height:100%;display:flex;justify-content:center;align-items:center;position:relative}.touch-box.svelte-1ikxtky{width:100%;height:100%;position:absolute;top:0;left:0;z-index:+5}.zoomist-container.svelte-1ikxtky{aspect-ratio:1/1}.art-wrapper.svelte-1ikxtky{width:100%;height:100%}.share.svelte-1ikxtky{display:flex;width:100%;text-align:right;justify-content:flex-end;align-items:center;position:absolute;bottom:5%;right:8%;color:#fff;font-size:.8rem;z-index:999}button.svelte-1ikxtky:active{transform:scale(.9)}.logo.svelte-1ikxtky{display:none;transition:all .1.5s;z-index:999;pointer-events:none}.preview .logo.svelte-1ikxtky{display:block;width:30vh;max-width:30%;position:fixed;bottom:0;right:2rem}.logo.cn.svelte-1ikxtky{max-height:20vh;width:20vh}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_error-c9470412.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_error-c9470412.css
deleted file mode 100644
index debb6149..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_error-c9470412.css
+++ /dev/null
@@ -1 +0,0 @@
-section.svelte-7a8fw6.svelte-7a8fw6{width:100%;height:100%;position:relative;display:flex;justify-content:center;align-items:center}.container.svelte-7a8fw6.svelte-7a8fw6{position:relative;z-index:+1;width:80%;height:70%;background-color:#ece6de;padding:2rem;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.gi-primo-star.svelte-7a8fw6.svelte-7a8fw6{color:#fdf0ac;font-size:1.5rem;display:inline-block;position:absolute;filter:drop-shadow(0 0 7px rgba(227,149,48,.9))}.top-left.svelte-7a8fw6.svelte-7a8fw6{top:-.8rem;left:-.5rem;transform:rotate(-45deg)}.top-right.svelte-7a8fw6.svelte-7a8fw6{top:-.8rem;right:-.5rem;transform:rotate(45deg)}.bottom-left.svelte-7a8fw6.svelte-7a8fw6{bottom:-.8rem;left:-.5rem;transform:rotate(-135deg)}.bottom-right.svelte-7a8fw6.svelte-7a8fw6{bottom:-.8rem;right:-.5rem;transform:rotate(135deg)}.icon-bg.svelte-7a8fw6.svelte-7a8fw6{font-size:17em;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#e4dcce;z-index:-1}h1.svelte-7a8fw6.svelte-7a8fw6{font-size:2.5rem}h2.svelte-7a8fw6.svelte-7a8fw6{font-size:1.2rem;padding:.6rem 0}p.svelte-7a8fw6.svelte-7a8fw6{font-size:1rem}a.svelte-7a8fw6.svelte-7a8fw6{border-radius:40px;color:#fff;background-color:#4a5265;display:inline-flex;align-items:center;justify-content:space-between;padding:5px 4rem 5px 5px;transition:all .2s;margin-top:3rem}a.svelte-7a8fw6 i.svelte-7a8fw6{width:2rem;height:2rem;background-color:#353533;border-radius:100%;display:inline-flex;justify-content:center;align-items:center;font-size:1rem;margin-right:3rem;color:#ffc107}a.svelte-7a8fw6.svelte-7a8fw6:hover{background-color:#333947}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_layout-1f2c5d23.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_layout-1f2c5d23.css
deleted file mode 100644
index 6333bb18..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_layout-1f2c5d23.css
+++ /dev/null
@@ -1,12 +0,0 @@
-:root{--zoomist-wrapper-bg-color: #efefef;--zoomist-slider-bg-color: rgba(255, 255, 255, .8);--zoomist-slider-border-radius: 0 0 4px 0;--zoomist-slider-padding-x: 20px;--zoomist-slider-padding-y: 20px;--zoomist-slider-track-color: #ddd;--zoomist-slider-track-color-hover: #ccc;--zoomist-slider-bar-size: 120px;--zoomist-slider-bar-side: 2px;--zoomist-slider-bar-border-radius: 2px;--zoomist-slider-bar-color: #666;--zoomist-slider-bar-color-hover: #444;--zoomist-slider-button-size: 12px;--zoomist-slider-button-color: #fff;--zoomist-zoomer-button-size: 48px;--zoomist-zoomer-button-color: rgba(255, 255, 255, .8);--zoomist-zoomer-button-color-hover: rgba(255, 255, 255, .9);--zoomist-zoomer-button-color-disabled: rgba(255, 255, 255, .8);--zoomist-zoomer-button-opacity-disabled: .7;--zoomist-zoomer-icon-size: 14px;--zoomist-zoomer-icon-color: #333;--zoomist-zoomer-icon-color-hover: #111;--zoomist-zoomer-icon-color-disabled: #999;--zoomist-modules-tranistion-duration: .3s}.zoomist-container{position:relative;padding:0!important;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.zoomist-wrapper{position:relative;z-index:1;width:100%;height:100%;padding:0!important;overflow:hidden;background-color:var(--zoomist-wrapper-bg-color)}.zoomist-image{position:relative;max-width:none!important;max-height:none!important;pointer-events:none}.zoomist-slider{position:absolute;z-index:2;top:0;left:0;padding:var(--zoomist-slider-padding-y) var(--zoomist-slider-padding-x);background-color:var(--zoomist-slider-bg-color);border-radius:var(--zoomist-slider-border-radius)}.zoomist-slider:hover .zoomist-slider-wrapper{background-color:var(--zoomist-slider-track-color-hover)}.zoomist-slider:hover .zoomist-slider-bar{background-color:var(--zoomist-slider-bar-color-hover)}.zoomist-slider:hover .zoomist-slider-button:before{box-shadow:0 0 8px #0009}.zoomist-slider-horizontal .zoomist-slider-wrapper{align-items:center;justify-content:flex-start;width:var(--zoomist-slider-bar-size);height:var(--zoomist-slider-bar-side)}.zoomist-slider-horizontal .zoomist-slider-bar{top:0;width:calc(var(--value) * 1%);height:100%}.zoomist-slider-horizontal .zoomist-slider-button{left:calc(var(--value) * 1%)}.zoomist-slider-vertical .zoomist-slider-wrapper{align-items:flex-end;justify-content:center;width:var(--zoomist-slider-bar-side);height:var(--zoomist-slider-bar-size)}.zoomist-slider-vertical .zoomist-slider-bar{bottom:0;width:100%;height:calc(var(--value) * 1%)}.zoomist-slider-vertical .zoomist-slider-button{bottom:calc(var(--value) * 1%)}.zoomist-slider-wrapper{position:relative;display:flex;background-color:var(--zoomist-slider-track-color);transition:background-color var(--zoomist-modules-tranistion-duration)}.zoomist-slider-bar{position:absolute;z-index:0;left:0;display:block;border-radius:var(--zoomist-slider-bar-border-radius);background-color:var(--zoomist-slider-bar-color);transition:background-color var(--zoomist-modules-tranistion-duration)}.zoomist-slider-button{position:relative;z-index:1;display:block;width:0!important;height:0!important}.zoomist-slider-button:before{content:"";position:absolute;left:calc(var(--zoomist-slider-button-size) * -.5);top:calc(var(--zoomist-slider-button-size) * -.5);width:var(--zoomist-slider-button-size);height:var(--zoomist-slider-button-size);display:block;background-color:var(--zoomist-slider-button-color, #fff);border-radius:50%;box-shadow:0 0 4px #0006;transition:box-shadow var(--zoomist-modules-tranistion-duration)}.zoomist-zoomer{position:absolute;z-index:2;top:0;right:0;border-radius:0 0 0 4px;overflow:hidden}.zoomist-zoomer-button{position:relative;display:flex;justify-content:center;align-items:center;width:var(--zoomist-zoomer-button-size);height:var(--zoomist-zoomer-button-size);background:none;background-color:var(--zoomist-zoomer-button-color);border:0;transition:background-color var(--zoomist-modules-tranistion-duration);cursor:pointer}.zoomist-zoomer-button:hover{background-color:var(--zoomist-zoomer-button-color-hover)}.zoomist-zoomer-button:hover .zoomist-zoomer-icon{fill:var(--zoomist-zoomer-icon-color-hover)}.zoomist-zoomer-button.zoomist-zoomer-disabled{pointer-events:none;background-color:var(--zoomist-zoomer-button-color-disabled);opacity:var(--zoomist-zoomer-button-opacity-disabled)}.zoomist-zoomer-button.zoomist-zoomer-disabled .zoomist-zoomer-icon{fill:var(--zoomist-zoomer-icon-color-disabled)}.zoomist-zoomer-icon{width:var(--zoomist-zoomer-icon-size);height:var(--zoomist-zoomer-icon-size);fill:var(--zoomist-zoomer-icon-color);transition:fill var(--zoomist-modules-tranistion-duration)}:root{letter-spacing:-.02rem;--gi-global-font: "GI_Global_Web", "GI_JA_Web", "GI_TH_Web", "GI_ZH_Web", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--gi-ja-font: "GI_JA_Web", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--gi-th-font: "GI_TH_Web", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--gi-zh-font: "GI_ZH_Web", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--secondary-color: #4f6d95;--tertiary-color: #f7f3d8;--text-color: #444444}*{margin:0;padding:0;box-sizing:border-box}::-webkit-scrollbar{width:5px}::-webkit-scrollbar-thumb{background-color:#d2c69c80;border-radius:5px;-webkit-transition:all .2s;transition:all .2s}::-webkit-scrollbar-thumb:hover{background-color:#d2c69c}body{overflow:hidden;margin:0}body,button:hover,input,label,a:hover{user-select:none;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-user-drag:none;cursor:url(data:image/png;base64,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),auto}.icon-gradient{background-clip:text;text-fill-color:transparent;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.icon-gradient.dendro{background-image:linear-gradient(to right,#a6d138 30%,#aaef3a 45%,#a6d138 75%)}.icon-gradient.hydro{background-image:linear-gradient(to right,#06bbff,#06bbff,#10e2ff,#06bbff,#06bbff)}.icon-gradient.geo{background-image:linear-gradient(to right,#f9aa02,#f9aa02,#fcd260,#f9aa02,#f9aa02)}.icon-gradient.pyro{background-image:linear-gradient(to right,#fe6606,#fe6606,#fea76b,#fe6606,#fe6606)}.icon-gradient.anemo{background-image:linear-gradient(to right,#32d9a1,#32d9a1,#aef2cd,#32d9a1,#32d9a1)}.icon-gradient.electro{background-image:linear-gradient(to right,#ca82fc,#ca82fc,#deb5fe,#ca82fc,#ca82fc)}.icon-gradient.cryo{background-image:linear-gradient(to right,#7cfeff,#7cfeff,#c6fffd,#7cfeff,#7cfeff)}.filter-drop.dendro{filter:drop-shadow(0 0 6px rgba(114,255,6,.6))}.filter-drop.hydro{filter:drop-shadow(0 0 6px rgba(6,187,255,.6))}.filter-drop.geo{filter:drop-shadow(0 0 6px rgba(249,170,2,.6))}.filter-drop.pyro{filter:drop-shadow(0 0 6px rgba(254,102,6,.6))}.filter-drop.anemo{filter:drop-shadow(0 0 6px rgba(50,217,161,.6))}.filter-drop.electro{filter:drop-shadow(0 0 6px rgba(202,130,252,.6))}.filter-drop.cryo{filter:drop-shadow(0 0 6px rgba(124,254,255,.6))}.dendro-flat{color:#64ad15}.hydro-flat{color:#3f8ed1}.geo-flat{color:#d0a467}.pyro-flat{color:#ee6c4c}.anemo-flat{color:#359697}.electro-flat{color:#7d67c5}.cryo-flat{color:#46c2d8}.wanderlust-flat{color:#757acd}.epitome-flat{color:#ef7c1a}.bg-dendro{background-color:#64ad15}.bg-hydro{background-color:#3f8ed1}.bg-geo{background-color:#d0a467}.bg-pyro{background-color:#ee6c4c}.bg-anemo{background-color:#359697}.bg-electro{background-color:#7d67c5}.bg-cryo{background-color:#46c2d8}.bg-wanderlust{background-color:#757acd}.bg-epitome{background-color:#ef7c1a}.card-stroke{text-shadow:-.03rem -.03rem 0 #f7f3eb,0 -.03rem 0 #f7f3eb,.03rem -.03rem 0 #f7f3eb,.03rem 0 0 #f7f3eb,.03rem .03rem 0 #f7f3eb,0 .03rem 0 #f7f3eb,-.03rem .03rem 0 #f7f3eb,-.03rem 0 0 #f7f3eb}#svelte{display:flex;flex-direction:column}h1,h2,p{font-weight:400}p{line-height:1.5}a{color:var(--accent-color);text-decoration:none}a:hover{text-decoration:underline}h1{font-size:2rem;text-align:center}h2{font-size:1rem}pre{font-size:16px;font-family:var(--font-mono);background-color:#ffffff73;border-radius:3px;box-shadow:2px 2px 6px #ffffff40;padding:.5em;overflow-x:auto;color:var(--text-color)}img{-o-object-fit:cover;object-fit:cover;-webkit-user-drag:none;-khtml-user-drag:none;-moz-user-drag:none;-o-user-drag:none;user-drag:none}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}input:focus{border:none;outline:none}input,button{font-size:inherit;font-family:inherit;letter-spacing:-.03rem}button:focus:not(:focus-visible){outline:none}button{background-color:transparent;border:0;outline:0;font-size:1rem}input.wishinput{height:2.3rem;font-size:90%;width:100%;border-radius:10rem;outline:none;padding:2% 6%;font-family:var(--gi-global-font);color:#3b4255;border:0;transition:.2s}input.wishinput:focus,input.wishinput:hover{border-color:#fff;box-shadow:#a0afbe99 0 0 7px 5px}:global(.mobile) input.wishinput{height:2.1rem}input.wishinput.error{border:#ee6c4c 2px solid}input.wishinput.error:focus,input.wishinput.error{box-shadow:#de2f22b3 0 0 7px 5px}h1{font-size:1.3rem}.mobile,.mobile button{font-size:.85rem}.gi-close{line-height:0}.close{display:inline-flex;justify-content:center;align-items:center;aspect-ratio:1/1;width:35px;height:35px;color:#000000b3;background-color:#e0ddd4;border:3.5px solid #abbcc6;padding:0;line-height:0;overflow:hidden;border-radius:50px;transition:all .2s}.close:active{transform:scale(.9);color:#fff;border-color:#a9a9a9!important}.close:hover{border-color:#fff;box-shadow:#a0afbe99 0 0 7px 5px}.mobile .close{width:2rem;height:2rem}.selector{color:#3a4156;margin:0 .5rem;display:inline-block;width:240px;max-width:40%;position:relative;text-transform:capitalize;font-size:.85rem}.selected-option{background-color:#ede5d8;padding:.45rem 2rem .45rem 1.5rem;border-radius:10rem;transition:all .2s;text-align:left}.selected-option i{display:inline-block;position:absolute;right:1rem}.sort-button:active,.selected-option:active{color:#fff;border-color:#a9a9a9}.sort-button:hover,.selected-option:hover{border-color:#fff;box-shadow:#a0afbe99 0 0 7px 5px}.option-list{position:absolute;display:flex;flex-direction:column;width:100%;background-color:#565a64;border-radius:1rem;padding:1% 1.5%;z-index:+10;overflow:hidden}.option-list.above{top:-10%;transform:translateY(-100%)}.option-list.below{top:110%}.option-list button{position:relative;padding:.85rem 1rem;margin:.5% 0;text-decoration:none;color:#eee;transition:all .2s;text-align:left}.option-list button.selected,.option-list button:hover{background-color:#717887;border-radius:2rem}.option-list button.selected:after{content:"\2714";color:#eee;position:absolute;display:block;top:50%;right:8%;font-size:170%;line-height:0;transform:translateY(-50%)}.btn{display:inline-flex;justify-content:center;align-items:center;width:1.8rem;height:1.8rem;line-height:0rem;color:#3a4156;background-color:#ede5d8;font-size:1rem;border-radius:100%;transition:.2s}.btn:active{color:#fff;border-color:#a9a9a9}.btn:hover{border-color:#fff;box-shadow:#a0afbe99 0 0 7px 5px}.gi-exchange{transform:rotate(90deg)}.btn:active{transform:scale(.9)}@media screen and (max-width: 900px){body,html{font-size:.8rem}.close{width:2.5rem;height:2.5rem;margin:3px}}@media screen and (max-width: 700px){input.wishinput{font-size:150%}}@media screen and (max-width: 400px){body,html{font-size:.7rem}h1{font-size:1.5rem}}.toast.svelte-nr506c{pointer-events:initial;padding:.5rem 1.5rem .7rem;text-align:center;border-top-right-radius:.3rem;border-top-left-radius:.3rem;min-width:10rem;max-width:20rem;margin:.2rem;background-color:var(--tertiary-color);color:#4a5265;font-size:80%;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 0 1rem #0006}.toast.autoclose.svelte-nr506c:after{content:"";position:absolute;bottom:0;left:0;width:100%;border-bottom:#4a5265 .2rem solid;animation:svelte-nr506c-scaleX forwards linear;transform-origin:0%;animation-duration:var(--duration)}.toast.dismissible.svelte-nr506c{padding-right:.75rem}.toast.error.svelte-nr506c{color:#d14a29}.toast.error.svelte-nr506c:after{border-color:#d14a29}.toast.success.svelte-nr506c{color:#359697}.toast.success.svelte-nr506c:after{border-color:#359697}button.svelte-nr506c{color:inherit;background:transparent;border:0 none;padding:0;line-height:0;font-size:80%;margin-left:auto;aspect-ratio:1/1;padding:.25rem;transform:scale(1.2)}@keyframes svelte-nr506c-scaleX{0%{transform:scaleX(1)}to{transform:scaleX(0%)}}.modal.svelte-o4a6oh.svelte-o4a6oh{position:fixed;z-index:9999;top:0;left:0;width:100vw;height:100vh;background-color:#00000080;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;justify-content:center;align-items:center;text-align:center}.modal-content.svelte-o4a6oh.svelte-o4a6oh{background-color:#fff;border-radius:.4rem;width:500px;max-width:80%;padding:2%}.btn.svelte-o4a6oh.svelte-o4a6oh{padding-top:5%;width:100%}button.svelte-o4a6oh.svelte-o4a6oh{color:#fff;padding:2% 6%}.reload.svelte-o4a6oh.svelte-o4a6oh{background-color:#94866e}.open.svelte-o4a6oh.svelte-o4a6oh{background-color:#353533}.loader.svelte-o4a6oh.svelte-o4a6oh{display:flex;justify-content:center;align-items:center;font-size:3.2vw;color:#666;width:100%;height:100vh;position:fixed;top:0;left:0;background-color:#fff;z-index:9998}@media screen and (max-width: 600px){.loader.svelte-o4a6oh.svelte-o4a6oh{font-size:4vh}}.content.svelte-o4a6oh.svelte-o4a6oh{display:block;text-align:center}.text.svelte-o4a6oh.svelte-o4a6oh{font-size:1rem;height:1.5rem;position:absolute;left:50%;transform:translate(-50%);font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.text.connecting.svelte-o4a6oh.svelte-o4a6oh:after{content:"..";display:inline-block;animation:svelte-o4a6oh-dot 4s linear infinite}.progress.svelte-o4a6oh.svelte-o4a6oh{width:-webkit-max-content;width:-moz-max-content;width:max-content;position:relative}.blend.svelte-o4a6oh.svelte-o4a6oh{mix-blend-mode:lighten;position:absolute;top:0;left:0;width:100%;height:100%}.rotate.svelte-o4a6oh.svelte-o4a6oh{position:fixed;width:100%;left:50%;bottom:20%;transform:translate(-50%);display:flex;justify-content:center;align-items:center;flex-direction:column;color:#000}.rotate.svelte-o4a6oh span.svelte-o4a6oh{font-size:.8rem;margin-top:1rem}.rotate.svelte-o4a6oh i.svelte-o4a6oh{animation:svelte-o4a6oh-rotatePhone 1s infinite alternate;transform-origin:center;line-height:1rem}.unfilled.svelte-o4a6oh.svelte-o4a6oh,.filled.svelte-o4a6oh.svelte-o4a6oh{display:block;position:absolute;top:0;left:0;height:100%}.unfilled.svelte-o4a6oh.svelte-o4a6oh{width:100%;background-color:#f7f7f7}.filled.svelte-o4a6oh.svelte-o4a6oh{background-color:#666}@keyframes svelte-o4a6oh-dot{0%{content:""}33%{content:"."}66%{content:".."}to{content:"..."}}@keyframes svelte-o4a6oh-rotatePhone{0%{transform:rotate(0)}to{transform:rotate(-90deg)}}/*!
-* OverlayScrollbars
-* https://github.com/KingSora/OverlayScrollbars
-*
-* Version: 1.13.0
-*
-* Copyright KingSora | Rene Haas.
-* https://github.com/KingSora
-*
-* Released under the MIT license.
-* Date: 02.08.2020
-*/html.os-html,html.os-html>.os-host{display:block;overflow:hidden;box-sizing:border-box;height:100%!important;width:100%!important;min-width:100%!important;min-height:100%!important;margin:0!important;position:absolute!important}html.os-html>.os-host>.os-padding{position:absolute}body.os-dragging,body.os-dragging *{cursor:default}.os-host,.os-host-textarea{position:relative;overflow:visible!important;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.os-host-flexbox{overflow:hidden!important;display:flex}.os-host-flexbox>.os-size-auto-observer{height:inherit!important}.os-host-flexbox>.os-content-glue{flex-grow:1;flex-shrink:0}.os-host-flexbox>.os-size-auto-observer,.os-host-flexbox>.os-content-glue{min-height:0;min-width:0;flex-grow:0;flex-shrink:1;flex-basis:auto}#os-dummy-scrollbar-size{position:fixed;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";visibility:hidden;overflow:scroll;height:500px;width:500px}#os-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}#os-dummy-scrollbar-size:before,#os-dummy-scrollbar-size:after,.os-content:before,.os-content:after{content:"";display:table;width:.01px;height:.01px;line-height:0;font-size:0;flex-grow:0;flex-shrink:0;visibility:hidden}#os-dummy-scrollbar-size,.os-viewport{-ms-overflow-style:scrollbar!important}.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size,.os-viewport-native-scrollbars-invisible.os-viewport{scrollbar-width:none!important}.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar,.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar,.os-viewport-native-scrollbars-invisible#os-dummy-scrollbar-size::-webkit-scrollbar-corner,.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar-corner{display:none!important;width:0px!important;height:0px!important;visibility:hidden!important;background:transparent!important}.os-content-glue{box-sizing:inherit;max-height:100%;max-width:100%;width:100%;pointer-events:none}.os-padding{box-sizing:inherit;direction:inherit;position:absolute;overflow:visible;padding:0;margin:0;inset:0;width:auto!important;height:auto!important;z-index:0}.os-host-overflow>.os-padding{overflow:hidden}.os-viewport{direction:inherit!important;box-sizing:inherit!important;resize:none!important;outline:none!important;position:absolute;overflow:hidden;inset:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.os-content-arrange{position:absolute;z-index:-1;min-height:1px;min-width:1px;pointer-events:none}.os-content{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:100%;visibility:visible}.os-content>.os-textarea{box-sizing:border-box!important;direction:inherit!important;background:transparent!important;outline:0px none transparent!important;overflow:hidden!important;position:absolute!important;display:block!important;top:0!important;left:0!important;margin:0!important;border-radius:0!important;float:none!important;filter:none!important;border:none!important;resize:none!important;transform:none!important;max-width:none!important;max-height:none!important;box-shadow:none!important;perspective:none!important;opacity:1!important;z-index:1!important;clip:auto!important;vertical-align:baseline!important;padding:0}.os-host-rtl>.os-padding>.os-viewport>.os-content>.os-textarea{right:0!important}.os-content>.os-textarea-cover{z-index:-1;pointer-events:none}.os-content>.os-textarea[wrap=off]{white-space:pre!important;margin:0!important}.os-text-inherit{font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;font-variant:inherit;text-transform:inherit;text-decoration:inherit;text-indent:inherit;text-align:inherit;text-shadow:inherit;text-overflow:inherit;letter-spacing:inherit;word-spacing:inherit;line-height:inherit;unicode-bidi:inherit;direction:inherit;color:inherit;cursor:text}.os-resize-observer,.os-resize-observer-host{box-sizing:inherit;display:block;visibility:hidden;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.os-resize-observer-host{padding:inherit;border:inherit;border-color:transparent;border-style:solid;box-sizing:border-box}.os-resize-observer-host.observed{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.os-resize-observer-host>.os-resize-observer,.os-resize-observer-host.observed>.os-resize-observer{height:200%;width:200%;padding:inherit;border:inherit;margin:0;display:block;box-sizing:content-box}.os-resize-observer-host.observed>.os-resize-observer,.os-resize-observer-host.observed>.os-resize-observer:before{display:flex;position:relative;flex-grow:1;flex-shrink:0;flex-basis:auto;box-sizing:border-box}.os-resize-observer-host.observed>.os-resize-observer:before{content:"";box-sizing:content-box;padding:inherit;border:inherit;margin:0}.os-size-auto-observer{box-sizing:inherit!important;height:100%;width:inherit;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.os-size-auto-observer>.os-resize-observer{width:1000%;height:1000%;min-height:1px;min-width:1px}.os-resize-observer-item{position:absolute;inset:0;overflow:hidden;z-index:-1;opacity:0;direction:ltr!important;flex:none!important}.os-resize-observer-item-final{position:absolute;left:0;top:0;transition:none!important;flex:none!important}.os-resize-observer{animation-duration:1ms;animation-name:os-resize-observer-dummy-animation}object.os-resize-observer{box-sizing:border-box!important}@keyframes os-resize-observer-dummy-animation{0%{cursor:auto}to{cursor:none}}.os-host-transition>.os-scrollbar,.os-host-transition>.os-scrollbar-corner{transition:opacity .3s,visibility .3s,top .3s,right .3s,bottom .3s,left .3s}html.os-html>.os-host>.os-scrollbar{position:absolute;z-index:999999}.os-scrollbar,.os-scrollbar-corner{position:absolute;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";z-index:1}.os-scrollbar-corner{bottom:0;right:0}.os-scrollbar{pointer-events:none}.os-scrollbar-track{pointer-events:auto;position:relative;height:100%;width:100%;padding:0!important;border:none!important}.os-scrollbar-handle{pointer-events:auto;position:absolute;width:100%;height:100%}.os-scrollbar-handle-off,.os-scrollbar-track-off{pointer-events:none}.os-scrollbar.os-scrollbar-unusable,.os-scrollbar.os-scrollbar-unusable *{pointer-events:none!important}.os-scrollbar.os-scrollbar-unusable .os-scrollbar-handle{opacity:0!important}.os-scrollbar-horizontal{bottom:0;left:0}.os-scrollbar-vertical{top:0;right:0}.os-host-rtl>.os-scrollbar-horizontal{right:0}.os-host-rtl>.os-scrollbar-vertical{right:auto;left:0}.os-host-rtl>.os-scrollbar-corner{right:auto;left:0}.os-scrollbar-auto-hidden,.os-padding+.os-scrollbar-corner,.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden>.os-scrollbar-corner,.os-host-scrollbar-horizontal-hidden>.os-scrollbar-horizontal,.os-host-resize-disabled.os-host-scrollbar-vertical-hidden>.os-scrollbar-corner,.os-host-scrollbar-vertical-hidden>.os-scrollbar-vertical,.os-scrollbar-horizontal.os-scrollbar-auto-hidden+.os-scrollbar-vertical+.os-scrollbar-corner,.os-scrollbar-horizontal+.os-scrollbar-vertical.os-scrollbar-auto-hidden+.os-scrollbar-corner,.os-scrollbar-horizontal.os-scrollbar-auto-hidden+.os-scrollbar-vertical.os-scrollbar-auto-hidden+.os-scrollbar-corner{opacity:0;visibility:hidden;pointer-events:none}.os-scrollbar-corner-resize-both{cursor:nwse-resize}.os-host-rtl>.os-scrollbar-corner-resize-both{cursor:nesw-resize}.os-scrollbar-corner-resize-horizontal{cursor:ew-resize}.os-scrollbar-corner-resize-vertical{cursor:ns-resize}.os-dragging .os-scrollbar-corner.os-scrollbar-corner-resize{cursor:default}.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden>.os-scrollbar-vertical{top:0;bottom:0}.os-host-resize-disabled.os-host-scrollbar-vertical-hidden>.os-scrollbar-horizontal,.os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden>.os-scrollbar-horizontal{right:0;left:0}.os-scrollbar:hover,.os-scrollbar-corner.os-scrollbar-corner-resize{opacity:1!important;visibility:visible!important}.os-scrollbar-corner.os-scrollbar-corner-resize{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB3aWR0aD0iMTAiICAgaGVpZ2h0PSIxMCIgICB2ZXJzaW9uPSIxLjEiPiAgPGcgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwNDIuMzYyMikiICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eTowLjQ5NDExNzY1O2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDcuNDI0MjE4NywxMDQyLjM2MjIgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjYgLTEuMzEwMTU2MiwxLjMxMDIgMCwwLjI5OSAwLjEwNDM0MTksMC41NzEgMC4yNzI5NDkyLDAuNzkxNSAwLjIwOTEwMjQsMC4xNDEzIDAuNDY1NjIwNiwwLjIxODQgMC43MzY5NjI5LDAuMjE4NCAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NiAxLjMxMDE1NjMsLTEuMzEwMiAwLC0wLjI3MTMgLTAuMDc3MDkzLC0wLjUyNzggLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0MSwtMC4xNjg2IC0wLjQ5MjU0NDMsLTAuMjcyOSAtMC43OTE1NTI4LC0wLjI3MjkgeiBtIDAsMy4wODQzIGMgLTAuNzIzNTc5MiwwIC0xLjMxMDE1NjIsMC41ODY2IC0xLjMxMDE1NjIsMS4zMTAyIDAsMC4yOTkgMC4xMDQzNDE5LDAuNTcxIDAuMjcyOTQ5MiwwLjc5MTUgMC4yMDkxMDI0LDAuMTQxMyAwLjQ2NTYyMDYsMC4yMTg0IDAuNzM2OTYyOSwwLjIxODQgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjYgMS4zMTAxNTYzLC0xLjMxMDIgMCwtMC4yNzEzIC0wLjA3NzA5MywtMC41Mjc4IC0wLjIxODM1OTQsLTAuNzM2OSAtMC4yMjA0OTQxLC0wLjE2ODYgLTAuNDkyNTQ0MywtMC4yNzMgLTAuNzkxNTUyOCwtMC4yNzMgeiBtIC0zLjA4NDMyNjEsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NiAtMS4zMTAxNTYzLDEuMzEwMiAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MSAwLjI3Mjk0OTIsMC43OTE1IDAuMjA5MTAyNCwwLjE0MTMgMC40NjU2MjA3LDAuMjE4NCAwLjczNjk2MjksMC4yMTg0IDAuNzIzNTc5MywwIDEuMzEwMTU2MywtMC41ODY2IDEuMzEwMTU2MywtMS4zMTAyIDAsLTAuMjcxMyAtMC4wNzcwOTMsLTAuNTI3OCAtMC4yMTgzNTk0LC0wLjczNjkgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzMgLTAuNzkxNTUyNywtMC4yNzMgeiBtIC0zLjAyOTczNjQsMy4wMjk4IEMgMC41ODY1NzY5MywxMDQ4LjQ3NjMgMCwxMDQ5LjA2MjggMCwxMDQ5Ljc4NjQgYyAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyMiwwLjc5MTYgMC4yMDkxMDIyOSwwLjE0MTIgMC40NjU2MjA2NSwwLjIxODMgMC43MzY5NjI4OCwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHogbSAzLjAyOTczNjQsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NSAtMS4zMTAxNTYzLDEuMzEwMSAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyLDAuNzkxNiAwLjIwOTEwMjQsMC4xNDEyIDAuNDY1NjIwNywwLjIxODMgMC43MzY5NjI5LDAuMjE4MyAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NSAxLjMxMDE1NjMsLTEuMzEwMSAwLC0wLjI3MTQgLTAuMDc3MDkzLC0wLjUyNzkgLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzI5IC0wLjc5MTU1MjcsLTAuMjcyOSB6IG0gMy4wODQzMjYxLDAgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjUgLTEuMzEwMTU2MiwxLjMxMDEgMCwwLjI5OSAwLjEwNDM0MTksMC41NzExIDAuMjcyOTQ5MiwwLjc5MTYgMC4yMDkxMDI0LDAuMTQxMiAwLjQ2NTYyMDYsMC4yMTgzIDAuNzM2OTYyOSwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHoiLz4gIDwvZz4gIDxnICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDguMjE1NzcxNSwwLjI3Mjk0OTIyIGMgMC4xNDEyNjY3LDAuMjA5MTAyMjkgMC4yMTgzNTk0LDAuNDY1NjIwNjUgMC4yMTgzNTk0LDAuNzM2OTYyODggMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDc2IC0wLjIwNTUxNzYsLTAuNzk3Nzk2NTkgLTAuNTE4NjAzNSwtMS4wMzcyMDY5OCB6IG0gMCwzLjA4NDMyNjE4IGMgMC4xNDEyNjY3LDAuMjA5MTAyMyAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MiAtMS4zMTAxNTYzLDEuMzEwMTU2MiAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTkzIDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAtMy4wODQzMjYyLDAgYyAwLjE0MTI2NjcsMC4yMDkxMDIzIDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYyIC0xLjMxMDE1NjMsMS4zMTAxNTYyIC0wLjI3MTM0MjIsMCAtMC41Mjc4NjA1LC0wLjA3NzA5MyAtMC43MzY5NjI5LC0wLjIxODM1OTMgMC4yMzk0MTA0LDAuMzEzMDg1OSAwLjYxMjYzNjMsMC41MTg2MDM1IDEuMDM3MjA3MSwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYyLC0wLjU4NjU3NyAxLjMxMDE1NjIsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NSwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogTSAyLjEwMTcwOSw2LjM4NzAxMTcgYyAwLjE0MTI2NjcsMC4yMDkxMDI0IDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYzIC0xLjMxMDE1NjMsMS4zMTAxNTYzIC0wLjI3MTM0MjIzLDAgLTAuNTI3ODYwNTksLTAuMDc3MDkzIC0wLjczNjk2Mjg4LC0wLjIxODM1OTQgMC4yMzk0MTAzOSwwLjMxMzA4NTkgMC42MTI2MzYyMiwwLjUxODYwMzUgMS4wMzcyMDY5OCwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAzLjAyOTczNjMsMCBjIDAuMTQxMjY2NywwLjIwOTEwMjQgMC4yMTgzNTk0LDAuNDY1NjIwNiAwLjIxODM1OTQsMC43MzY5NjI5IDAsMC43MjM1NzkzIC0wLjU4NjU3NywxLjMxMDE1NjMgLTEuMzEwMTU2MywxLjMxMDE1NjMgLTAuMjcxMzQyMiwwIC0wLjUyNzg2MDUsLTAuMDc3MDkzIC0wLjczNjk2MjksLTAuMjE4MzU5NCAwLjIzOTQxMDQsMC4zMTMwODU5IDAuNjEyNjM2MywwLjUxODYwMzUgMS4wMzcyMDcxLDAuNTE4NjAzNSAwLjcyMzU3OTMsMCAxLjMxMDE1NjIsLTAuNTg2NTc3IDEuMzEwMTU2MiwtMS4zMTAxNTYzIDAsLTAuNDI0NTcwOCAtMC4yMDU1MTc1LC0wLjc5Nzc5NjYgLTAuNTE4NjAzNSwtMS4wMzcyMDcgeiBtIDMuMDg0MzI2MiwwIGMgMC4xNDEyNjY3LDAuMjA5MTAyNCAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHoiIC8+ICA8L2c+PC9zdmc+);background-repeat:no-repeat;background-position:100% 100%;pointer-events:auto!important}.os-host-rtl>.os-scrollbar-corner.os-scrollbar-corner-resize{transform:scaleX(-1)}.os-host-overflow{overflow:hidden!important}.os-theme-none>.os-scrollbar-horizontal,.os-theme-none>.os-scrollbar-vertical,.os-theme-none>.os-scrollbar-corner{display:none!important}.os-theme-none>.os-scrollbar-corner-resize{display:block!important;min-width:10px;min-height:10px}.os-theme-dark>.os-scrollbar-horizontal,.os-theme-light>.os-scrollbar-horizontal{right:10px;height:10px}.os-theme-dark>.os-scrollbar-vertical,.os-theme-light>.os-scrollbar-vertical{bottom:10px;width:10px}.os-theme-dark.os-host-rtl>.os-scrollbar-horizontal,.os-theme-light.os-host-rtl>.os-scrollbar-horizontal{left:10px;right:0}.os-theme-dark>.os-scrollbar-corner,.os-theme-light>.os-scrollbar-corner{height:10px;width:10px}.os-theme-dark>.os-scrollbar-corner,.os-theme-light>.os-scrollbar-corner{background-color:transparent}.os-theme-dark>.os-scrollbar,.os-theme-light>.os-scrollbar{padding:2px;box-sizing:border-box;background:transparent}.os-theme-dark>.os-scrollbar.os-scrollbar-unusable,.os-theme-light>.os-scrollbar.os-scrollbar-unusable{background:transparent}.os-theme-dark>.os-scrollbar>.os-scrollbar-track,.os-theme-light>.os-scrollbar>.os-scrollbar-track{background:transparent}.os-theme-dark>.os-scrollbar-horizontal>.os-scrollbar-track>.os-scrollbar-handle,.os-theme-light>.os-scrollbar-horizontal>.os-scrollbar-track>.os-scrollbar-handle{min-width:30px}.os-theme-dark>.os-scrollbar-vertical>.os-scrollbar-track>.os-scrollbar-handle,.os-theme-light>.os-scrollbar-vertical>.os-scrollbar-track>.os-scrollbar-handle{min-height:30px}.os-theme-dark.os-host-transition>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle,.os-theme-light.os-host-transition>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle{transition:background-color .3s}.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle,.os-theme-light>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle,.os-theme-dark>.os-scrollbar>.os-scrollbar-track,.os-theme-light>.os-scrollbar>.os-scrollbar-track{border-radius:10px}.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle{background:rgba(0,0,0,.4)}.os-theme-light>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle{background:rgba(255,255,255,.4)}.os-theme-dark>.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle{background:rgba(0,0,0,.55)}.os-theme-light>.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle{background:rgba(255,255,255,.55)}.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle.active{background:rgba(0,0,0,.7)}.os-theme-light>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle.active{background:rgba(255,255,255,.7)}.os-theme-dark>.os-scrollbar-horizontal .os-scrollbar-handle:before,.os-theme-dark>.os-scrollbar-vertical .os-scrollbar-handle:before,.os-theme-light>.os-scrollbar-horizontal .os-scrollbar-handle:before,.os-theme-light>.os-scrollbar-vertical .os-scrollbar-handle:before{content:"";position:absolute;inset:0;display:block}.os-theme-dark.os-host-scrollbar-horizontal-hidden>.os-scrollbar-horizontal .os-scrollbar-handle:before,.os-theme-dark.os-host-scrollbar-vertical-hidden>.os-scrollbar-vertical .os-scrollbar-handle:before,.os-theme-light.os-host-scrollbar-horizontal-hidden>.os-scrollbar-horizontal .os-scrollbar-handle:before,.os-theme-light.os-host-scrollbar-vertical-hidden>.os-scrollbar-vertical .os-scrollbar-handle:before{display:none}.os-theme-dark>.os-scrollbar-horizontal .os-scrollbar-handle:before,.os-theme-light>.os-scrollbar-horizontal .os-scrollbar-handle:before{top:-6px;bottom:-2px}.os-theme-dark>.os-scrollbar-vertical .os-scrollbar-handle:before,.os-theme-light>.os-scrollbar-vertical .os-scrollbar-handle:before{left:-6px;right:-2px}.os-host-rtl.os-theme-dark>.os-scrollbar-vertical .os-scrollbar-handle:before,.os-host-rtl.os-theme-light>.os-scrollbar-vertical .os-scrollbar-handle:before{right:-6px;left:-2px}@font-face{font-family:GI_Global_Web;src:url(../../../fonts/optimized_global_web.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:GI_JA_Web;src:url(../../../fonts/optimized_jp_web.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:GI_TH_Web;src:url(../../../fonts/optimized_th_web.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:GI_ZH_Web;src:url(../../../fonts/optimized_zh_web.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:AAQISHU;src:url(../../../fonts/aaqishu.woff) format("woff");font-style:normal;font-weight:400}.os-theme-light>:global(.os-scrollbar)>:global(.os-scrollbar-track)>:global(.os-scrollbar-handle){background-color:#d2c69c;opacity:.5}.os-theme-light>:global(.os-scrollbar)>:global(.os-scrollbar-track)>:global(.os-scrollbar-handle:hover),.os-theme-light>:global(.os-scrollbar)>:global(.os-scrollbar-track)>:global(.os-scrollbar-handle:active){background-color:#d2c69c;opacity:1}.os-theme-light>:global(.os-scrollbar-vertical){width:8px}.os-theme-light>:global(.os-scrollbar-horizontal){height:8px}main{display:block;width:var(--screen-width);height:var(--screen-height);font-family:var(--genshin-font);overflow:hidden}.uid{display:block;position:fixed;bottom:0;right:2em;z-index:9999;color:#fff;text-shadow:0 0 1.5px rgba(0,0,0,.7);font-family:Roboto,sans-serif;pointer-events:none}.mobile .uid{right:5%}.preview .uid{pointer-events:unset;right:unset;left:1rem;bottom:1rem}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_modal-balance-4f630c28.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_modal-balance-4f630c28.css
deleted file mode 100644
index e1f84ad7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_modal-balance-4f630c28.css
+++ /dev/null
@@ -1 +0,0 @@
-.control.svelte-kozz62.svelte-kozz62,.input.svelte-kozz62.svelte-kozz62{display:flex;justify-content:center;flex-direction:column;align-items:center;width:100%;position:relative;font-size:1rem}.control.svelte-kozz62.svelte-kozz62{flex-direction:row;margin:0 3rem}.control.svelte-kozz62>span.svelte-kozz62{width:2.2em;height:2em;line-height:0;display:flex;justify-content:center;align-items:center;font-size:larger}[type=range].svelte-kozz62.svelte-kozz62{--range:calc(var(--max) - var(--min));--ratio:calc((var(--val) - var(--min)) / var(--range));--sx:calc(.5 * 1.5em + var(--ratio) * (100% - 1.5em));margin:0;padding:0;width:55%;height:1.5em;background:transparent;font:1em/1 arial,sans-serif}[type=range].svelte-kozz62.svelte-kozz62,[type=range].svelte-kozz62.svelte-kozz62::-webkit-slider-thumb{-webkit-appearance:none}[type=range].svelte-kozz62.svelte-kozz62::-webkit-slider-runnable-track{box-sizing:border-box;border:none;width:100%;height:.4em;background:#ccc}[type=range].svelte-kozz62.svelte-kozz62::-webkit-slider-runnable-track{background:linear-gradient(#4a5265,#4a5265) 0 / var(--sx) 100% no-repeat #ccc;border-radius:10px}[type=range].svelte-kozz62.svelte-kozz62::-moz-range-track{box-sizing:border-box;border-radius:10px;width:100%;height:.4em;background:#ccc}[type=range].svelte-kozz62.svelte-kozz62::-ms-track{box-sizing:border-box;border:none;width:100%;height:.4em;background:#ccc}[type=range].svelte-kozz62.svelte-kozz62::-moz-range-progress{height:.4em;border-radius:10px;background:#4a5265}[type=range].svelte-kozz62.svelte-kozz62::-ms-fill-lower{height:.4em;background:#ccc}[type=range].svelte-kozz62.svelte-kozz62::-webkit-slider-thumb{box-sizing:border-box;border:none;border-radius:0;width:.75em;height:.75em;background:#4a5265;margin-top:-.22rem;transform:rotate(45deg);border:.15em solid #ece6de;outline:.15em solid #4a5265;box-shadow:0 0 6px #ece6de}[type=range].svelte-kozz62.svelte-kozz62::-moz-range-thumb{box-sizing:border-box;border:none;border-radius:0;width:.75em;height:.75em;background:#4a5265;margin-top:-.22rem;transform:rotate(45deg);border:.15em solid #ece6de;outline:.15em solid #4a5265;box-shadow:0 0 6px #ece6de}[type=range].svelte-kozz62.svelte-kozz62::-ms-tooltip{display:none}button.svelte-kozz62.svelte-kozz62:active:not(:disabled){transform:scale(.9) translateY(-50%);background-color:#e0ddd4!important;border-color:#c3c3c3!important;box-shadow:#a0afbe99 0 0 4px 2px}button.svelte-kozz62.svelte-kozz62:hover:not(:disabled){background-color:#333947}button.plus.svelte-kozz62.svelte-kozz62:disabled,button.min.svelte-kozz62.svelte-kozz62:disabled{background-color:#adb3c0}button.plus.svelte-kozz62.svelte-kozz62,button.min.svelte-kozz62.svelte-kozz62{background-color:#4a5265;display:inline-flex;justify-content:center;align-items:center;line-height:0;position:absolute;width:2rem;height:2rem;color:#fff;border-radius:100%;border:.2rem solid transparent;top:50%;transform:translateY(-50%);transition:all .2s}button.plus.svelte-kozz62.svelte-kozz62{right:7%}button.min.svelte-kozz62.svelte-kozz62{left:7%;z-index:+3}.funds.svelte-vegs8f{position:fixed;z-index:+999;top:0;left:0;width:100vw;padding:1.2rem 3%;background-color:#1a1b24;display:flex;justify-content:flex-end}.mobile .funds.svelte-vegs8f{padding:.7rem 3%}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-38811b6b.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-38811b6b.css
deleted file mode 100644
index f9ccc698..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-38811b6b.css
+++ /dev/null
@@ -1 +0,0 @@
-section.svelte-1bfm8fx{width:100%;height:var(--screen-height)}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-3c659a81.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-3c659a81.css
deleted file mode 100644
index bfb707c6..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-3c659a81.css
+++ /dev/null
@@ -1 +0,0 @@
-section.svelte-15i5hk1.svelte-15i5hk1{width:100%;height:100%;overflow-y:auto;background-color:#ebebeb}header.svelte-15i5hk1.svelte-15i5hk1{height:20em;background-color:#458a74;display:flex;flex-direction:column;justify-content:center;align-items:center;color:#fff;background-image:url(https://user-images.githubusercontent.com/13815468/200537311-398f386d-00c3-4a5c-a338-54588c79095b.jpg);background-size:cover;position:relative}header.svelte-15i5hk1.svelte-15i5hk1:after{content:"";width:100%;height:100%;position:absolute;top:0;left:0;background-color:#0000008c}header.svelte-15i5hk1 h1.svelte-15i5hk1,header.svelte-15i5hk1 h2.svelte-15i5hk1{position:relative;z-index:+1}header.svelte-15i5hk1 h1.svelte-15i5hk1{font-size:2rem}header.svelte-15i5hk1 h2.svelte-15i5hk1{font-size:large;margin-top:1rem}article.svelte-15i5hk1.svelte-15i5hk1{color:var(--text-color);padding:2% 10%;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}article.svelte-15i5hk1 h2{font-family:var(--genshin-font);padding:1.5rem 0 .5rem}article.svelte-15i5hk1 p{padding:.4rem 0}article.svelte-15i5hk1 a{color:#dda04f}article.svelte-15i5hk1 ul{list-style-position:inside}@media screen and (max-width: 900px){header.svelte-15i5hk1 h1.svelte-15i5hk1{font-size:1.2rem}header.svelte-15i5hk1 h2.svelte-15i5hk1{font-size:1rem;margin-top:.5rem}article.svelte-15i5hk1.svelte-15i5hk1{padding:2% 5%}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-41952c63.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-41952c63.css
deleted file mode 100644
index 15366694..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-41952c63.css
+++ /dev/null
@@ -1 +0,0 @@
-section.svelte-rwed1l{width:100%;height:100%;position:relative;display:flex;justify-content:center;align-items:center}.bg.svelte-rwed1l{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:110%;height:110%;-o-object-fit:cover;object-fit:cover;filter:blur(5px)}.container.svelte-rwed1l{position:relative;z-index:+1;width:80%;height:70%;background-color:#ece6de;padding:2rem;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.gi-primo-star.svelte-rwed1l{color:#fdf0ac;font-size:1.5rem;display:inline-block;position:absolute;filter:drop-shadow(0 0 7px rgba(227,149,48,.9))}.top-left.svelte-rwed1l{top:-.8rem;left:-.5rem;transform:rotate(-45deg)}.top-right.svelte-rwed1l{top:-.8rem;right:-.5rem;transform:rotate(45deg)}.bottom-left.svelte-rwed1l{bottom:-.8rem;left:-.5rem;transform:rotate(-135deg)}.bottom-right.svelte-rwed1l{bottom:-.8rem;right:-.5rem;transform:rotate(135deg)}.icon-bg.svelte-rwed1l{font-size:17em;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#e4dcce;z-index:-1}h1.svelte-rwed1l{font-size:200%;line-height:120%}h2.svelte-rwed1l{font-size:120%;line-height:120%;padding:.6rem 0}p.svelte-rwed1l{font-size:105%;display:block;margin:0 auto;width:80%}@media screen and (max-width: 900px){p.svelte-rwed1l{font-size:120%}}.form.svelte-rwed1l{margin:3vh 0;width:100%}.input.svelte-rwed1l{width:80%;max-width:30rem;text-align:center;display:block;margin:0 auto}input.svelte-rwed1l{width:100%;padding:0 1.5rem;height:3rem;display:block;border-radius:3rem;border:#c3b8a5 1px solid;outline:none;transition:all .2s}input.svelte-rwed1l:focus{box-shadow:0 0 .4rem #e39530b3}input.error.svelte-rwed1l{border:#de2f22 1px solid}input.error.svelte-rwed1l:focus{box-shadow:0 0 .4rem #de2f22b3}.button.svelte-rwed1l{margin-top:1.5vh}.error.svelte-rwed1l{color:#de2f22}.valid.svelte-rwed1l{color:#64ad15}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-75fbe034.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-75fbe034.css
deleted file mode 100644
index e1747842..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-75fbe034.css
+++ /dev/null
@@ -1 +0,0 @@
-.modal.svelte-1fzyohs.svelte-1fzyohs{position:fixed;top:0;left:0;width:100vw;height:var(--screen-height);background-color:#00000080;z-index:997;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.modal-content.svelte-1fzyohs.svelte-1fzyohs{width:35rem;max-width:90%;background-color:#fbf6ee;padding:8px;text-align:center;color:#383b40;position:relative;border-radius:.8rem}.dark.svelte-1fzyohs .modal-content.svelte-1fzyohs{background-color:#4a5265}.mobile .modal-content.svelte-1fzyohs.svelte-1fzyohs{max-width:110vh}.container.svelte-1fzyohs.svelte-1fzyohs{width:100%;height:100%;border:2px solid #ddd5c8;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:50%;background-position:50%}.corner.svelte-1fzyohs.svelte-1fzyohs{background-image:url(data:image/webp;base64,UklGRkgFAABXRUJQVlA4WAoAAAAQAAAANgAAMQAAQUxQSAUDAAABCbRt2wYS0Kny/w+3P0T0fwL4Fh3ZUFn3RQqxyZuhoG0bpuZPuzsQImICIhX+jrAkyW7bzKp0//s6YRwAcOH8GTEBE0C5tm1FknPu+xCQWdBiZpZGclsGyAB0QONmZkqIiB/vDRpNiIgJIP6144LOBIQAaStmAqCN0E4AUphAwoCQXtEIPIiISeCiIWUUwkwECbAXfA0Pj8BSW4GwsJqTeU7uMjoa3Qtdmtt8nIH4ELgYhOx9U1hpxZw2KNQFUH23+mFBoKxI326+3UyLToG6iejNu6E8X7f3/vKHwywQsRchX96fP/74Yy5GQCVFkDI10f/wh55IHwDhYnjcvvP7u2dPao+ZXFFiTVoiVtWf/32Gvrdv/nw2/qLTFCsERiDhJu+QevH4duXe83Khb94AUskCw7CM6KmtwbiZl7ufnLJiHiJBKNy5i/gQDWjL9pu4++6wu1ffxRMEO0SsT5gHuql7P3386+P7bbPsvxodw6MRWtYVEOryej6c2/hOd9fL8vF7KfvRD4hCCMsoIKvjeH5Sx/fKbvlshHUvmlAQiJkaYNuuH8ahnPLSaYI5KDXjbNCNfS2lppc9DdRCQQcIgFrEVAsphfTCwzufEEh21t/gaCgwRfbCi7fyHtDqJAABRIvUkOV56/YCPHUpzPWC0BewVmDqEbx7e9gn97BYhGVUME+hECJcpMfD/+4W7B8PE6GsgnT0dvQzgy59fnU44EGrgQAQta4/Lq65LA+r0dZ4GLckwgMQALVsWMZ5fmZT6QDbPP/w3k0aVg3CQeWTPO8X2hNqlqVuyc82d06KUghnNjFNd8szSxF9l3Uy5/7Kb6ZIAKIm5eTH3f5xZlLe1FF9/e6mcracJaglyQ/Xdm32VopsSKUrwztD/37RcVDg7PJwHd1CRk5Zdfs8n6xr/+nzAQcleRzdBCAJcmbl0vjJnc8HTVQBwlcBBAjApnlu7//3/bCIjniLa5uu3v+m9i9m6iAKGIYHDzTgK4YUUsz0eWLQCyE0gz4NAAlfMRR7+jR/bwBWUDggHAIAAHAKAJ0BKjcAMgA+KQ6FQqGHfAYAoSygDgHbI3I4tdhHQL88A1kA2ozja3RezMIbWU3XuF8+/h9ILAYHndhrUbZy5B81xTHr3sWw+e1DsBqahnwk8nvegFg3CiwAAP7/KvhRIfulyVvAM+kd25h7/f9q48lj/8TP6ceUoTF8V1L0D7kxK/RYzWsE2gM84nd8zXc9QGLEFOT/sLorw3Yjn9KVTdhjeYf/JPghddPdW0LE5XY55VYd6No1Np9IqEu9k4ZHiHsClwKB9XL+sZKxaOfPkAx9tBWSX/EaPi0L0FT+Ia2LsLUt7Gv/94HKXgfgqAY3Dc3mrgA9914RrLuW9+/4muOcWZqBrbww2hfhuvV6OzfAOs9mDbeSCYCL8K3CPHvdT0wItSZ53JuxG9FLZCIfp0b8LJkq1OMW6TeGE5KKpvYCamNksDv1s+pAa2J18XKje5sj8hSQhZjIqh9uPJX7FZXFqLIxObNJPebhHE3gvZWar0ojALZ+1hmoJKVuJVetIsSw8Nqfb9drEU81Na8myzoyvPFjWzeCiZoWF+PHkNkeaySoSlxjDHlbQS8zky28ygG5RGkzIURZol88xyDcVVvHW05Bq5d79tZ9Nbk/ofOfzl0+Un6lPuZpn0zhr9YSAvne330OxW3f5DbKZyT+YPZstc2H5QaDYWBcyVMJ2TCXOSCq+L28GLxA8V82mMeS122MP/qzwAAAAA==);background-size:cover;width:2.35rem;aspect-ratio:1/1;font-size:1.5rem;display:inline-block;position:absolute}.top-left.svelte-1fzyohs.svelte-1fzyohs{top:-.9rem;left:-.9rem;transform:rotate(-90deg)}.top-right.svelte-1fzyohs.svelte-1fzyohs{top:-.9rem;right:-.9rem}.bottom-left.svelte-1fzyohs.svelte-1fzyohs{bottom:-.9rem;left:-.9rem;transform:rotate(-180deg)}.bottom-right.svelte-1fzyohs.svelte-1fzyohs{bottom:-.9rem;right:-.9rem;transform:rotate(90deg)}.pop-header.svelte-1fzyohs.svelte-1fzyohs{font-size:130%;margin:.4rem 7%;padding-bottom:.4rem;border-bottom:.2rem solid #ddd5c8;position:relative;z-index:+1}.dark.svelte-1fzyohs .pop-header.svelte-1fzyohs{color:#d2c69c}.mobile .pop-header.svelte-1fzyohs.svelte-1fzyohs{font-size:1rem}.pop-body.svelte-1fzyohs.svelte-1fzyohs{height:15rem;max-height:45vh;position:relative;z-index:+1;font-size:1.1rem;display:flex;justify-content:center}.dark.svelte-1fzyohs .pop-body.svelte-1fzyohs{color:#fbf6ee}.mobile .pop-body.svelte-1fzyohs.svelte-1fzyohs{height:12rem;font-size:.9rem}.pop-footer.svelte-1fzyohs.svelte-1fzyohs{display:flex;padding:.7rem 0;justify-content:space-around;position:relative;z-index:+1}.pop-footer.svelte-1fzyohs.svelte-1fzyohs:before{width:80%;content:"";display:block;border-top:.2rem solid #ddd5c8;position:absolute;top:0;left:50%;transform:translate(-50%)}.dark.svelte-1fzyohs .container.svelte-1fzyohs,.dark.svelte-1fzyohs .pop-header.svelte-1fzyohs,.dark.svelte-1fzyohs .pop-footer.svelte-1fzyohs:before{border-color:#d2c69c99}.container.svelte-b8pos5.svelte-b8pos5{width:100%;height:100%}.content.svelte-b8pos5.svelte-b8pos5{padding:1% 5%;display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%;width:100%}.content.svelte-b8pos5 .thumb.svelte-b8pos5{margin-top:1rem;max-width:50%}.error.svelte-b8pos5 caption.svelte-b8pos5{display:block;margin-bottom:1rem}caption.svelte-b8pos5.svelte-b8pos5{display:inline-block;position:relative}.load-text.svelte-b8pos5.svelte-b8pos5:after{content:".";position:absolute;right:0;transform:translate(100%);bottom:0;animation:svelte-b8pos5-dot 3s infinite}.loader.svelte-b8pos5.svelte-b8pos5{margin:3% 0}@media screen and (max-width: 640px){.loader.svelte-b8pos5.svelte-b8pos5{margin:7% 0}}@keyframes svelte-b8pos5-dot{0%{content:"."}25%{content:".."}50%{content:"..."}to{content:""}}section.svelte-1alit1.svelte-1alit1{width:100%;height:100%;padding:0 1.5rem}.credit.svelte-1alit1.svelte-1alit1{font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-size:.9rem}.updates.svelte-1alit1.svelte-1alit1{text-align:left;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;background-color:#fff;font-size:.97rem;height:calc(.7 * var(--modalHeight));padding:0 1rem;display:block;overflow:hidden}.mobile .updates.svelte-1alit1.svelte-1alit1{height:calc(.6 * var(--modalHeight))}.adExpired.svelte-1alit1.svelte-1alit1{text-align:center;font-size:125%;display:flex;justify-content:center;align-items:center}.adExpired.svelte-1alit1 a.svelte-1alit1{display:block;margin-top:1rem}.updates.svelte-1alit1 span.svelte-1alit1{font-weight:700;color:#f7cf33;display:block;padding-top:.5rem}.updates.svelte-1alit1 .tgl.svelte-1alit1{color:#bd6932}.updates.svelte-1alit1 a{color:#f29f0f}.updates.svelte-1alit1 a:hover{text-decoration:underline}.updates.svelte-1alit1 p.svelte-1alit1{padding-left:1rem;position:relative;line-height:1rem;margin:.5rem 0}.updates.svelte-1alit1 p.svelte-1alit1:before{content:"*";display:inline-block;width:10px;line-height:0;font-size:1.3rem;padding-top:.5rem;position:absolute;left:0;top:50%;transform:translateY(-50%)}.sp.svelte-1alit1.svelte-1alit1{font-size:.9rem;padding:0rem 0 .5rem}a.svelte-1alit1.svelte-1alit1{transition:all .2s}.sp.svelte-1alit1 a.svelte-1alit1{font-weight:700;color:#e3a023;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}a.svelte-1alit1.svelte-1alit1:active{transform:scale(.9)}section.svelte-1x1789m{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99;color:#000}.container.svelte-1x1789m{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.bg.svelte-1x1789m{min-width:100vw;min-height:100%;position:absolute;z-index:-1;left:0;background-image:linear-gradient(-30deg,rgba(0,0,0,.75) 80%,rgba(0,0,0,.6))}.content.svelte-1x1789m{display:flex;flex-direction:column;max-width:80%;width:80%;text-align:center}.mobile .content.svelte-1x1789m{transform:scale(.85)}h3.svelte-1x1789m{color:#e9e4d9;font-weight:100;padding:.5rem}h4.svelte-1x1789m{color:#d0ba98;font-weight:100}.msg.svelte-1x1789m span{color:#e9e4d9}.milestone.svelte-1x1789m{display:flex;width:100%;justify-content:center}img.svelte-1x1789m{width:30%}@keyframes svelte-d5t2d5-dot{{content:"."}{content:".."}{content:"..."}{content:""}}.publisher.svelte-ru4wkb.svelte-ru4wkb{position:fixed;z-index:+20;top:0;left:0;width:var(--screen-width);height:var(--screen-height);background-color:#0003;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;justify-content:center;align-items:center}.load-text.svelte-ru4wkb span{color:#ff9615}.container.svelte-ru4wkb.svelte-ru4wkb{width:600px;max-width:90%;background-color:#fbf6ee;border:2px solid #ddd5c8;border-radius:.5rem;padding:3% 1.5%}.load-text.svelte-ru4wkb.svelte-ru4wkb{display:inline-block}.load-text.svelte-ru4wkb.svelte-ru4wkb:after{content:".";position:absolute;right:0;transform:translate(100%);bottom:0;animation:svelte-ru4wkb-dot 3s infinite}.progress-bar.svelte-ru4wkb.svelte-ru4wkb{width:100%;height:.2rem;background-color:#ccc;margin:3% 0;position:relative;border-radius:1rem}.progress-bar.svelte-ru4wkb span.svelte-ru4wkb{border-radius:inherit;position:absolute;left:0;top:50%;transform:translateY(-50%);width:var(--per);height:120%;background-image:linear-gradient(to left,#898e9d,#4a5265);box-shadow:0 0 .1rem #fff;transition:width .05s}.content.svelte-ru4wkb.svelte-ru4wkb{text-align:center}.loader.svelte-ru4wkb.svelte-ru4wkb{margin:3% 0}.report.svelte-ru4wkb.svelte-ru4wkb{padding-top:.5rem;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-style:italic}.report.svelte-ru4wkb button.svelte-ru4wkb{color:orange;font-weight:700;font-style:inherit;transition:all .25s}.report.svelte-ru4wkb button.svelte-ru4wkb:hover{text-decoration:underline}@media screen and (max-width: 640px){.loader.svelte-ru4wkb.svelte-ru4wkb{margin:7% 0}}.copy-text.svelte-ru4wkb.svelte-ru4wkb,.loader.svelte-ru4wkb.svelte-ru4wkb{display:flex;align-items:center;text-align:center;justify-content:center;width:100%}.copy-text.svelte-ru4wkb label.svelte-ru4wkb{padding:2% 5%;background-color:#fff;border:1px solid #898e9d;border-radius:3rem;white-space:nowrap;width:80%;overflow:hidden;text-overflow:ellipsis}.copy-text.svelte-ru4wkb button.svelte-ru4wkb{background-color:#898e9d;color:#fff;line-height:0;padding:2% 2.5%;margin:1%;border-radius:3rem;font-size:80%;display:inline-flex;align-items:center;transition:all .25s}.copy-text.svelte-ru4wkb button.svelte-ru4wkb:hover{background-color:#4a5265}.shareable.svelte-ru4wkb.svelte-ru4wkb{padding:2%}.shareable.svelte-ru4wkb button.svelte-ru4wkb{padding:0;border-radius:100%;z-index:10;aspect-ratio:1 / 1;display:inline-flex;justify-content:center;align-items:center;line-height:0;margin:0 .2rem;font-size:100%;opacity:.75;width:2.2rem;transition:all .25s;color:#fff}.shareable.svelte-ru4wkb button.svelte-ru4wkb:hover{opacity:1}button.svelte-ru4wkb.svelte-ru4wkb:active{transform:scale(.9)}.twitter.svelte-ru4wkb.svelte-ru4wkb{background-color:#1da1f2}.facebook.svelte-ru4wkb.svelte-ru4wkb{background-color:#4267b2}.save.svelte-ru4wkb.svelte-ru4wkb{background-color:#3f4349}.toast.svelte-ru4wkb.svelte-ru4wkb{position:fixed;z-index:+25;top:50%;left:50%;transform:translate(-50%,-50%);display:inline-block;padding:.5rem 1rem;border-radius:.5rem;background-color:#ad8041cc;color:#fff;font-size:.75rem}@keyframes svelte-ru4wkb-dot{0%{content:"."}25%{content:".."}50%{content:"..."}to{content:""}}#footer.svelte-6g0x8w.svelte-6g0x8w{position:relative}.red.svelte-6g0x8w.svelte-6g0x8w{color:#de2f22!important}.footer-info.svelte-6g0x8w.svelte-6g0x8w{position:absolute;left:5%;bottom:75%;align-items:center;display:flex;flex-direction:column;pointer-events:none}.wish.svelte-6g0x8w>div.svelte-6g0x8w{display:inline-flex;align-items:center;margin-right:5px;padding:2px 20px 2px 2px;font-size:.9rem}.wish.svelte-6g0x8w span.svelte-6g0x8w{margin-left:10px;color:#fff;text-shadow:0 0 3px rgba(0,0,0,.5)}.wish-button.svelte-6g0x8w.svelte-6g0x8w{transform:scale(1);transition:all .2s;color:#4a5265;text-decoration:none;z-index:+5;position:relative}.wish-button.svelte-6g0x8w.svelte-6g0x8w:active{filter:brightness(85%)}button.svelte-6g0x8w.svelte-6g0x8w:active:not(:disabled){transform:scale(.95)}.row.svelte-6g0x8w.svelte-6g0x8w{width:100%;height:100%;padding:0 5%;display:flex;justify-content:space-between;align-items:center}.roll-button.svelte-6g0x8w.svelte-6g0x8w{text-align:right}.roll-button.svelte-6g0x8w button.svelte-6g0x8w{background-image:var(--bg);background-size:contain;background-position:center;background-repeat:no-repeat;width:230px;aspect-ratio:355/88;margin:0 5px;display:inline-flex;justify-content:center;align-items:center;flex-direction:column;color:#a49a90;transition:all .2s}.roll-button.svelte-6g0x8w button.svelte-6g0x8w:disabled{filter:brightness(.5)}.roll-button.svelte-6g0x8w button .bottom.svelte-6g0x8w{display:flex;align-items:center}.discount.svelte-6g0x8w.svelte-6g0x8w{background-color:#8ab958;position:absolute;z-index:+2;left:15%;top:-5%;border-radius:20px;color:#fff;transform:scale(.8) translate(-50%);padding:.2rem .5rem}@media screen and (min-width: 750px){.discount.svelte-6g0x8w.svelte-6g0x8w{font-size:.7rem}.roll-button.svelte-6g0x8w.svelte-6g0x8w{white-space:nowrap}}.mobile .row.svelte-6g0x8w.svelte-6g0x8w{padding:1rem 0;align-items:flex-end}.mobile .menu-button{padding-left:1%;white-space:nowrap}.mobile .roll-button.svelte-6g0x8w.svelte-6g0x8w{margin-right:40px!important;white-space:nowrap}.mobile .roll-button.svelte-6g0x8w button.svelte-6g0x8w{font-size:.75rem}.mobile .roll-button.svelte-6g0x8w img{transform:scale(.7)}.mobile .bottom.svelte-6g0x8w.svelte-6g0x8w{margin-top:-3px}@media screen and (max-width: 925px){button.svelte-6g0x8w.svelte-6g0x8w{padding:2px 15px;margin:2px 5px}.roll-button.svelte-6g0x8w button.svelte-6g0x8w{width:175px;margin:0}.roll-button.svelte-6g0x8w img{transform:scale(.8)}}@media screen and (max-width: 700px){.roll-button.svelte-6g0x8w.svelte-6g0x8w{width:100%}}@media screen and (max-width: 550px){.menu-button.svelte-6g0x8w.svelte-6g0x8w{width:100%}.roll-button.svelte-6g0x8w.svelte-6g0x8w{width:auto}}@media screen and (max-width: 400px){.roll-button.svelte-6g0x8w button.svelte-6g0x8w{width:140px;margin:0}.roll-button.svelte-6g0x8w img{transform:scale(.7)}.roll-button.svelte-6g0x8w .bottom.svelte-6g0x8w{margin-top:-3px}}.exchange.svelte-eojthv .red{color:#de2f22!important}.exchange.svelte-eojthv .yellow{color:#dab12d!important}.exchange.svelte-eojthv{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.frame-content.svelte-7m46zd.svelte-7m46zd{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width))}h1.svelte-7m46zd.svelte-7m46zd,.frame-content.svelte-7m46zd>div.svelte-7m46zd{text-align:left;position:absolute}h1.svelte-7m46zd span{color:#cba885;display:block}h1.svelte-7m46zd.svelte-7m46zd{bottom:73.5%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-7m46zd.svelte-7m46zd,.ja-JP h1.svelte-7m46zd.svelte-7m46zd{font-size:calc(6 / 100 * var(--content-width))}.info.svelte-7m46zd.svelte-7m46zd{left:0;top:36%;width:40%;height:45%;display:block;padding-left:4%}.top.svelte-7m46zd.svelte-7m46zd{color:#fff;background-color:#e79649;padding:.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%,-15%)}.set.svelte-7m46zd.svelte-7m46zd{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-7m46zd.svelte-7m46zd{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(.7 / 100 * var(--content-width)) 0;background-color:#e0555ed9}.desc.svelte-7m46zd .text.svelte-7m46zd{width:calc(32.5 / 100 * var(--content-width));padding:calc(.3 / 100 * var(--content-width));line-height:125%}.icon.svelte-7m46zd.svelte-7m46zd{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.featured.svelte-7m46zd.svelte-7m46zd{top:65.6%;left:57.6%;color:#fff;font-size:calc(4.9 / 100 * var(--content-width));-webkit-text-stroke:.05rem #565654;text-shadow:0 0 .15rem #d2c69c}.ja-JP .featured.svelte-7m46zd.svelte-7m46zd,.zh-CN .featured.svelte-7m46zd.svelte-7m46zd{top:68%}.charName.svelte-7m46zd span.svelte-7m46zd:not(.up){filter:drop-shadow(0 .3rem .5rem #000)}.charName.svelte-7m46zd span.up.svelte-7m46zd{color:#fff664;-webkit-text-stroke:.05rem #e7a12e;font-size:calc(1.5 / 100 * var(--content-width));filter:drop-shadow(0 .3rem .5rem #fff);position:absolute;top:0;right:0;transform:translate(100%);text-transform:uppercase;text-shadow:0 0 .4rem #f79c09}.char-title.svelte-7m46zd.svelte-7m46zd{left:57.6%;top:83.5%;color:#cfbc99;background-color:#39425d;padding:.2% 1%}.chances.svelte-7m46zd.svelte-7m46zd{right:0;bottom:6.5%;color:#e7dfd0;background-color:#252d3a;padding:.2% 2%}.frame-content.svelte-1b4k6p2.svelte-1b4k6p2{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:130%}h1.svelte-1b4k6p2 span{display:block}h1.svelte-1b4k6p2.svelte-1b4k6p2,.frame-content.svelte-1b4k6p2>div.svelte-1b4k6p2{text-align:left;position:absolute}h1.svelte-1b4k6p2.svelte-1b4k6p2{bottom:67%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-1b4k6p2.svelte-1b4k6p2{font-size:calc(7 / 100 * var(--content-width))}.ja-JP h1.svelte-1b4k6p2.svelte-1b4k6p2{max-width:45%;font-size:calc(6 / 100 * var(--content-width));line-height:100%}.top.svelte-1b4k6p2.svelte-1b4k6p2{color:#fff;padding:.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%,-15%)}.info.svelte-1b4k6p2.svelte-1b4k6p2{left:0;top:40%;width:40%;height:42%;display:block;padding-left:4%}.content.svelte-1b4k6p2.svelte-1b4k6p2{position:relative}.info.svelte-1b4k6p2 .content.svelte-1b4k6p2:after{content:"";display:block;width:calc(.55 / 100 * var(--content-width));height:100%;background-color:#565654;position:absolute;left:calc(-3.045 / 100 * var(--content-width));top:0}.set.svelte-1b4k6p2.svelte-1b4k6p2{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-1b4k6p2.svelte-1b4k6p2{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(.7 / 100 * var(--content-width)) 0}.icon.svelte-1b4k6p2.svelte-1b4k6p2{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.desc.svelte-1b4k6p2 .text.svelte-1b4k6p2{width:calc(32.5 / 100 * var(--content-width));padding:calc(.3 / 100 * var(--content-width))}.character.svelte-1b4k6p2.svelte-1b4k6p2{left:54%;bottom:8%;width:calc(27 / 100 * var(--content-width))}.character.svelte-1b4k6p2 .char-name.svelte-1b4k6p2{color:#fff;display:inline-block;-webkit-text-stroke:.02rem #565654;text-shadow:0 0 .15rem #d2c69c;line-height:100%;position:relative;font-size:calc(11 / 100 * var(--text-width))}.zh-CN .character.svelte-1b4k6p2 .char-name.svelte-1b4k6p2{font-size:calc(17 / 100 * var(--text-width))}.ja-JP .character.svelte-1b4k6p2 .char-name.svelte-1b4k6p2{font-size:calc(15 / 100 * var(--text-width))}.char-name.svelte-1b4k6p2 span.svelte-1b4k6p2{filter:drop-shadow(0 .3rem .5rem #000)}.char-name.svelte-1b4k6p2 .up.svelte-1b4k6p2{color:#fff664;-webkit-text-stroke:.05rem #e7a12e;font-size:calc(2 / 100 * var(--content-width));filter:drop-shadow(0 .3rem .5rem #fff);position:absolute;top:0;right:0;transform:translate(100%) translateY(-50%);text-transform:uppercase;text-shadow:0 0 .4rem #f79c09}.character.svelte-1b4k6p2 .char-title.svelte-1b4k6p2{color:#cfbc99;background-color:#39425d;margin-top:calc(3.5 / 100 * var(--content-width));padding:1% 2%;white-space:nowrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.frame-content.svelte-8vngkj.svelte-8vngkj{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:130%}h1.svelte-8vngkj span{display:block}h1.svelte-8vngkj.svelte-8vngkj,.frame-content.svelte-8vngkj>div.svelte-8vngkj{text-align:left;position:absolute}h1.svelte-8vngkj.svelte-8vngkj{bottom:67%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-8vngkj.svelte-8vngkj,.ja-JP h1.svelte-8vngkj.svelte-8vngkj{font-size:calc(7 / 100 * var(--content-width))}.top.svelte-8vngkj.svelte-8vngkj{color:#fff;padding:.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%,-15%)}.info.svelte-8vngkj.svelte-8vngkj{left:4%;top:40%;width:36%;display:block}.info.svelte-8vngkj.svelte-8vngkj:after{content:"";display:block;width:calc(.55 / 100 * var(--content-width));height:100%;background-color:#565654;position:absolute;left:calc(-3 / 100 * var(--content-width));top:0}.set.svelte-8vngkj.svelte-8vngkj{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-8vngkj.svelte-8vngkj{left:7.5%;top:49.7%;color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(.7 / 100 * var(--content-width)) 0}.icon.svelte-8vngkj.svelte-8vngkj{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.desc.svelte-8vngkj .text.svelte-8vngkj{width:calc(32.5 / 100 * var(--content-width));padding:calc(.3 / 100 * var(--content-width))}.note.svelte-8vngkj.svelte-8vngkj{width:85%}.featured.svelte-8vngkj.svelte-8vngkj{left:37%;top:64%;width:calc(22 / 100 * var(--content-width))}.rateup.svelte-8vngkj.svelte-8vngkj{left:70%;bottom:21%}.weapon-name.svelte-8vngkj.svelte-8vngkj{color:#fff;display:block;-webkit-text-stroke:.015rem #000;letter-spacing:-.05rem;line-height:100%;position:relative}.weapon-name.svelte-8vngkj span.svelte-8vngkj:not(.up){filter:drop-shadow(-.2rem .2rem .5rem #000)}.first-wp.svelte-8vngkj.svelte-8vngkj{font-size:calc(8 / 100 * var(--text-width))}.second-wp.svelte-8vngkj.svelte-8vngkj{font-size:calc(8 / 100 * var(--text-width));margin-top:calc(.6 / 100 * var(--content-width))}.zh-CN .first-wp.svelte-8vngkj.svelte-8vngkj,.zh-CN .second-wp.svelte-8vngkj.svelte-8vngkj,.ja-JP .first-wp.svelte-8vngkj.svelte-8vngkj,.ja-JP .second-wp.svelte-8vngkj.svelte-8vngkj{font-size:calc(11 / 100 * var(--text-width))}span.up.svelte-8vngkj.svelte-8vngkj{color:#fff664;-webkit-text-stroke:.05rem #e7a12e;filter:drop-shadow(0 .3rem .5rem #fff);font-size:calc(2 / 100 * var(--content-width));position:absolute;top:0;right:0;transform:translate(100%) translateY(-80%);text-transform:uppercase;text-shadow:0 0 .4rem #f79c09}.rateup.svelte-8vngkj .weapon-name.svelte-8vngkj{font-size:calc(2 / 100 * var(--content-width))}.zh-CN .rateup.svelte-8vngkj .weapon-name.svelte-8vngkj,.ja-JP .rateup.svelte-8vngkj .weapon-name.svelte-8vngkj{font-size:calc(3.5 / 100 * var(--content-width))}span.etc.svelte-8vngkj.svelte-8vngkj{font-size:calc(2 / 100 * var(--content-width));white-space:nowrap}.selected.svelte-8vngkj.svelte-8vngkj{position:absolute;bottom:0rem;right:0;max-width:80%;padding:.2rem 1rem;color:#fff;background-color:#0006;font-size:1rem;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.selected.fill.svelte-8vngkj.svelte-8vngkj{background-color:#62c5ff}.frame-content.svelte-1dimnlq.svelte-1dimnlq{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:120%}h1.svelte-1dimnlq span{display:block}h1.svelte-1dimnlq span.old{color:#c9a07b}h1.svelte-1dimnlq.svelte-1dimnlq,.frame-content.svelte-1dimnlq>div.svelte-1dimnlq{text-align:left;position:absolute}h1.svelte-1dimnlq.svelte-1dimnlq{bottom:73.5%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-1dimnlq.svelte-1dimnlq,.ja-JP h1.svelte-1dimnlq.svelte-1dimnlq{font-size:calc(7 / 100 * var(--content-width))}.info.svelte-1dimnlq.svelte-1dimnlq{left:0;top:36%;width:40%;height:45%;display:block;padding-left:4%}.top.svelte-1dimnlq.svelte-1dimnlq{color:#fff;padding:.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%,-15%)}.old.svelte-1dimnlq .top.svelte-1dimnlq{background-color:#c9a07b}.set.svelte-1dimnlq.svelte-1dimnlq{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-1dimnlq.svelte-1dimnlq{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(.7 / 100 * var(--content-width)) 0;background-color:#656bcae6}.old.svelte-1dimnlq .desc.svelte-1dimnlq{background-color:#308f94e6}.desc.svelte-1dimnlq .text.svelte-1dimnlq{width:calc(32.5 / 100 * var(--content-width));padding:calc(.3 / 100 * var(--content-width))}.icon.svelte-1dimnlq.svelte-1dimnlq{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.group-content.svelte-1dimnlq.svelte-1dimnlq{position:relative}.item-name.svelte-1dimnlq.svelte-1dimnlq{color:#fff;-webkit-text-stroke:.05rem #565654;text-shadow:0 0 .15rem #d2c69c;filter:drop-shadow(0 .3rem .5rem #000)}.char-title.svelte-1dimnlq.svelte-1dimnlq{color:#cfbc99;background-color:#39425d;margin-top:calc(2.8 / 100 * var(--content-width));padding:1% 7%;white-space:nowrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.qiqi.svelte-1dimnlq.svelte-1dimnlq{left:36.5%;top:78%}.mona.svelte-1dimnlq.svelte-1dimnlq{left:46%;top:21%}.keqing.svelte-1dimnlq.svelte-1dimnlq{left:61%;top:55%}.jean.svelte-1dimnlq.svelte-1dimnlq{left:44%;top:72.5%}.diluc.svelte-1dimnlq.svelte-1dimnlq{left:78%;top:10%}.keqing.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(4.5 / 100 * var(--content-width));transform:translateY(-80%)}.qiqi.svelte-1dimnlq .item-name.svelte-1dimnlq,.mona.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(3.3 / 100 * var(--content-width))}.jean.svelte-1dimnlq .item-name.svelte-1dimnlq,.diluc.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(4 / 100 * var(--content-width));margin-bottom:calc(4 / 100 * var(--content-width))}.skyward.svelte-1dimnlq.svelte-1dimnlq{left:75.1%;bottom:4.5%;width:24%;line-height:170%}.skyward.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(3.5 / 100 * var(--content-width))}.vi-VN .skyward.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(3 / 100 * var(--content-width))}.item-name.svelte-1dimnlq span.svelte-1dimnlq{font-size:calc(2 / 100 * var(--content-width));white-space:nowrap}.all.svelte-1dimnlq.svelte-1dimnlq{color:#fff;background-color:#f7ab48;display:inline-block;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;font-size:calc(1.3 / 100 * var(--content-width));line-height:130%;padding:calc(.2 / 100 * var(--content-width)) calc(2 / 100 * var(--content-width));margin-top:calc(3.8 / 100 * var(--content-width));transform:translate(-5%)}.frame-content.svelte-10wsjyw.svelte-10wsjyw{width:100%;aspect-ratio:1080/533;position:absolute;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:130%;bottom:0;left:0;z-index:+10}.frame-content.onBannerEdit.svelte-10wsjyw.svelte-10wsjyw{pointer-events:none;opacity:.5}h1.svelte-10wsjyw span{display:block}h1.svelte-10wsjyw.svelte-10wsjyw,.frame-content.svelte-10wsjyw>div.svelte-10wsjyw{text-align:left;position:absolute}h1.svelte-10wsjyw.svelte-10wsjyw{bottom:67%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width));height:calc(.23 * var(--content-height));display:flex;align-items:center}.zh-CN h1.svelte-10wsjyw.svelte-10wsjyw{font-size:calc(7 / 100 * var(--content-width))}.ja-JP h1.svelte-10wsjyw.svelte-10wsjyw{max-width:45%;font-size:calc(6 / 100 * var(--content-width));line-height:100%}.editorMode.svelte-10wsjyw h1.svelte-10wsjyw{bottom:70%}.action.svelte-10wsjyw.svelte-10wsjyw{position:absolute;top:0;right:0;opacity:0;transition:all .25s;display:flex;flex-direction:column;align-items:flex-end}.action.svelte-10wsjyw button.svelte-10wsjyw{color:#fffc;padding:calc(1.7 / 100 * var(--content-width)) calc(2.5 / 100 * var(--content-width));display:flex;align-items:center;line-height:0;border-radius:2%;font-size:calc(1.7 / 100 * var(--content-width));transition:all .25s}button.edit.svelte-10wsjyw.svelte-10wsjyw{background-color:#00000080}button.edit.svelte-10wsjyw.svelte-10wsjyw:hover{background-color:#000c}button.delete.svelte-10wsjyw.svelte-10wsjyw{background-color:#ea252580}button.delete.svelte-10wsjyw.svelte-10wsjyw:hover{background-color:#ea2525}.action.svelte-10wsjyw i.svelte-10wsjyw{transform:translate(-50%)}.frame-content.svelte-10wsjyw:hover .action.svelte-10wsjyw{opacity:1}.action.svelte-10wsjyw button.svelte-10wsjyw:active{transform:scale(.9)}.top.svelte-10wsjyw.svelte-10wsjyw{color:#fff;padding:.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%,-15%)}.info.svelte-10wsjyw.svelte-10wsjyw{left:0;top:40%;width:40%;height:42%;display:block;padding-left:4%}.onBannerEdit.svelte-10wsjyw .info.svelte-10wsjyw{overflow:hidden}.editorMode.svelte-10wsjyw .info.svelte-10wsjyw{top:32.5%}.content.svelte-10wsjyw.svelte-10wsjyw{position:relative}.info.svelte-10wsjyw .content.svelte-10wsjyw:after{content:"";display:block;width:calc(.55 / 100 * var(--content-width));height:100%;background-color:#565654;position:absolute;left:calc(-3.045 / 100 * var(--content-width));top:0}.set.svelte-10wsjyw.svelte-10wsjyw{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-10wsjyw.svelte-10wsjyw{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(.7 / 100 * var(--content-width)) 0}.icon.svelte-10wsjyw.svelte-10wsjyw{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.desc.svelte-10wsjyw .text.svelte-10wsjyw{width:calc(32.5 / 100 * var(--content-width));padding:calc(.3 / 100 * var(--content-width))}.character.svelte-10wsjyw.svelte-10wsjyw{--text-width:calc(30 / 100 * var(--content-width));width:calc(30 / 100 * var(--content-width));left:50%;bottom:8%}.character.svelte-10wsjyw .char-name.svelte-10wsjyw{color:#fff;display:inline-block;-webkit-text-stroke:.02rem #565654;text-shadow:0 0 .15rem #d2c69c;line-height:100%;position:relative;font-size:calc(11 / 100 * var(--text-width));white-space:nowrap}.zh-CN .character.svelte-10wsjyw .char-name.svelte-10wsjyw{font-size:calc(17 / 100 * var(--text-width))}.ja-JP .character.svelte-10wsjyw .char-name.svelte-10wsjyw{font-size:calc(15 / 100 * var(--text-width))}.char-name.svelte-10wsjyw span.svelte-10wsjyw{filter:drop-shadow(0 .3rem .5rem #000)}.char-name.svelte-10wsjyw .up.svelte-10wsjyw{color:#fff664;-webkit-text-stroke:.05rem #e7a12e;font-size:calc(2 / 100 * var(--content-width));filter:drop-shadow(0 .3rem .5rem #fff);position:absolute;top:0;right:0;transform:translate(100%) translateY(-50%);text-transform:uppercase;text-shadow:0 0 .4rem #f79c09}.character.svelte-10wsjyw .char-title.svelte-10wsjyw{color:#cfbc99;background-color:#39425d;padding:1% 2%;white-space:nowrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.textbg.svelte-10wsjyw.svelte-10wsjyw{background-color:#0000008c;width:calc(100% + (.15 * var(--content-height)));transform:translate(calc(7.5 / 100 * var(--content-height) * -1));height:calc(9 / 100 * var(--content-height));margin-top:calc(-3 / 100 * var(--content-height));filter:drop-shadow(0 0 calc(.02 * var(--content-height)) #000);position:relative;z-index:-2}.stars.svelte-10wsjyw.svelte-10wsjyw{position:absolute;left:calc(7.5 / 100 * var(--content-height));bottom:-10%}.gi-star.svelte-10wsjyw.svelte-10wsjyw{color:#f7cf33;display:inline-block;font-size:calc(3.5 / 100 * var(--content-height))}.icon-vision.svelte-10wsjyw.svelte-10wsjyw{width:calc(9 / 100 * var(--content-height));transform:translate(-45%,-40%);position:absolute;left:0;top:0}.icon-vision.svelte-10wsjyw svg{width:100%;height:100%}.watermark.svelte-10wsjyw.svelte-10wsjyw{right:2%;bottom:2%;font-style:italic;color:#fff;font-size:calc(3 / 100 * var(--content-height));font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.main-art.svelte-1oo1z35.svelte-1oo1z35{--zoomist-slider-bar-side:calc(.003 * var(--content-width));--zoomist-slider-bar-size:calc(.4 * var(--content-height));--zoomist-slider-button-size:calc(.015 * var(--content-width));--zoomist-slider-bar-color:#e9a540}img.svelte-1oo1z35.svelte-1oo1z35{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.main-art.svelte-1oo1z35.svelte-1oo1z35,.zoomist-wrapper.svelte-1oo1z35.svelte-1oo1z35,.zoomist-image.svelte-1oo1z35.svelte-1oo1z35{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;aspect-ratio:1080/533}.main-art.svelte-1oo1z35.svelte-1oo1z35{position:absolute;bottom:0;left:0}.zoomist-wrapper.svelte-1oo1z35.svelte-1oo1z35{cursor:move;background-color:unset;-webkit-mask-image:linear-gradient(to right,transparent 15%,black 40%,black 75%,transparent 85%);mask-image:linear-gradient(to right,transparent 15%,black 40%,black 75%,transparent 85%)}.zoom-slider.svelte-1oo1z35.svelte-1oo1z35{position:absolute;bottom:0;left:0;background-color:#000000bf;padding:2.5%;z-index:+20;display:none}.zoomer.svelte-1oo1z35.svelte-1oo1z35{position:absolute;z-index:+20;top:0;right:0;display:flex;flex-direction:column;display:none}.zoomer.svelte-1oo1z35 button.svelte-1oo1z35,.setpos.svelte-1oo1z35.svelte-1oo1z35{font-size:calc(.02 * var(--content-width));width:calc(.06 * var(--content-width));display:inline-flex;justify-content:center;align-items:center;aspect-ratio:1/1;background-color:#000000bf;color:#fff;opacity:.75;transition:all .25s}.setpos.svelte-1oo1z35.svelte-1oo1z35:hover,.zoomer.svelte-1oo1z35 button.svelte-1oo1z35:hover:not(.zoomer-disabled){opacity:1}.setpos.svelte-1oo1z35.svelte-1oo1z35:active,.zoomer.svelte-1oo1z35 button.svelte-1oo1z35:active:not(.zoomer-disabled){opacity:1;transform:scale(.9)}.zoomer.svelte-1oo1z35 button.zoomer-disabled{opacity:.6;color:#ffffff80}.setpos.svelte-1oo1z35.svelte-1oo1z35{position:absolute;right:0;bottom:0;z-index:+20;display:none}.onBannerEdit.svelte-1oo1z35 .zoomer.svelte-1oo1z35{display:flex}.onBannerEdit.svelte-1oo1z35 .zoom-slider.svelte-1oo1z35,.onBannerEdit.svelte-1oo1z35 .setpos.svelte-1oo1z35{display:unset}picture.svelte-1f4lu7l,img.svelte-1f4lu7l{width:100%;display:block}.art-bg.svelte-1f4lu7l{position:absolute;bottom:0;left:0}.image-error.svelte-1f4lu7l{background-image:linear-gradient(to top,#eee8e3 50%,#f7f5f4)}.editor.svelte-cbzzf0.svelte-cbzzf0{background-image:linear-gradient(to top,#eee8e3 50%,#f7f5f4);display:flex;flex-direction:column;min-height:100%;width:100%;font-size:80%;position:relative}.editor.fullscreenEditor.svelte-cbzzf0.svelte-cbzzf0{width:75%;height:85%;min-height:unset}.header.svelte-cbzzf0.svelte-cbzzf0{background-color:#14120fd9;color:#fff;padding:1rem}.fullscreenEditor.svelte-cbzzf0 .header.svelte-cbzzf0{padding:.75rem 1rem}.standard.svelte-cbzzf0 .header.svelte-cbzzf0{background-color:#5b61c4}.weapon-event.svelte-cbzzf0 .header.svelte-cbzzf0{background-color:#c86612}.body.svelte-cbzzf0.svelte-cbzzf0{padding:0 1% 1%;width:100%}.fullscreenEditor.svelte-cbzzf0 .body.svelte-cbzzf0{height:100%;overflow-y:auto}.footer.svelte-cbzzf0.svelte-cbzzf0{margin-top:auto;padding:0 1% 1%;text-align:right}.item.svelte-cbzzf0.svelte-cbzzf0{display:flex;align-items:center;width:100%;padding:.2% 0 .2% 1%;border-bottom:rgba(20,18,15,.5) 1px solid;transition:background .25s}.fullscreenEditor.svelte-cbzzf0 .item.svelte-cbzzf0{font-size:100%}.item.svelte-cbzzf0.svelte-cbzzf0:hover,.item.disabled.svelte-cbzzf0.svelte-cbzzf0{background-color:#14120f13}.item.disabled.svelte-cbzzf0.svelte-cbzzf0{opacity:.3;cursor:not-allowed}input.svelte-cbzzf0.svelte-cbzzf0:disabled{cursor:not-allowed}.col.svelte-cbzzf0.svelte-cbzzf0{position:relative;display:block}.col.svelte-cbzzf0.svelte-cbzzf0:nth-child(1){flex-basis:90%;width:90%}.col.svelte-cbzzf0.svelte-cbzzf0:nth-child(2){height:1.8rem;flex-basis:10%;min-width:5rem}.fullscreenEditor.svelte-cbzzf0 .col.svelte-cbzzf0:nth-child(2){height:1.5rem}.col.percent.svelte-cbzzf0.svelte-cbzzf0:nth-child(2):after{content:"%";background-color:#dbd7d0;height:100%;display:flex;justify-content:center;align-items:center;aspect-ratio:1/1;color:#787269;position:absolute;top:0;right:0;border-top-right-radius:3rem;border-bottom-right-radius:3rem}.select.svelte-cbzzf0 button.selected.svelte-cbzzf0,input.svelte-cbzzf0.svelte-cbzzf0{background-color:#fff;width:100%;padding:0 15%;margin-bottom:2%;font-size:80%;height:100%;display:block;border-radius:3rem;border:#c3b8a5 1px solid;outline:none;transition:all .2s}.percent.svelte-cbzzf0 input.svelte-cbzzf0{padding-right:35%}input.svelte-cbzzf0.svelte-cbzzf0:focus,.selection.svelte-cbzzf0.svelte-cbzzf0{box-shadow:0 0 .4rem #e39530b3}.selection.svelte-cbzzf0.svelte-cbzzf0{position:absolute;bottom:100%;left:0;width:100%;z-index:+10;background-color:#fff;border-radius:.25rem;border:#c3b8a5 1px solid}.select.svelte-cbzzf0 button.selected.svelte-cbzzf0{font-size:90%}.selection.svelte-cbzzf0 button.svelte-cbzzf0{font-size:100%;display:block;padding:10% 15%;width:100%;text-align:left;border-bottom:#c5bcac 1px solid}button.selected.svelte-cbzzf0.svelte-cbzzf0,.selection.svelte-cbzzf0 button.svelte-cbzzf0{transition:background .25s}button.selected.svelte-cbzzf0.svelte-cbzzf0:hover,.selection.svelte-cbzzf0 button.svelte-cbzzf0:hover{background-color:#e8e5e0}.card.svelte-xg8c82.svelte-xg8c82,.front.svelte-xg8c82.svelte-xg8c82,.back.svelte-xg8c82.svelte-xg8c82,.frame.svelte-xg8c82.svelte-xg8c82{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;aspect-ratio:27/14}.back.svelte-xg8c82.svelte-xg8c82{position:absolute;transform:rotateX(180deg);z-index:+999;transition:all .5s}.editor.fullscreenEditor.svelte-xg8c82 .back.svelte-xg8c82{position:fixed;transform:unset;aspect-ratio:unset;left:0;top:0;width:100%;height:100%;background-color:#00000040;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.front.svelte-xg8c82.svelte-xg8c82,.back.svelte-xg8c82.svelte-xg8c82{-webkit-backface-visibility:hidden;backface-visibility:hidden}.frame.skeleton-event.svelte-xg8c82.svelte-xg8c82,.card.svelte-xg8c82 .card-image.skeleton-event{aspect-ratio:1080/533}.frame.skeleton.svelte-xg8c82.svelte-xg8c82,.card.svelte-xg8c82 .card-image.skeleton{aspect-ratio:738.55/382.95}.card.svelte-xg8c82.svelte-xg8c82{position:relative}.card.svelte-xg8c82.svelte-xg8c82:not(.fullscreenEditor){transition:transform .5s;transform-style:preserve-3d}.card.editor.svelte-xg8c82.svelte-xg8c82:not(.fullscreenEditor){transform:rotateX(180deg)}.editor.svelte-xg8c82 .front.svelte-xg8c82{pointer-events:none}.frame.svelte-xg8c82.svelte-xg8c82,.card.svelte-xg8c82 .card-image{position:absolute;bottom:0;left:0}.character.svelte-xg8c82.svelte-xg8c82{position:absolute;height:100%;right:0;top:0;overflow:hidden}img.splash-art.svelte-xg8c82.svelte-xg8c82{height:150%}.info.svelte-xg8c82.svelte-xg8c82{position:absolute;left:5%;bottom:8%;display:flex;align-items:center;z-index:+10}.info.svelte-xg8c82 button.svelte-xg8c82{background-color:#eee8e3;color:#00000080;border-radius:20px;border:#e2d7b6 .1rem solid;font-size:calc(1.5 / 100 * var(--content-width));transition:background .25s,color .25s}.info.svelte-xg8c82 button.svelte-xg8c82:hover{background-color:#e0ddd4;color:#000}.info.svelte-xg8c82 button.gear.svelte-xg8c82{width:calc(3 / 100 * var(--content-width));font-size:calc(2 / 100 * var(--content-width));aspect-ratio:1/1;display:inline-flex;justify-content:center;align-items:center;line-height:0;margin-left:calc(1 / 100 * var(--content-width))}.info.svelte-xg8c82 button.detail.svelte-xg8c82{padding:calc(.5 / 100 * var(--content-width)) calc(2.5 / 100 * var(--content-width))}.info.svelte-1q3ualb.svelte-1q3ualb{position:absolute;z-index:+11;left:5%;bottom:5%;display:flex;align-items:center}.info.onBannerEdit.svelte-1q3ualb.svelte-1q3ualb{pointer-events:none;opacity:.5}.face.svelte-1q3ualb.svelte-1q3ualb{display:flex;aspect-ratio:1/1;background-color:#efeeee;border:#c5b894 calc(.005 * var(--content-height)) solid;border-radius:5%;width:calc(.18 * var(--content-height));position:relative}.inputFile.svelte-1q3ualb.svelte-1q3ualb{position:absolute;height:100%;width:100%;opacity:0;top:0;left:0;pointer-events:none}.overlay.svelte-1q3ualb.svelte-1q3ualb{width:100%;height:100%;background-color:#00000080;border:#e7e4de .1rem dashed;position:absolute;z-index:+2;top:0;left:0;display:flex;flex-direction:column;justify-content:center;text-align:center;align-items:center;opacity:0;transition:all .25s}.overlay.svelte-1q3ualb i.svelte-1q3ualb{color:#ffffff80;line-height:0;font-size:calc(2.5 / 100 * var(--content-width))}.overlay.svelte-1q3ualb span.svelte-1q3ualb{color:#fff;font-size:calc(1.3 / 100 * var(--content-width));margin-top:10%}.face.svelte-1q3ualb:hover .overlay.svelte-1q3ualb{opacity:1}.face.svelte-1q3ualb img.svelte-1q3ualb{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}img.placeholder.svelte-1q3ualb.svelte-1q3ualb{opacity:.5}.customize.svelte-1q3ualb.svelte-1q3ualb{transform:translate(calc(.02 * var(--content-height)))}.customize.svelte-1q3ualb button.svelte-1q3ualb{background-color:#efeeee;color:#00000080;border-radius:20px;border:#e2d7b6 .1rem solid;font-size:calc(1.5 / 100 * var(--content-width));transition:background .25s,color .25s;padding:calc(.5 / 100 * var(--content-width)) calc(2.5 / 100 * var(--content-width));transition:all .25s}.customize.svelte-1q3ualb button.svelte-1q3ualb:hover{background-color:#e0ddd4;color:#000}.customize.svelte-1q3ualb button.svelte-1q3ualb:active{transform:scale(.95)}.hoverable.svelte-nxdi6f.svelte-nxdi6f{position:absolute;top:0;right:0;width:100%;height:100%;z-index:+11;transition:all .25s;opacity:0;display:flex;justify-content:flex-end}.hoverable.onBannerEdit.svelte-nxdi6f.svelte-nxdi6f{pointer-events:none;opacity:0}.hoverable.svelte-nxdi6f.svelte-nxdi6f:hover:not(.onBannerEdit),.hoverable.onDrag.svelte-nxdi6f.svelte-nxdi6f,.hoverable.isMobile.svelte-nxdi6f.svelte-nxdi6f:not(.onBannerEdit),.wrapper.svelte-nxdi6f.svelte-nxdi6f:hover,.isMobile.svelte-nxdi6f .wrapper.svelte-nxdi6f{opacity:1}.hoverable.onDrag.svelte-nxdi6f.svelte-nxdi6f{z-index:20}.wrapper.svelte-nxdi6f.svelte-nxdi6f{width:50%;height:100%;position:relative;display:flex;align-items:flex-end;flex-direction:column;background-image:linear-gradient(45deg,transparent 50%,rgba(0,0,0,.5));opacity:0;transition:all .25s}.button.svelte-nxdi6f.svelte-nxdi6f{color:#fffc;background-color:#00000080;border:#e7e4de .1rem dashed;padding:2% 3%;display:flex;align-items:center;line-height:0;border-radius:2%;margin:1%;font-size:calc(1.5 / 100 * var(--content-width));transition:all .25s}.button.move.svelte-nxdi6f.svelte-nxdi6f{border-style:solid;padding:1%}.button.svelte-nxdi6f i.svelte-nxdi6f{font-size:calc(2.5 / 100 * var(--content-width));margin-right:calc(1 / 100 * var(--content-width))}.button.svelte-nxdi6f.svelte-nxdi6f:active{transform:scale(.95)}.inputFile.svelte-nxdi6f.svelte-nxdi6f{position:absolute;height:100%;width:100%;opacity:0;top:0;left:0;pointer-events:none}.onDrag.svelte-nxdi6f .inputFile.svelte-nxdi6f{pointer-events:unset}.drophere.svelte-nxdi6f.svelte-nxdi6f{pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0;background-color:#00000080;display:flex;justify-content:center;align-items:center}.vision-picker.svelte-1dh2206{position:absolute;top:0;right:0;transform:translateY(-100%);display:flex;width:100%;justify-content:flex-end;z-index:+10}button.svelte-1dh2206{font-size:150%;display:inline-flex;justify-content:center;align-items:center;line-height:0;padding:1%;border:1px solid #ccc;transition:all .25s}button.active.svelte-1dh2206{color:#fff;border-color:transparent}button.svelte-1dh2206:not(.active){background-color:#fff}button.svelte-1dh2206:hover:not(.active){background-color:#ecedda}button.svelte-1dh2206:active:not(.active){transform:scale(.9)}.content.svelte-brfwbj.svelte-brfwbj{border-radius:calc(3.5 / 100 * var(--item-width));width:100%;height:100%;display:flex;flex-direction:column;text-align:center;background-color:#fff;color:#3a4156;position:relative}.content.svelte-brfwbj.svelte-brfwbj:after{content:"";position:absolute;z-index:-1;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;border-radius:calc(5 / 100 * var(--item-width));opacity:0;transition:opacity .15s}.content.svelte-brfwbj.svelte-brfwbj:hover:after{opacity:1;border:.1rem solid #fff}.content.owned.svelte-brfwbj.svelte-brfwbj:hover:after{border:.3rem solid #eac343}.overlay.svelte-brfwbj.svelte-brfwbj{top:0;left:0;position:absolute;z-index:+1;width:100%;height:100%;background-color:#000;opacity:.5;border-radius:calc(3.5 / 100 * var(--item-width))}picture.svelte-brfwbj.svelte-brfwbj{width:100%;aspect-ratio:1/1;display:flex;justify-content:center;background-size:cover;position:relative;overflow:hidden;border-top-left-radius:calc(3.5 / 100 * var(--item-width));border-top-right-radius:calc(3.5 / 100 * var(--item-width));border-bottom-right-radius:calc(20 / 100 * var(--item-width))}picture.weapon.svelte-brfwbj.svelte-brfwbj{justify-content:flex-end;align-items:flex-start}picture.character.svelte-brfwbj img.svelte-brfwbj{height:100%;width:100%}picture.weapon.svelte-brfwbj img.svelte-brfwbj{width:100%}picture.svelte-brfwbj span.svelte-brfwbj{position:absolute;top:0}.element.svelte-brfwbj.svelte-brfwbj{left:0;font-size:2rem}.qty.svelte-brfwbj.svelte-brfwbj{right:0;background-color:#a36b5e;border-bottom-left-radius:.5rem;font-size:.9rem;padding:.1rem .3rem;color:#f0c882}.star.svelte-brfwbj.svelte-brfwbj{position:absolute;left:50%;top:calc(-8 / 100 * var(--item-width));transform:translate(-50%)}.gi-star.svelte-brfwbj.svelte-brfwbj{color:#eac343;font-size:calc(15 / 100 * var(--item-width))}.caption.svelte-brfwbj.svelte-brfwbj{display:flex;justify-content:center;align-items:center;width:100%;padding:calc(4 / 100 * var(--item-width));position:relative;font-size:calc(9 / 100 * var(--item-width))}.caption.svelte-brfwbj span.svelte-brfwbj{display:block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-transform:capitalize}img.claymore.svelte-brfwbj.svelte-brfwbj{transform:rotate(18deg) scale(1.15) translate(-1.5em)}img.bow.svelte-brfwbj.svelte-brfwbj{transform:rotate(10deg) scale(1.25) translate(-.5em)}img.polearm.svelte-brfwbj.svelte-brfwbj{transform:rotate(10deg) scale(1.5) translate(-12%,12%)}img.sword.svelte-brfwbj.svelte-brfwbj{transform:rotate(10deg) scale(1.2) translateY(-1em) translate(-.7em)}.picker.svelte-1eit2lp{width:100%;height:100%;position:absolute;top:0;left:0;background-color:#e2dbce;z-index:+1;overflow-y:auto;padding:1% 0 5%}.row.svelte-1eit2lp{display:flex;flex-wrap:wrap}.item.svelte-1eit2lp{margin:calc(.025 * var(--item-width));aspect-ratio:8.75 / 10;width:23.5%}.row.svelte-17c1xc4{display:flex;width:100%;align-items:center;margin-bottom:2%}img.svelte-17c1xc4{max-width:100%;height:auto}section.svelte-a9gf4v.svelte-a9gf4v{position:fixed;z-index:+20;top:0;left:0;width:var(--screen-width);height:var(--screen-height);background-color:#0000001a;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);display:flex;justify-content:flex-end}.wrapper.svelte-a9gf4v.svelte-a9gf4v{height:100%;width:500px;max-width:100%;padding:1%;background-color:#fbf6ee;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:75%;background-position:50% 60%;color:var(--text-color)}.mobile .wrapper.svelte-a9gf4v.svelte-a9gf4v{width:350px}.header.svelte-a9gf4v.svelte-a9gf4v{display:flex;width:100%;justify-content:space-between;align-items:center;margin-bottom:2%}h1.svelte-a9gf4v.svelte-a9gf4v{font-size:calc(.2 * var(--item-width))}.body.svelte-a9gf4v.svelte-a9gf4v{height:calc(100% - var(--header-height));padding-bottom:2%;position:relative}.body-wrapper.svelte-a9gf4v.svelte-a9gf4v{overflow-y:auto;width:100%;height:100%}.field-group.svelte-a9gf4v.svelte-a9gf4v{padding:1%}input.svelte-a9gf4v.svelte-a9gf4v{width:100%;padding:0 1.5rem;margin-bottom:2%;height:3rem;display:block;border-radius:3rem;border:#c3b8a5 2px solid;background-color:var(--tertiary-color);outline:none;transition:all .2s}input.svelte-a9gf4v.svelte-a9gf4v:focus{box-shadow:0 0 .4rem #e39530b3}input.svelte-a9gf4v.svelte-a9gf4v:disabled{background-color:transparent;opacity:.7}.row.svelte-a9gf4v.svelte-a9gf4v{display:flex;width:100%;align-items:center;margin-bottom:2%}.rateup-item.svelte-a9gf4v.svelte-a9gf4v{margin:1%;aspect-ratio:8.75 / 10;width:25%;max-width:135px;position:relative}.rateup-item.svelte-a9gf4v .item-wrapper.svelte-a9gf4v{width:100%;height:100%}.rateup-item.svelte-a9gf4v .remove.svelte-a9gf4v{position:absolute;top:0;right:0;transform:translate(25%,-25%);z-index:+1;background-color:#ff1c1c;color:#fff;line-height:0;padding:7%;border-radius:100%;opacity:.8;transition:all .25s}.rateup-item.svelte-a9gf4v .remove.svelte-a9gf4v:hover{opacity:1;background-color:#cb1717}.remove.svelte-a9gf4v.svelte-a9gf4v:active{transform:translate(25%,-25%) scale(.9)}.rateup-item.blank.svelte-a9gf4v.svelte-a9gf4v{border:2px dashed #c3b8a5;border-radius:5%;transition:all .25s}.rateup-item.blank.svelte-a9gf4v.svelte-a9gf4v:hover{border-color:#857d71}.add.svelte-a9gf4v.svelte-a9gf4v{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#c3b8a5;line-height:0;font-size:calc(.25 * var(--item-width));transition:all .25s}.add.svelte-a9gf4v.svelte-a9gf4v:hover{color:#857d71}.container.svelte-geqzoz.svelte-geqzoz{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.wishlist.svelte-geqzoz.svelte-geqzoz,.shadows.svelte-geqzoz.svelte-geqzoz{display:block;height:40vw;max-height:60vh;min-height:40vh;width:100%;padding:0 20px;white-space:nowrap;text-align:center}.mobile .wishlist.svelte-geqzoz.svelte-geqzoz,.mobile .shadows.svelte-geqzoz.svelte-geqzoz{min-height:70vh}.mobile .wishlist.svelte-geqzoz.svelte-geqzoz,.mobile .shadows.svelte-geqzoz.svelte-geqzoz{max-height:72.5vh}.item-box.svelte-geqzoz .item,.shadow.svelte-geqzoz.svelte-geqzoz{height:100%;aspect-ratio:7/30;border-radius:100%;position:relative}.item-box.svelte-geqzoz.svelte-geqzoz{height:100%;display:inline-block}.shadows.svelte-geqzoz.svelte-geqzoz{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:-1}.shadow.svelte-geqzoz.svelte-geqzoz{display:inline-block;height:100%;border-radius:100%}.shadow.shadow5.svelte-geqzoz.svelte-geqzoz{box-shadow:0 0 4rem #ffffff80,0 0 1rem #f9aa02,0 0 1.4rem #f9aa02,0 0 2rem #f97902;background-color:#f9aa02;filter:unset}.item-body.svelte-geqzoz.svelte-geqzoz{height:100%;-webkit-clip-path:url(#wishframe);clip-path:url(#wishframe);margin:0 .5px;display:flex;justify-content:center;align-items:center}.star5.svelte-geqzoz .item-body.svelte-geqzoz{background-image:linear-gradient(to bottom,rgb(249,170,2),rgb(255,255,255),rgb(249,170,2))}.new.svelte-geqzoz.svelte-geqzoz{position:absolute;z-index:10;display:block;top:3%;left:80%;transform:translate(-50%);padding:0 .4rem;border-radius:calc(2 / 100 * var(--card-height)) 0;color:#fffa66;background-color:#c3882a;border:1px solid #fffa66;font-size:calc(3 / 100 * var(--card-height))}.item-content.svelte-geqzoz.svelte-geqzoz{background-image:var(--bg);background-size:cover;background-position:center center;position:relative;cursor:move}.item-content.svelte-geqzoz.svelte-geqzoz:after{content:"";display:block;position:absolute;bottom:0;left:0;width:100%;height:50%;background-image:linear-gradient(to top,rgba(0,0,0,.4) 60%,rgba(0,0,0,0))}.zoomist-image.svelte-geqzoz.svelte-geqzoz{transform:translate(var(--translate-x, 0px),var(--translate-y, 0px)) scale(var(--scale, 0))}img.svelte-geqzoz.svelte-geqzoz{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.info.svelte-geqzoz.svelte-geqzoz{position:absolute;bottom:10%;left:0;width:100%;z-index:10;display:flex;flex-direction:column;align-items:center}.info.svelte-geqzoz .gi-star.svelte-geqzoz{color:#f7cf33;display:inline-block;font-size:calc(3.5 / 100 * var(--card-height))}.icon.svelte-geqzoz svg{width:80%;aspect-ratio:1/1}.slider.svelte-geqzoz.svelte-geqzoz{display:grid;background-color:#ffffffbf;padding:1rem 0;transition:background .25s}.slider.svelte-geqzoz.svelte-geqzoz:hover{background-color:#fff}.zoomSlider.svelte-geqzoz.svelte-geqzoz{padding:2%;display:flex;justify-self:center}.zoomer.svelte-geqzoz.svelte-geqzoz{position:absolute;z-index:+20;bottom:50%;right:2%;transform:translateY(50%);display:flex;flex-direction:column}.zoomer.svelte-geqzoz button.svelte-geqzoz{font-size:calc(.035 * var(--screen-height));width:calc(.075 * var(--screen-height));display:inline-flex;justify-content:center;align-items:center;aspect-ratio:1/1;background-color:#fff;color:#000;opacity:.75;transition:all .25s;line-height:0}.zoomer.svelte-geqzoz button.svelte-geqzoz:hover:not(.zoomer-disabled){opacity:1}.zoomer.svelte-geqzoz button.svelte-geqzoz:active:not(.zoomer-disabled){opacity:1;transform:scale(.9)}.zoomer.svelte-geqzoz button.zoomer-disabled{opacity:.6;color:#00000080}.confirm.svelte-geqzoz.svelte-geqzoz{position:absolute;z-index:+5;bottom:7.5%;right:5%}.mobile .confirm.svelte-geqzoz.svelte-geqzoz{transform:scale(.8)}.splash-art.svelte-iiacim.svelte-iiacim{--zoomist-slider-bar-side:calc(.003 * var(--screen-width));--zoomist-slider-bar-size:calc(.35 * var(--screen-height));--zoomist-slider-button-size:calc(.025 * var(--screen-height));--zoomist-slider-bar-color:#e9a540;--zoomist-slider-track-color:#999;--zoomist-slider-button-color:#fff}.close.svelte-iiacim.svelte-iiacim{position:fixed;top:30px;right:2%;z-index:10}button.svelte-iiacim.svelte-iiacim:active:not(.zoomer-disabled){transform:scale(.9)}.mobile .close.svelte-iiacim.svelte-iiacim{top:.3rem;right:6%}.overlay.svelte-iiacim.svelte-iiacim{position:absolute;top:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center;z-index:+10;font-size:calc(.1 * var(--screen-height));color:var(--tertiary-color);opacity:.5}.not-owned.svelte-iiacim.svelte-iiacim{max-width:var(--screen-height);transform:rotate(-30deg);line-height:.9}.notOwned.svelte-iiacim.svelte-iiacim{filter:brightness(40%)}.splash-art.svelte-iiacim.svelte-iiacim{background-image:var(--bg);background-size:cover;background-position:center;position:fixed;top:0;left:0;z-index:+15}.zoomist-container.svelte-iiacim.svelte-iiacim{aspect-ratio:1/1;opacity:1;transition:opacity .25s}.splash-art.svelte-iiacim.svelte-iiacim,.zoomist-wrapper.svelte-iiacim.svelte-iiacim,.zoomist-image.svelte-iiacim.svelte-iiacim{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.zoomist-wrapper.svelte-iiacim.svelte-iiacim{--scale:1.5;--translate-x:0px;--translate-y:0px;cursor:move;background-color:unset;position:relative}.zoomist-wrapper.weapon.svelte-iiacim.svelte-iiacim{--scale:1.1}.dragable.svelte-iiacim.svelte-iiacim{position:absolute;width:var(--screen-width);height:var(--screen-height);top:50%;left:50%;transform:translate(-50%,-50%)}.zoomist-wrapper.svelte-iiacim.svelte-iiacim:after{position:absolute;content:"Best Visible Area";text-align:right;font-size:100%;color:#fff;filter:drop-shadow(0 0 .1rem #000);top:50%;left:50%;transform:translate(-50%,-50%);width:calc(100% - 4px);height:calc(100% - 4px);border:2px dashed #fff;opacity:0;transition:opacity .25s}.splash-art.svelte-iiacim:not(.preview) .zoomist-wrapper.svelte-iiacim:hover:after{opacity:1}.zoomist-image.svelte-iiacim.svelte-iiacim{transform:translate(var(--translate-x, 0px),var(--translate-y, 0px)) scale(var(--scale, 0))}img.svelte-iiacim.svelte-iiacim{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.weapon.svelte-iiacim img.svelte-iiacim{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.weapon.svelte-iiacim img.svelte-iiacim:not(.weaponbg){filter:drop-shadow(.6rem .6rem .05rem rgba(0,0,0,.9))}.weapon.svelte-iiacim img.weaponbg.svelte-iiacim{height:80%}.catalyst.svelte-iiacim img.svelte-iiacim:not(.weaponbg){height:40%}.polearm.svelte-iiacim img.svelte-iiacim:not(.weaponbg){transform:translate(-53%,-35%) scale(1.2)!important}.slider.svelte-iiacim.svelte-iiacim{display:grid;background-color:#ffffffbf;padding:1rem 0;transition:background .25s,opacity .25s}.slider.svelte-iiacim.svelte-iiacim:hover{background-color:#fff}.zoomSlider.svelte-iiacim.svelte-iiacim{padding:2%;display:flex;justify-self:center}.zoomer.svelte-iiacim.svelte-iiacim{position:absolute;z-index:+20;bottom:50%;right:2%;transform:translateY(50%);display:flex;flex-direction:column}.zoomer.svelte-iiacim button.svelte-iiacim{font-size:calc(.035 * var(--screen-height));width:calc(.075 * var(--screen-height));display:inline-flex;justify-content:center;align-items:center;aspect-ratio:1/1;background-color:#fff;color:#000;opacity:.75;transition:all .25s;line-height:0}.zoomer.svelte-iiacim button.svelte-iiacim:hover:not(.zoomer-disabled){opacity:1}.zoomer.svelte-iiacim button.svelte-iiacim:active:not(.zoomer-disabled){opacity:1;transform:scale(.9)}.zoomer.svelte-iiacim button.zoomer-disabled{opacity:.6;color:#00000080}.confirm.svelte-iiacim.svelte-iiacim{position:absolute;z-index:+5;bottom:7.5%;right:5%}.mobile .confirm.svelte-iiacim.svelte-iiacim{transform:scale(.8)}.uid.svelte-iiacim.svelte-iiacim{left:unset;right:5%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;font-size:x-large;font-family:var(--gi-font)}.hideInfo.svelte-iiacim .slider.svelte-iiacim,.hideInfo.svelte-iiacim .art-zoomin.svelte-iiacim,.hideInfo.svelte-iiacim .art-zoomout.svelte-iiacim{opacity:0}.card.svelte-1kja6fh{position:relative}.card.svelte-1kja6fh{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;aspect-ratio:1080/533}img.svelte-1kja6fh{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.loading.svelte-1kja6fh{position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);z-index:+20;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background-color:#0003}.loader.svelte-1kja6fh{--text-color:rgba(248, 184, 22, .7);aspect-ratio:1/1;display:flex;justify-content:center;align-items:center}.confirmation.svelte-1vkbej6.svelte-1vkbej6{padding:5%;height:100%;align-items:center;justify-content:center;display:flex}.confirmation.svelte-1vkbej6 small.svelte-1vkbej6{display:block}.selectedToDelete.svelte-1vkbej6.svelte-1vkbej6{width:45%;margin-top:3%}.row.loader.svelte-1vkbej6.svelte-1vkbej6{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%;width:100%;position:absolute;top:0;left:0}.modal-content.svelte-1fztub0.svelte-1fztub0{display:flex;justify-content:center;align-items:center;width:100%;height:100%;font-family:var(--genshin-font);padding:3%}.banner-container.svelte-1fztub0.svelte-1fztub0{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.mobile .banner-container.svelte-1fztub0.svelte-1fztub0{align-items:flex-end;padding:0}.banner-item.svelte-1fztub0.svelte-1fztub0{max-width:900px;width:80%;max-height:75vh;aspect-ratio:27/14;perspective:1000px}.editMode.svelte-1fztub0 .banner-item.svelte-1fztub0{aspect-ratio:1080/533;perspective:unset;position:relative}.fullscreen.banner-item.svelte-1fztub0.svelte-1fztub0{perspective:unset}.banner-item.editorOpen.svelte-1fztub0.svelte-1fztub0{z-index:+10}.navigate.svelte-1fztub0.svelte-1fztub0{position:absolute;top:50%;left:50%;width:85%;transform:translate(-50%,-50%);display:flex;justify-content:space-between;transition:all .2s;pointer-events:none}@media screen and (max-width: 1200px){.navigate.svelte-1fztub0.svelte-1fztub0{width:90%}}@media screen and (max-width: 800px){.navigate.svelte-1fztub0.svelte-1fztub0{width:95%}}.navigate.svelte-1fztub0 button.svelte-1fztub0{color:#ece5d8;font-size:2rem;line-height:0;pointer-events:initial}.mobile .navigate.svelte-1fztub0.svelte-1fztub0{display:none}svg.svelte-1n1ouqa.svelte-1n1ouqa{width:100%}.fil0.svelte-1n1ouqa.svelte-1n1ouqa{fill:#a0907d}.fil1.svelte-1n1ouqa.svelte-1n1ouqa{fill:#d7d0c7}.bg.svelte-1n1ouqa .fil1.svelte-1n1ouqa{fill:#e1ddd4}.filled.svelte-1n1ouqa.svelte-1n1ouqa{fill:#5b9ee2}.full.svelte-1n1ouqa .fil1.svelte-1n1ouqa{fill:#d5d9df}.modal.svelte-mpifkm.svelte-mpifkm{position:fixed;top:0;left:0;width:100vw;background-color:#000000b3;z-index:10;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.modal-content.svelte-mpifkm.svelte-mpifkm{width:1000px;max-width:90%;min-width:250px;text-align:center;position:relative;border-radius:1.2rem;overflow:hidden}.mobile .modal-content.svelte-mpifkm.svelte-mpifkm{max-width:140vh;border-radius:.8rem}.modal-content.svelte-mpifkm img.svelte-mpifkm{position:relative;width:100%}.close-modal.svelte-mpifkm.svelte-mpifkm{position:absolute;top:1.5rem;right:-.2rem;z-index:+10}.gi-close.svelte-mpifkm.svelte-mpifkm{font-size:1.3rem;background-color:transparent;color:#383b40}.container.svelte-mpifkm.svelte-mpifkm{width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.container.svelte-mpifkm h1.svelte-mpifkm{text-align:left;padding-left:10%;padding-top:5%;font-size:calc(3 / 100 * var(--modal-width));color:#7c613f}.container.svelte-mpifkm>div.svelte-mpifkm{flex-basis:50%;flex-grow:1;padding:3% 7%}.description.svelte-mpifkm.svelte-mpifkm{padding-right:5.5%!important;font-size:calc(2 / 100 * var(--modal-width))}.container.svelte-mpifkm .content.svelte-mpifkm{width:100%;height:82%;overflow:hidden;margin:8% 0 0;text-align:left;color:#aa8e77}.weapon-selector.svelte-mpifkm.svelte-mpifkm{display:flex;flex-direction:column;height:100%;color:#383b40}.weapon-selector.svelte-mpifkm.svelte-mpifkm,.weapon-selector.svelte-mpifkm>div.svelte-mpifkm{position:relative;padding:5%}.weapon-selector.svelte-mpifkm .bg.svelte-mpifkm{position:absolute;width:90%;top:50%;left:50%;transform:translate(-50%,-50%)}.counter.weapon-selector.svelte-mpifkm .bg.svelte-mpifkm{width:110%;top:48%}.top.svelte-mpifkm.svelte-mpifkm{font-size:calc(3 / 100 * var(--modal-width));white-space:nowrap}.weapon-item.svelte-mpifkm.svelte-mpifkm{display:flex;flex-direction:column;height:100%;border:solid #dcd8cd;border-width:3px 0;font-size:x-large;padding-left:0!important;padding-right:0!important}.counter.svelte-mpifkm .weapon-item.svelte-mpifkm{border:0}.weapon-list.svelte-mpifkm.svelte-mpifkm{height:100%;width:100%;padding:0 10%;background-color:#dcd8cd;display:flex;justify-content:center;align-items:center;overflow:hidden;text-align:center;color:#3a4156;line-height:1.2rem}.counter.svelte-mpifkm .weapon-list.svelte-mpifkm{background-color:transparent}.weapon-content.svelte-mpifkm.svelte-mpifkm{display:inline-block;padding:5%;width:50%}.weapon-content.svelte-mpifkm button.svelte-mpifkm{font-size:small;aspect-ratio:8.75 / 10;position:relative;vertical-align:middle;width:100%}.mobile .weapon-content.svelte-mpifkm button.svelte-mpifkm{font-size:xx-small}.weapon-content.active.svelte-mpifkm button.svelte-mpifkm:after,.weapon-content.active.svelte-mpifkm button.svelte-mpifkm:before{position:absolute;right:0;top:0}.weapon-content.active.svelte-mpifkm button.svelte-mpifkm:after{display:block;content:"";width:100%;height:calc(100% - .4rem);border:solid #bed634;border-width:.2rem 0;border-radius:.3rem}.weapon-content.active.svelte-mpifkm button.svelte-mpifkm:before{content:"\2714";font-size:1.2rem;color:#759a28;display:flex;justify-content:center;align-items:center;background-color:#bed634;width:20%;height:20%;z-index:+1;border-top-right-radius:.5em}.text.svelte-mpifkm.svelte-mpifkm{margin-top:auto;height:40%;display:flex;justify-content:center;align-items:center}span.svelte-mpifkm.svelte-mpifkm,p.svelte-mpifkm span,.text.svelte-mpifkm span{color:#f0b164}.counter.svelte-mpifkm .text.svelte-mpifkm{height:unset;margin-bottom:-1rem}button.svelte-mpifkm i.svelte-mpifkm{width:2rem;height:2rem;background-color:#353533;border-radius:100%;display:inline-flex;justify-content:center;align-items:center;font-size:1rem;margin-right:2rem}@media screen and (max-width: 800px) and (min-width: 500px){.weapon-item.svelte-mpifkm.svelte-mpifkm{font-size:medium}}.mobile .text.svelte-mpifkm.svelte-mpifkm{height:30%}.mobile .counter.svelte-mpifkm .text.svelte-mpifkm{height:unset;margin-bottom:-1rem}.mobile .weapon-item.svelte-mpifkm.svelte-mpifkm{font-size:small}.meteor-wrapper.svelte-n0dhm5{width:100vw;height:var(--screen-height);position:absolute;top:0;left:0}.meteor-wrapper.show.svelte-n0dhm5{display:block;background-color:#fff}.video.svelte-n0dhm5{position:relative;width:100vw;height:100%}.skip.svelte-n0dhm5{position:absolute;top:30px;right:2%;color:#fff;font-size:1.2rem;z-index:10}.gi-caret-up.svelte-n0dhm5{display:inline-block;transform:rotate(90deg) translate(-.1rem);vertical-align:middle;margin-left:-.5em}.mobile .skip.svelte-n0dhm5{font-size:.8rem;top:.3rem;right:6%}video.svelte-n0dhm5{display:none;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:105%;height:105%;-o-object-fit:cover;object-fit:cover}section.svelte-lltch{width:100%;height:100%;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;overflow:hidden;background-repeat:no-repeat;background-position:center;background-size:cover;background-position:20%}.overlay.svelte-lltch{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:block;width:100%;height:100%;background-color:#00000014;box-shadow:0 0 50vh #0006 inset}.wish-container.svelte-lltch{position:fixed;width:100%;height:100%;z-index:15;top:0;left:0;pointer-events:none}.wish-container.show.svelte-lltch{pointer-events:unset}.top.svelte-lltch,.banner.svelte-lltch,.button.svelte-lltch,.item.svelte-lltch{display:block;width:100%}.top.svelte-lltch{min-height:70px}.banner.svelte-lltch,.item.svelte-lltch{height:100%}.item.svelte-lltch{position:relative}.banner.svelte-lltch{display:flex;justify-content:center;flex-direction:column}.button.svelte-lltch{height:120px}.mobile section.svelte-lltch{flex-direction:row}.mobile .top.svelte-lltch{height:100%;width:-webkit-min-content;width:-moz-min-content;width:min-content}.mobile .banner.svelte-lltch{width:120%;margin-left:-20px}.mobile .button.svelte-lltch{height:50px;margin-bottom:.2rem}video.svelte-1r57nh7{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:20%;object-position:20%}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-8ecfd270.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-8ecfd270.css
deleted file mode 100644
index 4a77ed6b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-8ecfd270.css
+++ /dev/null
@@ -1 +0,0 @@
-.row.svelte-12an48w.svelte-12an48w{padding:.2rem;border-bottom:1px solid rgba(0,0,0,.5);border-right:1px solid rgba(0,0,0,.5);border-left:1px solid rgba(0,0,0,.5);display:flex;align-items:center}.total.svelte-12an48w.svelte-12an48w{padding:1rem;border:none}.header.svelte-12an48w.svelte-12an48w{background-color:#000000b3;color:#fff}.row.svelte-12an48w.svelte-12an48w:nth-child(odd){background-color:#ffffff80}.col.svelte-12an48w.svelte-12an48w{padding:1%}.col.img.svelte-12an48w.svelte-12an48w{width:50%}.img.svelte-12an48w.svelte-12an48w{display:flex;align-items:center}.img.svelte-12an48w img.svelte-12an48w{max-height:150px;max-width:100%;-o-object-fit:contain;object-fit:contain}.header.svelte-12an48w .col.svelte-12an48w:not(.img),.col.action.svelte-12an48w.svelte-12an48w{text-align:center}.col.info.svelte-12an48w.svelte-12an48w{display:block;width:30%;padding:2%}.info.svelte-12an48w a.svelte-12an48w{display:block}.info.svelte-12an48w span.time.svelte-12an48w{display:block;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-style:italic}.col.action.svelte-12an48w.svelte-12an48w{width:20%;padding:1rem}@media screen and (max-width: 500px){.row.svelte-12an48w.svelte-12an48w{flex-wrap:wrap;padding:.5rem .1rem}.row.svelte-12an48w.svelte-12an48w:nth-child(3){border-top:1px solid rgba(0,0,0,.5)}.header.svelte-12an48w.svelte-12an48w{display:none}.col.img.svelte-12an48w.svelte-12an48w,.col.info.svelte-12an48w.svelte-12an48w,.col.action.svelte-12an48w.svelte-12an48w{width:100%}}section.svelte-33al2o{width:100%;height:100%;overflow-y:auto;position:relative;padding:1rem}.container.svelte-33al2o{padding:1rem;background-color:#fffc;position:relative;border-radius:1rem;z-index:+10}form.svelte-33al2o{width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;padding:2rem;text-align:center}input.svelte-33al2o{width:300px;max-width:90%;height:2.3rem;border-radius:4rem;border:0;outline:0;padding:0 1rem}.col.button.svelte-33al2o{padding-top:1rem}h1.svelte-33al2o{padding:1rem}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-c955f7fd.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-c955f7fd.css
deleted file mode 100644
index 25d68742..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_page-c955f7fd.css
+++ /dev/null
@@ -1 +0,0 @@
-section.svelte-y6ol5v.svelte-y6ol5v{width:100%;height:100%;overflow-y:auto;position:relative;background-color:#ebebeb}header.svelte-y6ol5v.svelte-y6ol5v{display:flex;padding:1rem 2%;justify-content:space-between;background-color:#14120f;width:100%;position:-webkit-sticky;position:sticky;top:0;left:0;z-index:+10;color:#fff;font-size:1rem}footer.svelte-y6ol5v.svelte-y6ol5v{text-align:right;margin:2rem 0}footer.svelte-y6ol5v a.svelte-y6ol5v:hover{text-decoration:none}.select-device.svelte-y6ol5v.svelte-y6ol5v,footer.svelte-y6ol5v.svelte-y6ol5v{padding:1rem 10%}.select-device.svelte-y6ol5v button.svelte-y6ol5v,footer.svelte-y6ol5v a.svelte-y6ol5v{color:var(--text-color);margin:0 .25rem;opacity:.85;padding:.5rem 1.2rem;font-size:1rem;border-radius:12rem;border:1px solid var(--text-color);transition:all .2s;display:inline-flex;align-items:center}.select-device.svelte-y6ol5v button.active.svelte-y6ol5v,.select-device.svelte-y6ol5v button.svelte-y6ol5v:hover,footer.svelte-y6ol5v a.svelte-y6ol5v{background-color:var(--text-color);color:#fff}.select-device.svelte-y6ol5v button.active.svelte-y6ol5v,footer.svelte-y6ol5v a.svelte-y6ol5v:hover{opacity:1}i.svelte-y6ol5v.svelte-y6ol5v{font-size:100%;margin-right:.5rem}article.svelte-y6ol5v.svelte-y6ol5v{color:var(--text-color);padding:0 10%;font-size:120%}section.svelte-y6ol5v h1{font-size:1.7rem;text-align:left;background-color:#dadada;padding:.5rem 5%;position:relative;font-family:var(--genshin-font)}.mobile section.svelte-y6ol5v h1{font-size:1.3rem}section.svelte-y6ol5v h1:before{content:"";display:block;position:absolute;width:.8rem;height:80%;left:0;top:50%;transform:translateY(-50%);background-color:var(--text-color)}.android.svelte-y6ol5v h1 span{color:#64ad15}.windows.svelte-y6ol5v h1 span{color:#3f8ed1}section.svelte-y6ol5v h2{padding:1.5rem 0 .5rem}section.svelte-y6ol5v ul,section.svelte-y6ol5v ol{font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;padding-left:1.5rem}section.svelte-y6ol5v p{padding:.4rem 0;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}section.svelte-y6ol5v img,section.svelte-y6ol5v video{max-width:100%;max-height:75vh}@media screen and (max-width: 780px){main:not(.mobile) article.svelte-y6ol5v.svelte-y6ol5v{padding:3.5rem 5% 0}main:not(.mobile) article.svelte-y6ol5v.svelte-y6ol5v{padding:0 5%!important}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_pagination-660172f1.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_pagination-660172f1.css
deleted file mode 100644
index bac3ad77..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/_pagination-660172f1.css
+++ /dev/null
@@ -1 +0,0 @@
-.pagination.svelte-1wguwca.svelte-1wguwca{display:flex;width:100%;margin:10px;text-align:center;justify-content:center}.pagination.svelte-1wguwca button.svelte-1wguwca,.pagination.svelte-1wguwca span.svelte-1wguwca{display:inline-flex;align-items:center;justify-content:center;width:2.5rem;aspect-ratio:1/1;border-radius:2px;margin:5px}.pagination.svelte-1wguwca button.svelte-1wguwca{background-color:#c3a280;color:#d7cbbd}.pagination.svelte-1wguwca span.svelte-1wguwca{background-color:#918981;color:#fff}.pagination.v2.svelte-1wguwca.svelte-1wguwca{margin:1% 0 0;font-size:calc(.02 * var(--content-width));color:#8e8e8e}.pagination.v2.svelte-1wguwca>button.svelte-1wguwca,.pagination.v2.svelte-1wguwca span.svelte-1wguwca{width:calc(.028 * var(--content-width));margin:0 2%;background-color:transparent}.pagination.v2.svelte-1wguwca span.svelte-1wguwca{color:var(--text-color)}.pagination.v2.svelte-1wguwca button.svelte-1wguwca{border-radius:100%;border:2px solid #d7cbbd}span.arrow.svelte-1wguwca.svelte-1wguwca{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAASCAMAAAAJ4/xdAAAAY1BMVEVHcExZUlJZUVFVTU1YUVFYUVFZUVFZUlJZUlJYTU1ZUFBZUVFYUVFYT09ZRUVXTk5YUVFZUlJZQ0NYUVFZUVFZUlJZUVFZUlJYTk5ZUVFZUlJYT09ZUVFYUlJOTk5OTk5ZUlKPb9bhAAAAIHRSTlMAz+kiZfbk8foSSKpVNAgqsokLxqTbcsAbhNc6j5YGDUB/3r0AAACpSURBVBgZfcEFEoMwAATAC0Rxrcv9/5UFmjBAobtYKytj0hJ/JIYDk+CQtJxYiQM1Z1fsKVIudAV+uJYrZ4eNuOfGLcbKPaKnFL0ox0Km6EX5PaKnMsxODG4xEPf07Anek8HZYeBaBg+MmopB98KkSBlUDeAEgytmNYPWIaVnJRakpddB8cskWEkMvww0J7rERq456SE5Ehf8uAiOJJAJq+sGO94PbUWGD0o8IC9WAY0jAAAAAElFTkSuQmCC);background-size:contain;background-repeat:no-repeat;width:calc(.01 * var(--content-width));aspect-ratio:2.5/1;transform-origin:40%}.arrow.left.svelte-1wguwca.svelte-1wguwca{transform:rotate(-90deg) translateY(10%)}.arrow.right.svelte-1wguwca.svelte-1wguwca{transform:rotate(90deg) translateY(-40%)}button.svelte-1wguwca:disabled span.svelte-1wguwca{opacity:.3}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-695f3ba9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-695f3ba9.webp
deleted file mode 100644
index c56c6322..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-695f3ba9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-c317fc47.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-c317fc47.webp
deleted file mode 100644
index 4ef04d3b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-c317fc47.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-c3227780.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-c3227780.webp
deleted file mode 100644
index deb6358f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-sobriquet-under-shade-c3227780.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-thousand-floating-dreams-4151553c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-thousand-floating-dreams-4151553c.webp
deleted file mode 100644
index b68bb344..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/a-thousand-floating-dreams-4151553c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/acquaint-fate-eeae8a91.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/acquaint-fate-eeae8a91.webp
deleted file mode 100644
index cb108431..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/acquaint-fate-eeae8a91.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/admin-5c96b75a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/admin-5c96b75a.webp
deleted file mode 100644
index 88ff53ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/admin-5c96b75a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-1-12cf464c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-1-12cf464c.webp
deleted file mode 100644
index 29ebd9ac..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-1-12cf464c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-1-c7582503.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-1-c7582503.webp
deleted file mode 100644
index 637e4647..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-1-c7582503.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-2-2170370d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-2-2170370d.webp
deleted file mode 100644
index 9fed9ac0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-2-2170370d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-2-2a70c24a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-2-2a70c24a.webp
deleted file mode 100644
index c24882db..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-2-2a70c24a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-3-7e83f5cd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-3-7e83f5cd.webp
deleted file mode 100644
index ded56db3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-3-7e83f5cd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-3-f6ec9e0a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-3-f6ec9e0a.webp
deleted file mode 100644
index 670d2b72..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-3-f6ec9e0a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-4-431ae196.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-4-431ae196.webp
deleted file mode 100644
index 5a5cf001..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-4-431ae196.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-4-f0fdb034.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-4-f0fdb034.webp
deleted file mode 100644
index f0e2d7d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/adrift-in-the-harbor-4-f0fdb034.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/akuoumaru-7428a9bd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/akuoumaru-7428a9bd.webp
deleted file mode 100644
index 6b97dce3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/akuoumaru-7428a9bd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-60d5a68f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-60d5a68f.webp
deleted file mode 100644
index a4855bcc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-60d5a68f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-d06f2edc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-d06f2edc.webp
deleted file mode 100644
index 1d9c0487..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-d06f2edc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-eeb4ddfd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-eeb4ddfd.webp
deleted file mode 100644
index 72a00848..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/albedo-eeb4ddfd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-2ad85c61.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-2ad85c61.webp
deleted file mode 100644
index 93fba8a9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-2ad85c61.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-3309c925.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-3309c925.webp
deleted file mode 100644
index 8e9dfcce..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-3309c925.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-60ae51e6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-60ae51e6.webp
deleted file mode 100644
index 11a3d82d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alhaitham-60ae51e6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alipay-d3f2fb36.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alipay-d3f2fb36.png
deleted file mode 100644
index 45820b92..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alipay-d3f2fb36.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alley-hunter-2ee44b03.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alley-hunter-2ee44b03.webp
deleted file mode 100644
index ceaf6aa2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/alley-hunter-2ee44b03.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amber-8d6b1122.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amber-8d6b1122.webp
deleted file mode 100644
index cd357258..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amber-8d6b1122.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amber-d0b1400c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amber-d0b1400c.webp
deleted file mode 100644
index 7944ca87..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amber-d0b1400c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amos-bow-dac33d6a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amos-bow-dac33d6a.webp
deleted file mode 100644
index 75d91644..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/amos-bow-dac33d6a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/anemo-7866d23d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/anemo-7866d23d.webp
deleted file mode 100644
index e11b0bfc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/anemo-7866d23d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/aqua-simulacra-51a222f5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/aqua-simulacra-51a222f5.webp
deleted file mode 100644
index 1ee9e513..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/aqua-simulacra-51a222f5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/aquila-favonia-89b0d8e6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/aquila-favonia-89b0d8e6.webp
deleted file mode 100644
index f5cd385e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/aquila-favonia-89b0d8e6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-9db1c47b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-9db1c47b.webp
deleted file mode 100644
index d265e2b7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-9db1c47b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-f054a7f6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-f054a7f6.webp
deleted file mode 100644
index a56f9956..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-f054a7f6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-fc55a6f7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-fc55a6f7.webp
deleted file mode 100644
index 06b2a0a2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/arataki-itto-fc55a6f7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/auric-blaze-1-b3fdef2c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/auric-blaze-1-b3fdef2c.webp
deleted file mode 100644
index 8b271d71..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/auric-blaze-1-b3fdef2c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/auric-blaze-1-cd345231.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/auric-blaze-1-cd345231.webp
deleted file mode 100644
index 2c14d222..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/auric-blaze-1-cd345231.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-1-4ac068c5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-1-4ac068c5.webp
deleted file mode 100644
index ed19e46c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-1-4ac068c5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-1-a2ef904b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-1-a2ef904b.webp
deleted file mode 100644
index c6375f47..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-1-a2ef904b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-2-952f05c2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-2-952f05c2.webp
deleted file mode 100644
index d91e6777..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-2-952f05c2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-2-f3e750ed.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-2-f3e750ed.webp
deleted file mode 100644
index e3aa885e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-2-f3e750ed.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-3-8682d540.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-3-8682d540.webp
deleted file mode 100644
index 04bfb9bd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-3-8682d540.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-3-ddb4c949.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-3-ddb4c949.webp
deleted file mode 100644
index d40d7bba..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/azure-excursion-3-ddb4c949.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-09c1d81d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-09c1d81d.webp
deleted file mode 100644
index 461a46b2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-09c1d81d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-315fb021.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-315fb021.webp
deleted file mode 100644
index 0ecf3f23..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-315fb021.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-ed20303f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-ed20303f.webp
deleted file mode 100644
index 61ff29e7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/baizhu-ed20303f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-1-1b721844.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-1-1b721844.webp
deleted file mode 100644
index 69ab7644..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-1-1b721844.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-1-81ade8c4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-1-81ade8c4.webp
deleted file mode 100644
index 6341066e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-1-81ade8c4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-2-040f9018.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-2-040f9018.webp
deleted file mode 100644
index 00101a2d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-2-040f9018.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-2-0ee67e16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-2-0ee67e16.webp
deleted file mode 100644
index 7123bb5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-2-0ee67e16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-3-7433b4bd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-3-7433b4bd.webp
deleted file mode 100644
index 88bb605d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-3-7433b4bd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-3-cc29943e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-3-cc29943e.webp
deleted file mode 100644
index 00e7501d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-3-cc29943e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-4-265c2c38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-4-265c2c38.webp
deleted file mode 100644
index 7fd0ba39..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-4-265c2c38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-4-b3663da8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-4-b3663da8.webp
deleted file mode 100644
index c76d68ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-4-b3663da8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-5-507a8d75.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-5-507a8d75.webp
deleted file mode 100644
index 9327c578..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-5-507a8d75.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-5-aef55b6f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-5-aef55b6f.webp
deleted file mode 100644
index eea5ec0c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ballad-in-goblets-5-aef55b6f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/barbara-736db26f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/barbara-736db26f.webp
deleted file mode 100644
index 6441ae0b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/barbara-736db26f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/barbara-8fdf01b9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/barbara-8fdf01b9.webp
deleted file mode 100644
index d1268986..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/barbara-8fdf01b9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beacon-of-the-reed-sea-f08aea79.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beacon-of-the-reed-sea-f08aea79.webp
deleted file mode 100644
index c914c8a8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beacon-of-the-reed-sea-f08aea79.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beginner-f111b92d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beginner-f111b92d.webp
deleted file mode 100644
index 6ac04879..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beginner-f111b92d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beidou-14b39f56.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beidou-14b39f56.webp
deleted file mode 100644
index f6feff98..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beidou-14b39f56.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beidou-9ec3fc7f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beidou-9ec3fc7f.webp
deleted file mode 100644
index 98584d0a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/beidou-9ec3fc7f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bennett-5202eecd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bennett-5202eecd.webp
deleted file mode 100644
index c4ba7aaf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bennett-5202eecd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bennett-b59af56a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bennett-b59af56a.webp
deleted file mode 100644
index 0f4a8bcb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bennett-b59af56a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-bonus-a06911c7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-bonus-a06911c7.webp
deleted file mode 100644
index 54daf68d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-bonus-a06911c7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-bow-ee8a252c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-bow-ee8a252c.webp
deleted file mode 100644
index eb1453a7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-bow-ee8a252c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-catalyst-5f3e1a93.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-catalyst-5f3e1a93.webp
deleted file mode 100644
index 326a170d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-catalyst-5f3e1a93.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-claymore-45e9294d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-claymore-45e9294d.webp
deleted file mode 100644
index 7c49ce90..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-claymore-45e9294d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-polearm-8bc23798.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-polearm-8bc23798.webp
deleted file mode 100644
index 671669a4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-polearm-8bc23798.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-sword-230f75cd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-sword-230f75cd.webp
deleted file mode 100644
index d5a47ef2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg-sword-230f75cd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg1-712c47b2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg1-712c47b2.webp
deleted file mode 100644
index 1036afe6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg1-712c47b2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg10-e9ffb1e8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg10-e9ffb1e8.webp
deleted file mode 100644
index 94d1d8a0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg10-e9ffb1e8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg11-ff306cf9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg11-ff306cf9.webp
deleted file mode 100644
index cd25dc4e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg11-ff306cf9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg12-5fa4fb34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg12-5fa4fb34.webp
deleted file mode 100644
index e35f5bd5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg12-5fa4fb34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg13-09b8fc49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg13-09b8fc49.webp
deleted file mode 100644
index d4999981..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg13-09b8fc49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg14-21741df9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg14-21741df9.webp
deleted file mode 100644
index a483685e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg14-21741df9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg15-cf0f23c5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg15-cf0f23c5.webp
deleted file mode 100644
index cf521b19..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg15-cf0f23c5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg16-921e463d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg16-921e463d.webp
deleted file mode 100644
index 5d8351e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg16-921e463d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg17-c65ca53f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg17-c65ca53f.webp
deleted file mode 100644
index 06151619..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg17-c65ca53f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg18-cddfc572.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg18-cddfc572.webp
deleted file mode 100644
index 5b9f6a03..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg18-cddfc572.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg19-1a5a4d18.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg19-1a5a4d18.webp
deleted file mode 100644
index e0558588..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg19-1a5a4d18.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg2-fb97dde3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg2-fb97dde3.webp
deleted file mode 100644
index 69b2f7b2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg2-fb97dde3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg20-31544bff.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg20-31544bff.webp
deleted file mode 100644
index dde7bada..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg20-31544bff.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg3-6b567d8b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg3-6b567d8b.webp
deleted file mode 100644
index 6333a6f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg3-6b567d8b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg4-410de4d4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg4-410de4d4.webp
deleted file mode 100644
index a97be278..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg4-410de4d4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg5-a6423348.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg5-a6423348.webp
deleted file mode 100644
index 4843b7ca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg5-a6423348.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg6-eadd753a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg6-eadd753a.webp
deleted file mode 100644
index b15fe556..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg6-eadd753a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg7-d6e1e259.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg7-d6e1e259.webp
deleted file mode 100644
index 94eccfca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg7-d6e1e259.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg8-b22a75ba.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg8-b22a75ba.webp
deleted file mode 100644
index ac53783b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg8-b22a75ba.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg9-d62bd2b9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg9-d62bd2b9.webp
deleted file mode 100644
index b86b122f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bg9-d62bd2b9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/black-tassel-3160907a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/black-tassel-3160907a.webp
deleted file mode 100644
index 06c32c31..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/black-tassel-3160907a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bloodtained-greatsword-5f184595.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bloodtained-greatsword-5f184595.webp
deleted file mode 100644
index e624f5ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/bloodtained-greatsword-5f184595.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-34d62d3c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-34d62d3c.webp
deleted file mode 100644
index 76ab8bae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-34d62d3c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-8662f044.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-8662f044.webp
deleted file mode 100644
index 0384148b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-8662f044.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-e407bd19.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-e407bd19.webp
deleted file mode 100644
index 295baf22..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/blossoming-starlight-e407bd19.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/book-d6fb8ca7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/book-d6fb8ca7.webp
deleted file mode 100644
index 91f30e05..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/book-d6fb8ca7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/book-select-bg-9a2e0c9b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/book-select-bg-9a2e0c9b.webp
deleted file mode 100644
index ebb80ca1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/book-select-bg-9a2e0c9b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-1-5c351d0d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-1-5c351d0d.webp
deleted file mode 100644
index bdc45987..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-1-5c351d0d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-1-ae305d80.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-1-ae305d80.webp
deleted file mode 100644
index 18611c73..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-1-ae305d80.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-2-1740fcf3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-2-1740fcf3.webp
deleted file mode 100644
index 2c64d086..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-2-1740fcf3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-2-497c1f88.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-2-497c1f88.webp
deleted file mode 100644
index 39e6f2e1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-2-497c1f88.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-3-03ae3988.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-3-03ae3988.webp
deleted file mode 100644
index de9e2d72..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-3-03ae3988.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-3-ddcc8d0c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-3-ddcc8d0c.webp
deleted file mode 100644
index 0240d452..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/born-of-ocean-swell-3-ddcc8d0c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/brand-d7e2d962.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/brand-d7e2d962.png
deleted file mode 100644
index 56c1a43f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/brand-d7e2d962.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/button-4401ab60.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/button-4401ab60.webp
deleted file mode 100644
index 0b12b9fc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/button-4401ab60.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/calamity-queller-be1a7765.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/calamity-queller-be1a7765.webp
deleted file mode 100644
index b9c92a37..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/calamity-queller-be1a7765.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/candace-b6a3df39.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/candace-b6a3df39.webp
deleted file mode 100644
index 89bc2869..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/candace-b6a3df39.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/candace-ca326db9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/candace-ca326db9.webp
deleted file mode 100644
index f8658756..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/candace-ca326db9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cashflow-supervision-7051bdf8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cashflow-supervision-7051bdf8.webp
deleted file mode 100644
index 3c7c553b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cashflow-supervision-7051bdf8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-1-05f13192.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-1-05f13192.webp
deleted file mode 100644
index 04372e25..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-1-05f13192.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-1-ba335ae3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-1-ba335ae3.webp
deleted file mode 100644
index 429e2d2c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-1-ba335ae3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-2-4a130a79.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-2-4a130a79.webp
deleted file mode 100644
index e886542d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-2-4a130a79.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-2-abc0c3ce.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-2-abc0c3ce.webp
deleted file mode 100644
index 0b0be1e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/caution-in-confidence-2-abc0c3ce.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chanson-of-many-waters-1-812cf393.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chanson-of-many-waters-1-812cf393.webp
deleted file mode 100644
index b9bc42fa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chanson-of-many-waters-1-812cf393.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chanson-of-many-waters-1-bd911350.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chanson-of-many-waters-1-bd911350.webp
deleted file mode 100644
index 98ccc91b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chanson-of-many-waters-1-bd911350.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/charlotte-ce6f28f1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/charlotte-ce6f28f1.webp
deleted file mode 100644
index 4c99305d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/charlotte-ce6f28f1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/charlotte-d9a13b65.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/charlotte-d9a13b65.webp
deleted file mode 100644
index 2d413f91..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/charlotte-d9a13b65.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chevreuse-9f7e1325.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chevreuse-9f7e1325.webp
deleted file mode 100644
index e65f2440..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chevreuse-9f7e1325.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chevreuse-9fd0391d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chevreuse-9fd0391d.webp
deleted file mode 100644
index c79dd6f8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chevreuse-9fd0391d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chongyun-1a43cddd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chongyun-1a43cddd.webp
deleted file mode 100644
index b0f32afd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chongyun-1a43cddd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chongyun-c98d13e9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chongyun-c98d13e9.webp
deleted file mode 100644
index 5aae0448..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/chongyun-c98d13e9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/collei-5e546560.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/collei-5e546560.webp
deleted file mode 100644
index 44e97655..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/collei-5e546560.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/collei-7edcd0f6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/collei-7edcd0f6.webp
deleted file mode 100644
index 168826be..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/collei-7edcd0f6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/conjuring-chiaroscuro-1-43f3db38.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/conjuring-chiaroscuro-1-43f3db38.webp
deleted file mode 100644
index 6a8fba3c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/conjuring-chiaroscuro-1-43f3db38.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/conjuring-chiaroscuro-1-72030f1d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/conjuring-chiaroscuro-1-72030f1d.webp
deleted file mode 100644
index c600f14a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/conjuring-chiaroscuro-1-72030f1d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/constellation-ea52ebf9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/constellation-ea52ebf9.webp
deleted file mode 100644
index e6fd6ebc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/constellation-ea52ebf9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cool-steel-1f2cbfee.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cool-steel-1f2cbfee.webp
deleted file mode 100644
index cd3e7c05..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cool-steel-1f2cbfee.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cryo-dae55f12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cryo-dae55f12.webp
deleted file mode 100644
index 9407aa40..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cryo-dae55f12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-016ed971.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-016ed971.webp
deleted file mode 100644
index 3e7b001b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-016ed971.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-df3b585d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-df3b585d.webp
deleted file mode 100644
index 8519e404..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-df3b585d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-e50a3679.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-e50a3679.webp
deleted file mode 100644
index 06089f80..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/cyno-e50a3679.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dance-of-lantern-1-daae80f7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dance-of-lantern-1-daae80f7.webp
deleted file mode 100644
index a1e5666b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dance-of-lantern-1-daae80f7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dance-of-lantern-1-f463694e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dance-of-lantern-1-f463694e.webp
deleted file mode 100644
index 2809ba1e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dance-of-lantern-1-f463694e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/debate-club-5be7672b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/debate-club-5be7672b.webp
deleted file mode 100644
index 8dbe7cc8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/debate-club-5be7672b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/decree-of-the-deeps-1-0b924149.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/decree-of-the-deeps-1-0b924149.webp
deleted file mode 100644
index bde822fb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/decree-of-the-deeps-1-0b924149.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/decree-of-the-deeps-1-a0986d4f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/decree-of-the-deeps-1-a0986d4f.webp
deleted file mode 100644
index 2450ff76..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/decree-of-the-deeps-1-a0986d4f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-2088c690.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-2088c690.webp
deleted file mode 100644
index 4e0b6df5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-2088c690.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-5fc2272c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-5fc2272c.webp
deleted file mode 100644
index ab1cf0ca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-5fc2272c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-804f4fe1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-804f4fe1.webp
deleted file mode 100644
index 7eba21f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dehya-804f4fe1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dendro-680e5876.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dendro-680e5876.webp
deleted file mode 100644
index 9902b09a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dendro-680e5876.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/detailbg-27b1098a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/detailbg-27b1098a.webp
deleted file mode 100644
index 59954d5a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/detailbg-27b1098a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diluc-a7ffe513.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diluc-a7ffe513.webp
deleted file mode 100644
index cd5e34cc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diluc-a7ffe513.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diluc-b100ee3c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diluc-b100ee3c.webp
deleted file mode 100644
index d0e7c90f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diluc-b100ee3c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diona-49e255ab.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diona-49e255ab.webp
deleted file mode 100644
index ff05874c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diona-49e255ab.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diona-d7f26fc1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diona-d7f26fc1.webp
deleted file mode 100644
index ebaf9fa9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/diona-d7f26fc1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-1-43bf7f01.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-1-43bf7f01.webp
deleted file mode 100644
index 951841ef..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-1-43bf7f01.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-1-5158dab8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-1-5158dab8.webp
deleted file mode 100644
index ad3a3d13..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-1-5158dab8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-2-96fe0dd4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-2-96fe0dd4.webp
deleted file mode 100644
index 5a4a1e2b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-2-96fe0dd4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-2-d463d9e8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-2-d463d9e8.webp
deleted file mode 100644
index d4a89c22..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-2-d463d9e8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-3-b922fc5d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-3-b922fc5d.webp
deleted file mode 100644
index a3500d4b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-3-b922fc5d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-3-c1cb6447.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-3-c1cb6447.webp
deleted file mode 100644
index 46b08e3f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/discerner-of-enigmas-3-c1cb6447.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-bnb-4ed23dae.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-bnb-4ed23dae.png
deleted file mode 100644
index f05cc440..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-bnb-4ed23dae.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-btc-cc1f4e65.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-btc-cc1f4e65.png
deleted file mode 100644
index dd25c822..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-btc-cc1f4e65.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-dana-003f18fc.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-dana-003f18fc.png
deleted file mode 100644
index 213d6242..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-dana-003f18fc.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-ethereum-efafab8a.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-ethereum-efafab8a.png
deleted file mode 100644
index 04ab2b87..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-ethereum-efafab8a.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-gopay-9da376a4.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-gopay-9da376a4.png
deleted file mode 100644
index eb71cba0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-gopay-9da376a4.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-kofi-8b3dfa0b.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-kofi-8b3dfa0b.png
deleted file mode 100644
index dce0bcf2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-kofi-8b3dfa0b.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-linkaja-0baddcfa.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-linkaja-0baddcfa.png
deleted file mode 100644
index 002687b6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-linkaja-0baddcfa.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-ovo-182f1658.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-ovo-182f1658.png
deleted file mode 100644
index 8782225d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-ovo-182f1658.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-saweria-1b68205a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-saweria-1b68205a.webp
deleted file mode 100644
index 2f8d3faf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-saweria-1b68205a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-shopeepay-47a167b9.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-shopeepay-47a167b9.png
deleted file mode 100644
index 57ef9a8c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-shopeepay-47a167b9.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-solana-1cdd7f9d.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-solana-1cdd7f9d.png
deleted file mode 100644
index d3e6181f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/donate-solana-1cdd7f9d.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dori-13726e34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dori-13726e34.webp
deleted file mode 100644
index 279bde10..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dori-13726e34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dori-525ef2a3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dori-525ef2a3.webp
deleted file mode 100644
index e134cd34..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dori-525ef2a3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dragon_s-bane-d4ae86c7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dragon_s-bane-d4ae86c7.webp
deleted file mode 100644
index d52ea0c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/dragon_s-bane-d4ae86c7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-1-3bf55adf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-1-3bf55adf.webp
deleted file mode 100644
index 608e3c3e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-1-3bf55adf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-1-6ac3522b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-1-6ac3522b.webp
deleted file mode 100644
index 7b8198b2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-1-6ac3522b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-2-53dac3bc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-2-53dac3bc.webp
deleted file mode 100644
index 13292285..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-2-53dac3bc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-2-694877ec.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-2-694877ec.webp
deleted file mode 100644
index e397d394..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-2-694877ec.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-3-1252df73.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-3-1252df73.webp
deleted file mode 100644
index d351f8e3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-3-1252df73.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-3-68897598.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-3-68897598.webp
deleted file mode 100644
index 738d8404..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-3-68897598.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-4-376fa0d7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-4-376fa0d7.webp
deleted file mode 100644
index c01decef..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-4-376fa0d7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-4-5d942deb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-4-5d942deb.webp
deleted file mode 100644
index 3323caa8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/drifting-luminescence-4-5d942deb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-0b70b906.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-0b70b906.webp
deleted file mode 100644
index b01a1efa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-0b70b906.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-67a2ea8b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-67a2ea8b.webp
deleted file mode 100644
index 9a4913ec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-67a2ea8b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-ca0240ec.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-ca0240ec.webp
deleted file mode 100644
index 9a713fb2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ein-immernachtstraum-ca0240ec.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/electro-c98388b4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/electro-c98388b4.webp
deleted file mode 100644
index 7699140d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/electro-c98388b4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/elegy-for-the-end-4e026f0a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/elegy-for-the-end-4e026f0a.webp
deleted file mode 100644
index e51d62c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/elegy-for-the-end-4e026f0a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-anemo-bg-384d7943.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-anemo-bg-384d7943.webp
deleted file mode 100644
index 15b126a7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-anemo-bg-384d7943.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-cryo-bg-bbd31977.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-cryo-bg-bbd31977.webp
deleted file mode 100644
index 7ea9bfca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-cryo-bg-bbd31977.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-dendro-bg-b1d73449.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-dendro-bg-b1d73449.webp
deleted file mode 100644
index af790eec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-dendro-bg-b1d73449.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-electro-bg-f07ba0fb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-electro-bg-f07ba0fb.webp
deleted file mode 100644
index 1ad7d45f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-electro-bg-f07ba0fb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-geo-bg-8a0eabf5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-geo-bg-8a0eabf5.webp
deleted file mode 100644
index 086d2a73..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-geo-bg-8a0eabf5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-hydro-bg-3db0a4b4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-hydro-bg-3db0a4b4.webp
deleted file mode 100644
index b29fd76a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-hydro-bg-3db0a4b4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-pyro-bg-0eca9517.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-pyro-bg-0eca9517.webp
deleted file mode 100644
index bc6ca491..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/element-pyro-bg-0eca9517.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/emerald-orb-0cbdfa0f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/emerald-orb-0cbdfa0f.webp
deleted file mode 100644
index 88e8f1ec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/emerald-orb-0cbdfa0f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/engulfing-lightning-089ffa76.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/engulfing-lightning-089ffa76.webp
deleted file mode 100644
index 2bcf57f6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/engulfing-lightning-089ffa76.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-1-eb670d86.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-1-eb670d86.webp
deleted file mode 100644
index 19b234ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-1-eb670d86.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-1-f0c7e1df.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-1-f0c7e1df.webp
deleted file mode 100644
index 903ac9e1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-1-f0c7e1df.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-10-3fc22ca3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-10-3fc22ca3.webp
deleted file mode 100644
index 48d19e76..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-10-3fc22ca3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-10-dbb799e0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-10-dbb799e0.webp
deleted file mode 100644
index fd9b17ca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-10-dbb799e0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-11-aec71a51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-11-aec71a51.webp
deleted file mode 100644
index 29490379..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-11-aec71a51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-11-b3405031.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-11-b3405031.webp
deleted file mode 100644
index 7e75950d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-11-b3405031.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-12-443c1f37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-12-443c1f37.webp
deleted file mode 100644
index d9e4b2e9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-12-443c1f37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-12-574eceea.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-12-574eceea.webp
deleted file mode 100644
index f4ee8211..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-12-574eceea.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-13-a3d71d43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-13-a3d71d43.webp
deleted file mode 100644
index 4498407c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-13-a3d71d43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-13-ed56f67b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-13-ed56f67b.webp
deleted file mode 100644
index dda5b297..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-13-ed56f67b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-14-3171daa6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-14-3171daa6.webp
deleted file mode 100644
index fea509fc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-14-3171daa6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-14-c10ac33b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-14-c10ac33b.webp
deleted file mode 100644
index fa0ce6ee..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-14-c10ac33b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-15-b0b5c79e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-15-b0b5c79e.webp
deleted file mode 100644
index 030745ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-15-b0b5c79e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-15-b409e4d0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-15-b409e4d0.webp
deleted file mode 100644
index ddb7ca3b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-15-b409e4d0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-16-7ffbeb95.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-16-7ffbeb95.webp
deleted file mode 100644
index 7fd70a15..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-16-7ffbeb95.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-16-c8a82f6b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-16-c8a82f6b.webp
deleted file mode 100644
index c01fb149..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-16-c8a82f6b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-17-5f3047f2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-17-5f3047f2.webp
deleted file mode 100644
index bd9906dd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-17-5f3047f2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-17-6c1afe6c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-17-6c1afe6c.webp
deleted file mode 100644
index 2958e56d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-17-6c1afe6c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-18-35eee84c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-18-35eee84c.webp
deleted file mode 100644
index 4444d387..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-18-35eee84c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-18-489ef503.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-18-489ef503.webp
deleted file mode 100644
index eb841e0f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-18-489ef503.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-19-0cdc967f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-19-0cdc967f.webp
deleted file mode 100644
index 0080e162..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-19-0cdc967f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-19-eeed922e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-19-eeed922e.webp
deleted file mode 100644
index 69f5b623..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-19-eeed922e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-2-41b5c6a7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-2-41b5c6a7.webp
deleted file mode 100644
index 3efb8b5d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-2-41b5c6a7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-2-8d47edc0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-2-8d47edc0.webp
deleted file mode 100644
index aacb9c5b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-2-8d47edc0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-20-5410f2bf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-20-5410f2bf.webp
deleted file mode 100644
index 8821e8ef..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-20-5410f2bf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-20-a3fbe0bd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-20-a3fbe0bd.webp
deleted file mode 100644
index 7aef313a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-20-a3fbe0bd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-21-217a0060.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-21-217a0060.webp
deleted file mode 100644
index 6f97cca5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-21-217a0060.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-21-82a9624f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-21-82a9624f.webp
deleted file mode 100644
index d8ffd718..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-21-82a9624f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-22-3228c0f9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-22-3228c0f9.webp
deleted file mode 100644
index 86be27d5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-22-3228c0f9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-22-792399e2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-22-792399e2.webp
deleted file mode 100644
index 217ae7c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-22-792399e2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-23-5d2d1512.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-23-5d2d1512.webp
deleted file mode 100644
index fd1fc786..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-23-5d2d1512.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-23-7120a2a9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-23-7120a2a9.webp
deleted file mode 100644
index c2495b2e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-23-7120a2a9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-24-6d6a2f59.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-24-6d6a2f59.webp
deleted file mode 100644
index f6955805..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-24-6d6a2f59.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-24-e9cf4f58.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-24-e9cf4f58.webp
deleted file mode 100644
index 508d4b03..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-24-e9cf4f58.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-25-0fb95445.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-25-0fb95445.webp
deleted file mode 100644
index 7eb7af3b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-25-0fb95445.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-25-8e151cab.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-25-8e151cab.webp
deleted file mode 100644
index 354a5bbb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-25-8e151cab.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-26-5b53582c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-26-5b53582c.webp
deleted file mode 100644
index ca4480a8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-26-5b53582c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-26-5efbd74b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-26-5efbd74b.webp
deleted file mode 100644
index b30c28e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-26-5efbd74b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-27-df2469b1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-27-df2469b1.webp
deleted file mode 100644
index 1dea69f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-27-df2469b1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-27-e5e53653.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-27-e5e53653.webp
deleted file mode 100644
index 23730233..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-27-e5e53653.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-28-38212807.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-28-38212807.webp
deleted file mode 100644
index 90e60ac2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-28-38212807.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-28-3eb79526.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-28-3eb79526.webp
deleted file mode 100644
index 130d11cd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-28-3eb79526.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-29-a1cab21d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-29-a1cab21d.webp
deleted file mode 100644
index 4b06ba9b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-29-a1cab21d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-29-ed54ee28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-29-ed54ee28.webp
deleted file mode 100644
index f5951003..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-29-ed54ee28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-3-03016c9b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-3-03016c9b.webp
deleted file mode 100644
index 995b026e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-3-03016c9b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-3-4e3b5dc1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-3-4e3b5dc1.webp
deleted file mode 100644
index 6131b394..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-3-4e3b5dc1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-30-7f69070f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-30-7f69070f.webp
deleted file mode 100644
index d837ad05..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-30-7f69070f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-30-d284c17e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-30-d284c17e.webp
deleted file mode 100644
index 757565e9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-30-d284c17e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-31-d5a12212.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-31-d5a12212.webp
deleted file mode 100644
index 0e8dd3c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-31-d5a12212.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-31-f2deea2c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-31-f2deea2c.webp
deleted file mode 100644
index b14ca438..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-31-f2deea2c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-32-4c552718.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-32-4c552718.webp
deleted file mode 100644
index b969bd7c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-32-4c552718.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-32-6d08f2a9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-32-6d08f2a9.webp
deleted file mode 100644
index b3a12de6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-32-6d08f2a9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-33-11f4c788.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-33-11f4c788.webp
deleted file mode 100644
index 882bcf37..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-33-11f4c788.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-33-38ddb639.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-33-38ddb639.webp
deleted file mode 100644
index 6906d436..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-33-38ddb639.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-34-867549f2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-34-867549f2.webp
deleted file mode 100644
index 03a9fd15..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-34-867549f2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-34-da3f0eb6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-34-da3f0eb6.webp
deleted file mode 100644
index 2b123b4d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-34-da3f0eb6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-35-235ff674.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-35-235ff674.webp
deleted file mode 100644
index 0f34b2cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-35-235ff674.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-35-bbfc84a1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-35-bbfc84a1.webp
deleted file mode 100644
index b3c7cf98..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-35-bbfc84a1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-36-6603723e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-36-6603723e.webp
deleted file mode 100644
index bd5ef3f2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-36-6603723e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-36-9e525db9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-36-9e525db9.webp
deleted file mode 100644
index a519044f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-36-9e525db9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-37-6abf0877.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-37-6abf0877.webp
deleted file mode 100644
index d09f0624..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-37-6abf0877.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-37-a42f3023.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-37-a42f3023.webp
deleted file mode 100644
index 0d93b630..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-37-a42f3023.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-38-581a89ba.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-38-581a89ba.webp
deleted file mode 100644
index 5938b266..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-38-581a89ba.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-38-96f7108c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-38-96f7108c.webp
deleted file mode 100644
index 105c482e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-38-96f7108c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-39-578d25ac.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-39-578d25ac.webp
deleted file mode 100644
index f99d66a9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-39-578d25ac.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-39-7f46a024.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-39-7f46a024.webp
deleted file mode 100644
index 0a07d5a9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-39-7f46a024.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-4-487c7dd2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-4-487c7dd2.webp
deleted file mode 100644
index fc877e25..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-4-487c7dd2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-4-9d6d7832.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-4-9d6d7832.webp
deleted file mode 100644
index 04c59576..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-4-9d6d7832.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-40-2363bd29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-40-2363bd29.webp
deleted file mode 100644
index 80ed702d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-40-2363bd29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-40-748cac52.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-40-748cac52.webp
deleted file mode 100644
index 5f86abe3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-40-748cac52.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-41-54b657dc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-41-54b657dc.webp
deleted file mode 100644
index 2d42bc4e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-41-54b657dc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-41-ce1af924.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-41-ce1af924.webp
deleted file mode 100644
index 168b7af8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-41-ce1af924.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-42-5a656170.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-42-5a656170.webp
deleted file mode 100644
index 3e68a4bb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-42-5a656170.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-42-f766c738.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-42-f766c738.webp
deleted file mode 100644
index 9d9975e3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-42-f766c738.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-43-716aea11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-43-716aea11.webp
deleted file mode 100644
index 83613ec1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-43-716aea11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-43-96a18174.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-43-96a18174.webp
deleted file mode 100644
index ffabea2a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-43-96a18174.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-44-78f45642.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-44-78f45642.webp
deleted file mode 100644
index 69865ea2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-44-78f45642.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-44-bd4f9697.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-44-bd4f9697.webp
deleted file mode 100644
index c82d0477..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-44-bd4f9697.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-45-7c30c469.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-45-7c30c469.webp
deleted file mode 100644
index f599d225..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-45-7c30c469.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-45-e5a38794.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-45-e5a38794.webp
deleted file mode 100644
index a30d6437..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-45-e5a38794.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-46-14f43e34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-46-14f43e34.webp
deleted file mode 100644
index 9f84856f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-46-14f43e34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-46-e9a2324e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-46-e9a2324e.webp
deleted file mode 100644
index 85802c47..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-46-e9a2324e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-47-408b7cf6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-47-408b7cf6.webp
deleted file mode 100644
index 1057c697..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-47-408b7cf6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-47-6a4b7fc9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-47-6a4b7fc9.webp
deleted file mode 100644
index 1b96990f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-47-6a4b7fc9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-48-0d98ddc0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-48-0d98ddc0.webp
deleted file mode 100644
index c4ef27f8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-48-0d98ddc0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-48-6f466a99.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-48-6f466a99.webp
deleted file mode 100644
index 0e7ad1a1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-48-6f466a99.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-49-62bf8151.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-49-62bf8151.webp
deleted file mode 100644
index 4976296d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-49-62bf8151.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-49-63edf049.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-49-63edf049.webp
deleted file mode 100644
index 01de8c8d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-49-63edf049.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-5-2bbefad1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-5-2bbefad1.webp
deleted file mode 100644
index 9fa7c1b7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-5-2bbefad1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-5-ccdb7b1a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-5-ccdb7b1a.webp
deleted file mode 100644
index 4745940b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-5-ccdb7b1a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-50-18ea40b3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-50-18ea40b3.webp
deleted file mode 100644
index a2d85588..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-50-18ea40b3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-50-b1fee88e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-50-b1fee88e.webp
deleted file mode 100644
index 9ffe70e8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-50-b1fee88e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-51-7f22fab6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-51-7f22fab6.webp
deleted file mode 100644
index 4a732915..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-51-7f22fab6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-51-ad87a00e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-51-ad87a00e.webp
deleted file mode 100644
index d00b52c5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-51-ad87a00e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-52-20476d34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-52-20476d34.webp
deleted file mode 100644
index b01b50b2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-52-20476d34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-52-da79635b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-52-da79635b.webp
deleted file mode 100644
index 976bf5cd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-52-da79635b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-53-13bee977.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-53-13bee977.webp
deleted file mode 100644
index 8abefab9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-53-13bee977.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-53-38e488a0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-53-38e488a0.webp
deleted file mode 100644
index a2f18d9d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-53-38e488a0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-54-cdac28d2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-54-cdac28d2.webp
deleted file mode 100644
index 311e4587..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-54-cdac28d2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-54-e608a30e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-54-e608a30e.webp
deleted file mode 100644
index 4130cb2f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-54-e608a30e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-55-373a90d6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-55-373a90d6.webp
deleted file mode 100644
index 47013723..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-55-373a90d6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-55-e5875cd3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-55-e5875cd3.webp
deleted file mode 100644
index d794f8cd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-55-e5875cd3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-56-053aaeb2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-56-053aaeb2.webp
deleted file mode 100644
index 9b314872..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-56-053aaeb2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-56-0bd0a0ae.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-56-0bd0a0ae.webp
deleted file mode 100644
index ce2cfe35..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-56-0bd0a0ae.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-57-d999ab85.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-57-d999ab85.webp
deleted file mode 100644
index 1648a9bb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-57-d999ab85.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-57-eeb37f22.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-57-eeb37f22.webp
deleted file mode 100644
index 09e29a8f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-57-eeb37f22.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-58-6828ac1d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-58-6828ac1d.webp
deleted file mode 100644
index d96e01b6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-58-6828ac1d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-58-7682ae63.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-58-7682ae63.webp
deleted file mode 100644
index d191239c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-58-7682ae63.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-6-86f6fca7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-6-86f6fca7.webp
deleted file mode 100644
index 8c0ac3ec..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-6-86f6fca7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-6-aa995dfa.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-6-aa995dfa.webp
deleted file mode 100644
index 180f000c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-6-aa995dfa.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-7-a19a8f6c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-7-a19a8f6c.webp
deleted file mode 100644
index 31b26c32..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-7-a19a8f6c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-7-f863dff6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-7-f863dff6.webp
deleted file mode 100644
index 5d31a48e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-7-f863dff6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-8-4b7ba21f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-8-4b7ba21f.webp
deleted file mode 100644
index 19197897..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-8-4b7ba21f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-8-aa8fba89.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-8-aa8fba89.webp
deleted file mode 100644
index 101bf5dc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-8-aa8fba89.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-9-6ee83cf2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-9-6ee83cf2.webp
deleted file mode 100644
index 2c344ef4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-9-6ee83cf2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-9-d83afe5e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-9-d83afe5e.webp
deleted file mode 100644
index acc3bfda..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/epitome-invocation-9-d83afe5e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-02a08e5a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-02a08e5a.webp
deleted file mode 100644
index eea22aeb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-02a08e5a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-0cd3dac3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-0cd3dac3.webp
deleted file mode 100644
index c4e54177..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-0cd3dac3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-4b0cfa79.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-4b0cfa79.webp
deleted file mode 100644
index b5873f42..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eula-4b0cfa79.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-1-07751188.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-1-07751188.webp
deleted file mode 100644
index a8b8e334..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-1-07751188.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-1-892371bd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-1-892371bd.webp
deleted file mode 100644
index 4696b2c5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-1-892371bd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-2-70fc7a50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-2-70fc7a50.webp
deleted file mode 100644
index 225b8b90..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-2-70fc7a50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-2-a0e10b82.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-2-a0e10b82.webp
deleted file mode 100644
index 4fa255e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-2-a0e10b82.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-3-2c6b56f5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-3-2c6b56f5.webp
deleted file mode 100644
index 6f867693..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-3-2c6b56f5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-3-6b50dfaf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-3-6b50dfaf.webp
deleted file mode 100644
index da72d62e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everbloom-violet-3-6b50dfaf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everlasting-moonglow-767fc202.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everlasting-moonglow-767fc202.webp
deleted file mode 100644
index 0034a63d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/everlasting-moonglow-767fc202.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/executor_s-thorns-3d5b9868.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/executor_s-thorns-3d5b9868.webp
deleted file mode 100644
index 7965edea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/executor_s-thorns-3d5b9868.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/executor_s-thorns-7ebaa9b6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/executor_s-thorns-7ebaa9b6.webp
deleted file mode 100644
index 4bbda1c4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/executor_s-thorns-7ebaa9b6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eye-of-perception-213b75a3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eye-of-perception-213b75a3.webp
deleted file mode 100644
index 77970073..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/eye-of-perception-213b75a3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/face-placeholder-2b7eee97.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/face-placeholder-2b7eee97.webp
deleted file mode 100644
index cbe80462..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/face-placeholder-2b7eee97.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-1-504b4c44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-1-504b4c44.webp
deleted file mode 100644
index b1fe4497..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-1-504b4c44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-1-dff759c0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-1-dff759c0.webp
deleted file mode 100644
index d84a4575..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-1-dff759c0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-2-b621b043.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-2-b621b043.webp
deleted file mode 100644
index 02e2b314..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-2-b621b043.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-2-ea196522.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-2-ea196522.webp
deleted file mode 100644
index 280b31e9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-2-ea196522.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-3-81a14e49.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-3-81a14e49.webp
deleted file mode 100644
index aee85cd7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-3-81a14e49.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-3-c963d52e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-3-c963d52e.webp
deleted file mode 100644
index 1bcf25cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-3-c963d52e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-4-19a402fb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-4-19a402fb.webp
deleted file mode 100644
index b6c8a970..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-4-19a402fb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-4-9d26ce6b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-4-9d26ce6b.webp
deleted file mode 100644
index 4b80cfab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-4-9d26ce6b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-5-dfaad745.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-5-dfaad745.webp
deleted file mode 100644
index 22a08e18..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-5-dfaad745.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-5-fad87c00.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-5-fad87c00.webp
deleted file mode 100644
index daa1e323..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/farewell-of-snezhnaya-5-fad87c00.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/faruzan-0fa37bd5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/faruzan-0fa37bd5.webp
deleted file mode 100644
index d73ae786..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/faruzan-0fa37bd5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/faruzan-c31e94d3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/faruzan-c31e94d3.webp
deleted file mode 100644
index d6e8e53d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/faruzan-c31e94d3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fatepointbook-30a10105.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fatepointbook-30a10105.webp
deleted file mode 100644
index df1d749a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fatepointbook-30a10105.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fatepointbook-half-41f531cd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fatepointbook-half-41f531cd.webp
deleted file mode 100644
index 33896a4c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fatepointbook-half-41f531cd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonian-fevotion-05bc6eb1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonian-fevotion-05bc6eb1.webp
deleted file mode 100644
index c75f80b7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonian-fevotion-05bc6eb1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonian-fevotion-83ebffaf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonian-fevotion-83ebffaf.webp
deleted file mode 100644
index 8b7baf3d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonian-fevotion-83ebffaf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-codex-51626bee.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-codex-51626bee.webp
deleted file mode 100644
index 40f63172..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-codex-51626bee.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-greatsword-aa0a3e7a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-greatsword-aa0a3e7a.webp
deleted file mode 100644
index a72ef34d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-greatsword-aa0a3e7a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-lance-eb4a71db.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-lance-eb4a71db.webp
deleted file mode 100644
index a3a686fb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-lance-eb4a71db.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-sword-45b13707.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-sword-45b13707.webp
deleted file mode 100644
index e0f91bcc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-sword-45b13707.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-warbow-953fca29.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-warbow-953fca29.webp
deleted file mode 100644
index 7faa845e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/favonius-warbow-953fca29.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ferrous-shadow-801c5564.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ferrous-shadow-801c5564.webp
deleted file mode 100644
index de22a329..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ferrous-shadow-801c5564.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fischl-80d20522.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fischl-80d20522.webp
deleted file mode 100644
index 8f012bf7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fischl-80d20522.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fischl-8a20cb83.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fischl-8a20cb83.webp
deleted file mode 100644
index 47c4fe65..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/fischl-8a20cb83.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/flowing-fate-3565e7c4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/flowing-fate-3565e7c4.webp
deleted file mode 100644
index ca48512b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/flowing-fate-3565e7c4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/flowing-fate-7ad16287.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/flowing-fate-7ad16287.webp
deleted file mode 100644
index 4c33eac2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/flowing-fate-7ad16287.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freedom-sworn-59d9777c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freedom-sworn-59d9777c.webp
deleted file mode 100644
index 3228b2cc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freedom-sworn-59d9777c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freminet-bc38fa75.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freminet-bc38fa75.webp
deleted file mode 100644
index c2efbcd8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freminet-bc38fa75.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freminet-e6b6afa1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freminet-e6b6afa1.webp
deleted file mode 100644
index 6ac1b09a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/freminet-e6b6afa1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-1-081caac4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-1-081caac4.webp
deleted file mode 100644
index da7e7ee7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-1-081caac4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-1-0b5606ab.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-1-0b5606ab.webp
deleted file mode 100644
index 9805496e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-1-0b5606ab.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-2-215ac956.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-2-215ac956.webp
deleted file mode 100644
index cdfea450..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-2-215ac956.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-2-5919da44.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-2-5919da44.webp
deleted file mode 100644
index 11ed771b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/from-ashes-reborn-2-5919da44.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-74469077.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-74469077.webp
deleted file mode 100644
index d98da929..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-74469077.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-93628576.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-93628576.webp
deleted file mode 100644
index b466bd16..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-93628576.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-f1e8b7a5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-f1e8b7a5.webp
deleted file mode 100644
index 71d529e5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/furina-f1e8b7a5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-06c60991.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-06c60991.webp
deleted file mode 100644
index 0764f1d1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-06c60991.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-4e889cee.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-4e889cee.webp
deleted file mode 100644
index 19804448..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-4e889cee.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-ad96fd46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-ad96fd46.webp
deleted file mode 100644
index a4506394..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ganyu-ad96fd46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-1980-1b32f531.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-1980-1b32f531.webp
deleted file mode 100644
index a8ab5d69..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-1980-1b32f531.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-300-f41d116a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-300-f41d116a.webp
deleted file mode 100644
index cef51567..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-300-f41d116a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-3280-bbb37b16.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-3280-bbb37b16.webp
deleted file mode 100644
index 50a5227d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-3280-bbb37b16.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-60-16cb4b74.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-60-16cb4b74.webp
deleted file mode 100644
index bba46bdb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-60-16cb4b74.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-6480-e88d15f4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-6480-e88d15f4.webp
deleted file mode 100644
index d58c06d5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-6480-e88d15f4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-77e1510a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-77e1510a.webp
deleted file mode 100644
index 46516332..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-77e1510a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-980-ac57ec7b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-980-ac57ec7b.webp
deleted file mode 100644
index 8b77c876..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-980-ac57ec7b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-bg-5a82b308.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-bg-5a82b308.webp
deleted file mode 100644
index ee6aea58..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genesis-bg-5a82b308.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genshin-logo-b0f0111b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genshin-logo-b0f0111b.webp
deleted file mode 100644
index ede6f553..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genshin-logo-b0f0111b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genshin-logo-cn-99097c50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genshin-logo-cn-99097c50.webp
deleted file mode 100644
index 46540526..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/genshin-logo-cn-99097c50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-1-1d5d9d33.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-1-1d5d9d33.webp
deleted file mode 100644
index 4ea0efc2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-1-1d5d9d33.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-1-e26cbcba.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-1-e26cbcba.webp
deleted file mode 100644
index 4365e7c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-1-e26cbcba.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-2-45b839d7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-2-45b839d7.webp
deleted file mode 100644
index 1adc038c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-2-45b839d7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-2-6d7ff03e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-2-6d7ff03e.webp
deleted file mode 100644
index 620e9921..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-2-6d7ff03e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-3-4b3b75aa.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-3-4b3b75aa.webp
deleted file mode 100644
index c6f5cb7a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-3-4b3b75aa.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-3-59454dd9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-3-59454dd9.webp
deleted file mode 100644
index 6fa54942..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-3-59454dd9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-4-9f5d4145.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-4-9f5d4145.webp
deleted file mode 100644
index 0977ca1e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-4-9f5d4145.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-4-c9d19d43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-4-c9d19d43.webp
deleted file mode 100644
index f4064cf7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-4-c9d19d43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-5-4bc8c8c0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-5-4bc8c8c0.webp
deleted file mode 100644
index b17c5b62..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-5-4bc8c8c0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-5-58100344.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-5-58100344.webp
deleted file mode 100644
index 0bc10c67..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gentry-of-hermitage-5-58100344.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/geo-2ebe8a1a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/geo-2ebe8a1a.webp
deleted file mode 100644
index f989fcdc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/geo-2ebe8a1a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gorou-8d259071.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gorou-8d259071.webp
deleted file mode 100644
index d6a85342..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gorou-8d259071.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gorou-f814f487.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gorou-f814f487.webp
deleted file mode 100644
index 6bf7ef3b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/gorou-f814f487.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/haran-geppaku-futsu-6128630c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/haran-geppaku-futsu-6128630c.webp
deleted file mode 100644
index 012716ca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/haran-geppaku-futsu-6128630c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/harbinger-of-dawn-bb7e138c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/harbinger-of-dawn-bb7e138c.webp
deleted file mode 100644
index 942d9792..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/harbinger-of-dawn-bb7e138c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/history-select-bg-9e24dca9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/history-select-bg-9e24dca9.webp
deleted file mode 100644
index 0a687462..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/history-select-bg-9e24dca9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-20ba2977.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-20ba2977.webp
deleted file mode 100644
index 1d7d17db..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-20ba2977.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-5e3cfb48.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-5e3cfb48.webp
deleted file mode 100644
index cff97f6b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-5e3cfb48.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-6dd9d54b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-6dd9d54b.webp
deleted file mode 100644
index 18de6ea1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hu-tao-6dd9d54b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hunter_s-path-56b53549.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hunter_s-path-56b53549.webp
deleted file mode 100644
index ebdb7643..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hunter_s-path-56b53549.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hydro-ff726371.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hydro-ff726371.webp
deleted file mode 100644
index e851e686..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/hydro-ff726371.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/imbroke-6820f50d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/imbroke-6820f50d.webp
deleted file mode 100644
index aa0681d0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/imbroke-6820f50d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-1-231c442f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-1-231c442f.webp
deleted file mode 100644
index df8f2384..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-1-231c442f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-1-60979827.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-1-60979827.webp
deleted file mode 100644
index e7feed68..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-1-60979827.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-2-aa9feb12.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-2-aa9feb12.webp
deleted file mode 100644
index 0ef6d1d2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-2-aa9feb12.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-2-fe64e91a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-2-fe64e91a.webp
deleted file mode 100644
index 7ec7884a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/immaculate-pulse-2-fe64e91a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/in-the-name-of-the-rosula-1-a0b8fb35.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/in-the-name-of-the-rosula-1-a0b8fb35.webp
deleted file mode 100644
index 4d7a8e1b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/in-the-name-of-the-rosula-1-a0b8fb35.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/in-the-name-of-the-rosula-1-f39d4c0e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/in-the-name-of-the-rosula-1-f39d4c0e.webp
deleted file mode 100644
index a88a0485..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/in-the-name-of-the-rosula-1-f39d4c0e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-191c38e6.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-191c38e6.css
deleted file mode 100644
index 18559f84..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-191c38e6.css
+++ /dev/null
@@ -1 +0,0 @@
-h2.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{font-size:1.1rem;padding:.2rem 2rem .2rem 6rem;margin-left:-5rem;margin-top:1rem;border-radius:40px;background-color:var(--tertiary-color);display:inline-block;position:relative;color:#383b40}h2.svelte-6yqdv .gi-primo-star.svelte-6yqdv.svelte-6yqdv{color:#ede5d8;position:absolute;right:0;top:50%;line-height:0;transform:translate(80%,-50%)}.item.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{display:inline-flex;flex-direction:column;width:60vh;max-width:460px;margin:.5rem .5rem 1rem;text-align:center}.item.custom.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{width:30vh}@media screen and (max-width: 1000px){.item.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{width:46%;min-width:125px}.item.custom.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{width:23%;min-width:62.5px}}.mobile .item.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{width:65vh}.mobile .item.custom.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{width:32.5vh}.banner.svelte-6yqdv.svelte-6yqdv.svelte-6yqdv{display:flex;justify-content:space-between}.banner.svelte-6yqdv>div.svelte-6yqdv.svelte-6yqdv{width:49.5%;height:100%;aspect-ratio:200/99;background-image:linear-gradient(90deg,#fbf6ee 30%,#ccc,#fbf6ee);background-size:400%;display:flex;animation:infinite alternate 2s svelte-6yqdv-skeleton}.custom.svelte-6yqdv .banner.svelte-6yqdv>div.svelte-6yqdv{width:98%}@keyframes svelte-6yqdv-skeleton{0%{background-position:0 0}to{background-position:300% 0}}.banner.svelte-6yqdv>div:not(.dual) img.svelte-6yqdv.svelte-6yqdv{width:100%}.dual.svelte-6yqdv .dual1.svelte-6yqdv.svelte-6yqdv{-o-object-position:60%;object-position:60%;width:40%!important;aspect-ratio:81.1/99.35;margin-right:auto}.dual.svelte-6yqdv .dual2.svelte-6yqdv.svelte-6yqdv{margin-left:auto;-o-object-position:100%;object-position:100%;width:60%!important;aspect-ratio:121.65/99.35}.item.svelte-6yqdv .name.svelte-6yqdv.svelte-6yqdv{width:100%;padding:.3rem;font-weight:400;font-size:.97rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.filter.svelte-10b7bat.svelte-10b7bat{height:3rem;width:100%}.mobile .filter.svelte-10b7bat.svelte-10b7bat{height:2rem;margin-top:-.5rem}.filter.svelte-10b7bat .row.svelte-10b7bat{width:100%;height:100%;display:flex;align-items:center;padding:0 2%}.search.svelte-10b7bat.svelte-10b7bat{width:20rem;position:relative;max-width:60%}.search.svelte-10b7bat input.svelte-10b7bat{font-size:.75rem;padding-right:12%}.search.svelte-10b7bat button.svelte-10b7bat{position:absolute;right:5%;top:55%;transform:translateY(-50%)}.selector.svelte-10b7bat.svelte-10b7bat{width:12rem;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;max-width:40%}section.svelte-lqvliw.svelte-lqvliw{width:100%;height:100%;display:flex;flex-direction:column;background-size:cover;color:var(--tertiary-color);font-size:.97rem;position:relative;z-index:+1}h1.svelte-lqvliw.svelte-lqvliw{color:var(--tertiary-color)}header.svelte-lqvliw.svelte-lqvliw{width:100%;display:flex;justify-content:space-between;align-items:center;padding:15px 2%}.mobile header.svelte-lqvliw.svelte-lqvliw{padding:5px 2%}button.svelte-lqvliw.svelte-lqvliw:hover{background-color:var(--tertiary-color)}.close.svelte-lqvliw.svelte-lqvliw{margin-left:auto}.mobile .close.svelte-lqvliw.svelte-lqvliw{margin-right:4.5%}.body.svelte-lqvliw.svelte-lqvliw{display:flex;flex-direction:column;width:100%;height:100%}.content.svelte-lqvliw.svelte-lqvliw{padding:1rem 2%;width:100%;height:100%;display:block}#content.svelte-lqvliw>.custom.svelte-lqvliw{border-bottom:1px solid #ccc}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-2b8cdfa9.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-2b8cdfa9.css
deleted file mode 100644
index fc499f92..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-2b8cdfa9.css
+++ /dev/null
@@ -1 +0,0 @@
-.toggle.svelte-1tza2tz.svelte-1tza2tz{display:inline-block;width:40px;height:40px;border:1px solid #d2c69c;margin-right:5px;position:relative}.toggle.svelte-1tza2tz span.svelte-1tza2tz{display:block;width:60%;height:2px;top:50%;left:50%;position:absolute;transform:translate(-50%,-50%);background-color:#d2c69c}.toggle.svelte-1tza2tz span.svelte-1tza2tz:after,.toggle.svelte-1tza2tz span.svelte-1tza2tz:before{display:block;position:absolute;left:0;width:100%;height:2px;content:"";background-color:#d2c69c}.toggle.svelte-1tza2tz span.svelte-1tza2tz:before{top:-300%}.toggle.svelte-1tza2tz span.svelte-1tza2tz:after{bottom:-300%}.item-header.svelte-1tza2tz.svelte-1tza2tz{height:80px;display:flex;justify-content:space-between;align-items:center;color:#d2c69c;position:relative}.mobile .item-header.svelte-1tza2tz.svelte-1tza2tz{height:40px}.fates.svelte-1tza2tz.svelte-1tza2tz{display:flex;justify-content:flex-end;align-items:center}.mobile .fates.svelte-1tza2tz.svelte-1tza2tz{margin-right:5%}@media screen and (max-width: 500px){.item-header.svelte-1tza2tz.svelte-1tza2tz{flex-direction:column;justify-content:center}.info.svelte-1tza2tz.svelte-1tza2tz{width:100%}.close.svelte-1tza2tz.svelte-1tza2tz{position:absolute;top:20%;right:0}}.navbar.svelte-1x9hr9q.svelte-1x9hr9q{width:320px;height:100%;display:block;background-color:#4b5265cc;border-right:1px solid #d2c69c;border-left:1px solid #d2c69c;color:#d2c69c;margin-right:3%;position:relative;z-index:-1}.mobile .navbar.svelte-1x9hr9q.svelte-1x9hr9q{width:190px}.navbar.resizeable.svelte-1x9hr9q.svelte-1x9hr9q{position:fixed;top:0;left:0;width:200px;background-color:#4b5265;z-index:10;transform:translate(-110%);transition:transform .3s cubic-bezier(.645,.045,.355,1)}.bg.svelte-1x9hr9q.svelte-1x9hr9q{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#4b526580;z-index:8;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}aside.resizeable.show.svelte-1x9hr9q.svelte-1x9hr9q{transform:translate(0)}.top.svelte-1x9hr9q.svelte-1x9hr9q{font-size:1.5rem;width:100%;height:80px;background-color:#3b4255;padding:0 20px 20px;display:flex;align-items:flex-end}.mobile .top.svelte-1x9hr9q.svelte-1x9hr9q{height:50px;font-size:1.2rem;padding:0 20px 10px;margin-bottom:-10px}.nav-item.svelte-1x9hr9q.svelte-1x9hr9q{margin-top:20px;display:flex;flex-direction:column;color:#f0e4d4}.link.svelte-1x9hr9q.svelte-1x9hr9q{position:relative;transition:all .2s;text-decoration:none;color:#ededed;aspect-ratio:70/17.5;display:flex;align-items:center;padding-left:5%;z-index:1;text-align:left}.link.svelte-1x9hr9q i.svelte-1x9hr9q{font-size:2rem;display:inline-block;margin-right:10px}.mobile .link.svelte-1x9hr9q i.svelte-1x9hr9q{font-size:1.4rem}.link.active.svelte-1x9hr9q.svelte-1x9hr9q,.link.svelte-1x9hr9q.svelte-1x9hr9q:hover{background-color:#ede5d8;color:#40475a;border-radius:.25rem}.link.svelte-1x9hr9q.svelte-1x9hr9q:after,.link.svelte-1x9hr9q.svelte-1x9hr9q:before,span.svelte-1x9hr9q.svelte-1x9hr9q:after,span.svelte-1x9hr9q.svelte-1x9hr9q:before{content:"";position:absolute;background-size:contain;display:block}.link.active.svelte-1x9hr9q.svelte-1x9hr9q:before{top:50%;right:-13.25%;height:100%;aspect-ratio:37/30;transform:translateY(-50%) rotate(180deg);z-index:-1;line-height:120%;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAN4AAAC0CAMAAADM1mK5AAAAP1BMVEUAAADn59ft5djs5djn39/r49fs5tjs5djr5Nft5dns5dns5Njs49fs49jr5tns5dns59nt5trq5Nrq5NXs5dgwi7xwAAAAFHRSTlMAIN/vEEC/gGCg0L9QkHCwX48wMGbNuj8AAAQnSURBVHja7d3pcuMgDABgcYPPttH7P+uuN02TZpwGWDuWqL7/nalGIAiXQQghhBBCCCGEEOIRe4ohzZ3W+I/W3qcQnQX2bBy9wQeMHwcFXNlh1PhUlwaGabSTx2w+skqiHTwW8hGYUMFgBZ04pNB5rJYc0HYOrp6nHOA1uHqeahNVM26CZh8MBrcSgBqncUOaVgLtO541mUDV4T9tJnAyuAMzAQnvuJN3OJ7qcDfd4Q1UafymrQ74YXBX5gQHejO4M/MGh3nDF8iNj2d0ufFxjS43PmZV5dj6ogy+jFHwHKPx7vDxr8OX6uAZHvNMEvPPCV9ugh9xLSsHlBeNB+gsvEbAXBy7n8KDOFjVQtNcaFjTRtN8uHzWSNN8TfVMeKAZ7jWUvBdUF4+H8rArh4V4pc9jKU7pOzx59+lrqGyupK+psnmmoIbWlkPyKqcuEXGiO9u8ZSyU8xmtOiIJQ2WvOlEfFc58ZUkMDArLwtb9hjMs2uZKkcjsVY5D26xonT7j7yySYaGIyvm7AckYKtcXAvUx/WysXBwydHYVfqJrfwc4+sPCwlb+DvAcuh5ihHwqa0I3IiFj+aB3FsiPeqUjn87aJzRIiKleYHDkB/WFrd1G9mRXWW6dqrcMAu359Fms3yQPxDZOqlck7KRxhY6K8pRskeApNxp8JDnK48LzvRQbOrxaTyHh8LoNbsOkgdgiWdak2gaDmXRQvMKzzlfdG0Ritrs5qJNiEp7HKjOT8CaNFczEJDyA2GOhfrBc+t5CjRqzmWCBT2n5NMyZiXMMx72Fihqf6IKltvdVslbmEj5mkiO7DLjoYVGZwn6ycGdGUnrIMqwEqB3tNepFqr5+19lWfs6unYvWqqXFCICQ9YcnJMVBLmvwhrGNLQTCiDdSa8u44PCGY7EI31ce89PQ3BYKTPgl0j8Xcdl9rikuisPJgdJjczN+StQPlFVdd3M3hYVD50tQxlwKS5MHPy4zl9jmsZ3Lv654HLrq6064z+SuXK6LUMp9NmkWrVNBMYOoyV9iOOuhXPgstwxqZ4RyNiPnlsSvBg01Bkf6ZuLqmC7XNHjdkLpPnlyRYpW+Hr5pLX13yWssfT3caSt9CjZGai8lwRruj5k8S548qiBPYhRXF35Ns2jNjGHT/Mt2mINl0/wFT0E1/pDXAd1vhBzyiJ48gdj+A5YvfX70A3ZA5o2FCDm4xpcbHc/4IhwmGtyZKYuOWX2pqCqMxj99/JP+TX+w4H7+yXie+Ts/FnLpgA02zN2Wz0Za3xzcNoGa3pfOAm7FUPrG0heVcBMzpV53S/X433p67fLK9Q0Ht3Cp4eAWKum6gkK1z21xx5PXx3VVSYT9xCq2MzukDp/SI6+8faOGsTf4gOnHyDe0L9bFkPr++kHybk4hfjQQmRBCCCGEEEIIIa7+AOtDPh8UDv3LAAAAAElFTkSuQmCC)}.link.active.svelte-1x9hr9q.svelte-1x9hr9q:after{top:50%;right:-1%;width:100%;aspect-ratio:708/156;transform:translateY(-50%) rotate(180deg);background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsQAAACcCAMAAABPyU0CAAAAOVBMVEUAAADTu4vUvI7Uuo3TvI7TvI7UvI7TvozTu43TvI7Su47Pv4/fv43TvI7Tu43SvIzVuo3UvI/TvI7Io+VzAAAAEnRSTlMAQL9goL/eIHDvsBAQkIBQML8hIpUyAAADO0lEQVR42uzd22oCMRSG0dixM2oVZb//wzaOhzoWerjzh7VAxfuPkExibD9ZF7yg97YgYvKImHj/jHho8FJWIiadiIknYuKJmHgiJp6IiSdi4omYeL9G/FYLIublrOqZiAkjYuL9JeJVgxwiJp6IiSdi4omYeCImnoiJJ2LiiZh4IiaeiIknYuKJmHgiJp6IiSdi4omYeCImnoiJJ2LiiZh4Iibet4inrYjJ8hzxfqwaPxrkeI74ULWdGgR5injo3zcNkiwjnsaqdYMoy4jXVaPJBGEWEQ+uDyTQImKTCRI9RrwxmSDRQ8TTaDJBoh7x46quQZyviCerOjL1cg3EZLtHPG0NxGS6RzwYiAl1j9ijCVLdIj4aiEl1i3hns45U14in/mmzjkzXiIeq9waRrhG/WdYRq0dsNkG2Xq/ZBNkuEe/8so5cl4jHqlODTHPEJzsdBJsjHqp2DULNEa9NiQk2Rzy6fo1gPeL5bd8gVO/Xuo5s54iPtjpIdo54U3VokOoc8cHDCZKdI95VHRuk6hH7lw6y9YidnCDbHLHDxCTrEc8viCVi4omYeCImnoiJJ2LiecRGPBETz7Yz8eYDQO6wIpmjmMT7bO8OU1oHwgCKpiCtIdDHy/4XKxOjOFUQ//XCOWu4hJkk34yf4sk7xpMcO0HZiPhmUJQyI/vkOTyFPMdYkXdE/GpnR9gR8W3f1wWijoiX1agoXSNii2LSXDxD3nvEmzfFdJ1THf+tJ8g6I361niDrjHhzpShZI+JzPXFfoOgj4su+r7Z2JI2ID6sZJaI+I77b2hH1GfG2+h+TphGxRzFpI2KPYtJGxKe7UTuSvkS8rb49UzQi/nD3rpii6VjX676/LBAzRXzZ7e3omSIeRwteLSiImSPeVgsKcuaIl3+7NxTUPEQ8jnld/VhMymPE29WymJgR8eTm6zMx3yJ2gwc1IiZPxOSJmDwRkydi8kRMnojJEzF5IiZPxOSJmDwRkydi8kRMnojJEzF5IiZPxOSJmDwRkydi8n6KeOJSJZ7OZZ+ImB4Rk/drxLMXEfN0Lt9u+hIxMSImT8TkiZg8EZMnYvJETJ6IyftzxPCEREyeiMl7iPgNPx9ffAKGWGIAAAAASUVORK5CYII=);background-repeat:no-repeat}span.svelte-1x9hr9q.svelte-1x9hr9q{display:flex;align-items:center;width:100%;height:95%;position:relative;overflow:hidden}span.svelte-1x9hr9q i{line-height:0}.active.svelte-1x9hr9q span.svelte-1x9hr9q:before{width:40%;height:100%;z-index:-1;top:0;right:0;content:"h";font-family:genshin-icon!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:90%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:5rem;color:#e3d9c4}.active.svelte-1x9hr9q span.svelte-1x9hr9q:after{width:100%;height:100%;z-index:-1;background-image:linear-gradient(to right,rgba(237,229,216,1) 60%,rgba(237,229,216,0) 80%)}.red.svelte-tdpyek.svelte-tdpyek{color:#de2f22!important}.content.svelte-tdpyek.svelte-tdpyek{width:100%;display:flex;flex-direction:column}.item.svelte-tdpyek.svelte-tdpyek{display:flex;width:100%;height:calc(.45 * var(--content-height))}.item.star5.svelte-tdpyek.svelte-tdpyek{background-image:linear-gradient(-15deg,#e0b466,#817874)}.item.star4.svelte-tdpyek.svelte-tdpyek{background-image:linear-gradient(-15deg,#b988c8,#625a8a)}.primo.svelte-tdpyek.svelte-tdpyek{position:absolute;top:.2rem;right:.2rem}.primogem.svelte-tdpyek.svelte-tdpyek{padding:2px 15px 0 30px;display:inline-flex;align-items:center;max-width:112px;height:25px;position:relative;overflow:hidden;background-color:#0000004d;border-radius:50px;color:#fff;text-align:center;margin:0 8px;font-size:.8rem}picture.svelte-tdpyek.svelte-tdpyek{display:flex;justify-content:center;align-items:center;height:calc(.45 * var(--content-height));aspect-ratio:1/1}.description.svelte-tdpyek.svelte-tdpyek{max-width:calc(100% - (.45 * var(--content-height)));color:#fff;font-size:.7rem;display:flex;flex-direction:column;align-items:flex-start;text-align:left;padding:.3rem}.title.svelte-tdpyek.svelte-tdpyek{font-size:1.1rem;text-transform:capitalize}.gi-star.svelte-tdpyek.svelte-tdpyek{color:#eac343;font-size:.9rem;padding-top:2px}.description.svelte-tdpyek p.svelte-tdpyek{height:100%;overflow-y:auto;color:#fff}.col.svelte-tdpyek.svelte-tdpyek{width:100%;flex-basis:50%;display:flex;justify-content:center;align-items:center;position:relative;padding:.1em 0 .7em}.col.svelte-tdpyek span.svelte-tdpyek{width:100%;position:absolute;bottom:.3rem;left:50%;transform:translate(-50%);font-size:.7rem}.slider.svelte-tdpyek.svelte-tdpyek,.rangeNumber.svelte-tdpyek.svelte-tdpyek,.rangeInput.svelte-tdpyek.svelte-tdpyek{display:flex;justify-content:center;flex-direction:column;align-items:center;width:100%;position:relative;font-size:1rem}.mobile .rangeInput.svelte-tdpyek.svelte-tdpyek{font-size:.8rem}.rangeNumber.svelte-tdpyek.svelte-tdpyek{font-size:.8rem;margin-bottom:-.5rem}.slider.svelte-tdpyek.svelte-tdpyek{padding:1% 0}.error.svelte-tdpyek.svelte-tdpyek{font-size:80%}@media screen and (max-width: 890px){.primogem.svelte-tdpyek.svelte-tdpyek{height:20px;margin:0 3px}}@media screen and (max-width: 400px){.primogem.svelte-tdpyek.svelte-tdpyek{max-width:80px}}.item-list.svelte-pbmdh3{height:calc(var(--content-height) * .78);margin:15px 0;overflow-y:auto;overflow-x:hidden}.mobile .item-list.svelte-pbmdh3{margin:5px 0 0;padding:0}.list-body.svelte-pbmdh3{display:flex;flex-wrap:wrap}@media screen and (max-width: 400px){.list-body.svelte-pbmdh3{justify-content:space-between;padding:0 2.3%}}.column.svelte-1m1hkd6{flex-basis:var(--column-basis);width:var(--column-basis);aspect-ratio:1/1;overflow:auto;padding:calc(.06 * var(--column-width));display:block}@media screen and (min-width: 1440px){.column.svelte-1m1hkd6{--column-width:200px;flex-basis:unset;width:200px}}@media screen and (max-width: 890px){.column.svelte-1m1hkd6{min-width:150px;min-height:150px}.mobile .column.svelte-1m1hkd6{min-width:130px;min-height:130px}}@media screen and (max-width: 400px){.column.svelte-1m1hkd6{min-width:100px;min-height:100px}}.genesis-modal.svelte-1ujvigb.svelte-1ujvigb{display:block;width:100%;height:100%}.header.svelte-1ujvigb.svelte-1ujvigb{display:flex;width:100%;align-items:center}button.back.svelte-1ujvigb.svelte-1ujvigb{font-size:2rem;padding:.4rem;line-height:1rem}.title.svelte-1ujvigb.svelte-1ujvigb{width:100%;padding:.4rem;font-size:1.5rem;line-height:1rem}.body.svelte-1ujvigb.svelte-1ujvigb{display:flex;width:center;width:100%;flex-direction:column}.detail.svelte-1ujvigb.svelte-1ujvigb{width:100%;display:flex;justify-content:space-between}picture.svelte-1ujvigb.svelte-1ujvigb{width:40%;display:block;position:relative;text-align:center}.mobile picture.svelte-1ujvigb.svelte-1ujvigb{width:25vh}picture.svelte-1ujvigb span.svelte-1ujvigb{position:absolute;left:0;width:100%;display:block;font-size:.8rem}span.product-text.svelte-1ujvigb.svelte-1ujvigb{top:0}span.product-name.svelte-1ujvigb.svelte-1ujvigb{bottom:0}.mobile span.product-text.svelte-1ujvigb.svelte-1ujvigb{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;left:19vh;top:25%;font-size:.9rem}.mobile span.product-name.svelte-1ujvigb.svelte-1ujvigb{width:-webkit-max-content;width:-moz-max-content;width:max-content;left:19vh;font-size:.9rem;bottom:25%}.price.svelte-1ujvigb.svelte-1ujvigb{width:40%;display:flex;justify-content:center;align-items:center;font-size:1.5rem;margin-right:.2rem;color:#de2f22}.payment-type.svelte-1ujvigb.svelte-1ujvigb{text-align:left;width:100%;padding:1rem 1.4rem;font-size:1.1rem}.mobile .payment-type.svelte-1ujvigb.svelte-1ujvigb{font-size:1rem}.list.svelte-1ujvigb.svelte-1ujvigb{display:flex;width:100%}.item.svelte-1ujvigb.svelte-1ujvigb{margin:.5rem .25rem 0;padding:.5rem;border-radius:.25rem;text-align:center;width:50%;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-size:.95rem;border:2px solid #ccc;display:flex;align-items:center;justify-content:space-evenly;transition:all .2s;text-transform:capitalize}.item.svelte-1ujvigb.svelte-1ujvigb:hover{border-color:#cea064}.item.selected.svelte-1ujvigb.svelte-1ujvigb{background-color:#d2c69c;border-color:#cea064;font-weight:700;box-shadow:0 0 .2rem #ce9c56}.item.svelte-1ujvigb img.svelte-1ujvigb{width:20%}.mobile .item.svelte-1ujvigb.svelte-1ujvigb{padding:.3rem}.auto-convert.svelte-1ujvigb.svelte-1ujvigb{font-size:.97rem;display:flex;align-items:center;justify-content:center}.button-payment.svelte-1ujvigb button.svelte-1ujvigb{background-color:#353533;color:#ffc107;margin:1rem;padding:1rem;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;transition:all .2s}.button-payment.svelte-1ujvigb button.svelte-1ujvigb:active{transform:scale(.95)}button.svelte-1fsb0dp.svelte-1fsb0dp{transition:all .2s;transform:scale(1);width:100%;height:100%;display:block;position:relative}button.svelte-1fsb0dp.svelte-1fsb0dp:not(.nav-link-item):active{transform:scale(.95)}.firstBonus.svelte-1fsb0dp.svelte-1fsb0dp{left:-5%;top:-5%;width:35%;aspect-ratio:1/1;background-size:cover;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.bonus.svelte-1fsb0dp.svelte-1fsb0dp{color:#fff6d2;text-shadow:.05em .05em .2em rgba(0,0,0,.5);font-size:80%;filter:drop-shadow(.1rem .1rem .2rem rgba(0,0,0,.5));position:absolute;z-index:+1}.wrap.svelte-1fsb0dp.svelte-1fsb0dp{width:100%;position:relative;display:flex}.firstBonus.svelte-1fsb0dp .wrap.svelte-1fsb0dp{flex-direction:column;justify-content:center;align-items:center;text-align:center}.firstBonus.svelte-1fsb0dp .amount.svelte-1fsb0dp{color:#fefdf2;font-size:initial}.mobile .amount.svelte-1fsb0dp.svelte-1fsb0dp{font-size:140%}.topup-bonus.svelte-1fsb0dp.svelte-1fsb0dp{background-color:#fb9095;top:0;left:-3%;padding:.15rem 1rem .15rem .7rem;border-bottom-left-radius:1rem;border-top-left-radius:1rem;border-bottom-right-radius:2rem}.mobile .topup-bonus.svelte-1fsb0dp.svelte-1fsb0dp{padding:0 10% 0 8%}.topup-bonus.svelte-1fsb0dp .wrap.svelte-1fsb0dp{align-items:center}.content.svelte-1fsb0dp.svelte-1fsb0dp{width:100%;height:100%;display:flex;justify-content:flex-start;flex-direction:column;align-items:center;overflow:hidden;text-align:center;background-size:cover;background-position:center center;transition:all .2s;position:relative}.content.svelte-1fsb0dp.svelte-1fsb0dp:hover{filter:drop-shadow(-.3rem .2rem #eac343) drop-shadow(.3rem .2rem #eac343) drop-shadow(-0rem -.3rem #eac343)}picture.svelte-1fsb0dp.svelte-1fsb0dp{display:block;margin-top:-10%}.picture.svelte-1fsb0dp.svelte-1fsb0dp{display:block;width:100%;height:70%;overflow-y:hidden;margin-top:5%}img.svelte-1fsb0dp.svelte-1fsb0dp{width:90%}.caption.svelte-1fsb0dp.svelte-1fsb0dp{position:absolute;bottom:5%;display:block;width:95%}.name.svelte-1fsb0dp.svelte-1fsb0dp{width:100%;padding:15% 4.5% 2%;display:block;font-size:calc(8 / 100 * var(--column-width));background-image:linear-gradient(to top,rgba(241,239,222,1) 55%,rgba(241,239,222,0))}.price.svelte-1fsb0dp.svelte-1fsb0dp{display:block;height:calc(16 / 100 * var(--column-width));line-height:calc(16 / 100 * var(--column-width));font-size:calc(9 / 100 * var(--column-width))}div.svelte-kwggo6{display:flex;flex-wrap:wrap;justify-content:center;border-top:1px solid #d2c69c;border-bottom:1px solid #d2c69c;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin-top:1%;background-image:linear-gradient(to right,rgba(0,0,0,0),rgba(0,0,0,.5),rgba(0,0,0,.5),rgba(0,0,0,.5),rgba(0,0,0,0))}.mobile div.svelte-kwggo6{flex-wrap:nowrap}.nav-link-item.svelte-1qgesf6.svelte-1qgesf6{color:#d2c69c;position:relative;aspect-ratio:720/100;padding:0 7.5rem;height:2rem}.nav-link-item.svelte-1qgesf6 .border.svelte-1qgesf6{height:2.7rem;aspect-ratio:669/122;background-repeat:no-repeat;background-size:cover;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;left:0;transform:translateY(-50%);padding:0 10%;transition:all .2s}.nav-link-item.active.svelte-1qgesf6 .border.svelte-1qgesf6,.nav-link-item.svelte-1qgesf6:hover .border.svelte-1qgesf6{color:var(--text-color);background-image:var(--bg-active)}.mobile .nav-link-item.svelte-1qgesf6.svelte-1qgesf6{height:1.7rem;font-size:99%;padding:0 6.4rem}.mobile .nav-link-item.svelte-1qgesf6 .border.svelte-1qgesf6{height:2.3rem;padding:0 10%}button.svelte-5inznb.svelte-5inznb{width:100%;height:100%;transition:all .2s;position:relative}button.svelte-5inznb.svelte-5inznb:after{content:"";position:absolute;z-index:-1;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;border-radius:.8rem;border:.3rem solid #eac343;opacity:0;transition:opacity .15s}button.svelte-5inznb.svelte-5inznb:hover:after{opacity:1}button.svelte-5inznb.svelte-5inznb:active{transform:scale(.95)}.content.svelte-5inznb.svelte-5inznb{width:100%;height:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;border-radius:.5rem;overflow:hidden;text-align:center;background-color:#596982}.content.svelte-5inznb picture.svelte-5inznb{height:100%;width:100%;display:flex;justify-content:center;margin-top:-10%;align-items:center;position:relative;background-size:cover;border-bottom-right-radius:1.4rem;overflow:hidden}.content.svelte-5inznb picture span.svelte-5inznb{position:absolute;bottom:0;left:0;width:100%;color:#fff;transform:scale(.9);-webkit-text-stroke:.2px black;text-transform:capitalize}.price.svelte-5inznb.svelte-5inznb{width:100%;height:20%;color:#fff;-webkit-text-stroke:.02rem black;display:flex;align-items:center;justify-content:center}.content.svelte-127zepx{background-color:#fffc;height:100%;width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:1rem;padding:1rem;text-align:center;transition:transform .1s}.content.svelte-127zepx:active{transform:scale(.95)}.donate-icon.svelte-127zepx{display:flex;flex-wrap:wrap;justify-content:center;align-items:center}.qr.svelte-127zepx{width:14.5%;height:14.5%}.qr2.svelte-127zepx{width:16%;height:16%}img.svelte-127zepx{height:1.5rem;margin:.2rem .5rem}span.svelte-127zepx{padding:.5rem}.container.svelte-127zepx{display:flex;flex-direction:column;width:100%;height:calc(100vh - 130px)}.mobile .container.svelte-127zepx{height:calc(100vh - 60px)}.confirmation.svelte-u7kf1t{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.owned.svelte-1m6n93.svelte-1m6n93{color:#de2f22}img.outfit-art.svelte-1m6n93.svelte-1m6n93{position:absolute;top:-16.5%;left:-31%;width:130%}.frame.svelte-1m6n93.svelte-1m6n93{padding-top:2%!important}.remaining.svelte-1m6n93.svelte-1m6n93{color:#5391b3;width:35%;position:absolute;top:2%;left:2%;font-size:calc(.03 * var(--content-width))}.description.svelte-1m6n93.svelte-1m6n93{width:50%;text-align:right;color:#787b84;text-shadow:0 0 1rem #f7f3eb}.description.svelte-1m6n93 p.svelte-1m6n93{line-height:130%;font-size:calc(.04 * var(--content-width));max-height:calc(.52 * var(--content-width));overflow-y:auto}.title.svelte-1m6n93.svelte-1m6n93{display:block;margin-left:auto;width:80%;color:#3c4b5e;font-size:calc(.07 * var(--content-width));line-height:120%}span.name.svelte-1m6n93.svelte-1m6n93{color:#3c4b5e;font-weight:700;display:block;margin:5% 0}.details.svelte-1m6n93.svelte-1m6n93{height:100%;display:flex;flex-direction:column;position:absolute;left:0;top:0;padding-bottom:5%;padding-left:3%}.details.svelte-1m6n93 .name.svelte-1m6n93{font-size:calc(.08 * var(--content-width));width:50%;line-height:120%;margin-top:auto;color:#fff;filter:drop-shadow(0 0 25px #787b84)}.price.svelte-1m6n93.svelte-1m6n93{position:relative;color:#fff;margin-top:5%;filter:drop-shadow(0 0 25px #787b84)}.dicount.svelte-1m6n93.svelte-1m6n93{font-size:calc(.11 * var(--content-width))}.stroke.svelte-1m6n93.svelte-1m6n93{text-shadow:-.025rem -.025rem 0 #3c4b5e,0 -.025rem 0 #3c4b5e,.025rem -.025rem 0 #3c4b5e,.025rem 0 0 #3c4b5e,.025rem .025rem 0 #3c4b5e,0 .025rem 0 #3c4b5e,-.025rem .025rem 0 #3c4b5e,-.025rem 0 0 #3c4b5e}.real-price.svelte-1m6n93.svelte-1m6n93{position:absolute;left:52%;bottom:0;transform:translateY(-50%);color:#fff;background-color:#88ba59;padding:.1rem 1rem .1rem .7rem;border-bottom-left-radius:1rem;border-top-left-radius:1rem;border-bottom-right-radius:2rem}.content.svelte-13q84mq.svelte-13q84mq{width:100%;display:flex;padding:0 1.2rem;color:#545259}.img-content.svelte-13q84mq.svelte-13q84mq{width:40%;padding:2% 1rem}.thumbnail.svelte-13q84mq.svelte-13q84mq{aspect-ratio:1/1;background-color:#fff;border-radius:8%;display:flex;flex-direction:column;background-color:#ffe4af;align-items:center;overflow:hidden;box-shadow:0 0 .5rem #00000040}picture.svelte-13q84mq.svelte-13q84mq{width:100%;height:80%;background-color:#f8f3f4;position:relative}picture.svelte-13q84mq.svelte-13q84mq:after,picture.svelte-13q84mq.svelte-13q84mq:before{content:"";position:absolute;left:50%;bottom:0;display:block;transform:translate(-50%)}picture.svelte-13q84mq.svelte-13q84mq:after{background-image:linear-gradient(to top,rgba(243,232,227,1) 20%,rgba(243,232,227,0));height:70%;width:100%}picture.svelte-13q84mq.svelte-13q84mq:before{height:calc(100% - .35rem);width:calc(100% - .7rem);border:.1rem solid #ddc295;border-top-left-radius:8%;border-top-right-radius:8%}.thumbnail.svelte-13q84mq img.svelte-13q84mq{width:75%}caption.svelte-13q84mq.svelte-13q84mq{position:absolute;bottom:0;left:0;width:100%;z-index:+2;line-height:120%;font-size:65%;padding:.4rem}.price.svelte-13q84mq.svelte-13q84mq{font-size:80%;display:flex;justify-content:center;align-items:center;height:20%;width:100%;border-top:.1rem solid #ddc295}@media screen and (min-width: 474px){.price.svelte-13q84mq.svelte-13q84mq,caption.svelte-13q84mq.svelte-13q84mq{font-size:medium}.mobile .price.svelte-13q84mq.svelte-13q84mq{font-size:80%}.mobile caption.svelte-13q84mq.svelte-13q84mq{font-size:65%}}.description-content.svelte-13q84mq.svelte-13q84mq{width:60%;padding:2% 0 1rem .5rem;text-align:left;font-size:65%}.item.svelte-13q84mq.svelte-13q84mq{background-color:#f8f3f4;border-bottom:.1rem solid #ddc295}.icon.svelte-13q84mq span.svelte-13q84mq{display:inline-block;padding:.2rem;aspect-ratio:1/1;background-color:#d38b4c;margin-right:1rem;margin-top:.3rem}.item.svelte-13q84mq .name.svelte-13q84mq{background-color:#d38b4c;color:#fff;padding:2% 1rem;line-height:120%}.item.svelte-13q84mq .content.svelte-13q84mq{padding:2% 1rem}span.amount.svelte-13q84mq.svelte-13q84mq{display:block;padding-top:1%;font-size:120%;color:#d38b4c}img.svelte-1xqunpt.svelte-1xqunpt{width:100%}.welkin-item.svelte-1xqunpt.svelte-1xqunpt{position:absolute;top:8%;left:8%;width:47.5%;animation:svelte-1xqunpt-welkinItem 2s infinite alternate ease-in-out}@keyframes svelte-1xqunpt-welkinItem{0%{transform:translateY(0)}to{transform:translateY(-3%)}}h1.svelte-1xqunpt.svelte-1xqunpt{position:absolute;right:2%;top:7.5%;color:#4c505e;font-size:calc(.065 * var(--content-width))}h2.svelte-1xqunpt.svelte-1xqunpt{position:absolute;left:2%;bottom:8%;font-size:calc(.115 * var(--content-width));color:#fff}.note.svelte-1xqunpt.svelte-1xqunpt{position:absolute;left:6%;bottom:3.7%;color:#fff;font-size:calc(.026 * var(--content-width))}.remaining.svelte-1xqunpt.svelte-1xqunpt{width:35%;position:absolute;top:2%;left:2%;color:#b3c4e3;font-size:calc(.03 * var(--content-width))}.remaining.svelte-1xqunpt span.svelte-1xqunpt{color:#ffc107}.parent-amount.svelte-1xqunpt.svelte-1xqunpt{margin:2% 0;display:flex;flex-direction:column;align-items:flex-end}.parent-amount.svelte-1xqunpt span.svelte-1xqunpt{display:block;text-align:right}.parent-amount.svelte-1xqunpt span.svelte-1xqunpt:not(.amount),.purchase-button.svelte-1xqunpt.svelte-1xqunpt{color:#787b84}.amount.svelte-1xqunpt.svelte-1xqunpt{padding:5% 8%;background-color:#8e9cc0;color:#fff;border-radius:2rem;margin-top:5%;border:.1rem solid #fff;outline:.135rem solid #8e9cc0;width:calc(.3 * var(--content-width))}.content-item.svelte-10lucig,.card.svelte-10lucig{display:block;width:100%}.mobile .content-item.svelte-10lucig,.mobile .card.svelte-10lucig{max-width:100%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:75vh;max-height:40vw}.card.svelte-10lucig{position:relative;background-color:#f7f3eb;max-width:55rem;max-height:75vh;aspect-ratio:1000/561;border-radius:1rem;overflow:hidden;font-size:calc(.035 * var(--content-width))}.content-item.svelte-10lucig .frame{width:100%;height:100%;position:absolute;top:0;left:0;display:flex;flex-direction:column;align-items:flex-end;padding-top:10%;z-index:+3;padding-right:calc(.05 * var(--content-width))}.content-item.svelte-10lucig .purchase-button{width:48%;text-align:right;margin-top:auto;margin-bottom:2.5%}.content-item.svelte-10lucig .purchase-button .caption{font-size:calc(.029 * var(--content-width))}.content-item.svelte-10lucig .card-stroke{line-height:150%;margin-bottom:5%}.outfit.svelte-10lucig{position:relative}.outfit.svelte-10lucig:after{width:100%;height:100%;content:"";position:absolute;top:0;left:0;background-image:linear-gradient(65deg,rgba(247,243,235,0) 40%,rgba(247,243,235,.8) 70%);background-size:cover;z-index:+2}button.svelte-9ce570.svelte-9ce570{width:100%;height:100%;transition:all .2s;position:relative}button.svelte-9ce570.svelte-9ce570:after{content:"";position:absolute;z-index:-1;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;border-radius:.8rem;border:.3rem solid #eac343;opacity:0;transition:opacity .15s}button.svelte-9ce570.svelte-9ce570:hover:after{opacity:1}button.svelte-9ce570.svelte-9ce570:active{transform:scale(.95)}.discount-percentage.svelte-9ce570.svelte-9ce570{color:#fff;background-color:#88ba59;position:absolute;top:-.4rem;left:-.4rem;z-index:+1;padding:.2rem .7rem;font-size:.8rem;border-bottom-left-radius:1rem;border-top-left-radius:1rem;border-bottom-right-radius:2rem}.content.svelte-9ce570.svelte-9ce570{width:100%;height:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;border-radius:.5rem;overflow:hidden;text-align:center;background-color:#596982}.thumbnail.svelte-9ce570.svelte-9ce570{height:100%;width:100%;position:relative;background-size:cover}picture.svelte-9ce570.svelte-9ce570:after{width:100%;height:50%;content:"";display:block;position:absolute;bottom:0;left:0}picture.star4.svelte-9ce570.svelte-9ce570:after{background-image:linear-gradient(to top,rgba(174,148,211,.8) 40%,rgba(174,148,211,0))}picture.star5.svelte-9ce570.svelte-9ce570:after{background-image:linear-gradient(to top,rgba(224,180,102,.8) 40%,rgba(224,180,102,0))}picture.svelte-9ce570.svelte-9ce570{display:block;width:100%;height:100%;position:relative}img.svelte-9ce570.svelte-9ce570{width:58%;height:auto}caption.svelte-9ce570.svelte-9ce570{position:absolute;bottom:0;left:50%;width:100%;transform:translate(-50%);z-index:+2}caption.svelte-9ce570 span.svelte-9ce570{display:block}.name.svelte-9ce570.svelte-9ce570{color:#fdf5f5;font-size:1.1rem;line-height:1.2rem;-webkit-text-stroke:.02rem #675c31;text-shadow:0px 0px 10px rgba(255,255,255,.6)}@media screen and (max-width: 400px){.name.svelte-9ce570.svelte-9ce570{font-size:1.3rem}}.desc.svelte-9ce570.svelte-9ce570,.owned.svelte-9ce570.svelte-9ce570{color:#e8dfbb;font-size:.8em;padding-bottom:.2rem}.owned.svelte-9ce570.svelte-9ce570{background-color:#e86b69;padding-top:.2rem}.price.svelte-9ce570.svelte-9ce570{width:100%;height:20%;color:#fff;-webkit-text-stroke:.02rem black;display:flex;align-items:center;justify-content:center;position:relative}.discount.svelte-9ce570 .price.svelte-9ce570{background-color:#88ba59}.real-price.svelte-9ce570.svelte-9ce570{color:#66892b;font-size:.7rem;position:absolute;top:.1rem;right:.5rem}.wish-container.svelte-1jf0zp8{position:fixed;width:100%;height:100%;z-index:10;top:0;left:0}section.svelte-1jf0zp8{width:100vw;height:var(--screen-height);display:block;position:relative;font-size:1rem;background-color:var(--text-color)}.item-body.svelte-1jf0zp8{height:100%;overflow-y:auto}.mobile section.svelte-1jf0zp8{font-size:.8rem}section.svelte-1jf0zp8:after{position:absolute;content:"";display:block;top:0;left:0;height:100%;width:100%;background-color:#0003;z-index:-1}.container.svelte-1jf0zp8{display:flex;padding:0 3% 0 0;position:relative;z-index:+2;width:100%;height:100%}.mobile .container.svelte-1jf0zp8{padding:0 2%}@media screen and (max-width: 745px){.container.svelte-1jf0zp8{padding:0 3%}}.items-container.svelte-1jf0zp8{width:100%}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-99507031.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-99507031.css
deleted file mode 100644
index 03551678..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-99507031.css
+++ /dev/null
@@ -1 +0,0 @@
-.option.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{display:flex;width:100%;padding:.4rem 0}@media screen and (max-width: 900px){.option.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{padding:.3rem 0}}.option-name.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{background-color:#eae5d9;width:100%;padding:.35rem 1rem;border-top-left-radius:5rem;border-bottom-left-radius:5rem;border:solid transparent;border-width:.2rem 0 .2rem .2rem;white-space:nowrap}.sub.svelte-1d3b5am .option-name.svelte-1d3b5am.svelte-1d3b5am{width:87%;margin-left:10%;position:relative}.sub.svelte-1d3b5am .option-name.svelte-1d3b5am.svelte-1d3b5am:before{content:"";position:absolute;left:-13%;width:15%;height:148%;z-index:-1;bottom:50%;border-bottom:#dcd4c2 dashed .12rem;border-left:#dcd4c2 dashed .12rem;opacity:.5}.option-select-square.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{background-color:#dcd4c2;width:40%;max-width:14rem;text-align:center;position:relative;display:inline-flex;justify-content:center;align-items:center;transition:all .2s;border:solid transparent;border-width:.2rem .2rem .2rem 0}.option-select.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{background-color:#dcd4c2;width:40%;max-width:14rem;text-align:center;position:relative;display:inline-flex;justify-content:center;align-items:center;border-top-right-radius:5rem;border-bottom-right-radius:5rem;transition:all .2s;border:solid transparent;border-width:.2rem .2rem .2rem 0}.option.svelte-1d3b5am:hover .option-name.svelte-1d3b5am.svelte-1d3b5am,.option.svelte-1d3b5am:hover .option-select.svelte-1d3b5am.svelte-1d3b5am{border-color:#fff}.option-select.svelte-1d3b5am i.svelte-1d3b5am.svelte-1d3b5am{position:absolute;top:50%;right:1rem;font-size:1rem;transform:translateY(-50%);pointer-events:none}.option-select.svelte-1d3b5am button.svelte-1d3b5am.svelte-1d3b5am,.option-select.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{font-size:.7rem}input.option-select.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{font-size:.8rem}.select.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{position:absolute;top:110%;left:0;width:100%;max-height:60vh;background-color:#565a64;box-shadow:0 2px 5px #0000004d;z-index:+1;border-radius:1rem;overflow-y:auto;padding:1% 2%}.select.svelte-1d3b5am button.svelte-1d3b5am.svelte-1d3b5am{display:block;width:100%;padding:6%;color:#eee;margin:1% 0;transition:all .2s;position:relative}.select.svelte-1d3b5am button.svelte-1d3b5am.svelte-1d3b5am:hover,.select.svelte-1d3b5am button.selected.svelte-1d3b5am.svelte-1d3b5am{background-color:#717887;border-radius:2rem}.select.svelte-1d3b5am button.selected.svelte-1d3b5am.svelte-1d3b5am:after{content:"\2714";color:#eee;position:absolute;display:block;top:50%;right:8%;font-size:170%;line-height:0;transform:translateY(-50%)}.locale.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{font-family:var(--gi-global-font)}.locale.svelte-1d3b5am .select.svelte-1d3b5am button.svelte-1d3b5am{display:flex;justify-content:center;align-items:center;line-height:0%;padding:6% 8%}.flag.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{width:1.2rem}@media screen and (max-width: 900px){main:not(.mobile) .option-name.svelte-1d3b5am.svelte-1d3b5am.svelte-1d3b5am{font-size:120%}}.confirmation.svelte-15fxbq0{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:100%}.delete-option.svelte-15fxbq0{font-size:80%;margin:2% 0;width:80%}.delete-option.svelte-15fxbq0 .checkbox{margin-top:3%!important}.delete-option.svelte-15fxbq0 label{text-align:left;display:flex;align-items:center}.delete-option.svelte-15fxbq0 small{display:block}.delete-option.svelte-15fxbq0 label i{margin-right:2%}.text.svelte-zri2gr.svelte-zri2gr{color:#fff;margin-bottom:1rem;font-size:1rem;font-weight:700;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.text.svelte-zri2gr a.svelte-zri2gr{text-decoration:underline;transition:all .2s;color:#fff}a.svelte-zri2gr.svelte-zri2gr:hover{color:#f7cf33}.updates.svelte-zri2gr .update-item.svelte-zri2gr{font-weight:100;background-color:#fff;padding:1rem 2.5rem .5rem;font-size:.87rem;border-radius:.3rem}.update-item.svelte-zri2gr.svelte-zri2gr{height:100%;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-size:.97rem;display:block;overflow:hidden}.updates.svelte-zri2gr p.svelte-zri2gr{position:relative;padding-left:1rem}.updates.svelte-zri2gr p.svelte-zri2gr:before{content:"*";display:inline-block;width:10px;line-height:0;font-size:1.3rem;padding-top:.5rem;position:absolute;left:0;top:50%;transform:translateY(-50%)}.updates.svelte-zri2gr h2.svelte-zri2gr:nth-child(1){margin-top:0}.updates.svelte-zri2gr h2.svelte-zri2gr{margin-left:-1rem;font-weight:700;color:#f7cf33}.updates.svelte-zri2gr .tgl.svelte-zri2gr{color:#bd6932}.sidebar.svelte-qd7stm.svelte-qd7stm{width:30%;max-width:20rem}.mobile .sidebar.svelte-qd7stm.svelte-qd7stm{width:25%}.sidebar.svelte-qd7stm .menu-list.svelte-qd7stm{display:flex;flex-direction:column}.menu-item.svelte-qd7stm button.svelte-qd7stm{color:var(--tertiary-color);transition:all .2s;opacity:.8;transform-origin:left;padding:3.5% 5%;width:100%;text-align:left;padding-left:2.5rem;font-size:110%}.menu-item.svelte-qd7stm.svelte-qd7stm{position:relative}.menu-item.active.svelte-qd7stm button.svelte-qd7stm{color:#fff;opacity:1;position:relative}.menu-item.active.svelte-qd7stm.svelte-qd7stm:after{content:"";background-image:var(--bg-active);background-size:contain;background-position:center;background-repeat:no-repeat;display:block;width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1}.menu-item.svelte-qd7stm:hover button.svelte-qd7stm{opacity:1}@media screen and (max-width: 900px){main:not(.mobile) .sidebar.svelte-qd7stm.svelte-qd7stm{width:100%;max-width:unset}main:not(.mobile) .sidebar.svelte-qd7stm .menu-list.svelte-qd7stm{flex-direction:row;justify-content:center;flex-wrap:wrap}main:not(.mobile) .menu-item.active.svelte-qd7stm.svelte-qd7stm:after{display:none}main:not(.mobile) .menu-item.svelte-qd7stm button.svelte-qd7stm{padding:.2rem 1rem;border-radius:50px;opacity:unset;font-size:135%}main:not(.mobile) .menu-item.active.svelte-qd7stm button.svelte-qd7stm,main:not(.mobile) .menu-item.svelte-qd7stm:hover button.svelte-qd7stm{background-color:var(--tertiary-color);color:#4a5265;transform:unset}}.content-container.svelte-r7zc73.svelte-r7zc73{background-color:#fbf6ee;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:50%;background-position:50% 60%;border-radius:.5rem;color:var(--text-color)}.confirmation.svelte-r7zc73.svelte-r7zc73{padding:10%;display:flex;justify-content:center;align-items:center}.row.svelte-r7zc73.svelte-r7zc73{height:100%;width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.mobile form.row.svelte-r7zc73.svelte-r7zc73{transform:scale(.8)}.loader.svelte-r7zc73 span.svelte-r7zc73{margin-top:1.5rem;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}@media screen and (max-width: 700px){.content-container.svelte-r7zc73.svelte-r7zc73{background-size:80%}}form.svelte-r7zc73.svelte-r7zc73{padding:0 2%}label.svelte-r7zc73.svelte-r7zc73{font-size:1.5rem;text-align:center;padding:0 5%}.input.svelte-r7zc73.svelte-r7zc73{text-align:center;padding:2% 0 0;width:80%;max-width:30rem}input.svelte-r7zc73.svelte-r7zc73{width:100%;padding:0 1.5rem;margin-bottom:2%;height:3rem;display:block;border-radius:3rem;border:#c3b8a5 2px solid;background-color:var(--tertiary-color);outline:none;transition:all .2s}input.svelte-r7zc73.svelte-r7zc73:focus{box-shadow:0 0 .4rem #e39530b3}input.error.svelte-r7zc73.svelte-r7zc73{border:#ee6c4c 2px solid}input.error.svelte-r7zc73.svelte-r7zc73:focus{box-shadow:0 0 .4rem #de2f22b3}input.svelte-r7zc73.svelte-r7zc73:disabled{background-color:transparent;opacity:.7}input.svelte-r7zc73.svelte-r7zc73:not(.error):disabled{border:2px solid #64ad15!important}.toggle-visible.svelte-r7zc73.svelte-r7zc73{position:absolute;height:100%;top:50%;right:1rem;transform:translateY(-50%);padding:.5rem;aspect-ratio:1/1;font-size:150%;color:#00000080}.note.svelte-r7zc73.svelte-r7zc73{margin-bottom:5%}.keyValid.svelte-r7zc73.svelte-r7zc73{color:#64ad15}.invalid.svelte-r7zc73.svelte-r7zc73{color:#ee6c4c}.invalid.svelte-r7zc73.svelte-r7zc73,.keyValid.svelte-r7zc73.svelte-r7zc73{font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.admin-note.svelte-r7zc73.svelte-r7zc73{padding:1% 5% 5%;text-align:center;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;display:flex;flex-direction:column;align-items:center}picture.svelte-r7zc73.svelte-r7zc73{width:15%}@media screen and (max-width: 530px){picture.svelte-r7zc73.svelte-r7zc73{width:30%}}img.svelte-r7zc73.svelte-r7zc73{width:100%}.admin-note.svelte-r7zc73 p.svelte-r7zc73{padding-left:2%}.content-container.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{background-color:#fbf6ee;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:50%;background-position:50% 60%;border-radius:.5rem;color:var(--text-color);padding:2%}@media screen and (max-width: 700px){.content-container.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{background-size:80%}}.header.svelte-mgbfbe h1.svelte-mgbfbe.svelte-mgbfbe{display:flex;justify-content:center;align-items:center;font-size:120%}.question.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:25px;line-height:0;margin-left:1%;border-radius:100%;aspect-ratio:1/1;border:1px solid var(--text-color);display:inline-flex;justify-content:center;align-items:center;transition:color .25s,background .25s,transform .25s}.question.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:hover{background-color:var(--text-color);color:#fff}.question.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:active{transform:scale(.9)}.mobile .question.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:20px;font-size:80%}.disclaimer.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:100%;height:100%;position:absolute;top:0;left:0;padding:2%;overflow:auto;z-index:+2;text-align:center}article.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{padding:2%;text-align:left;background-color:#fff;margin-bottom:2%;border-radius:.5rem}p.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{margin-bottom:3%}.notice.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:100%;margin:1% 0;padding:2%;color:#fff;background-color:#d94343bf;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-size:100%;font-weight:700}.wrapper.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:100%;height:calc(100% - var(--height));position:relative}.wrapper.ready.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{overflow-y:auto}.row.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{display:flex;width:100%;align-items:center;margin-bottom:2%;flex-wrap:wrap}.item.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{margin:calc(.04 * var(--item-width));margin-bottom:calc(.12 * var(--item-width));aspect-ratio:1080/533;width:30%;position:relative}@media screen and (max-width: 640px){.item.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:45%}}.banner-item.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:100%;height:100%;display:flex;border:2px solid #c3b8a5;position:relative}.banner-item.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:after{content:"";position:absolute;z-index:+1;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;border-radius:calc(.03 * var(--item-width));border:calc(.015 * var(--item-width)) solid #eac343;opacity:0;transition:opacity .15s}.banner-item.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:disabled:after{content:attr(data-text);opacity:1;background-color:#00000080;border-color:transparent;color:#ffffffd9;display:flex;justify-content:center;align-items:center}.banner-item.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:not(:disabled):hover:after{opacity:1}.sync.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{position:absolute;top:0;right:0;z-index:+1;line-height:0;padding:calc(.02 * var(--item-width));font-size:calc(.065 * var(--item-width))}.gi-cloud-sync.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{background-color:#eac343}.gi-network.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{background-color:#2f9cf4;color:#fff}.item.svelte-mgbfbe img.svelte-mgbfbe.svelte-mgbfbe{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.action.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{position:absolute;width:100%;bottom:0;left:0;transform:translateY(120%);display:flex;justify-content:center}.action.svelte-mgbfbe button.svelte-mgbfbe.svelte-mgbfbe{font-size:80%;line-height:0;padding:2% 5%;opacity:.8;display:inline-flex;align-items:center;border-radius:2rem;color:#fff;margin:0 1%;transition:transform .25s,background .25s}.action.svelte-mgbfbe button.svelte-mgbfbe.svelte-mgbfbe:active{transform:scale(.9)}.action.svelte-mgbfbe button.svelte-mgbfbe i.svelte-mgbfbe{transform:translate(-15%);display:inline-block}.edit.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{background-color:#00b5a9}.edit.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:hover{background-color:#078f86}.delete.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{background-color:#ff1c1c}.delete.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:hover{opacity:1;background-color:#cb1717}.item.blank.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{border-radius:calc(.02 * var(--item-width));transition:border .25s;border:2px dashed #c3b8a5}.item.blank.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:hover{border-color:#857d71}.add.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe{width:100%;height:100%;display:flex;align-items:center;flex-direction:column;justify-content:center;color:#c3b8a5;line-height:0;transition:color .25s}.add.svelte-mgbfbe.svelte-mgbfbe.svelte-mgbfbe:hover{color:#857d71}.add.svelte-mgbfbe i.svelte-mgbfbe.svelte-mgbfbe{font-size:calc(.1 * var(--item-width));margin-bottom:2%}.add.svelte-mgbfbe span.svelte-mgbfbe.svelte-mgbfbe{font-size:calc(.05 * var(--item-width));display:block;line-height:100%}.cloud-sync.svelte-qi1fu7{width:100%;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}caption.svelte-qi1fu7{display:block;padding:1rem}.google-sign-in-button.svelte-qi1fu7{transition:background-color .3s,box-shadow .3s,transform .25s;padding:12px 16px 12px 42px;border:none;border-radius:3px;border:1px solid rgba(0,0,0,.25);color:#757575;font-size:14px;font-weight:500;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);background-color:#fff;background-repeat:no-repeat;background-position:12px 11px}.google-sign-in-button.svelte-qi1fu7:hover{box-shadow:0 -1px #0000000a,0 2px 4px #00000040}.google-sign-in-button.svelte-qi1fu7:not(:disabled):active{background-color:#eee;transform:scale(.95);outline:none;box-shadow:0 -1px #0000000a,0 2px 4px #00000040,0 0 0 3px #c8dafc}.google-sign-in-button.svelte-qi1fu7:disabled{filter:grayscale(100%);background-color:#ebebeb;box-shadow:0 -1px #0000000a,0 1px 1px #00000040;cursor:not-allowed}.drop-content.svelte-mbg36e.svelte-mbg36e{width:100%;padding:5%;display:flex;justify-content:center;align-items:center;border-radius:.5rem;border:.1rem dashed var(--text-color);position:relative;transition:all .25s}.drop-content.onDrag.svelte-mbg36e.svelte-mbg36e{background-color:#000000bf;color:#fff;border-color:#fff}.inputFile.svelte-mbg36e.svelte-mbg36e{position:absolute;height:100%;width:100%;opacity:0;top:0;left:0;pointer-events:none;z-index:+1}.onDrag.svelte-mbg36e .inputFile.svelte-mbg36e{pointer-events:unset}.import-content.svelte-1snd1nd{padding:5%;display:flex;flex-direction:column;justify-content:center;align-items:center}caption.svelte-1snd1nd{width:100%}.import-option.svelte-1snd1nd{font-size:80%;width:80%}.import-option.svelte-1snd1nd .checkbox{margin-top:3%!important}.import-option.svelte-1snd1nd label{text-align:left;display:flex;align-items:center}.import-option.svelte-1snd1nd small{display:block}.import-option.svelte-1snd1nd label i{margin-right:2%}.row.loader.svelte-1snd1nd{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%;width:100%;position:absolute;top:0;left:0}.savedFile.svelte-msml4r.svelte-msml4r{display:flex;width:90%;align-items:center;margin:2rem 5% 1rem;border:.075rem solid #adad45;border-radius:.4rem;transition:all .25s;position:relative}.savedFile.active.svelte-msml4r.svelte-msml4r{background-color:var(--tertiary-color)}.savedFile.error.svelte-msml4r.svelte-msml4r{color:#cf2727;padding:0 5%;font-size:smaller;justify-content:center;border-radius:2rem;overflow:hidden;height:2rem}.button-export.svelte-msml4r.svelte-msml4r{transform:translateY(-50%);position:absolute;top:0;left:0}.toggle.svelte-msml4r.svelte-msml4r{line-height:0;white-space:nowrap;display:flex;align-items:center}.toggle.svelte-msml4r i.svelte-msml4r{font-size:larger}.toggle.svelte-msml4r span.svelte-msml4r{font-size:smaller}.gi-check.svelte-msml4r.svelte-msml4r{color:#58c70a}.gi-cancel.svelte-msml4r.svelte-msml4r{color:#cf2727}.gi-reset.svelte-msml4r.svelte-msml4r{color:orange;font-size:100%!important;transform-origin:50%;transform-box:fill-box;animation:rotate 1s linear infinite}.fileName.svelte-msml4r.svelte-msml4r{width:100%;height:100%;padding:1.75rem 2% 1rem;display:flex;flex-direction:column;align-items:center;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.fileName.svelte-msml4r span.svelte-msml4r{display:block;width:90%;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-transform:capitalize}table.svelte-msml4r.svelte-msml4r{width:90%}table.svelte-msml4r td.svelte-msml4r:nth-child(2){font-style:italic;color:brown}.local-sync.svelte-aszpau{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.local-wrapper.svelte-aszpau{width:100%}.drop-area.svelte-aszpau{margin:1rem 5%}.button.svelte-aszpau{text-align:center;padding:1%}@keyframes svelte-aszpau-rotate{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}.content-container.svelte-15qfmua.svelte-15qfmua{background-color:#fbf6ee;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:50%;background-position:50% 60%;border-radius:.5rem;color:var(--text-color);overflow:hidden}nav.svelte-15qfmua.svelte-15qfmua{width:100%;display:flex;position:relative;z-index:+1}nav.svelte-15qfmua.svelte-15qfmua:before{content:"";position:absolute;width:100%;height:50%;top:0;left:0;background-color:#333947;z-index:-1}nav.svelte-15qfmua button.svelte-15qfmua{width:100%;flex:1;flex-basis:50%;padding:1rem;background-color:#333947;color:#fff;transition:all .25s;display:inline-flex;align-items:center;justify-content:center}nav.svelte-15qfmua button i.svelte-15qfmua{font-size:larger;line-height:0;transform:translate(-25%)}nav.svelte-15qfmua button.active.svelte-15qfmua{background-color:#fbf6ee;color:initial}nav.svelte-15qfmua button.svelte-15qfmua:nth-child(1){border-bottom-right-radius:1.75rem}nav.svelte-15qfmua button.active.svelte-15qfmua:nth-child(1){border-bottom-right-radius:unset;border-top-right-radius:1.75rem}nav.svelte-15qfmua button.svelte-15qfmua:nth-child(2){border-bottom-left-radius:1.75rem}nav.svelte-15qfmua button.active.svelte-15qfmua:nth-child(2){border-bottom-left-radius:unset;border-top-left-radius:1.75rem}.content.svelte-15qfmua.svelte-15qfmua{width:100%;height:100%}section.svelte-174ea47{height:var(--screen-height);width:100vw;display:block;position:fixed;top:0;left:0;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background-color:#0000004d;z-index:100}section.svelte-174ea47 h2{color:var(--tertiary-color);margin-top:1rem;margin-bottom:.5rem}section.svelte-174ea47 .content-container{display:flex;flex-direction:column;height:100%}.container.svelte-174ea47 a{color:#f29f0f}.head.svelte-174ea47{display:flex;justify-content:space-between;margin:2% 2% 1%;color:var(--tertiary-color)}.mobile .head.svelte-174ea47{margin:.5rem 2%}.container.svelte-174ea47{display:flex;justify-content:center;margin:0 2%;height:calc(100% - 7rem)}.mobile .container.svelte-174ea47{height:calc(100% - 5rem)}.content.svelte-174ea47{width:70%;position:relative}.rotate.svelte-174ea47{position:fixed;bottom:5%;left:5%;color:#fff;display:flex;flex-direction:column;text-align:center}.gi-rotate-phone.svelte-174ea47{font-size:3rem;animation:svelte-174ea47-rotatePhone 1s infinite alternate}.mobile .close.svelte-174ea47{margin-right:4%}@media screen and (max-width: 900px){main:not(.mobile) .container.svelte-174ea47{flex-direction:column}main:not(.mobile) .content.svelte-174ea47{width:100%;height:100%;margin-top:1.5rem}}@keyframes svelte-174ea47-rotatePhone{0%{transform:rotate(0)}to{transform:rotate(-90deg)}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-9dd1fc3f.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-9dd1fc3f.css
deleted file mode 100644
index 7861d5ae..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-9dd1fc3f.css
+++ /dev/null
@@ -1 +0,0 @@
-img.bg.svelte-14aq7ze{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0}.title.svelte-x5np8h{color:#d2c69c;text-transform:capitalize;display:flex;align-items:center;text-align:left}.mobile .title.svelte-x5np8h{font-size:small}.budget.svelte-x5np8h{text-align:right;display:flex;justify-content:flex-end;align-items:center;margin-left:auto}button.svelte-x5np8h:not(.close){display:inline-block;max-width:112px;height:25px;overflow:hidden;background-color:#0000004d;border-radius:50px;color:#fff;vertical-align:middle;text-align:center;position:relative;margin:0 .3rem;padding:0 15px 0 30px}.mobile .close.svelte-x5np8h{margin-right:4%}@media screen and (max-width: 900px){.title.svelte-x5np8h{font-size:small}button.svelte-x5np8h{height:20px;margin:0 3px}main:not(.mobile) .budget.svelte-x5np8h{flex-wrap:wrap}}@media screen and (max-width: 400px){button.svelte-x5np8h{max-width:80px}}.navigation.svelte-1nfs7vf.svelte-1nfs7vf{text-align:center;display:flex;justify-content:center;position:relative;z-index:10;width:100%}.navigation.svelte-1nfs7vf nav.svelte-1nfs7vf{width:80%;height:44px;margin-top:5px;border-width:.1rem 0!important;border:solid rgba(207,186,143,.5);display:flex;justify-content:center;background-image:linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,.6),rgba(0,0,0,.6),rgba(0,0,0,0))}nav.svelte-1nfs7vf .nav-link.svelte-1nfs7vf{height:44px;display:inline-flex;justify-content:center;align-items:center;color:#ede5d8;margin:0 15px;line-height:0;border-radius:100%;opacity:.6;transition:all .2s}nav.svelte-1nfs7vf .nav-link.active.svelte-1nfs7vf{color:#fff;opacity:1}nav.svelte-1nfs7vf .nav-link.svelte-1nfs7vf:hover{opacity:.9}nav.svelte-1nfs7vf .nav-link i.svelte-1nfs7vf{font-size:1.5rem}.mobile .navigation.svelte-1nfs7vf.svelte-1nfs7vf{flex-direction:column;align-items:flex-end;width:70px;margin-top:0;height:100%;justify-content:flex-start;padding-top:0}.mobile nav.svelte-1nfs7vf.svelte-1nfs7vf{display:block;height:100vh;background-color:#484f62;z-index:-1;text-align:center;border-width:0 .1rem!important;width:40px;margin-top:0;padding-top:50px;background-image:none}.mobile nav.svelte-1nfs7vf .nav-link.svelte-1nfs7vf{font-size:1.7rem;margin:5px 0;height:unset;position:relative;line-height:1rem;padding:.3rem;opacity:unset;background-color:#3a4156}.mobile nav.svelte-1nfs7vf .nav-link.active.svelte-1nfs7vf{color:#3a4156;background-color:transparent}.mobile nav.svelte-1nfs7vf .nav-link.svelte-1nfs7vf:after{position:absolute;top:0;right:-.2rem;content:"";display:block;width:1000%;height:100%;border-top-right-radius:40px;border-bottom-right-radius:40px;z-index:-1;transition:all .2s}.mobile nav.svelte-1nfs7vf .nav-link.active.svelte-1nfs7vf:after{background-color:#ede5d8}@media screen and (max-width: 900px){main:not(.mobile) .navigation.svelte-1nfs7vf nav.svelte-1nfs7vf{height:40px;width:100%}nav.svelte-1nfs7vf .nav-link.svelte-1nfs7vf{height:40px}}button.svelte-c3y0zy{width:100%}.filter.svelte-1rly4ni.svelte-1rly4ni{height:3rem;width:100%}.filter.svelte-1rly4ni .row.svelte-1rly4ni{width:100%;height:100%;display:flex;align-items:center;padding:0 2%}.filter.svelte-1rly4ni .checkbox{color:var(--tertiary-color)}.list-item.svelte-wb8xi8{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;width:100%}.list-item.svelte-wb8xi8:hover{will-change:scroll-position}.item.svelte-wb8xi8{margin:.5rem;aspect-ratio:8.75 / 10;width:20vh;max-width:135px}.mobile .item.svelte-wb8xi8{width:24vh}@media screen and (max-width: 400px){.item.svelte-wb8xi8{width:14vh}}.outfit-toggle.svelte-ze6nxk.svelte-ze6nxk{position:absolute;top:0;left:0;padding-top:1rem;padding-left:1rem;z-index:+2;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.column.svelte-ze6nxk.svelte-ze6nxk{width:10vw;max-width:120px;min-width:90px;aspect-ratio:1/1;padding:.3rem;display:inline-block;flex-direction:column;position:relative}.column.svelte-ze6nxk button.svelte-ze6nxk{border-radius:5%;display:flex;flex-direction:column;text-align:center;background-color:#596982;color:#e8dfbb;line-height:1.2rem;position:relative}.column.svelte-ze6nxk button.svelte-ze6nxk:after{content:"";position:absolute;z-index:-1;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;border-radius:8%;border:.2rem solid rgba(234,195,67,.7);opacity:0;transition:opacity .15s}.column.svelte-ze6nxk:not(.disabled):hover button.svelte-ze6nxk:after,button.selected.svelte-ze6nxk.svelte-ze6nxk:after{opacity:1}.column.disabled.svelte-ze6nxk.svelte-ze6nxk:before{content:attr(data-text);color:#e8dfbb;display:flex;justify-content:center;align-items:center;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:calc(100% - .6rem);height:calc(100% - .6rem);background-color:#0009;border-radius:.5em;z-index:+2;font-size:calc(.12 * var(--width))}.column.svelte-ze6nxk button.svelte-ze6nxk{width:100%;height:100%}caption.svelte-ze6nxk.svelte-ze6nxk{width:100%;display:flex;justify-content:center;align-items:center;height:40%;font-size:calc(.095 * var(--width));line-height:1.15em}picture.svelte-ze6nxk.svelte-ze6nxk{display:block;width:100%;height:70%;margin:auto;background-size:cover;border-top-right-radius:.5em;border-top-left-radius:.5em}img.svelte-ze6nxk.svelte-ze6nxk{height:100%}.apply.svelte-ze6nxk.svelte-ze6nxk{width:100%;text-align:center;font-size:90%}.handler-container.svelte-ysz1nw.svelte-ysz1nw{width:100%;height:100%;position:fixed;top:0;left:0;z-index:+15;pointer-events:none}.wrapper.svelte-ysz1nw.svelte-ysz1nw{width:100%;height:100%;display:flex;justify-content:center;align-items:center;position:relative}.wrapper.svelte-ysz1nw>div,.wrapper.svelte-ysz1nw button{pointer-events:initial}.share.svelte-ysz1nw.svelte-ysz1nw{display:flex;width:100%;text-align:right;justify-content:flex-end;align-items:center;position:absolute;bottom:5%;right:8%;color:#fff;font-size:.8rem;z-index:999}.detail.svelte-ysz1nw.svelte-ysz1nw{position:absolute;left:5%;bottom:2%;display:block;color:#fff;font-size:large;-webkit-text-stroke:#000 .015rem;filter:drop-shadow(0 0 .5rem rgba(0,0,0,.5)) drop-shadow(0 0 1rem rgba(0,0,0,1))}.detail.svelte-ysz1nw span.svelte-ysz1nw,.detail.svelte-ysz1nw small.svelte-ysz1nw{display:block;white-space:nowrap}.detail.svelte-ysz1nw .qty.svelte-ysz1nw{font-size:larger}@media screen and (max-width: 520px){.detail.svelte-ysz1nw.svelte-ysz1nw{font-size:120%}}section.svelte-1qdldct{display:block;width:100%;height:100%;position:relative;background-color:#000}.header.svelte-1qdldct{position:relative;width:100%;display:flex;padding:15px 2%;z-index:+2}.mobile .header.svelte-1qdldct{position:fixed;top:0;right:0;width:calc(100% - 65px);display:flex;justify-content:space-between;padding:5px 2%}.body.svelte-1qdldct{display:flex;flex-direction:column;width:100%;height:100%;position:relative;z-index:+1}.mobile .body.svelte-1qdldct{flex-direction:row}.body-content.svelte-1qdldct{display:flex;flex-direction:column;width:100%;height:100%}.container.svelte-1qdldct{height:calc(var(--headerHeight) - 6.3rem);display:block;width:100%;padding:0 2%;margin-top:2px}.mobile .container.svelte-1qdldct{margin-top:45px;height:calc(100% - 85px)}@media screen and (max-width: 900px){.container.svelte-1qdldct{height:calc(var(--headerHeight) - 7rem);margin-top:0}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-db37b75c.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-db37b75c.css
deleted file mode 100644
index 3cc011f7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-db37b75c.css
+++ /dev/null
@@ -1 +0,0 @@
-.content-container.svelte-qxewu4{min-width:90%;height:50vh;position:relative}.wrapper.svelte-qxewu4{width:100%;height:100%;overflow-x:auto}.wrapper.svelte-qxewu4::-webkit-scrollbar{display:none}.tutup.svelte-qxewu4{width:calc(.035 * var(--content-width));aspect-ratio:1/1;position:absolute;top:6%;right:2%}.old.svelte-qxewu4{position:absolute;z-index:+2;bottom:5%;left:50%;transform:translate(-50%) translateY(200%);text-decoration:underline;transition:all .2s}.old.svelte-qxewu4:hover{color:#daa520}.book.svelte-qxewu4{position:relative;display:block;margin:auto;height:50vh;max-height:900px;aspect-ratio:487/257;background-size:cover;background-image:var(--bg);padding:calc(.015 * var(--content-width)) calc(.09 * var(--content-width))}@media screen and (min-width: 700px){.content-container.svelte-qxewu4,.book.svelte-qxewu4{height:unset!important;width:95%}}.mobile .content-container.svelte-qxewu4,.mobile .book.svelte-qxewu4{height:85vh!important;width:auto}.book-content.svelte-qxewu4{width:100%;height:93%;display:flex;flex-direction:column}.gi-arrow-up.svelte-4nnp0e.svelte-4nnp0e{font-size:1.2rem;vertical-align:middle;line-height:0;color:#51be51}.gi-star.svelte-4nnp0e.svelte-4nnp0e{color:#feca33}.svelte-4nnp0e:not(.v2) h3.svelte-4nnp0e,.svelte-4nnp0e:not(.v2) .table .body .row.svelte-4nnp0e{vertical-align:middle;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}h3.svelte-4nnp0e.svelte-4nnp0e{padding:0 .7rem;font-weight:400;background-color:#a28052;display:flex;align-items:center;margin-bottom:1%}.v2.svelte-4nnp0e h3.svelte-4nnp0e{color:#fff;font-size:calc(.015 * var(--content-width));padding:.5% 2%;margin:0}h3.svelte-4nnp0e span.svelte-4nnp0e{padding-left:2rem}h3.star5.svelte-4nnp0e.svelte-4nnp0e{background-color:#dbbba4}.v2.svelte-4nnp0e h3.star5.svelte-4nnp0e{background-color:#cfb383}h3.star4.svelte-4nnp0e.svelte-4nnp0e{background-color:#b7abbf}.v2.svelte-4nnp0e h3.star4.svelte-4nnp0e{background-color:#b5a8c9}h3.star3.svelte-4nnp0e.svelte-4nnp0e{background-color:#a5bacc}.v2.svelte-4nnp0e h3.star3.svelte-4nnp0e{background-color:#aabdc9}h4.svelte-4nnp0e.svelte-4nnp0e{color:#a28052;font-weight:500;font-size:larger;margin-top:1%;margin-bottom:2%}.v2.svelte-4nnp0e h4.svelte-4nnp0e{color:var(--text-color);font-size:calc(.015 * var(--content-width))}.table.svelte-4nnp0e.svelte-4nnp0e{padding:0 0 2rem;width:100%;font-size:.9rem}.row.svelte-4nnp0e.svelte-4nnp0e{display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;width:100%;border:.2px solid #b5b2ae}.row.head.svelte-4nnp0e.svelte-4nnp0e{background-color:#dbd7d3;font-family:var(--genshin-font)}.body.svelte-4nnp0e .row.svelte-4nnp0e{border-top:0}.cell.svelte-4nnp0e.svelte-4nnp0e:nth-child(odd){width:calc(3 / 14 * 100%)}.cell.svelte-4nnp0e.svelte-4nnp0e:nth-child(even){width:calc(4 / 14 * 100%)}.cell.svelte-4nnp0e.svelte-4nnp0e{display:inline-flex;justify-content:center;align-items:center;padding:1rem .5rem;height:100%;text-align:center;line-height:1.2rem;height:3.2rem}.v2.svelte-4nnp0e .cell.svelte-4nnp0e{font-size:calc(.015 * var(--content-width));height:calc(.05 * var(--content-width))}.head.svelte-4nnp0e .cell.svelte-4nnp0e{border:solid #b5b2ae;border-width:0 .07rem}.body.svelte-4nnp0e .cell.svelte-4nnp0e{border:solid #b5b2ae;border-width:0 .07rem .07rem 0;color:#a7865a}p.svelte-1e5rxgv span:not([class*="-flat"]){color:#cf5e47}p.svelte-1e5rxgv span.invocation{color:#ef7c1a}p.svelte-1e5rxgv span.starglitter{color:#c37b4d}p.svelte-1e5rxgv span.stardust{color:#a256e1}p.svelte-1e5rxgv span.wish{color:#debd6c}p.svelte-1e5rxgv span.electro-flat{color:#ca82fc}p.svelte-1e5rxgv span.std-flat{color:#757acd}p.svelte-1e5rxgv span .weapon{color:#bd6932}p.svelte-1e5rxgv.svelte-1e5rxgv{font-size:150%;line-height:170%;margin:1rem 0}.v2.svelte-1e5rxgv p.svelte-1e5rxgv{font-size:calc(.017 * var(--content-width))}h2.svelte-1e5rxgv.svelte-1e5rxgv{font-size:calc(.015 * var(--content-width));padding:calc(.007 * var(--content-width)) 0;display:flex}h3.svelte-1e5rxgv.svelte-1e5rxgv{padding:.2rem .7rem;font-weight:400;color:#fff;background-color:#a28052;vertical-align:middle}.v2.svelte-1e5rxgv h3.svelte-1e5rxgv{background-color:#6f778a;font-size:calc(.015 * var(--content-width))}.beginner.svelte-1imao0e span{color:#cba885}.gi-star.svelte-1imao0e.svelte-1imao0e{color:#feca33}h2.svelte-1imao0e.svelte-1imao0e,h3.svelte-1imao0e.svelte-1imao0e{vertical-align:middle;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}h2.svelte-1imao0e.svelte-1imao0e{font-size:1.5rem;font-weight:500;padding:1rem 0;margin:1.5rem 0 .5rem;display:flex}.mobile h2.svelte-1imao0e.svelte-1imao0e{font-size:1.2rem;margin:.5rem 0}h2.svelte-1imao0e span.svelte-1imao0e:not(.line){color:var(--text-color);width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;white-space:nowrap;padding-right:1rem}h2.svelte-1imao0e span.line.svelte-1imao0e{width:100%;position:relative}h2.svelte-1imao0e span.line.svelte-1imao0e:after{content:"";display:block;position:absolute;right:0;top:50%;transform:translateY(-50%);width:100%;height:.1rem;background-color:#d1cfcc}h3.svelte-1imao0e.svelte-1imao0e{padding:.2rem .7rem;font-weight:400;color:#fff;background-color:#a28052;display:flex;align-items:center}h3.svelte-1imao0e span.svelte-1imao0e{padding-left:2rem;color:var(--text-color)}h3.star5.svelte-1imao0e.svelte-1imao0e{background-color:#dbbba4}h3.star4.svelte-1imao0e.svelte-1imao0e{background-color:#b7abbf}.character-card.svelte-1imao0e.svelte-1imao0e{background-color:#4d4d4d;width:30%;min-width:250px;max-width:320px;aspect-ratio:320/120;margin:1rem .5rem 0;position:relative;padding:1rem;display:inline-flex;overflow:hidden}.character-card.svelte-1imao0e.svelte-1imao0e:after{content:"";display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border:.1rem solid #6d6a63;width:calc(100% - .8rem);height:calc(100% - .8rem)}.mobile .character-card.svelte-1imao0e.svelte-1imao0e{min-width:unset}picture.svelte-1imao0e.svelte-1imao0e{height:100%;display:inline-block;aspect-ratio:1/1;background-size:cover;position:relative;overflow:hidden}img.svelte-1imao0e.svelte-1imao0e{width:100%;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0}img.claymore.svelte-1imao0e.svelte-1imao0e{transform:rotate(18deg) scale(1.15) translate(-.7em)}img.bow.svelte-1imao0e.svelte-1imao0e{transform:rotate(10deg) scale(1.25) translate(-.5em)}img.polearm.svelte-1imao0e.svelte-1imao0e{transform:rotate(10deg) scale(1.5) translate(-12%,12%);height:200%}img.sword.svelte-1imao0e.svelte-1imao0e{transform:rotate(10deg) scale(1.2) translateY(-1em) translate(-.2em,.5em)}picture.svelte-1imao0e i.svelte-1imao0e{position:absolute;z-index:+1;top:0;left:0;font-size:1.3rem}caption.svelte-1imao0e.svelte-1imao0e{color:#fff;padding:.5rem 1rem;position:relative;display:inline-flex;align-items:flex-start;justify-content:stretch;text-align:left}caption.svelte-1imao0e.svelte-1imao0e:after{content:"";display:block;right:0;width:calc(100% - 1rem);height:.1rem;top:70%;position:absolute;background-color:#fff}@media screen and (max-width: 600px){.character-card.svelte-1imao0e.svelte-1imao0e{min-width:calc(50% - 1rem)}}.element.svelte-1imao0e.svelte-1imao0e{color:#fff;opacity:.08;font-size:7em;display:inline-block;position:absolute;right:0;bottom:0;transform:translate(25%,35%)}.beginner.svelte-12g50c8 span{color:#cba885}.gi-star.svelte-12g50c8.svelte-12g50c8{color:#feca33}h2.svelte-12g50c8.svelte-12g50c8{font-size:calc(.015 * var(--content-width));padding:calc(.007 * var(--content-width)) 0;display:flex}h2.svelte-12g50c8 span.svelte-12g50c8{color:var(--text-color);width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;white-space:nowrap;padding-right:1rem}h3.svelte-12g50c8.svelte-12g50c8{padding:.2rem .7rem;font-weight:400;font-size:calc(.014 * var(--content-width));color:#fff;display:flex;align-items:center;line-height:0;padding:.5% 1%}h3.svelte-12g50c8 span.svelte-12g50c8{padding-left:2rem;color:#fff}h3.star5.svelte-12g50c8.svelte-12g50c8{background-color:#cfb383}h3.star4.svelte-12g50c8.svelte-12g50c8{background-color:#b5a8c9}.row.svelte-12g50c8.svelte-12g50c8{display:flex;width:100%}.name.svelte-12g50c8.svelte-12g50c8{flex-basis:35%;padding:1.5%}.name.svelte-12g50c8 span.svelte-12g50c8{font-size:calc(.014 * var(--content-width));display:block;padding:1% 0}.pic.svelte-12g50c8.svelte-12g50c8{flex-basis:65%;padding-bottom:1%}.pic-item.svelte-12g50c8.svelte-12g50c8{margin:2% 1.5% 0 0;padding-bottom:4%;display:inline-block;position:relative;background-color:#fff;border-radius:4%;overflow:hidden}picture.svelte-12g50c8.svelte-12g50c8{height:calc(.095 * var(--content-width));display:block;aspect-ratio:1/1;background-size:cover;position:relative;overflow:hidden;border-bottom-right-radius:20%}img.svelte-12g50c8.svelte-12g50c8{width:100%;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0}img.claymore.svelte-12g50c8.svelte-12g50c8{transform:rotate(18deg) scale(1.15) translate(-.7em)}img.bow.svelte-12g50c8.svelte-12g50c8{transform:rotate(10deg) scale(1.25) translate(-.5em)}img.polearm.svelte-12g50c8.svelte-12g50c8{transform:rotate(10deg) scale(1.5) translate(-12%,12%);height:200%}img.sword.svelte-12g50c8.svelte-12g50c8{transform:rotate(10deg) scale(1.2) translateY(-1em) translate(-.2em,.5em)}.stars.svelte-12g50c8.svelte-12g50c8{position:absolute;bottom:10%;left:50%;font-size:calc(.015 * var(--content-width));transform:translate(-50%)}picture.svelte-12g50c8 i.svelte-12g50c8{position:absolute;z-index:+1;top:0;left:0;font-size:1.3rem}caption.svelte-12g50c8.svelte-12g50c8{font-size:calc(.013 * var(--content-width));display:block;width:100%;text-align:center;position:absolute;padding:3%}h1.svelte-1hvqddr.svelte-1hvqddr{font-size:1.7rem;text-align:left;background-color:#dadada;padding:.5rem 5%;display:flex;align-items:center;position:relative}.mobile h1.svelte-1hvqddr.svelte-1hvqddr{font-size:1.3rem}h1.v2.svelte-1hvqddr.svelte-1hvqddr{background-color:transparent;font-size:calc(.022 * var(--content-width));vertical-align:middle;padding:calc(.01 * var(--content-width)) 0}h1.svelte-1hvqddr img.svelte-1hvqddr{width:calc(.03 * var(--content-width));margin-right:calc(.01 * var(--content-width))}h1.svelte-1hvqddr.svelte-1hvqddr:not(.v2):before{content:"";display:block;position:absolute;width:.8rem;height:80%;left:0;top:50%;transform:translateY(-50%);background-color:var(--text-color)}nav.svelte-7ts4ef.svelte-7ts4ef{width:100%;line-height:0;display:flex;align-items:center;justify-content:space-evenly;background-size:cover;background-position:center center}.nav-item.svelte-7ts4ef.svelte-7ts4ef{width:33.33333%;padding:0;display:flex;justify-content:center}.nav-item.svelte-7ts4ef button.svelte-7ts4ef{font-size:calc(.017 * var(--content-width));width:100%;aspect-ratio:557/86;opacity:.8;background-size:contain;background-position:center center;background-repeat:no-repeat;transition:all .2s}.nav-item.active.svelte-7ts4ef button.svelte-7ts4ef,.nav-item.svelte-7ts4ef button.svelte-7ts4ef:hover{background-image:url(data:image/webp;base64,UklGRuwEAABXRUJQVlA4WAoAAAAQAAAAKwEAMAAAQUxQSH0BAAABgEJt27LmxeauzSsanUymO0T63H0N6lgmcmhzadT5xtzd/T//j8MXnxgRE0A5ipSB2B8Hxt9YQCkippplLg5IblnDpDQYB2WwlIV8GxXbchb6c1Sc61loz1BxpmVhvUfFnTW/EvuGgAphw16SR1XvYxyYj71VOVWNvceh+T5WlUPZwEccnJ+DZVmkvpc4PF980kzGWBygMWOGxnAcouHGNM8nRj49RNS0HgfpehOR+xsl326qicRhGqkxHeHkyNTxjZPvjhCPEz60GQfq5iNSHn+R8schhftAyscpUk4XBZwIi34eJ7zf/oSTJ0drFCfRtsJpASXCdCGZr1ByZSYqnUFJsIyIDCcYOTEQERWM8wjhxwvSqH0OIXPtlFm/jY9tPWUV267QcWUTZ6MC7xU2rrwFlGuBax8Z+64Cyl1qXORRwS8apZS35RYVtxZiqDtDxZmOhf4cFed6FvJtVGzLWZQGUTFbyoI0yxwiuGUNMRUpA7E/Dox/sYBSlAsAVlA4IEgDAABwFgCdASosATEAPlEmj0WjoiEiopgMUHAKCWcDyE4D3GgalpKNufSrTlG6/4HRwJ8fjMWOtzhg+/VupDXbutNKQ127r8B56ZwFQ0KiDO8f0bRALDyOFanPFD4UOCQPNucJgeVzmh7Eh4LW6YT48bBMV2Es6oWg3d2YoQ6gIIRBFYaFdZWyQeYHIohg0eTISZK7lrVPFXMm2OrTYBjpg9tTtGrF9Zpzg9Fz4RBo+TAtMNiXrDT+xCkRtAK9oAD++yyqMfJtYdJKgf2vrcNlZHq/DVUvFH6ZJK7IOrgZ93A5P1phmNx49/vcI1iLQR9fGhKNUXTL0BqDOaHlBCl+VeBjr5Zggy4F8iMxYUff5SqgwW7UGC3OsK1jAYPYAqsJZv+1VVCYIUm2D37147bJNVKgvZBTq2chCN1Q7ZymeKwhMqwPaLP9Bs/8Trz57hxOj9pWfEwugAuH63BuUK/uCQS0YebG3AgduCPvf8/1bX3mfizRuMODha1URGbCF2vE7tF/53tI8Nnw+lyx1RkqXhdrYn3PtomSCdgaRN8cvcR8Jk1J4dZppG0OuT1ikz2KPR1aFxONss8Ad/2W3WsZmVYOMV7LKM0uWE9deCoJfspH6el+zVaVfZoAoJgp7a8GTl0AiloTgFbahcJ93vIuQ26q68eP2Uy6kfDLbTLOH/VpMm3PnlLJid+keLuErU5yXjN0qFQu83BL58NQoaeO8CYWuhtPbaSTcmEsg3Cc4eurv3LEhLLj6MC1z8mQ0BrsXYp/SHIuU3LfAmf0rtMi5fXrBDFYB9Cqqgl/Dx3GqXlykoqZ7JN4O9P8E4VkZzUbpndg1ileL9220RAgFWZOwDNnoaj86MTL/lJltaA+0CuOfTWj5ir10bx/JG+Kt/xa78WiNULXV9LbCKhOIDJze8+lKVY2OrCV6rbDCfcyz60+srrneBxx1sL4HwowjVYf0ZRr/Le9qcLeqHv71USrK5Ih7iKYdwDC/RHvM0/VVOFCjU1mpAfJU9z5Ob6TnCMSDQ5EuXAOWkQxyxAqn8UhVw5xm/9ZpWEBfMfhcbI3W2k6z4fuh/SEiAAAABtCZhqluII+AYbJsmRLyfzH6eMYZVEUkAgH4EaAAAA=);color:#fff}.nav-item.active.svelte-7ts4ef button.svelte-7ts4ef{opacity:1}.content.svelte-7ts4ef.svelte-7ts4ef{height:100%}.confirmation.svelte-1a125q5{display:flex;justify-content:center;align-items:center;width:100%;height:100%;font-family:var(--genshin-font);padding:3%}.reset.svelte-1a125q5{color:#bd6932;font-size:1em}.v2.reset.svelte-1a125q5{font-size:calc(.016 * var(--content-width))}.reset.svelte-1a125q5:hover{text-decoration:underline}.selectType.svelte-1r197t2.svelte-1r197t2{width:100%;display:flex;align-items:center}.reset.svelte-1r197t2.svelte-1r197t2{text-align:right}.wish-type.svelte-1r197t2.svelte-1r197t2{display:flex;align-items:center;justify-content:center;width:100%}.wish-type.svelte-1r197t2 span.svelte-1r197t2{padding:5px}.select-box.svelte-1r197t2.svelte-1r197t2{width:270px;max-width:100%;position:relative;margin:0 15px}.selected.svelte-1r197t2 .arrow.svelte-1r197t2{position:absolute;top:50%;right:1rem;font-size:2rem;transform:translateY(-50%)}.selected.svelte-1r197t2.svelte-1r197t2,.select-list.svelte-1r197t2.svelte-1r197t2{width:100%;border:.15rem solid #b5b2ae;background-color:#dbd7d3;border-radius:.25rem}.selected.svelte-1r197t2.svelte-1r197t2,.item.svelte-1r197t2.svelte-1r197t2{text-align:left;display:block;width:100%;color:#757575;text-decoration:none;padding:6px 15px;transition:background .2s}.item.active.svelte-1r197t2.svelte-1r197t2,.item.svelte-1r197t2.svelte-1r197t2:hover{background-color:#efebe7}.select-list.svelte-1r197t2.svelte-1r197t2{position:absolute;z-index:+1;top:130%;left:50%;transform:translate(-50%)}@media screen and (max-width: 495px){.wish-type.svelte-1r197t2.svelte-1r197t2:not(.v2){flex-direction:column}}.mobile .wish-type.svelte-1r197t2.svelte-1r197t2{font-size:.9em}.wish-type.v2.svelte-1r197t2.svelte-1r197t2{background-image:var(--bg);background-size:contain;background-repeat:no-repeat;aspect-ratio:201/11;justify-content:flex-start;font-size:calc(.014 * var(--content-width));margin-bottom:calc(.005 * var(--content-width))}.wish-type.v2.svelte-1r197t2>span.svelte-1r197t2{width:calc(.23 * var(--content-width));text-align:right;line-height:90%}.v2.svelte-1r197t2 .select-box.svelte-1r197t2{width:100%;margin:0}.v2.svelte-1r197t2 .selected.svelte-1r197t2{padding-left:calc(.035 * var(--content-width));font-size:calc(.014 * var(--content-width));color:var(--text-color);background-color:transparent;border:transparent}.v2.svelte-1r197t2 .select-list.svelte-1r197t2{background-color:#646975;border:0;border-radius:1rem;overflow:hidden}.v2.svelte-1r197t2 .item.svelte-1r197t2{color:#eee;padding:calc(.02 * var(--content-width)) calc(.03 * var(--content-width));position:relative;margin:.5% 1%;width:98%}.v2.svelte-1r197t2 .item.active.svelte-1r197t2,.v2.svelte-1r197t2 .item.svelte-1r197t2:hover{background-color:#717887;border-radius:3rem}.v2.svelte-1r197t2 .item.active.svelte-1r197t2:after{content:"\2714";color:#eee;position:absolute;display:block;top:50%;right:5%;font-size:170%;line-height:0;transform:translateY(-50%)}.selectType.v2.svelte-1r197t2 .reset.svelte-1r197t2{width:calc(.13 * var(--content-width));text-align:center}.arrow.icon.svelte-1r197t2.svelte-1r197t2{width:calc(.02 * var(--content-width));background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAASCAMAAAAJ4/xdAAAAY1BMVEVHcExZUlJZUVFVTU1YUVFYUVFZUVFZUlJZUlJYTU1ZUFBZUVFYUVFYT09ZRUVXTk5YUVFZUlJZQ0NYUVFZUVFZUlJZUVFZUlJYTk5ZUVFZUlJYT09ZUVFYUlJOTk5OTk5ZUlKPb9bhAAAAIHRSTlMAz+kiZfbk8foSSKpVNAgqsokLxqTbcsAbhNc6j5YGDUB/3r0AAACpSURBVBgZfcEFEoMwAATAC0Rxrcv9/5UFmjBAobtYKytj0hJ/JIYDk+CQtJxYiQM1Z1fsKVIudAV+uJYrZ4eNuOfGLcbKPaKnFL0ox0Km6EX5PaKnMsxODG4xEPf07Anek8HZYeBaBg+MmopB98KkSBlUDeAEgytmNYPWIaVnJRakpddB8cskWEkMvww0J7rERq456SE5Ehf8uAiOJJAJq+sGO94PbUWGD0o8IC9WAY0jAAAAAElFTkSuQmCC);background-size:contain;background-repeat:no-repeat}.v2.svelte-1r197t2 .arrow.icon.up.svelte-1r197t2{transform:translateY(-50%) rotate(0)}.v2.svelte-1r197t2 .arrow.icon.down.svelte-1r197t2{transform:translateY(-50%) rotate(180deg)}.star4.svelte-1ld9lf9.svelte-1ld9lf9,.lighted.svelte-1ld9lf9.svelte-1ld9lf9{color:#a256e1}.star5.svelte-1ld9lf9.svelte-1ld9lf9{color:#bd6932}.cell.svelte-1ld9lf9.svelte-1ld9lf9{width:33.33333333333%;font-size:calc(.014 * var(--content-width))}.lighted.svelte-1ld9lf9 img{width:20px;border-radius:100%;aspect-ratio:1/1;border:1px solid orange}.v2.svelte-1ld9lf9 .lighted.svelte-1ld9lf9 img{position:absolute;right:0;top:0;transform:translate(125%,-20%)}.table-filter.svelte-7nxbbl.svelte-7nxbbl{position:relative}.filter-selected.svelte-7nxbbl.svelte-7nxbbl{display:inline-block;border:1px solid #c3a280;border-radius:.2rem;padding:.3rem 1rem;text-align:center}.table-filter.svelte-7nxbbl .options.svelte-7nxbbl{position:absolute;top:110%;right:0;width:100%;display:flex;flex-direction:column;z-index:+1;background:#e8e6e5;border:1px solid #c3a280;border-radius:.3rem;padding:0 .2rem}.table-filter.svelte-7nxbbl .options span.svelte-7nxbbl{padding:.3rem 1rem;transition:all .2s;border-bottom:.5px solid #c8c8c8}.table-filter.svelte-7nxbbl .options span.svelte-7nxbbl:hover{background-color:#d6d1cb}.table-filter.v2.svelte-7nxbbl.svelte-7nxbbl{font-size:calc(.012 * var(--content-width));margin-left:auto;margin-top:auto;margin-bottom:.5%}.table-filter.v2.svelte-7nxbbl .options.svelte-7nxbbl{background-color:#646975;border:0;padding:0;color:#fff;overflow:hidden}.v2.svelte-7nxbbl .options span.svelte-7nxbbl{border:0;padding:calc(.015 * var(--content-width)) calc(.02 * var(--content-width));position:relative;margin:1%}.v2.svelte-7nxbbl .options span.svelte-7nxbbl:hover{background-color:#717887}.v2.svelte-7nxbbl .options span.active.svelte-7nxbbl,.v2.svelte-7nxbbl .options span.svelte-7nxbbl:hover{background-color:#717887;border-radius:3rem}.v2.svelte-7nxbbl .options span.active.svelte-7nxbbl:after{content:"\2714";color:#eee;position:absolute;display:block;top:50%;right:10%;font-size:170%;line-height:0;transform:translateY(-50%)}.star5.svelte-44dcek.svelte-44dcek{color:#bd6932}.legend.v2.svelte-44dcek.svelte-44dcek{font-size:calc(.013 * var(--content-width))}.legend.svelte-44dcek.svelte-44dcek{display:flex;flex-wrap:wrap;margin:1% auto 0;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-weight:600}.legend.svelte-44dcek .item.svelte-44dcek{padding-left:1.5rem;text-transform:capitalize}@media screen and (max-width: 640px){.legend.svelte-44dcek:not(.v2) .item.svelte-44dcek{min-width:40%;max-width:50%}}a.svelte-109z5ik.svelte-109z5ik{margin:5px}span.status.svelte-109z5ik.svelte-109z5ik{font-size:80%;margin-left:5%}.table.svelte-109z5ik.svelte-109z5ik{width:100%;height:21.5rem}.row.svelte-109z5ik.svelte-109z5ik{display:flex;justify-content:stretch;align-items:center;width:100%;border:.2px solid #b5b2ae;height:3rem}.row.head.svelte-109z5ik.svelte-109z5ik{background-color:#dbd7d3;font-weight:700}.body.svelte-109z5ik .row.svelte-109z5ik{border-top:0}.cell0.svelte-109z5ik.svelte-109z5ik{width:calc(1 / 12 * 100%);border-right:.2px solid #b5b2ae}.cell1.svelte-109z5ik.svelte-109z5ik{min-width:80px;width:calc(2 / 12 * 100%);border-right:.2px solid #b5b2ae}.cell2.svelte-109z5ik.svelte-109z5ik{width:calc(4 / 12 * 100%);border-right:.2px solid #b5b2ae;min-width:15rem}.cell3.svelte-109z5ik.svelte-109z5ik{width:calc(2.5 / 12 * 100%);border-right:.2px solid #b5b2ae;min-width:12rem}.cell4.svelte-109z5ik.svelte-109z5ik{width:calc(2.5 / 12 * 100%);min-width:12rem}.cell.svelte-109z5ik.svelte-109z5ik{display:inline-flex;justify-content:center;align-items:center;padding:1rem .5rem;height:100%;text-align:center;line-height:1rem}.cell.svelte-109z5ik a.svelte-109z5ik,.cell.svelte-109z5ik span.svelte-109z5ik{color:#dda04f}.gi-star.svelte-109z5ik.svelte-109z5ik{font-size:.8em}.star4.svelte-109z5ik.svelte-109z5ik{color:#a256e1}.star5.svelte-109z5ik.svelte-109z5ik{color:#bd6932}.table.v2.svelte-109z5ik.svelte-109z5ik{font-size:calc(.015 * var(--content-width));color:#8e8e8e;height:unset}.table.v2.svelte-109z5ik .row.head.svelte-109z5ik{color:var(--text-color);background-color:#ede1ca}.table.v2.svelte-109z5ik .row.svelte-109z5ik:not(.head){background-color:#f6f1e7}.table.v2.svelte-109z5ik .row.svelte-109z5ik{height:calc(.045 * var(--content-width))}.table.v2.svelte-109z5ik .cell.svelte-109z5ik,.table.svelte-109z5ik .row.svelte-109z5ik{border-color:#d5bf94;line-height:120%}.table.v2.svelte-109z5ik .row:not(.head) .cell1.svelte-109z5ik,.table.v2.svelte-109z5ik .row:not(.head) .cell3.svelte-109z5ik,.table.v2.svelte-109z5ik .row:not(.head) .cell4.svelte-109z5ik{font-size:calc(.013 * var(--content-width))}.v2.svelte-109z5ik .cell0.svelte-109z5ik,.v2.svelte-109z5ik .cell1.svelte-109z5ik,.v2.svelte-109z5ik .cell2.svelte-109z5ik,.v2.svelte-109z5ik .cell3.svelte-109z5ik,.v2.svelte-109z5ik .cell4.svelte-109z5ik{min-width:unset}p.svelte-pw412y.svelte-pw412y{padding:1rem 0}.info.svelte-pw412y.svelte-pw412y{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:.5rem}.info.svelte-pw412y>.right.svelte-pw412y{display:flex;flex-direction:column;align-items:flex-end}@media screen and (max-width: 450px){.info.svelte-pw412y.svelte-pw412y{flex-direction:column;width:100%}.left.svelte-pw412y.svelte-pw412y{width:100%}}.row.svelte-pw412y.svelte-pw412y{display:flex}.container.svelte-pw412y.svelte-pw412y{height:100%}p.v2.svelte-pw412y.svelte-pw412y{color:#8e8e8e;line-height:120%;padding:calc(.008 * var(--content-width)) 0;font-size:calc(.014 * var(--content-width))}section.svelte-1wx1xeh.svelte-1wx1xeh{background-color:#ebebeb;width:100%;height:100%;color:var(--text-color);overflow-y:auto;position:relative;z-index:+1}section.v2.svelte-1wx1xeh.svelte-1wx1xeh{background-color:transparent;position:absolute;top:0;left:0}.content-details.svelte-1wx1xeh.svelte-1wx1xeh:not(.v2){font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.content-details.svelte-1wx1xeh h1,.content-details.svelte-1wx1xeh .pop-footer button{font-family:var(--genshin-font)}.header.svelte-1wx1xeh.svelte-1wx1xeh{display:flex;padding:0 2%;justify-content:space-between;background-color:#14120f;width:100%;position:fixed;top:0;left:0;z-index:+10}.gi-reply.svelte-1wx1xeh.svelte-1wx1xeh{color:#dbd7d3;font-size:2.2rem;line-height:0;padding:.3rem 1rem;display:inline-block}.switchNewTpl.svelte-1wx1xeh.svelte-1wx1xeh{color:#b8860b;text-decoration:underline;transition:all .3s}.switchNewTpl.svelte-1wx1xeh.svelte-1wx1xeh:hover{color:#ffeed5}.content-details.svelte-1wx1xeh.svelte-1wx1xeh{padding:4rem 10% 1rem;width:100%;overflow-x:hidden}.content-details.v2.svelte-1wx1xeh.svelte-1wx1xeh{height:100%;display:flex;align-items:center;justify-content:center;padding:0 10%;overflow-x:auto;background-repeat:no-repeat;background-position:center;background-size:cover;background-position:20%;background-image:var(--bg)}.animatedBG.svelte-1wx1xeh .content-details.v2.svelte-1wx1xeh{background-image:unset}.content-details.v2.svelte-1wx1xeh.svelte-1wx1xeh::-webkit-scrollbar{display:none}.mobile .content-details.v2.svelte-1wx1xeh.svelte-1wx1xeh{padding-left:0;padding-right:0}@media screen and (max-width: 780px){main:not(.mobile) .content-details.svelte-1wx1xeh.svelte-1wx1xeh{padding:3.5rem 5% 0}main:not(.mobile) .content-details.v2.svelte-1wx1xeh.svelte-1wx1xeh{padding:0 5%!important}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-f0ee7e4a.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-f0ee7e4a.css
deleted file mode 100644
index d3ad40fa..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/index-f0ee7e4a.css
+++ /dev/null
@@ -1 +0,0 @@
-.sidebar.svelte-194g57p.svelte-194g57p{max-width:220px;width:15%;min-width:170px;height:100%;display:block;background-color:#20243199;border-right:1px solid rgba(210,198,156,.6);border-left:1px solid rgba(210,198,156,.6);color:#d2c69c;position:relative;z-index:+22}@media screen and (max-width: 454px){.sidebar.svelte-194g57p.svelte-194g57p{display:none}}.top.svelte-194g57p.svelte-194g57p{width:100%;height:60px;background-color:#3b4255;padding:0 20px 10px;display:flex;align-items:flex-end}.mobile .top.svelte-194g57p.svelte-194g57p{height:40px;padding:0 20px;margin-bottom:-10px}.gi-reply.svelte-194g57p.svelte-194g57p{font-size:x-large}.mobile .gi-reply.svelte-194g57p.svelte-194g57p{font-size:large}.nav-item.svelte-194g57p.svelte-194g57p{margin-top:20px;display:flex;flex-direction:column;color:#f0e4d4}.link.svelte-194g57p.svelte-194g57p{position:relative;transition:all .2s;text-decoration:none;color:#f0e4d4;aspect-ratio:70/17.5;display:flex;align-items:center;padding-left:5%;z-index:1}@media screen and (min-width: 900px){.link.svelte-194g57p.svelte-194g57p{font-size:80%}}.link.svelte-194g57p i.svelte-194g57p{font-size:1.3rem;display:inline-block;margin-right:10px;opacity:.8}.mobile .link.svelte-194g57p i.svelte-194g57p{font-size:1.4rem}.link.active.svelte-194g57p.svelte-194g57p,.link.svelte-194g57p.svelte-194g57p:hover{background-color:#414856;border-radius:.25rem}.link.svelte-194g57p.svelte-194g57p:after,.link.svelte-194g57p.svelte-194g57p:before,span.svelte-194g57p.svelte-194g57p:after,span.svelte-194g57p.svelte-194g57p:before{content:"";position:absolute;background-size:contain;display:block}.link.active.svelte-194g57p.svelte-194g57p:before{top:50%;right:-3%;height:100%;aspect-ratio:1/1;transform:translateY(-50%) rotate(180deg);z-index:-1;line-height:120%;background-color:#414856;border-radius:100%}.link.active.svelte-194g57p.svelte-194g57p:after{top:50%;right:-1%;width:100%;aspect-ratio:708/156;transform:translateY(-50%) rotate(180deg);background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsQAAACcCAMAAABPyU0CAAAAOVBMVEUAAADTu4vUvI7Uuo3TvI7TvI7UvI7TvozTu43TvI7Su47Pv4/fv43TvI7Tu43SvIzVuo3UvI/TvI7Io+VzAAAAEnRSTlMAQL9goL/eIHDvsBAQkIBQML8hIpUyAAADO0lEQVR42uzd22oCMRSG0dixM2oVZb//wzaOhzoWerjzh7VAxfuPkExibD9ZF7yg97YgYvKImHj/jHho8FJWIiadiIknYuKJmHgiJp6IiSdi4omYeL9G/FYLIublrOqZiAkjYuL9JeJVgxwiJp6IiSdi4omYeCImnoiJJ2LiiZh4IiaeiIknYuKJmHgiJp6IiSdi4omYeCImnoiJJ2LiiZh4Iibet4inrYjJ8hzxfqwaPxrkeI74ULWdGgR5injo3zcNkiwjnsaqdYMoy4jXVaPJBGEWEQ+uDyTQImKTCRI9RrwxmSDRQ8TTaDJBoh7x46quQZyviCerOjL1cg3EZLtHPG0NxGS6RzwYiAl1j9ijCVLdIj4aiEl1i3hns45U14in/mmzjkzXiIeq9waRrhG/WdYRq0dsNkG2Xq/ZBNkuEe/8so5cl4jHqlODTHPEJzsdBJsjHqp2DULNEa9NiQk2Rzy6fo1gPeL5bd8gVO/Xuo5s54iPtjpIdo54U3VokOoc8cHDCZKdI95VHRuk6hH7lw6y9YidnCDbHLHDxCTrEc8viCVi4omYeCImnoiJJ2LiecRGPBETz7Yz8eYDQO6wIpmjmMT7bO8OU1oHwgCKpiCtIdDHy/4XKxOjOFUQ//XCOWu4hJkk34yf4sk7xpMcO0HZiPhmUJQyI/vkOTyFPMdYkXdE/GpnR9gR8W3f1wWijoiX1agoXSNii2LSXDxD3nvEmzfFdJ1THf+tJ8g6I361niDrjHhzpShZI+JzPXFfoOgj4su+r7Z2JI2ID6sZJaI+I77b2hH1GfG2+h+TphGxRzFpI2KPYtJGxKe7UTuSvkS8rb49UzQi/nD3rpii6VjX676/LBAzRXzZ7e3omSIeRwteLSiImSPeVgsKcuaIl3+7NxTUPEQ8jnld/VhMymPE29WymJgR8eTm6zMx3yJ2gwc1IiZPxOSJmDwRkydi8kRMnojJEzF5IiZPxOSJmDwRkydi8kRMnojJEzF5IiZPxOSJmDwRkydi8n6KeOJSJZ7OZZ+ImB4Rk/drxLMXEfN0Lt9u+hIxMSImT8TkiZg8EZMnYvJETJ6IyftzxPCEREyeiMl7iPgNPx9ffAKGWGIAAAAASUVORK5CYII=);background-repeat:no-repeat;opacity:.5}span.svelte-194g57p.svelte-194g57p{display:flex;align-items:center;width:100%;height:95%;position:relative;overflow:hidden}span.svelte-194g57p i{line-height:0}.container.transition.svelte-1k4512p.svelte-1k4512p{transform:translate(-200px);transition:all .2s}.room.transition.svelte-1k4512p.svelte-1k4512p{transform:translate(-300px);transition:all .3s}.transition.svelte-1k4512p.svelte-1k4512p{opacity:0;pointer-events:none}.transition.show.svelte-1k4512p.svelte-1k4512p{opacity:1;pointer-events:unset;transform:translate(0)}section.svelte-1k4512p.svelte-1k4512p{position:fixed;top:0;left:0;width:100%;height:100%;z-index:100;pointer-events:none;color:#fff!important}section.show.svelte-1k4512p.svelte-1k4512p{pointer-events:unset}.container.svelte-1k4512p.svelte-1k4512p{background-image:linear-gradient(to right,rgba(32,36,49,.9) 50%,rgba(32,36,49,.3) 80%,rgba(32,36,49,0));background-position:left;background-repeat:no-repeat;height:100%;display:flex;position:relative}.close-div.svelte-1k4512p.svelte-1k4512p{width:25%;margin-left:auto}.top.svelte-1k4512p.svelte-1k4512p{width:100%;height:60px;color:#d2c69ccc;display:flex;align-items:center;text-align:center;border-bottom:1px solid rgba(210,198,156,.5)}.mobile .top.svelte-1k4512p.svelte-1k4512p{height:40px;margin-bottom:-10px}.top.svelte-1k4512p .close.svelte-1k4512p{transform:scale(.8)}.top.svelte-1k4512p .dimiss.svelte-1k4512p{display:none}.room.svelte-1k4512p.svelte-1k4512p{height:100%;width:50%;min-width:300px;max-width:500px}.room.full.svelte-1k4512p.svelte-1k4512p,.top.svelte-1k4512p span.svelte-1k4512p{width:100%}.chats.svelte-1k4512p.svelte-1k4512p{padding:5%;display:flex;flex-direction:column;height:calc(100% - var(--height));position:relative;overflow-y:auto}.chats.svelte-1k4512p.svelte-1k4512p::-webkit-scrollbar{display:none}@media screen and (min-width: 1200px){.container.svelte-1k4512p.svelte-1k4512p{background-size:1400px}}@media screen and (max-width: 1200px){.container.svelte-1k4512p.svelte-1k4512p{background-size:120%}}@media screen and (max-width: 850px){.container.svelte-1k4512p.svelte-1k4512p{background-size:140%}}@media screen and (max-width: 640px){.container.svelte-1k4512p.svelte-1k4512p{background-size:180%}.close-div.svelte-1k4512p.svelte-1k4512p{display:none}.top.svelte-1k4512p.svelte-1k4512p{height:unset;padding:3%;font-size:120%}.top.svelte-1k4512p .dimiss.svelte-1k4512p{display:unset}.gi-reply.svelte-1k4512p.svelte-1k4512p{font-size:large}.room.svelte-1k4512p.svelte-1k4512p{width:100%;min-width:unset;max-width:unset}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/intertwined-fate-0f290cba.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/intertwined-fate-0f290cba.webp
deleted file mode 100644
index 0631c129..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/intertwined-fate-0f290cba.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-1-46104f7a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-1-46104f7a.webp
deleted file mode 100644
index 58e77d99..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-1-46104f7a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-1-a2038289.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-1-a2038289.webp
deleted file mode 100644
index 9ec0bc8d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-1-a2038289.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-2-2a737af5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-2-2a737af5.webp
deleted file mode 100644
index f075d6a8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-2-2a737af5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-2-38182309.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-2-38182309.webp
deleted file mode 100644
index 4303aad0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-2-38182309.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-3-23e2857b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-3-23e2857b.webp
deleted file mode 100644
index 4a5de636..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-3-23e2857b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-3-3964311f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-3-3964311f.webp
deleted file mode 100644
index f9e4ae2a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-3-3964311f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-4-157420b1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-4-157420b1.webp
deleted file mode 100644
index 980032bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-4-157420b1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-4-adca74b4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-4-adca74b4.webp
deleted file mode 100644
index cc03f73f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/invitation-to-mundane-life-4-adca74b4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jadefall-splendor-91f0f47b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jadefall-splendor-91f0f47b.webp
deleted file mode 100644
index 52109037..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jadefall-splendor-91f0f47b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-0b9694de.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-0b9694de.webp
deleted file mode 100644
index 79f3d7ab..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-0b9694de.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-6a10dee5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-6a10dee5.webp
deleted file mode 100644
index e23bc91b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-6a10dee5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-992fd232.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-992fd232.webp
deleted file mode 100644
index f550f27f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/jean-992fd232.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-687f3033.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-687f3033.webp
deleted file mode 100644
index 69d82717..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-687f3033.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-73760375.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-73760375.webp
deleted file mode 100644
index 22e17777..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-73760375.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-fff6ce60.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-fff6ce60.webp
deleted file mode 100644
index ba7e5fa2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaedehara-kazuha-fff6ce60.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaeya-373b9b8b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaeya-373b9b8b.webp
deleted file mode 100644
index c59960cc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaeya-373b9b8b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaeya-7a59dafb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaeya-7a59dafb.webp
deleted file mode 100644
index f7686e60..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaeya-7a59dafb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kagura_s-verity-03b2b505.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kagura_s-verity-03b2b505.webp
deleted file mode 100644
index da8e3649..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kagura_s-verity-03b2b505.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-1f2c6658.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-1f2c6658.webp
deleted file mode 100644
index 12798479..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-1f2c6658.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-82504de0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-82504de0.webp
deleted file mode 100644
index 3443650b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-82504de0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-f6465f0f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-f6465f0f.webp
deleted file mode 100644
index da8da0f7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayaka-f6465f0f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-8d89e2ab.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-8d89e2ab.webp
deleted file mode 100644
index 34eb2cd8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-8d89e2ab.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-dc5807e6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-dc5807e6.webp
deleted file mode 100644
index ace41f7a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-dc5807e6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-f89c11e1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-f89c11e1.webp
deleted file mode 100644
index 1c053543..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kamisato-ayato-f89c11e1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaveh-3184710d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaveh-3184710d.webp
deleted file mode 100644
index 8096e98d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaveh-3184710d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaveh-d3f2939c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaveh-d3f2939c.webp
deleted file mode 100644
index fba71ec7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kaveh-d3f2939c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-757a37d7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-757a37d7.webp
deleted file mode 100644
index 498e6c82..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-757a37d7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-db0736af.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-db0736af.webp
deleted file mode 100644
index 765d9b77..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-db0736af.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-e17aafe9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-e17aafe9.webp
deleted file mode 100644
index 5737b185..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/keqing-e17aafe9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/key-of-khaj-nisut-a2306150.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/key-of-khaj-nisut-a2306150.webp
deleted file mode 100644
index f1af96da..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/key-of-khaj-nisut-a2306150.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kirara-1acab856.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kirara-1acab856.webp
deleted file mode 100644
index 0d9d3307..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kirara-1acab856.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kirara-1b958aba.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kirara-1b958aba.webp
deleted file mode 100644
index 5930049f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kirara-1b958aba.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-10e7a03a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-10e7a03a.webp
deleted file mode 100644
index aa809865..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-10e7a03a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-705fc1d3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-705fc1d3.webp
deleted file mode 100644
index c26d96f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-705fc1d3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-bd3f3429.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-bd3f3429.webp
deleted file mode 100644
index 68046238..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/klee-bd3f3429.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kujou-sara-37ebafce.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kujou-sara-37ebafce.webp
deleted file mode 100644
index 02d032cd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kujou-sara-37ebafce.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kujou-sara-76512dae.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kujou-sara-76512dae.webp
deleted file mode 100644
index f671f7fc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kujou-sara-76512dae.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kuki-shinobu-7834969f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kuki-shinobu-7834969f.webp
deleted file mode 100644
index 9e54b21d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kuki-shinobu-7834969f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kuki-shinobu-c0d9adab.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kuki-shinobu-c0d9adab.webp
deleted file mode 100644
index d7b7068c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/kuki-shinobu-c0d9adab.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/layla-352b3a84.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/layla-352b3a84.webp
deleted file mode 100644
index d72c360b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/layla-352b3a84.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/layla-c633d4b2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/layla-c633d4b2.webp
deleted file mode 100644
index de6a5e68..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/layla-c633d4b2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lazyload-d703da40.css b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lazyload-d703da40.css
deleted file mode 100644
index aae5eaf2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lazyload-d703da40.css
+++ /dev/null
@@ -1 +0,0 @@
-button.svelte-hp2f5i{position:relative;border:3.5px solid transparent;border-radius:50px;background-color:#e0ddd4;box-shadow:0 2px 2px #64646433,0 2px 2px #64646430;padding:.25rem 1.5rem;margin:2px 5px;transition:all .2s;border:solid transparent;font-size:90%}button.dark.svelte-hp2f5i{color:#fff;background-color:#4a5265}button.svelte-hp2f5i:hover:not(:disabled){border-color:#fff}button.svelte-hp2f5i:active:not(:disabled){animation-name:svelte-hp2f5i-colourchange;animation-duration:.2s;animation-fill-mode:forwards;transform:scale(.95)}@keyframes svelte-hp2f5i-colourchange{50%{color:#ffffda;background:#ede9cc}to{border-color:#a9a9a9;color:#fff;background:linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),#e0ddd4}}.mobile button.svelte-hp2f5i{margin:1px 2px;padding:.15rem 1.3rem;font-size:90%}@media screen and (max-width: 900px){button.svelte-hp2f5i{margin:2px 5px}}@media screen and (max-width: 400px){button.svelte-hp2f5i{font-size:120%;margin:1px 2px}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-1-40942e11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-1-40942e11.webp
deleted file mode 100644
index e2dd3772..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-1-40942e11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-1-47b5098e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-1-47b5098e.webp
deleted file mode 100644
index 7bf6ee91..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-1-47b5098e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-2-8bb418c3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-2-8bb418c3.webp
deleted file mode 100644
index 3782c414..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-2-8bb418c3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-2-bed80036.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-2-bed80036.webp
deleted file mode 100644
index ee598bbe..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-2-bed80036.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-3-6d6dea40.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-3-6d6dea40.webp
deleted file mode 100644
index d891243b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-3-6d6dea40.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-3-808ecaf3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-3-808ecaf3.webp
deleted file mode 100644
index 0952cfb5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/leaves-in-the-wind-3-808ecaf3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/light-of-foliar-incision-5361cffe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/light-of-foliar-incision-5361cffe.webp
deleted file mode 100644
index cce2117f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/light-of-foliar-incision-5361cffe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lion_s-roar-949c66e0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lion_s-roar-949c66e0.webp
deleted file mode 100644
index e2b2bdd7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lion_s-roar-949c66e0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lisa-43a478da.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lisa-43a478da.webp
deleted file mode 100644
index f3f5c18d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lisa-43a478da.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lisa-d0372795.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lisa-d0372795.webp
deleted file mode 100644
index f3494930..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lisa-d0372795.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lithic-blade-4c02dfbf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lithic-blade-4c02dfbf.webp
deleted file mode 100644
index 3355d32e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lithic-blade-4c02dfbf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lithic-spear-dbf28c65.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lithic-spear-dbf28c65.webp
deleted file mode 100644
index a8a2ed81..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lithic-spear-dbf28c65.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lost-prayer-to-the-sacred-winds-30e564fe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lost-prayer-to-the-sacred-winds-30e564fe.webp
deleted file mode 100644
index 952b680f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lost-prayer-to-the-sacred-winds-30e564fe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lynette-0a89f3d8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lynette-0a89f3d8.webp
deleted file mode 100644
index 86033d30..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lynette-0a89f3d8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lynette-bf7f7085.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lynette-bf7f7085.webp
deleted file mode 100644
index 0f5195c8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lynette-bf7f7085.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-1f92f5e8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-1f92f5e8.webp
deleted file mode 100644
index 0903218f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-1f92f5e8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-a3e75c4b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-a3e75c4b.webp
deleted file mode 100644
index 011ec6de..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-a3e75c4b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-c1983368.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-c1983368.webp
deleted file mode 100644
index 913fd0f2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/lyney-c1983368.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/magic-guide-e169fa66.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/magic-guide-e169fa66.webp
deleted file mode 100644
index 50f2b78c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/magic-guide-e169fa66.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/makhaira-aquamarine-76bd38a5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/makhaira-aquamarine-76bd38a5.webp
deleted file mode 100644
index ee5d0a35..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/makhaira-aquamarine-76bd38a5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/masterless-stardust-c473e744.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/masterless-stardust-c473e744.webp
deleted file mode 100644
index 38dd85bc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/masterless-stardust-c473e744.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/masterless-starglitter-3991da8a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/masterless-starglitter-3991da8a.webp
deleted file mode 100644
index c30bde23..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/masterless-starglitter-3991da8a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/memory-of-dust-2a9d8caa.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/memory-of-dust-2a9d8caa.webp
deleted file mode 100644
index 8ac4a830..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/memory-of-dust-2a9d8caa.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mika-575487fe.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mika-575487fe.webp
deleted file mode 100644
index 0bad9a4a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mika-575487fe.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mika-e99bdd06.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mika-e99bdd06.webp
deleted file mode 100644
index ba1697c1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mika-e99bdd06.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mistsplitter-reforged-8d6ba853.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mistsplitter-reforged-8d6ba853.webp
deleted file mode 100644
index dbf36276..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mistsplitter-reforged-8d6ba853.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mitternachts-waltz-098ec0ec.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mitternachts-waltz-098ec0ec.webp
deleted file mode 100644
index 0c090629..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mitternachts-waltz-098ec0ec.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/modal-bg-icon-939867c4.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/modal-bg-icon-939867c4.png
deleted file mode 100644
index 67482332..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/modal-bg-icon-939867c4.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-1-3ec812c6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-1-3ec812c6.webp
deleted file mode 100644
index 2be334ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-1-3ec812c6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-1-ea705724.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-1-ea705724.webp
deleted file mode 100644
index 1bf46caa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-1-ea705724.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-2-a5e9c685.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-2-a5e9c685.webp
deleted file mode 100644
index 3b7ad743..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-2-a5e9c685.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-2-ebb93ab8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-2-ebb93ab8.webp
deleted file mode 100644
index ea8d6e8c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-2-ebb93ab8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-3-8f672b6c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-3-8f672b6c.webp
deleted file mode 100644
index 4eee0a03..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-3-8f672b6c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-3-e95a1bd0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-3-e95a1bd0.webp
deleted file mode 100644
index d96da413..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-3-e95a1bd0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-4-4a85f1eb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-4-4a85f1eb.webp
deleted file mode 100644
index 1b06d509..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-4-4a85f1eb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-4-4b2c7059.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-4-4b2c7059.webp
deleted file mode 100644
index 712e286c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/moment-of-bloom-4-4b2c7059.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mona-1e03787b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mona-1e03787b.webp
deleted file mode 100644
index f9c8aa41..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mona-1e03787b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mona-60e007bf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mona-60e007bf.webp
deleted file mode 100644
index c1f5e0d5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mona-60e007bf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mouun_s-moon-538c16eb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mouun_s-moon-538c16eb.webp
deleted file mode 100644
index 1b530a02..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/mouun_s-moon-538c16eb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-0bba8001.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-0bba8001.webp
deleted file mode 100644
index 01cfd861..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-0bba8001.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-1d65f53b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-1d65f53b.webp
deleted file mode 100644
index 42137a2e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-1d65f53b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-87bafb60.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-87bafb60.webp
deleted file mode 100644
index 41345129..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nahida-87bafb60.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-23d105d1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-23d105d1.webp
deleted file mode 100644
index a7532e95..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-23d105d1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-54d2351b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-54d2351b.webp
deleted file mode 100644
index 5d91575c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-54d2351b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-79c19c66.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-79c19c66.webp
deleted file mode 100644
index 9de3fb6f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/navia-79c19c66.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-0918afa7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-0918afa7.webp
deleted file mode 100644
index 025376dc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-0918afa7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-43e94c55.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-43e94c55.webp
deleted file mode 100644
index 7f477fea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-43e94c55.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-79d4bd76.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-79d4bd76.webp
deleted file mode 100644
index 85541a37..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/neuvillette-79d4bd76.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-084ac81e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-084ac81e.webp
deleted file mode 100644
index 83146f0d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-084ac81e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-27c9c858.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-27c9c858.webp
deleted file mode 100644
index 704a2231..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-27c9c858.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-4f53188c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-4f53188c.webp
deleted file mode 100644
index 292966f5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/nilou-4f53188c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ningguang-e586cf26.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ningguang-e586cf26.webp
deleted file mode 100644
index aab2aefa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ningguang-e586cf26.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ningguang-ff415f51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ningguang-ff415f51.webp
deleted file mode 100644
index e3775efc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/ningguang-ff415f51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-7ed70a55.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-7ed70a55.webp
deleted file mode 100644
index b7853082..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-7ed70a55.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-80e21a94.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-80e21a94.webp
deleted file mode 100644
index 67903587..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-80e21a94.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-e18a9713.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-e18a9713.webp
deleted file mode 100644
index 25aba283..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/noelle-e18a9713.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-1-1cb96177.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-1-1cb96177.webp
deleted file mode 100644
index 45696b79..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-1-1cb96177.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-1-a971ba7c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-1-a971ba7c.webp
deleted file mode 100644
index d6efa703..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-1-a971ba7c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-2-6a07fede.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-2-6a07fede.webp
deleted file mode 100644
index 930bc5b8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-2-6a07fede.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-2-6f859568.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-2-6f859568.webp
deleted file mode 100644
index 5068c239..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-2-6f859568.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-3-7e1ad290.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-3-7e1ad290.webp
deleted file mode 100644
index 7f08d5ea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-3-7e1ad290.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-3-ba1cbf7d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-3-ba1cbf7d.webp
deleted file mode 100644
index 16cd7263..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/oni_s-royale-3-ba1cbf7d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-62c8cea5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-62c8cea5.webp
deleted file mode 100644
index 63ec3110..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-62c8cea5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-963525f3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-963525f3.webp
deleted file mode 100644
index 13043f85..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-963525f3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-de0c0d11.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-de0c0d11.webp
deleted file mode 100644
index 3ab6472f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/opulent-splendor-de0c0d11.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-485e9770.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-485e9770.webp
deleted file mode 100644
index 95b9870c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-485e9770.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-9185bde9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-9185bde9.webp
deleted file mode 100644
index a93132ea..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-9185bde9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-ed9f51bd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-ed9f51bd.webp
deleted file mode 100644
index b7f0ee4e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/orchid_s-evening-gown-ed9f51bd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/outfit-background-50096967.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/outfit-background-50096967.webp
deleted file mode 100644
index d590f1ca..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/outfit-background-50096967.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-childe-1521fa67.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-childe-1521fa67.webp
deleted file mode 100644
index ad27d498..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-childe-1521fa67.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-tears-c593f4a7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-tears-c593f4a7.webp
deleted file mode 100644
index 13c3abbe..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-tears-c593f4a7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-wakaranai-eeb427d2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-wakaranai-eeb427d2.webp
deleted file mode 100644
index d846628f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/payment-wakaranai-eeb427d2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/paypal-ea9fd7c5.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/paypal-ea9fd7c5.png
deleted file mode 100644
index 4435808d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/paypal-ea9fd7c5.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/playstore-button-44ec43b9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/playstore-button-44ec43b9.webp
deleted file mode 100644
index 8996b933..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/playstore-button-44ec43b9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/polar-star-b325f492.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/polar-star-b325f492.webp
deleted file mode 100644
index 20bbe700..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/polar-star-b325f492.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/portable-power-saw-699e418a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/portable-power-saw-699e418a.webp
deleted file mode 100644
index c40d628e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/portable-power-saw-699e418a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primogem-f512384c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primogem-f512384c.webp
deleted file mode 100644
index 49035ebb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primogem-f512384c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primordial-jade-cutter-b641118a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primordial-jade-cutter-b641118a.webp
deleted file mode 100644
index 7d12925b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primordial-jade-cutter-b641118a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primordial-jade-winged-spear-871377eb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primordial-jade-winged-spear-871377eb.webp
deleted file mode 100644
index 0f6e42a5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/primordial-jade-winged-spear-871377eb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/prospector-drill-b35653b0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/prospector-drill-b35653b0.webp
deleted file mode 100644
index c594469e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/prospector-drill-b35653b0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/pyro-971cc66f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/pyro-971cc66f.webp
deleted file mode 100644
index a825c62f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/pyro-971cc66f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-3323ce2a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-3323ce2a.webp
deleted file mode 100644
index bea3c864..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-3323ce2a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-5cb14a15.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-5cb14a15.webp
deleted file mode 100644
index f1fcf8e7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-5cb14a15.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-9e70acac.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-9e70acac.webp
deleted file mode 100644
index 97c4af0a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/qiqi-9e70acac.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-030b7bf4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-030b7bf4.webp
deleted file mode 100644
index 191dbc54..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-030b7bf4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-d489472a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-d489472a.webp
deleted file mode 100644
index 5ed0d34b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-d489472a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-f0b9ec80.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-f0b9ec80.webp
deleted file mode 100644
index 865c1cd8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raiden-shogun-f0b9ec80.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rainslasher-bbc97a3f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rainslasher-bbc97a3f.webp
deleted file mode 100644
index 1448819b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rainslasher-bbc97a3f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/range-gauge-f6126513.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/range-gauge-f6126513.webp
deleted file mode 100644
index 225ba3b0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/range-gauge-f6126513.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raven-bow-238edd42.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raven-bow-238edd42.webp
deleted file mode 100644
index 03597ef4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/raven-bow-238edd42.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/razor-a07e2542.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/razor-a07e2542.webp
deleted file mode 100644
index 912a4e90..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/razor-a07e2542.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/razor-ff675e51.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/razor-ff675e51.webp
deleted file mode 100644
index 59c828c5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/razor-ff675e51.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-1641003e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-1641003e.webp
deleted file mode 100644
index c34d8f38..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-1641003e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-37d9e5b9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-37d9e5b9.webp
deleted file mode 100644
index b888d894..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-37d9e5b9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-e240e0d3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-e240e0d3.webp
deleted file mode 100644
index e073f594..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/red-dead-of-night-e240e0d3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/redhorn-stonethresher-4a5fe56f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/redhorn-stonethresher-4a5fe56f.webp
deleted file mode 100644
index ff4975d4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/redhorn-stonethresher-4a5fe56f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-1-4725e678.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-1-4725e678.webp
deleted file mode 100644
index f2403e9d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-1-4725e678.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-1-baf31a2d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-1-baf31a2d.webp
deleted file mode 100644
index 689f66fb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-1-baf31a2d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-2-ccb25bcc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-2-ccb25bcc.webp
deleted file mode 100644
index d1119b87..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-2-ccb25bcc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-2-e24fd12e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-2-e24fd12e.webp
deleted file mode 100644
index 79a4fc51..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-2-e24fd12e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-3-11ff0135.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-3-11ff0135.webp
deleted file mode 100644
index 9fd3b9b4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-3-11ff0135.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-3-d511b483.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-3-d511b483.webp
deleted file mode 100644
index 3226f670..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-3-d511b483.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-4-6991f176.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-4-6991f176.webp
deleted file mode 100644
index 88849d92..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-4-6991f176.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-4-e1acf995.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-4-e1acf995.webp
deleted file mode 100644
index b671b8cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/reign-of-serenity-4-e1acf995.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/resultcard-bg-aaaa01fb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/resultcard-bg-aaaa01fb.webp
deleted file mode 100644
index 0cde2dd2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/resultcard-bg-aaaa01fb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/resultcard-bg-c725655d.svg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/resultcard-bg-c725655d.svg
deleted file mode 100644
index 4ff9c7af..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/resultcard-bg-c725655d.svg
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg width="100%" height="100%" viewBox="0 0 142 614" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
-    <rect id="画板1" x="0" y="0" width="142" height="614" style="fill:none;"/>
-    <clipPath id="_clip1">
-        <rect id="画板11" serif:id="画板1" x="0" y="0" width="142" height="614"/>
-    </clipPath>
-    <g clip-path="url(#_clip1)">
-        <g>
-            <path d="M70.912,613.913C70.04,613.058 62.81,606.111 54.588,602.644C34.667,594.243 32.886,579.064 32.886,579.064L32.886,572.226C32.886,572.226 28.818,565.043 19.557,565.043C10.296,565.043 10.811,559.633 10.811,559.633C10.811,559.633 10.93,553.378 10.811,553.378C0.046,553.378 0,537.745 0,537.745L0,76.215C0,63.008 10.854,60.235 10.854,60.235C10.854,60.235 10.722,56.801 10.722,55.613C10.722,54.424 11.251,49.273 18.118,49.273C27.495,49.273 32.91,42.934 32.91,42.934C32.91,28.539 34.23,22.332 51.795,13.615C69.36,4.899 71,0 71,0L71.005,0.014C71.118,0.309 73.188,5.171 90.205,13.615C107.77,22.332 109.09,28.539 109.09,42.934C109.09,42.934 114.505,49.273 123.882,49.273C130.749,49.273 131.278,54.424 131.278,55.613C131.278,56.801 131.146,60.235 131.146,60.235C131.146,60.235 142,63.008 142,76.215L142,537.745C142,537.745 141.954,553.378 131.189,553.378C131.07,553.378 131.189,559.633 131.189,559.633C131.189,559.633 131.704,565.043 122.443,565.043C113.182,565.043 109.114,572.226 109.114,572.226L109.114,579.064C109.114,579.064 107.333,594.243 87.412,602.644C78.642,606.342 71,614 71,614L70.912,613.913Z" style="fill:url(#_Linear2);stroke:rgb(192,186,199);stroke-width:2px;"/>
-            <g>
-                <g transform="matrix(-0.511274,0.511274,0.511274,0.511274,73.9625,-5.43667)">
-                    <path d="M79.755,83.555C79.938,83.937 79.938,84.382 79.755,84.764C78.688,87.001 74.912,94.914 72.683,99.587C72.43,100.116 72.539,100.746 72.953,101.16C73.367,101.575 73.998,101.683 74.526,101.431C79.199,99.201 87.113,95.425 89.349,94.358C89.732,94.175 90.176,94.175 90.559,94.358C92.795,95.425 100.709,99.201 105.381,101.431C105.91,101.683 106.54,101.575 106.955,101.16C107.369,100.746 107.477,100.116 107.225,99.587C104.995,94.914 101.219,87.001 100.152,84.764C99.97,84.382 99.97,83.937 100.152,83.555C101.219,81.318 104.995,73.405 107.225,68.732C107.477,68.203 107.369,67.573 106.955,67.159C106.54,66.744 105.91,66.636 105.381,66.888C100.709,69.118 92.795,72.894 90.559,73.961C90.176,74.144 89.732,74.144 89.349,73.961C87.113,72.894 79.199,69.118 74.526,66.888C73.998,66.636 73.367,66.744 72.953,67.159C72.539,67.573 72.43,68.203 72.683,68.732C74.912,73.405 78.688,81.318 79.755,83.555Z" style="fill:rgb(249,255,244);"/>
-                </g>
-                <g transform="matrix(-0.29806,0.29806,0.29806,0.29806,72.7271,-18.2343)">
-                    <path d="M79.549,83.122C79.862,83.778 79.862,84.541 79.549,85.197C78.489,87.418 75.93,92.781 73.886,97.064C73.454,97.971 73.639,99.053 74.35,99.763C75.061,100.474 76.142,100.66 77.049,100.227C81.332,98.183 86.695,95.624 88.916,94.564C89.573,94.251 90.335,94.251 90.991,94.564C93.213,95.624 98.575,98.183 102.859,100.227C103.766,100.66 104.847,100.474 105.558,99.763C106.268,99.053 106.454,97.971 106.021,97.064C103.978,92.781 101.419,87.418 100.359,85.197C100.046,84.541 100.046,83.778 100.359,83.122C101.419,80.901 103.978,75.538 106.021,71.255C106.454,70.348 106.268,69.266 105.558,68.556C104.847,67.845 103.766,67.659 102.859,68.092C98.575,70.136 93.213,72.695 90.991,73.755C90.335,74.068 89.573,74.068 88.916,73.755C86.695,72.695 81.332,70.136 77.049,68.092C76.142,67.659 75.061,67.845 74.35,68.556C73.639,69.266 73.454,70.348 73.886,71.255C75.93,75.538 78.489,80.901 79.549,83.122Z" style="fill:rgb(249,255,244);"/>
-                </g>
-                <g transform="matrix(-0.29806,0.29806,0.29806,0.29806,72.7271,83.137)">
-                    <path d="M79.549,83.122C79.862,83.778 79.862,84.541 79.549,85.197C78.489,87.418 75.93,92.781 73.886,97.064C73.454,97.971 73.639,99.053 74.35,99.763C75.061,100.474 76.142,100.66 77.049,100.227C81.332,98.183 86.695,95.624 88.916,94.564C89.573,94.251 90.335,94.251 90.991,94.564C93.213,95.624 98.575,98.183 102.859,100.227C103.766,100.66 104.847,100.474 105.558,99.763C106.268,99.053 106.454,97.971 106.021,97.064C103.978,92.781 101.419,87.418 100.359,85.197C100.046,84.541 100.046,83.778 100.359,83.122C101.419,80.901 103.978,75.538 106.021,71.255C106.454,70.348 106.268,69.266 105.558,68.556C104.847,67.845 103.766,67.659 102.859,68.092C98.575,70.136 93.213,72.695 90.991,73.755C90.335,74.068 89.573,74.068 88.916,73.755C86.695,72.695 81.332,70.136 77.049,68.092C76.142,67.659 75.061,67.845 74.35,68.556C73.639,69.266 73.454,70.348 73.886,71.255C75.93,75.538 78.489,80.901 79.549,83.122Z" style="fill:rgb(249,255,244);"/>
-                </g>
-            </g>
-            <g id="_Image2_" serif:id="_Image2" transform="matrix(1.27493,0,0,1.27876,-19.5201,185.73)">
-                <use id="_Image2_1" serif:id="_Image2" xlink:href="#_Image3" x="0" y="0" width="142px" height="190px"/>
-            </g>
-            <g transform="matrix(0.93851,0,0,0.983559,4.3658,5.04741)">
-                <path d="M10.862,554.352C6.688,553.995 3.917,551.439 2.116,548.373C-0.642,543.679 -1.063,537.814 -1.063,537.814C-1.065,537.791 -1.066,537.768 -1.066,537.745L-1.066,76.215C-1.066,64.366 7.988,60.435 10.827,59.494C10.788,58.401 10.722,56.452 10.722,55.613C10.722,54.796 10.566,52.36 12.089,50.53C13.121,49.288 14.915,48.257 18.118,48.257C26.065,48.257 32.617,41.921 33.975,40.512C33.97,33.331 33.858,28.659 35.872,24.686C37.934,20.617 42.217,17.223 51.304,12.713C61.692,7.558 66.437,4.131 68.565,2.204C69.666,1.206 70.027,0.602 70.027,0.602L71,2.033C71,2.033 71.624,-0.274 71.994,0.651C72.036,0.714 72.523,1.432 73.633,2.408C75.856,4.363 80.627,7.716 90.696,12.713C99.783,17.223 104.066,20.617 106.128,24.686C108.142,28.659 108.03,33.331 108.026,40.513C109.384,41.921 115.935,48.257 123.882,48.257C127.085,48.257 128.879,49.288 129.911,50.53C131.434,52.36 131.278,54.796 131.278,55.613C131.278,56.452 131.212,58.401 131.173,59.494C134.012,60.435 143.066,64.366 143.066,76.215L143.066,537.745C143.066,537.768 143.065,537.791 143.063,537.814C143.063,537.814 142.642,543.679 139.884,548.373C138.083,551.439 135.312,553.995 131.138,554.352C131.122,555.894 131.176,558.915 131.187,559.507C131.308,560.07 131.608,562.137 129.921,563.837C128.768,565 126.591,566.059 122.443,566.059C114.569,566.059 109.065,573.157 108.048,574.568C108.048,574.568 108.048,581.085 108.049,581.085C108.059,581.572 108.169,595.003 87.842,603.574C79.226,607.207 71.717,613.735 71.717,613.735C71.534,613.895 71.297,613.988 71.05,613.999L71,614C70.684,614 70.392,613.867 70.194,613.647C70.178,613.634 70.163,613.62 70.148,613.605C69.295,612.768 62.208,606.969 54.158,603.574C33.812,594.994 33.941,581.546 33.952,581.085C33.952,581.085 33.952,574.568 33.951,574.567C32.936,573.158 27.432,566.059 19.557,566.059C15.409,566.059 13.232,565 12.079,563.837C10.391,562.136 10.692,560.068 10.813,559.511C10.824,558.915 10.878,555.893 10.862,554.352ZM70.975,2.728C71.278,3.059 71.675,3.451 72.189,3.904C74.474,5.913 79.363,9.381 89.713,14.517C98.191,18.724 102.286,21.775 104.21,25.571C106.146,29.392 105.894,33.908 105.894,40.901C105.894,41.144 105.985,41.379 106.151,41.564C106.151,41.564 114.068,50.29 123.882,50.29C126.173,50.29 127.503,50.906 128.242,51.794C129.378,53.16 129.147,55.003 129.147,55.613C129.147,56.792 129.015,60.198 129.015,60.198C128.997,60.68 129.336,61.108 129.828,61.223C129.828,61.223 140.934,63.853 140.934,76.215L140.934,537.708C140.898,538.164 140.443,543.263 138.025,547.378C136.442,550.074 133.991,552.362 130.124,552.362C129.862,552.362 129.572,552.436 129.321,552.708C129.272,552.761 129.064,553.01 129.032,553.489C128.963,554.516 129.059,559.652 129.059,559.652C129.06,559.738 129.073,559.823 129.098,559.906C129.098,559.906 129.492,561.312 128.374,562.44C127.466,563.354 125.705,564.026 122.443,564.026C112.664,564.026 106.086,573.711 106.086,573.711C105.976,573.874 105.917,574.065 105.917,574.26L105.917,581.097C105.917,581.106 105.918,581.115 105.918,581.123C105.918,581.123 106.121,593.643 86.981,601.714C79.693,604.787 73.17,609.857 71.025,611.612C68.877,609.801 62.334,604.799 55.019,601.714C35.879,593.643 36.082,581.123 36.082,581.123C36.082,581.115 36.083,581.106 36.083,581.097L36.083,574.26C36.083,574.065 36.024,573.874 35.914,573.711C35.914,573.711 29.336,564.026 19.557,564.026C16.295,564.026 14.534,563.354 13.626,562.44C12.508,561.312 12.902,559.906 12.902,559.906C12.927,559.823 12.94,559.738 12.941,559.652C12.941,559.652 13.037,554.516 12.968,553.489C12.936,553.01 12.728,552.761 12.679,552.708C12.428,552.436 12.138,552.362 11.876,552.362C8.009,552.362 5.558,550.074 3.975,547.378C1.568,543.282 1.106,538.212 1.066,537.716L1.066,76.215C1.066,63.853 12.172,61.223 12.172,61.223C12.664,61.108 13.003,60.68 12.985,60.198C12.985,60.198 12.853,56.792 12.853,55.613C12.853,55.003 12.622,53.16 13.758,51.794C14.497,50.906 15.827,50.29 18.118,50.29C27.932,50.29 35.849,41.564 35.849,41.564C36.015,41.379 36.106,41.144 36.106,40.901C36.106,33.908 35.854,29.392 37.79,25.571C39.714,21.775 43.809,18.724 52.287,14.517C64.518,8.448 69.215,4.591 70.975,2.728ZM72.006,0.683C72.087,0.914 71.26,1.785 71.052,2L71.988,1.397C71.988,1.397 71.954,1.485 71.838,1.665C71.852,1.648 71.865,1.631 71.878,1.614C72.077,1.342 72.125,0.995 72.006,0.683ZM70.039,1.459C70.026,1.433 70.014,1.406 70.004,1.379C70.01,1.395 70.021,1.422 70.039,1.459Z" style="fill:rgb(155,175,176);"/>
-            </g>
-        </g>
-    </g>
-    <defs>
-        <linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.0932082,613.899,-613.899,-0.0932082,71.0052,0.0143191)"><stop offset="0" style="stop-color:rgb(77,103,128);stop-opacity:1"/><stop offset="0.19" style="stop-color:rgb(106,128,140);stop-opacity:1"/><stop offset="0.39" style="stop-color:rgb(188,197,174);stop-opacity:1"/><stop offset="0.61" style="stop-color:rgb(188,197,174);stop-opacity:1"/><stop offset="0.78" style="stop-color:rgb(104,125,143);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(82,106,135);stop-opacity:1"/></linearGradient>
-        <image id="_Image3" width="142px" height="190px" xlink:href="data:image/png;base64,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"/>
-    </defs>
-</svg>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rosaria-8cc1803b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rosaria-8cc1803b.webp
deleted file mode 100644
index f6e7cbc0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rosaria-8cc1803b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rosaria-9bea7c0f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rosaria-9bea7c0f.webp
deleted file mode 100644
index 438eab05..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rosaria-9bea7c0f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rust-890b0edc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rust-890b0edc.webp
deleted file mode 100644
index 243072e1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/rust-890b0edc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-bow-b0504242.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-bow-b0504242.webp
deleted file mode 100644
index dd4c1062..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-bow-b0504242.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-fragments-156c8aea.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-fragments-156c8aea.webp
deleted file mode 100644
index 79e55084..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-fragments-156c8aea.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-greatsword-435d0c28.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-greatsword-435d0c28.webp
deleted file mode 100644
index d99e38eb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-greatsword-435d0c28.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-sword-1dd3b6b7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-sword-1dd3b6b7.webp
deleted file mode 100644
index 5f9c021c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sacrificial-sword-1dd3b6b7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-3a136972.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-3a136972.webp
deleted file mode 100644
index 77b04dba..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-3a136972.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-a0858111.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-a0858111.webp
deleted file mode 100644
index 2bcda5ad..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-a0858111.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-f3b29e08.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-f3b29e08.webp
deleted file mode 100644
index e4f9dd7c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sailwind-shadow-f3b29e08.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-3c386419.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-3c386419.webp
deleted file mode 100644
index 44e82328..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-3c386419.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-847d863a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-847d863a.webp
deleted file mode 100644
index 8f0431f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-847d863a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-b29ffa83.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-b29ffa83.webp
deleted file mode 100644
index 6db7a361..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sangonomiya-kokomi-b29ffa83.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sayu-026af768.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sayu-026af768.webp
deleted file mode 100644
index 146c269a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sayu-026af768.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sayu-b6fef00e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sayu-b6fef00e.webp
deleted file mode 100644
index 1630e532..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sayu-b6fef00e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-0bca9349.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-0bca9349.webp
deleted file mode 100644
index 114a9c55..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-0bca9349.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-4ae97901.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-4ae97901.webp
deleted file mode 100644
index 16912d8d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-4ae97901.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-a6819cf8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-a6819cf8.webp
deleted file mode 100644
index 77601202..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sea-breeze-dandelion-a6819cf8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-1-d706166d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-1-d706166d.webp
deleted file mode 100644
index 5abd339b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-1-d706166d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-1-d741a395.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-1-d741a395.webp
deleted file mode 100644
index 10011a2d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-1-d741a395.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-2-ad2eb58c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-2-ad2eb58c.webp
deleted file mode 100644
index e11430b3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-2-ad2eb58c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-2-fa9a2c0a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-2-fa9a2c0a.webp
deleted file mode 100644
index 22eadb46..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-2-fa9a2c0a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-3-440d59f0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-3-440d59f0.webp
deleted file mode 100644
index 7c96b77b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-3-440d59f0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-3-5d91d63f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-3-5d91d63f.webp
deleted file mode 100644
index 806b6836..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/secretum-secretorum-3-5d91d63f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sharpshooter_s-oath-2eee30f9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sharpshooter_s-oath-2eee30f9.webp
deleted file mode 100644
index 1c6b692d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sharpshooter_s-oath-2eee30f9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-05add9f7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-05add9f7.webp
deleted file mode 100644
index 52035cdc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-05add9f7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-2a275ea1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-2a275ea1.webp
deleted file mode 100644
index 3eb25de7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-2a275ea1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-7fe122a5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-7fe122a5.webp
deleted file mode 100644
index a8c5b6cc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shenhe-7fe122a5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shikanoin-heizou-99b61c8e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shikanoin-heizou-99b61c8e.webp
deleted file mode 100644
index ab41c763..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shikanoin-heizou-99b61c8e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shikanoin-heizou-bf2a6b53.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shikanoin-heizou-bf2a6b53.webp
deleted file mode 100644
index 1a728b75..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shikanoin-heizou-bf2a6b53.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shop-nav-bg-ba2a97b6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shop-nav-bg-ba2a97b6.webp
deleted file mode 100644
index 07798c3f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/shop-nav-bg-ba2a97b6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyrider-sword-b586802c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyrider-sword-b586802c.webp
deleted file mode 100644
index a46b3db7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyrider-sword-b586802c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-atlas-02b9dce2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-atlas-02b9dce2.webp
deleted file mode 100644
index 035b80eb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-atlas-02b9dce2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-blade-2a775854.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-blade-2a775854.webp
deleted file mode 100644
index 932b8e1b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-blade-2a775854.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-harp-6e549534.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-harp-6e549534.webp
deleted file mode 100644
index d3245127..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-harp-6e549534.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-pride-61774f53.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-pride-61774f53.webp
deleted file mode 100644
index d7dd8774..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-pride-61774f53.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-spine-0f2c6ecc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-spine-0f2c6ecc.webp
deleted file mode 100644
index 82f6194e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/skyward-spine-0f2c6ecc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/slingshot-332093b2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/slingshot-332093b2.webp
deleted file mode 100644
index a146b6d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/slingshot-332093b2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/song-of-broken-pines-44010dc3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/song-of-broken-pines-44010dc3.webp
deleted file mode 100644
index a92579ed..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/song-of-broken-pines-44010dc3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-1-55a29809.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-1-55a29809.webp
deleted file mode 100644
index 7399c547..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-1-55a29809.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-1-5fcf4d7c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-1-5fcf4d7c.webp
deleted file mode 100644
index e09da3cb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-1-5fcf4d7c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-2-77c60abf.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-2-77c60abf.webp
deleted file mode 100644
index 7bdb6fa6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-2-77c60abf.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-2-de30c5bd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-2-de30c5bd.webp
deleted file mode 100644
index a42c1886..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-2-de30c5bd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-3-0f187e1e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-3-0f187e1e.webp
deleted file mode 100644
index 9341831e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-3-0f187e1e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-3-67471cc1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-3-67471cc1.webp
deleted file mode 100644
index 3f37ba32..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-3-67471cc1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-4-b7b62efc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-4-b7b62efc.webp
deleted file mode 100644
index 114f9dd1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-4-b7b62efc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-4-c7ac4ee8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-4-c7ac4ee8.webp
deleted file mode 100644
index 83ff1051..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sparkling-steps-4-c7ac4ee8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/splash-background-49b61db1.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/splash-background-49b61db1.webp
deleted file mode 100644
index 4a237141..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/splash-background-49b61db1.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/splendor-of-tranquil-waters-131e35be.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/splendor-of-tranquil-waters-131e35be.webp
deleted file mode 100644
index e65389be..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/splendor-of-tranquil-waters-131e35be.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-6c15963c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-6c15963c.webp
deleted file mode 100644
index ffb2b1f9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-6c15963c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-8e524270.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-8e524270.webp
deleted file mode 100644
index 2fc3024e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-8e524270.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-b4955e07.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-b4955e07.webp
deleted file mode 100644
index e75fd1cf..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/springbloom-missive-b4955e07.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/staff-of-homa-e3b059ef.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/staff-of-homa-e3b059ef.webp
deleted file mode 100644
index 5bf15ca3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/staff-of-homa-e3b059ef.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/staff-of-the-scarlet-sands-a3688b78.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/staff-of-the-scarlet-sands-a3688b78.webp
deleted file mode 100644
index 10f5c566..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/staff-of-the-scarlet-sands-a3688b78.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/stella-fortuna-4star-3746dfcc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/stella-fortuna-4star-3746dfcc.webp
deleted file mode 100644
index ce5b642f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/stella-fortuna-4star-3746dfcc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/stella-fortuna-5star-7187149a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/stella-fortuna-5star-7187149a.webp
deleted file mode 100644
index db64f48e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/stella-fortuna-5star-7187149a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sucrose-a093157e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sucrose-a093157e.webp
deleted file mode 100644
index e2e17449..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sucrose-a093157e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sucrose-cb315c3b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sucrose-cb315c3b.webp
deleted file mode 100644
index 50af1412..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/sucrose-cb315c3b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-0059652c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-0059652c.webp
deleted file mode 100644
index c5fed89c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-0059652c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-a2d86509.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-a2d86509.webp
deleted file mode 100644
index c5a5d4c6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-a2d86509.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-ef9bad4d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-ef9bad4d.webp
deleted file mode 100644
index 55822e1c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summertime-sparkle-ef9bad4d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summit-shaper-a4b99930.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summit-shaper-a4b99930.webp
deleted file mode 100644
index f5113359..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/summit-shaper-a4b99930.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-1-3c64537c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-1-3c64537c.webp
deleted file mode 100644
index fd21e93a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-1-3c64537c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-1-5df70956.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-1-5df70956.webp
deleted file mode 100644
index 5ad75766..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-1-5df70956.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-2-071126fb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-2-071126fb.webp
deleted file mode 100644
index 8cb35641..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-2-071126fb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-2-e1418a2c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-2-e1418a2c.webp
deleted file mode 100644
index ed110303..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-2-e1418a2c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-3-623663e7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-3-623663e7.webp
deleted file mode 100644
index c08165b9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-3-623663e7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-3-6eb06c78.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-3-6eb06c78.webp
deleted file mode 100644
index c2926d96..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-3-6eb06c78.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-4-0c57997a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-4-0c57997a.webp
deleted file mode 100644
index 656cda17..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-4-0c57997a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-4-8b74dd09.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-4-8b74dd09.webp
deleted file mode 100644
index 6b33ad48..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-4-8b74dd09.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-5-c058ea72.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-5-c058ea72.webp
deleted file mode 100644
index 5b1bbcd1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-5-c058ea72.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-5-ed9de042.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-5-ed9de042.webp
deleted file mode 100644
index 5192dfa8..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tapestry-of-golden-flames-5-ed9de042.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-3a835bfd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-3a835bfd.webp
deleted file mode 100644
index aad9e448..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-3a835bfd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-718397d5.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-718397d5.webp
deleted file mode 100644
index af916518..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-718397d5.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-c7fed325.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-c7fed325.webp
deleted file mode 100644
index 703977af..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tartaglia-c7fed325.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tempestuous-destiny-1-0decb86e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tempestuous-destiny-1-0decb86e.webp
deleted file mode 100644
index d31548e6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tempestuous-destiny-1-0decb86e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tempestuous-destiny-1-75164658.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tempestuous-destiny-1-75164658.webp
deleted file mode 100644
index 2d47be4e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tempestuous-destiny-1-75164658.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-alley-flash-b59eb081.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-alley-flash-b59eb081.webp
deleted file mode 100644
index e04753a2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-alley-flash-b59eb081.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-bell-b73418d9.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-bell-b73418d9.webp
deleted file mode 100644
index 33370c6c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-bell-b73418d9.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-dockhands-assistant-a0469742.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-dockhands-assistant-a0469742.webp
deleted file mode 100644
index d7756fcc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-dockhands-assistant-a0469742.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-first-great-magic-8e2ee2de.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-first-great-magic-8e2ee2de.webp
deleted file mode 100644
index 0226f132..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-first-great-magic-8e2ee2de.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-flute-e44fd714.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-flute-e44fd714.webp
deleted file mode 100644
index 7072c995..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-flute-e44fd714.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-1-155171f4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-1-155171f4.webp
deleted file mode 100644
index 6ccfa7b6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-1-155171f4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-1-b787b834.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-1-b787b834.webp
deleted file mode 100644
index 5c83269e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-1-b787b834.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-2-258bec66.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-2-258bec66.webp
deleted file mode 100644
index 525d6240..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-2-258bec66.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-2-671dc5c7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-2-671dc5c7.webp
deleted file mode 100644
index 615c0fa0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-2-671dc5c7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-3-c8c67ae7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-3-c8c67ae7.webp
deleted file mode 100644
index d77f945a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-3-c8c67ae7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-3-d816d878.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-3-d816d878.webp
deleted file mode 100644
index 5634a445..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-3-d816d878.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-4-2177edba.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-4-2177edba.webp
deleted file mode 100644
index f5d4fd87..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-4-2177edba.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-4-5a3f75d6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-4-5a3f75d6.webp
deleted file mode 100644
index 468bde0c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-heron_s-court-4-5a3f75d6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-1-57f4d12f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-1-57f4d12f.webp
deleted file mode 100644
index 61ce5510..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-1-57f4d12f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-1-69dbb41f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-1-69dbb41f.webp
deleted file mode 100644
index a7417b75..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-1-69dbb41f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-2-1b1a0926.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-2-1b1a0926.webp
deleted file mode 100644
index 834bf543..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-2-1b1a0926.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-2-c80cbb50.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-2-c80cbb50.webp
deleted file mode 100644
index ebe352b4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-moongrass-enlightenment-2-c80cbb50.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-stringless-6f4531d6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-stringless-6f4531d6.webp
deleted file mode 100644
index e8d939c3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-stringless-6f4531d6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-1-36bb84b0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-1-36bb84b0.webp
deleted file mode 100644
index 85d5ce3f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-1-36bb84b0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-1-44bcf6c3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-1-44bcf6c3.webp
deleted file mode 100644
index 73153661..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-1-44bcf6c3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-2-630d5506.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-2-630d5506.webp
deleted file mode 100644
index bcb529ce..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-2-630d5506.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-2-9a28233c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-2-9a28233c.webp
deleted file mode 100644
index 42d7d3d0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-transcendent-one-returns-2-9a28233c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-unforged-07781e68.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-unforged-07781e68.webp
deleted file mode 100644
index 392e709b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-unforged-07781e68.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-widsith-b0e54964.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-widsith-b0e54964.webp
deleted file mode 100644
index 1c30c1fa..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/the-widsith-b0e54964.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thoma-5d4c3f43.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thoma-5d4c3f43.webp
deleted file mode 100644
index 790e9947..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thoma-5d4c3f43.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thoma-b561a276.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thoma-b561a276.webp
deleted file mode 100644
index 77c84c41..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thoma-b561a276.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thrilling-tales-of-dragon-slayers-4114d83b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thrilling-tales-of-dragon-slayers-4114d83b.webp
deleted file mode 100644
index 70d9983c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thrilling-tales-of-dragon-slayers-4114d83b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thundering-pulse-40945c30.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thundering-pulse-40945c30.webp
deleted file mode 100644
index 6994ed38..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/thundering-pulse-40945c30.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-3c13c66b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-3c13c66b.webp
deleted file mode 100644
index f6a1ec01..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-3c13c66b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-b69cf5d2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-b69cf5d2.webp
deleted file mode 100644
index a1299c50..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-b69cf5d2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-b7f80264.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-b7f80264.webp
deleted file mode 100644
index 63af84ed..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tighnari-b7f80264.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tome-of-the-eternal-flow-1f8af63c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tome-of-the-eternal-flow-1f8af63c.webp
deleted file mode 100644
index 44538899..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tome-of-the-eternal-flow-1f8af63c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tulaytullah_s-remembrance-3598fcfc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tulaytullah_s-remembrance-3598fcfc.webp
deleted file mode 100644
index 81b7fae2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/tulaytullah_s-remembrance-3598fcfc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-1-99173f34.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-1-99173f34.webp
deleted file mode 100644
index 68fbea1f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-1-99173f34.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-1-b95da829.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-1-b95da829.webp
deleted file mode 100644
index 2d1e5266..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-1-b95da829.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-2-39cccf25.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-2-39cccf25.webp
deleted file mode 100644
index ec36ed6e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-2-39cccf25.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-2-9cd1e3a6.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-2-9cd1e3a6.webp
deleted file mode 100644
index f083ed50..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-2-9cd1e3a6.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-3-25615a9c.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-3-25615a9c.webp
deleted file mode 100644
index 818aaf4a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-3-25615a9c.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-3-953321df.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-3-953321df.webp
deleted file mode 100644
index 9a2b2971..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twilight-arbiter-3-953321df.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-1-65762d63.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-1-65762d63.webp
deleted file mode 100644
index 6d758a9f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-1-65762d63.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-1-911c7533.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-1-911c7533.webp
deleted file mode 100644
index 4d93b361..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-1-911c7533.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-2-3cf0120a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-2-3cf0120a.webp
deleted file mode 100644
index b0d30832..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-2-3cf0120a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-2-5c67f629.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-2-5c67f629.webp
deleted file mode 100644
index f3325c94..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/twirling-lotus-2-5c67f629.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-400d3bc0.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-400d3bc0.webp
deleted file mode 100644
index 87aa7dbb..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-400d3bc0.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-7973125a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-7973125a.webp
deleted file mode 100644
index 227a360b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-7973125a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-f0812ee7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-f0812ee7.webp
deleted file mode 100644
index 505093d7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/venti-f0812ee7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/verdict-84e0e4b4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/verdict-84e0e4b4.webp
deleted file mode 100644
index 54fa1457..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/verdict-84e0e4b4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/viridescent-vigil-1-4f62b8ed.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/viridescent-vigil-1-4f62b8ed.webp
deleted file mode 100644
index aeaeea41..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/viridescent-vigil-1-4f62b8ed.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/viridescent-vigil-1-83525b2e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/viridescent-vigil-1-83525b2e.webp
deleted file mode 100644
index 51b8eb18..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/viridescent-vigil-1-83525b2e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/vortex-vanquisher-3f236add.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/vortex-vanquisher-3f236add.webp
deleted file mode 100644
index 082193c0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/vortex-vanquisher-3f236add.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-082f333a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-082f333a.webp
deleted file mode 100644
index a2906056..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-082f333a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-0c008fe4.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-0c008fe4.webp
deleted file mode 100644
index 64f734e9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-0c008fe4.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-821029a2.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-821029a2.webp
deleted file mode 100644
index 7b85bcb0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderer-821029a2.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wandering-evenstar-251d6d71.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wandering-evenstar-251d6d71.webp
deleted file mode 100644
index 590a68c3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wandering-evenstar-251d6d71.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderlust-invocation-1-22dc18af.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderlust-invocation-1-22dc18af.webp
deleted file mode 100644
index 6e5445a7..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderlust-invocation-1-22dc18af.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderlust-invocation-2-2abc5b03.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderlust-invocation-2-2abc5b03.webp
deleted file mode 100644
index 24fe66a1..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wanderlust-invocation-2-2abc5b03.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wavebreaker_s-fin-674af509.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wavebreaker_s-fin-674af509.webp
deleted file mode 100644
index 04cd49a9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wavebreaker_s-fin-674af509.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wechatpay-e72d337c.jpeg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wechatpay-e72d337c.jpeg
deleted file mode 100644
index fc2e1cdd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wechatpay-e72d337c.jpeg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-224d0a2e.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-224d0a2e.webp
deleted file mode 100644
index fcae6e88..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-224d0a2e.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-card-965cc4e8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-card-965cc4e8.webp
deleted file mode 100644
index 62f44295..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-card-965cc4e8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-moon-girl-67797b1b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-moon-girl-67797b1b.webp
deleted file mode 100644
index 86be7d3c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/welkin-moon-girl-67797b1b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wine-and-song-9cc88270.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wine-and-song-9cc88270.webp
deleted file mode 100644
index 77cc50b4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wine-and-song-9cc88270.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wish-background-bc054754.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wish-background-bc054754.webp
deleted file mode 100644
index 19fdd096..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wish-background-bc054754.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wolf_s-gravestone-d3e2d84f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wolf_s-gravestone-d3e2d84f.webp
deleted file mode 100644
index 3ddad334..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wolf_s-gravestone-d3e2d84f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-4cd21289.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-4cd21289.webp
deleted file mode 100644
index 463f24f3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-4cd21289.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-505582d3.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-505582d3.webp
deleted file mode 100644
index 6a7a18a6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-505582d3.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-d3cb8f1a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-d3cb8f1a.webp
deleted file mode 100644
index 075170a6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/wriothesley-d3cb8f1a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiangling-4bfd469a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiangling-4bfd469a.webp
deleted file mode 100644
index fb0d44b4..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiangling-4bfd469a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiangling-a45a1cbd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiangling-a45a1cbd.webp
deleted file mode 100644
index 1d54eba3..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiangling-a45a1cbd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-1e55957d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-1e55957d.webp
deleted file mode 100644
index fa5ea94f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-1e55957d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-80ccfa0f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-80ccfa0f.webp
deleted file mode 100644
index d17fa600..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-80ccfa0f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-ac588d17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-ac588d17.webp
deleted file mode 100644
index 652469fd..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiao-ac588d17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xingqiu-91fefb37.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xingqiu-91fefb37.webp
deleted file mode 100644
index 40dc44c0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xingqiu-91fefb37.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xingqiu-dea04473.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xingqiu-dea04473.webp
deleted file mode 100644
index b5e14192..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xingqiu-dea04473.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xinyan-27a455bb.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xinyan-27a455bb.webp
deleted file mode 100644
index 8298b429..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xinyan-27a455bb.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xinyan-f274b69d.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xinyan-f274b69d.webp
deleted file mode 100644
index a311951b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xinyan-f274b69d.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiphos-moonlight-c1ea3b4f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiphos-moonlight-c1ea3b4f.webp
deleted file mode 100644
index 28edb73e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/xiphos-moonlight-c1ea3b4f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-3c2a217b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-3c2a217b.webp
deleted file mode 100644
index 64cf7731..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-3c2a217b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-7874f338.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-7874f338.webp
deleted file mode 100644
index a49de9fe..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-7874f338.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-7e7f31fc.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-7e7f31fc.webp
deleted file mode 100644
index 2b9c9f79..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yae-miko-7e7f31fc.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yanfei-dd299e68.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yanfei-dd299e68.webp
deleted file mode 100644
index d552ba57..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yanfei-dd299e68.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yanfei-e7df772a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yanfei-e7df772a.webp
deleted file mode 100644
index 2703beb5..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yanfei-e7df772a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yaoyao-0934a08b.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yaoyao-0934a08b.webp
deleted file mode 100644
index 639333ae..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yaoyao-0934a08b.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yaoyao-a9826073.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yaoyao-a9826073.webp
deleted file mode 100644
index 5e041d42..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yaoyao-a9826073.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-101c5019.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-101c5019.webp
deleted file mode 100644
index e6dbf09e..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-101c5019.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-a4bcee59.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-a4bcee59.webp
deleted file mode 100644
index f798b6e6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-a4bcee59.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-d425f83a.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-d425f83a.webp
deleted file mode 100644
index 9ea2a28a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yelan-d425f83a.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-1cb483cd.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-1cb483cd.webp
deleted file mode 100644
index d2e8382d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-1cb483cd.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-1dbf97e8.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-1dbf97e8.webp
deleted file mode 100644
index f01572f0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-1dbf97e8.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-bba37004.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-bba37004.webp
deleted file mode 100644
index b0ffdd85..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yoimiya-bba37004.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yun-jin-87967c46.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yun-jin-87967c46.webp
deleted file mode 100644
index 0209087a..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yun-jin-87967c46.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yun-jin-90f9157f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yun-jin-90f9157f.webp
deleted file mode 100644
index 90a41186..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/yun-jin-90f9157f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-003d705f.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-003d705f.webp
deleted file mode 100644
index 64d3f663..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-003d705f.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-5a51dd17.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-5a51dd17.webp
deleted file mode 100644
index 172b6e28..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-5a51dd17.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-c37b17d7.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-c37b17d7.webp
deleted file mode 100644
index 24cc5e49..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/assets/zhongli-c37b17d7.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/0-10f2ffe2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/0-10f2ffe2.js
deleted file mode 100644
index 37dc92aa..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/0-10f2ffe2.js
+++ /dev/null
@@ -1 +0,0 @@
-import{_ as r}from"./_layout-0ebf6292.js";import{default as t}from"../components/pages/_layout.svelte-31cfe670.js";export{t as component,r as shared};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1-5f40e9fe.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1-5f40e9fe.js
deleted file mode 100644
index e0c9bd47..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1-5f40e9fe.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/_error.svelte-4f5ba18e.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.0-1c054612.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.0-1c054612.js
deleted file mode 100644
index d9fbd9ad..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.0-1c054612.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=1,e=[{phase:1,banners:{standardVersion:1,events:{featured:[{bannerName:"ballad-in-goblets-1",character:"venti",textOffset:{l:57.5,b:5.8}}],rateup:["xiangling","fischl","barbara"]},weapons:{bannerName:"epitome-invocation-1",fatepointsystem:!1,featured:[{name:"amos-bow"},{name:"aquila-favonia"}],rateup:["the-flute","the-stringless","favonius-lance","the-bell","the-widsith"],textOffset:{featured:{l:41,t:76},rateup:{l:75,b:18}}}}},{phase:2,banners:{standardVersion:1,events:{featured:[{bannerName:"sparkling-steps-1",character:"klee",textOffset:{l:60}}],rateup:["sucrose","xingqiu","noelle"]},weapons:{bannerName:"epitome-invocation-2",fatepointsystem:!1,featured:[{name:"lost-prayer-to-the-sacred-winds"},{name:"wolf_s-gravestone"}],rateup:["sacrificial-greatsword","sacrificial-sword","sacrificial-fragments","dragon_s-bane","sacrificial-bow"],textOffset:{featured:{l:41,t:78,w:20},rateup:{l:76,b:17}}}}}],t={patch:1,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.1-3cf30f8b.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.1-3cf30f8b.js
deleted file mode 100644
index 99a3611e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.1-3cf30f8b.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=1.1,e=[{phase:1,banners:{standardVersion:1,events:{featured:[{bannerName:"farewell-of-snezhnaya-1",character:"tartaglia",textOffset:{l:44.5,b:11}}],rateup:["beidou","ningguang","diona"]},weapons:{bannerName:"epitome-invocation-3",fatepointsystem:!1,featured:[{name:"skyward-harp"},{name:"memory-of-dust"}],rateup:["rust","favonius-lance","rainslasher","the-flute","eye-of-perception"],textOffset:{featured:{l:41,t:76},rateup:{l:76.5,b:19}}}}},{phase:2,banners:{standardVersion:1,events:{featured:[{bannerName:"gentry-of-hermitage-1",character:"zhongli",textOffset:{l:52}}],rateup:["razor","xinyan","chongyun"]},weapons:{bannerName:"epitome-invocation-4",fatepointsystem:!1,featured:[{name:"vortex-vanquisher"},{name:"the-unforged"}],rateup:["favonius-warbow","the-bell","favonius-codex","dragon_s-bane","lion_s-roar"],textOffset:{featured:{l:41.5,t:75},rateup:{l:77,b:17}}}}}],t={patch:1.1,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.2-aaf0e2fb.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.2-aaf0e2fb.js
deleted file mode 100644
index 960f002e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.2-aaf0e2fb.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=1.2,e=[{phase:1,banners:{standardVersion:1,events:{featured:[{bannerName:"secretum-secretorum-1",character:"albedo",textOffset:{l:56.5,b:5.5}}],rateup:["bennett","sucrose","fischl"]},weapons:{bannerName:"epitome-invocation-5",fatepointsystem:!1,featured:[{name:"summit-shaper"},{name:"skyward-atlas"}],rateup:["the-stringless","favonius-lance","favonius-greatsword","lion_s-roar","the-widsith"],textOffset:{featured:{l:46,t:76},rateup:{l:76,b:18.5}}}}},{phase:2,banners:{standardVersion:1,events:{featured:[{bannerName:"adrift-in-the-harbor-1",character:"ganyu",textOffset:{l:59.5,b:12}}],rateup:["beidou","xinyan","xingqiu"]},weapons:{bannerName:"epitome-invocation-6",fatepointsystem:!1,featured:[{name:"amos-bow"},{name:"skyward-pride"}],rateup:["favonius-warbow","the-bell","eye-of-perception","dragon_s-bane","sacrificial-sword"],textOffset:{featured:{l:46,t:77},rateup:{l:75,b:17}}}}}],t={patch:1.2,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.3-6b0b0d5d.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.3-6b0b0d5d.js
deleted file mode 100644
index cc3803c1..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.3-6b0b0d5d.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=1.3,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"invitation-to-mundane-life-1",character:"xiao",textOffset:{l:57.5,b:5}}],rateup:["xinyan","beidou","diona"]},weapons:{bannerName:"epitome-invocation-7",fatepointsystem:!1,featured:[{name:"primordial-jade-winged-spear"},{name:"primordial-jade-cutter"}],rateup:["rust","the-flute","favonius-lance","sacrificial-greatsword","eye-of-perception"],textOffset:{featured:{l:44.5,t:72},rateup:{l:73.5,b:16}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"dance-of-lantern-1",character:"keqing",textOffset:{l:57.5,b:4.5}}],rateup:["barbara","bennett","ningguang"]},weapons:{bannerName:"epitome-invocation-8",fatepointsystem:!1,featured:[{name:"wolf_s-gravestone",buttonPosition:{l:35}},{name:"staff-of-homa"}],rateup:["lion_s-roar","lithic-blade","lithic-spear","sacrificial-bow","the-widsith"],textOffset:{featured:{l:45,t:77},rateup:{l:75,b:14}}}}},{phase:3,banners:{standardVersion:2,events:{featured:[{bannerName:"moment-of-bloom-1",character:"hu-tao",textOffset:{l:57.5,b:4.5}}],rateup:["xiangling","chongyun","xingqiu"]},weapons:{bannerName:"epitome-invocation-8",fatepointsystem:!1,featured:[{name:"wolf_s-gravestone",buttonPosition:{l:35}},{name:"staff-of-homa"}],rateup:["lion_s-roar","lithic-blade","lithic-spear","sacrificial-bow","the-widsith"],textOffset:{featured:{l:45,t:77},rateup:{l:75,b:14}}}}}],t={patch:1.3,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.4-ad0ba199.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.4-ad0ba199.js
deleted file mode 100644
index 6a1187cb..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.4-ad0ba199.js
+++ /dev/null
@@ -1 +0,0 @@
-const e=1.4,a=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"ballad-in-goblets-2",character:"venti",textOffset:{l:57,b:6}}],rateup:["razor","sucrose","noelle"]},weapons:{bannerName:"epitome-invocation-9",fatepointsystem:!1,featured:[{name:"elegy-for-the-end"},{name:"skyward-blade"}],rateup:["favonius-warbow","wine-and-song","dragon_s-bane","favonius-greatsword","the-alley-flash"],textOffset:{featured:{l:40,t:72},rateup:{l:74,b:18}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"farewell-of-snezhnaya-2",character:"tartaglia",textOffset:{l:57.5,b:6}}],rateup:["barbara","fischl","rosaria"]},weapons:{bannerName:"epitome-invocation-10",fatepointsystem:!1,featured:[{name:"skyward-harp"},{name:"lost-prayer-to-the-sacred-winds",buttonPosition:{l:70}}],rateup:["alley-hunter","favonius-codex","sacrificial-greatsword","favonius-lance","favonius-sword"],textOffset:{featured:{l:44,t:72},rateup:{l:75,b:16}}}}}],t={patch:1.4,data:a};export{a as data,t as default,e as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.5-d00419ea.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.5-d00419ea.js
deleted file mode 100644
index cd92130e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.5-d00419ea.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=1.5,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"gentry-of-hermitage-2",character:"zhongli"}],rateup:["yanfei","noelle","diona"]},weapons:{bannerName:"epitome-invocation-11",fatepointsystem:!1,featured:[{name:"summit-shaper"},{name:"memory-of-dust"}],rateup:["sacrificial-bow","eye-of-perception","lithic-blade","lithic-spear","the-flute"],textOffset:{featured:{l:43,t:71},rateup:{l:75,b:18}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"born-of-ocean-swell-1",character:"eula"}],rateup:["beidou","xinyan","xingqiu"]},weapons:{bannerName:"epitome-invocation-12",fatepointsystem:!1,featured:[{name:"song-of-broken-pines"},{name:"aquila-favonia"}],rateup:["sacrificial-sword","rust","sacrificial-fragments","rainslasher","dragon_s-bane"],textOffset:{featured:{l:39.5,t:71},rateup:{l:71,b:19}}}}}],t={patch:1.5,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.6-5d274b2f.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.6-5d274b2f.js
deleted file mode 100644
index ae54010c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/1.6-5d274b2f.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=1.6,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"sparkling-steps-2",character:"klee"}],rateup:["fischl","barbara","sucrose"]},weapons:{bannerName:"epitome-invocation-13",fatepointsystem:!1,featured:[{name:"lost-prayer-to-the-sacred-winds"},{name:"skyward-pride"}],rateup:["mitternachts-waltz","the-widsith","the-bell","favonius-lance","lion_s-roar"],textOffset:{featured:{l:42.5},rateup:{l:71.5,b:18}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"leaves-in-the-wind-1",character:"kaedehara-kazuha",textOffset:{w:25}}],rateup:["rosaria","bennett","razor"]},weapons:{bannerName:"epitome-invocation-14",fatepointsystem:!1,featured:[{name:"freedom-sworn"},{name:"skyward-atlas"}],rateup:["alley-hunter","wine-and-song","favonius-greatsword","dragon_s-bane","the-alley-flash"],textOffset:{featured:{l:41,t:71},rateup:{l:72,b:18}}}}}],t={patch:1.6,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/10-7182ee37.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/10-7182ee37.js
deleted file mode 100644
index 708a0b18..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/10-7182ee37.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/screen/wishlist/_page.svelte-4dd908c0.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2-e802658e.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2-e802658e.js
deleted file mode 100644
index c68bc23e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2-e802658e.js
+++ /dev/null
@@ -1 +0,0 @@
-import{P as m}from"./_page-87ee6ee5.js";export{m as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.0-d9400515.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.0-d9400515.js
deleted file mode 100644
index 4fc57141..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.0-d9400515.js
+++ /dev/null
@@ -1 +0,0 @@
-const e=2,a=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"the-heron_s-court-1",character:"kamisato-ayaka",textOffset:{l:51,w:28}}],rateup:["yanfei","chongyun","ningguang"]},weapons:{bannerName:"epitome-invocation-15",fatepointsystem:!0,featured:[{name:"mistsplitter-reforged"},{name:"skyward-spine"}],rateup:["the-stringless","favonius-codex","sacrificial-greatsword","favonius-lance","favonius-sword"],textOffset:{featured:{l:42,w:30},rateup:{l:79,b:16}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"tapestry-of-golden-flames-1",character:"yoimiya",textOffset:{l:50}}],rateup:["sayu","xinyan","diona"]},weapons:{bannerName:"epitome-invocation-16",fatepointsystem:!0,featured:[{name:"thundering-pulse"},{name:"skyward-blade"}],rateup:["sacrificial-sword","sacrificial-fragments","favonius-warbow","rainslasher","dragon_s-bane"],textOffset:{featured:{l:43,t:66},rateup:{l:76,b:18}}}}}],t={patch:2,data:a};export{a as data,t as default,e as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.1-b1e02588.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.1-b1e02588.js
deleted file mode 100644
index ce84d3f5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.1-b1e02588.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.1,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"reign-of-serenity-1",character:"raiden-shogun",textOffset:{l:61,b:13}}],rateup:["xiangling","sucrose","kujou-sara"]},weapons:{bannerName:"epitome-invocation-17",fatepointsystem:!0,featured:[{name:"engulfing-lightning"},{name:"the-unforged"}],rateup:["the-bell","sacrificial-bow","favonius-lance","the-widsith","lion_s-roar"],textOffset:{featured:{l:39.5,w:30},rateup:{l:76}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"drifting-luminescence-1",character:"sangonomiya-kokomi",textOffset:{w:23,l:51}}],rateup:["rosaria","xingqiu","beidou"]},weapons:{bannerName:"epitome-invocation-18",fatepointsystem:!0,featured:[{name:"primordial-jade-cutter",buttonPosition:{l:25}},{name:"everlasting-moonglow"}],rateup:["dragon_s-bane","the-stringless","favonius-codex","favonius-greatsword","the-flute"],textOffset:{featured:{l:42,w:30,t:66},rateup:{l:75.5}}}}}],t={patch:2.1,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.2-a8d9f452.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.2-a8d9f452.js
deleted file mode 100644
index 66de848f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.2-a8d9f452.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.2,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"farewell-of-snezhnaya-3",character:"tartaglia",textOffset:{l:50.5}}],rateup:["yanfei","chongyun","ningguang"]},weapons:{bannerName:"epitome-invocation-19",fatepointsystem:!0,featured:[{name:"polar-star"},{name:"memory-of-dust"}],rateup:["favonius-lance","rust","eye-of-perception","akuoumaru","favonius-sword"],textOffset:{featured:{l:42.2,t:67},rateup:{l:76.5,b:19}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"moment-of-bloom-2",character:"hu-tao",textOffset:{l:56}}],rateup:["thoma","diona","sayu"]},weapons:{bannerName:"epitome-invocation-20",fatepointsystem:!0,featured:[{name:"elegy-for-the-end"},{name:"staff-of-homa"}],rateup:["wavebreaker_s-fin","mouun_s-moon","the-widsith","rainslasher","sacrificial-sword"],textOffset:{featured:{l:38.5,t:68},rateup:{l:74,b:18}}}}}],t={patch:2.2,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.3-63f68053.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.3-63f68053.js
deleted file mode 100644
index 22f26a55..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.3-63f68053.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.3,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"secretum-secretorum-2",character:"albedo",textOffset:{l:55.5,b:9}},{bannerName:"born-of-ocean-swell-2",character:"eula",textOffset:{l:57,b:11}}],rateup:["bennett","noelle","rosaria"]},weapons:{bannerName:"epitome-invocation-21",fatepointsystem:!0,featured:[{name:"freedom-sworn"},{name:"song-of-broken-pines",buttonPosition:{l:60}}],rateup:["lion_s-roar","alley-hunter","wine-and-song","dragon_s-bane","sacrificial-greatsword"],textOffset:{featured:{t:68,w:30},rateup:{l:71,b:19}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"oni_s-royale-1",character:"arataki-itto",textOffset:{l:50,b:9.5}}],rateup:["barbara","xiangling","gorou"]},weapons:{bannerName:"epitome-invocation-22",fatepointsystem:!0,featured:[{name:"skyward-harp"},{name:"redhorn-stonethresher"}],rateup:["the-alley-flash","mitternachts-waltz","sacrificial-fragments","favonius-lance","the-bell"],textOffset:{featured:{t:67,w:30},rateup:{b:19,l:71}}}}}],t={patch:2.3,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.4-36c15b7f.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.4-36c15b7f.js
deleted file mode 100644
index 9c21ba5e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.4-36c15b7f.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.4,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"the-transcendent-one-returns-1",character:"shenhe",textOffset:{l:57,b:11}},{bannerName:"invitation-to-mundane-life-2",character:"xiao",textOffset:{l:57,b:12.5}}],rateup:["yun-jin","ningguang","chongyun"]},weapons:{bannerName:"epitome-invocation-23",fatepointsystem:!0,featured:[{name:"calamity-queller"},{name:"primordial-jade-winged-spear"}],rateup:["favonius-warbow","the-widsith","favonius-greatsword","lithic-spear","the-flute"],textOffset:{featured:{l:41.5,t:68.5},rateup:{l:78}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"gentry-of-hermitage-3",character:"zhongli",textOffset:{l:57,b:12}},{bannerName:"adrift-in-the-harbor-2",character:"ganyu",textOffset:{l:57,b:12}}],rateup:["xingqiu","yanfei","beidou"]},weapons:{bannerName:"epitome-invocation-24",fatepointsystem:!0,featured:[{name:"vortex-vanquisher"},{name:"amos-bow",buttonPosition:{l:70}}],rateup:["sacrificial-bow","lithic-blade","favonius-codex","favonius-sword","dragon_s-bane"],textOffset:{featured:{l:41.5,t:68,w:27},rateup:{l:78}}}}}],t={patch:2.4,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.5-5d57feac.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.5-5d57feac.js
deleted file mode 100644
index 735006a6..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.5-5d57feac.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.5,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"everbloom-violet-1",character:"yae-miko",textOffset:{l:61,b:12}}],rateup:["thoma","diona","fischl"]},weapons:{bannerName:"epitome-invocation-25",fatepointsystem:!0,featured:[{name:"kagura_s-verity"},{name:"primordial-jade-cutter"}],rateup:["rainslasher","eye-of-perception","the-stringless","wavebreaker_s-fin","sacrificial-sword"],textOffset:{featured:{w:31,l:35,t:68},rateup:{b:23}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"reign-of-serenity-2",character:"raiden-shogun",textOffset:{l:61.5,b:13}},{bannerName:"drifting-luminescence-2",character:"sangonomiya-kokomi",textOffset:{l:51,b:8,w:23}}],rateup:["bennett","kujou-sara","xinyan"]},weapons:{bannerName:"epitome-invocation-26",fatepointsystem:!0,featured:[{name:"engulfing-lightning"},{name:"everlasting-moonglow"}],rateup:["akuoumaru","favonius-lance","lion_s-roar","mouun_s-moon","sacrificial-fragments"],textOffset:{featured:{w:34,l:35.5,t:67.5},rateup:{l:74.5,b:23}}}}}],t={patch:2.5,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.6-0570e3ed.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.6-0570e3ed.js
deleted file mode 100644
index 41961069..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.6-0570e3ed.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.6,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"azure-excursion-1",character:"kamisato-ayato",textOffset:{l:48,b:11}},{bannerName:"ballad-in-goblets-3",character:"venti",textOffset:{l:53.5,b:11}}],rateup:["sucrose","xiangling","yun-jin"]},weapons:{bannerName:"epitome-invocation-27",fatepointsystem:!0,featured:[{name:"elegy-for-the-end"},{name:"haran-geppaku-futsu"}],rateup:["the-flute","rust","dragon_s-bane","the-widsith","sacrificial-greatsword"],textOffset:{featured:{w:33,l:39.5,t:67},rateup:{l:79}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"the-heron_s-court-2",character:"kamisato-ayaka",textOffset:{l:44,b:10,w:32}}],rateup:["razor","rosaria","sayu"]},weapons:{bannerName:"epitome-invocation-28",fatepointsystem:!0,featured:[{name:"mistsplitter-reforged"},{name:"the-unforged"}],rateup:["favonius-codex","favonius-lance","favonius-warbow","favonius-sword","the-bell"],textOffset:{featured:{w:32,l:39,t:67},rateup:{l:76.5}}}}}],t={patch:2.6,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.7-1162b8cf.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.7-1162b8cf.js
deleted file mode 100644
index f54976e4..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.7-1162b8cf.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.7,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"discerner-of-enigmas-1",character:"yelan",textOffset:{l:49,b:11}},{bannerName:"invitation-to-mundane-life-3",character:"xiao",textOffset:{l:49,b:11}}],rateup:["yanfei","barbara","noelle"]},weapons:{bannerName:"epitome-invocation-29",fatepointsystem:!0,featured:[{name:"aqua-simulacra"},{name:"primordial-jade-winged-spear",buttonPosition:{l:60}}],rateup:["lithic-spear","sacrificial-bow","sacrificial-sword","eye-of-perception","favonius-greatsword"],textOffset:{featured:{l:44,t:68},rateup:{l:76,b:22}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"oni_s-royale-2",character:"arataki-itto",textOffset:{w:30,l:49,b:11}}],rateup:["kuki-shinobu","chongyun","gorou"]},weapons:{bannerName:"epitome-invocation-30",fatepointsystem:!0,featured:[{name:"redhorn-stonethresher"},{name:"memory-of-dust",buttonPosition:{l:35}}],rateup:["lithic-blade","the-stringless","sacrificial-fragments","dragon_s-bane","lion_s-roar"],textOffset:{featured:{w:28,l:41.5,t:67.5},rateup:{l:76,b:22}}}}}],t={patch:2.7,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.8-c43df701.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.8-c43df701.js
deleted file mode 100644
index 84743227..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/2.8-c43df701.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=2.8,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"leaves-in-the-wind-2",character:"kaedehara-kazuha"},{bannerName:"sparkling-steps-3",character:"klee"}],rateup:["shikanoin-heizou","thoma","ningguang"]},weapons:{bannerName:"epitome-invocation-31",fatepointsystem:!0,featured:[{name:"freedom-sworn"},{name:"lost-prayer-to-the-sacred-winds",buttonPosition:{l:65}}],rateup:["the-alley-flash","mitternachts-waltz","the-widsith","favonius-lance","rainslasher"]}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"tapestry-of-golden-flames-2",character:"yoimiya",textOffset:{l:50}}],rateup:["bennett","xinyan","yun-jin"]},weapons:{bannerName:"epitome-invocation-32",fatepointsystem:!0,featured:[{name:"thundering-pulse"},{name:"summit-shaper",buttonPosition:{l:60}}],rateup:["wine-and-song","alley-hunter","the-flute","sacrificial-greatsword","dragon_s-bane"],textOffset:{featured:{l:35,t:68},rateup:{l:70,b:22}}}}}],t={patch:2.8,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3-ec629fe3.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3-ec629fe3.js
deleted file mode 100644
index 6e6b2d04..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3-ec629fe3.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/adkey/_page.svelte-0e8e16a9.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.0-3ac6ff72.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.0-3ac6ff72.js
deleted file mode 100644
index 033c8dc6..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.0-3ac6ff72.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3,e=[{phase:1,banners:{standardVersion:2,events:{featured:[{bannerName:"viridescent-vigil-1",character:"tighnari"},{bannerName:"gentry-of-hermitage-4",character:"zhongli",textOffset:{l:57,b:13}}],rateup:["collei","fischl","diona"]},weapons:{bannerName:"epitome-invocation-33",fatepointsystem:!0,featured:[{name:"hunter_s-path"},{name:"vortex-vanquisher",buttonPosition:{l:60}}],rateup:["favonius-sword","the-stringless","the-bell","favonius-codex","favonius-lance"],textOffset:{featured:{l:42,t:68,w:32},rateup:{l:75.5,b:20,w:15}}}}},{phase:2,banners:{standardVersion:2,events:{featured:[{bannerName:"drifting-luminescence-3",character:"sangonomiya-kokomi",textOffset:{l:51,b:8}},{bannerName:"adrift-in-the-harbor-3",character:"ganyu",textOffset:{l:57,b:12.8}}],rateup:["dori","xingqiu","sucrose"]},weapons:{bannerName:"epitome-invocation-34",fatepointsystem:!0,featured:[{name:"amos-bow"},{name:"everlasting-moonglow"}],rateup:["sacrificial-sword","rust","dragon_s-bane","favonius-greatsword","eye-of-perception"],textOffset:{featured:{l:44,t:71,w:28},rateup:{l:78.5,b:19,w:15}}}}}],t={patch:3,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.1-9f559463.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.1-9f559463.js
deleted file mode 100644
index e3a0c981..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.1-9f559463.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.1,e=[{phase:1,banners:{standardVersion:3,events:{featured:[{bannerName:"twilight-arbiter-1",character:"cyno",textOffset:{l:55,b:10}},{bannerName:"ballad-in-goblets-4",character:"venti",textOffset:{l:55,b:10.5}}],rateup:["candace","kuki-shinobu","sayu"]},weapons:{bannerName:"epitome-invocation-35",fatepointsystem:!0,featured:[{name:"elegy-for-the-end"},{name:"staff-of-the-scarlet-sands"}],rateup:["makhaira-aquamarine","lion_s-roar","sacrificial-fragments","favonius-lance","favonius-warbow"],textOffset:{featured:{l:41,t:66,w:30},rateup:{l:73.5,b:17,w:20}}}}},{phase:2,banners:{standardVersion:3,events:{featured:[{bannerName:"twirling-lotus-1",character:"nilou",textOffset:{l:55,b:10}},{bannerName:"secretum-secretorum-3",character:"albedo",textOffset:{l:55,b:10.5}}],rateup:["beidou","barbara","xiangling"]},weapons:{bannerName:"epitome-invocation-36",fatepointsystem:!0,featured:[{name:"key-of-khaj-nisut"},{name:"primordial-jade-cutter"}],rateup:["xiphos-moonlight","dragon_s-bane","sacrificial-bow","rainslasher","wandering-evenstar"],textOffset:{featured:{l:41,t:66},rateup:{l:73.5,b:17,w:20}}}}}],t={patch:3.1,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.2-deb84a02.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.2-deb84a02.js
deleted file mode 100644
index 2e14e13c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.2-deb84a02.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.2,e=[{phase:1,banners:{standardVersion:3,events:{featured:[{bannerName:"the-moongrass-enlightenment-1",character:"nahida",textOffset:{l:48,b:8.5}},{bannerName:"tapestry-of-golden-flames-3",character:"yoimiya",textOffset:{l:50}}],rateup:["bennett","razor","noelle"]},weapons:{bannerName:"epitome-invocation-37",fatepointsystem:!0,featured:[{name:"a-thousand-floating-dreams"},{name:"thundering-pulse"}],rateup:["rust","favonius-lance","the-widsith","the-flute","sacrificial-greatsword"],textOffset:{featured:{l:42.5,t:62},rateup:{l:79,b:22}}}}},{phase:2,banners:{standardVersion:3,events:{featured:[{bannerName:"everbloom-violet-2",character:"yae-miko",textOffset:{l:46.6,b:13}},{bannerName:"farewell-of-snezhnaya-4",character:"tartaglia",textOffset:{l:47,b:9}}],rateup:["layla","thoma","shikanoin-heizou"]},weapons:{bannerName:"epitome-invocation-38",fatepointsystem:!0,featured:[{name:"kagura_s-verity",buttonPosition:{l:64}},{name:"polar-star"}],rateup:["favonius-sword","the-stringless","dragon_s-bane","the-bell","favonius-codex"],textOffset:{featured:{l:42.5,t:67},rateup:{l:70.5,b:22}}}}}],t={patch:3.2,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.3-60e982e0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.3-60e982e0.js
deleted file mode 100644
index 1ce5c557..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.3-60e982e0.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.3,e=[{phase:1,banners:{standardVersion:3,events:{featured:[{bannerName:"from-ashes-reborn-1",character:"wanderer",textOffset:{l:58.5,b:10.5}},{bannerName:"oni_s-royale-3",character:"arataki-itto",textOffset:{w:30,l:56,b:10}}],rateup:["faruzan","gorou","yanfei"]},weapons:{bannerName:"epitome-invocation-39",fatepointsystem:!0,featured:[{name:"tulaytullah_s-remembrance"},{name:"redhorn-stonethresher"}],rateup:["eye-of-perception","favonius-warbow","wavebreaker_s-fin","favonius-greatsword","sacrificial-sword"],textOffset:{featured:{l:42.5,t:65,w:30.5},rateup:{l:78,w:18,b:26}}}}},{phase:2,banners:{standardVersion:3,events:{featured:[{bannerName:"reign-of-serenity-3",character:"raiden-shogun",textOffset:{l:47,b:8.5}},{bannerName:"azure-excursion-2",character:"kamisato-ayato",textOffset:{l:47,b:8.5}}],rateup:["rosaria","sayu","kujou-sara"]},weapons:{bannerName:"epitome-invocation-40",fatepointsystem:!0,featured:[{name:"engulfing-lightning"},{name:"haran-geppaku-futsu"}],rateup:["akuoumaru","favonius-lance","lion_s-roar","mouun_s-moon","sacrificial-fragments"],textOffset:{featured:{w:34,l:35.5,t:67.5},rateup:{l:75,b:19}}}}}],t={patch:3.3,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.4-0159422c.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.4-0159422c.js
deleted file mode 100644
index 9041dad2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.4-0159422c.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.4,e=[{phase:1,banners:{standardVersion:3,events:{featured:[{bannerName:"caution-in-confidence-1",character:"alhaitham",textOffset:{l:48.5}},{bannerName:"invitation-to-mundane-life-4",character:"xiao",textOffset:{l:48.5}}],rateup:["yaoyao","xinyan","yun-jin"]},weapons:{bannerName:"epitome-invocation-41",fatepointsystem:!0,featured:[{name:"light-of-foliar-incision"},{name:"primordial-jade-winged-spear",buttonPosition:{l:60}}],rateup:["lithic-spear","the-widsith","the-flute","rainslasher","sacrificial-bow"],textOffset:{featured:{l:38.5,t:62,w:30.5},rateup:{l:72.5,b:22.5}}}}},{phase:2,banners:{standardVersion:3,events:{featured:[{bannerName:"moment-of-bloom-3",character:"hu-tao",textOffset:{l:51}},{bannerName:"discerner-of-enigmas-2",character:"yelan",textOffset:{l:51}}],rateup:["xingqiu","ningguang","beidou"]},weapons:{bannerName:"epitome-invocation-42",fatepointsystem:!0,featured:[{name:"staff-of-homa"},{name:"aqua-simulacra"}],rateup:["lithic-blade","rust","favonius-sword","favonius-codex","dragon_s-bane"],textOffset:{featured:{l:38.5,t:67},rateup:{l:72.5,b:22.5}}}}}],t={patch:3.4,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.5-0e9eadf4.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.5-0e9eadf4.js
deleted file mode 100644
index 6b74be4f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.5-0e9eadf4.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.5,e=[{phase:1,banners:{standardVersion:3,events:{featured:[{bannerName:"auric-blaze-1",character:"dehya",textOffset:{l:48.5}},{bannerName:"twilight-arbiter-2",character:"cyno",textOffset:{l:48.5}}],rateup:["barbara","collei","bennett"]},weapons:{bannerName:"epitome-invocation-43",fatepointsystem:!0,featured:[{name:"beacon-of-the-reed-sea"},{name:"staff-of-the-scarlet-sands"}],rateup:["the-alley-flash","alley-hunter","dragon_s-bane","eye-of-perception","sacrificial-greatsword"],textOffset:{featured:{l:34.5,t:67,w:30.5},rateup:{l:72.5,b:24}}}}},{phase:2,banners:{standardVersion:3,events:{featured:[{bannerName:"the-transcendent-one-returns-2",character:"shenhe",textOffset:{t:67,l:50.5}},{bannerName:"the-heron_s-court-3",character:"kamisato-ayaka",textOffset:{l:48.5}}],rateup:["diona","sucrose","mika"]},weapons:{bannerName:"epitome-invocation-44",fatepointsystem:!0,featured:[{name:"calamity-queller"},{name:"mistsplitter-reforged"}],rateup:["wine-and-song","the-bell","favonius-warbow","sacrificial-sword","favonius-lance"],textOffset:{featured:{l:38.5,t:67,w:30},rateup:{l:72.5,b:22.5}}}}}],t={patch:3.5,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.6-2d1ccd10.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.6-2d1ccd10.js
deleted file mode 100644
index c6786e3d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.6-2d1ccd10.js
+++ /dev/null
@@ -1 +0,0 @@
-const e=3.6,a=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"the-moongrass-enlightenment-2",character:"nahida",textOffset:{l:50.5,b:10}},{bannerName:"twirling-lotus-2",character:"nilou",textOffset:{l:50.5,b:10.5}}],rateup:["dori","kuki-shinobu","layla"]},weapons:{bannerName:"epitome-invocation-45",fatepointsystem:!0,featured:[{name:"key-of-khaj-nisut"},{name:"a-thousand-floating-dreams"}],rateup:["xiphos-moonlight","the-stringless","dragon_s-bane","favonius-greatsword","sacrificial-fragments"],textOffset:{featured:{l:52.5,t:71,w:23},rateup:{l:74.5,b:19}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"immaculate-pulse-1",character:"baizhu",textOffset:{l:50.5,b:9}},{bannerName:"adrift-in-the-harbor-4",character:"ganyu",textOffset:{l:50.5,b:10.5}}],rateup:["kaveh","candace","fischl"]},weapons:{bannerName:"epitome-invocation-46",fatepointsystem:!0,featured:[{name:"amos-bow"},{name:"jadefall-splendor"}],rateup:["makhaira-aquamarine","wandering-evenstar","lion_s-roar","favonius-lance","sacrificial-bow"],textOffset:{featured:{l:50,t:73},rateup:{l:74,b:19}}}}}],t={patch:3.6,data:a};export{a as data,t as default,e as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.7-dfc781bc.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.7-dfc781bc.js
deleted file mode 100644
index db6dde65..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.7-dfc781bc.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.7,e=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"tapestry-of-golden-flames-4",character:"yoimiya",textOffset:{l:48.5}},{bannerName:"everbloom-violet-3",character:"yae-miko",textOffset:{l:48.6,b:8}}],rateup:["kirara","yun-jin","chongyun"]},weapons:{bannerName:"epitome-invocation-47",fatepointsystem:!0,featured:[{name:"thundering-pulse"},{name:"kagura_s-verity",buttonPosition:{l:64}}],rateup:["akuoumaru","the-flute","dragon_s-bane","rust","the-widsith"],textOffset:{featured:{l:52.5,t:71,w:23},rateup:{l:74.5,b:19}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"caution-in-confidence-2",character:"alhaitham",textOffset:{l:50.5,b:10}},{bannerName:"leaves-in-the-wind-3",character:"kaedehara-kazuha",textOffset:{l:46,b:12}}],rateup:["yaoyao","shikanoin-heizou","xiangling"]},weapons:{bannerName:"epitome-invocation-48",fatepointsystem:!0,featured:[{name:"light-of-foliar-incision"},{name:"freedom-sworn",buttonPosition:{l:60}}],rateup:["wavebreaker_s-fin","favonius-codex","favonius-sword","mouun_s-moon","sacrificial-greatsword"],textOffset:{featured:{l:52,t:72,w:27},rateup:{l:80,b:18.5}}}}}],t={patch:3.7,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.8-cab116ac.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.8-cab116ac.js
deleted file mode 100644
index 30acdd30..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/3.8-cab116ac.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=3.8,e=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"born-of-ocean-swell-3",character:"eula",textOffset:{l:50,b:10.5}},{bannerName:"sparkling-steps-4",character:"klee",textOffset:{l:50,b:11.5}}],rateup:["mika","thoma","razor"]},weapons:{bannerName:"epitome-invocation-49",fatepointsystem:!0,featured:[{name:"song-of-broken-pines"},{name:"lost-prayer-to-the-sacred-winds",buttonPosition:{l:70,t:65}}],rateup:["the-alley-flash","alley-hunter","eye-of-perception","favonius-lance","rainslasher"],textOffset:{featured:{l:49,t:71.5,w:23},rateup:{l:79,b:20.5}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"drifting-luminescence-4",character:"sangonomiya-kokomi",textOffset:{l:50,b:10.5}},{bannerName:"from-ashes-reborn-2",character:"wanderer",textOffset:{l:50,b:11.5}}],rateup:["yanfei","rosaria","faruzan"]},weapons:{bannerName:"epitome-invocation-50",fatepointsystem:!0,featured:[{name:"everlasting-moonglow"},{name:"tulaytullah_s-remembrance"}],rateup:["wine-and-song","the-bell","dragon_s-bane","favonius-warbow","lion_s-roar"],textOffset:{featured:{l:46,t:71.5,w:25},rateup:{l:79,b:20.5}}}}}],t={patch:3.8,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4-80ff4ce0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4-80ff4ce0.js
deleted file mode 100644
index 2f8a61a1..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4-80ff4ce0.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/bnlist/_page.svelte-42422615.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.0-b6f7811b.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.0-b6f7811b.js
deleted file mode 100644
index 18378dda..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.0-b6f7811b.js
+++ /dev/null
@@ -1 +0,0 @@
-const a=4,e=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"conjuring-chiaroscuro-1",character:"lyney",textOffset:{l:50.5,b:10.7}},{bannerName:"discerner-of-enigmas-3",character:"yelan",textOffset:{l:50.5,b:10.7}}],rateup:["lynette","barbara","bennett"]},weapons:{bannerName:"epitome-invocation-51",fatepointsystem:!0,featured:[{name:"the-first-great-magic"},{name:"aqua-simulacra",buttonPosition:{l:70}}],rateup:["sacrificial-sword","sacrificial-bow","sacrificial-fragments","favonius-lance","favonius-greatsword"],textOffset:{featured:{l:48.5,t:70,w:29},rateup:{l:78,b:20}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"gentry-of-hermitage-5",character:"zhongli",textOffset:{l:50.5,b:10.7}},{bannerName:"farewell-of-snezhnaya-5",character:"tartaglia",textOffset:{l:50.5,b:10.7}}],rateup:["freminet","sayu","noelle"]},weapons:{bannerName:"epitome-invocation-52",fatepointsystem:!0,featured:[{name:"vortex-vanquisher",buttonPosition:{l:30}},{name:"polar-star",buttonPosition:{l:70}}],rateup:["the-flute","rust","dragon_s-bane","the-widsith","sacrificial-greatsword"],textOffset:{featured:{l:49,t:70},rateup:{l:78,b:20}}}}}],t={patch:4,data:e};export{e as data,t as default,a as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.1-a7933656.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.1-a7933656.js
deleted file mode 100644
index 195fc4cc..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.1-a7933656.js
+++ /dev/null
@@ -1 +0,0 @@
-const t=4.1,e=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"decree-of-the-deeps-1",character:"neuvillette",textOffset:{l:50.5,b:10.7}},{bannerName:"moment-of-bloom-4",character:"hu-tao",textOffset:{l:50.5,b:10.7}}],rateup:["xingqiu","diona","fischl"]},weapons:{bannerName:"epitome-invocation-53",fatepointsystem:!0,featured:[{name:"tome-of-the-eternal-flow"},{name:"staff-of-homa",buttonPosition:{l:70}}],rateup:["the-dockhands-assistant","portable-power-saw","mitternachts-waltz","favonius-lance","favonius-codex"],textOffset:{featured:{l:47,t:71,w:29},rateup:{l:76,b:17}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"tempestuous-destiny-1",character:"wriothesley",textOffset:{l:48.5}},{bannerName:"ballad-in-goblets-5",character:"venti",textOffset:{l:48.5}}],rateup:["dori","thoma","chongyun"]},weapons:{bannerName:"epitome-invocation-54",fatepointsystem:!0,featured:[{name:"cashflow-supervision"},{name:"elegy-for-the-end",buttonPosition:{l:70}}],rateup:["prospector-drill","range-gauge","rainslasher","favonius-sword","eye-of-perception"],textOffset:{featured:{l:41.5,t:66,w:29},rateup:{l:75,b:26}}}}}],a={patch:4.1,data:e};export{e as data,a as default,t as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.2-afc28708.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.2-afc28708.js
deleted file mode 100644
index 18ab28cb..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.2-afc28708.js
+++ /dev/null
@@ -1 +0,0 @@
-const e=4.2,a=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"chanson-of-many-waters-1",character:"furina",textOffset:{l:50.75,b:9}},{bannerName:"immaculate-pulse-2",character:"baizhu",textOffset:{l:50.75,b:9}}],rateup:["charlotte","beidou","collei"]},weapons:{bannerName:"epitome-invocation-55",fatepointsystem:!0,featured:[{name:"splendor-of-tranquil-waters"},{name:"jadefall-splendor"}],rateup:["sacrificial-sword","the-stringless","the-bell","sacrificial-fragments","dragon_s-bane"],textOffset:{featured:{l:47,t:70,w:29},rateup:{l:77.5,b:20}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"twilight-arbiter-3",character:"cyno",textOffset:{l:50,b:10.5}},{bannerName:"azure-excursion-3",character:"kamisato-ayato",textOffset:{l:50,b:11}}],rateup:["xiangling","kuki-shinobu","kirara"]},weapons:{bannerName:"epitome-invocation-56",fatepointsystem:!0,featured:[{name:"staff-of-the-scarlet-sands",buttonPosition:{l:30}},{name:"haran-geppaku-futsu"}],rateup:["lion_s-roar","favonius-warbow","favonius-lance","favonius-greatsword","the-widsith"],textOffset:{featured:{l:47,t:73,w:29},rateup:{l:80.5,b:19}}}}}],t={patch:4.2,data:a};export{a as data,t as default,e as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.3-f9a28ea0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.3-f9a28ea0.js
deleted file mode 100644
index 13c54f5b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/4.3-f9a28ea0.js
+++ /dev/null
@@ -1 +0,0 @@
-const t=4.3,e=[{phase:1,banners:{standardVersion:4,events:{featured:[{bannerName:"in-the-name-of-the-rosula-1",character:"navia",textOffset:{l:50,b:10.75}},{bannerName:"the-heron_s-court-4",character:"kamisato-ayaka",textOffset:{l:51,b:10}}],rateup:["candace","rosaria","sucrose"]},weapons:{bannerName:"epitome-invocation-57",fatepointsystem:!0,featured:[{name:"verdict"},{name:"mistsplitter-reforged",buttonPosition:{l:60}}],rateup:["akuoumaru","mouun_s-moon","the-flute","favonius-codex","dragon_s-bane"],textOffset:{featured:{l:47,t:70,w:29},rateup:{l:79,b:20}}}}},{phase:2,banners:{standardVersion:4,events:{featured:[{bannerName:"reign-of-serenity-4",character:"raiden-shogun",textOffset:{l:50,b:11}},{bannerName:"tapestry-of-golden-flames-5",character:"yoimiya",textOffset:{l:50,b:10.75}}],rateup:["chevreuse","kujou-sara","bennett"]},weapons:{bannerName:"epitome-invocation-58",fatepointsystem:!0,featured:[{name:"engulfing-lightning",buttonPosition:{l:60}},{name:"thundering-pulse",buttonPosition:{l:40}}],rateup:["wavebreaker_s-fin","rust","favonius-sword","rainslasher","eye-of-perception"],textOffset:{featured:{l:46,t:72},rateup:{l:75,b:20}}}}}],a={patch:4.3,data:e};export{e as data,a as default,t as patch};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/5-f9b12e78.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/5-f9b12e78.js
deleted file mode 100644
index d26b59cc..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/5-f9b12e78.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/install/_page.svelte-6780e863.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/6-2e57bd17.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/6-2e57bd17.js
deleted file mode 100644
index a4422987..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/6-2e57bd17.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/privacy-policy/_page.svelte-4a885c79.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/7-838d287c.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/7-838d287c.js
deleted file mode 100644
index cc7f69f3..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/7-838d287c.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/screen/_page.svelte-cc5d84fc.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/8-d7c5761b.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/8-d7c5761b.js
deleted file mode 100644
index e2f97081..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/8-d7c5761b.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/screen/chars/_page.svelte-35d178b5.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/9-35d90427.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/9-35d90427.js
deleted file mode 100644
index f2f5a44e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/9-35d90427.js
+++ /dev/null
@@ -1 +0,0 @@
-import{default as t}from"../components/pages/screen/wishitem/_page.svelte-8e5d743d.js";export{t as component};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ButtonModal-7ee3a4a1.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ButtonModal-7ee3a4a1.js
deleted file mode 100644
index 6dedb734..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ButtonModal-7ee3a4a1.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as M,i as O,s as U,k as g,a as C,l as k,m as y,c as D,h as f,n as _,N as S,b as B,G as T,H as G,O as H,f as q,t as A,E as P,$ as R,W as I,ai as N,A as E,q as V,r as W,u as Y,R as j,T as F,U as J,V as K}from"./index-c0d078cd.js";import{Y as L}from"./runtime.esm-4bf604c8.js";function Q(a){let t;return{c(){t=g("i"),this.h()},l(e){t=k(e,"I",{class:!0}),y(t).forEach(f),this.h()},h(){_(t,"class","gi-times svelte-1sz47b8")},m(e,l){B(e,t,l)},p:E,d(e){e&&f(t)}}}function X(a){let t;return{c(){t=g("i"),this.h()},l(e){t=k(e,"I",{class:!0}),y(t).forEach(f),this.h()},h(){_(t,"class","gi-circle-o svelte-1sz47b8")},m(e,l){B(e,t,l)},p:E,d(e){e&&f(t)}}}function Z(a){let t,e;return{c(){t=g("i"),this.h()},l(l){t=k(l,"I",{class:!0}),y(t).forEach(f),this.h()},h(){_(t,"class",e="gi-"+a[5]+" svelte-1sz47b8")},m(l,i){B(l,t,i)},p(l,i){i&32&&e!==(e="gi-"+l[5]+" svelte-1sz47b8")&&_(t,"class",e)},d(l){l&&f(t)}}}function p(a){let t,e=(a[1]||(a[0]==="confirm"?a[6]("confirmButton"):a[6]("cancelButton")))+"",l;return{c(){t=g("span"),l=V(e)},l(i){t=k(i,"SPAN",{});var n=y(t);l=W(n,e),n.forEach(f)},m(i,n){B(i,t,n),T(t,l)},p(i,n){n&67&&e!==(e=(i[1]||(i[0]==="confirm"?i[6]("confirmButton"):i[6]("cancelButton")))+"")&&Y(l,e)},i:E,o:E,d(i){i&&f(t)}}}function w(a){let t;const e=a[10].default,l=j(e,a,a[9],null);return{c(){l&&l.c()},l(i){l&&l.l(i)},m(i,n){l&&l.m(i,n),t=!0},p(i,n){l&&l.p&&(!t||n&512)&&F(l,e,i,i[9],t?K(e,i[9],n,null):J(i[9]),null)},i(i){t||(q(l,i),t=!0)},o(i){A(l,i),t=!1},d(i){l&&l.d(i)}}}function x(a){let t,e,l,i,n,u,h,d;function m(s,o){return s[5]?Z:s[0]==="confirm"?X:Q}let r=m(a),c=r(a);const v=[w,p],b=[];function z(s,o){return s[7]?0:1}return l=z(a),i=b[l]=v[l](a),{c(){t=g("button"),c.c(),e=C(),i.c(),this.h()},l(s){t=k(s,"BUTTON",{style:!0,class:!0});var o=y(t);c.l(o),e=D(o),i.l(o),o.forEach(f),this.h()},h(){t.disabled=a[2],_(t,"style",n=a[4]?`width:${a[4]}`:""),_(t,"class","svelte-1sz47b8"),S(t,"light",a[3])},m(s,o){B(s,t,o),c.m(t,null),T(t,e),b[l].m(t,null),u=!0,h||(d=G(t,"click",H(a[8])),h=!0)},p(s,[o]){r===(r=m(s))&&c?c.p(s,o):(c.d(1),c=r(s),c&&(c.c(),c.m(t,e))),i.p(s,o),(!u||o&4)&&(t.disabled=s[2]),(!u||o&16&&n!==(n=s[4]?`width:${s[4]}`:""))&&_(t,"style",n),o&8&&S(t,"light",s[3])},i(s){u||(q(i),u=!0)},o(s){A(i),u=!1},d(s){s&&f(t),c.d(),b[l].d(),h=!1,d()}}}function $(a,t,e){let l;P(a,L,s=>e(6,l=s));let{$$slots:i={},$$scope:n}=t;const u=t.$$slots;let{type:h="confirm"}=t,{text:d=""}=t,{disabled:m=!1}=t,{light:r=!1}=t,{width:c=""}=t,{icon:v=""}=t;const b=R(),z=()=>b("click");return a.$$set=s=>{e(12,t=I(I({},t),N(s))),"type"in s&&e(0,h=s.type),"text"in s&&e(1,d=s.text),"disabled"in s&&e(2,m=s.disabled),"light"in s&&e(3,r=s.light),"width"in s&&e(4,c=s.width),"icon"in s&&e(5,v=s.icon),"$$scope"in s&&e(9,n=s.$$scope)},t=N(t),[h,d,m,r,c,v,l,u,z,n,i]}class lt extends M{constructor(t){super(),O(this,t,$,x,U,{type:0,text:1,disabled:2,light:3,width:4,icon:5})}}export{lt as B};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/CheckBox-828e98c0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/CheckBox-828e98c0.js
deleted file mode 100644
index cef3b629..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/CheckBox-828e98c0.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as q,i as D,s as L,R as T,k as v,a as I,q as U,l as b,m as C,c as S,r as V,h as g,n as o,b as A,G as m,H as G,T as H,U as N,V as P,f as R,t as j,$ as w}from"./index-c0d078cd.js";import{p as F}from"./audio-460a91c6.js";function J(i){let s,t,_,u,h,a,r,k,n,d,f,E,y;const z=i[4].default,l=T(z,i,i[3],null);return{c(){s=v("div"),t=v("input"),h=I(),a=v("label"),r=v("i"),k=U("\u2714"),n=I(),l&&l.c(),this.h()},l(e){s=b(e,"DIV",{class:!0});var c=C(s);t=b(c,"INPUT",{type:!0,name:!0,id:!0,class:!0}),h=S(c),a=b(c,"LABEL",{for:!0,class:!0});var p=C(a);r=b(p,"I",{class:!0});var B=C(r);k=V(B,"\u2714"),B.forEach(g),n=S(p),l&&l.l(p),p.forEach(g),c.forEach(g),this.h()},h(){o(t,"type","checkbox"),o(t,"name",_="check"+i[1]),o(t,"id",u="check"+i[1]),t.checked=i[0],o(t,"class","svelte-1fmz7al"),o(r,"class","svelte-1fmz7al"),o(a,"for",d="check"+i[1]),o(a,"class","svelte-1fmz7al"),o(s,"class","checkbox svelte-1fmz7al")},m(e,c){A(e,s,c),m(s,t),m(s,h),m(s,a),m(a,r),m(r,k),m(a,n),l&&l.m(a,null),f=!0,E||(y=G(t,"change",i[2]),E=!0)},p(e,[c]){(!f||c&2&&_!==(_="check"+e[1]))&&o(t,"name",_),(!f||c&2&&u!==(u="check"+e[1]))&&o(t,"id",u),(!f||c&1)&&(t.checked=e[0]),l&&l.p&&(!f||c&8)&&H(l,z,e,e[3],f?P(z,e[3],c,null):N(e[3]),null),(!f||c&2&&d!==(d="check"+e[1]))&&o(a,"for",d)},i(e){f||(R(l,e),f=!0)},o(e){j(l,e),f=!1},d(e){e&&g(s),l&&l.d(e),E=!1,y()}}}function K(i,s,t){let{$$slots:_={},$$scope:u}=s,{checked:h=!1}=s,{id:a="_0"}=s;const r=w(),k=n=>{const{checked:d}=n.target;r("change",{checked:d}),F("click2")};return i.$$set=n=>{"checked"in n&&t(0,h=n.checked),"id"in n&&t(1,a=n.id),"$$scope"in n&&t(3,u=n.$$scope)},[h,a,k,u,_]}class Q extends q{constructor(s){super(),D(this,s,K,J,L,{checked:0,id:1})}}export{Q as C};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ModalConvert-3a3233d8.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ModalConvert-3a3233d8.js
deleted file mode 100644
index a5508397..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ModalConvert-3a3233d8.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as He,i as Oe,s as Ue,v as G,a as y,w as Y,c as I,x as j,b as fe,f as J,t as K,y as L,h as i,E as Se,P as Ne,F as qe,k as p,q as w,l as c,m,r as D,n as u,p as ye,N as Ae,G as t,u as A}from"./index-c0d078cd.js";import{Y as ze}from"./runtime.esm-4bf604c8.js";import{h as Re,p as Fe}from"./app-stores-358281e6.js";import{a as ke}from"./index-123e2351.js";import{p as Be}from"./audio-460a91c6.js";import{I as Ie}from"./WishResult-901333c5.js";import{M as Ge}from"./_page-87ee6ee5.js";import{M as Ye,R as je}from"./_modal-balance-a6913f0e.js";function Te(a){let s,n=a[2]("shop.insufficient")+"",l;return{c(){s=p("div"),l=w(n),this.h()},l(r){s=c(r,"DIV",{class:!0});var e=m(s);l=D(e,n),e.forEach(i),this.h()},h(){u(s,"class","error red svelte-5sh5yx")},m(r,e){fe(r,s,e),t(s,l)},p(r,e){e&4&&n!==(n=r[2]("shop.insufficient")+"")&&A(l,n)},d(r){r&&i(s)}}}function Je(a){let s,n,l,r,e,v,h,C=a[2]("shop.item.genesis")+"",B,_,g,M,R,pe,T,Q=a[2]("shop.item.primogem")+"",ee,ce,H,W,me,P,S,O,X=a[2]("shop.qty")+"",se,ue,de,U,Z=(a[1]<1?1:a[0])+"",te,ve,b,N,he,$,x=a[2]("shop.consume")+"",ae,_e,k,ge,q,ne,$e,V;e=new Ie({props:{type:"genesis",width:"50%"}}),R=new Ie({props:{type:"primogem",width:"50%"}}),N=new je({props:{value:a[1]<1?1:a[0],min:a[1]<=1?0:1,max:a[1]||1,disabled:a[1]<1}}),k=new Ie({props:{type:"genesis"}});let d=a[1]<1&&Te(a);return{c(){s=p("div"),n=p("div"),l=p("div"),r=p("picture"),G(e.$$.fragment),v=y(),h=p("span"),B=w(C),_=y(),g=p("div"),M=p("picture"),G(R.$$.fragment),pe=y(),T=p("span"),ee=w(Q),ce=y(),H=p("div"),W=p("i"),me=y(),P=p("div"),S=p("div"),O=p("span"),se=w(X),ue=w(" :"),de=y(),U=p("span"),te=w(Z),ve=y(),b=p("div"),G(N.$$.fragment),he=y(),$=p("div"),ae=w(x),_e=y(),G(k.$$.fragment),ge=y(),q=p("span"),ne=w(a[0]),$e=y(),d&&d.c(),this.h()},l(o){s=c(o,"DIV",{class:!0});var f=m(s);n=c(f,"DIV",{class:!0});var E=m(n);l=c(E,"DIV",{class:!0});var be=m(l);r=c(be,"PICTURE",{class:!0});var le=m(r);Y(e.$$.fragment,le),v=I(le),h=c(le,"SPAN",{class:!0});var Ve=m(h);B=D(Ve,C),Ve.forEach(i),le.forEach(i),be.forEach(i),_=I(E),g=c(E,"DIV",{class:!0});var we=m(g);M=c(we,"PICTURE",{class:!0});var re=m(M);Y(R.$$.fragment,re),pe=I(re),T=c(re,"SPAN",{class:!0});var De=m(T);ee=D(De,Q),De.forEach(i),re.forEach(i),we.forEach(i),ce=I(E),H=c(E,"DIV",{class:!0});var Ce=m(H);W=c(Ce,"I",{class:!0}),m(W).forEach(i),Ce.forEach(i),E.forEach(i),me=I(f),P=c(f,"DIV",{class:!0});var oe=m(P);S=c(oe,"DIV",{class:!0});var ie=m(S);O=c(ie,"SPAN",{});var Ee=m(O);se=D(Ee,X),ue=D(Ee," :"),Ee.forEach(i),de=I(ie),U=c(ie,"SPAN",{style:!0});var Me=m(U);te=D(Me,Z),Me.forEach(i),ie.forEach(i),ve=I(oe),b=c(oe,"DIV",{class:!0});var z=m(b);Y(N.$$.fragment,z),he=I(z),$=c(z,"DIV",{class:!0,style:!0});var F=m($);ae=D(F,x),_e=I(F),Y(k.$$.fragment,F),ge=I(F),q=c(F,"SPAN",{class:!0});var Pe=m(q);ne=D(Pe,a[0]),Pe.forEach(i),F.forEach(i),$e=I(z),d&&d.l(z),z.forEach(i),oe.forEach(i),f.forEach(i),this.h()},h(){u(h,"class","svelte-5sh5yx"),u(r,"class","svelte-5sh5yx"),u(l,"class","col genesis svelte-5sh5yx"),u(T,"class","svelte-5sh5yx"),u(M,"class","svelte-5sh5yx"),u(g,"class","col primo-exchange svelte-5sh5yx"),u(W,"class","gi-arrow-right"),u(H,"class","divider svelte-5sh5yx"),u(n,"class","row genesis-exchange svelte-5sh5yx"),ye(U,"font-size","larger"),u(S,"class","rangeNumber svelte-5sh5yx"),u(q,"class","svelte-5sh5yx"),Ae(q,"red",a[1]<1),u($,"class","consume"),ye($,"display","inline-flex"),ye($,"align-items","center"),u(b,"class","rangeInput svelte-5sh5yx"),u(P,"class","slider svelte-5sh5yx"),u(s,"class","content svelte-5sh5yx")},m(o,f){fe(o,s,f),t(s,n),t(n,l),t(l,r),j(e,r,null),t(r,v),t(r,h),t(h,B),t(n,_),t(n,g),t(g,M),j(R,M,null),t(M,pe),t(M,T),t(T,ee),t(n,ce),t(n,H),t(H,W),t(s,me),t(s,P),t(P,S),t(S,O),t(O,se),t(O,ue),t(S,de),t(S,U),t(U,te),t(P,ve),t(P,b),j(N,b,null),t(b,he),t(b,$),t($,ae),t($,_e),j(k,$,null),t($,ge),t($,q),t(q,ne),t(b,$e),d&&d.m(b,null),V=!0},p(o,f){(!V||f&4)&&C!==(C=o[2]("shop.item.genesis")+"")&&A(B,C),(!V||f&4)&&Q!==(Q=o[2]("shop.item.primogem")+"")&&A(ee,Q),(!V||f&4)&&X!==(X=o[2]("shop.qty")+"")&&A(se,X),(!V||f&3)&&Z!==(Z=(o[1]<1?1:o[0])+"")&&A(te,Z);const E={};f&3&&(E.value=o[1]<1?1:o[0]),f&2&&(E.min=o[1]<=1?0:1),f&2&&(E.max=o[1]||1),f&2&&(E.disabled=o[1]<1),N.$set(E),(!V||f&4)&&x!==(x=o[2]("shop.consume")+"")&&A(ae,x),(!V||f&1)&&A(ne,o[0]),f&2&&Ae(q,"red",o[1]<1),o[1]<1?d?d.p(o,f):(d=Te(o),d.c(),d.m(b,null)):d&&(d.d(1),d=null)},i(o){V||(J(e.$$.fragment,o),J(R.$$.fragment,o),J(N.$$.fragment,o),J(k.$$.fragment,o),V=!0)},o(o){K(e.$$.fragment,o),K(R.$$.fragment,o),K(N.$$.fragment,o),K(k.$$.fragment,o),V=!1},d(o){o&&i(s),L(e),L(R),L(N),L(k),d&&d.d()}}}function Ke(a){let s,n=a[2]("shop.purchaseButton")+"",l;return{c(){s=p("div"),l=w(n),this.h()},l(r){s=c(r,"DIV",{slot:!0});var e=m(s);l=D(e,n),e.forEach(i),this.h()},h(){u(s,"slot","confirmtext")},m(r,e){fe(r,s,e),t(s,l)},p(r,e){e&4&&n!==(n=r[2]("shop.purchaseButton")+"")&&A(l,n)},d(r){r&&i(s)}}}function Le(a){let s,n,l,r;return s=new Ye({}),l=new Ge({props:{title:a[2]("shop.exchangeHeading"),disabled:a[1]<1,$$slots:{confirmtext:[Ke],default:[Je]},$$scope:{ctx:a}}}),l.$on("cancel",a[3]),l.$on("confirm",a[4]),{c(){G(s.$$.fragment),n=y(),G(l.$$.fragment)},l(e){Y(s.$$.fragment,e),n=I(e),Y(l.$$.fragment,e)},m(e,v){j(s,e,v),fe(e,n,v),j(l,e,v),r=!0},p(e,[v]){const h={};v&4&&(h.title=e[2]("shop.exchangeHeading")),v&2&&(h.disabled=e[1]<1),v&135&&(h.$$scope={dirty:v,ctx:e}),l.$set(h)},i(e){r||(J(s.$$.fragment,e),J(l.$$.fragment,e),r=!0)},o(e){K(s.$$.fragment,e),K(l.$$.fragment,e),r=!1},d(e){L(s,e),e&&i(n),L(l,e)}}}function Qe(a,s,n){let l,r;Se(a,Re,_=>n(1,l=_)),Se(a,ze,_=>n(2,r=_));let e=1;Ne("setValue",_=>n(0,e=_));const v=qe("openObtained"),h=qe("closeConvertModal"),C=()=>{h(),Be("close")};Ne("closeModal",C);const B=()=>{Fe.update(_=>{const g=_+e;return ke.set("primogem",g),g}),Re.update(_=>{const g=_-e;return ke.set("genesis",g),g}),Be(),h(),v([{item:"primogem",qty:e}])};return a.$$.update=()=>{a.$$.dirty&3&&n(0,e=e>l?l:parseInt(e))},[e,l,r,C,B]}class ns extends He{constructor(s){super(),Oe(this,s,Qe,Le,Ue,{})}}export{ns as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ObtainedItem-7d64abc9.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ObtainedItem-7d64abc9.js
deleted file mode 100644
index b3f39767..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ObtainedItem-7d64abc9.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as fe,i as ue,s as ve,k as g,a as N,q as K,l as w,m as q,h as d,c as T,r as M,n as b,b as L,G as i,H as ne,u as P,f as J,g as re,d as ie,J as he,K as _e,t as R,a6 as ce,E as Z,F as de,o as me,a0 as pe,e as x,ah as be,v as ge,w as we,p as ee,x as qe,ag as Ee,y as Ie,A as ke}from"./index-c0d078cd.js";import{n as De}from"./index-123e2351.js";import{Y as ye}from"./runtime.esm-4bf604c8.js";import{h as z,I as Se}from"./WishResult-901333c5.js";import{a as Ve}from"./app-stores-358281e6.js";import{p as Ce}from"./audio-460a91c6.js";function te(l,t,a){const e=l.slice();return e[7]=t[a].item,e[8]=t[a].qty,e}function se(l,t,a){const e=l.slice();return e[11]=t[a],e}function ae(l){let t,a,e,o,c,p,D,I,V=l[8]+"",v,F,k,C=l[1](`shop.item.${l[7]}`)+"",H,G,y,S,A,B;o=new Se({props:{width:"100%",type:l[7]}});let O=Array(l[3](l[7])),_=[];for(let s=0;s<O.length;s+=1)_[s]=le(se(l,O,s));return{c(){t=g("div"),a=g("div"),e=g("div"),ge(o.$$.fragment),c=N(),p=g("div");for(let s=0;s<_.length;s+=1)_[s].c();D=N(),I=g("span"),v=K(V),F=N(),k=g("div"),H=K(C),G=N(),this.h()},l(s){t=w(s,"DIV",{class:!0});var m=q(t);a=w(m,"DIV",{class:!0});var E=q(a);e=w(E,"DIV",{class:!0,style:!0});var f=q(e);we(o.$$.fragment,f),c=T(f),p=w(f,"DIV",{class:!0});var r=q(p);for(let h=0;h<_.length;h+=1)_[h].l(r);r.forEach(d),f.forEach(d),D=T(E),I=w(E,"SPAN",{class:!0});var Y=q(I);v=M(Y,V),Y.forEach(d),E.forEach(d),F=T(m),k=w(m,"DIV",{class:!0});var n=q(k);H=M(n,C),n.forEach(d),G=T(m),m.forEach(d),this.h()},h(){b(p,"class","star svelte-1v6bqwa"),b(e,"class","pic svelte-1v6bqwa"),ee(e,"--bg","url('"+l[2][`${l[3](l[7])}star-bg.webp`]+"')"),b(I,"class","svelte-1v6bqwa"),b(a,"class","body svelte-1v6bqwa"),b(k,"class","name svelte-1v6bqwa"),b(t,"class",y="item "+l[7]+" svelte-1v6bqwa")},m(s,m){L(s,t,m),i(t,a),i(a,e),qe(o,e,null),i(e,c),i(e,p);for(let E=0;E<_.length;E+=1)_[E].m(p,null);i(a,D),i(a,I),i(I,v),i(t,F),i(t,k),i(k,H),i(t,G),S=!0,A||(B=ne(t,"mousedown",Ee(l[5])),A=!0)},p(s,m){const E={};if(m&1&&(E.type=s[7]),o.$set(E),m&1){O=Array(s[3](s[7]));let f;for(f=0;f<O.length;f+=1){const r=se(s,O,f);_[f]?_[f].p(r,m):(_[f]=le(),_[f].c(),_[f].m(p,null))}for(;f<_.length;f+=1)_[f].d(1);_.length=O.length}(!S||m&5)&&ee(e,"--bg","url('"+s[2][`${s[3](s[7])}star-bg.webp`]+"')"),(!S||m&1)&&V!==(V=s[8]+"")&&P(v,V),(!S||m&3)&&C!==(C=s[1](`shop.item.${s[7]}`)+"")&&P(H,C),(!S||m&1&&y!==(y="item "+s[7]+" svelte-1v6bqwa"))&&b(t,"class",y)},i(s){S||(J(o.$$.fragment,s),S=!0)},o(s){R(o.$$.fragment,s),S=!1},d(s){s&&d(t),Ie(o),ce(_,s),A=!1,B()}}}function le(l){let t;return{c(){t=g("i"),this.h()},l(a){t=w(a,"I",{class:!0}),q(t).forEach(d),this.h()},h(){b(t,"class","gi-star svelte-1v6bqwa")},m(a,e){L(a,t,e)},p:ke,d(a){a&&d(t)}}}function oe(l){let t,a,e=l[8]>0&&ae(l);return{c(){e&&e.c(),t=x()},l(o){e&&e.l(o),t=x()},m(o,c){e&&e.m(o,c),L(o,t,c),a=!0},p(o,c){o[8]>0?e?(e.p(o,c),c&1&&J(e,1)):(e=ae(o),e.c(),J(e,1),e.m(t.parentNode,t)):e&&(re(),R(e,1,1,()=>{e=null}),ie())},i(o){a||(J(e),a=!0)},o(o){R(e),a=!1},d(o){e&&e.d(o),o&&d(t)}}}function Oe(l){let t,a,e,o,c,p,D=l[1]("obtained")+"",I,V,v,F,k,C=l[1]("extra")+"",H,G,y,S,A,B=l[1]("pressToContinue")+"",O,_,s,m,E,f=l[0],r=[];for(let n=0;n<f.length;n+=1)r[n]=oe(te(l,f,n));const Y=n=>R(r[n],1,1,()=>{r[n]=null});return{c(){t=g("section"),a=g("div"),e=g("div"),o=N(),c=g("div"),p=g("h3"),I=K(D),V=N(),v=g("i"),F=N(),k=g("h4"),H=K(C),G=N(),y=g("div");for(let n=0;n<r.length;n+=1)r[n].c();S=N(),A=g("h4"),O=K(B),this.h()},l(n){t=w(n,"SECTION",{class:!0});var h=q(t);a=w(h,"DIV",{class:!0});var u=q(a);e=w(u,"DIV",{class:!0}),q(e).forEach(d),o=T(u),c=w(u,"DIV",{class:!0});var $=q(c);p=w($,"H3",{class:!0});var j=q(p);I=M(j,D),V=T(j),v=w(j,"I",{class:!0}),q(v).forEach(d),j.forEach(d),F=T($),k=w($,"H4",{class:!0});var U=q(k);H=M(U,C),U.forEach(d),G=T($),y=w($,"DIV",{class:!0});var W=q(y);for(let Q=0;Q<r.length;Q+=1)r[Q].l(W);W.forEach(d),S=T($),A=w($,"H4",{class:!0});var X=q(A);O=M(X,B),X.forEach(d),$.forEach(d),u.forEach(d),h.forEach(d),this.h()},h(){b(e,"class","bg svelte-1v6bqwa"),b(v,"class","gi-primo-star svelte-1v6bqwa"),b(p,"class","title svelte-1v6bqwa"),b(k,"class","svelte-1v6bqwa"),b(y,"class","milestone svelte-1v6bqwa"),b(A,"class","msg svelte-1v6bqwa"),b(c,"class","content svelte-1v6bqwa"),b(a,"class","container svelte-1v6bqwa"),b(t,"class","svelte-1v6bqwa")},m(n,h){L(n,t,h),i(t,a),i(a,e),i(a,o),i(a,c),i(c,p),i(p,I),i(p,V),i(p,v),i(c,F),i(c,k),i(k,H),i(c,G),i(c,y);for(let u=0;u<r.length;u+=1)r[u].m(y,null);i(c,S),i(c,A),i(A,O),s=!0,m||(E=ne(t,"mousedown",l[4]),m=!0)},p(n,[h]){if((!s||h&2)&&D!==(D=n[1]("obtained")+"")&&P(I,D),(!s||h&2)&&C!==(C=n[1]("extra")+"")&&P(H,C),h&15){f=n[0];let u;for(u=0;u<f.length;u+=1){const $=te(n,f,u);r[u]?(r[u].p($,h),J(r[u],1)):(r[u]=oe($),r[u].c(),J(r[u],1),r[u].m(y,null))}for(re(),u=f.length;u<r.length;u+=1)Y(u);ie()}(!s||h&2)&&B!==(B=n[1]("pressToContinue")+"")&&P(O,B)},i(n){if(!s){for(let h=0;h<f.length;h+=1)J(r[h]);_||he(()=>{_=_e(c,De,{start:0,duration:200}),_.start()}),s=!0}},o(n){r=r.filter(Boolean);for(let h=0;h<r.length;h+=1)R(r[h]);s=!1},d(n){n&&d(t),ce(r,n),m=!1,E()}}}function $e(l,t,a){let e,o;Z(l,ye,v=>a(1,e=v)),Z(l,Ve,v=>a(2,o=v));let{data:c=[{item:"primogem",qty:0}]}=t;const p=v=>v==="stardust"?4:5,D=de("closeObtained");me(()=>Ce("obtain"));const I=z.getScope();z("*","obtain",v=>{v.preventDefault(),D()}),z.setScope("obtain"),pe(()=>z.deleteScope("obtain",I));function V(v){be.call(this,l,v)}return l.$$set=v=>{"data"in v&&a(0,c=v.data)},[c,e,o,p,D,V]}class Ge extends fe{constructor(t){super(),ue(this,t,$e,Oe,ve,{data:0})}}export{Ge as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/RandomBackground-34695851.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/RandomBackground-34695851.js
deleted file mode 100644
index b02e33af..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/RandomBackground-34695851.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as u,i as _,s as h,k as m,l as p,n,Y as c,b as d,A as i,h as g,E as f}from"./index-c0d078cd.js";import{a as b}from"./app-stores-358281e6.js";function v(r){let s,e;return{c(){s=m("img"),this.h()},l(t){s=p(t,"IMG",{class:!0,src:!0,alt:!0}),this.h()},h(){n(s,"class","bg svelte-1ghl7jp"),c(s.src,e=r[0][`bg${r[1](1,20)}.webp`])||n(s,"src",e),n(s,"alt","background")},m(t,o){d(t,s,o)},p(t,[o]){o&1&&!c(s.src,e=t[0][`bg${t[1](1,20)}.webp`])&&n(s,"src",e)},i,o:i,d(t){t&&g(s)}}}function M(r,s,e){let t;return f(r,b,a=>e(0,t=a)),[t,(a,l)=>(a=Math.ceil(a),l=Math.floor(l),Math.floor(Math.random()*(l-a+1))+a)]}class y extends u{constructor(s){super(),_(this,s,M,v,h,{})}}export{y as R};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/WishResult-901333c5.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/WishResult-901333c5.js
deleted file mode 100644
index eefa6696..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/WishResult-901333c5.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import{S as pt,i as mt,s as gt,e as Qt,b as q,A as de,h as v,E as Vt,k as j,l as F,m as b,n as o,p as x,G as y,Y as Pt,a3 as M,a4 as R,ad as $r,f as se,g as sr,t as me,d as nr,v as Xt,w as ir,x as qt,y as Zt,a as ge,c as _e,N as Ot,ab as It,ae as yf,af as bf,C as nn,q as vt,r as dt,u as Yt,H as ka,O as wf,J as Ka,K as Ds,a6 as rn,a5 as g1,o as _1,a1 as Cf,ag as Af,I as rl,F as Ss,ah as Lf,P as Ji,L as Co,D as Un,a2 as Ao}from"./index-c0d078cd.js";import{k as kf,m as Ef,f as ja,n as xf,h as Sf,b as $i,a as Df}from"./index-123e2351.js";import{Y as Ts,D as Tf}from"./runtime.esm-4bf604c8.js";import{a as ln,o as y1,i as b1,p as Of,B as Wn,c as If,v as Pf}from"./app-stores-358281e6.js";import{c as xs,p as ea,a as Mf}from"./audio-460a91c6.js";import{s as Rf}from"./outfit-bffb00d9.js";import{B as Wf,l as Hn}from"./lazyload-05dfa468.js";import{A as zf}from"./env-f184adc0.js";var ji=typeof navigator<"u"?navigator.userAgent.toLowerCase().indexOf("firefox")>0:!1;function Fi(a,e,r,t){a.addEventListener?a.addEventListener(e,r,t):a.attachEvent&&a.attachEvent("on".concat(e),function(){r(window.event)})}function w1(a,e){for(var r=e.slice(0,e.length-1),t=0;t<r.length;t++)r[t]=a[r[t].toLowerCase()];return r}function C1(a){typeof a!="string"&&(a=""),a=a.replace(/\s/g,"");for(var e=a.split(","),r=e.lastIndexOf("");r>=0;)e[r-1]+=",",e.splice(r,1),r=e.lastIndexOf("");return e}function Vf(a,e){for(var r=a.length>=e.length?a:e,t=a.length>=e.length?e:a,n=!0,i=0;i<r.length;i++)t.indexOf(r[i])===-1&&(n=!1);return n}var an={backspace:8,"\u232B":8,tab:9,clear:12,enter:13,"\u21A9":13,return:13,esc:27,escape:27,space:32,left:37,up:38,right:39,down:40,del:46,delete:46,ins:45,insert:45,home:36,end:35,pageup:33,pagedown:34,capslock:20,num_0:96,num_1:97,num_2:98,num_3:99,num_4:100,num_5:101,num_6:102,num_7:103,num_8:104,num_9:105,num_multiply:106,num_add:107,num_enter:108,num_subtract:109,num_decimal:110,num_divide:111,"\u21EA":20,",":188,".":190,"/":191,"`":192,"-":ji?173:189,"=":ji?61:187,";":ji?59:186,"'":222,"[":219,"]":221,"\\":220},Ea={"\u21E7":16,shift:16,"\u2325":18,alt:18,option:18,"\u2303":17,ctrl:17,control:17,"\u2318":91,cmd:91,command:91},el={16:"shiftKey",18:"altKey",17:"ctrlKey",91:"metaKey",shiftKey:16,ctrlKey:17,altKey:18,metaKey:91},ar={16:!1,18:!1,17:!1,91:!1},Ct={};for(var Rn=1;Rn<20;Rn++)an["f".concat(Rn)]=111+Rn;var Ye=[],Lo=!1,A1="all",L1=[],on=function(e){return an[e.toLowerCase()]||Ea[e.toLowerCase()]||e.toUpperCase().charCodeAt(0)},Bf=function(e){return Object.keys(an).find(function(r){return an[r]===e})},Uf=function(e){return Object.keys(Ea).find(function(r){return Ea[r]===e})};function k1(a){A1=a||"all"}function sn(){return A1||"all"}function Hf(){return Ye.slice(0)}function Nf(){return Ye.map(function(a){return Bf(a)||Uf(a)||String.fromCharCode(a)})}function Kf(){var a=[];return Object.keys(Ct).forEach(function(e){Ct[e].forEach(function(r){var t=r.key,n=r.scope,i=r.mods,s=r.shortcut;a.push({scope:n,shortcut:s,mods:i,keys:t.split("+").map(function(l){return on(l)})})})}),a}function jf(a){var e=a.target||a.srcElement,r=e.tagName,t=!0;return(e.isContentEditable||(r==="INPUT"||r==="TEXTAREA"||r==="SELECT")&&!e.readOnly)&&(t=!1),t}function Ff(a){return typeof a=="string"&&(a=on(a)),Ye.indexOf(a)!==-1}function Gf(a,e){var r,t;a||(a=sn());for(var n in Ct)if(Object.prototype.hasOwnProperty.call(Ct,n))for(r=Ct[n],t=0;t<r.length;)r[t].scope===a?r.splice(t,1):t++;sn()===a&&k1(e||"all")}function Xf(a){var e=a.keyCode||a.which||a.charCode,r=Ye.indexOf(e);if(r>=0&&Ye.splice(r,1),a.key&&a.key.toLowerCase()==="meta"&&Ye.splice(0,Ye.length),(e===93||e===224)&&(e=91),e in ar){ar[e]=!1;for(var t in Ea)Ea[t]===e&&(La[t]=!1)}}function qf(a){if(typeof a>"u")Object.keys(Ct).forEach(function(s){return delete Ct[s]});else if(Array.isArray(a))a.forEach(function(s){s.key&&Gi(s)});else if(typeof a=="object")a.key&&Gi(a);else if(typeof a=="string"){for(var e=arguments.length,r=new Array(e>1?e-1:0),t=1;t<e;t++)r[t-1]=arguments[t];var n=r[0],i=r[1];typeof n=="function"&&(i=n,n=""),Gi({key:a,scope:n,method:i,splitKey:"+"})}}var Gi=function(e){var r=e.key,t=e.scope,n=e.method,i=e.splitKey,s=i===void 0?"+":i,l=C1(r);l.forEach(function(f){var c=f.split(s),h=c.length,m=c[h-1],p=m==="*"?"*":on(m);if(!!Ct[p]){t||(t=sn());var k=h>1?w1(Ea,c):[];Ct[p]=Ct[p].filter(function(A){var d=n?A.method===n:!0;return!(d&&A.scope===t&&Vf(A.mods,k))})}})};function ko(a,e,r,t){if(e.element===t){var n;if(e.scope===r||e.scope==="all"){n=e.mods.length>0;for(var i in ar)Object.prototype.hasOwnProperty.call(ar,i)&&(!ar[i]&&e.mods.indexOf(+i)>-1||ar[i]&&e.mods.indexOf(+i)===-1)&&(n=!1);(e.mods.length===0&&!ar[16]&&!ar[18]&&!ar[17]&&!ar[91]||n||e.shortcut==="*")&&(e.keys=[],e.keys=e.keys.concat(Ye),e.method(a,e)===!1&&(a.preventDefault?a.preventDefault():a.returnValue=!1,a.stopPropagation&&a.stopPropagation(),a.cancelBubble&&(a.cancelBubble=!0)))}}}function Eo(a,e){var r=Ct["*"],t=a.keyCode||a.which||a.charCode;if(!!La.filter.call(this,a)){if((t===93||t===224)&&(t=91),Ye.indexOf(t)===-1&&t!==229&&Ye.push(t),["ctrlKey","altKey","shiftKey","metaKey"].forEach(function(A){var d=el[A];a[A]&&Ye.indexOf(d)===-1?Ye.push(d):!a[A]&&Ye.indexOf(d)>-1?Ye.splice(Ye.indexOf(d),1):A==="metaKey"&&a[A]&&Ye.length===3&&(a.ctrlKey||a.shiftKey||a.altKey||(Ye=Ye.slice(Ye.indexOf(d))))}),t in ar){ar[t]=!0;for(var n in Ea)Ea[n]===t&&(La[n]=!0);if(!r)return}for(var i in ar)Object.prototype.hasOwnProperty.call(ar,i)&&(ar[i]=a[el[i]]);a.getModifierState&&!(a.altKey&&!a.ctrlKey)&&a.getModifierState("AltGraph")&&(Ye.indexOf(17)===-1&&Ye.push(17),Ye.indexOf(18)===-1&&Ye.push(18),ar[17]=!0,ar[18]=!0);var s=sn();if(r)for(var l=0;l<r.length;l++)r[l].scope===s&&(a.type==="keydown"&&r[l].keydown||a.type==="keyup"&&r[l].keyup)&&ko(a,r[l],s,e);if(t in Ct){for(var f=0;f<Ct[t].length;f++)if((a.type==="keydown"&&Ct[t][f].keydown||a.type==="keyup"&&Ct[t][f].keyup)&&Ct[t][f].key){for(var c=Ct[t][f],h=c.splitKey,m=c.key.split(h),p=[],k=0;k<m.length;k++)p.push(on(m[k]));p.sort().join("")===Ye.sort().join("")&&ko(a,c,s,e)}}}}function Zf(a){return L1.indexOf(a)>-1}function La(a,e,r){Ye=[];var t=C1(a),n=[],i="all",s=document,l=0,f=!1,c=!0,h="+",m=!1;for(r===void 0&&typeof e=="function"&&(r=e),Object.prototype.toString.call(e)==="[object Object]"&&(e.scope&&(i=e.scope),e.element&&(s=e.element),e.keyup&&(f=e.keyup),e.keydown!==void 0&&(c=e.keydown),e.capture!==void 0&&(m=e.capture),typeof e.splitKey=="string"&&(h=e.splitKey)),typeof e=="string"&&(i=e);l<t.length;l++)a=t[l].split(h),n=[],a.length>1&&(n=w1(Ea,a)),a=a[a.length-1],a=a==="*"?"*":on(a),a in Ct||(Ct[a]=[]),Ct[a].push({keyup:f,keydown:c,scope:i,mods:n,shortcut:t[l],method:r,key:t[l],splitKey:h,element:s});typeof s<"u"&&!Zf(s)&&window&&(L1.push(s),Fi(s,"keydown",function(p){Eo(p,s)},m),Lo||(Lo=!0,Fi(window,"focus",function(){Ye=[]},m)),Fi(s,"keyup",function(p){Eo(p,s),Xf(p)},m))}function Yf(a){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"all";Object.keys(Ct).forEach(function(r){var t=Ct[r].filter(function(n){return n.scope===e&&n.shortcut===a});t.forEach(function(n){n&&n.method&&n.method()})})}var Xi={getPressedKeyString:Nf,setScope:k1,getScope:sn,deleteScope:Gf,getPressedKeyCodes:Hf,getAllKeyCodes:Kf,isPressed:Ff,filter:jf,trigger:Yf,unbind:qf,keyMap:an,modifier:Ea,modifierMap:el};for(var qi in Xi)Object.prototype.hasOwnProperty.call(Xi,qi)&&(La[qi]=Xi[qi]);if(typeof window<"u"){var Qf=window.hotkeys;La.noConflict=function(a){return a&&window.hotkeys===La&&(window.hotkeys=Qf),La},window.hotkeys=La}function Jf(a){let e,r;return{c(){e=j("div"),r=j("span"),this.h()},l(t){e=F(t,"DIV",{class:!0,style:!0});var n=b(e);r=F(n,"SPAN",{class:!0}),b(r).forEach(v),n.forEach(v),this.h()},h(){o(r,"class","svelte-1crtzgq"),o(e,"class","loader-icon svelte-1crtzgq"),x(e,"--width",a[1]),x(e,"width",a[1])},m(t,n){q(t,e,n),y(e,r)},p(t,n){n&2&&x(e,"--width",t[1]),n&2&&x(e,"width",t[1])},d(t){t&&v(e)}}}function $f(a){let e,r;return{c(){e=j("img"),this.h()},l(t){e=F(t,"IMG",{src:!0,alt:!0,width:!0,height:!0,style:!0}),this.h()},h(){Pt(e.src,r=a[4][a[0]])||o(e,"src",r),o(e,"alt",a[0]),o(e,"width",a[1]),o(e,"height",a[2]),o(e,"style",a[3])},m(t,n){q(t,e,n)},p(t,n){n&17&&!Pt(e.src,r=t[4][t[0]])&&o(e,"src",r),n&1&&o(e,"alt",t[0]),n&2&&o(e,"width",t[1]),n&4&&o(e,"height",t[2]),n&8&&o(e,"style",t[3])},d(t){t&&v(e)}}}function ec(a){let e;function r(i,s){return i[0]!=="loader"?$f:Jf}let t=r(a),n=t(a);return{c(){n.c(),e=Qt()},l(i){n.l(i),e=Qt()},m(i,s){n.m(i,s),q(i,e,s)},p(i,[s]){t===(t=r(i))&&n?n.p(i,s):(n.d(1),n=t(i),n&&(n.c(),n.m(e.parentNode,e)))},i:de,o:de,d(i){n.d(i),i&&v(e)}}}function tc(a,e,r){let t,n;Vt(a,ln,c=>r(5,n=c));let{type:i=""}=e,{width:s="20px"}=e,{height:l="auto"}=e,{style:f=""}=e;return a.$$set=c=>{"type"in c&&r(0,i=c.type),"width"in c&&r(1,s=c.width),"height"in c&&r(2,l=c.height),"style"in c&&r(3,f=c.style)},a.$$.update=()=>{a.$$.dirty&32&&r(4,t={acquaint:n["acquaint-fate.webp"],intertwined:n["intertwined-fate.webp"],stardust:n["masterless-stardust.webp"],starglitter:n["masterless-starglitter.webp"],primogem:n["primogem.webp"],genesis:n["genesis.webp"]})},[i,s,l,f,t,n]}class Nn extends pt{constructor(e){super(),mt(this,e,tc,ec,gt,{type:0,width:1,height:2,style:3})}}var E1={exports:{}};/*!
- * OverlayScrollbars
- * https://github.com/KingSora/OverlayScrollbars
- *
- * Version: 1.13.3
- *
- * Copyright KingSora | Rene Haas.
- * https://github.com/KingSora
- *
- * Released under the MIT license.
- * Date: 20.07.2022
- */(function(a){(function(e,r){a.exports=r(e,e.document,void 0)})(typeof window<"u"?window:xs,function(e,r,t){var n="OverlayScrollbars",i={o:"object",f:"function",a:"array",s:"string",b:"boolean",n:"number",u:"undefined",z:"null"},s={c:"class",s:"style",i:"id",l:"length",p:"prototype",ti:"tabindex",oH:"offsetHeight",cH:"clientHeight",sH:"scrollHeight",oW:"offsetWidth",cW:"clientWidth",sW:"scrollWidth",hOP:"hasOwnProperty",bCR:"getBoundingClientRect"},l=function(){var d={},_={},u=["-webkit-","-moz-","-o-","-ms-"],C=["WebKit","Moz","O","MS"];function L(w){return w.charAt(0).toUpperCase()+w.slice(1)}return{_cssPrefixes:u,_jsPrefixes:C,_cssProperty:function(w){var D=_[w];if(_[s.hOP](w))return D;for(var N=L(w),Z=r.createElement("div")[s.s],B,G=0,H,W;G<u.length;G++)for(W=u[G].replace(/-/g,""),B=[w,u[G]+w,W+N,L(W)+N],H=0;H<B[s.l];H++)if(Z[B[H]]!==t){D=B[H];break}return _[w]=D,D},_cssPropertyValue:function(w,D,N){var Z=w+" "+D,B=_[Z];if(_[s.hOP](Z))return B;for(var G=r.createElement("div")[s.s],H=D.split(" "),W=N||"",Q=0,Y=-1,le;Q<H[s.l];Q++)for(;Y<l._cssPrefixes[s.l];Y++)if(le=Y<0?H[Q]:l._cssPrefixes[Y]+H[Q],G.cssText=w+":"+le+W,G[s.l]){B=le;break}return _[Z]=B,B},_jsAPI:function(w,D,N){var Z=0,B=d[w];if(!d[s.hOP](w)){for(B=e[w];Z<C[s.l];Z++)B=B||e[(D?C[Z]:C[Z].toLowerCase())+L(w)];d[w]=B}return B||N}}}(),f=function(){function d(u){return u?e.innerWidth||r.documentElement[s.cW]||r.body[s.cW]:e.innerHeight||r.documentElement[s.cH]||r.body[s.cH]}function _(u,C){if(typeof u!=i.f)throw"Can't bind function!";var L=s.p,w=Array[L].slice.call(arguments,2),D=function(){},N=function(){return u.apply(this instanceof D?this:C,w.concat(Array[L].slice.call(arguments)))};return u[L]&&(D[L]=u[L]),N[L]=new D,N}return{wW:_(d,0,!0),wH:_(d,0),mO:_(l._jsAPI,0,"MutationObserver",!0),rO:_(l._jsAPI,0,"ResizeObserver",!0),rAF:_(l._jsAPI,0,"requestAnimationFrame",!1,function(u){return e.setTimeout(u,1e3/60)}),cAF:_(l._jsAPI,0,"cancelAnimationFrame",!1,function(u){return e.clearTimeout(u)}),now:function(){return Date.now&&Date.now()||new Date().getTime()},stpP:function(u){u.stopPropagation?u.stopPropagation():u.cancelBubble=!0},prvD:function(u){u.preventDefault&&u.cancelable?u.preventDefault():u.returnValue=!1},page:function(u){u=u.originalEvent||u;var C="page",L="client",w="X",D="Y",N=u.target||u.srcElement||r,Z=N.ownerDocument||r,B=Z.documentElement,G=Z.body;if(u.touches!==t){var H=u.touches[0];return{x:H[C+w],y:H[C+D]}}return!u[C+w]&&u[L+w]&&u[L+w]!=null?{x:u[L+w]+(B&&B.scrollLeft||G&&G.scrollLeft||0)-(B&&B.clientLeft||G&&G.clientLeft||0),y:u[L+D]+(B&&B.scrollTop||G&&G.scrollTop||0)-(B&&B.clientTop||G&&G.clientTop||0)}:{x:u[C+w],y:u[C+D]}},mBtn:function(u){var C=u.button;return!u.which&&C!==t?C&1?1:C&2?3:C&4?2:0:u.which},inA:function(u,C){for(var L=0;L<C[s.l];L++)try{if(C[L]===u)return L}catch{}return-1},isA:function(u){var C=Array.isArray;return C?C(u):this.type(u)==i.a},type:function(u){return u===t||u===null?u+"":Object[s.p].toString.call(u).replace(/^\[object (.+)\]$/,"$1").toLowerCase()},bind:_}}(),c=Math,h=e.jQuery,m=function(){var d={p:c.PI,c:c.cos,s:c.sin,w:c.pow,t:c.sqrt,n:c.asin,a:c.abs,o:1.70158};return{swing:function(_,u,C,L,w){return .5-d.c(_*d.p)/2},linear:function(_,u,C,L,w){return _},easeInQuad:function(_,u,C,L,w){return L*(u/=w)*u+C},easeOutQuad:function(_,u,C,L,w){return-L*(u/=w)*(u-2)+C},easeInOutQuad:function(_,u,C,L,w){return(u/=w/2)<1?L/2*u*u+C:-L/2*(--u*(u-2)-1)+C},easeInCubic:function(_,u,C,L,w){return L*(u/=w)*u*u+C},easeOutCubic:function(_,u,C,L,w){return L*((u=u/w-1)*u*u+1)+C},easeInOutCubic:function(_,u,C,L,w){return(u/=w/2)<1?L/2*u*u*u+C:L/2*((u-=2)*u*u+2)+C},easeInQuart:function(_,u,C,L,w){return L*(u/=w)*u*u*u+C},easeOutQuart:function(_,u,C,L,w){return-L*((u=u/w-1)*u*u*u-1)+C},easeInOutQuart:function(_,u,C,L,w){return(u/=w/2)<1?L/2*u*u*u*u+C:-L/2*((u-=2)*u*u*u-2)+C},easeInQuint:function(_,u,C,L,w){return L*(u/=w)*u*u*u*u+C},easeOutQuint:function(_,u,C,L,w){return L*((u=u/w-1)*u*u*u*u+1)+C},easeInOutQuint:function(_,u,C,L,w){return(u/=w/2)<1?L/2*u*u*u*u*u+C:L/2*((u-=2)*u*u*u*u+2)+C},easeInSine:function(_,u,C,L,w){return-L*d.c(u/w*(d.p/2))+L+C},easeOutSine:function(_,u,C,L,w){return L*d.s(u/w*(d.p/2))+C},easeInOutSine:function(_,u,C,L,w){return-L/2*(d.c(d.p*u/w)-1)+C},easeInExpo:function(_,u,C,L,w){return u==0?C:L*d.w(2,10*(u/w-1))+C},easeOutExpo:function(_,u,C,L,w){return u==w?C+L:L*(-d.w(2,-10*u/w)+1)+C},easeInOutExpo:function(_,u,C,L,w){return u==0?C:u==w?C+L:(u/=w/2)<1?L/2*d.w(2,10*(u-1))+C:L/2*(-d.w(2,-10*--u)+2)+C},easeInCirc:function(_,u,C,L,w){return-L*(d.t(1-(u/=w)*u)-1)+C},easeOutCirc:function(_,u,C,L,w){return L*d.t(1-(u=u/w-1)*u)+C},easeInOutCirc:function(_,u,C,L,w){return(u/=w/2)<1?-L/2*(d.t(1-u*u)-1)+C:L/2*(d.t(1-(u-=2)*u)+1)+C},easeInElastic:function(_,u,C,L,w){var D=d.o,N=0,Z=L;return u==0?C:(u/=w)==1?C+L:(N||(N=w*.3),Z<d.a(L)?(Z=L,D=N/4):D=N/(2*d.p)*d.n(L/Z),-(Z*d.w(2,10*(u-=1))*d.s((u*w-D)*(2*d.p)/N))+C)},easeOutElastic:function(_,u,C,L,w){var D=d.o,N=0,Z=L;return u==0?C:(u/=w)==1?C+L:(N||(N=w*.3),Z<d.a(L)?(Z=L,D=N/4):D=N/(2*d.p)*d.n(L/Z),Z*d.w(2,-10*u)*d.s((u*w-D)*(2*d.p)/N)+L+C)},easeInOutElastic:function(_,u,C,L,w){var D=d.o,N=0,Z=L;return u==0?C:(u/=w/2)==2?C+L:(N||(N=w*(.3*1.5)),Z<d.a(L)?(Z=L,D=N/4):D=N/(2*d.p)*d.n(L/Z),u<1?-.5*(Z*d.w(2,10*(u-=1))*d.s((u*w-D)*(2*d.p)/N))+C:Z*d.w(2,-10*(u-=1))*d.s((u*w-D)*(2*d.p)/N)*.5+L+C)},easeInBack:function(_,u,C,L,w,D){return D=D||d.o,L*(u/=w)*u*((D+1)*u-D)+C},easeOutBack:function(_,u,C,L,w,D){return D=D||d.o,L*((u=u/w-1)*u*((D+1)*u+D)+1)+C},easeInOutBack:function(_,u,C,L,w,D){return D=D||d.o,(u/=w/2)<1?L/2*(u*u*(((D*=1.525)+1)*u-D))+C:L/2*((u-=2)*u*(((D*=1.525)+1)*u+D)+2)+C},easeInBounce:function(_,u,C,L,w){return L-this.easeOutBounce(_,w-u,0,L,w)+C},easeOutBounce:function(_,u,C,L,w){var D=7.5625;return(u/=w)<1/2.75?L*(D*u*u)+C:u<2/2.75?L*(D*(u-=1.5/2.75)*u+.75)+C:u<2.5/2.75?L*(D*(u-=2.25/2.75)*u+.9375)+C:L*(D*(u-=2.625/2.75)*u+.984375)+C},easeInOutBounce:function(_,u,C,L,w){return u<w/2?this.easeInBounce(_,u*2,0,L,w)*.5+C:this.easeOutBounce(_,u*2-w,0,L,w)*.5+L*.5+C}}}(),p=function(){var d=/[^\x20\t\r\n\f]+/g,_=" ",u="",C="scrollLeft",L="scrollTop",w=[],D=f.type,N={animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0};function Z(){var S,P,T,z,X,ie,ce=arguments[0]||{},Ce=1,Ee=arguments[s.l],ue=!1;for(D(ce)==i.b&&(ue=ce,ce=arguments[1]||{},Ce=2),D(ce)!=i.o&&!D(ce)==i.f&&(ce={}),Ee===Ce&&(ce=ke,--Ce);Ce<Ee;Ce++)if((X=arguments[Ce])!=null)for(z in X)S=ce[z],T=X[z],ce!==T&&(ue&&T&&(W(T)||(P=f.isA(T)))?(P?(P=!1,ie=S&&f.isA(S)?S:[]):ie=S&&W(S)?S:{},ce[z]=Z(ue,ie,T)):T!==t&&(ce[z]=T));return ce}function B(S,P,T){for(var z=T||0;z<P[s.l];z++)if(P[z]===S)return z;return-1}function G(S){return D(S)==i.f}function H(S){for(var P in S)return!1;return!0}function W(S){if(!S||D(S)!=i.o)return!1;var P,T=s.p,z=Object[T].hasOwnProperty,X=z.call(S,"constructor"),ie=S.constructor&&S.constructor[T]&&z.call(S.constructor[T],"isPrototypeOf");if(S.constructor&&!X&&!ie)return!1;for(P in S);return D(P)==i.u||z.call(S,P)}function Q(S,P){var T=0;if(Y(S))for(;T<S[s.l]&&P.call(S[T],T,S[T])!==!1;T++);else for(T in S)if(P.call(S[T],T,S[T])===!1)break;return S}function Y(S){var P=!!S&&[s.l]in S&&S[s.l],T=D(S);return G(T)?!1:T==i.a||P===0||D(P)==i.n&&P>0&&P-1 in S}function le(S){var P=S.match(d)||[];return P.join(_)}function fe(S,P){for(var T=(S.parentNode||r).querySelectorAll(P)||[],z=T[s.l];z--;)if(T[z]==S)return!0;return!1}function re(S,P,T){if(f.isA(T))for(var z=0;z<T[s.l];z++)re(S,P,T[z]);else D(T)==i.s?S.insertAdjacentHTML(P,T):S.insertAdjacentElement(P,T.nodeType?T:T[0])}function De(S,P,T){try{S[s.s][P]!==t&&(S[s.s][P]=lr(P,T))}catch{}}function lr(S,P){return!N[S.toLowerCase()]&&D(P)==i.n&&(P+="px"),P}function J(S,P){var T,z;P!==!1&&S.q.splice(0,1),S.q[s.l]>0?(z=S.q[0],ae(S.el,z.props,z.duration,z.easing,z.complete,!0)):(T=B(S,w),T>-1&&w.splice(T,1))}function Fe(S,P,T){P===C||P===L?S[P]=T:De(S,P,T)}function ae(S,P,T,z,X,ie){var ce=W(T),Ce={},Ee={},ue=0,Le,At,Qe,lt,_t,qe;for(ce?(z=T.easing,T.start,Qe=T.progress,lt=T.step,_t=T.specialEasing,X=T.complete,qe=T.duration):qe=T,_t=_t||{},qe=qe||400,z=z||"swing",ie=ie||!1;ue<w[s.l];ue++)if(w[ue].el===S){At=w[ue];break}At||(At={el:S,q:[]},w.push(At));for(Le in P)Le===C||Le===L?Ce[Le]=S[Le]:Ce[Le]=ke(S).css(Le);for(Le in Ce)Ce[Le]!==P[Le]&&P[Le]!==t&&(Ee[Le]=P[Le]);if(H(Ee))ie&&J(At);else{var kr,Je,Jt,or,Er,Be,st,oa,fr,cr=ie?0:B(Ke,At.q),Ke={props:Ee,duration:ce?T:qe,easing:z,complete:X};if(cr===-1&&(cr=At.q[s.l],At.q.push(Ke)),cr===0)if(qe>0)st=f.now(),oa=function(){kr=f.now(),fr=kr-st,Je=Ke.stop||fr>=qe,Jt=1-(c.max(0,st+qe-kr)/qe||0);for(Le in Ee)or=parseFloat(Ce[Le]),Er=parseFloat(Ee[Le]),Be=(Er-or)*m[_t[Le]||z](Jt,Jt*qe,0,1,qe)+or,Fe(S,Le,Be),G(lt)&&lt(Be,{elem:S,prop:Le,start:or,now:Be,end:Er,pos:Jt,options:{easing:z,speacialEasing:_t,duration:qe,complete:X,step:lt},startTime:st});G(Qe)&&Qe({},Jt,c.max(0,qe-fr)),Je?(J(At),G(X)&&X()):Ke.frame=f.rAF()(oa)},Ke.frame=f.rAF()(oa);else{for(Le in Ee)Fe(S,Le,Ee[Le]);J(At)}}}function Ve(S,P,T){for(var z,X,ie,ce=0;ce<w[s.l];ce++)if(z=w[ce],z.el===S){if(z.q[s.l]>0){if(X=z.q[0],X.stop=!0,f.cAF()(X.frame),z.q.splice(0,1),T)for(ie in X.props)Fe(S,ie,X.props[ie]);P?z.q=[]:J(z,!1)}break}}function He(S){return!!(S[s.oW]||S[s.oH]||S.getClientRects()[s.l])}function ke(S){if(arguments[s.l]===0)return this;var P=new ke,T=S,z=0,X,ie;if(D(S)==i.s)for(T=[],S.charAt(0)==="<"?(ie=r.createElement("div"),ie.innerHTML=S,X=ie.children):X=r.querySelectorAll(S);z<X[s.l];z++)T.push(X[z]);if(T){for(D(T)!=i.s&&(!Y(T)||T===e||T===T.self)&&(T=[T]),z=0;z<T[s.l];z++)P[z]=T[z];P[s.l]=T[s.l]}return P}return ke[s.p]={on:function(S,P){S=(S||u).match(d)||[u];var T=S[s.l],z=0,X;return this.each(function(){X=this;try{if(X.addEventListener)for(;z<T;z++)X.addEventListener(S[z],P);else if(X.detachEvent)for(;z<T;z++)X.attachEvent("on"+S[z],P)}catch{}})},off:function(S,P){S=(S||u).match(d)||[u];var T=S[s.l],z=0,X;return this.each(function(){X=this;try{if(X.removeEventListener)for(;z<T;z++)X.removeEventListener(S[z],P);else if(X.detachEvent)for(;z<T;z++)X.detachEvent("on"+S[z],P)}catch{}})},one:function(S,P){return S=(S||u).match(d)||[u],this.each(function(){var T=ke(this);ke.each(S,function(z,X){var ie=function(ce){P.call(this,ce),T.off(X,ie)};T.on(X,ie)})})},trigger:function(S){var P,T;return this.each(function(){P=this,r.createEvent?(T=r.createEvent("HTMLEvents"),T.initEvent(S,!0,!1),P.dispatchEvent(T)):P.fireEvent("on"+S)})},append:function(S){return this.each(function(){re(this,"beforeend",S)})},prepend:function(S){return this.each(function(){re(this,"afterbegin",S)})},before:function(S){return this.each(function(){re(this,"beforebegin",S)})},after:function(S){return this.each(function(){re(this,"afterend",S)})},remove:function(){return this.each(function(){var S=this,P=S.parentNode;P?.removeChild(S)})},unwrap:function(){var S=[],P,T,z;for(this.each(function(){z=this.parentNode,B(z,S)===-1&&S.push(z)}),P=0;P<S[s.l];P++){for(T=S[P],z=T.parentNode;T.firstChild;)z.insertBefore(T.firstChild,T);z.removeChild(T)}return this},wrapAll:function(S){for(var P,T=this,z=ke(S)[0],X=z,ie=T[0].parentNode,ce=T[0].previousSibling;X.childNodes[s.l]>0;)X=X.childNodes[0];for(P=0;T[s.l]-P;X.firstChild===T[0]&&P++)X.appendChild(T[P]);var Ce=ce?ce.nextSibling:ie.firstChild;return ie.insertBefore(z,Ce),this},wrapInner:function(S){return this.each(function(){var P=ke(this),T=P.contents();T[s.l]?T.wrapAll(S):P.append(S)})},wrap:function(S){return this.each(function(){ke(this).wrapAll(S)})},css:function(S,P){var T,z,X,ie=e.getComputedStyle;return D(S)==i.s?P===t?(T=this[0],X=ie?ie(T,null):T.currentStyle[S],ie?X!=null?X.getPropertyValue(S):T[s.s][S]:X):this.each(function(){De(this,S,P)}):this.each(function(){for(z in S)De(this,z,S[z])})},hasClass:function(S){for(var P,T=0,z=_+S+_,X;P=this[T++];){if(X=P.classList,X&&X.contains(S))return!0;if(P.nodeType===1&&(_+le(P.className+u)+_).indexOf(z)>-1)return!0}return!1},addClass:function(S){var P,T,z,X,ie,ce,Ce,Ee,ue=0,Le=0;if(S){for(P=S.match(d)||[];T=this[ue++];)if(Ee=T.classList,Ce===t&&(Ce=Ee!==t),Ce)for(;ie=P[Le++];)Ee.add(ie);else if(X=T.className+u,z=T.nodeType===1&&_+le(X)+_,z){for(;ie=P[Le++];)z.indexOf(_+ie+_)<0&&(z+=ie+_);ce=le(z),X!==ce&&(T.className=ce)}}return this},removeClass:function(S){var P,T,z,X,ie,ce,Ce,Ee,ue=0,Le=0;if(S){for(P=S.match(d)||[];T=this[ue++];)if(Ee=T.classList,Ce===t&&(Ce=Ee!==t),Ce)for(;ie=P[Le++];)Ee.remove(ie);else if(X=T.className+u,z=T.nodeType===1&&_+le(X)+_,z){for(;ie=P[Le++];)for(;z.indexOf(_+ie+_)>-1;)z=z.replace(_+ie+_,_);ce=le(z),X!==ce&&(T.className=ce)}}return this},hide:function(){return this.each(function(){this[s.s].display="none"})},show:function(){return this.each(function(){this[s.s].display="block"})},attr:function(S,P){for(var T=0,z;z=this[T++];){if(P===t)return z.getAttribute(S);z.setAttribute(S,P)}return this},removeAttr:function(S){return this.each(function(){this.removeAttribute(S)})},offset:function(){var S=this[0],P=S[s.bCR](),T=e.pageXOffset||r.documentElement[C],z=e.pageYOffset||r.documentElement[L];return{top:P.top+z,left:P.left+T}},position:function(){var S=this[0];return{top:S.offsetTop,left:S.offsetLeft}},scrollLeft:function(S){for(var P=0,T;T=this[P++];){if(S===t)return T[C];T[C]=S}return this},scrollTop:function(S){for(var P=0,T;T=this[P++];){if(S===t)return T[L];T[L]=S}return this},val:function(S){var P=this[0];return S?(P.value=S,this):P.value},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(S){return ke(this[S>=0?S:this[s.l]+S])},find:function(S){var P=[],T;return this.each(function(){var z=this,X=z.querySelectorAll(S);for(T=0;T<X[s.l];T++)P.push(X[T])}),ke(P)},children:function(S){var P=[],T,z,X;return this.each(function(){for(z=this.children,X=0;X<z[s.l];X++)T=z[X],S?(T.matches&&T.matches(S)||fe(T,S))&&P.push(T):P.push(T)}),ke(P)},parent:function(S){var P=[],T;return this.each(function(){T=this.parentNode,(!S||ke(T).is(S))&&P.push(T)}),ke(P)},is:function(S){var P,T;for(T=0;T<this[s.l];T++){if(P=this[T],S===":visible")return He(P);if(S===":hidden")return!He(P);if(P.matches&&P.matches(S)||fe(P,S))return!0}return!1},contents:function(){var S=[],P,T;return this.each(function(){for(P=this.childNodes,T=0;T<P[s.l];T++)S.push(P[T])}),ke(S)},each:function(S){return Q(this,S)},animate:function(S,P,T,z){return this.each(function(){ae(this,S,P,T,z)})},stop:function(S,P){return this.each(function(){Ve(this,S,P)})}},Z(ke,{extend:Z,inArray:B,isEmptyObject:H,isPlainObject:W,each:Q}),ke}(),k=function(){var d=[],_="__overlayScrollbars__";return function(u,C){var L=arguments[s.l];if(L<1)return d;if(C)u[_]=C,d.push(u);else{var w=f.inA(u,d);if(w>-1)if(L>1)delete u[_],d.splice(w,1);else return d[w][_]}}}(),A=function(){var d,_,u,C=[],L=function(){var B=f.type,G=[i.b,i.n,i.s,i.a,i.o,i.f,i.z],H=" ",W=":",Q=[i.z,i.s],Y=i.n,le=[i.z,i.b],fe=[!0,i.b],re=[!1,i.b],De=[null,[i.z,i.f]],lr=[["img"],[i.s,i.a,i.z]],J=[["style","class"],[i.s,i.a,i.z]],Fe="n:none b:both h:horizontal v:vertical",ae="v-h:visible-hidden v-s:visible-scroll s:scroll h:hidden",Ve="v:visible h:hidden a:auto",He="n:never s:scroll l:leave m:move",ke={className:["os-theme-dark",Q],resize:["none",Fe],sizeAutoCapable:fe,clipAlways:fe,normalizeRTL:fe,paddingAbsolute:re,autoUpdate:[null,le],autoUpdateInterval:[33,Y],updateOnLoad:lr,nativeScrollbarsOverlaid:{showNativeScrollbars:re,initialize:fe},overflowBehavior:{x:["scroll",ae],y:["scroll",ae]},scrollbars:{visibility:["auto",Ve],autoHide:["never",He],autoHideDelay:[800,Y],dragScrolling:fe,clickScrolling:re,touchSupport:fe,snapHandle:re},textarea:{dynWidth:re,dynHeight:re,inheritedAttrs:J},callbacks:{onInitialized:De,onInitializationWithdrawn:De,onDestroyed:De,onScrollStart:De,onScroll:De,onScrollStop:De,onOverflowChanged:De,onOverflowAmountChanged:De,onDirectionChanged:De,onContentSizeChanged:De,onHostSizeChanged:De,onUpdated:De}},S=function(P){var T=function(z){var X,ie,ce;for(X in z)!z[s.hOP](X)||(ie=z[X],ce=B(ie),ce==i.a?z[X]=ie[P?1:0]:ce==i.o&&(z[X]=T(ie)));return z};return T(p.extend(!0,{},ke))};return{_defaults:S(),_template:S(!0),_validate:function(P,T,z,X){var ie={},ce={},Ce=p.extend(!0,{},P),Ee=p.inArray,ue=p.isEmptyObject,Le=function(At,Qe,lt,_t,qe,kr){for(var Je in Qe)if(Qe[s.hOP](Je)&&At[s.hOP](Je)){var Jt=!1,or=!1,Er=Qe[Je],Be=B(Er),st=Be==i.o,oa=f.isA(Er)?Er:[Er],fr=lt[Je],cr=At[Je],Ke=B(cr),fa=kr?kr+".":"",Is='The option "'+fa+Je+`" wasn't set, because`,Mt=[],$t=[],xr,ot,Bt,mr,Ue,ur,Sa,Ae;if(fr=fr===t?{}:fr,st&&Ke==i.o)_t[Je]={},qe[Je]={},Le(cr,Er,fr,_t[Je],qe[Je],fa+Je),p.each([At,_t,qe],function(nt,Ar){ue(Ar[Je])&&delete Ar[Je]});else if(!st){for(ur=0;ur<oa[s.l];ur++)if(Ue=oa[ur],Be=B(Ue),Bt=Be==i.s&&Ee(Ue,G)===-1,Bt)for(Mt.push(i.s),xr=Ue.split(H),$t=$t.concat(xr),Sa=0;Sa<xr[s.l];Sa++){for(ot=xr[Sa].split(W),mr=ot[0],Ae=0;Ae<ot[s.l];Ae++)if(cr===ot[Ae]){Jt=!0;break}if(Jt)break}else if(Mt.push(Ue),Ke===Ue){Jt=!0;break}Jt?(or=cr!==fr,or&&(_t[Je]=cr),(Bt?Ee(fr,ot)<0:or)&&(qe[Je]=Bt?mr:cr)):z&&console.warn(Is+" it doesn't accept the type [ "+Ke.toUpperCase()+' ] with the value of "'+cr+`".\r
-Accepted types are: [ `+Mt.join(", ").toUpperCase()+" ]."+($t[length]>0?`\r
-Valid strings are: [ `+$t.join(", ").split(W).join(", ")+" ].":"")),delete At[Je]}}};return Le(Ce,T,X||{},ie,ce),!ue(Ce)&&z&&console.warn(`The following options are discarded due to invalidity:\r
-`+e.JSON.stringify(Ce,null,2)),{_default:ie,_prepared:ce}}}}();function w(){_||(_=new D(L._defaults)),u||(u=new N(_))}function D(B){var G=this,H="overflow",W="hidden",Q="scroll",Y=p("body"),le=p('<div id="os-dummy-scrollbar-size"><div></div></div>'),fe=le[0],re=p(le.children("div").eq(0));Y.append(le),le.hide().show();var De=Fe(fe),lr={x:De.x===0,y:De.y===0},J=function(){var ae=e.navigator.userAgent,Ve="indexOf",He="substring",ke=ae[Ve]("MSIE "),S=ae[Ve]("Trident/"),P=ae[Ve]("Edge/"),T=ae[Ve]("rv:"),z,X=parseInt;return ke>0?z=X(ae[He](ke+5,ae[Ve](".",ke)),10):S>0?z=X(ae[He](T+3,ae[Ve](".",T)),10):P>0&&(z=X(ae[He](P+5,ae[Ve](".",P)),10)),z}();p.extend(G,{defaultOptions:B,msie:J,autoUpdateLoop:!1,autoUpdateRecommended:!f.mO(),nativeScrollbarSize:De,nativeScrollbarIsOverlaid:lr,nativeScrollbarStyling:function(){var ae=!1;le.addClass("os-viewport-native-scrollbars-invisible");try{ae=le.css("scrollbar-width")==="none"&&(J>9||!J)||e.getComputedStyle(fe,"::-webkit-scrollbar").getPropertyValue("display")==="none"}catch{}return ae}(),overlayScrollbarDummySize:{x:30,y:30},cssCalc:l._cssPropertyValue("width","calc","(1px)")||null,restrictedMeasuring:function(){le.css(H,W);var ae={w:fe[s.sW],h:fe[s.sH]};le.css(H,"visible");var Ve={w:fe[s.sW],h:fe[s.sH]};return ae.w-Ve.w!==0||ae.h-Ve.h!==0}(),rtlScrollBehavior:function(){le.css({"overflow-y":W,"overflow-x":Q,direction:"rtl"}).scrollLeft(0);var ae=le.offset(),Ve=re.offset();le.scrollLeft(-999);var He=re.offset();return{i:ae.left===Ve.left,n:Ve.left!==He.left}}(),supportTransform:!!l._cssProperty("transform"),supportTransition:!!l._cssProperty("transition"),supportPassiveEvents:function(){var ae=!1;try{e.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){ae=!0}}))}catch{}return ae}(),supportResizeObserver:!!f.rO(),supportMutationObserver:!!f.mO()}),le.removeAttr(s.s).remove(),function(){if(lr.x&&lr.y)return;var ae=c.abs,Ve=f.wW(),He=f.wH(),ke=T(),S=function(){if(k().length>0){var z=f.wW(),X=f.wH(),ie=z-Ve,ce=X-He;if(ie===0&&ce===0)return;var Ce=c.round(z/(Ve/100)),Ee=c.round(X/(He/100)),ue=ae(ie),Le=ae(ce),At=ae(Ce),Qe=ae(Ee),lt=T(),_t=ue>2&&Le>2,qe=!P(At,Qe),kr=lt!==ke&&ke>0,Je=_t&&qe&&kr,Jt=G.nativeScrollbarSize,or;Je&&(Y.append(le),or=G.nativeScrollbarSize=Fe(le[0]),le.remove(),(Jt.x!==or.x||Jt.y!==or.y)&&p.each(k(),function(){k(this)&&k(this).update("zoom")})),Ve=z,He=X,ke=lt}};function P(z,X){var ie=ae(z),ce=ae(X);return!(ie===ce||ie+1===ce||ie-1===ce)}function T(){var z=e.screen.deviceXDPI||0,X=e.screen.logicalXDPI||1;return e.devicePixelRatio||z/X}p(e).on("resize",S)}();function Fe(ae){return{x:ae[s.oH]-ae[s.cH],y:ae[s.oW]-ae[s.cW]}}}function N(B){var G=this,H=p.inArray,W=f.now,Q="autoUpdate",Y=Q+"Interval",le=s.l,fe=[],re=[],De=!1,lr=33,J=lr,Fe=W(),ae,Ve=function(){if(fe[le]>0&&De){ae=f.rAF()(function(){Ve()});var He=W(),ke=He-Fe,S,P,T,z,X,ie;if(ke>J){Fe=He-ke%J,S=lr;for(var ce=0;ce<fe[le];ce++)P=fe[ce],P!==t&&(T=P.options(),z=T[Q],X=c.max(1,T[Y]),ie=W(),(z===!0||z===null)&&ie-re[ce]>X&&(P.update("auto"),re[ce]=new Date(ie+=X)),S=c.max(1,c.min(S,X)));J=S}}else J=lr};G.add=function(He){H(He,fe)===-1&&(fe.push(He),re.push(W()),fe[le]>0&&!De&&(De=!0,B.autoUpdateLoop=De,Ve()))},G.remove=function(He){var ke=H(He,fe);ke>-1&&(re.splice(ke,1),fe.splice(ke,1),fe[le]===0&&De&&(De=!1,B.autoUpdateLoop=De,ae!==t&&(f.cAF()(ae),ae=-1)))}}function Z(B,G,H,W,Q){var Y=f.type,le=p.inArray,fe=p.each,re=new d,De=p[s.p];if(!oo(B))return;if(k(B)){var lr=k(B);return lr.options(G),lr}var J,Fe,ae,Ve,He,ke,S,P,T,z,X,ie,ce,Ce,Ee,ue,Le,At,Qe,lt,_t,qe,kr,Je,Jt,or,Er,Be,st,oa={},fr={},cr={},Ke={},fa={},Is="-hidden",Mt="margin-",$t="padding-",xr="border-",ot="top",Bt="right",mr="bottom",Ue="left",ur="min-",Sa="max-",Ae="width",nt="height",Ar="float",ye="",St="auto",jn="sync",Sr="scroll",Da="100%",Ps="x",Ms="y",Dr=".",Ut=" ",Fn="scrollbar",Gn="-horizontal",Xn="-vertical",Ht=Sr+"Left",Nt=Sr+"Top",ys="mousedown touchstart",Rs="mouseup touchend touchcancel",Ws="mousemove touchmove",il="mouseenter",ll="mouseleave",qn="keydown",Zn="keyup",zs="selectstart",Yn="transitionend webkitTransitionEnd oTransitionEnd",Qn="__overlayScrollbarsRO__",gr="os-",ol=gr+"html",hr=gr+"host",cn=hr+"-foreign",Jn=hr+"-textarea",fl=hr+"-"+Fn+Gn+Is,cl=hr+"-"+Fn+Xn+Is,ul=hr+"-transition",hl=hr+"-rtl",$n=hr+"-resize-disabled",un=hr+"-scrolling",Vs=hr+"-overflow",Vs=hr+"-overflow",vl=Vs+"-x",dl=Vs+"-y",hn=gr+"textarea",z1=hn+"-cover",ei=gr+"padding",vn=gr+"viewport",ti=vn+"-native-scrollbars-invisible",pl=vn+"-native-scrollbars-overlaid",ri=gr+"content",V1=gr+"content-arrange",B1=gr+"content-glue",U1=gr+"size-auto-observer",as=gr+"resize-observer",dn=gr+"resize-observer-item",ml=dn+"-final",pn=gr+"text-inherit",Ta=gr+Fn,gl=Ta+"-track",_l=gl+"-off",yl=Ta+"-handle",bl=yl+"-off",wl=Ta+"-unusable",Bs=Ta+"-"+St+Is,ai=Ta+"-corner",Us=ai+"-resize",Cl=Us+"-both",Al=Us+Gn,Ll=Us+Xn,H1=Ta+Gn,N1=Ta+Xn,ss=gr+"dragging",mn=gr+"theme-none",si=[ti,pl,_l,bl,wl,Bs,Us,Cl,Al,Ll,ss].join(Ut),ni=[],ii=[s.ti],kl,Hs,Dt,Oa={},K1="added removed on contract",El,ns={},xl,Sl=42,li="load",is=[],gn,ca,bs,ls,Pe,be,ta,ra,Br,Te,ft,Ia,vr,Pa,_r,os,_n,Ns,fs,yn,Ks,js,ws,Fa,Tr,bn,wn,Ga,cs,Ur,Fs,us,Dl,ua,Gs,Hr,Xa,Tl,oi,Ol,Il,Pl,Ml,Rl,Wl,zl,Cs,As,fi,ci,Vl,Bl,Ul,Hl,Nl,Kl,ui,jl,Ma,Xs,hi,Cn,vi,Fl,Gl,Xl,qa,ql={},An,Ln,di,pi,ha,Zl=["wrap","cols","rows"],mi=[s.i,s.c,s.s,"open"].concat(ii),gi=[],_i,Yl,Ql,yi,bi,Za,Nr,hs,wi,Ya,kn,En,Ci,Ai;function Lr(g,E,O,I,V){var U=f.isA(E)&&f.isA(O),K=I?"removeEventListener":"addEventListener",ee=I?"off":"on",$=U?!1:E.split(Ut),te=0,pe=p.isPlainObject(V),oe=X&&(pe?V._passive:V)||!1,xe=pe&&(V._capture||!1),Se=X?{passive:oe,capture:xe}:xe;if(U)for(;te<E[s.l];te++)Lr(g,E[te],O[te],I,V);else for(;te<$[s.l];te++)X?g[0][K]($[te],O,Se):g[ee]($[te],O)}function aa(g,E,O,I){Lr(g,E,O,!1,I),gi.push(f.bind(Lr,0,g,E,O,!0,I))}function xn(g,E){if(g){var O=f.rO(),I="animationstart mozAnimationStart webkitAnimationStart MSAnimationStart",V="childNodes",U=3333333,K=function(){g[Nt](U)[Ht](Be?ae.n?-U:ae.i?0:U:U),E()};if(E){if(ie){var ee=g.addClass("observed").append(Ir(as)).contents()[0],$=ee[Qn]=new O(K);$.observe(ee)}else if(He>9||!Ve){g.prepend(Ir(as,Ir({c:dn,dir:"ltr"},Ir(dn,Ir(ml))+Ir(dn,Ir({c:ml,style:"width: 200%; height: 200%"})))));var te=g[0][V][0][V][0],pe=p(te[V][1]),oe=p(te[V][0]),xe=p(oe[0][V][0]),Se=te[s.oW],Me=te[s.oH],we,Re,Oe,$e,tr=2,yt=W.nativeScrollbarSize,br=function(){oe[Ht](U)[Nt](U),pe[Ht](U)[Nt](U)},Rt=function(){Re=0,we&&(Se=Oe,Me=$e,K())},kt=function(je){return Oe=te[s.oW],$e=te[s.oH],we=Oe!=Se||$e!=Me,je&&we&&!Re?(f.cAF()(Re),Re=f.rAF()(Rt)):je||Rt(),br(),je&&(f.prvD(je),f.stpP(je)),!1},Et={},ct={};vs(ct,ye,[-((yt.y+1)*tr),yt.x*-tr,yt.y*-tr,-((yt.x+1)*tr)]),p(te).css(ct),oe.on(Sr,kt),pe.on(Sr,kt),g.on(I,function(){kt(!1)}),Et[Ae]=U,Et[nt]=U,xe.css(Et),br()}else{var Tt=ws.attachEvent,ia=He!==t;if(Tt)g.prepend(Ir(as)),Ls(g,Dr+as)[0].attachEvent("onresize",K);else{var ut=ws.createElement(i.o);ut.setAttribute(s.ti,"-1"),ut.setAttribute(s.c,as),ut.onload=function(){var je=this.contentDocument.defaultView;je.addEventListener("resize",K),je.document.documentElement.style.display="none"},ut.type="text/html",ia&&g.prepend(ut),ut.data="about:blank",ia||g.prepend(ut),g.on(I,K)}}if(g[0]===wn){var Fr=function(){var je=be.css("direction"),ne={},et=0,tt=!1;return je!==Ml&&(je==="ltr"?(ne[Ue]=0,ne[Bt]=St,et=U):(ne[Ue]=St,ne[Bt]=0,et=ae.n?-U:ae.i?0:U),ra.children().eq(0).css(ne),ra[Ht](et)[Nt](U),Ml=je,tt=!0),tt};Fr(),aa(g,Sr,function(je){return Fr()&&sa(),f.prvD(je),f.stpP(je),!1})}}else if(ie){var ee=g.contents()[0],Ge=ee[Qn];Ge&&(Ge.disconnect(),delete ee[Qn])}else Wa(g.children(Dr+as).eq(0))}}function j1(){if(ce){var g=11,E=f.mO(),O=f.now(),I,V,U,K,ee,$,te,pe,oe,xe;di=function(Se){var Me=!1,we=!1,Re,Oe=[];return Ce&&!st&&(fe(Se,function(){Re=this,I=Re.target,V=Re.attributeName,U=V===s.c,K=Re.oldValue,ee=I.className,Qe&&U&&!we&&K.indexOf(cn)>-1&&ee.indexOf(cn)<0&&($=lo(!0),Tr.className=ee.split(Ut).concat(K.split(Ut).filter(function($e){return $e.match($)})).join(Ut),Me=we=!0),Me||(Me=U?ro(K,ee):V===s.s?K!==I[s.s].cssText:!0),Oe.push(V)}),xi(Oe),Me&&re.update(we||St)),Me},pi=function(Se){var Me=!1,we;return Ce&&!st&&(fe(Se,function(){return we=this,Me=X1(we),!Me}),Me&&(pe=f.now(),oe=Xa||Hr,xe=function(){Ee||(O=pe,ue&&Si(),oe?sa():re.update(St))},clearTimeout(te),g<=0||pe-O>g||!oe?xe():te=setTimeout(xe,g))),Me},An=new E(di),Ln=new E(pi)}}function Jl(){ce&&!ha&&(An.observe(Tr,{attributes:!0,attributeOldValue:!0,attributeFilter:mi}),Ln.observe(ue?Fa:Ur,{attributes:!0,attributeOldValue:!0,subtree:!ue,childList:!ue,characterData:!ue,attributeFilter:ue?Zl:mi}),ha=!0)}function Li(){ce&&ha&&(An.disconnect(),Ln.disconnect(),ha=!1)}function F1(){if(!st){var g,E={w:wn[s.sW],h:wn[s.sH]};g=ds(E,Ul),Ul=E,g&&sa({_hostSizeChanged:!0})}}function $l(){hs&&va(!0)}function eo(){hs&&!ls.hasClass(ss)&&va(!1)}function G1(){Nr&&(va(!0),clearTimeout(Ql),Ql=setTimeout(function(){Nr&&!Ee&&va(!1)},100))}function qs(g){return f.prvD(g),!1}function ki(g){if(!Ee){var E=g.target,O=p(g.target),I=p.inArray(E,is);I>-1&&is.splice(I,1),co(function(V,U){O.is(U)&&sa({_contentSizeChanged:!0})})}}function Ei(g){g||Ei(!0),Lr(be,Ws.split(Ut)[0],G1,!Nr||g,!0),Lr(be,[il,ll],[$l,eo],!hs||g,!0),!Ce&&!g&&be.one("mouseover",$l)}function to(){var g={};return Le&&Ia&&(g.w=da(Ia.css(ur+Ae)),g.h=da(Ia.css(ur+nt)),g.c=ds(g,qa),g.f=!0),qa=g,!!g.c}function ro(g,E){var O=typeof E==i.s?E.split(Ut):[],I=typeof g==i.s?g.split(Ut):[],V=ef(I,O),U=le(mn,V),K,ee;if(U>-1&&V.splice(U,1),V[s.l]>0){for(ee=lo(!0,!0),K=0;K<V.length;K++)if(!V[K].match(ee))return!0}return!1}function X1(g){var E=g.attributeName,O=g.target,I=g.type,V="closest";if(O===Ur)return E===null;if(I==="attributes"&&(E===s.c||E===s.s)&&!ue){if(E===s.c&&p(O).hasClass(hr))return ro(g.oldValue,O.className);if(typeof O[V]!=i.f)return!0;if(O[V](Dr+as)!==null||O[V](Dr+Ta)!==null||O[V](Dr+ai)!==null)return!1}return!0}function q1(){if(st)return!1;var g=fo(),E=ue&&Hr&&!Cn?Pe.val().length:0,O=!ha&&Hr&&!ue,I={},V,U,K,ee;return O&&(V=ft.css(Ar),I[Ar]=Be?Bt:Ue,I[Ae]=St,ft.css(I)),ee={w:g[s.sW]+E,h:g[s.sH]+E},O&&(I[Ar]=V,I[Ae]=Da,ft.css(I)),U=to(),K=ds(ee,Bl),Bl=ee,K||U}function Z1(){if(!(st||ha)){var g,E,O,I=[],V=[{_elem:be,_attrs:mi.concat(":visible")},{_elem:ue?Pe:t,_attrs:Zl}];return fe(V,function(U,K){g=K._elem,g&&fe(K._attrs,function(ee,$){E=$.charAt(0)===":"?g.is($):g.attr($),O=ql[$],ds(E,O)&&I.push($),ql[$]=E})}),xi(I),I[s.l]>0}}function Y1(g){if(!Ce)return!0;var E="flex-grow",O="flex-shrink",I="flex-basis",V=[Ae,ur+Ae,Sa+Ae,Mt+Ue,Mt+Bt,Ue,Bt,"font-weight","word-spacing",E,O,I],U=[$t+Ue,$t+Bt,xr+Ue+Ae,xr+Bt+Ae],K=[nt,ur+nt,Sa+nt,Mt+ot,Mt+mr,ot,mr,"line-height",E,O,I],ee=[$t+ot,$t+mr,xr+ot+Ae,xr+mr+Ae],$="s",te="v-s",pe=Cs.x===$||Cs.x===te,oe=Cs.y===$||Cs.y===te,xe=!1,Se=function(Me,we){for(var Re=0;Re<Me[s.l];Re++)if(Me[Re]===we)return!0;return!1};return oe&&(xe=Se(K,g),!xe&&!lt&&(xe=Se(ee,g))),pe&&!xe&&(xe=Se(V,g),!xe&&!lt&&(xe=Se(U,g))),xe}function xi(g){g=g||ii,fe(g,function(E,O){if(f.inA(O,ii)>-1){var I=Pe.attr(O);Y(I)==i.s?Te.attr(O,I):Te.removeAttr(O)}})}function Si(){if(!st){var g=!Cn,E=Ke.w,O=Ke.h,I={},V=Hr||g,U,K,ee,$;return I[ur+Ae]=ye,I[ur+nt]=ye,I[Ae]=St,Pe.css(I),U=Fa[s.oW],K=V?c.max(U,Fa[s.sW]-1):1,I[Ae]=Hr?St:Da,I[ur+Ae]=Da,I[nt]=St,Pe.css(I),ee=Fa[s.oH],$=c.max(ee,Fa[s.sH]-1),I[Ae]=K,I[nt]=$,Pa.css(I),I[ur+Ae]=E,I[ur+nt]=O,Pe.css(I),{_originalWidth:U,_originalHeight:ee,_dynamicWidth:K,_dynamicHeight:$}}}function sa(g){clearTimeout(xl),g=g||{},ns._hostSizeChanged|=g._hostSizeChanged,ns._contentSizeChanged|=g._contentSizeChanged,ns._force|=g._force;var E=f.now(),O=!!ns._hostSizeChanged,I=!!ns._contentSizeChanged,V=!!ns._force,U=g._changedOptions,K=Ce&&!Ee&&!V&&!U&&E-El<Sl&&!Xa&&!Hr,ee;if(K&&(xl=setTimeout(sa,Sl)),!(Ee||K||st&&!U||Ce&&!V&&(ee=be.is(":hidden"))||be.css("display")==="inline")){El=E,ns={},ke&&!(J.x&&J.y)?(P.x=0,P.y=0):P=yr({},W.nativeScrollbarSize),fa={x:(P.x+(J.x?0:3))*3,y:(P.y+(J.y?0:3))*3},U=U||{};var $=function(){return ds.apply(this,[].slice.call(arguments).concat([V]))},te={x:Te[Ht](),y:Te[Nt]()},pe=Dt.scrollbars,oe=Dt.textarea,xe=pe.visibility,Se=$(xe,Hl),Me=pe.autoHide,we=$(Me,Nl),Re=pe.clickScrolling,Oe=$(Re,Kl),$e=pe.dragScrolling,tr=$($e,ui),yt=Dt.className,br=$(yt,Xs),Rt=Dt.resize,kt=$(Rt,jl)&&!Le,Et=Dt.paddingAbsolute,ct=$(Et,Rl),Tt=Dt.clipAlways,ia=$(Tt,Wl),ut=Dt.sizeAutoCapable&&!Le,Fr=$(ut,Vl),Ge=Dt.nativeScrollbarsOverlaid.showNativeScrollbars,je=$(Ge,fi),ne=Dt.autoUpdate,et=$(ne,ci),tt=Dt.overflowBehavior,Pr=$(tt,Cs,V),za=oe.dynWidth,ps=$(Xl,za),wr=oe.dynHeight,pa=$(Gl,wr);if(bi=Me==="n",Za=Me==="s",Nr=Me==="m",hs=Me==="l",yi=pe.autoHideDelay,hi=Xs,kn=Rt==="n",En=Rt==="b",Ci=Rt==="h",Ai=Rt==="v",Ma=Dt.normalizeRTL,Ge=Ge&&J.x&&J.y,Hl=xe,Nl=Me,Kl=Re,ui=$e,Xs=yt,jl=Rt,Rl=Et,Wl=Tt,Vl=ut,fi=Ge,ci=ne,Cs=yr({},tt),Xl=za,Gl=wr,ua=ua||{x:!1,y:!1},br&&(er(be,hi+Ut+mn),Lt(be,yt!==t&&yt!==null&&yt.length>0?yt:mn)),et&&(ne===!0||ne===null&&Ve?(Li(),Q.add(re)):(Q.remove(re),Jl())),Fr)if(ut)if(vr?vr.show():(vr=p(Ir(B1)),Br.before(vr)),_t)ta.show();else{ta=p(Ir(U1)),bn=ta[0],vr.before(ta);var ma={w:-1,h:-1};xn(ta,function(){var gs={w:bn[s.oW],h:bn[s.oH]};ds(gs,ma)&&(Ce&&Xa&&gs.h>0||Hr&&gs.w>0||Ce&&!Xa&&gs.h===0||!Hr&&gs.w===0)&&sa(),ma=gs}),_t=!0,S!==null&&ta.css(nt,S+"(100% + 1px)")}else _t&&ta.hide(),vr&&vr.hide();V&&(ra.find("*").trigger(Sr),_t&&ta.find("*").trigger(Sr)),ee=ee===t?be.is(":hidden"):ee;var Mr=ue?Pe.attr("wrap")!=="off":!1,Ys=$(Mr,Cn),Rr=be.css("direction"),dr=$(Rr,Pl),Va=be.css("box-sizing"),Wr=$(Va,Tl),it=Mi($t),Kt;try{Kt=_t?bn[s.bCR]():null}catch{return}Be=Rr==="rtl",lt=Va==="border-box";var jt=Be?Ue:Bt,We=Be?Bt:Ue,Gr=!1,Qa=_t&&be.css(Ar)!=="none"?c.round(Kt.right-Kt.left)===0&&(Et?!0:Tr[s.cW]-qe>0):!1;if(ut&&!Qa){var ms=Tr[s.oW],Ba=vr.css(Ae);vr.css(Ae,St);var ga=Tr[s.oW];vr.css(Ae,Ba),Gr=ms!==ga,Gr||(vr.css(Ae,ms+1),ga=Tr[s.oW],vr.css(Ae,Ba),Gr=ms!==ga)}var Ie=(Qa||Gr)&&ut&&!ee,Ft=$(Ie,Hr),Ua=!Ie&&Hr,Ze=_t&&ut&&!ee?c.round(Kt.bottom-Kt.top)===0:!1,Gt=$(Ze,Xa),Xr=!Ze&&Xa,Qs=Ie&&lt||!lt,Sn=Ze&&lt||!lt,qr=Mi(xr,"-"+Ae,!Qs,!Sn),_a=Mi(Mt),he={},ve={},bt=function(){return{w:Tr[s.cW],h:Tr[s.cH]}},pr=function(){return{w:Ga[s.oW]+c.max(0,Ur[s.cW]-Ur[s.sW]),h:Ga[s.oH]+c.max(0,Ur[s.cH]-Ur[s.sH])}},Ne=qe=it.l+it.r,Zr=kr=it.t+it.b;if(Ne*=Et?1:0,Zr*=Et?1:0,it.c=$(it,oi),Je=qr.l+qr.r,Jt=qr.t+qr.b,qr.c=$(qr,Ol),or=_a.l+_a.r,Er=_a.t+_a.b,_a.c=$(_a,Il),Cn=Mr,Pl=Rr,Tl=Va,Hr=Ie,Xa=Ze,oi=it,Ol=qr,Il=_a,dr&&_t&&ta.css(Ar,We),it.c||dr||ct||Ft||Gt||Wr||Fr){var xt={},Cr={},Ja=[it.t,it.r,it.b,it.l];vs(ve,Mt,[-it.t,-it.r,-it.b,-it.l]),Et?(vs(xt,ye,Ja),vs(ue?Cr:he,$t)):(vs(xt,ye),vs(ue?Cr:he,$t,Ja)),Br.css(xt),Pe.css(Cr)}Ke=pr();var rt=ue?Si():!1,Yr=ue&&$(rt,Fl),ya=ue&&rt?{w:za?rt._dynamicWidth:rt._originalWidth,h:wr?rt._dynamicHeight:rt._originalHeight}:{};if(Fl=rt,Ze&&(Gt||ct||Wr||it.c||qr.c)?he[nt]=St:(Gt||ct)&&(he[nt]=Da),Ie&&(Ft||ct||Wr||it.c||qr.c||dr)?(he[Ae]=St,ve[Sa+Ae]=Da):(Ft||ct)&&(he[Ae]=Da,he[Ar]=ye,ve[Sa+Ae]=ye),Ie?(ve[Ae]=St,he[Ae]=l._cssPropertyValue(Ae,"max-content intrinsic")||St,he[Ar]=We):ve[Ae]=ye,Ze?ve[nt]=ya.h||Ur[s.cH]:ve[nt]=ye,ut&&vr.css(ve),ft.css(he),he={},ve={},O||I||Yr||dr||Wr||ct||Ft||Ie||Gt||Ze||je||Pr||ia||kt||Se||we||tr||Oe||ps||pa||Ys){var Wt="overflow",Ha=Wt+"-x",ba=Wt+"-y",$a="hidden",Qr="visible";if(!ke){var wa={},zi=ua.y&&Gs.ys&&!Ge?J.y?Te.css(jt):-P.y:0,sf=ua.x&&Gs.xs&&!Ge?J.x?Te.css(mr):-P.x:0;vs(wa,ye),Te.css(wa)}var es=fo(),Js={w:ya.w||es[s.cW],h:ya.h||es[s.cH]},uo={w:es[s.sW],h:es[s.sH]};ke||(wa[mr]=Xr?ye:sf,wa[jt]=Ua?ye:zi,Te.css(wa)),Ke=pr();var $s=bt(),Vi={w:$s.w-or-Je-(lt?0:qe),h:$s.h-Er-Jt-(lt?0:kr)},ks={w:c.max((Ie?Js.w:uo.w)+Ne,Vi.w),h:c.max((Ze?Js.h:uo.h)+Zr,Vi.h)};if(ks.c=$(ks,zl),zl=ks,ut){(ks.c||Ze||Ie)&&(ve[Ae]=ks.w,ve[nt]=ks.h,ue||(Js={w:es[s.cW],h:es[s.cH]}));var ho={},vo=function(wt){var rr=Kr(wt),Jr=rr._w_h,ht=rr._width_height,ze=wt?Ie:Ze,la=wt?Je:Jt,_s=wt?qe:kr,Ki=wt?or:Er,Mn=Ke[Jr]-la-Ki-(lt?0:_s);(!ze||!ze&&qr.c)&&(ve[ht]=Vi[Jr]-1),ze&&Js[Jr]<Mn&&(wt&&ue?!Mr:!0)&&(ue&&(ho[ht]=da(Pa.css(ht))-1),ve[ht]-=1),Js[Jr]>0&&(ve[ht]=c.max(1,ve[ht]))};vo(!0),vo(!1),ue&&Pa.css(ho),vr.css(ve)}Ie&&(he[Ae]=Da),Ie&&!lt&&!ha&&(he[Ar]="none"),ft.css(he),he={};var ts={w:es[s.sW],h:es[s.sH]};ts.c=I=$(ts,us),us=ts,Ke=pr(),$s=bt(),O=$($s,Fs),Fs=$s;var Bi=ue&&(Ke.w===0||Ke.h===0),Dn=As,Es={},en={},po={},Ca={},at={},Xe={},tn={},mo=Ga[s.bCR](),go=function(wt){var rr=Kr(wt),Jr=Kr(!wt),ht=Jr._x_y,ze=rr._x_y,la=rr._w_h,_s=rr._width_height,Ki=Sr+rr._Left_Top+"Max",Mn=mo[_s]?c.abs(mo[_s]-Ke[la]):0,_f=Dn&&Dn[ze]>0&&cs[Ki]===0;Es[ze]=tt[ze]==="v-s",en[ze]=tt[ze]==="v-h",po[ze]=tt[ze]==="s",Ca[ze]=c.max(0,c.round((ts[la]-Ke[la])*100)/100),Ca[ze]*=Bi||_f&&Mn>0&&Mn<1?0:1,at[ze]=Ca[ze]>0,Xe[ze]=Es[ze]||en[ze]?at[ht]&&!Es[ht]&&!en[ht]:at[ze],Xe[ze+"s"]=Xe[ze]?po[ze]||Es[ze]:!1,tn[ze]=at[ze]&&Xe[ze+"s"]};if(go(!0),go(!1),Ca.c=$(Ca,As),As=Ca,at.c=$(at,ua),ua=at,Xe.c=$(Xe,Gs),Gs=Xe,J.x||J.y){var nf="px solid transparent",Ui={},Na={},Tn=V,Hi;(at.x||at.y)&&(Na.w=J.y&&at.y?ts.w+Fe.y:ye,Na.h=J.x&&at.x?ts.h+Fe.x:ye,Tn=$(Na,Dl),Dl=Na),(at.c||Xe.c||ts.c||dr||Ft||Gt||Ie||Ze||je)&&(he[Mt+We]=he[xr+We]=ye,Hi=function(wt){var rr=Kr(wt),Jr=Kr(!wt),ht=rr._x_y,ze=wt?mr:jt,la=wt?Ze:Ie;J[ht]&&at[ht]&&Xe[ht+"s"]?(he[Mt+ze]=la?Ge?ye:Fe[ht]:ye,he[xr+ze]=(wt?!la:!0)&&!Ge?Fe[ht]+nf:ye):(Na[Jr._w_h]=he[Mt+ze]=he[xr+ze]=ye,Tn=!0)},ke?jr(Te,ti,!Ge):(Hi(!0),Hi(!1))),Ge&&(Na.w=Na.h=ye,Tn=!0),Tn&&!ke&&(Ui[Ae]=Xe.y?Na.w:ye,Ui[nt]=Xe.x?Na.h:ye,Ia||(Ia=p(Ir(V1)),Te.prepend(Ia)),Ia.css(Ui)),ft.css(he)}var zt={},xt={},Ni;if((O||at.c||Xe.c||ts.c||Pr||Wr||je||dr||ia||Gt)&&(zt[We]=ye,Ni=function(wt){var rr=Kr(wt),Jr=Kr(!wt),ht=rr._x_y,ze=rr._X_Y,la=wt?mr:jt,_s=function(){zt[la]=ye,oa[Jr._w_h]=0};at[ht]&&Xe[ht+"s"]?(zt[Wt+ze]=Sr,Ge||ke?_s():(zt[la]=-(J[ht]?Fe[ht]:P[ht]),oa[Jr._w_h]=J[ht]?Fe[Jr._x_y]:0)):(zt[Wt+ze]=ye,_s())},Ni(!0),Ni(!1),!ke&&(Ke.h<fa.x||Ke.w<fa.y)&&(at.x&&Xe.x&&!J.x||at.y&&Xe.y&&!J.y)?(zt[$t+ot]=fa.x,zt[Mt+ot]=-fa.x,zt[$t+We]=fa.y,zt[Mt+We]=-fa.y):zt[$t+ot]=zt[Mt+ot]=zt[$t+We]=zt[Mt+We]=ye,zt[$t+jt]=zt[Mt+jt]=ye,at.x&&Xe.x||at.y&&Xe.y||Bi?ue&&Bi&&(xt[Ha]=xt[ba]=$a):(!Tt||en.x||Es.x||en.y||Es.y)&&(ue&&(xt[Ha]=xt[ba]=ye),zt[Ha]=zt[ba]=Qr),Br.css(xt),Te.css(zt),zt={},(at.c||Wr||Ft||Gt)&&!(J.x&&J.y))){var On=Ur[s.s];On.webkitTransform="scale(1)",On.display="run-in",Ur[s.oH],On.display=ye,On.webkitTransform=ye}if(he={},dr||Ft||Gt)if(Be&&Ie){var lf=ft.css(Ar),_o=c.round(ft.css(Ar,ye).css(Ue,ye).position().left);ft.css(Ar,lf);var of=c.round(ft.position().left);_o!==of&&(he[Ue]=_o)}else he[Ue]=ye;if(ft.css(he),ue&&I){var Aa=tf();if(Aa){var yo=vi===t?!0:Aa._rows!==vi._rows,bo=Aa._cursorRow,ff=Aa._cursorColumn,cf=Aa._widestRow,uf=Aa._rows,hf=Aa._columns,vf=Aa._cursorPosition,df=Aa._cursorMax,wo=vf>=df&&_i,In={x:!Mr&&ff===hf&&bo===cf?As.x:-1,y:(Mr?wo||yo&&(Dn?te.y===Dn.y:!1):(wo||yo)&&bo===uf)?As.y:-1};te.x=In.x>-1?Be&&Ma&&ae.i?0:In.x:te.x,te.y=In.y>-1?In.y:te.y}vi=Aa}Be&&ae.i&&J.y&&at.x&&Ma&&(te.x+=oa.w||0),Ie&&be[Ht](0),Ze&&be[Nt](0),Te[Ht](te.x)[Nt](te.y);var pf=xe==="v",mf=xe==="h",gf=xe==="a",Pn=function(wt,rr){rr=rr===t?wt:rr,no(!0,wt,tn.x),no(!1,rr,tn.y)};jr(be,Vs,Xe.x||Xe.y),jr(be,vl,Xe.x),jr(be,dl,Xe.y),dr&&!Le&&jr(be,hl,Be),Le&&Lt(be,$n),kt&&(jr(be,$n,kn),jr(_r,Us,!kn),jr(_r,Cl,En),jr(_r,Al,Ci),jr(_r,Ll,Ai)),(Se||Pr||Xe.c||at.c||je)&&(Ge?je&&(er(be,un),Ge&&Pn(!1)):gf?Pn(tn.x,tn.y):pf?Pn(!0):mf&&Pn(!1)),(we||je)&&(Ei(!hs&&!Nr),va(bi,!bi)),(O||Ca.c||Gt||Ft||kt||Wr||ct||je||dr)&&(Ii(!0),na(!0),Ii(!1),na(!1)),Oe&&io(!0,Re),tr&&io(!1,$e),Or("onDirectionChanged",{isRTL:Be,dir:Rr},dr),Or("onHostSizeChanged",{width:Fs.w,height:Fs.h},O),Or("onContentSizeChanged",{width:us.w,height:us.h},I),Or("onOverflowChanged",{x:at.x,y:at.y,xScrollable:Xe.xs,yScrollable:Xe.ys,clipped:Xe.x||Xe.y},at.c||Xe.c),Or("onOverflowAmountChanged",{x:Ca.x,y:Ca.y},Ca.c)}Le&&qa&&(ua.c||qa.c)&&(qa.f||to(),J.y&&ua.x&&ft.css(ur+Ae,qa.w+Fe.y),J.x&&ua.y&&ft.css(ur+nt,qa.h+Fe.x),qa.c=!1),Ce&&U.updateOnLoad&&ao(),Or("onUpdated",{forced:V})}}function ao(){ue||co(function(g,E){ft.find(E).each(function(O,I){f.inA(I,is)<0&&(is.push(I),p(I).off(li,ki).on(li,ki))})})}function Di(g){var E=L._validate(g,L._template,!0,Hs);return Hs=yr({},Hs,E._default),Dt=yr({},Dt,E._prepared),E._prepared}function Ti(g){var E="parent",O="os-resize-observer-host",I=hn+Ut+pn,V=ue?Ut+pn:ye,U=Dt.textarea.inheritedAttrs,K={},ee=function(){var pe=g?Pe:be;fe(K,function(oe,xe){Y(xe)==i.s&&(oe==s.c?pe.addClass(xe):pe.attr(oe,xe))})},$=[hr,cn,Jn,$n,hl,fl,cl,ul,un,Vs,vl,dl,mn,hn,pn,Xs].join(Ut),te={};be=be||(ue?Qe?Pe[E]()[E]()[E]()[E]():p(Ir(Jn)):Pe),ft=ft||Ra(ri+V),Te=Te||Ra(vn+V),Br=Br||Ra(ei+V),ra=ra||Ra(O),Pa=Pa||(ue?Ra(z1):t),Qe&&Lt(be,cn),g&&er(be,$),U=Y(U)==i.s?U.split(Ut):U,f.isA(U)&&ue&&fe(U,function(pe,oe){Y(oe)==i.s&&(K[oe]=g?be.attr(oe):Pe.attr(oe))}),g?(Qe&&Ce?(ra.children().remove(),fe([Br,Te,ft,Pa],function(pe,oe){oe&&er(oe.removeAttr(s.s),si)}),Lt(be,ue?Jn:hr)):(Wa(ra),ft.contents().unwrap().unwrap().unwrap(),ue&&(Pe.unwrap(),Wa(be),Wa(Pa),ee())),ue&&Pe.removeAttr(s.s),Le&&er(bs,ol)):(ue&&(Dt.sizeAutoCapable||(te[Ae]=Pe.css(Ae),te[nt]=Pe.css(nt)),Qe||Pe.addClass(pn).wrap(be),be=Pe[E]().css(te)),Qe||(Lt(Pe,ue?I:hr),be.wrapInner(ft).wrapInner(Te).wrapInner(Br).prepend(ra),ft=Ls(be,Dr+ri),Te=Ls(be,Dr+vn),Br=Ls(be,Dr+ei),ue&&(ft.prepend(Pa),ee())),ke&&Lt(Te,ti),J.x&&J.y&&Lt(Te,pl),Le&&Lt(bs,ol),wn=ra[0],Tr=be[0],Ga=Br[0],cs=Te[0],Ur=ft[0],xi())}function Q1(){var g=[112,113,114,115,116,117,118,119,120,121,123,33,34,37,38,39,40,16,17,18,19,20,144],E=[],O,I,V=175,U="focus";function K(we){Si(),re.update(St),we&&Ve&&clearInterval(O)}function ee(we){return Pe[Ht](ae.i&&Ma?9999999:0),Pe[Nt](0),f.prvD(we),f.stpP(we),!1}function $(we){setTimeout(function(){Ee||K()},50)}function te(){_i=!0,Lt(be,U)}function pe(){_i=!1,E=[],er(be,U),K(!0)}function oe(we){var Re=we.keyCode;le(Re,g)<0&&(E[s.l]||(K(),O=setInterval(K,1e3/60)),le(Re,E)<0&&E.push(Re))}function xe(we){var Re=we.keyCode,Oe=le(Re,E);le(Re,g)<0&&(Oe>-1&&E.splice(Oe,1),E[s.l]||K(!0))}function Se(we){ci!==!0&&(we=we.originalEvent||we,Y1(we.propertyName)&&re.update(St))}function Me(we){st||(I!==t?clearTimeout(I):((Za||Nr)&&va(!0),Zs()||Lt(be,un),Or("onScrollStart",we)),Ya||(na(!0),na(!1)),Or("onScroll",we),I=setTimeout(function(){Ee||(clearTimeout(I),I=t,(Za||Nr)&&va(!1),Zs()||er(be,un),Or("onScrollStop",we))},V))}ue?(He>9||!Ve?aa(Pe,"input",K):aa(Pe,[qn,Zn],[oe,xe]),aa(Pe,[Sr,"drop",U,U+"out"],[ee,$,te,pe])):aa(ft,Yn,Se),aa(Te,Sr,Me,!0)}function Oi(g){var E=function(U){var K=U?H1:N1,ee=Ra(Ta+Ut+K,!0),$=Ra(gl,ee),te=Ra(yl,ee);return!Qe&&!g&&(ee.append($),$.append(te)),{_scrollbar:ee,_track:$,_handle:te}};function O(U){var K=Kr(U),ee=K._scrollbar,$=K._track,te=K._handle;Qe&&Ce?fe([ee,$,te],function(pe,oe){er(oe.removeAttr(s.s),si)}):Wa(ee||E(U)._scrollbar)}var I,V;g?(O(!0),O()):(I=E(!0),V=E(),os=I._scrollbar,_n=I._track,Ns=I._handle,fs=V._scrollbar,yn=V._track,Ks=V._handle,Qe||(Br.after(fs),Br.after(os)))}function so(g){var E=Kr(g),O=E._info,I=js.top!==js,V=E._x_y,U=E._X_Y,K=Sr+E._Left_Top,ee="active",$="snapHandle",te="click",pe=1,oe=[16,17],xe,Se,Me,we;function Re(ne){return He&&I?ne["screen"+U]:f.page(ne)[V]}function Oe(ne){return Dt.scrollbars[ne]}function $e(){pe=.5}function tr(){pe=1}function yt(ne){f.stpP(ne)}function br(ne){le(ne.keyCode,oe)>-1&&$e()}function Rt(ne){le(ne.keyCode,oe)>-1&&tr()}function kt(ne){var et=ne.originalEvent||ne,tt=et.touches!==t;return st||Ee||Zs()||!ui||tt&&!Oe("touchSupport")?!1:f.mBtn(ne)===1||tt}function Et(ne){if(kt(ne)){var et=O._trackLength,tt=O._handleLength,Pr=O._maxScroll,za=(Re(ne)-Me)*we,ps=za/(et-tt),wr=Pr*ps;wr=isFinite(wr)?wr:0,Be&&g&&!ae.i&&(wr*=-1),Te[K](c.round(Se+wr)),Ya&&na(g,Se+wr),X||f.prvD(ne)}else ct(ne)}function ct(ne){if(ne=ne||ne.originalEvent,Lr(ca,[Ws,Rs,qn,Zn,zs],[Et,ct,br,Rt,qs],!0),f.rAF()(function(){Lr(ca,te,yt,!0,{_capture:!0})}),Ya&&na(g,!0),Ya=!1,er(ls,ss),er(E._handle,ee),er(E._track,ee),er(E._scrollbar,ee),Se=t,Me=t,we=1,tr(),xe!==t&&(re.scrollStop(),clearTimeout(xe),xe=t),ne){var et=Tr[s.bCR](),tt=ne.clientX>=et.left&&ne.clientX<=et.right&&ne.clientY>=et.top&&ne.clientY<=et.bottom;tt||eo(),(Za||Nr)&&va(!1)}}function Tt(ne){kt(ne)&&ia(ne)}function ia(ne){Se=Te[K](),Se=isNaN(Se)?0:Se,(Be&&g&&!ae.n||!Be)&&(Se=Se<0?0:Se),we=Ri()[V],Me=Re(ne),Ya=!Oe($),Lt(ls,ss),Lt(E._handle,ee),Lt(E._scrollbar,ee),Lr(ca,[Ws,Rs,zs],[Et,ct,qs]),f.rAF()(function(){Lr(ca,te,yt,!1,{_capture:!0})}),(He||!At)&&f.prvD(ne),f.stpP(ne)}function ut(ne){if(kt(ne)){var et=E._info._handleLength/Math.round(c.min(1,Ke[E._w_h]/us[E._w_h])*E._info._trackLength),tt=c.round(Ke[E._w_h]*et),Pr=270*et,za=400*et,ps=E._track.offset()[E._left_top],wr=ne.ctrlKey,pa=ne.shiftKey,ma=pa&&wr,Mr=!0,Ys="linear",Rr,dr,Va=function(Kt){Ya&&na(g,Kt)},Wr=function(){Va(),ia(ne)},it=function(){if(!Ee){var Kt=(Me-ps)*we,jt=O._handleOffset,We=O._trackLength,Gr=O._handleLength,Qa=O._maxScroll,ms=O._currentScroll,Ba=Pr*pe,ga=Mr?c.max(za,Ba):Ba,Ie=Qa*((Kt-Gr/2)/(We-Gr)),Ft=Be&&g&&(!ae.i&&!ae.n||Ma),Ua=Ft?jt<Kt:jt>Kt,Ze={},Gt={easing:Ys,step:function(Xr){Ya&&(Te[K](Xr),na(g,Xr))}};Ie=isFinite(Ie)?Ie:0,Ie=Be&&g&&!ae.i?Qa-Ie:Ie,pa?(Te[K](Ie),ma?(Ie=Te[K](),Te[K](ms),Ie=Ft&&ae.i?Qa-Ie:Ie,Ie=Ft&&ae.n?-Ie:Ie,Ze[V]=Ie,re.scroll(Ze,yr(Gt,{duration:130,complete:Wr}))):Wr()):(Rr=Mr?Ua:Rr,dr=Ft?Rr?jt+Gr>=Kt:jt<=Kt:Rr?jt<=Kt:jt+Gr>=Kt,dr?(clearTimeout(xe),re.scrollStop(),xe=t,Va(!0)):(xe=setTimeout(it,ga),Ze[V]=(Rr?"-=":"+=")+tt,re.scroll(Ze,yr(Gt,{duration:Ba}))),Mr=!1)}};wr&&$e(),we=Ri()[V],Me=f.page(ne)[V],Ya=!Oe($),Lt(ls,ss),Lt(E._track,ee),Lt(E._scrollbar,ee),Lr(ca,[Rs,qn,Zn,zs],[ct,br,Rt,qs]),it(),f.prvD(ne),f.stpP(ne)}}function Fr(ne){wi=!0,(Za||Nr)&&va(!0)}function Ge(ne){wi=!1,(Za||Nr)&&va(!1)}function je(ne){f.stpP(ne)}aa(E._handle,ys,Tt),aa(E._track,[ys,il,ll],[ut,Fr,Ge]),aa(E._scrollbar,ys,je),T&&aa(E._scrollbar,Yn,function(ne){ne.target===E._scrollbar[0]&&(Ii(g),na(g))})}function no(g,E,O){var I=g?fl:cl,V=g?os:fs;jr(be,I,!E),jr(V,wl,!O)}function va(g,E){if(clearTimeout(Yl),g)er(os,Bs),er(fs,Bs);else{var O,I="active",V=function(){!wi&&!Ee&&(O=Ns.hasClass(I)||Ks.hasClass(I),!O&&(Za||Nr||hs)&&Lt(os,Bs),!O&&(Za||Nr||hs)&&Lt(fs,Bs))};yi>0&&E!==!0?Yl=setTimeout(V,yi):V()}}function Ii(g){var E={},O=Kr(g),I=O._info,V=1e6,U=c.min(1,Ke[O._w_h]/us[O._w_h]);E[O._width_height]=c.floor(U*100*V)/V+"%",Zs()||O._handle.css(E),I._handleLength=O._handle[0]["offset"+O._Width_Height],I._handleLengthRatio=U}function na(g,E){var O=Y(E)==i.b,I=250,V=Be&&g,U=Kr(g),K=U._info,ee="translate(",$=l._cssProperty("transform"),te=l._cssProperty("transition"),pe=g?Te[Ht]():Te[Nt](),oe=E===t||O?pe:E,xe=K._handleLength,Se=U._track[0]["offset"+U._Width_Height],Me=Se-xe,we={},Re,Oe,$e=(cs[Sr+U._Width_Height]-cs["client"+U._Width_Height])*(ae.n&&V?-1:1),tr=function(ct){return isNaN(ct/$e)?0:c.max(0,c.min(1,ct/$e))},yt=function(ct){var Tt=Me*ct;return Tt=isNaN(Tt)?0:Tt,Tt=V&&!ae.i?Se-xe-Tt:Tt,Tt=c.max(0,Tt),Tt},br=tr(pe),Rt=tr(oe),kt=yt(Rt),Et=yt(br);K._maxScroll=$e,K._currentScroll=pe,K._currentScrollRatio=br,z?(Re=V?-(Se-xe-kt):kt,Oe=g?ee+Re+"px, 0)":ee+"0, "+Re+"px)",we[$]=Oe,T&&(we[te]=O&&c.abs(kt-K._handleOffset)>1?$1(U._handle)+", "+($+Ut+I+"ms"):ye)):we[U._left_top]=kt,Zs()||(U._handle.css(we),z&&T&&O&&U._handle.one(Yn,function(){Ee||U._handle.css(te,ye)})),K._handleOffset=kt,K._snappedHandleOffset=Et,K._trackLength=Se}function io(g,E){var O=E?"removeClass":"addClass",I=g?_n:Ns,V=g?yn:Ks,U=g?_l:bl;I[O](U),V[O](U)}function Kr(g){return{_width_height:g?Ae:nt,_Width_Height:g?"Width":"Height",_left_top:g?Ue:ot,_Left_Top:g?"Left":"Top",_x_y:g?Ps:Ms,_X_Y:g?"X":"Y",_w_h:g?"w":"h",_l_t:g?"l":"t",_track:g?_n:yn,_handle:g?Ns:Ks,_scrollbar:g?os:fs,_info:g?fr:cr}}function Pi(g){_r=_r||Ra(ai,!0),g?Qe&&Ce?er(_r.removeAttr(s.s),si):Wa(_r):Qe||be.append(_r)}function J1(){var g=js.top!==js,E={},O={},I={},V;function U(te){if(ee(te)){var pe=$(te),oe={};(Ci||En)&&(oe[Ae]=O.w+(pe.x-E.x)*I.x),(Ai||En)&&(oe[nt]=O.h+(pe.y-E.y)*I.y),be.css(oe),f.stpP(te)}else K(te)}function K(te){var pe=te!==t;Lr(ca,[zs,Ws,Rs],[qs,U,K],!0),er(ls,ss),_r.releaseCapture&&_r.releaseCapture(),pe&&(V&&Jl(),re.update(St)),V=!1}function ee(te){var pe=te.originalEvent||te,oe=pe.touches!==t;return st||Ee?!1:f.mBtn(te)===1||oe}function $(te){return He&&g?{x:te.screenX,y:te.screenY}:f.page(te)}aa(_r,ys,function(te){ee(te)&&!kn&&(ha&&(V=!0,Li()),E=$(te),O.w=Tr[s.oW]-(lt?0:qe),O.h=Tr[s.oH]-(lt?0:kr),I=Ri(),Lr(ca,[zs,Ws,Rs],[qs,U,K]),Lt(ls,ss),_r.setCapture&&_r.setCapture(),f.prvD(te),f.stpP(te))})}function Or(g,E,O){if(O!==!1)if(Ce){var I=Dt.callbacks[g],V=g,U;V.substr(0,2)==="on"&&(V=V.substr(2,1).toLowerCase()+V.substr(3)),Y(I)==i.f&&I.call(re,E),fe(Oa,function(){U=this,Y(U.on)==i.f&&U.on(V,E)})}else Ee||ni.push({n:g,a:E})}function vs(g,E,O){E=E||ye,O=O||[ye,ye,ye,ye],g[E+ot]=O[0],g[E+Bt]=O[1],g[E+mr]=O[2],g[E+Ue]=O[3]}function Mi(g,E,O,I){return E=E||ye,g=g||ye,{t:I?0:da(be.css(g+ot+E)),r:O?0:da(be.css(g+Bt+E)),b:I?0:da(be.css(g+mr+E)),l:O?0:da(be.css(g+Ue+E))}}function $1(g){var E=l._cssProperty("transition"),O=g.css(E);if(O)return O;for(var I="\\s*(([^,(]+(\\(.+?\\))?)+)[\\s,]*",V=new RegExp(I),U=new RegExp("^("+I+")+$"),K="property duration timing-function delay".split(" "),ee=[],$,te,pe=0,oe,xe=function(Se){if($=[],!Se.match(U))return Se;for(;Se.match(V);)$.push(RegExp.$1),Se=Se.replace(V,ye);return $};pe<K[s.l];pe++)for(te=xe(g.css(E+"-"+K[pe])),oe=0;oe<te[s.l];oe++)ee[oe]=(ee[oe]?ee[oe]+Ut:ye)+te[oe];return ee.join(", ")}function lo(g,E){var O,I,V,U=function(K,ee){if(V="",ee&&typeof K==i.s)for(I=K.split(Ut),O=0;O<I[s.l];O++)V+="|"+I[O]+"$";return V};return new RegExp("(^"+hr+"([-_].+|)$)"+U(Xs,g)+U(hi,E),"g")}function Ri(){var g=Ga[s.bCR]();return{x:z&&1/(c.round(g.width)/Ga[s.oW])||1,y:z&&1/(c.round(g.height)/Ga[s.oH])||1}}function oo(g){var E="ownerDocument",O="HTMLElement",I=g&&g[E]&&g[E].parentWindow||e;return typeof I[O]==i.o?g instanceof I[O]:g&&typeof g==i.o&&g!==null&&g.nodeType===1&&typeof g.nodeName==i.s}function ef(g,E){var O=[],I=[],V,U;for(V=0;V<g.length;V++)O[g[V]]=!0;for(V=0;V<E.length;V++)O[E[V]]?delete O[E[V]]:O[E[V]]=!0;for(U in O)I.push(U);return I}function da(g,E){var O=E?parseFloat(g):parseInt(g,10);return isNaN(O)?0:O}function tf(){var g=Fa.selectionStart;if(g!==t){var E=Pe.val(),O=E[s.l],I=E.split(`
-`),V=I[s.l],U=E.substr(0,g).split(`
-`),K=0,ee=0,$=U[s.l],te=U[U[s.l]-1][s.l],pe,oe;for(oe=0;oe<I[s.l];oe++)pe=I[oe][s.l],pe>ee&&(K=oe+1,ee=pe);return{_cursorRow:$,_cursorColumn:te,_rows:V,_columns:ee,_widestRow:K,_cursorPosition:g,_cursorMax:O}}}function Zs(){return fi&&J.x&&J.y}function fo(){return ue?Pa[0]:Ur}function Ir(g,E){return"<div "+(g?Y(g)==i.s?'class="'+g+'"':function(){var O,I=ye;if(p.isPlainObject(g))for(O in g)I+=(O==="c"?"class":O)+'="'+g[O]+'" ';return I}():ye)+">"+(E||ye)+"</div>"}function Ra(g,E){var O=Y(E)==i.b,I=O?be:E||be;return Qe&&!I[s.l]?null:Qe?I[O?"children":"find"](Dr+g.replace(/\s/g,Dr)).eq(0):p(Ir(g))}function Wi(g,E){for(var O=E.split(Dr),I=0,V;I<O.length;I++){if(!g[s.hOP](O[I]))return;V=g[O[I]],I<O.length&&Y(V)==i.o&&(g=V)}return V}function rf(g,E,O){for(var I=E.split(Dr),V=I.length,U=0,K={},ee=K;U<V;U++)K=K[I[U]]=U+1<V?{}:O;p.extend(g,ee,!0)}function co(g){var E=Dt.updateOnLoad;E=Y(E)==i.s?E.split(Ut):E,f.isA(E)&&!Ee&&fe(E,g)}function ds(g,E,O){if(O)return O;if(Y(g)==i.o&&Y(E)==i.o){for(var I in g)if(I!=="c")if(g[s.hOP](I)&&E[s.hOP](I)){if(ds(g[I],E[I]))return!0}else return!0}else return g!==E;return!1}function yr(){return p.extend.apply(this,[!0].concat([].slice.call(arguments)))}function Lt(g,E){return De.addClass.call(g,E)}function er(g,E){return De.removeClass.call(g,E)}function jr(g,E,O){return O?Lt(g,E):er(g,E)}function Wa(g){return De.remove.call(g)}function Ls(g,E){return De.find.call(g,E).eq(0)}re.sleep=function(){st=!0},re.update=function(g){if(!Ee){var E,O,I=Y(g)==i.s,V,U,K;return I?g===St?(E=Z1(),O=q1(),V=E||O,V&&sa({_contentSizeChanged:O,_changedOptions:Ce?t:Dt})):g===jn?ha?(U=di(An.takeRecords()),K=pi(Ln.takeRecords())):U=re.update(St):g==="zoom"&&sa({_hostSizeChanged:!0,_contentSizeChanged:!0}):(g=st||g,st=!1,(!re.update(jn)||g)&&sa({_force:g})),ao(),V||U||K}},re.options=function(g,E){var O={},I;if(p.isEmptyObject(g)||!p.isPlainObject(g))if(Y(g)==i.s)if(arguments.length>1)rf(O,g,E),I=Di(O);else return Wi(Hs,g);else return Hs;else I=Di(g);p.isEmptyObject(I)||sa({_changedOptions:I})},re.destroy=function(){if(!Ee){Q.remove(re),Li(),xn(ra),xn(ta);for(var g in Oa)re.removeExt(g);for(;gi[s.l]>0;)gi.pop()();Ei(!0),vr&&Wa(vr),Ia&&Wa(Ia),_t&&Wa(ta),Oi(!0),Pi(!0),Ti(!0);for(var E=0;E<is[s.l];E++)p(is[E]).off(li,ki);is=t,Ee=!0,st=!0,k(B,0),Or("onDestroyed")}},re.scroll=function(g,E,O,I){if(arguments.length===0||g===t){var V=fr,U=cr,K=Ma&&Be&&ae.i,ee=Ma&&Be&&ae.n,$=V._currentScroll,te=V._currentScrollRatio,pe=V._maxScroll;return te=K?1-te:te,$=K?pe-$:$,$*=ee?-1:1,pe*=ee?-1:1,{position:{x:$,y:U._currentScroll},ratio:{x:te,y:U._currentScrollRatio},max:{x:pe,y:U._maxScroll},handleOffset:{x:V._handleOffset,y:U._handleOffset},handleLength:{x:V._handleLength,y:U._handleLength},handleLengthRatio:{x:V._handleLengthRatio,y:U._handleLengthRatio},trackLength:{x:V._trackLength,y:U._trackLength},snappedHandleOffset:{x:V._snappedHandleOffset,y:U._snappedHandleOffset},isRTL:Be,isRTLNormalized:Ma}}re.update(jn);var oe=Ma,xe=[Ps,Ue,"l"],Se=[Ms,ot,"t"],Me=["+=","-=","*=","/="],we=Y(E)==i.o,Re=we?E.complete:I,Oe,$e={},tr={},yt,br,Rt,kt="end",Et="begin",ct="center",Tt="nearest",ia="always",ut="never",Fr="ifneeded",Ge=s.l,je,ne,et,tt,Pr,za=[Ps,Ms,"xy","yx"],ps=[Et,kt,ct,Tt],wr=[ia,ut,Fr],pa=g[s.hOP]("el"),ma=pa?g.el:g,Mr=ma instanceof p||h?ma instanceof h:!1,Ys=Mr?!1:oo(ma),Rr=function(){yt&&na(!0),br&&na(!1)},dr=Y(Re)!=i.f?t:function(){Rr(),Re()};function Va(he,ve){for(Oe=0;Oe<ve[Ge];Oe++)if(he===ve[Oe])return!0;return!1}function Wr(he,ve){var bt=he?xe:Se;if(ve=Y(ve)==i.s||Y(ve)==i.n?[ve,ve]:ve,f.isA(ve))return he?ve[0]:ve[1];if(Y(ve)==i.o){for(Oe=0;Oe<bt[Ge];Oe++)if(bt[Oe]in ve)return ve[bt[Oe]]}}function it(he,ve){var bt=Y(ve)==i.s,pr,Ne,Zr=he?fr:cr,xt=Zr._currentScroll,Cr=Zr._maxScroll,Ja=" * ",rt,Yr=Be&&he,ya=Yr&&ae.n&&!oe,Wt="replace",Ha=eval,ba;if(bt?(ve[Ge]>2&&(ba=ve.substr(0,2),le(ba,Me)>-1&&(pr=ba)),ve=pr?ve.substr(2):ve,ve=ve[Wt](/min/g,0)[Wt](/</g,0)[Wt](/max/g,(ya?"-":ye)+Da)[Wt](/>/g,(ya?"-":ye)+Da)[Wt](/px/g,ye)[Wt](/%/g,Ja+Cr*(Yr&&ae.n?-1:1)/100)[Wt](/vw/g,Ja+Ke.w)[Wt](/vh/g,Ja+Ke.h),Ne=da(isNaN(ve)?da(Ha(ve),!0).toFixed():ve)):Ne=ve,Ne!==t&&!isNaN(Ne)&&Y(Ne)==i.n){var $a=oe&&Yr,Qr=xt*($a&&ae.n?-1:1),wa=$a&&ae.i,zi=$a&&ae.n;switch(Qr=wa?Cr-Qr:Qr,pr){case"+=":rt=Qr+Ne;break;case"-=":rt=Qr-Ne;break;case"*=":rt=Qr*Ne;break;case"/=":rt=Qr/Ne;break;default:rt=Ne;break}rt=wa?Cr-rt:rt,rt*=zi?-1:1,rt=Yr&&ae.n?c.min(0,c.max(Cr,rt)):c.max(0,c.min(Cr,rt))}return rt===xt?t:rt}function Kt(he,ve,bt,pr){var Ne=[bt,bt],Zr=Y(he),xt,Cr;if(Zr==ve)he=[he,he];else if(Zr==i.a){if(xt=he[Ge],xt>2||xt<1)he=Ne;else for(xt===1&&(he[1]=bt),Oe=0;Oe<xt;Oe++)if(Cr=he[Oe],Y(Cr)!=ve||!Va(Cr,pr)){he=Ne;break}}else Zr==i.o?he=[he[Ps]||bt,he[Ms]||bt]:he=Ne;return{x:he[0],y:he[1]}}function jt(he){var ve=[],bt,pr,Ne=[ot,Bt,mr,Ue];for(Oe=0;Oe<he[Ge]&&Oe!==Ne[Ge];Oe++)bt=he[Oe],pr=Y(bt),pr==i.b?ve.push(bt?da(Pr.css(Mt+Ne[Oe])):0):ve.push(pr==i.n?bt:0);return ve}if(Mr||Ys){var We=pa?g.margin:0,Gr=pa?g.axis:0,Qa=pa?g.scroll:0,ms=pa?g.block:0,Ba=[0,0,0,0],ga=Y(We),Ie;if(Pr=Mr?ma:p(ma),Pr[Ge]>0){ga==i.n||ga==i.b?We=jt([We,We,We,We]):ga==i.a?(Ie=We[Ge],Ie===2?We=jt([We[0],We[1],We[0],We[1]]):Ie>=4?We=jt(We):We=Ba):ga==i.o?We=jt([We[ot],We[Bt],We[mr],We[Ue]]):We=Ba,je=Va(Gr,za)?Gr:"xy",ne=Kt(Qa,i.s,ia,wr),et=Kt(ms,i.s,Et,ps),tt=We;var Ft={l:fr._currentScroll,t:cr._currentScroll},Ua=Br.offset(),Ze=Pr.offset(),Gt={x:ne.x==ut||je==Ms,y:ne.y==ut||je==Ps};Ze[ot]-=tt[0],Ze[Ue]-=tt[3];var Xr={x:c.round(Ze[Ue]-Ua[Ue]+Ft.l),y:c.round(Ze[ot]-Ua[ot]+Ft.t)};if(Be&&(!ae.n&&!ae.i&&(Xr.x=c.round(Ua[Ue]-Ze[Ue]+Ft.l)),ae.n&&oe&&(Xr.x*=-1),ae.i&&oe&&(Xr.x=c.round(Ua[Ue]-Ze[Ue]+(fr._maxScroll-Ft.l)))),et.x!=Et||et.y!=Et||ne.x==Fr||ne.y==Fr||Be){var Qs=Pr[0],Sn=z?Qs[s.bCR]():{width:Qs[s.oW],height:Qs[s.oH]},qr={w:Sn[Ae]+tt[3]+tt[1],h:Sn[nt]+tt[0]+tt[2]},_a=function(he){var ve=Kr(he),bt=ve._w_h,pr=ve._left_top,Ne=ve._x_y,Zr=et[Ne]==(he&&Be?Et:kt),xt=et[Ne]==ct,Cr=et[Ne]==Tt,Ja=ne[Ne]==ut,rt=ne[Ne]==Fr,Yr=Ke[bt],ya=Ua[pr],Wt=qr[bt],Ha=Ze[pr],ba=xt?2:1,$a=Ha+Wt/2,Qr=ya+Yr/2,wa=Wt<=Yr&&Ha>=ya&&Ha+Wt<=ya+Yr;Ja?Gt[Ne]=!0:Gt[Ne]||((Cr||rt)&&(Gt[Ne]=rt?wa:!1,Zr=Wt<Yr?$a>Qr:$a<Qr),Xr[Ne]-=Zr||xt?(Yr/ba-Wt/ba)*(he&&Be&&oe?-1:1):0)};_a(!0),_a(!1)}Gt.y&&delete Xr.y,Gt.x&&delete Xr.x,g=Xr}}$e[Ht]=it(!0,Wr(!0,g)),$e[Nt]=it(!1,Wr(!1,g)),yt=$e[Ht]!==t,br=$e[Nt]!==t,(yt||br)&&(E>0||we)?we?(E.complete=dr,Te.animate($e,E)):(Rt={duration:E,complete:dr},f.isA(O)||p.isPlainObject(O)?(tr[Ht]=O[0]||O.x,tr[Nt]=O[1]||O.y,Rt.specialEasing=tr):Rt.easing=O,Te.animate($e,Rt)):(yt&&Te[Ht]($e[Ht]),br&&Te[Nt]($e[Nt]),Rr())},re.scrollStop=function(g,E,O){return Te.stop(g,E,O),re},re.getElements=function(g){var E={target:Fa,host:Tr,padding:Ga,viewport:cs,content:Ur,scrollbarHorizontal:{scrollbar:os[0],track:_n[0],handle:Ns[0]},scrollbarVertical:{scrollbar:fs[0],track:yn[0],handle:Ks[0]},scrollbarCorner:_r[0]};return Y(g)==i.s?Wi(E,g):E},re.getState=function(g){function E(I){if(!p.isPlainObject(I))return I;var V=yr({},I),U=function(K,ee){V[s.hOP](K)&&(V[ee]=V[K],delete V[K])};return U("w",Ae),U("h",nt),delete V.c,V}var O={destroyed:!!E(Ee),sleeping:!!E(st),autoUpdate:E(!ha),widthAuto:E(Hr),heightAuto:E(Xa),padding:E(oi),overflowAmount:E(As),hideOverflow:E(Gs),hasOverflow:E(ua),contentScrollSize:E(us),viewportSize:E(Ke),hostSize:E(Fs),documentMixed:E(At)};return Y(g)==i.s?Wi(O,g):O},re.ext=function(g){var E,O=K1.split(" "),I=0;if(Y(g)==i.s){if(Oa[s.hOP](g))for(E=yr({},Oa[g]);I<O.length;I++)delete E[O[I]]}else{E={};for(I in Oa)E[I]=yr({},re.ext(I))}return E},re.addExt=function(g,E){var O=d.extension(g),I,V,U,K,ee=!0;if(O){if(Oa[s.hOP](g))return re.ext(g);if(I=O.extensionFactory.call(re,yr({},O.defaultOptions),p,f),I&&(U=I.contract,Y(U)==i.f&&(K=U(e),ee=Y(K)==i.b?K:ee),ee))return Oa[g]=I,V=I.added,Y(V)==i.f&&V(E),re.ext(g)}else console.warn('A extension with the name "'+g+`" isn't registered.`)},re.removeExt=function(g){var E=Oa[g],O;return E?(delete Oa[g],O=E.removed,Y(O)==i.f&&O(),!0):!1};function af(g,E,O){kl=W.defaultOptions,ke=W.nativeScrollbarStyling,P=yr({},W.nativeScrollbarSize),J=yr({},W.nativeScrollbarIsOverlaid),Fe=yr({},W.overlayScrollbarDummySize),ae=yr({},W.rtlScrollBehavior),Di(yr({},kl,E)),S=W.cssCalc,He=W.msie,Ve=W.autoUpdateRecommended,T=W.supportTransition,z=W.supportTransform,X=W.supportPassiveEvents,ie=W.supportResizeObserver,ce=W.supportMutationObserver,W.restrictedMeasuring,ca=p(g.ownerDocument),ws=ca[0],gn=p(ws.defaultView||ws.parentWindow),js=gn[0],bs=Ls(ca,"html"),ls=Ls(bs,"body"),Pe=p(g),Fa=Pe[0],ue=Pe.is("textarea"),Le=Pe.is("body"),At=ws!==r,Qe=ue?Pe.hasClass(hn)&&Pe.parent().hasClass(ri):Pe.hasClass(hr)&&Pe.children(Dr+ei)[s.l];var I,V;return J.x&&J.y&&!Dt.nativeScrollbarsOverlaid.initialize?(Ce=!0,Or("onInitializationWithdrawn"),Qe&&(Ti(!0),Oi(!0),Pi(!0)),Ce=!1,Ee=!0,st=!0,re):(Le&&(I={},I.l=c.max(Pe[Ht](),bs[Ht](),gn[Ht]()),I.t=c.max(Pe[Nt](),bs[Nt](),gn[Nt]()),V=function(){Te.removeAttr(s.ti),Lr(Te,ys,V,!0,!0)}),Ti(),Oi(),Pi(),Q1(),so(!0),so(!1),J1(),j1(),xn(ra,F1),Le&&(Te[Ht](I.l)[Nt](I.t),r.activeElement==g&&cs.focus&&(Te.attr(s.ti,"-1"),cs.focus(),Lr(Te,ys,V,!1,!0))),re.update(St),Ce=!0,Or("onInitialized"),fe(ni,function(U,K){Or(K.n,K.a)}),ni=[],Y(O)==i.s&&(O=[O]),f.isA(O)?fe(O,function(U,K){re.addExt(K)}):p.isPlainObject(O)&&fe(O,function(U,K){re.addExt(U,K)}),setTimeout(function(){T&&!Ee&&Lt(be,ul)},333),re)}return d.valid(af(B,G,H))&&k(B,re),re}return d=e[n]=function(B,G,H){if(arguments[s.l]===0)return this;var W=[],Q=p.isPlainObject(G),Y,le;return B?(B=B[s.l]!=t?B:[B[0]||B],w(),B[s.l]>0&&(Q?p.each(B,function(fe,re){Y=re,Y!==t&&W.push(Z(Y,G,H,_,u))}):p.each(B,function(fe,re){Y=k(re),(G==="!"&&d.valid(Y)||f.type(G)==i.f&&G(re,Y)||G===t)&&W.push(Y)}),le=W[s.l]===1?W[0]:W),le):Q||!G?le:W},d.globals=function(){w();var B=p.extend(!0,{},_);return delete B.msie,B},d.defaultOptions=function(B){w();var G=_.defaultOptions;if(B===t)return p.extend(!0,{},G);_.defaultOptions=p.extend(!0,{},G,L._validate(B,L._template,!0,G)._default)},d.valid=function(B){return B instanceof d&&!B.getState().destroyed},d.extension=function(B,G,H){var W=f.type(B)==i.s,Q=arguments[s.l],Y=0;if(Q<1||!W)return p.extend(!0,{length:C[s.l]},C);if(W){if(f.type(G)==i.f)C.push({name:B,extensionFactory:G,defaultOptions:H});else for(;Y<C[s.l];Y++)if(C[Y].name===B)if(Q>1)C.splice(Y,1);else return p.extend(!0,{},C[Y])}},d}();return h&&h.fn&&(h.fn.overlayScrollbars=function(d,_){var u=this;return h.isPlainObject(d)?(h.each(u,function(){A(this,d,_)}),u):A(u,d)}),A})})(E1);const rc=E1.exports;const k2=a=>{if(!a)return"";const e=["width","height","top","bottom","left","right"],r=["w","h","t","b","l","r"];return Object.keys(a).map(n=>{const i=r.findIndex(l=>l===n);return`${n.replace(n,e[i])}:${a[n]}%`}).join(";")},Zi=(a,e)=>{const t=getComputedStyle(a).getPropertyValue(e).split("px")[0]||0;return parseFloat(t)},E2=(a,e=0,r=0)=>{const t=Zi(a,"--translate-x"),n=Zi(a,"--translate-y"),i=Zi(a,"--scale"),s=t/r*100,l=n/e*100;return{x:s,y:l,scale:i}},x2=({x:a,y:e}={},r=0,t=0)=>{const n=a?a/100*t:null,i=e?e/100*r:null;return{x:n,y:i}},xa=({x:a,y:e,scale:r}={},t=0,n=0)=>{const i=a?a/100*n:"",s=e?e/100*t:"",l=i?`--translate-x:${i}px;`:"",f=s?`--translate-y:${s}px;`:"",c=r?`--scale:${r};`:"";return`${l}${f}${c}`};function ac(a){let e,r,t,n,i,s,l,f,c;return{c(){e=M("svg"),r=M("g"),t=M("circle"),n=M("path"),i=M("defs"),s=M("radialGradient"),l=M("stop"),f=M("stop"),c=M("stop"),this.h()},l(h){e=R(h,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var m=b(e);r=R(m,"g",{transform:!0});var p=b(r);t=R(p,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(t).forEach(v),p.forEach(v),n=R(m,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(m,"defs",{});var k=b(i);s=R(k,"radialGradient",{id:!0,cx:!0,cy:!0,r:!0,gradientUnits:!0,gradientTransform:!0});var A=b(s);l=R(A,"stop",{offset:!0,style:!0}),b(l).forEach(v),f=R(A,"stop",{offset:!0,style:!0}),b(f).forEach(v),c=R(A,"stop",{offset:!0,style:!0}),b(c).forEach(v),A.forEach(v),k.forEach(v),m.forEach(v),this.h()},h(){o(t,"cx","200"),o(t,"cy","200"),o(t,"r","200"),x(t,"fill","url(#_RadialAnemo)"),o(r,"transform","matrix(1,0,0,1,-5.68434e-14,10)"),o(n,"d","M200.023,249.356C201.285,221.689 254.948,199.235 287.064,181.699C338.894,153.398 346.889,76.826 346.889,76.826C346.889,76.826 364.313,105.277 364.313,140.952C364.313,196.476 299.029,208 271.459,211.97C243.89,215.94 206.396,236.893 206.396,270.417C206.396,303.941 244.13,309.656 244.13,309.303C256.481,297.305 269.714,304.892 269.538,305.069C235.674,324.592 201.454,397.068 200.045,400.075L200.045,400.171L200.023,400.123L200,400.171L200,400.075C198.591,397.068 164.371,324.592 130.507,305.069C130.331,304.892 143.564,297.305 155.915,309.303C155.915,309.656 193.649,303.941 193.649,270.417C193.649,236.893 156.155,215.94 128.586,211.97C101.017,208 35.733,196.476 35.733,140.952C35.733,105.277 53.156,76.826 53.156,76.826C53.156,76.826 61.151,153.398 112.982,181.699C145.097,199.235 198.761,221.689 200.023,249.356ZM200.023,327.478C199.597,328.03 193.149,336.189 183.025,338.109C183.025,338.109 199.341,356.361 200.023,373.342C200.704,356.361 217.02,338.109 217.02,338.109C206.896,336.189 200.448,328.03 200.023,327.478ZM200.023,294.038C199.292,305.884 181.001,321.411 169.67,321.411C169.67,321.501 174.368,323.85 179.788,323.85C185.19,323.85 195.746,320.351 200,314.428L200,314.364L200.023,314.396L200.045,314.364L200.045,314.428C204.299,320.351 214.856,323.85 220.257,323.85C225.677,323.85 230.375,321.501 230.375,321.411C219.044,321.411 200.753,305.884 200.023,294.038ZM263.096,280.004C246.299,280.004 231.619,274.781 231.619,259.113C231.619,243.445 243.335,236.81 253.639,236.81C269.589,236.81 297.397,259.96 327.604,259.96C357.811,259.96 392.045,231.658 392.045,184.68C392.045,167.698 386.752,153.803 386.752,153.803C386.752,153.803 360.065,195.046 340.656,206.294C321.247,217.543 306.911,219.969 285.297,219.969C263.683,219.969 220.013,227.027 220.013,267.167C220.013,283.709 232.364,296.06 246.7,296.06C265.666,296.06 263.096,280.342 263.096,280.004ZM136.949,280.004C153.746,280.004 168.426,274.781 168.426,259.113C168.426,243.445 156.711,236.81 146.406,236.81C130.456,236.81 102.648,259.96 72.441,259.96C42.234,259.96 8,231.658 8,184.68C8,167.698 13.293,153.803 13.293,153.803C13.293,153.803 39.98,195.046 59.389,206.294C78.798,217.543 93.134,219.969 114.748,219.969C136.362,219.969 180.032,227.027 180.032,267.167C180.032,283.709 167.681,296.06 153.345,296.06C134.379,296.06 136.949,280.342 136.949,280.004ZM217.303,199.715C217.303,199.715 312.651,128.929 263.975,21.808C263.614,21.447 323.1,37.66 323.1,103.998C325.684,181.537 217.303,199.715 217.303,199.715ZM182.742,199.715C182.742,199.715 87.394,128.929 136.071,21.808C136.431,21.447 76.945,37.66 76.945,103.998C74.361,181.537 182.742,199.715 182.742,199.715Z"),x(n,"fill","rgb(166,243,203)"),o(l,"offset","0"),x(l,"stop-color","rgb(68,183,136)"),x(l,"stop-opacity","1"),o(f,"offset","0.48"),x(f,"stop-color","rgb(68,185,137)"),x(f,"stop-opacity","0.73"),o(c,"offset","1"),x(c,"stop-color","rgb(69,191,141)"),x(c,"stop-opacity","0"),o(s,"id","_RadialAnemo"),o(s,"cx","0"),o(s,"cy","0"),o(s,"r","1"),o(s,"gradientUnits","userSpaceOnUse"),o(s,"gradientTransform","matrix(200,0,0,200,200,200)"),o(e,"viewBox","0 0 400 420"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","2")},m(h,m){q(h,e,m),y(e,r),y(r,t),y(e,n),y(e,i),y(i,s),y(s,l),y(s,f),y(s,c)},p:de,i:de,o:de,d(h){h&&v(e)}}}class sc extends pt{constructor(e){super(),mt(this,e,null,ac,gt,{})}}function nc(a){let e,r,t,n,i,s,l,f,c;return{c(){e=M("svg"),r=M("g"),t=M("circle"),n=M("path"),i=M("defs"),s=M("radialGradient"),l=M("stop"),f=M("stop"),c=M("stop"),this.h()},l(h){e=R(h,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var m=b(e);r=R(m,"g",{transform:!0});var p=b(r);t=R(p,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(t).forEach(v),p.forEach(v),n=R(m,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(m,"defs",{});var k=b(i);s=R(k,"radialGradient",{id:!0,cx:!0,cy:!0,r:!0,gradientUnits:!0,gradientTransform:!0});var A=b(s);l=R(A,"stop",{offset:!0,style:!0}),b(l).forEach(v),f=R(A,"stop",{offset:!0,style:!0}),b(f).forEach(v),c=R(A,"stop",{offset:!0,style:!0}),b(c).forEach(v),A.forEach(v),k.forEach(v),m.forEach(v),this.h()},h(){o(t,"cx","200"),o(t,"cy","200"),o(t,"r","200"),x(t,"fill","url(#_RadialCryo)"),o(r,"transform","matrix(1,0,0,1,0,10)"),o(n,"d","M199.472,229.418C199.6,232.009 202.185,274.232 235.394,318.921L235.882,318.692C240.929,316.336 246.335,314.425 251.995,313.293C251.996,313.292 251.997,313.291 251.998,313.291L252,313.292L251.995,313.293C251.489,313.577 217.449,359.788 199.423,405.219L199,406.292C199,406.292 181,358.292 146,313.292L146.073,313.299C146.831,313.374 153.406,314.114 163.025,318.602L163.422,318.063C197.094,272.252 199.466,229.292 199.466,229.292L199.472,229.418ZM199.091,268.62L199,269.292C194.101,305.222 183.199,323.148 179.366,328.514C185.591,333.196 192.266,339.311 199,347.292L199.103,347.17C200.058,346.043 207.532,337.289 219.036,328.818C215.416,323.848 204.179,305.93 199.183,269.292L199.091,268.62ZM314.684,216.483C314.677,217.064 337.677,269.649 368.008,307.975L368.726,308.878C368.726,308.878 345.896,305.08 313.79,304.958L312.666,304.955C297.631,304.938 280.625,305.735 263.008,308.097L261.685,308.277C261.669,308.306 265.521,302.68 274.797,296.189C251.974,243.693 215.672,219.975 215.672,219.975L215.784,220.033C217.757,221.045 245.706,234.982 288.332,235.001L288.936,235C295.997,234.981 303.454,234.579 311.258,233.674C311.719,227.951 312.775,222.127 314.684,216.483C314.683,216.48 314.684,216.479 314.685,216.479L314.684,216.483ZM84.071,216.081C84.385,216.775 87.032,222.839 87.954,233.414C95.95,234.325 103.587,234.721 110.812,234.729L111.412,234.729C155.202,234.646 183.519,220.317 183.519,220.317L183.413,220.385C181.234,221.792 145.96,245.142 123.862,296.247C128.587,299.508 133.103,303.334 137.037,307.809C137.038,307.81 137.039,307.811 137.04,307.811L137.04,307.813L137.037,307.809C136.718,307.62 113.402,304.959 84.005,304.899L82.913,304.898C66.502,304.901 48.276,305.726 31.141,308.243L30,308.414C30,308.414 62.569,268.825 84.04,216.014L84.071,216.081ZM149.273,239.657L148.645,239.914C122.42,250.635 103.881,252.688 93.897,252.769L93.309,252.772C90.994,252.773 89.173,252.669 87.858,252.551L87.54,252.521C86.598,260.253 84.64,269.092 81.095,278.914C81.204,278.943 93.151,280.919 107.112,287.029L107.234,286.756C109.92,280.824 119.961,262.365 148.737,240.072L149.273,239.657ZM249.544,239.963L250.08,240.378C278.747,262.586 288.821,280.99 291.551,286.993L292.227,286.708C299.259,283.774 307.672,281.162 317.63,279.378C317.601,279.271 313.471,268.286 311.731,253.497L311.65,252.789C310.408,252.921 308.546,253.059 306.08,253.076L305.501,253.078C295.664,253.071 276.914,251.152 250.171,240.22L249.544,239.963ZM203.297,208.258L240,197.414L261,210.414L240,223.414L202.588,212.36L231.258,239.605L230.5,264.292L208.742,252.605L199.5,214.229L190.258,252.605L168.5,264.292L167.742,239.605L195.64,213.093L158.726,224L137.726,211L158.726,198L196.956,209.295L167.467,181.273L168.226,156.586L189.984,168.273L199.413,207.426L208.742,168.687L230.5,157L231.258,181.687L203.297,208.258ZM368.632,113.115C366.72,115.464 335.99,153.611 315.19,204.164L314.685,205.399C314.702,205.428 311.756,199.279 310.772,188C302.997,187.114 295.562,186.715 288.517,186.686L287.914,186.685C245.389,186.638 217.307,200.063 215.319,201.041L215.206,201.097C215.206,201.097 252.054,177.917 274.863,125.167C270.138,121.906 265.622,118.08 261.689,113.604C261.686,113.603 261.685,113.602 261.685,113.601L261.689,113.604C262.011,113.796 285.902,116.521 315.812,116.516L316.909,116.514C333.031,116.475 350.83,115.632 367.585,113.17L368.726,113L368.632,113.115ZM30.147,112.024C32.165,112.349 54.865,115.888 86.06,115.923L87.191,115.922C102.322,115.898 119.393,115.042 137.04,112.601L136.998,112.66C136.554,113.279 132.625,118.604 123.929,124.689C146.04,175.547 180.802,199.395 182.949,200.834L183.054,200.903C183.054,200.903 154.878,186.031 110.996,185.878L110.394,185.877C103.154,185.874 95.495,186.273 87.468,187.204C87.006,192.926 85.951,198.75 84.042,204.395C84.042,204.396 84.042,204.397 84.042,204.398L84.04,204.399L84.042,204.395C84.049,203.809 60.686,150.399 30,112L30.147,112.024ZM200.053,15.139C201.131,17.969 218.802,63.655 252.183,106.945L253,108C253.032,108 246.445,107.493 236.454,102.911L235.975,102.689C202.987,147.267 199.714,189.296 199.542,191.874L199.534,192C199.534,192 197.897,148.838 164.006,102.911L163.606,102.371C158.419,104.832 152.847,106.83 147.005,107.999L147.002,108C147.001,108.001 147,108 147,108L147.005,107.999C147.515,107.712 182.088,60.775 200,15L200.053,15.139ZM291.614,134.385C289.119,140.006 279.221,158.696 249.989,181.342L249.452,181.757L250.08,181.5C276.829,170.565 295.582,168.647 305.417,168.642L305.985,168.644C308.217,168.659 309.955,168.773 311.186,168.893L311.277,168.164C312.251,160.608 314.196,152.016 317.63,142.5C317.523,142.471 305.944,140.556 292.266,134.668L291.614,134.385ZM107.174,133.885C100.007,136.935 91.374,139.659 81.095,141.5C81.125,141.609 85.387,152.943 87.076,168.088L87.374,168.058C88.711,167.926 90.667,167.798 93.225,167.8L93.826,167.803C103.818,167.887 122.349,169.945 148.554,180.658L149.182,180.915L148.645,180.5C120.426,158.638 110.224,140.463 107.308,134.175L107.174,133.885ZM200,74C199.92,74.08 192.236,83.438 179.964,92.474C183.585,97.444 194.821,115.361 199.817,152L199.909,152.672L200,152C204.9,116.07 215.801,98.144 219.634,92.777C213.507,88.169 206.942,82.171 200.316,74.373L200,74Z"),x(n,"fill","rgb(197,251,253)"),o(l,"offset","0"),x(l,"stop-color","rgb(129,207,220)"),x(l,"stop-opacity","1"),o(f,"offset","0.48"),x(f,"stop-color","rgb(129,206,219)"),x(f,"stop-opacity","0.74"),o(c,"offset","1"),x(c,"stop-color","rgb(128,205,218)"),x(c,"stop-opacity","0"),o(s,"id","_RadialCryo"),o(s,"cx","0"),o(s,"cy","0"),o(s,"r","1"),o(s,"gradientUnits","userSpaceOnUse"),o(s,"gradientTransform","matrix(200,0,0,200,200,200)"),o(e,"viewBox","0 0 400 420"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","2")},m(h,m){q(h,e,m),y(e,r),y(r,t),y(e,n),y(e,i),y(i,s),y(s,l),y(s,f),y(s,c)},p:de,i:de,o:de,d(h){h&&v(e)}}}class ic extends pt{constructor(e){super(),mt(this,e,null,nc,gt,{})}}function lc(a){let e,r,t,n,i,s,l,f,c,h,m,p;return{c(){e=M("svg"),r=M("path"),t=M("path"),n=M("path"),i=M("path"),s=M("path"),l=M("path"),f=M("path"),c=M("path"),h=M("path"),m=M("path"),p=M("path"),this.h()},l(k){e=R(k,"svg",{version:!0,xmlns:!0,viewBox:!0});var A=b(e);r=R(A,"path",{class:!0,d:!0}),b(r).forEach(v),t=R(A,"path",{class:!0,d:!0}),b(t).forEach(v),n=R(A,"path",{class:!0,d:!0}),b(n).forEach(v),i=R(A,"path",{class:!0,d:!0}),b(i).forEach(v),s=R(A,"path",{class:!0,d:!0}),b(s).forEach(v),l=R(A,"path",{class:!0,d:!0}),b(l).forEach(v),f=R(A,"path",{class:!0,d:!0}),b(f).forEach(v),c=R(A,"path",{class:!0,d:!0}),b(c).forEach(v),h=R(A,"path",{class:!0,d:!0}),b(h).forEach(v),m=R(A,"path",{class:!0,d:!0}),b(m).forEach(v),p=R(A,"path",{class:!0,d:!0}),b(p).forEach(v),A.forEach(v),this.h()},h(){o(r,"class","a svelte-he5183"),o(r,"d","m158.2 56.4l-15.1 17.7-15.2-17.7c-1.7-1.9-3-4.1-4-6.4-1-2.4-1.6-4.9-1.8-7.4-0.2-2.6 0.1-5.1 0.7-7.6 0.6-2.5 1.6-4.8 3-7l17.3-27.4 17.2 27.4c1.4 2.2 2.4 4.5 3 7 0.6 2.5 0.8 5 0.7 7.6-0.2 2.5-0.8 5-1.8 7.4-1 2.3-2.3 4.5-4 6.4z"),o(t,"class","a svelte-he5183"),o(t,"d","m254.1 150.7l-0.8 0.6 0.6 0.5c-6.9 39.2-38.2 56.4-56 64.9-20.1 9.7-54.8 29.5-54.8 52.8 0-23.3-34.8-43.1-54.9-52.8-17.8-8.5-49.1-25.7-56-64.9l0.6-0.5-0.8-0.6q-0.3-1.9-0.5-3.8-0.3-1.9-0.4-3.8-0.2-1.9-0.2-3.9-0.1-1.9-0.1-3.8c0-51 40.5-73.4 65.9-73.4 19.1 0 33 11.4 38.5 17q0.7 0.6 1 1.4 0.4 0.8 0.5 1.7 0.1 0.9-0.1 1.7-0.2 0.8-0.7 1.6l-4.1 6.2q-0.3 0.5-0.8 0.8-0.5 0.3-1.1 0.3-0.6 0-1.1-0.2-0.5-0.2-0.9-0.7c-5.3-6.7-21.2-22.1-48.9-11.8-20.7 7.8-33.7 27-33.7 50 0 23 14.2 56.4 51.4 70.2 37.2 13.8 46.4 36.1 46.4 36.1 0 0 9.1-22.3 46.3-36.1 37.2-13.8 51.4-47.2 51.4-70.2 0-23-13-42.2-33.7-49.9-27.7-10.4-43.6 5.1-48.9 11.7q-0.3 0.5-0.9 0.7-0.5 0.3-1.1 0.3-0.6-0.1-1.1-0.4-0.5-0.3-0.8-0.7l-4.1-6.3q-0.5-0.7-0.7-1.6-0.2-0.8-0.1-1.7 0.1-0.8 0.5-1.6 0.4-0.8 1-1.4c5.6-5.7 19.4-17.1 38.6-17.1 25.3 0 65.8 22.4 65.8 73.5q0 1.9 0 3.8-0.1 1.9-0.3 3.8-0.1 1.9-0.3 3.8-0.3 1.9-0.6 3.8z"),o(n,"class","a svelte-he5183"),o(n,"d","m32.8 151.3l-0.6 0.5q-0.2-0.5-0.2-1.1z"),o(i,"class","a svelte-he5183"),o(i,"d","m91 161.6c-4.9-4-11.3-3.7-17.6-2.8-6.4 0.8-11 5.6-11 5.6 4.5-9.2 12.3-11.9 18.6-12.5-10-11.3-15.9-24.6-9.4-38.3q0.8-1.9 2-3.6 1.1-1.8 2.5-3.3 1.4-1.5 3.1-2.8 1.6-1.3 3.4-2.3c8-4.5 22.4-7.8 39.5 9.9 0 0-20-6.7-27.2 9.9-7.2 16.7 0.2 35.2 31.9 63 0 0-19.5-9-35.8-22.8z"),o(s,"class","a svelte-he5183"),o(s,"d","m48.5 83.4l-13.2 1.8c-2.1 0.3-4.3 0.2-6.4-0.3-2.2-0.4-4.2-1.3-6-2.5-1.8-1.2-3.4-2.7-4.7-4.4-1.3-1.8-2.3-3.8-2.9-5.9l-4.7-16.8 20.3 0.9c2 0 3.9 0.5 5.7 1.2 1.8 0.8 3.5 1.8 5 3.1 1.4 1.4 2.6 2.9 3.5 4.7 0.9 1.7 1.5 3.6 1.8 5.5z"),o(l,"class","a svelte-he5183"),o(l,"d","m32.8 151.3l-0.6 0.5-7.9 6.8q-1.5 1.3-3.3 2.1-1.9 0.7-3.8 0.9-2 0.1-3.9-0.4-1.9-0.5-3.5-1.6l-10.1-6.6 10.5-7.7q1.6-1.2 3.4-1.8 1.8-0.6 3.7-0.6 2 0 3.8 0.6 1.8 0.6 3.4 1.8l7.5 5.4z"),o(f,"class","a svelte-he5183"),o(f,"d","m254.1 150.7q-0.1 0.6-0.2 1.1l-0.6-0.5z"),o(c,"class","a svelte-he5183"),o(c,"d","m159.3 184.4c31.7-27.8 39-46.3 31.9-63-7.2-16.6-27.2-10-27.2-10 17.1-17.7 31.5-14.3 39.5-9.9q1.8 1.1 3.4 2.4 1.6 1.3 3 2.8 1.4 1.5 2.6 3.2 1.1 1.8 2 3.6c6.5 13.8 0.6 27.1-9.4 38.4 6.3 0.5 14.1 3.2 18.6 12.4 0 0-4.7-4.7-11-5.6-6.4-0.8-12.7-1.1-17.6 2.8-16.3 13.9-35.8 22.9-35.8 22.9z"),o(h,"class","a svelte-he5183"),o(h,"d","m239.2 70.8c0.3-2 0.9-3.9 1.8-5.6 0.9-1.8 2.1-3.3 3.5-4.7 1.5-1.3 3.1-2.3 5-3.1 1.8-0.7 3.7-1.2 5.7-1.2l20.3-0.9-4.7 16.8c-0.6 2.1-1.6 4.1-2.9 5.8-1.3 1.8-2.9 3.3-4.7 4.5-1.8 1.2-3.8 2-6 2.5-2.1 0.5-4.3 0.6-6.4 0.3l-13.2-1.8z"),o(m,"class","a svelte-he5183"),o(m,"d","m286.3 153l-10 6.6q-1.6 1.1-3.5 1.6-1.9 0.5-3.9 0.4-2-0.2-3.8-0.9-1.8-0.7-3.3-2l-7.9-6.9-0.6-0.5 0.8-0.6 7.5-5.4q1.5-1.2 3.3-1.8 1.9-0.6 3.8-0.6 1.9 0 3.7 0.6 1.9 0.6 3.4 1.8z"),o(p,"class","b svelte-he5183"),o(p,"d","m-14-22h314.1v314.1h-314.1z"),o(e,"version","1.2"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"viewBox","0 0 287 268")},m(k,A){q(k,e,A),y(e,r),y(e,t),y(e,n),y(e,i),y(e,s),y(e,l),y(e,f),y(e,c),y(e,h),y(e,m),y(e,p)},p:de,i:de,o:de,d(k){k&&v(e)}}}class oc extends pt{constructor(e){super(),mt(this,e,null,lc,gt,{})}}function fc(a){let e,r,t,n,i,s,l,f,c;return{c(){e=M("svg"),r=M("g"),t=M("circle"),n=M("path"),i=M("defs"),s=M("radialGradient"),l=M("stop"),f=M("stop"),c=M("stop"),this.h()},l(h){e=R(h,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var m=b(e);r=R(m,"g",{transform:!0});var p=b(r);t=R(p,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(t).forEach(v),p.forEach(v),n=R(m,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(m,"defs",{});var k=b(i);s=R(k,"radialGradient",{id:!0,cx:!0,cy:!0,r:!0,gradientUnits:!0,gradientTransform:!0});var A=b(s);l=R(A,"stop",{offset:!0,style:!0}),b(l).forEach(v),f=R(A,"stop",{offset:!0,style:!0}),b(f).forEach(v),c=R(A,"stop",{offset:!0,style:!0}),b(c).forEach(v),A.forEach(v),k.forEach(v),m.forEach(v),this.h()},h(){o(t,"cx","200"),o(t,"cy","200"),o(t,"r","200"),x(t,"fill","url(#_RadialElectro)"),o(r,"transform","matrix(1,0,0,1,0.5,10.915)"),o(n,"d","M194.787,192.333C188.262,188.035 181.657,181.753 176.358,172.574C174.261,168.942 172.763,165.383 171.774,161.936C171.27,159.158 171,156.182 171,153C171,141.784 174.066,133.949 178.481,128.479C180.861,125.649 183.561,123.381 186.303,121.799C194.691,116.956 201.706,117.239 209.796,115.988L210,116C210,116 209.931,115.995 209.797,115.988C210.059,115.947 210.323,115.905 210.587,115.861C210.639,115.831 158.035,68.837 95.681,104.837C68.834,120.337 50.317,140.265 50.317,140.265C50.317,140.265 48.21,112.615 81.341,60C47.981,79.261 -32.672,188.524 35.679,306.911C35.679,306.911 19.588,203.04 80.21,168.04C140.831,133.04 179.662,190.296 179.662,190.296C179.662,190.296 187.318,204.66 188.697,221.705C188.721,230.311 186.816,240.478 180.701,251.069C177.506,256.604 173.76,260.851 169.745,264.014C168.781,264.66 167.776,265.285 166.726,265.892C161.405,268.964 156.503,270.732 152.019,271.523C144.304,272.509 136.988,270.865 131.756,267.844C123.514,263.086 120.221,257.001 115.244,250.738L115.183,250.617C115.183,250.617 115.203,250.657 115.242,250.735C114.99,250.418 114.733,250.1 114.472,249.782C114.42,249.752 100.024,318.806 162.378,354.806C189.225,370.306 215.742,376.378 215.742,376.378C215.742,376.378 192.849,392.028 130.718,389.643C164.078,408.904 299.029,424.119 367.38,305.732C367.38,305.732 285.471,371.603 224.849,336.603C164.227,301.603 194.397,239.347 194.397,239.347C194.397,239.347 202.025,227.112 214.656,217.57C222.394,212.435 233.1,208 247,208C252.203,208 256.849,208.743 260.96,210.042C262.729,210.806 264.521,211.706 266.333,212.751C286.892,224.621 287.466,240.815 284.535,252.017C283.477,255.584 281.983,258.795 280.527,262.218C279.828,263.528 279.267,264.425 279.017,264.812L278.875,265.026C278.875,265.026 278.926,264.953 279.017,264.812L280.167,263.07C279.769,264.024 279.376,264.996 279,266C279,266.06 346,244 346,172C346,141 338,115 338,115C338,115 363,127 392,182C392,143.479 337.702,19 201,19C201,19 299,57 299,127C299,197 230,202 230,202C220.742,202 211.172,201.362 194.787,192.333Z"),x(n,"fill","rgb(222,186,255)"),o(l,"offset","0"),x(l,"stop-color","rgb(194,121,224)"),x(l,"stop-opacity","1"),o(f,"offset","0.48"),x(f,"stop-color","rgb(195,121,225)"),x(f,"stop-opacity","0.73"),o(c,"offset","1"),x(c,"stop-color","rgb(196,122,227)"),x(c,"stop-opacity","0"),o(s,"id","_RadialElectro"),o(s,"cx","0"),o(s,"cy","0"),o(s,"r","1"),o(s,"gradientUnits","userSpaceOnUse"),o(s,"gradientTransform","matrix(200,0,0,200,200,199.085)"),o(e,"viewBox","0 0 400 420"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","2")},m(h,m){q(h,e,m),y(e,r),y(r,t),y(e,n),y(e,i),y(i,s),y(s,l),y(s,f),y(s,c)},p:de,i:de,o:de,d(h){h&&v(e)}}}class cc extends pt{constructor(e){super(),mt(this,e,null,fc,gt,{})}}function uc(a){let e,r,t,n,i,s,l,f,c;return{c(){e=M("svg"),r=M("g"),t=M("circle"),n=M("path"),i=M("defs"),s=M("radialGradient"),l=M("stop"),f=M("stop"),c=M("stop"),this.h()},l(h){e=R(h,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var m=b(e);r=R(m,"g",{transform:!0});var p=b(r);t=R(p,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(t).forEach(v),p.forEach(v),n=R(m,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(m,"defs",{});var k=b(i);s=R(k,"radialGradient",{id:!0,cx:!0,cy:!0,r:!0,gradientUnits:!0,gradientTransform:!0});var A=b(s);l=R(A,"stop",{offset:!0,style:!0}),b(l).forEach(v),f=R(A,"stop",{offset:!0,style:!0}),b(f).forEach(v),c=R(A,"stop",{offset:!0,style:!0}),b(c).forEach(v),A.forEach(v),k.forEach(v),m.forEach(v),this.h()},h(){o(t,"cx","200"),o(t,"cy","200"),o(t,"r","200"),x(t,"fill","url(#_RadialGeo)"),o(r,"transform","matrix(1,0,0,1,0,10)"),o(n,"d","M200.197,412.606C200.197,412.606 81.644,332.209 10.517,210.212C10.409,210.027 30.803,174.081 51.742,155.411C51.687,155.411 85.883,266.425 200.72,393.589C200.562,393.589 281.709,306.03 286.765,259.194C285.983,259.194 200.72,331.358 200.72,331.358C200.72,331.358 145.359,276.973 121.128,225.819C121.128,225.819 141.114,200.187 189.195,166.001C189.195,166.001 201.104,175.926 205.074,184.969L158.758,230.182C158.758,230.182 169.552,259.697 201.699,285.658C201.987,285.37 254.123,256.933 298.579,203.862C299.268,203.862 321.323,238.668 330.972,285.536C330.628,285.536 276.707,358.322 200.197,412.606ZM200.523,8.008C200.523,8.008 319.076,88.405 390.203,210.402C390.31,210.587 369.916,246.532 348.978,265.202C349.033,265.202 314.837,154.188 200,27.024C200.158,27.024 119.011,114.583 113.955,161.419C114.737,161.419 200,89.256 200,89.256C200,89.256 255.361,143.64 279.592,194.794C279.592,194.794 259.606,220.426 211.525,254.612C211.525,254.612 199.615,244.687 195.645,235.645L241.962,190.431C241.962,190.431 231.168,160.916 199.021,134.955C198.732,135.244 146.596,163.68 102.141,216.751C101.452,216.751 79.397,181.945 69.747,135.077C70.092,135.077 124.012,62.291 200.523,8.008Z"),x(n,"fill","rgb(243,214,97)"),o(l,"offset","0"),x(l,"stop-color","rgb(207,137,19)"),x(l,"stop-opacity","1"),o(f,"offset","0.48"),x(f,"stop-color","rgb(206,137,19)"),x(f,"stop-opacity","0.73"),o(c,"offset","1"),x(c,"stop-color","rgb(205,136,19)"),x(c,"stop-opacity","0"),o(s,"id","_RadialGeo"),o(s,"cx","0"),o(s,"cy","0"),o(s,"r","1"),o(s,"gradientUnits","userSpaceOnUse"),o(s,"gradientTransform","matrix(200,0,0,200,200,200)"),o(e,"viewBox","0 0 400 420"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","2")},m(h,m){q(h,e,m),y(e,r),y(r,t),y(e,n),y(e,i),y(i,s),y(s,l),y(s,f),y(s,c)},p:de,i:de,o:de,d(h){h&&v(e)}}}class hc extends pt{constructor(e){super(),mt(this,e,null,uc,gt,{})}}function vc(a){let e,r,t,n,i,s,l,f,c;return{c(){e=M("svg"),r=M("g"),t=M("circle"),n=M("path"),i=M("defs"),s=M("radialGradient"),l=M("stop"),f=M("stop"),c=M("stop"),this.h()},l(h){e=R(h,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var m=b(e);r=R(m,"g",{transform:!0});var p=b(r);t=R(p,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(t).forEach(v),p.forEach(v),n=R(m,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(m,"defs",{});var k=b(i);s=R(k,"radialGradient",{id:!0,cx:!0,cy:!0,r:!0,gradientUnits:!0,gradientTransform:!0});var A=b(s);l=R(A,"stop",{offset:!0,style:!0}),b(l).forEach(v),f=R(A,"stop",{offset:!0,style:!0}),b(f).forEach(v),c=R(A,"stop",{offset:!0,style:!0}),b(c).forEach(v),A.forEach(v),k.forEach(v),m.forEach(v),this.h()},h(){o(t,"cx","200"),o(t,"cy","200"),o(t,"r","200"),x(t,"fill","url(#_RadialHydro)"),o(r,"transform","matrix(1,0,0,1,0,10)"),o(n,"d","M44.747,121.48C50.257,112.511 101.866,33 200,33C304,33 377,117 377,210C377,303 302,387 200,387C124.277,387 95,343 95,343C95,343 141,371 200,371C259,371 296,318 296,274C296,230 254.64,181 200,181C184.467,181 169.115,188 162.5,188C148.978,188 138,177.022 138,163.5C138,153.346 144.19,144.627 153,140.913L153.063,140.886C153.264,140.802 171.051,132 202,132C260.878,132 324,183.305 324,253C324,338.409 246,369 246,369C246,369 343,337 343,238C343,139 262,90 200,90C133.257,90 92.818,138.996 85.764,148.267C85.414,148.781 79.037,159 65.5,159C51.978,159 41,148.022 41,134.5C41,130.059 42.184,125.893 44.253,122.3L44.747,121.48ZM213.035,289.278C211.408,282.792 206.389,272 191,272C173.411,272 158,288 158,308C158,328 177,350 205,350C233,350 254,327 254,327C254,327 238,358 200,358C162,358 136,330 136,295C136,260 165.951,231.525 199.475,231.525C233,231.525 259,259 259,286L258.915,286.015C258.971,286.669 259,287.331 259,288C259,300.694 248.694,311 236,311C225.402,311 216.468,303.816 213.807,294.056L213.807,294.056C213.389,292.521 213.125,290.923 213.035,289.278ZM79,274C88.383,274 96,281.617 96,291C96,300.383 88.383,308 79,308C69.617,308 62,300.383 62,291C62,281.617 69.617,274 79,274ZM46.5,189C60.022,189 71,199.978 71,213.5C71,227.022 60.022,238 46.5,238C32.978,238 22,227.022 22,213.5C22,199.978 32.978,189 46.5,189Z"),x(n,"fill","rgb(7,229,254)"),o(l,"offset","0"),x(l,"stop-color","rgb(8,158,222)"),x(l,"stop-opacity","1"),o(f,"offset","0.48"),x(f,"stop-color","rgb(8,158,223)"),x(f,"stop-opacity","0.73"),o(c,"offset","1"),x(c,"stop-color","rgb(8,159,224)"),x(c,"stop-opacity","0"),o(s,"id","_RadialHydro"),o(s,"cx","0"),o(s,"cy","0"),o(s,"r","1"),o(s,"gradientUnits","userSpaceOnUse"),o(s,"gradientTransform","matrix(200,0,0,200,200,200)"),o(e,"viewBox","0 0 400 420"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","2")},m(h,m){q(h,e,m),y(e,r),y(r,t),y(e,n),y(e,i),y(i,s),y(s,l),y(s,f),y(s,c)},p:de,i:de,o:de,d(h){h&&v(e)}}}class dc extends pt{constructor(e){super(),mt(this,e,null,vc,gt,{})}}function pc(a){let e,r,t,n,i,s,l,f,c,h;return{c(){e=M("svg"),r=M("g"),t=M("circle"),n=M("path"),i=M("path"),s=M("defs"),l=M("radialGradient"),f=M("stop"),c=M("stop"),h=M("stop"),this.h()},l(m){e=R(m,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var p=b(e);r=R(p,"g",{transform:!0});var k=b(r);t=R(k,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(t).forEach(v),k.forEach(v),n=R(p,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(p,"path",{d:!0,style:!0}),b(i).forEach(v),s=R(p,"defs",{});var A=b(s);l=R(A,"radialGradient",{id:!0,cx:!0,cy:!0,r:!0,gradientUnits:!0,gradientTransform:!0});var d=b(l);f=R(d,"stop",{offset:!0,style:!0}),b(f).forEach(v),c=R(d,"stop",{offset:!0,style:!0}),b(c).forEach(v),h=R(d,"stop",{offset:!0,style:!0}),b(h).forEach(v),d.forEach(v),A.forEach(v),p.forEach(v),this.h()},h(){o(t,"cx","199.5"),o(t,"cy","199.5"),o(t,"r","199.5"),x(t,"fill","url(#_RadialPyro)"),o(r,"transform","matrix(1,0,0,1,0,11)"),o(n,"d","M196,22C196,22 231,59 231,83C231,107 189,116 189,153C189,172.638 212,186 212,186C212,186 198,174 198,158C198,142 210,122 240,103C240.207,103.207 232,128.445 232,144C232,184.962 271,214 271,214C271,196.725 249,189.293 249,164C249,138.707 269,121 269,121C269,121 271,155 296,177C321,199 355,229 355,264C355,299 316,324 281,344C234.697,368.135 203,399 203,399C203,399 151,358 121,342C91,326 45,303 45,271C45,239 70,207 95,175C120,143 128,124 128,124C128,124 116,171 203,198C203.138,198.138 118,200 118,272C118,302.646 137,317 137,317C137,317 82,293 82,254C82,222.237 103,203 103,203C103,203 65,222 65,258C65,294 91,308 132,329C173,350 203,372 203,372C203,372 263,328 295,315C327,302 342,275 342,262C342,231.08 306,210.5 306,210.5C306,210.5 317,235 317,256C317,277 293,338 209,338C179.256,338 155,325 145,313C135,301 137,291 137,291C137,291 138,263 169,263C177.724,263 184,266 184,266C184,266 164,275 164,298C164,321 189,330 209,330C229,330 281,319 281,270C281,221 231,203 209,194C187,185 146,171 146,132C146,93 196,72 196,22Z"),x(n,"fill","rgb(253,169,113)"),o(i,"d","M154,252C154,252 188,232 212,256C236,280 217,304 216,305C215,306 256,295 256,266C256,237 230,218 200,218C170,218 154,246 154,252Z"),x(i,"fill","rgb(253,169,113)"),o(f,"offset","0"),x(f,"stop-color","rgb(212,84,22)"),x(f,"stop-opacity","1"),o(c,"offset","0.48"),x(c,"stop-color","rgb(213,84,22)"),x(c,"stop-opacity","0.73"),o(h,"offset","1"),x(h,"stop-color","rgb(214,85,22)"),x(h,"stop-opacity","0"),o(l,"id","_RadialPyro"),o(l,"cx","0"),o(l,"cy","0"),o(l,"r","1"),o(l,"gradientUnits","userSpaceOnUse"),o(l,"gradientTransform","matrix(200,0,0,200,200,199)"),o(e,"viewBox","0 0 400 420"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","2")},m(m,p){q(m,e,p),y(e,r),y(r,t),y(e,n),y(e,i),y(e,s),y(s,l),y(l,f),y(l,c),y(l,h)},p:de,i:de,o:de,d(m){m&&v(e)}}}class mc extends pt{constructor(e){super(),mt(this,e,null,pc,gt,{})}}function gc(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A,d,_;return{c(){e=M("svg"),r=M("g"),t=M("g"),n=M("use"),i=M("g"),s=M("g"),l=M("use"),f=M("g"),c=M("g"),h=M("use"),m=M("g"),p=M("path"),k=M("defs"),A=M("image"),d=M("image"),_=M("image"),this.h()},l(u){e=R(u,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,style:!0});var C=b(e);r=R(C,"g",{transform:!0});var L=b(r);t=R(L,"g",{transform:!0});var w=b(t);n=R(w,"use",{"xlink:href":!0,x:!0,y:!0,width:!0,height:!0,transform:!0}),b(n).forEach(v),w.forEach(v),L.forEach(v),i=R(C,"g",{transform:!0});var D=b(i);s=R(D,"g",{transform:!0});var N=b(s);l=R(N,"use",{"xlink:href":!0,x:!0,y:!0,width:!0,height:!0,transform:!0}),b(l).forEach(v),N.forEach(v),D.forEach(v),f=R(C,"g",{transform:!0});var Z=b(f);c=R(Z,"g",{transform:!0});var B=b(c);h=R(B,"use",{"xlink:href":!0,x:!0,y:!0,width:!0,height:!0,transform:!0}),b(h).forEach(v),B.forEach(v),Z.forEach(v),m=R(C,"g",{transform:!0});var G=b(m);p=R(G,"path",{d:!0,style:!0}),b(p).forEach(v),G.forEach(v),k=R(C,"defs",{});var H=b(k);A=R(H,"image",{id:!0,width:!0,height:!0,"xlink:href":!0}),b(A).forEach(v),d=R(H,"image",{id:!0,width:!0,height:!0,"xlink:href":!0}),b(d).forEach(v),_=R(H,"image",{id:!0,width:!0,height:!0,"xlink:href":!0}),b(_).forEach(v),H.forEach(v),C.forEach(v),this.h()},h(){$r(n,"xlink:href","#_ImageBow1"),o(n,"x","20.069"),o(n,"y","20.019"),o(n,"width","45.409px"),o(n,"height","45.382px"),o(n,"transform","matrix(0.987158,0,0,0.986573,0,0)"),o(t,"transform","matrix(1.05885,-0,-0,1.05885,-4.52931,0.497767)"),o(r,"transform","matrix(0.94442,0,0,0.94442,4.27757,-0.4701)"),$r(l,"xlink:href","#_ImageBow2"),o(l,"x","39.941"),o(l,"y","60.407"),o(l,"width","68.523px"),o(l,"height","48.243px"),o(l,"transform","matrix(0.993092,0,0,0.984541,0,0)"),o(s,"transform","matrix(1.05885,-0,-0,1.05885,-4.52931,0.497767)"),o(i,"transform","matrix(0.94442,0,0,0.94442,4.27757,-0.4701)"),$r(h,"xlink:href","#_ImageBow3"),o(h,"x","72.762"),o(h,"y","44.826"),o(h,"width","17.055px"),o(h,"height","17.055px"),o(h,"transform","matrix(0.947507,0,0,0.947507,0,0)"),o(c,"transform","matrix(1.04767,-0,-0,1.04767,-4.61708,0.801263)"),o(f,"transform","matrix(0.954497,0,0,0.954497,4.40699,-0.764803)"),o(p,"d","M4,64L7,67L10,64L7,61L10,58L12,60L19.942,60L22,58L30,66L100,66L102,64L100,62L105,57L128,68.934L105,80.868L100,75.868L102,73.868L100,71.868L30,71.868L22,79.868L20,78L12,78L10,80L7,77L10,73.868L7,70.868L4,73.868L-1,68.934L4,64Z"),x(p,"fill","rgb(255,253,255)"),x(p,"stroke","rgb(125,129,134)"),x(p,"stroke-width","1.06px"),o(m,"transform","matrix(0.667805,-0.667805,0.667805,0.667805,-24.1918,61.0036)"),o(A,"id","_ImageBow1"),o(A,"width","46px"),o(A,"height","46px"),$r(A,"xlink:href","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAuCAYAAABXuSs3AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAFJUlEQVRogdWYS2wbRRjH/9/MxGsndRLbaZun0qRNQ+IEyVQp9ElLERceKvTAAYTgUvXCBQmkWtpaG6urilIOcOCCxAUJhITgiEQrHgda0VatkFLaRGrjtKlKorzIw7G9M8OhSaidNLbzsNPfbXd25vvp8+zs54+wzpiWLQA0AtjJOW9jjNUBCCitKpRUZQBo7lGttf40Ggn/lMu6Yh1ECUAH5/wIMQpJR9a6XK5Upa8Sfr/f4/F4YLgNuA03XIYLBIKGxs2/b6pYfyyQa5w1EZ+T7eScv6i1PmQYhqirrzM2b97MKioqIEpE1jic87xirkrctGw3ER0jojcNw+D1DfXu2rpa5vV6V7NsTqxI3LRsg4iOEtE7VVVVvLWt1aioqFhrt2XJS9y0bBcRvUpE7/oDftHW3uYutPA8OYublt3JOOv2VfrcbcE2d2Vl5Xp6ZSWruGnZxBh7i4jeDu0KGdXV1YXwysqy4qZll3PBrVJP6VNdz3YZpaWlhfLKymPFTcsOMsZONzQ0lLYH20sYY4X0ysqS4pHomTeI6HjomZBRXbMxtkYmi8RNy36Jc358/8H9RllZWTGcciLt9zctu4tz/sHefXs3tDTwSMZNy25ljEV3P7fb8Jav/5dvpcwVbS+IuYs6xti50K6QEQjkXOcUBc75CSnlMWZato9z/ll7sN1TU1NTbK9lMS17DzF6BQAYF/xcU3NT+bambRvrvMvAtOwtjDGzq6vLAAAhHdnYsrOl6NJEBMbYa9322T1LjSulana07HD5A34AWb6cWmuMjIxgYnwCo6Oj8Xg8rlYj5/f7RUdnh7HUWHNzM/P7/VsAbFlqnHOOQNX/799jxePxOC7/eXl2ZnpmXGt9VUrZA+AfAHqF3vWpZOpER2fHkoOG28DW6q1ZF9H6YfglxcfHxnHxj4tJrfU3Sqmvo5HwqjINAKZlT612jUdZJC6lxJUrVxJSyk+ikfD5tQy2lix6Kft6+xwn5fwF4EIRfHImTVwrjf47/cpxnM+jkfBK93JBSBMfHh4GgAfRSPhucXRyJ018aGjIcRxnQ2+RedLEJycnkwAGiuSSF2ni09PTADBYHJX8WBDXWiMxmzDwhIgvnOPJRBJElOo+dXKmmEK5spBxpRWIyCmmTD6kn+NaF71KzJUFUVpoUz8ZPDEZzmTNG/vLkUqlSvp6+/KawxhD47ZGiIwWeyHFB6WU3/Xe6s0rJhG9HAgENlX60pus+XRrmzjnR+evpZQ/RCPh/lznRyPhGQBf5vr8PN322f0ANmXez1lcCPF+TW1NyOv1YmBgwJmanLoFoD9fkbUiJ3HTsquUUp3BYBCiRODe3XtJAEPr7AYA0Fqrnp6ehMvlevgv7GGx7VmuW1sKwE9Ee4jove07titRIiClxOTkpAHgRiHEHcc5MzY6Vp9x+1/BOY/Pzs6Wcc6hlPJYpz/+Xkrp1Vpzl8uVLC8v18GOoGe+LTc2NgYu+GAk/FFBSoNoJHwDSyRJENGl+4P3D7fsbGH7DuwjIYTfbbhR4ioBAHfmhN5bvQkl1c8FcF4W5jjOj7dv304lZhPw+Xzwer3z0ouI9cf0xPjEsFLq2wJ7LoL//uuFoYOHjhiD9wZba+tqReZBP8/U1BSuXr6alFJ+GI2ERwrsuQgOAL/9cv7agecP81gs1ialZIILIiIopTAxMYHYnZi8fu26A+CL7lMnLxXZGQDSKyvTsls5568T0dNKKZ/WWnDBH2ilb0gpv4pGwg+KJZrJf37ysujOFyKWAAAAAElFTkSuQmCC"),o(d,"id","_ImageBow2"),o(d,"width","69px"),o(d,"height","49px"),$r(d,"xlink:href","data:image/png;base64,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"),o(_,"id","_ImageBow3"),o(_,"width","18px"),o(_,"height","18px"),$r(_,"xlink:href","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAW0lEQVQ4je3UsQ2AMBBDURs5XcYKa1HQMBBlbqx0RDoKlAVyElV+71eax3nd7p4RiGSTu+eyFyhpCulPh1XLAgAlQZqDRltovaAFLeh3SMB3BbONrUg2qxY+theCJRmnxjtu3QAAAABJRU5ErkJggg=="),o(e,"viewBox","0 0 128 128"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linecap","round"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","1.5")},m(u,C){q(u,e,C),y(e,r),y(r,t),y(t,n),y(e,i),y(i,s),y(s,l),y(e,f),y(f,c),y(c,h),y(e,m),y(m,p),y(e,k),y(k,A),y(k,d),y(k,_)},p:de,i:de,o:de,d(u){u&&v(e)}}}class _c extends pt{constructor(e){super(),mt(this,e,null,gc,gt,{})}}function yc(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A,d,_,u,C;return{c(){e=M("svg"),r=M("g"),t=M("g"),n=M("circle"),i=M("g"),s=M("g"),l=M("use"),f=M("g"),c=M("path"),h=M("g"),m=M("g"),p=M("path"),k=M("g"),A=M("path"),d=M("g"),_=M("path"),u=M("defs"),C=M("image"),this.h()},l(L){e=R(L,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var w=b(e);r=R(w,"g",{});var D=b(r);t=R(D,"g",{transform:!0});var N=b(t);n=R(N,"circle",{cx:!0,cy:!0,r:!0,style:!0}),b(n).forEach(v),N.forEach(v),i=R(D,"g",{transform:!0});var Z=b(i);s=R(Z,"g",{transform:!0});var B=b(s);l=R(B,"use",{"xlink:href":!0,x:!0,y:!0,width:!0,height:!0,transform:!0}),b(l).forEach(v),B.forEach(v),Z.forEach(v),f=R(D,"g",{transform:!0});var G=b(f);c=R(G,"path",{d:!0,style:!0}),b(c).forEach(v),G.forEach(v),h=R(D,"g",{transform:!0});var H=b(h);m=R(H,"g",{transform:!0});var W=b(m);p=R(W,"path",{d:!0,style:!0}),b(p).forEach(v),W.forEach(v),k=R(H,"g",{transform:!0});var Q=b(k);A=R(Q,"path",{d:!0,style:!0}),b(A).forEach(v),Q.forEach(v),d=R(H,"g",{transform:!0});var Y=b(d);_=R(Y,"path",{d:!0,style:!0}),b(_).forEach(v),Y.forEach(v),H.forEach(v),u=R(D,"defs",{});var le=b(u);C=R(le,"image",{id:!0,width:!0,height:!0,"xlink:href":!0}),b(C).forEach(v),le.forEach(v),D.forEach(v),w.forEach(v),this.h()},h(){o(n,"cx","70.545"),o(n,"cy","64.661"),o(n,"r","9.273"),x(n,"fill","rgb(201,207,210)"),x(n,"fill-opacity","0.75"),o(t,"transform","matrix(1.2822,0,0,1.2822,-28.2205,-18.909)"),$r(l,"xlink:href","#_ImageCatalyst1"),o(l,"x","2.102"),o(l,"y","0"),o(l,"width","123.803px"),o(l,"height","128px"),o(l,"transform","matrix(0.99841,0,0,1,0,0)"),o(s,"transform","matrix(0.874382,-0,-0,0.874382,10.3599,8.19722)"),o(i,"transform","matrix(1.14367,0,0,1.14367,-11.8482,-9.37487)"),o(c,"d","M48.349,46.587C52.573,42.417 58.375,39.841 64.774,39.841C77.681,39.841 88.159,50.319 88.159,63.226C88.159,76.132 77.681,86.61 64.774,86.61C51.868,86.61 41.39,76.132 41.39,63.226C41.39,58.303 42.914,53.734 45.516,49.964"),x(c,"fill","none"),x(c,"stroke","rgb(125,129,134)"),x(c,"stroke-opacity","0.75"),x(c,"stroke-width","0.87px"),o(f,"transform","matrix(1.14367,0,0,1.14367,-11.8482,-9.37487)"),o(p,"d","M34.246,14.195C32.915,12.864 25.757,18.944 21.513,18.944C17.268,18.944 10.22,12.864 8.779,14.195C7.339,15.526 14.807,22.914 12.868,26.928C8.9,35.14 -10.377,57.377 -15.026,63.467C-8.936,58.818 13.301,39.541 21.513,35.574C25.527,33.634 32.915,41.102 34.246,39.662C35.577,38.221 29.497,31.173 29.497,26.928C29.497,22.684 35.577,15.526 34.246,14.195Z"),x(p,"fill","rgb(255,253,255)"),x(p,"stroke","rgb(125,129,134)"),x(p,"stroke-width","0.58px"),o(m,"transform","matrix(1.51228,0,0,1.51228,52.5281,5.03589)"),o(A,"d","M97.754,88.041L92.041,88.041L76.892,78.041L86.892,93.754L86.892,98.903L97.754,98.903L97.754,88.041Z"),x(A,"fill","rgb(255,253,255)"),x(A,"stroke","rgb(125,129,134)"),x(A,"stroke-width","0.87px"),o(k,"transform","matrix(6.12323e-17,-1,1,6.12323e-17,-15.2923,185.711)"),o(_,"d","M97.754,88.041L92.041,88.041L76.892,78.041L86.892,93.754L86.892,98.903L97.754,98.903L97.754,88.041Z"),x(_,"fill","rgb(255,253,255)"),x(_,"stroke","rgb(125,129,134)"),x(_,"stroke-width","0.87px"),o(d,"transform","matrix(6.12323e-17,-1,1,6.12323e-17,-56.3179,145.506)"),o(h,"transform","matrix(1.14367,0,0,1.14367,-11.8482,-9.37487)"),o(C,"id","_ImageCatalyst1"),o(C,"width","124px"),o(C,"height","128px"),$r(C,"xlink:href","data:image/png;base64,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"),o(e,"viewBox","0 0 128 128"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linecap","round"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","1.5")},m(L,w){q(L,e,w),y(e,r),y(r,t),y(t,n),y(r,i),y(i,s),y(s,l),y(r,f),y(f,c),y(r,h),y(h,m),y(m,p),y(h,k),y(k,A),y(h,d),y(d,_),y(r,u),y(u,C)},p:de,i:de,o:de,d(L){L&&v(e)}}}class bc extends pt{constructor(e){super(),mt(this,e,null,yc,gt,{})}}function wc(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A,d,_;return{c(){e=M("svg"),r=M("g"),t=M("g"),n=M("use"),i=M("g"),s=M("g"),l=M("path"),f=M("path"),c=M("path"),h=M("path"),m=M("g"),p=M("path"),k=M("g"),A=M("path"),d=M("defs"),_=M("image"),this.h()},l(u){e=R(u,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var C=b(e);r=R(C,"g",{transform:!0});var L=b(r);t=R(L,"g",{transform:!0});var w=b(t);n=R(w,"use",{"xlink:href":!0,x:!0,y:!0,width:!0,height:!0,transform:!0}),b(n).forEach(v),w.forEach(v),L.forEach(v),i=R(C,"g",{transform:!0});var D=b(i);s=R(D,"g",{opacity:!0});var N=b(s);l=R(N,"path",{d:!0,style:!0}),b(l).forEach(v),f=R(N,"path",{d:!0,style:!0}),b(f).forEach(v),c=R(N,"path",{d:!0,style:!0}),b(c).forEach(v),h=R(N,"path",{d:!0,style:!0}),b(h).forEach(v),N.forEach(v),D.forEach(v),m=R(C,"g",{transform:!0});var Z=b(m);p=R(Z,"path",{d:!0,style:!0}),b(p).forEach(v),k=R(Z,"g",{transform:!0});var B=b(k);A=R(B,"path",{d:!0,style:!0}),b(A).forEach(v),B.forEach(v),Z.forEach(v),d=R(C,"defs",{});var G=b(d);_=R(G,"image",{id:!0,width:!0,height:!0,"xlink:href":!0}),b(_).forEach(v),G.forEach(v),C.forEach(v),this.h()},h(){$r(n,"xlink:href","#_ImageClaymore1"),o(n,"x","13.668"),o(n,"y","15.996"),o(n,"width","100.736px"),o(n,"height","112.128px"),o(n,"transform","matrix(0.997389,0,0,0.992283,0,0)"),o(t,"transform","matrix(0.948159,-0,-0,0.948159,3.06619,-2.70343)"),o(r,"transform","matrix(1.05467,0,0,1.05467,-3.23384,2.85124)"),o(l,"d","M45.856,32.338C50.013,29.817 54.708,28.091 59.725,27.374"),x(l,"fill","none"),x(l,"stroke","rgb(125,129,134)"),x(l,"stroke-width","0.95px"),o(f,"d","M70.275,27.374C86.569,29.703 99.455,42.668 101.664,59"),x(f,"fill","none"),x(f,"stroke","rgb(125,129,134)"),x(f,"stroke-width","0.95px"),o(c,"d","M101.664,69C100.152,80.182 93.635,89.785 84.447,95.476"),x(c,"fill","none"),x(c,"stroke","rgb(125,129,134)"),x(c,"stroke-width","0.95px"),o(h,"d","M54.406,99.459C39.14,94.897 28,80.739 28,64C28,57.543 29.658,51.47 32.571,46.183"),x(h,"fill","none"),x(h,"stroke","rgb(125,129,134)"),x(h,"stroke-width","0.95px"),o(s,"opacity","0.75"),o(i,"transform","matrix(1.05467,0,0,1.05467,-3.23384,2.85124)"),o(p,"d","M19,64L19,58C19,58 87.41,61.748 91.781,61.988C91.925,61.996 92.065,62.037 92.191,62.107C93.642,62.923 102.964,68.167 106.575,70.198C106.864,70.361 107.044,70.668 107.044,71C107.044,71.332 106.864,71.639 106.575,71.802C102.964,73.833 93.642,79.077 92.191,79.893C92.065,79.963 91.925,80.004 91.781,80.012C87.41,80.252 19,84 19,84L19,78L26,71L19,64Z"),x(p,"fill","rgb(255,253,255)"),x(p,"stroke","rgb(125,129,134)"),x(p,"stroke-width","0.95px"),o(A,"d","M42.651,78.319L93.875,29.882L98.118,29.882L98.118,34.125L49.681,85.349L49.681,86.804L60.288,97.411L57.459,100.239L53.217,100.239L53.217,97.411L43.317,87.511L29.882,100.946L29.882,106.603L17.861,110.139L21.397,98.118L27.054,98.118L40.489,84.683L30.589,74.783L27.761,74.783L27.761,70.541L30.589,67.712L41.196,78.319L42.651,78.319Z"),x(A,"fill","rgb(255,253,255)"),x(A,"stroke","rgb(125,129,134)"),x(A,"stroke-width","0.95px"),o(k,"transform","matrix(0.707107,0.707107,-0.707107,0.707107,42.75,-19.5097)"),o(m,"transform","matrix(0.745768,-0.745768,0.745768,0.745768,-20.5657,49.2825)"),o(_,"id","_ImageClaymore1"),o(_,"width","101px"),o(_,"height","113px"),$r(_,"xlink:href","data:image/png;base64,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"),o(e,"viewBox","0 0 128 128"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linecap","round"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","1.5")},m(u,C){q(u,e,C),y(e,r),y(r,t),y(t,n),y(e,i),y(i,s),y(s,l),y(s,f),y(s,c),y(s,h),y(e,m),y(m,p),y(m,k),y(k,A),y(e,d),y(d,_)},p:de,i:de,o:de,d(u){u&&v(e)}}}class Cc extends pt{constructor(e){super(),mt(this,e,null,wc,gt,{})}}function Ac(a){let e,r,t,n,i,s,l,f,c,h,m;return{c(){e=M("svg"),r=M("g"),t=M("g"),n=M("use"),i=M("g"),s=M("g"),l=M("path"),f=M("g"),c=M("path"),h=M("defs"),m=M("image"),this.h()},l(p){e=R(p,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var k=b(e);r=R(k,"g",{transform:!0});var A=b(r);t=R(A,"g",{transform:!0});var d=b(t);n=R(d,"use",{"xlink:href":!0,x:!0,y:!0,width:!0,height:!0}),b(n).forEach(v),d.forEach(v),A.forEach(v),i=R(k,"g",{transform:!0});var _=b(i);s=R(_,"g",{transform:!0});var u=b(s);l=R(u,"path",{d:!0,style:!0}),b(l).forEach(v),u.forEach(v),f=R(_,"g",{transform:!0});var C=b(f);c=R(C,"path",{d:!0,style:!0}),b(c).forEach(v),C.forEach(v),_.forEach(v),h=R(k,"defs",{});var L=b(h);m=R(L,"image",{id:!0,width:!0,height:!0,"xlink:href":!0}),b(m).forEach(v),L.forEach(v),k.forEach(v),this.h()},h(){$r(n,"xlink:href","#_ImagePolearm1"),o(n,"x","9"),o(n,"y","9"),o(n,"width","110px"),o(n,"height","110px"),o(t,"transform","matrix(0.724771,0.724771,-0.724771,0.724771,58.5,-24.2706)"),o(r,"transform","matrix(0.689873,-0.689873,0.689873,0.689873,-23.6139,57.1013)"),o(l,"d","M47,47.898L47,42L35,42L35,54L41.789,54L67,79.211L67,86L79,86L79,74L73.102,74L47,47.898Z"),x(l,"fill","rgb(255,253,255)"),x(l,"stroke","rgb(125,129,134)"),x(l,"stroke-width","1.02px"),o(s,"transform","matrix(1.14569,0,0,1.14569,-9.32429,-9.32429)"),o(c,"d","M6,66L23,66L24,65L51,67L53,65L59,65L63,61L68,66L81,66L85,62L77,54L135,69L77,84L85,76L81,72L68,72L63,77L59,73L53,73L51,71L24,73L23,72L6,72L3,69L6,66Z"),x(c,"fill","rgb(255,253,255)"),x(c,"stroke","rgb(125,129,134)"),x(c,"stroke-width","1.02px"),o(f,"transform","matrix(0.810127,-0.810127,0.810127,0.810127,-50.468,59.0381)"),o(i,"transform","matrix(0.851562,0,0,0.851562,11.7741,13.7254)"),o(m,"id","_ImagePolearm1"),o(m,"width","110px"),o(m,"height","110px"),$r(m,"xlink:href","data:image/png;base64,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"),o(e,"viewBox","0 0 128 128"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linecap","round"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","1.5")},m(p,k){q(p,e,k),y(e,r),y(r,t),y(t,n),y(e,i),y(i,s),y(s,l),y(i,f),y(f,c),y(e,h),y(h,m)},p:de,i:de,o:de,d(p){p&&v(e)}}}class Lc extends pt{constructor(e){super(),mt(this,e,null,Ac,gt,{})}}function kc(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A,d,_,u,C,L,w;return{c(){e=M("svg"),r=M("g"),t=M("g"),n=M("path"),i=M("path"),s=M("path"),l=M("path"),f=M("path"),c=M("path"),h=M("path"),m=M("path"),p=M("g"),k=M("g"),A=M("g"),d=M("path"),_=M("path"),u=M("g"),C=M("path"),L=M("g"),w=M("path"),this.h()},l(D){e=R(D,"svg",{viewBox:!0,version:!0,xmlns:!0,"xmlns:xlink":!0,"xml:space":!0,"xmlns:serif":!0,style:!0});var N=b(e);r=R(N,"g",{transform:!0});var Z=b(r);t=R(Z,"g",{opacity:!0});var B=b(t);n=R(B,"path",{d:!0,style:!0}),b(n).forEach(v),i=R(B,"path",{d:!0,style:!0}),b(i).forEach(v),s=R(B,"path",{d:!0,style:!0}),b(s).forEach(v),l=R(B,"path",{d:!0,style:!0}),b(l).forEach(v),f=R(B,"path",{d:!0,style:!0}),b(f).forEach(v),c=R(B,"path",{d:!0,style:!0}),b(c).forEach(v),h=R(B,"path",{d:!0,style:!0}),b(h).forEach(v),m=R(B,"path",{d:!0,style:!0}),b(m).forEach(v),B.forEach(v),Z.forEach(v),p=R(N,"g",{transform:!0});var G=b(p);k=R(G,"g",{opacity:!0});var H=b(k);A=R(H,"g",{transform:!0});var W=b(A);d=R(W,"path",{d:!0,style:!0}),b(d).forEach(v),W.forEach(v),_=R(H,"path",{d:!0,style:!0}),b(_).forEach(v),H.forEach(v),G.forEach(v),u=R(N,"g",{transform:!0});var Q=b(u);C=R(Q,"path",{d:!0,style:!0}),b(C).forEach(v),L=R(Q,"g",{transform:!0});var Y=b(L);w=R(Y,"path",{d:!0,style:!0}),b(w).forEach(v),Y.forEach(v),Q.forEach(v),N.forEach(v),this.h()},h(){o(n,"d","M95.5,94L95.5,91.104L106.5,80.104L106.5,105L61.952,105L50.952,94L95.5,94"),x(n,"fill","rgb(201,207,210)"),x(n,"stroke","rgb(125,129,134)"),x(n,"stroke-width","1.16px"),o(i,"d","M32.5,91.104L32.5,94L35.396,94L46.396,105L21.5,105L21.5,60.452L32.5,49.452L32.5,91.104"),x(i,"fill","rgb(201,207,210)"),x(i,"stroke","rgb(125,129,134)"),x(i,"stroke-width","1.16px"),o(s,"d","M106.5,20L106.5,64.548L95.5,75.548L95.5,31L92.604,31L81.604,20L106.5,20Z"),x(s,"fill","rgb(201,207,210)"),x(s,"stroke","rgb(125,129,134)"),x(s,"stroke-width","1.16px"),o(l,"d","M32.5,31L32.5,33.896L21.5,44.896L21.5,20L66.048,20L77.048,31L32.5,31Z"),x(l,"fill","rgb(201,207,210)"),x(l,"stroke","rgb(125,129,134)"),x(l,"stroke-width","1.16px"),o(f,"d","M32.5,91.104L32.5,75.548L64,107.048L66.048,105L81.604,105L64,122.604L32.5,91.104Z"),x(f,"fill","rgb(201,207,210)"),x(f,"stroke","rgb(125,129,134)"),x(f,"stroke-width","1.16px"),o(c,"d","M92.604,94L77.048,94L108.548,62.5L106.5,60.452L106.5,44.896L124.104,62.5L92.604,94Z"),x(c,"fill","rgb(201,207,210)"),x(c,"stroke","rgb(125,129,134)"),x(c,"stroke-width","1.16px"),o(h,"d","M64,17.952L61.952,20L46.396,20L64,2.396L95.5,33.896L95.5,49.452L64,17.952Z"),x(h,"fill","rgb(201,207,210)"),x(h,"stroke","rgb(125,129,134)"),x(h,"stroke-width","1.16px"),o(m,"d","M19.452,62.5L21.5,64.548L21.5,80.104L3.896,62.5L35.396,31L50.952,31L19.452,62.5Z"),x(m,"fill","rgb(201,207,210)"),x(m,"stroke","rgb(125,129,134)"),x(m,"stroke-width","1.16px"),o(t,"opacity","0.75"),o(r,"transform","matrix(0.865166,0,0,0.865166,8.62938,9.92713)"),o(d,"d","M28,116L33.454,110.546L33.454,91L30.433,87.978L20,87.978L17.498,90.481L9.021,82.004L11.018,80.007L30,80.007L36,69.031L42,80.007L60.982,80.007L62.809,81.834L54.332,90.311L52,87.978L41.567,87.978L38.546,91L38.546,110.546L44,116L36,127L28,116Z"),x(d,"fill","rgb(199,205,210)"),x(d,"stroke","rgb(125,129,134)"),x(d,"stroke-width","1.16px"),o(A,"transform","matrix(1,0,0,1,0,40)"),o(_,"d","M26.161,120.007L19,114C19,114 19,114 19,114C23.614,109.386 26.08,103.047 25.796,96.528C25.186,82.497 24.165,59 24.165,59C24.165,59 23,34 36,15L36.076,15.111C48.995,34.1 47.835,59 47.835,59C47.835,59 46.814,82.497 46.204,96.528C45.92,103.047 48.386,109.386 53,114C53,114 53,114 53,114L45.839,120.007L26.161,120.007Z"),x(_,"fill","rgb(199,205,210)"),x(_,"stroke","rgb(125,129,134)"),x(_,"stroke-width","1.16px"),o(k,"opacity","0.75"),o(p,"transform","matrix(0.611765,-0.611765,0.611765,0.611765,-12.1886,31.6507)"),o(C,"d","M26.161,120.007L19,114C19,114 19,114 19.001,113.999C23.637,109.363 26.241,103.075 26.241,96.519L26.241,90.752C26.241,90.752 23,34 36,15L36.076,15.111C46.013,29.717 46.392,76.075 46.038,96.699C45.909,103.172 48.423,109.419 53.002,113.997C53,114 53,114 53,114L45.839,120.007L26.161,120.007Z"),x(C,"fill","rgb(255,253,255)"),x(C,"stroke","rgb(125,129,134)"),x(C,"stroke-width","1.16px"),o(w,"d","M28,116L33.454,110.546L33.454,91L30.433,87.978L20,87.978L17.328,90.65L8.851,82.174L11.018,80.007L30,80.007L36,69.031L42,80.007L60.982,80.007L62.979,82.004L54.502,90.481L52,87.978L41.567,87.978L38.546,91L38.546,110.546L44,116L36,127L28,116Z"),x(w,"fill","rgb(255,253,255)"),x(w,"stroke","rgb(125,129,134)"),x(w,"stroke-width","1.16px"),o(L,"transform","matrix(1,0,0,1,0,40)"),o(u,"transform","matrix(0.611765,0.611765,-0.611765,0.611765,96.557,-12.3964)"),o(e,"viewBox","0 0 128 128"),o(e,"version","1.1"),o(e,"xmlns","http://www.w3.org/2000/svg"),o(e,"xmlns:xlink","http://www.w3.org/1999/xlink"),o(e,"xml:space","preserve"),o(e,"xmlns:serif","http://www.serif.com/"),x(e,"fill-rule","evenodd"),x(e,"clip-rule","evenodd"),x(e,"stroke-linecap","round"),x(e,"stroke-linejoin","round"),x(e,"stroke-miterlimit","1.5")},m(D,N){q(D,e,N),y(e,r),y(r,t),y(t,n),y(t,i),y(t,s),y(t,l),y(t,f),y(t,c),y(t,h),y(t,m),y(e,p),y(p,k),y(k,A),y(A,d),y(k,_),y(e,u),y(u,C),y(u,L),y(L,w)},p:de,i:de,o:de,d(D){D&&v(e)}}}class Ec extends pt{constructor(e){super(),mt(this,e,null,kc,gt,{})}}function xo(a){let e,r,t;var n=a[1][a[0]];function i(s){return{}}return n&&(e=new n(i())),{c(){e&&Xt(e.$$.fragment),r=Qt()},l(s){e&&ir(e.$$.fragment,s),r=Qt()},m(s,l){e&&qt(e,s,l),q(s,r,l),t=!0},p(s,l){if(n!==(n=s[1][s[0]])){if(e){sr();const f=e;me(f.$$.fragment,1,0,()=>{Zt(f,1)}),nr()}n?(e=new n(i()),Xt(e.$$.fragment),se(e.$$.fragment,1),qt(e,r.parentNode,r)):e=null}},i(s){t||(e&&se(e.$$.fragment,s),t=!0)},o(s){e&&me(e.$$.fragment,s),t=!1},d(s){s&&v(r),e&&Zt(e,s)}}}function xc(a){let e,r,t=a[0]in a[1]&&xo(a);return{c(){t&&t.c(),e=Qt()},l(n){t&&t.l(n),e=Qt()},m(n,i){t&&t.m(n,i),q(n,e,i),r=!0},p(n,[i]){n[0]in n[1]?t?(t.p(n,i),i&1&&se(t,1)):(t=xo(n),t.c(),se(t,1),t.m(e.parentNode,e)):t&&(sr(),me(t,1,1,()=>{t=null}),nr())},i(n){r||(se(t),r=!0)},o(n){me(t),r=!1},d(n){t&&t.d(n),n&&v(e)}}}function Sc(a,e,r){let{name:t=""}=e;const n={anemo:sc,cryo:ic,dendro:oc,electro:cc,geo:hc,hydro:dc,pyro:mc,bow:_c,catalyst:bc,claymore:Cc,polearm:Lc,sword:Ec};return a.$$set=i=>{"name"in i&&r(0,t=i.name)},[t,n]}class x1 extends pt{constructor(e){super(),mt(this,e,Sc,xc,gt,{name:0})}}var S1=globalThis&&globalThis.__awaiter||function(a,e,r,t){function n(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function l(h){try{c(t.next(h))}catch(m){s(m)}}function f(h){try{c(t.throw(h))}catch(m){s(m)}}function c(h){h.done?i(h.value):n(h.value).then(l,f)}c((t=t.apply(a,e||[])).next())})};const So="application/font-woff",Do="image/jpeg",Dc={woff:So,woff2:So,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:Do,jpeg:Do,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"};function Tc(a){const e=/\.([^./]*?)$/g.exec(a);return e?e[1]:""}function zn(a){const e=Tc(a).toLowerCase();return Dc[e]||""}function Oc(a,e){if(a.match(/^[a-z]+:\/\//i))return a;if(a.match(/^\/\//))return window.location.protocol+a;if(a.match(/^[a-z]+:/i))return a;const r=document.implementation.createHTMLDocument(),t=r.createElement("base"),n=r.createElement("a");return r.head.appendChild(t),r.body.appendChild(n),e&&(t.href=e),n.href=a,n.href}function tl(a){return a.search(/^(data:)/)!==-1}function Vn(a,e){return`data:${e};base64,${a}`}function Ic(a){return a.split(/,/)[1]}const Pc=function(){let e=0;const r=()=>`0000${(Math.random()*Math.pow(36,4)<<0).toString(36)}`.slice(-4);return()=>(e+=1,`u${r()}${e}`)}();function rs(a){const e=[];for(let r=0,t=a.length;r<t;r+=1)e.push(a[r]);return e}function Bn(a,e){const r=window.getComputedStyle(a).getPropertyValue(e);return parseFloat(r.replace("px",""))}function Mc(a){const e=Bn(a,"border-left-width"),r=Bn(a,"border-right-width");return a.clientWidth+e+r}function Rc(a){const e=Bn(a,"border-top-width"),r=Bn(a,"border-bottom-width");return a.clientHeight+e+r}function Wc(){let a,e;try{e=process}catch{}const r=e&&e.env?e.env.devicePixelRatio:null;return r&&(a=parseInt(r,10),Number.isNaN(a)&&(a=1)),a||window.devicePixelRatio||1}function zc(a){return a.toBlob?new Promise(e=>a.toBlob(e)):new Promise(e=>{const r=window.atob(a.toDataURL().split(",")[1]),t=r.length,n=new Uint8Array(t);for(let i=0;i<t;i+=1)n[i]=r.charCodeAt(i);e(new Blob([n],{type:"image/png"}))})}function al(a){return new Promise((e,r)=>{const t=new Image;t.onload=()=>e(t),t.onerror=r,t.crossOrigin="anonymous",t.decoding="sync",t.src=a})}function Vc(a){return S1(this,void 0,void 0,function*(){return Promise.resolve().then(()=>new XMLSerializer().serializeToString(a)).then(encodeURIComponent).then(e=>`data:image/svg+xml;charset=utf-8,${e}`)})}function Bc(a,e,r){return S1(this,void 0,void 0,function*(){const t="http://www.w3.org/2000/svg",n=document.createElementNS(t,"svg"),i=document.createElementNS(t,"foreignObject");return n.setAttribute("width",`${e}`),n.setAttribute("height",`${r}`),n.setAttribute("viewBox",`0 0 ${e} ${r}`),i.setAttribute("width","100%"),i.setAttribute("height","100%"),i.setAttribute("x","0"),i.setAttribute("y","0"),i.setAttribute("externalResourcesRequired","true"),n.appendChild(i),i.appendChild(a),Vc(n)})}const Yi={};function Uc(a){let e=a.replace(/\?.*/,"");return/ttf|otf|eot|woff2?/i.test(e)&&(e=e.replace(/.*\//,"")),e}function sl(a,e){const r=Uc(a);if(Yi[r]!=null)return Yi[r];e.cacheBust&&(a+=(/\?/.test(a)?"&":"?")+new Date().getTime());const t=i=>{let s="";if(e.imagePlaceholder){const f=e.imagePlaceholder.split(/,/);f&&f[1]&&(s=f[1])}let l=`Failed to fetch resource: ${a}`;return i&&(l=typeof i=="string"?i:i.message),l&&console.error(l),{blob:s,contentType:""}},n=window.fetch(a).then(i=>i.blob().then(s=>({blob:s,contentType:i.headers.get("Content-Type")||""}))).then(({blob:i,contentType:s})=>new Promise((l,f)=>{const c=new FileReader;c.onloadend=()=>l({contentType:s,blob:c.result}),c.onerror=f,c.readAsDataURL(i)})).then(({blob:i,contentType:s})=>({contentType:s,blob:Ic(i)})).catch(t);return Yi[r]=n,n}function Hc(a){const e=a.getPropertyValue("content");return`${a.cssText} content: '${e.replace(/'|"/g,"")}';`}function Nc(a){return rs(a).map(e=>{const r=a.getPropertyValue(e),t=a.getPropertyPriority(e);return`${e}: ${r}${t?" !important":""};`}).join(" ")}function Kc(a,e,r){const t=`.${a}:${e}`,n=r.cssText?Hc(r):Nc(r);return document.createTextNode(`${t}{${n}}`)}function To(a,e,r){const t=window.getComputedStyle(a,r),n=t.getPropertyValue("content");if(n===""||n==="none")return;const i=Pc();try{e.className=`${e.className} ${i}`}catch{return}const s=document.createElement("style");s.appendChild(Kc(i,r,t)),e.appendChild(s)}function jc(a,e){To(a,e,":before"),To(a,e,":after")}var Os=globalThis&&globalThis.__awaiter||function(a,e,r,t){function n(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function l(h){try{c(t.next(h))}catch(m){s(m)}}function f(h){try{c(t.throw(h))}catch(m){s(m)}}function c(h){h.done?i(h.value):n(h.value).then(l,f)}c((t=t.apply(a,e||[])).next())})};function Fc(a){return Os(this,void 0,void 0,function*(){const e=a.toDataURL();return e==="data:,"?Promise.resolve(a.cloneNode(!1)):al(e)})}function Gc(a,e){return Os(this,void 0,void 0,function*(){return Promise.resolve(a.poster).then(r=>sl(r,e)).then(r=>Vn(r.blob,zn(a.poster)||r.contentType)).then(r=>al(r))})}function Xc(a,e){return Os(this,void 0,void 0,function*(){return a instanceof HTMLCanvasElement?Fc(a):a instanceof HTMLVideoElement&&a.poster?Gc(a,e):Promise.resolve(a.cloneNode(!1))})}const qc=a=>a.tagName!=null&&a.tagName.toUpperCase()==="SLOT";function Zc(a,e,r){var t;return Os(this,void 0,void 0,function*(){const n=qc(a)&&a.assignedNodes?rs(a.assignedNodes()):rs(((t=a.shadowRoot)!==null&&t!==void 0?t:a).childNodes);return n.length===0||a instanceof HTMLVideoElement?Promise.resolve(e):n.reduce((i,s)=>i.then(()=>D1(s,r)).then(l=>{l&&e.appendChild(l)}),Promise.resolve()).then(()=>e)})}function Yc(a,e){const r=window.getComputedStyle(a),t=e.style;!t||(r.cssText?t.cssText=r.cssText:rs(r).forEach(n=>{t.setProperty(n,r.getPropertyValue(n),r.getPropertyPriority(n))}))}function Qc(a,e){a instanceof HTMLTextAreaElement&&(e.innerHTML=a.value),a instanceof HTMLInputElement&&e.setAttribute("value",a.value)}function Jc(a,e){return Os(this,void 0,void 0,function*(){return e instanceof Element?Promise.resolve().then(()=>Yc(a,e)).then(()=>jc(a,e)).then(()=>Qc(a,e)).then(()=>e):Promise.resolve(e)})}function D1(a,e,r){return Os(this,void 0,void 0,function*(){return!r&&e.filter&&!e.filter(a)?Promise.resolve(null):Promise.resolve(a).then(t=>Xc(t,e)).then(t=>Zc(a,t,e)).then(t=>Jc(a,t))})}var $c=globalThis&&globalThis.__awaiter||function(a,e,r,t){function n(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function l(h){try{c(t.next(h))}catch(m){s(m)}}function f(h){try{c(t.throw(h))}catch(m){s(m)}}function c(h){h.done?i(h.value):n(h.value).then(l,f)}c((t=t.apply(a,e||[])).next())})};const T1=/url\((['"]?)([^'"]+?)\1\)/g,eu=/url\([^)]+\)\s*format\((["'])([^"']+)\1\)/g,tu=/src:\s*(?:url\([^)]+\)\s*format\([^)]+\)[,;]\s*)+/g;function ru(a){const e=a.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1");return new RegExp(`(url\\(['"]?)(${e})(['"]?\\))`,"g")}function au(a){const e=[];return a.replace(T1,(r,t,n)=>(e.push(n),r)),e.filter(r=>!tl(r))}function su(a,e,r,t,n){const i=r?Oc(e,r):e;return Promise.resolve(i).then(s=>n?n(s):sl(s,t)).then(s=>typeof s=="string"?Vn(s,zn(e)):Vn(s.blob,zn(e)||s.contentType)).then(s=>a.replace(ru(e),`$1${s}$3`)).then(s=>s,()=>i)}function nu(a,{preferredFontFormat:e}){return e?a.replace(tu,r=>{for(;;){const[t,,n]=eu.exec(r)||[];if(!n)return"";if(n===e)return`src: ${t};`}}):a}function O1(a){return a.search(T1)!==-1}function I1(a,e,r){return $c(this,void 0,void 0,function*(){if(!O1(a))return Promise.resolve(a);const t=nu(a,r);return Promise.resolve(t).then(au).then(n=>n.reduce((i,s)=>i.then(l=>su(l,s,e,r)),Promise.resolve(t)))})}var Kn=globalThis&&globalThis.__awaiter||function(a,e,r,t){function n(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function l(h){try{c(t.next(h))}catch(m){s(m)}}function f(h){try{c(t.throw(h))}catch(m){s(m)}}function c(h){h.done?i(h.value):n(h.value).then(l,f)}c((t=t.apply(a,e||[])).next())})};function iu(a,e){var r;return Kn(this,void 0,void 0,function*(){const t=(r=a.style)===null||r===void 0?void 0:r.getPropertyValue("background");return t?Promise.resolve(t).then(n=>I1(n,null,e)).then(n=>(a.style.setProperty("background",n,a.style.getPropertyPriority("background")),a)):Promise.resolve(a)})}function lu(a,e){return Kn(this,void 0,void 0,function*(){if(!(a instanceof HTMLImageElement&&!tl(a.src))&&!(a instanceof SVGImageElement&&!tl(a.href.baseVal)))return Promise.resolve(a);const r=a instanceof HTMLImageElement?a.src:a.href.baseVal;return Promise.resolve(r).then(t=>sl(t,e)).then(t=>Vn(t.blob,zn(r)||t.contentType)).then(t=>new Promise((n,i)=>{a.onload=n,a.onerror=i,a instanceof HTMLImageElement?(a.srcset="",a.src=t):a.href.baseVal=t})).then(()=>a,()=>a)})}function ou(a,e){return Kn(this,void 0,void 0,function*(){const t=rs(a.childNodes).map(n=>P1(n,e));return Promise.all(t).then(()=>a)})}function P1(a,e){return Kn(this,void 0,void 0,function*(){return a instanceof Element?Promise.resolve(a).then(r=>iu(r,e)).then(r=>lu(r,e)).then(r=>ou(r,e)):Promise.resolve(a)})}function fu(a,e){const{style:r}=a;e.backgroundColor&&(r.backgroundColor=e.backgroundColor),e.width&&(r.width=`${e.width}px`),e.height&&(r.height=`${e.height}px`);const t=e.style;return t!=null&&Object.keys(t).forEach(n=>{r[n]=t[n]}),a}var fn=globalThis&&globalThis.__awaiter||function(a,e,r,t){function n(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function l(h){try{c(t.next(h))}catch(m){s(m)}}function f(h){try{c(t.throw(h))}catch(m){s(m)}}function c(h){h.done?i(h.value):n(h.value).then(l,f)}c((t=t.apply(a,e||[])).next())})};const Oo={};function Io(a){const e=Oo[a];if(e!=null)return e;const r=window.fetch(a).then(t=>({url:a,cssText:t.text()}));return Oo[a]=r,r}function Po(a){return fn(this,void 0,void 0,function*(){return a.cssText.then(e=>{let r=e;const t=/url\(["']?([^"')]+)["']?\)/g,i=(r.match(/url\([^)]+\)/g)||[]).map(s=>{let l=s.replace(t,"$1");return l.startsWith("https://")||(l=new URL(l,a.url).href),window.fetch(l).then(f=>f.blob()).then(f=>new Promise((c,h)=>{const m=new FileReader;m.onloadend=()=>{r=r.replace(s,`url(${m.result})`),c([s,m.result])},m.onerror=h,m.readAsDataURL(f)}))});return Promise.all(i).then(()=>r)})})}function Mo(a){if(a==null)return[];const e=[],r=/(\/\*[\s\S]*?\*\/)/gi;let t=a.replace(r,"");const n=new RegExp("((@.*?keyframes [\\s\\S]*?){([\\s\\S]*?}\\s*?)})","gi");for(;;){const f=n.exec(t);if(f===null)break;e.push(f[0])}t=t.replace(n,"");const i=/@import[\s\S]*?url\([^)]*\)[\s\S]*?;/gi,s="((\\s*?(?:\\/\\*[\\s\\S]*?\\*\\/)?\\s*?@media[\\s\\S]*?){([\\s\\S]*?)}\\s*?})|(([\\s\\S]*?){([\\s\\S]*?)})",l=new RegExp(s,"gi");for(;;){let f=i.exec(t);if(f===null){if(f=l.exec(t),f===null)break;i.lastIndex=l.lastIndex}else l.lastIndex=i.lastIndex;e.push(f[0])}return e}function cu(a){return fn(this,void 0,void 0,function*(){const e=[],r=[];return a.forEach(t=>{if("cssRules"in t)try{rs(t.cssRules).forEach((n,i)=>{if(n.type===CSSRule.IMPORT_RULE){let s=i+1;const l=n.href,f=Io(l).then(c=>c?Po(c):"").then(c=>Mo(c).forEach(h=>{try{t.insertRule(h,h.startsWith("@import")?s+=1:t.cssRules.length)}catch(m){console.error("Error inserting rule from remote css",{rule:h,error:m})}})).catch(c=>{console.error("Error loading remote css",c.toString())});r.push(f)}})}catch(n){const i=a.find(s=>s.href==null)||document.styleSheets[0];t.href!=null&&r.push(Io(t.href).then(s=>s?Po(s):"").then(s=>Mo(s).forEach(l=>{i.insertRule(l,t.cssRules.length)})).catch(s=>{console.error("Error loading remote stylesheet",s.toString())})),console.error("Error inlining remote css file",n.toString())}}),Promise.all(r).then(()=>(a.forEach(t=>{if("cssRules"in t)try{rs(t.cssRules).forEach(n=>{e.push(n)})}catch(n){console.error(`Error while reading CSS rules from ${t.href}`,n.toString())}}),e))})}function uu(a){return a.filter(e=>e.type===CSSRule.FONT_FACE_RULE).filter(e=>O1(e.style.getPropertyValue("src")))}function hu(a){return fn(this,void 0,void 0,function*(){return new Promise((e,r)=>{a.ownerDocument==null&&r(new Error("Provided element is not within a Document")),e(rs(a.ownerDocument.styleSheets))}).then(e=>cu(e)).then(uu)})}function vu(a,e){return fn(this,void 0,void 0,function*(){return hu(a).then(r=>Promise.all(r.map(t=>{const n=t.parentStyleSheet?t.parentStyleSheet.href:null;return I1(t.cssText,n,e)}))).then(r=>r.join(`
-`))})}function du(a,e){return fn(this,void 0,void 0,function*(){return(e.fontEmbedCSS!=null?Promise.resolve(e.fontEmbedCSS):vu(a,e)).then(r=>{const t=document.createElement("style"),n=document.createTextNode(r);return t.appendChild(n),a.firstChild?a.insertBefore(t,a.firstChild):a.appendChild(t),a})})}var nl=globalThis&&globalThis.__awaiter||function(a,e,r,t){function n(i){return i instanceof r?i:new r(function(s){s(i)})}return new(r||(r=Promise))(function(i,s){function l(h){try{c(t.next(h))}catch(m){s(m)}}function f(h){try{c(t.throw(h))}catch(m){s(m)}}function c(h){h.done?i(h.value):n(h.value).then(l,f)}c((t=t.apply(a,e||[])).next())})};function M1(a,e={}){const r=e.width||Mc(a),t=e.height||Rc(a);return{width:r,height:t}}function pu(a,e={}){return nl(this,void 0,void 0,function*(){const{width:r,height:t}=M1(a,e);return Promise.resolve(a).then(n=>D1(n,e,!0)).then(n=>du(n,e)).then(n=>P1(n,e)).then(n=>fu(n,e)).then(n=>Bc(n,r,t))})}const zr=16384;function mu(a){(a.width>zr||a.height>zr)&&(a.width>zr&&a.height>zr?a.width>a.height?(a.height*=zr/a.width,a.width=zr):(a.width*=zr/a.height,a.height=zr):a.width>zr?(a.height*=zr/a.width,a.width=zr):(a.width*=zr/a.height,a.height=zr))}function gu(a,e={}){return nl(this,void 0,void 0,function*(){return pu(a,e).then(al).then(r=>{const t=document.createElement("canvas"),n=t.getContext("2d"),i=e.pixelRatio||Wc(),{width:s,height:l}=M1(a,e),f=e.canvasWidth||s,c=e.canvasHeight||l;return t.width=f*i,t.height=c*i,e.skipAutoScale||mu(t),t.style.width=`${f}`,t.style.height=`${c}`,e.backgroundColor&&(n.fillStyle=e.backgroundColor,n.fillRect(0,0,t.width,t.height)),n.drawImage(r,0,0,t.width,t.height),t})})}function _u(a,e={}){return nl(this,void 0,void 0,function*(){return gu(a,e).then(zc)})}const[S2,D2]=kf({duration:6400,easing:Ef}),Vr=a=>{a.addEventListener("animationend",()=>{a.classList.remove("animate"),a.classList.remove("anim")})};function Ro(a,e,r){const t=a.slice();return t[13]=e[r],t[15]=r,t}function Wo(a){let e,r,t,n,i;return r=new x1({props:{name:a[6]||a[5]}}),{c(){e=j("div"),Xt(r.$$.fragment),this.h()},l(s){e=F(s,"DIV",{class:!0});var l=b(e);ir(r.$$.fragment,l),l.forEach(v),this.h()},h(){o(e,"class","icon vision svelte-1pgmxjb"),Ot(e,"animate",!a[0])},m(s,l){q(s,e,l),qt(r,e,null),t=!0,n||(i=It(Vr.call(null,e)),n=!0)},p(s,l){const f={};l&96&&(f.name=s[6]||s[5]),r.$set(f),l&1&&Ot(e,"animate",!s[0])},i(s){t||(se(r.$$.fragment,s),t=!0)},o(s){me(r.$$.fragment,s),t=!1},d(s){s&&v(e),Zt(r),n=!1,i()}}}function zo(a){let e,r=a[11]("outfit.obtained")+"",t,n,i;return{c(){e=j("span"),t=vt(r),this.h()},l(s){e=F(s,"SPAN",{class:!0});var l=b(e);t=dt(l,r),l.forEach(v),this.h()},h(){o(e,"class","svelte-1pgmxjb"),Ot(e,"animate",!a[0])},m(s,l){q(s,e,l),y(e,t),n||(i=It(Vr.call(null,e)),n=!0)},p(s,l){l&2048&&r!==(r=s[11]("outfit.obtained")+"")&&Yt(t,r),l&1&&Ot(e,"animate",!s[0])},d(s){s&&v(e),n=!1,i()}}}function yu(a){let e=a[11](`${a[2]}.name`)+"",r;return{c(){r=vt(e)},l(t){r=dt(t,e)},m(t,n){q(t,r,n)},p(t,n){n&2052&&e!==(e=t[11](`${t[2]}.name`)+"")&&Yt(r,e)},d(t){t&&v(r)}}}function bu(a){let e=a[11](a[2])+"",r;return{c(){r=vt(e)},l(t){r=dt(t,e)},m(t,n){q(t,r,n)},p(t,n){n&2052&&e!==(e=t[11](t[2])+"")&&Yt(r,e)},d(t){t&&v(r)}}}function wu(a){let e=a[11](`outfit.item.${a[7]}.name`)+"",r;return{c(){r=vt(e)},l(t){r=dt(t,e)},m(t,n){q(t,r,n)},p(t,n){n&2176&&e!==(e=t[11](`outfit.item.${t[7]}.name`)+"")&&Yt(r,e)},d(t){t&&v(r)}}}function Cu(a){let e;return{c(){e=vt(a[3])},l(r){e=dt(r,a[3])},m(r,t){q(r,e,t)},p(r,t){t&8&&Yt(e,r[3])},d(r){r&&v(e)}}}function Au(a){let e;return{c(){e=vt(a[2])},l(r){e=dt(r,a[2])},m(r,t){q(r,e,t)},p(r,t){t&4&&Yt(e,r[2])},d(r){r&&v(e)}}}function Vo(a,e){let r,t,n;return{key:a,first:null,c(){r=j("i"),this.h()},l(i){r=F(i,"I",{class:!0,style:!0}),b(r).forEach(v),this.h()},h(){o(r,"class","gi-star svelte-1pgmxjb"),x(r,"animation-delay",2+e[15]*.15+"s"),Ot(r,"animate",!e[0]),this.first=r},m(i,s){q(i,r,s),t||(n=It(Vr.call(null,r)),t=!0)},p(i,s){e=i,s&1024&&x(r,"animation-delay",2+e[15]*.15+"s"),s&1&&Ot(r,"animate",!e[0])},d(i){i&&v(r),t=!1,n()}}}function Bo(a){let e,r=a[11]("outfit.unlocked",{values:{character:a[11](`${a[2]}.name`)}})+"",t,n,i;return{c(){e=j("span"),t=vt(r),this.h()},l(s){e=F(s,"SPAN",{class:!0});var l=b(e);t=dt(l,r),l.forEach(v),this.h()},h(){o(e,"class","anim svelte-1pgmxjb"),Ot(e,"animate",!a[0])},m(s,l){q(s,e,l),y(e,t),n||(i=It(Vr.call(null,e)),n=!0)},p(s,l){l&2052&&r!==(r=s[11]("outfit.unlocked",{values:{character:s[11](`${s[2]}.name`)}})+"")&&Yt(t,r),l&1&&Ot(e,"animate",!s[0])},d(s){s&&v(e),n=!1,i()}}}function Uo(a){let e,r,t,n;return{c(){e=j("div"),r=j("img"),this.h()},l(i){e=F(i,"DIV",{class:!0});var s=b(e);r=F(s,"IMG",{src:!0,alt:!0,class:!0}),s.forEach(v),this.h()},h(){Pt(r.src,t=a[12][`stella-fortuna-${a[10]}star.webp`])||o(r,"src",t),o(r,"alt","Stella Formula"),o(r,"class","svelte-1pgmxjb"),o(e,"class",n="stella stella"+a[10]+" svelte-1pgmxjb")},m(i,s){q(i,e,s),y(e,r)},p(i,s){s&5120&&!Pt(r.src,t=i[12][`stella-fortuna-${i[10]}star.webp`])&&o(r,"src",t),s&1024&&n!==(n="stella stella"+i[10]+" svelte-1pgmxjb")&&o(e,"class",n)},d(i){i&&v(e)}}}function Ho(a){let e,r,t,n,i,s;return r=new Nn({props:{type:"starglitter",width:"80%"}}),{c(){e=j("div"),Xt(r.$$.fragment),t=ge(),n=j("span"),i=vt(a[9]),this.h()},l(l){e=F(l,"DIV",{class:!0});var f=b(e);ir(r.$$.fragment,f),t=_e(f),n=F(f,"SPAN",{class:!0});var c=b(n);i=dt(c,a[9]),c.forEach(v),f.forEach(v),this.h()},h(){o(n,"class","svelte-1pgmxjb"),o(e,"class","masterless starglitter svelte-1pgmxjb")},m(l,f){q(l,e,f),qt(r,e,null),y(e,t),y(e,n),y(n,i),s=!0},p(l,f){(!s||f&512)&&Yt(i,l[9])},i(l){s||(se(r.$$.fragment,l),s=!0)},o(l){me(r.$$.fragment,l),s=!1},d(l){l&&v(e),Zt(r)}}}function Lu(a){let e,r,t,n,i,s,l,f=[],c=new Map,h,m,p,k,A,d,_,u=a[4]!=="outfit"&&Wo(a),C=a[4]==="outfit"&&zo(a);function L(W,Q){return W[1]?Au:W[4]==="member"?Cu:W[4]==="outfit"?wu:W[6]?bu:yu}let w=L(a),D=w(a),N=Array(a[10]);const Z=W=>W[15];for(let W=0;W<N.length;W+=1){let Q=Ro(a,N,W),Y=Z(Q);c.set(Y,f[W]=Vo(Y,Q))}let B=a[4]==="outfit"&&Bo(a),G=a[8]&&Uo(a),H=a[4]=="character"&&a[9]>0&&Ho(a);return{c(){e=j("div"),u&&u.c(),r=ge(),t=j("div"),C&&C.c(),n=ge(),i=j("div"),D.c(),s=ge(),l=j("div");for(let W=0;W<f.length;W+=1)f[W].c();h=ge(),B&&B.c(),m=ge(),p=j("div"),G&&G.c(),k=ge(),H&&H.c(),this.h()},l(W){e=F(W,"DIV",{class:!0});var Q=b(e);u&&u.l(Q),r=_e(Q),t=F(Q,"DIV",{class:!0});var Y=b(t);C&&C.l(Y),n=_e(Y),i=F(Y,"DIV",{class:!0});var le=b(i);D.l(le),le.forEach(v),s=_e(Y),l=F(Y,"DIV",{class:!0});var fe=b(l);for(let De=0;De<f.length;De+=1)f[De].l(fe);fe.forEach(v),h=_e(Y),B&&B.l(Y),Y.forEach(v),m=_e(Q),p=F(Q,"DIV",{class:!0});var re=b(p);G&&G.l(re),k=_e(re),H&&H.l(re),re.forEach(v),Q.forEach(v),this.h()},h(){o(i,"class","text svelte-1pgmxjb"),Ot(i,"animate",!a[0]),o(l,"class","star svelte-1pgmxjb"),o(t,"class","name svelte-1pgmxjb"),o(p,"class","bonus svelte-1pgmxjb"),Ot(p,"animate",!a[0]),o(e,"class","info svelte-1pgmxjb")},m(W,Q){q(W,e,Q),u&&u.m(e,null),y(e,r),y(e,t),C&&C.m(t,null),y(t,n),y(t,i),D.m(i,null),y(t,s),y(t,l);for(let Y=0;Y<f.length;Y+=1)f[Y].m(l,null);y(t,h),B&&B.m(t,null),y(e,m),y(e,p),G&&G.m(p,null),y(p,k),H&&H.m(p,null),A=!0,d||(_=[It(Vr.call(null,i)),It(Vr.call(null,p))],d=!0)},p(W,[Q]){W[4]!=="outfit"?u?(u.p(W,Q),Q&16&&se(u,1)):(u=Wo(W),u.c(),se(u,1),u.m(e,r)):u&&(sr(),me(u,1,1,()=>{u=null}),nr()),W[4]==="outfit"?C?C.p(W,Q):(C=zo(W),C.c(),C.m(t,n)):C&&(C.d(1),C=null),w===(w=L(W))&&D?D.p(W,Q):(D.d(1),D=w(W),D&&(D.c(),D.m(i,null))),Q&1&&Ot(i,"animate",!W[0]),Q&1025&&(N=Array(W[10]),f=yf(f,Q,Z,1,W,N,c,l,bf,Vo,null,Ro)),W[4]==="outfit"?B?B.p(W,Q):(B=Bo(W),B.c(),B.m(t,null)):B&&(B.d(1),B=null),W[8]?G?G.p(W,Q):(G=Uo(W),G.c(),G.m(p,k)):G&&(G.d(1),G=null),W[4]=="character"&&W[9]>0?H?(H.p(W,Q),Q&528&&se(H,1)):(H=Ho(W),H.c(),se(H,1),H.m(p,null)):H&&(sr(),me(H,1,1,()=>{H=null}),nr()),Q&1&&Ot(p,"animate",!W[0])},i(W){A||(se(u),se(H),A=!0)},o(W){me(u),me(H),A=!1},d(W){W&&v(e),u&&u.d(),C&&C.d(),D.d();for(let Q=0;Q<f.length;Q+=1)f[Q].d();B&&B.d(),G&&G.d(),H&&H.d(),d=!1,nn(_)}}}function ku(a,e,r){let t,n;Vt(a,Ts,_=>r(11,t=_)),Vt(a,ln,_=>r(12,n=_));let{staticMode:i=!1}=e,{custom:s=!1}=e,{itemName:l=""}=e,{chineseChar:f=""}=e,{type:c=""}=e,{vision:h=""}=e,{weaponType:m=""}=e,{outfitName:p=""}=e,{stelaFortuna:k=!1}=e,{bonusQty:A=0}=e,{rarity:d=4}=e;return a.$$set=_=>{"staticMode"in _&&r(0,i=_.staticMode),"custom"in _&&r(1,s=_.custom),"itemName"in _&&r(2,l=_.itemName),"chineseChar"in _&&r(3,f=_.chineseChar),"type"in _&&r(4,c=_.type),"vision"in _&&r(5,h=_.vision),"weaponType"in _&&r(6,m=_.weaponType),"outfitName"in _&&r(7,p=_.outfitName),"stelaFortuna"in _&&r(8,k=_.stelaFortuna),"bonusQty"in _&&r(9,A=_.bonusQty),"rarity"in _&&r(10,d=_.rarity)},[i,s,l,f,c,h,m,p,k,A,d,t,n]}class Eu extends pt{constructor(e){super(),mt(this,e,ku,Lu,gt,{staticMode:0,custom:1,itemName:2,chineseChar:3,type:4,vision:5,weaponType:6,outfitName:7,stelaFortuna:8,bonusQty:9,rarity:10})}}const No=(a,e="wishitem")=>{const r=window.btoa(a);return`${window.location.origin}/screen/${e}?a=${r}`},T2={_read(a){let[e,r,t,n,i,s,l,f,c]=a.split("/");return r=parseInt(r),n=!!parseInt(n),i=parseInt(i),c=!!parseInt(c),l=!!parseInt(l),{name:e,rarity:r,vision:t,stelaFortuna:n,bonusQty:i,bonusType:s,useOutfit:l,type:f,isNew:c}},single(a){const e=window.atob(a);return this._read(e)},multi(a){return window.atob(a).split("|").map(this._read)}},Ko={_createStringData(a){const{bonusQty:e,bonusType:r,vision:t,rarity:n,name:i,stelaFortuna:s,type:l,isNew:f,useOutfit:c}=a;return`${i}/${n}/${t}/${+!!s}/${e}/${r}/${+!!c}/${l}/${+!!f}`},single(a){const e=this._createStringData(a[0]);return No(e)},multi(a){const r=a.map(this._createStringData).join("|");return No(r,"wishlist")}},jo=(a=[])=>a.length>1?Ko.multi(a):Ko.single(a);function xu(a,e,r){const t=a.slice();return t[23]=e[r],t[25]=r,t}function Fo(a){const e=a.slice(),r=e[8]||e[10];return e[26]=r,e}function Go(a,e,r){const t=a.slice();return t[33]=e[r],t[25]=r,t}function Su(a){const e=a.slice(),r=e[5]||{};e[27]=r.images!==void 0?r.images:{},e[28]=r.hostedImages!==void 0?r.hostedImages:{},e[29]=r.status,e[30]=r.artPosition;const t=e[29]==="owned"?e[27]:e[28];e[31]=t.artURL;const n=e[30]||{};return e[32]=n.wishCard!==void 0?n.wishCard:{},e}function Du(a){let e,r=a[3]("wish.result.new")+"",t;return{c(){e=j("div"),t=vt(r),this.h()},l(n){e=F(n,"DIV",{class:!0});var i=b(e);t=dt(i,r),i.forEach(v),this.h()},h(){o(e,"class","new svelte-yhto5y")},m(n,i){q(n,e,i),y(e,t)},p(n,i){i[0]&8&&r!==(r=n[3]("wish.result.new")+"")&&Yt(t,r)},d(n){n&&v(e)}}}function Tu(a){let e,r,t,n;return{c(){e=j("div"),r=j("img"),this.h()},l(i){e=F(i,"DIV",{class:!0,style:!0});var s=b(e);r=F(s,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),s.forEach(v),this.h()},h(){Pt(r.src,t=a[4][`splash-art/${a[16]?a[17]:a[6]}`])||o(r,"src",t),o(r,"alt",a[6]),o(r,"class","wishpic svelte-yhto5y"),o(r,"crossorigin","anonymous"),o(e,"class","zoomist-image svelte-yhto5y"),o(e,"style",n=xa(a[11]?.wishCard||{},a[1],a[2]))},m(i,s){q(i,e,s),y(e,r)},p(i,s){s[0]&16&&!Pt(r.src,t=i[4][`splash-art/${i[16]?i[17]:i[6]}`])&&o(r,"src",t),s[0]&6&&n!==(n=xa(i[11]?.wishCard||{},i[1],i[2]))&&o(e,"style",n)},d(i){i&&v(e)}}}function Ou(a){let e,r,t;return{c(){e=j("div"),r=j("img"),this.h()},l(n){e=F(n,"DIV",{class:!0});var i=b(e);r=F(i,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),i.forEach(v),this.h()},h(){Pt(r.src,t=a[4][a[6]])||o(r,"src",t),o(r,"alt",a[6]),o(r,"class","wishpic svelte-yhto5y"),o(r,"crossorigin","anonymous"),o(e,"class","zoomist-image weapon svelte-yhto5y")},m(n,i){q(n,e,i),y(e,r)},p(n,i){i[0]&16&&!Pt(r.src,t=n[4][n[6]])&&o(r,"src",t)},d(n){n&&v(e)}}}function Iu(a){let e,r=a[19],t=[];for(let n=0;n<r.length;n+=1)t[n]=qo(Go(a,r,n));return{c(){for(let n=0;n<t.length;n+=1)t[n].c();e=Qt()},l(n){for(let i=0;i<t.length;i+=1)t[i].l(n);e=Qt()},m(n,i){for(let s=0;s<t.length;s+=1)t[s].m(n,i);q(n,e,i)},p(n,i){if(i[0]&1572864){r=n[19];let s;for(s=0;s<r.length;s+=1){const l=Go(n,r,s);t[s]?t[s].p(l,i):(t[s]=qo(l),t[s].c(),t[s].m(e.parentNode,e))}for(;s<t.length;s+=1)t[s].d(1);t.length=r.length}},d(n){rn(t,n),n&&v(e)}}}function Xo(a){let e,r,t,n;return{c(){e=j("div"),r=j("img"),this.h()},l(i){e=F(i,"DIV",{class:!0,style:!0});var s=b(e);r=F(s,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),s.forEach(v),this.h()},h(){Pt(r.src,t=a[31])||o(r,"src",t),o(r,"alt",a[6]),o(r,"class","wishpic svelte-yhto5y"),o(r,"crossorigin","anonymous"),o(e,"class","zoomist-image svelte-yhto5y"),o(e,"style",n=xa(a[32],a[1],a[2]))},m(i,s){q(i,e,s),y(e,r)},p(i,s){s[0]&32&&!Pt(r.src,t=i[31])&&o(r,"src",t),s[0]&38&&n!==(n=xa(i[32],i[1],i[2]))&&o(e,"style",n)},d(i){i&&v(e)}}}function qo(a){let e,r=a[33]+"",t;return{c(){e=j("p"),t=vt(r),this.h()},l(n){e=F(n,"P",{id:!0,style:!0,class:!0});var i=b(e);t=dt(i,r),i.forEach(v),this.h()},h(){o(e,"id","chinese-char"),o(e,"style",a[20](a[19].length,a[25])),o(e,"class","svelte-yhto5y")},m(n,i){q(n,e,i),y(e,t)},p:de,d(n){n&&v(e)}}}function Pu(a){let e,r;return e=new x1({props:{name:a[26]}}),{c(){Xt(e.$$.fragment)},l(t){ir(e.$$.fragment,t)},m(t,n){qt(e,t,n),r=!0},p:de,i(t){r||(se(e.$$.fragment,t),r=!0)},o(t){me(e.$$.fragment,t),r=!1},d(t){Zt(e,t)}}}function Mu(a){let e,r=Array(a[7]),t=[];for(let n=0;n<r.length;n+=1)t[n]=Ru(xu(a,r,n));return{c(){e=j("div");for(let n=0;n<t.length;n+=1)t[n].c();this.h()},l(n){e=F(n,"DIV",{class:!0});var i=b(e);for(let s=0;s<t.length;s+=1)t[s].l(i);i.forEach(v),this.h()},h(){o(e,"class","star")},m(n,i){q(n,e,i);for(let s=0;s<t.length;s+=1)t[s].m(e,null)},p:de,d(n){n&&v(e),rn(t,n)}}}function Ru(a){let e;return{c(){e=j("div"),this.h()},l(r){e=F(r,"DIV",{class:!0}),b(e).forEach(v),this.h()},h(){o(e,"class","i gi-star svelte-yhto5y")},m(r,t){q(r,e,t)},p:de,d(r){r&&v(e)}}}function Wu(a){let e,r,t,n,i,s;return r=new Nn({props:{type:a[14],width:"80%"}}),{c(){e=j("div"),Xt(r.$$.fragment),t=ge(),n=j("span"),i=vt(a[15]),this.h()},l(l){e=F(l,"DIV",{class:!0});var f=b(e);ir(r.$$.fragment,f),t=_e(f),n=F(f,"SPAN",{class:!0});var c=b(n);i=dt(c,a[15]),c.forEach(v),f.forEach(v),this.h()},h(){o(n,"class","svelte-yhto5y"),o(e,"class","masterless "+a[14]+" svelte-yhto5y")},m(l,f){q(l,e,f),qt(r,e,null),y(e,t),y(e,n),y(n,i),s=!0},p:de,i(l){s||(se(r.$$.fragment,l),s=!0)},o(l){me(r.$$.fragment,l),s=!1},d(l){l&&v(e),Zt(r)}}}function zu(a){let e,r,t;return{c(){e=j("div"),r=j("img"),this.h()},l(n){e=F(n,"DIV",{class:!0});var i=b(e);r=F(i,"IMG",{src:!0,alt:!0,class:!0}),i.forEach(v),this.h()},h(){Pt(r.src,t=a[4][`stella-fortuna-${a[7]}star.webp`])||o(r,"src",t),o(r,"alt","Stella Fortuna"),o(r,"class","svelte-yhto5y"),o(e,"class","stella stella"+a[7]+" svelte-yhto5y")},m(n,i){q(n,e,i),y(e,r)},p(n,i){i[0]&16&&!Pt(r.src,t=n[4][`stella-fortuna-${n[7]}star.webp`])&&o(r,"src",t)},d(n){n&&v(e)}}}function Vu(a){let e,r;return{c(){e=j("div"),this.h()},l(t){e=F(t,"DIV",{class:!0}),b(e).forEach(v),this.h()},h(){o(e,"class","cover svelte-yhto5y")},m(t,n){q(t,e,n)},i(t){r||Ka(()=>{r=Ds(e,ja,{delay:1e3,duration:1e3}),r.start()})},o:de,d(t){t&&v(e)}}}function Bu(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A,d,_,u=a[13]&&Du(a);function C(W,Q){return W[18]?Xo:W[9]==="member"?Iu:W[9]==="weapon"?Ou:Tu}function L(W,Q){return Q===Xo?Su(W):W}let w=C(a),D=w(L(a,w)),N=(a[13]||a[9]==="weapon")&&Pu(Fo(a)),Z=(a[13]&&a[9]==="character"||a[9]==="weapon")&&Mu(a),B=a[9]==="character"&&!a[13]&&Wu(a),G=a[12]&&zu(a),H=a[9]==="character"&&!a[13]&&Vu();return{c(){e=j("div"),u&&u.c(),r=ge(),t=j("div"),n=j("div"),D.c(),i=ge(),s=j("div"),l=j("div"),N&&N.c(),f=ge(),Z&&Z.c(),c=ge(),B&&B.c(),h=ge(),G&&G.c(),p=ge(),H&&H.c(),this.h()},l(W){e=F(W,"DIV",{id:!0,class:!0});var Q=b(e);u&&u.l(Q),r=_e(Q),t=F(Q,"DIV",{class:!0});var Y=b(t);n=F(Y,"DIV",{class:!0,style:!0});var le=b(n);D.l(le),i=_e(le),s=F(le,"DIV",{class:!0});var fe=b(s);l=F(fe,"DIV",{class:!0,style:!0});var re=b(l);N&&N.l(re),re.forEach(v),f=_e(fe),Z&&Z.l(fe),c=_e(fe),B&&B.l(fe),h=_e(fe),G&&G.l(fe),fe.forEach(v),p=_e(le),H&&H.l(le),le.forEach(v),Y.forEach(v),Q.forEach(v),this.h()},h(){o(l,"class","icon svelte-yhto5y"),x(l,"width","100%"),o(s,"class","info svelte-yhto5y"),o(n,"class","zoomist-wrapper item-content svelte-yhto5y"),x(n,"--bg","url("+a[4]["resultcard-bg.webp"]+")"),o(t,"class","zoomist-container item-body "+(a[8]||"")+" svelte-yhto5y"),o(e,"id",k="wish"+a[0]),o(e,"class","item star"+a[7]+" "+a[9]+" svelte-yhto5y"),Ot(e,"duplicate",!a[13])},m(W,Q){q(W,e,Q),u&&u.m(e,null),y(e,r),y(e,t),y(t,n),D.m(n,null),y(n,i),y(n,s),y(s,l),N&&N.m(l,null),y(s,f),Z&&Z.m(s,null),y(s,c),B&&B.m(s,null),y(s,h),G&&G.m(s,null),y(n,p),H&&H.m(n,null),A=!0,d||(_=ka(e,"mousedown",wf(a[22])),d=!0)},p(W,Q){W[13]&&u.p(W,Q),D.p(L(W,w),Q),(W[13]||W[9]==="weapon")&&N.p(Fo(W),Q),(W[13]&&W[9]==="character"||W[9]==="weapon")&&Z.p(W,Q),W[9]==="character"&&!W[13]&&B.p(W,Q),W[12]&&G.p(W,Q),(!A||Q[0]&16)&&x(n,"--bg","url("+W[4]["resultcard-bg.webp"]+")"),(!A||Q[0]&1&&k!==(k="wish"+W[0]))&&o(e,"id",k)},i(W){A||(se(N),se(B),m||Ka(()=>{m=Ds(s,ja,{delay:1e3}),m.start()}),se(H),A=!0)},o(W){me(N),me(B),A=!1},d(W){W&&v(e),u&&u.d(),D.d(),N&&N.d(),Z&&Z.d(),B&&B.d(),G&&G.d(),H&&H.d(),d=!1,_()}}}function Uu(a,e,r){let t,n,i;Vt(a,Ts,H=>r(3,t=H)),Vt(a,ln,H=>r(4,n=H)),Vt(a,y1,H=>r(5,i=H));let{index:s}=e,{clientHeight:l}=e,{clientWidth:f}=e,{data:c={}}=e;const{name:h,rarity:m,weaponType:p,type:k,vision:A,offset:d,stelaFortuna:_,isNew:u,bonusType:C,bonusQty:L,useOutfit:w,outfitName:D,custom:N,chineseChar:Z}=c,B=(H,W)=>`top: ${Math.floor(100/(H+1)*(W+1))}%;`,G=()=>ea();return a.$$set=H=>{"index"in H&&r(0,s=H.index),"clientHeight"in H&&r(1,l=H.clientHeight),"clientWidth"in H&&r(2,f=H.clientWidth),"data"in H&&r(21,c=H.data)},[s,l,f,t,n,i,h,m,p,k,A,d,_,u,C,L,w,D,N,Z,B,c,G]}class Hu extends pt{constructor(e){super(),mt(this,e,Uu,Bu,gt,{index:0,clientHeight:1,clientWidth:2,data:21},null,[-1,-1])}}function Zo(a,e,r){const t=a.slice();return t[12]=e[r].rarity,t[13]=e[r].type,t[14]=e[r].isNew,t[16]=r,t}function Yo(a,e,r){const t=a.slice();return t[17]=e[r],t[16]=r,t}function Qo(a){let e,r,t,n,i,s;return r=new Hu({props:{data:a[17],index:a[16],clientHeight:a[1],clientWidth:a[2]}}),{c(){e=j("div"),Xt(r.$$.fragment),t=ge(),this.h()},l(l){e=F(l,"DIV",{class:!0,style:!0});var f=b(e);ir(r.$$.fragment,f),t=_e(f),f.forEach(v),this.h()},h(){o(e,"class","item-box svelte-13e6w8v"),x(e,"animation-delay",.5+a[16]*.1+"s"),Ot(e,"animate",!a[0])},m(l,f){q(l,e,f),qt(r,e,null),y(e,t),n=!0,i||(s=It(Vr.call(null,e)),i=!0)},p(l,f){const c={};f&16&&(c.data=l[17]),f&2&&(c.clientHeight=l[1]),f&4&&(c.clientWidth=l[2]),r.$set(c),f&1&&Ot(e,"animate",!l[0])},i(l){n||(se(r.$$.fragment,l),n=!0)},o(l){me(r.$$.fragment,l),n=!1},d(l){l&&v(e),Zt(r),i=!1,s()}}}function Jo(a){let e,r=a[5]("wish.result.convertion")+"",t;return{c(){e=j("span"),t=vt(r),this.h()},l(n){e=F(n,"SPAN",{class:!0});var i=b(e);t=dt(i,r),i.forEach(v),this.h()},h(){o(e,"class","convertion svelte-13e6w8v")},m(n,i){q(n,e,i),y(e,t)},p(n,i){i&32&&r!==(r=n[5]("wish.result.convertion")+"")&&Yt(t,r)},d(n){n&&v(e)}}}function $o(a){let e,r,t,n,i,s=a[13]==="character"&&!a[14]&&Jo(a);return{c(){e=j("div"),s&&s.c(),r=ge(),this.h()},l(l){e=F(l,"DIV",{class:!0,style:!0});var f=b(e);s&&s.l(f),r=_e(f),f.forEach(v),this.h()},h(){o(e,"class",t="shadow shadow"+a[12]+" svelte-13e6w8v"),x(e,"animation-delay",.5+a[16]*.1+"s"),Ot(e,"animate",!a[0])},m(l,f){q(l,e,f),s&&s.m(e,null),y(e,r),n||(i=It(Vr.call(null,e)),n=!0)},p(l,f){l[13]==="character"&&!l[14]?s?s.p(l,f):(s=Jo(l),s.c(),s.m(e,r)):s&&(s.d(1),s=null),f&16&&t!==(t="shadow shadow"+l[12]+" svelte-13e6w8v")&&o(e,"class",t),f&17&&Ot(e,"animate",!l[0])},d(l){l&&v(e),s&&s.d(),n=!1,i()}}}function Nu(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A=a[4],d=[];for(let L=0;L<A.length;L+=1)d[L]=Qo(Yo(a,A,L));const _=L=>me(d[L],1,1,()=>{d[L]=null});let u=a[4],C=[];for(let L=0;L<u.length;L+=1)C[L]=$o(Zo(a,u,L));return{c(){e=M("svg"),r=M("clipPath"),t=M("path"),n=ge(),i=j("div"),s=j("div"),l=j("div");for(let L=0;L<d.length;L+=1)d[L].c();c=ge(),h=j("div");for(let L=0;L<C.length;L+=1)C[L].c();this.h()},l(L){e=R(L,"svg",{viewBox:!0,height:!0,width:!0,style:!0});var w=b(e);r=R(w,"clipPath",{id:!0,transform:!0,clipPathUnits:!0});var D=b(r);t=R(D,"path",{d:!0}),b(t).forEach(v),D.forEach(v),w.forEach(v),n=_e(L),i=F(L,"DIV",{class:!0});var N=b(i);s=F(N,"DIV",{class:!0});var Z=b(s);l=F(Z,"DIV",{class:!0,style:!0});var B=b(l);for(let H=0;H<d.length;H+=1)d[H].l(B);B.forEach(v),c=_e(Z),h=F(Z,"DIV",{class:!0,style:!0});var G=b(h);for(let H=0;H<C.length;H+=1)C[H].l(G);G.forEach(v),Z.forEach(v),N.forEach(v),this.h()},h(){o(t,"d",`M734 6419 c-25 -29 -100 -76 -199 -127 -125 -64 -165 -117 -165 -217
-			0 -22 -3 -50 -6 -63 -9 -33 -83 -72 -155 -82 -68 -10 -79 -19 -79 -67 0 -24
-			-7 -37 -32 -54 -18 -12 -43 -34 -55 -48 l-22 -26 -1 -2502 c0 -1542 4 -2503 9
-			-2503 5 0 13 -9 16 -20 4 -11 23 -28 43 -38 32 -15 37 -22 40 -57 4 -49 23
-			-65 76 -65 47 0 113 -28 140 -58 12 -14 21 -45 26 -90 13 -117 54 -164 215
-			-250 55 -28 114 -66 132 -82 18 -17 35 -30 39 -30 4 0 23 15 44 34 21 19 80
-			56 131 82 153 79 197 131 210 252 4 39 13 70 25 84 27 30 93 58 140 58 53 0
-			72 16 76 65 3 35 8 42 40 57 20 10 39 27 43 38 3 11 11 20 16 20 5 0 9 961 9
-			2503 l-1 2502 -22 26 c-12 14 -37 36 -54 48 -26 17 -33 30 -33 54 0 48 -11 57
-			-79 67 -72 10 -146 49 -155 82 -3 13 -6 41 -6 63 0 100 -40 153 -165 217 -106
-			54 -153 84 -191 119 l-30 29 -20 -21z`),o(r,"id","wishframe"),o(r,"transform","scale(0.00066225165562914 0.00015455950540958)"),o(r,"clipPathUnits","objectBoundingBox"),o(e,"viewBox","0 0 151.000000 656.000000"),o(e,"height","0"),o(e,"width","0"),x(e,"position","absolute"),o(l,"class","wishlist svelte-13e6w8v"),x(l,"--card-height",a[1]+"px"),Ka(()=>a[7].call(l)),o(h,"class","shadows svelte-13e6w8v"),x(h,"--card-height",a[1]+"px"),o(s,"class","container animate svelte-13e6w8v"),o(i,"class","scroll svelte-13e6w8v")},m(L,w){q(L,e,w),y(e,r),y(r,t),q(L,n,w),q(L,i,w),y(i,s),y(s,l);for(let D=0;D<d.length;D+=1)d[D].m(l,null);f=g1(l,a[7].bind(l)),y(s,c),y(s,h);for(let D=0;D<C.length;D+=1)C[D].m(h,null);a[8](i),m=!0,p||(k=It(Vr.call(null,s)),p=!0)},p(L,[w]){if(w&23){A=L[4];let D;for(D=0;D<A.length;D+=1){const N=Yo(L,A,D);d[D]?(d[D].p(N,w),se(d[D],1)):(d[D]=Qo(N),d[D].c(),se(d[D],1),d[D].m(l,null))}for(sr(),D=A.length;D<d.length;D+=1)_(D);nr()}if((!m||w&2)&&x(l,"--card-height",L[1]+"px"),w&49){u=L[4];let D;for(D=0;D<u.length;D+=1){const N=Zo(L,u,D);C[D]?C[D].p(N,w):(C[D]=$o(N),C[D].c(),C[D].m(h,null))}for(;D<C.length;D+=1)C[D].d(1);C.length=u.length}(!m||w&2)&&x(h,"--card-height",L[1]+"px")},i(L){if(!m){for(let w=0;w<A.length;w+=1)se(d[w]);m=!0}},o(L){d=d.filter(Boolean);for(let w=0;w<d.length;w+=1)me(d[w]);m=!1},d(L){L&&v(e),L&&v(n),L&&v(i),rn(d,L),f(),rn(C,L),a[8](null),p=!1,k()}}}function Ku(a,e,r){let t;Vt(a,Ts,d=>r(5,t=d));let{standalone:n=!1}=e,{list:i=[]}=e,s,l,f;const c=(d,_)=>d.type>_.type?1:_.type>d.type?-1:0,h=(d,_)=>d.name>_.name?1:d.name<_.name?-1:0;let m=[];const p=d=>{const _=C=>d.filter(({rarity:L})=>L===C).sort(h).sort((L,w)=>w.isNew-L.isNew).sort(c),u=d.filter(({rarity:C})=>C===3);r(4,m=[..._(5),..._(4),...u])};_1(async()=>{r(2,l=s*7/30),rc(f,{sizeAutoCapable:!1,className:"os-theme-light",scrollbars:{visibility:"auto",autoHide:"leave"}}),!n&&ea("resultList")});function k(){s=this.clientHeight,r(1,s)}function A(d){Cf[d?"unshift":"push"](()=>{f=d,r(3,f)})}return a.$$set=d=>{"standalone"in d&&r(0,n=d.standalone),"list"in d&&r(6,i=d.list)},a.$$.update=()=>{a.$$.dirty&64&&p(i)},[n,s,l,f,m,t,i,k,A]}class ju extends pt{constructor(e){super(),mt(this,e,Ku,Nu,gt,{standalone:0,list:6})}}function e1(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A;return{c(){e=j("div"),t=ge(),n=j("div"),s=ge(),l=j("div"),c=ge(),h=j("div"),p=ge(),k=j("div"),this.h()},l(d){e=F(d,"DIV",{class:!0}),b(e).forEach(v),t=_e(d),n=F(d,"DIV",{class:!0,style:!0}),b(n).forEach(v),s=_e(d),l=F(d,"DIV",{class:!0,style:!0}),b(l).forEach(v),c=_e(d),h=F(d,"DIV",{class:!0,style:!0}),b(h).forEach(v),p=_e(d),k=F(d,"DIV",{class:!0,style:!0}),b(k).forEach(v),this.h()},h(){o(e,"class",r="star"+a[1]+" orbs in5 svelte-gc365d"),o(n,"class",i="in star"+a[1]+" orbs in1 svelte-gc365d"),x(n,"animation-duration","1s"),o(l,"class",f="in star"+a[1]+" orbs in2 svelte-gc365d"),x(l,"animation-duration","1.2s"),o(h,"class",m="in star"+a[1]+" orbs in3 svelte-gc365d"),x(h,"animation-duration","1.1s"),o(k,"class",A="in star"+a[1]+" orbs in4 svelte-gc365d"),x(k,"animation-duration",".75s")},m(d,_){q(d,e,_),q(d,t,_),q(d,n,_),q(d,s,_),q(d,l,_),q(d,c,_),q(d,h,_),q(d,p,_),q(d,k,_)},p(d,_){_&2&&r!==(r="star"+d[1]+" orbs in5 svelte-gc365d")&&o(e,"class",r),_&2&&i!==(i="in star"+d[1]+" orbs in1 svelte-gc365d")&&o(n,"class",i),_&2&&f!==(f="in star"+d[1]+" orbs in2 svelte-gc365d")&&o(l,"class",f),_&2&&m!==(m="in star"+d[1]+" orbs in3 svelte-gc365d")&&o(h,"class",m),_&2&&A!==(A="in star"+d[1]+" orbs in4 svelte-gc365d")&&o(k,"class",A)},d(d){d&&v(e),d&&v(t),d&&v(n),d&&v(s),d&&v(l),d&&v(c),d&&v(h),d&&v(p),d&&v(k)}}}function t1(a){let e,r,t,n,i,s,l,f,c,h;return{c(){e=j("div"),t=ge(),n=j("div"),s=ge(),l=j("div"),this.h()},l(m){e=F(m,"DIV",{class:!0,style:!0}),b(e).forEach(v),t=_e(m),n=F(m,"DIV",{class:!0,style:!0}),b(n).forEach(v),s=_e(m),l=F(m,"DIV",{class:!0,style:!0}),b(l).forEach(v),this.h()},h(){o(e,"class",r="out star"+a[1]+" orbs out1 svelte-gc365d"),x(e,"animation-duration","0.8s"),x(e,"animation-delay",".1s"),o(n,"class",i="out star"+a[1]+" orbs out2 svelte-gc365d"),x(n,"animation-duration","2s"),o(l,"class",f="out star"+a[1]+" orbs out3 svelte-gc365d"),x(l,"animation-duration","1.2s"),x(l,"animation-delay",".1s")},m(m,p){q(m,e,p),q(m,t,p),q(m,n,p),q(m,s,p),q(m,l,p),c||(h=[It(a[2].call(null,e)),It(a[2].call(null,n)),It(a[2].call(null,l))],c=!0)},p(m,p){p&2&&r!==(r="out star"+m[1]+" orbs out1 svelte-gc365d")&&o(e,"class",r),p&2&&i!==(i="out star"+m[1]+" orbs out2 svelte-gc365d")&&o(n,"class",i),p&2&&f!==(f="out star"+m[1]+" orbs out3 svelte-gc365d")&&o(l,"class",f)},d(m){m&&v(e),m&&v(t),m&&v(n),m&&v(s),m&&v(l),c=!1,nn(h)}}}function Fu(a){let e,r,t=a[0]==="in"&&e1(a),n=a[0]==="out"&&t1(a);return{c(){t&&t.c(),e=ge(),n&&n.c(),r=Qt()},l(i){t&&t.l(i),e=_e(i),n&&n.l(i),r=Qt()},m(i,s){t&&t.m(i,s),q(i,e,s),n&&n.m(i,s),q(i,r,s)},p(i,[s]){i[0]==="in"?t?t.p(i,s):(t=e1(i),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null),i[0]==="out"?n?n.p(i,s):(n=t1(i),n.c(),n.m(r.parentNode,r)):n&&(n.d(1),n=null)},i:de,o:de,d(i){t&&t.d(i),i&&v(e),n&&n.d(i),i&&v(r)}}}function Gu(a,e,r){let{type:t=""}=e,{rarity:n=0}=e;const i=s=>{s.addEventListener("animationend",()=>{s?.remove()})};return a.$$set=s=>{"type"in s&&r(0,t=s.type),"rarity"in s&&r(1,n=s.rarity)},[t,n,i]}class R1 extends pt{constructor(e){super(),mt(this,e,Gu,Fu,gt,{type:0,rarity:1})}}function r1(a){let e,r,t,n,i,s,l=a[4]("extra")+"",f,c,h=a[4](`shop.item.${a[1]}`)+"",m,p,k,A,d,_,u,C,L;return t=new Nn({props:{type:a[1],width:a[3]?"50px":"60px"}}),{c(){e=j("div"),r=j("div"),Xt(t.$$.fragment),n=ge(),i=j("div"),s=j("span"),f=vt(l),c=ge(),m=vt(h),p=ge(),k=j("br"),A=vt(" \xD7"),d=vt(a[0]),this.h()},l(w){e=F(w,"DIV",{class:!0});var D=b(e);r=F(D,"DIV",{class:!0});var N=b(r);ir(t.$$.fragment,N),N.forEach(v),n=_e(D),i=F(D,"DIV",{class:!0});var Z=b(i);s=F(Z,"SPAN",{class:!0});var B=b(s);f=dt(B,l),B.forEach(v),c=_e(Z),m=dt(Z,h),p=_e(Z),k=F(Z,"BR",{}),A=dt(Z," \xD7"),d=dt(Z,a[0]),Z.forEach(v),D.forEach(v),this.h()},h(){o(r,"class","icon svelte-oj7u6a"),o(s,"class","svelte-oj7u6a"),o(i,"class","text svelte-oj7u6a"),o(e,"class",_="starfate anim "+a[1]+" svelte-oj7u6a")},m(w,D){q(w,e,D),y(e,r),qt(t,r,null),y(e,n),y(e,i),y(i,s),y(s,f),y(i,c),y(i,m),y(i,p),y(i,k),y(i,A),y(i,d),u=!0,C||(L=It(Vr.call(null,e)),C=!0)},p(w,D){const N={};D&2&&(N.type=w[1]),D&8&&(N.width=w[3]?"50px":"60px"),t.$set(N),(!u||D&16)&&l!==(l=w[4]("extra")+"")&&Yt(f,l),(!u||D&18)&&h!==(h=w[4](`shop.item.${w[1]}`)+"")&&Yt(m,h),(!u||D&1)&&Yt(d,w[0]),(!u||D&2&&_!==(_="starfate anim "+w[1]+" svelte-oj7u6a"))&&o(e,"class",_)},i(w){u||(se(t.$$.fragment,w),u=!0)},o(w){me(t.$$.fragment,w),u=!1},d(w){w&&v(e),Zt(t),C=!1,L()}}}function Xu(a){let e,r,t=a[2]==="weapon"&&a[0]>1&&r1(a);return{c(){t&&t.c(),e=Qt()},l(n){t&&t.l(n),e=Qt()},m(n,i){t&&t.m(n,i),q(n,e,i),r=!0},p(n,[i]){n[2]==="weapon"&&n[0]>1?t?(t.p(n,i),i&5&&se(t,1)):(t=r1(n),t.c(),se(t,1),t.m(e.parentNode,e)):t&&(sr(),me(t,1,1,()=>{t=null}),nr())},i(n){r||(se(t),r=!0)},o(n){me(t),r=!1},d(n){t&&t.d(n),n&&v(e)}}}function qu(a,e,r){let t,n;Vt(a,b1,f=>r(3,t=f)),Vt(a,Ts,f=>r(4,n=f));let{bonusQty:i=0}=e,{bonusType:s="stardust"}=e,{type:l}=e;return a.$$set=f=>{"bonusQty"in f&&r(0,i=f.bonusQty),"bonusType"in f&&r(1,s=f.bonusType),"type"in f&&r(2,l=f.type)},[i,s,l,t,n]}class Zu extends pt{constructor(e){super(),mt(this,e,qu,Xu,gt,{bonusQty:0,bonusType:1,type:2})}}var W1={exports:{}};(function(a,e){(function(r,t){t()})(xs,function(){function r(c,h){return typeof h>"u"?h={autoBom:!1}:typeof h!="object"&&(console.warn("Deprecated: Expected third argument to be a object"),h={autoBom:!h}),h.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(c.type)?new Blob(["\uFEFF",c],{type:c.type}):c}function t(c,h,m){var p=new XMLHttpRequest;p.open("GET",c),p.responseType="blob",p.onload=function(){f(p.response,h,m)},p.onerror=function(){console.error("could not download file")},p.send()}function n(c){var h=new XMLHttpRequest;h.open("HEAD",c,!1);try{h.send()}catch{}return 200<=h.status&&299>=h.status}function i(c){try{c.dispatchEvent(new MouseEvent("click"))}catch{var h=document.createEvent("MouseEvents");h.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),c.dispatchEvent(h)}}var s=typeof window=="object"&&window.window===window?window:typeof self=="object"&&self.self===self?self:typeof xs=="object"&&xs.global===xs?xs:void 0,l=s.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),f=s.saveAs||(typeof window!="object"||window!==s?function(){}:"download"in HTMLAnchorElement.prototype&&!l?function(c,h,m){var p=s.URL||s.webkitURL,k=document.createElement("a");h=h||c.name||"download",k.download=h,k.rel="noopener",typeof c=="string"?(k.href=c,k.origin===location.origin?i(k):n(k.href)?t(c,h,m):i(k,k.target="_blank")):(k.href=p.createObjectURL(c),setTimeout(function(){p.revokeObjectURL(k.href)},4e4),setTimeout(function(){i(k)},0))}:"msSaveOrOpenBlob"in navigator?function(c,h,m){if(h=h||c.name||"download",typeof c!="string")navigator.msSaveOrOpenBlob(r(c,m),h);else if(n(c))t(c,h,m);else{var p=document.createElement("a");p.href=c,p.target="_blank",setTimeout(function(){i(p)})}}:function(c,h,m,p){if(p=p||open("","_blank"),p&&(p.document.title=p.document.body.innerText="downloading..."),typeof c=="string")return t(c,h,m);var k=c.type==="application/octet-stream",A=/constructor/i.test(s.HTMLElement)||s.safari,d=/CriOS\/[\d]+/.test(navigator.userAgent);if((d||k&&A||l)&&typeof FileReader<"u"){var _=new FileReader;_.onloadend=function(){var L=_.result;L=d?L:L.replace(/^data:[^;]*;/,"data:attachment/file;"),p?p.location.href=L:location=L,p=null},_.readAsDataURL(c)}else{var u=s.URL||s.webkitURL,C=u.createObjectURL(c);p?p.location=C:location.href=C,p=null,setTimeout(function(){u.revokeObjectURL(C)},4e4)}});s.saveAs=f.saveAs=f,a.exports=f})})(W1);function a1(a){let e,r,t,n,i,s,l,f,c,h,m,p;return{c(){e=j("div"),r=ge(),t=j("button"),n=j("i"),i=ge(),s=j("button"),l=j("i"),f=ge(),c=j("button"),h=j("i"),this.h()},l(k){e=F(k,"DIV",{class:!0}),b(e).forEach(v),r=_e(k),t=F(k,"BUTTON",{class:!0,title:!0});var A=b(t);n=F(A,"I",{class:!0}),b(n).forEach(v),A.forEach(v),i=_e(k),s=F(k,"BUTTON",{class:!0,title:!0});var d=b(s);l=F(d,"I",{class:!0}),b(l).forEach(v),d.forEach(v),f=_e(k),c=F(k,"BUTTON",{class:!0,title:!0});var _=b(c);h=F(_,"I",{class:!0}),b(h).forEach(v),_.forEach(v),this.h()},h(){o(e,"class","divider svelte-1l9q1y3"),o(n,"class","gi-twitter"),o(t,"class","save svelte-1l9q1y3"),o(t,"title","Share to Twitter"),o(l,"class","gi-facebook"),o(s,"class","save svelte-1l9q1y3"),o(s,"title","Share to Facebook"),o(h,"class","gi-dot-3"),o(c,"class","save svelte-1l9q1y3"),o(c,"title","More Options")},m(k,A){q(k,e,A),q(k,r,A),q(k,t,A),y(t,n),q(k,i,A),q(k,s,A),y(s,l),q(k,f,A),q(k,c,A),y(c,h),m||(p=[ka(t,"click",a[6]),ka(s,"click",a[5]),ka(c,"click",a[7])],m=!0)},p:de,d(k){k&&v(e),k&&v(r),k&&v(t),k&&v(i),k&&v(s),k&&v(f),k&&v(c),m=!1,nn(p)}}}function s1(a){let e,r,t,n,i;return{c(){e=j("div"),r=vt("Copied to Clipboard"),this.h()},l(s){e=F(s,"DIV",{class:!0});var l=b(e);r=dt(l,"Copied to Clipboard"),l.forEach(v),this.h()},h(){o(e,"class","toast svelte-1l9q1y3")},m(s,l){q(s,e,l),y(e,r),i=!0},i(s){i||(Ka(()=>{n&&n.end(1),t=Ds(e,Sf,{y:10}),t.start()}),i=!0)},o(s){t&&t.invalidate(),n=rl(e,ja,{}),i=!1},d(s){s&&v(e),s&&n&&n.end()}}}function Yu(a){let e,r,t,n,i,s,l,f,c,h,m,p,k,A,d,_,u,C,L,w=a[0]&&a1(a),D=a[1]&&s1();return{c(){e=j("div"),r=j("button"),t=j("i"),n=ge(),i=j("div"),s=j("div"),l=j("button"),f=j("i"),c=ge(),w&&w.c(),h=ge(),m=j("picture"),p=j("img"),d=ge(),D&&D.c(),this.h()},l(N){e=F(N,"DIV",{class:!0});var Z=b(e);r=F(Z,"BUTTON",{class:!0});var B=b(r);t=F(B,"I",{class:!0}),b(t).forEach(v),B.forEach(v),n=_e(Z),i=F(Z,"DIV",{class:!0});var G=b(i);s=F(G,"DIV",{class:!0});var H=b(s);l=F(H,"BUTTON",{class:!0,title:!0});var W=b(l);f=F(W,"I",{class:!0}),b(f).forEach(v),W.forEach(v),c=_e(H),w&&w.l(H),H.forEach(v),h=_e(G),m=F(G,"PICTURE",{class:!0});var Q=b(m);p=F(Q,"IMG",{src:!0,alt:!0,class:!0}),Q.forEach(v),G.forEach(v),d=_e(Z),D&&D.l(Z),Z.forEach(v),this.h()},h(){o(t,"class","gi-close"),o(r,"class","close svelte-1l9q1y3"),o(f,"class","gi-save"),o(l,"class","save svelte-1l9q1y3"),o(l,"title","Save To Your Device"),o(s,"class","letshare svelte-1l9q1y3"),Pt(p.src,k=a[2])||o(p,"src",k),o(p,"alt","screenshot"),o(p,"class","svelte-1l9q1y3"),o(m,"class","svelte-1l9q1y3"),o(i,"class","wrapper svelte-1l9q1y3"),o(e,"class","screenshot svelte-1l9q1y3")},m(N,Z){q(N,e,Z),y(e,r),y(r,t),y(e,n),y(e,i),y(i,s),y(s,l),y(l,f),y(s,c),w&&w.m(s,null),y(i,h),y(i,m),y(m,p),y(e,d),D&&D.m(e,null),u=!0,C||(L=[ka(r,"click",a[3]),ka(l,"click",a[4]),ka(p,"contextmenu",Af(a[11]))],C=!0)},p(N,[Z]){N[0]?w?w.p(N,Z):(w=a1(N),w.c(),w.m(s,null)):w&&(w.d(1),w=null),(!u||Z&4&&!Pt(p.src,k=N[2]))&&o(p,"src",k),N[1]?D?Z&2&&se(D,1):(D=s1(),D.c(),se(D,1),D.m(e,null)):D&&(sr(),me(D,1,1,()=>{D=null}),nr())},i(N){u||(A||Ka(()=>{A=Ds(i,xf,{opacity:1,start:1.1}),A.start()}),se(D),_&&_.end(1),u=!0)},o(N){me(D),_=rl(e,ja,{duration:200}),u=!1},d(N){N&&v(e),w&&w.d(),D&&D.d(),N&&_&&_.end(),C=!1,nn(L)}}}let Qi="Come and try this Genshin Impact Wish Simulator!";function Qu(a,e,r){let t,n,i;Vt(a,b1,w=>r(13,i=w));let{canshare:s=!1}=e,{isFirstTime:l=!1}=e,{shareURL:f=""}=e,{blob:c}=e,h=!1;const m=Ss("closeShot"),p=Ss("firsTimeShare"),k=()=>{!l||p()},A=window.URL||window.webkitURL,d=()=>{ea(),W1.exports.saveAs(c,`WishSimulator.App - ${new Date().toLocaleString()}.png`),k()},_=()=>{ea();const w=`https://www.facebook.com/sharer/sharer.php?u=${t}&quote=${Qi}`;window.open(w,"_blank"),k()},u=()=>{ea();const w=`https://twitter.com/intent/tweet?text=${Qi}&url=${t}`;window.open(w,"_blank"),k()},C=async()=>{try{ea();const w={title:zf,text:Qi,url:t},D=new File([c],`WishSimulator.App - ${new Date().toLocaleString()}.png`,{type:c.type,lastModified:new Date().getTime()}),N={...w,files:[D]},B=navigator?.canShare(N)&&i?N:w;await navigator.share(B),k()}catch(w){console.error("Abort Sharing",w)}};function L(w){Lf.call(this,a,w)}return a.$$set=w=>{"canshare"in w&&r(0,s=w.canshare),"isFirstTime"in w&&r(8,l=w.isFirstTime),"shareURL"in w&&r(9,f=w.shareURL),"blob"in w&&r(10,c=w.blob)},a.$$.update=()=>{a.$$.dirty&512&&(t=f||window.location.origin),a.$$.dirty&1024&&r(2,n=A.createObjectURL(c))},[s,h,n,m,d,_,u,C,l,f,c,L]}class Ju extends pt{constructor(e){super(),mt(this,e,Qu,Yu,gt,{canshare:0,isFirstTime:8,shareURL:9,blob:10})}}function n1(a){let e,r;return e=new Ju({props:{isFirstTime:a[6],blob:a[2],shareURL:a[0],canshare:a[1]}}),{c(){Xt(e.$$.fragment)},l(t){ir(e.$$.fragment,t)},m(t,n){qt(e,t,n),r=!0},p(t,n){const i={};n&64&&(i.isFirstTime=t[6]),n&4&&(i.blob=t[2]),n&1&&(i.shareURL=t[0]),n&2&&(i.canshare=t[1]),e.$set(i)},i(t){r||(se(e.$$.fragment,t),r=!0)},o(t){me(e.$$.fragment,t),r=!1},d(t){Zt(e,t)}}}function i1(a){let e,r,t,n,i,s=a[7]("capturing")+"",l,f,c,h;return{c(){e=j("div"),r=j("div"),t=j("div"),n=ge(),i=j("div"),l=vt(s),f=vt(".."),this.h()},l(m){e=F(m,"DIV",{class:!0});var p=b(e);r=F(p,"DIV",{class:!0});var k=b(r);t=F(k,"DIV",{class:!0}),b(t).forEach(v),n=_e(k),i=F(k,"DIV",{class:!0});var A=b(i);l=dt(A,s),f=dt(A,".."),A.forEach(v),k.forEach(v),p.forEach(v),this.h()},h(){o(t,"class","loading svelte-122rc28"),o(i,"class","text"),o(r,"class","row svelte-122rc28"),o(e,"class","progress svelte-122rc28")},m(m,p){q(m,e,p),y(e,r),y(r,t),y(r,n),y(r,i),y(i,l),y(i,f),h=!0},p(m,p){(!h||p&128)&&s!==(s=m[7]("capturing")+"")&&Yt(l,s)},i(m){h||(Ka(()=>{c||(c=Co(e,ja,{duration:200},!0)),c.run(1)}),h=!0)},o(m){c||(c=Co(e,ja,{duration:200},!1)),c.run(0),h=!1},d(m){m&&v(e),m&&c&&c.end()}}}function l1(a){let e,r=a[7]("rewardFirstShare",{values:{qty:Wn.shareReward}})+"",t,n,i,s;return i=new Nn({props:{type:"primogem",width:"18px",style:"margin-left: .5rem"}}),{c(){e=j("span"),t=vt(r),n=ge(),Xt(i.$$.fragment),this.h()},l(l){e=F(l,"SPAN",{class:!0});var f=b(e);t=dt(f,r),n=_e(f),ir(i.$$.fragment,f),f.forEach(v),this.h()},h(){o(e,"class","svelte-122rc28")},m(l,f){q(l,e,f),y(e,t),y(e,n),qt(i,e,null),s=!0},p(l,f){(!s||f&128)&&r!==(r=l[7]("rewardFirstShare",{values:{qty:Wn.shareReward}})+"")&&Yt(t,r)},i(l){s||(se(i.$$.fragment,l),s=!0)},o(l){me(i.$$.fragment,l),s=!1},d(l){l&&v(e),Zt(i)}}}function $u(a){let e;return{c(){e=vt(a[5])},l(r){e=dt(r,a[5])},m(r,t){q(r,e,t)},p(r,t){t&32&&Yt(e,r[5])},d(r){r&&v(e)}}}function e2(a){let e,r,t,n,i,s,l=a[3]&&n1(a),f=a[4]&&i1(a),c=a[6]&&a[1]&&l1(a);return i=new Wf({props:{disabled:a[4],$$slots:{default:[$u]},$$scope:{ctx:a}}}),i.$on("click",a[8]),{c(){l&&l.c(),e=ge(),f&&f.c(),r=ge(),t=j("div"),c&&c.c(),n=ge(),Xt(i.$$.fragment),this.h()},l(h){l&&l.l(h),e=_e(h),f&&f.l(h),r=_e(h),t=F(h,"DIV",{class:!0});var m=b(t);c&&c.l(m),n=_e(m),ir(i.$$.fragment,m),m.forEach(v),this.h()},h(){o(t,"class","screenshot-button svelte-122rc28")},m(h,m){l&&l.m(h,m),q(h,e,m),f&&f.m(h,m),q(h,r,m),q(h,t,m),c&&c.m(t,null),y(t,n),qt(i,t,null),s=!0},p(h,[m]){h[3]?l?(l.p(h,m),m&8&&se(l,1)):(l=n1(h),l.c(),se(l,1),l.m(e.parentNode,e)):l&&(sr(),me(l,1,1,()=>{l=null}),nr()),h[4]?f?(f.p(h,m),m&16&&se(f,1)):(f=i1(h),f.c(),se(f,1),f.m(r.parentNode,r)):f&&(sr(),me(f,1,1,()=>{f=null}),nr()),h[6]&&h[1]?c?(c.p(h,m),m&66&&se(c,1)):(c=l1(h),c.c(),se(c,1),c.m(t,n)):c&&(sr(),me(c,1,1,()=>{c=null}),nr());const p={};m&16&&(p.disabled=h[4]),m&16416&&(p.$$scope={dirty:m,ctx:h}),i.$set(p)},i(h){s||(se(l),se(f),se(c),se(i.$$.fragment,h),s=!0)},o(h){me(l),me(f),me(c),me(i.$$.fragment,h),s=!1},d(h){l&&l.d(h),h&&v(e),f&&f.d(h),h&&v(r),h&&v(t),c&&c.d(),Zt(i)}}}function t2(a,e,r){let t;Vt(a,Ts,u=>r(7,t=u));let{shareURL:n=""}=e,{canshare:i=!1}=e,s,l=!1,f=!1,c=t(i?"share":"screenshot"),h=!1,m=!$i.get("firstTimeShare");Ji("firsTimeShare",()=>{r(6,m=!1),h=!0,Of.update(u=>{const C=u+Wn.shareReward;return Df.set("primogem",C),C}),$i.set("firstTimeShare",!0)});const p=Ss("preview"),k=u=>p?p(u):null,A=u=>{const C=["close","share","skip","outfit-toggle","zoomer"];return u.classList?!C.some(L=>u.classList.contains(L)):!0},d=async()=>{try{if(f)return;ea(),k(!0),r(4,f=!0),r(5,c=`${t("waiting")}...`);const u=document.querySelector(".wish-result");r(2,s=await _u(u,{filter:A})),ea("camera"),r(3,l=!0),r(4,f=!1),k(!1),r(5,c=t(i?"share":"screenshot"))}catch(u){r(4,f=!1),k(!1),r(5,c=t(i?"share":"screenshot")),console.error("failed to take screenshot",u)}},_=Ss("openObtained");return Ji("closeShot",()=>{r(3,l=!1),ea("close"),h&&(_([{item:"primogem",qty:Wn.shareReward}]),h=!1)}),a.$$set=u=>{"shareURL"in u&&r(0,n=u.shareURL),"canshare"in u&&r(1,i=u.canshare)},[n,i,s,l,f,c,m,t,d]}class r2 extends pt{constructor(e){super(),mt(this,e,t2,e2,gt,{shareURL:0,canshare:1})}}function a2(a){const e=a.slice(),r=e[10]||{};e[12]=r.images!==void 0?r.images:{},e[13]=r.hostedImages!==void 0?r.hostedImages:{},e[14]=r.status,e[15]=r.artPosition;const t=e[14]==="owned"?e[12]:e[13];e[16]=t.artURL;const n=e[15]||{};return e[17]=n.splashArt!==void 0?n.splashArt:{},e}function s2(a){let e,r,t,n,i,s;return{c(){e=j("div"),r=j("img"),this.h()},l(l){e=F(l,"DIV",{class:!0,style:!0});var f=b(e);r=F(f,"IMG",{alt:!0,crossorigin:!0,class:!0}),f.forEach(v),this.h()},h(){o(r,"alt",a[0]),o(r,"crossorigin","anonymous"),o(r,"class","svelte-upxcv7"),o(e,"class","zoomist-image svelte-upxcv7"),o(e,"style",n=xa(a[9],a[7],a[8]))},m(l,f){q(l,e,f),y(e,r),i||(s=It(t=Hn.call(null,r,a[11][`splash-art/${a[4]?a[2]:a[0]}`])),i=!0)},p(l,f){f&1&&o(r,"alt",l[0]),t&&Un(t.update)&&f&2069&&t.update.call(null,l[11][`splash-art/${l[4]?l[2]:l[0]}`]),f&896&&n!==(n=xa(l[9],l[7],l[8]))&&o(e,"style",n)},d(l){l&&v(e),i=!1,s()}}}function n2(a){let e,r,t,n,i,s;return{c(){e=j("div"),r=j("img"),this.h()},l(l){e=F(l,"DIV",{class:!0,style:!0});var f=b(e);r=F(f,"IMG",{alt:!0,crossorigin:!0,class:!0}),f.forEach(v),this.h()},h(){o(r,"alt",a[0]),o(r,"crossorigin","anonymous"),o(r,"class","svelte-upxcv7"),o(e,"class","zoomist-image svelte-upxcv7"),o(e,"style",n=xa(a[9],a[7],a[8]))},m(l,f){q(l,e,f),y(e,r),i||(s=It(t=Hn.call(null,r,a[11][`splash-art/${a[2]}`])),i=!0)},p(l,f){f&1&&o(r,"alt",l[0]),t&&Un(t.update)&&f&2052&&t.update.call(null,l[11][`splash-art/${l[2]}`]),f&896&&n!==(n=xa(l[9],l[7],l[8]))&&o(e,"style",n)},d(l){l&&v(e),i=!1,s()}}}function i2(a){let e,r,t,n,i,s,l,f,c;return{c(){e=j("div"),r=j("img"),n=ge(),i=j("p"),s=vt(a[6]),this.h()},l(h){e=F(h,"DIV",{class:!0});var m=b(e);r=F(m,"IMG",{src:!0,alt:!0,class:!0}),n=_e(m),i=F(m,"P",{id:!0,class:!0});var p=b(i);s=dt(p,a[6]),p.forEach(v),m.forEach(v),this.h()},h(){Pt(r.src,t=a[11][`bg-${a[3]}.webp`])||o(r,"src",t),o(r,"alt",a[3]),o(r,"class","weaponbg svelte-upxcv7"),o(i,"id","chinese-char"),o(i,"class","svelte-upxcv7"),o(e,"class",l="zoomist-image weapon anim "+a[3]+"-parent svelte-upxcv7")},m(h,m){q(h,e,m),y(e,r),y(e,n),y(e,i),y(i,s),f||(c=It(Vr.call(null,e)),f=!0)},p(h,m){m&2056&&!Pt(r.src,t=h[11][`bg-${h[3]}.webp`])&&o(r,"src",t),m&8&&o(r,"alt",h[3]),m&64&&Yt(s,h[6]),m&8&&l!==(l="zoomist-image weapon anim "+h[3]+"-parent svelte-upxcv7")&&o(e,"class",l)},d(h){h&&v(e),f=!1,c()}}}function l2(a){let e,r,t,n,i,s,l,f,c,h;return{c(){e=j("div"),r=j("img"),n=ge(),i=j("img"),this.h()},l(m){e=F(m,"DIV",{class:!0});var p=b(e);r=F(p,"IMG",{src:!0,alt:!0,class:!0}),n=_e(p),i=F(p,"IMG",{alt:!0,class:!0}),p.forEach(v),this.h()},h(){Pt(r.src,t=a[11][`bg-${a[3]}.webp`])||o(r,"src",t),o(r,"alt",a[3]),o(r,"class","weaponbg svelte-upxcv7"),o(i,"alt",a[0]),o(i,"class",s=Ao(a[3])+" svelte-upxcv7"),o(e,"class",f="zoomist-image weapon anim "+a[3]+"-parent svelte-upxcv7")},m(m,p){q(m,e,p),y(e,r),y(e,n),y(e,i),c||(h=[It(l=Hn.call(null,i,a[11][a[0]])),It(Vr.call(null,e))],c=!0)},p(m,p){p&2056&&!Pt(r.src,t=m[11][`bg-${m[3]}.webp`])&&o(r,"src",t),p&8&&o(r,"alt",m[3]),p&1&&o(i,"alt",m[0]),p&8&&s!==(s=Ao(m[3])+" svelte-upxcv7")&&o(i,"class",s),l&&Un(l.update)&&p&2049&&l.update.call(null,m[11][m[0]]),p&8&&f!==(f="zoomist-image weapon anim "+m[3]+"-parent svelte-upxcv7")&&o(e,"class",f)},d(m){m&&v(e),c=!1,nn(h)}}}function o1(a){let e,r,t,n,i,s;return{c(){e=j("div"),r=j("img"),this.h()},l(l){e=F(l,"DIV",{class:!0,style:!0});var f=b(e);r=F(f,"IMG",{alt:!0,crossorigin:!0,class:!0}),f.forEach(v),this.h()},h(){o(r,"alt",a[0]),o(r,"crossorigin","anonymous"),o(r,"class","svelte-upxcv7"),o(e,"class","zoomist-image svelte-upxcv7"),o(e,"style",n=xa(a[17],a[7],a[8]))},m(l,f){q(l,e,f),y(e,r),i||(s=It(t=Hn.call(null,r,a[16])),i=!0)},p(l,f){a=l,f&1&&o(r,"alt",a[0]),t&&Un(t.update)&&f&1024&&t.update.call(null,a[16]),f&1408&&n!==(n=xa(a[17],a[7],a[8]))&&o(e,"style",n)},d(l){l&&v(e),i=!1,s()}}}function o2(a){let e,r,t,n;function i(c,h){return c[5]?o1:c[1]==="weapon"?l2:c[1]==="member"?i2:c[1]==="outfit"?n2:s2}function s(c,h){return h===o1?a2(c):c}let l=i(a),f=l(s(a,l));return{c(){e=j("div"),f.c(),this.h()},l(c){e=F(c,"DIV",{class:!0,style:!0});var h=b(e);f.l(h),h.forEach(v),this.h()},h(){o(e,"class",r="zoomist-wrapper splash-art anim "+a[1]+" svelte-upxcv7"),x(e,"overflow","visible")},m(c,h){q(c,e,h),f.m(e,null),t||(n=It(Vr.call(null,e)),t=!0)},p(c,[h]){l===(l=i(c))&&f?f.p(s(c,l),h):(f.d(1),f=l(s(c,l)),f&&(f.c(),f.m(e,null))),h&2&&r!==(r="zoomist-wrapper splash-art anim "+c[1]+" svelte-upxcv7")&&o(e,"class",r)},i:de,o:de,d(c){c&&v(e),f.d(),t=!1,n()}}}function f2(a,e,r){let t,n;Vt(a,y1,d=>r(10,t=d)),Vt(a,ln,d=>r(11,n=d));let{name:i}=e,{type:s}=e,{outfitName:l}=e,{weaponType:f}=e,{useOutfit:c}=e,{custom:h}=e,{chineseChar:m}=e,{clientHeight:p=0}=e,{clientWidth:k=0}=e,{offset:A={}}=e;return a.$$set=d=>{"name"in d&&r(0,i=d.name),"type"in d&&r(1,s=d.type),"outfitName"in d&&r(2,l=d.outfitName),"weaponType"in d&&r(3,f=d.weaponType),"useOutfit"in d&&r(4,c=d.useOutfit),"custom"in d&&r(5,h=d.custom),"chineseChar"in d&&r(6,m=d.chineseChar),"clientHeight"in d&&r(7,p=d.clientHeight),"clientWidth"in d&&r(8,k=d.clientWidth),"offset"in d&&r(9,A=d.offset)},[i,s,l,f,c,h,m,p,k,A,t,n]}class c2 extends pt{constructor(e){super(),mt(this,e,f2,o2,gt,{name:0,type:1,outfitName:2,weaponType:3,useOutfit:4,custom:5,chineseChar:6,clientHeight:7,clientWidth:8,offset:9})}}function f1(a,e,r){const t=a.slice();return t[32]=e[r].name,t[33]=e[r].rarity,t[34]=e[r].type,t[35]=e[r].outfitName,t[36]=e[r].vision,t[37]=e[r].weaponType,t[38]=e[r].bonusQty,t[39]=e[r].bonusType,t[40]=e[r].stelaFortuna,t[41]=e[r].useOutfit,t[42]=e[r].offset,t[43]=e[r].custom,t[44]=e[r].chineseChar,t[46]=r,t}function c1(a){let e;function r(i,s){return i[0].length>1&&!i[7]?h2:u2}let t=r(a),n=t(a);return{c(){n.c(),e=Qt()},l(i){n.l(i),e=Qt()},m(i,s){n.m(i,s),q(i,e,s)},p(i,s){t===(t=r(i))&&n?n.p(i,s):(n.d(1),n=t(i),n&&(n.c(),se(n,1),n.m(e.parentNode,e)))},i(i){se(n)},o:de,d(i){n.d(i),i&&v(e)}}}function u2(a){let e,r,t,n,i;return{c(){e=j("button"),r=j("i"),this.h()},l(s){e=F(s,"BUTTON",{class:!0});var l=b(e);r=F(l,"I",{class:!0}),b(r).forEach(v),l.forEach(v),this.h()},h(){o(r,"class","gi-close"),o(e,"class","close svelte-1ikxtky")},m(s,l){q(s,e,l),y(e,r),n||(i=ka(e,"click",a[16]),n=!0)},p:de,i(s){t||Ka(()=>{t=Ds(e,ja,{delay:1500}),t.start()})},o:de,d(s){s&&v(e),n=!1,i()}}}function h2(a){let e,r=a[11]("wish.result.skip")+"",t,n,i,s,l;return{c(){e=j("button"),t=vt(r),n=ge(),i=j("i"),this.h()},l(f){e=F(f,"BUTTON",{class:!0});var c=b(e);t=dt(c,r),n=_e(c),i=F(c,"I",{class:!0}),b(i).forEach(v),c.forEach(v),this.h()},h(){o(i,"class","gi-caret-up svelte-1ikxtky"),o(e,"class","skip svelte-1ikxtky")},m(f,c){q(f,e,c),y(e,t),y(e,n),y(e,i),s||(l=ka(e,"click",a[17]),s=!0)},p(f,c){c[0]&2048&&r!==(r=f[11]("wish.result.skip")+"")&&Yt(t,r)},i:de,o:de,d(f){f&&v(e),s=!1,l()}}}function v2(a){let e,r,t,n,i,s,l,f,c=a[0],h=[];for(let p=0;p<c.length;p+=1)h[p]=d1(f1(a,c,p));const m=p=>me(h[p],1,1,()=>{h[p]=null});return{c(){e=j("div"),r=ge(),t=j("div");for(let p=0;p<h.length;p+=1)h[p].c();this.h()},l(p){e=F(p,"DIV",{class:!0}),b(e).forEach(v),r=_e(p),t=F(p,"DIV",{class:!0,style:!0});var k=b(t);for(let A=0;A<h.length;A+=1)h[A].l(k);k.forEach(v),this.h()},h(){o(e,"class","touch-box svelte-1ikxtky"),o(t,"class","zoomist-container svelte-1ikxtky"),x(t,"height",a[9]),x(t,"--width",a[5]+"px"),x(t,"--height",a[4]+"px"),Ka(()=>a[23].call(t))},m(p,k){q(p,e,k),q(p,r,k),q(p,t,k);for(let A=0;A<h.length;A+=1)h[A].m(t,null);n=g1(t,a[23].bind(t)),s=!0,l||(f=ka(e,"mousedown",a[15]),l=!0)},p(p,k){if(k[0]&369){c=p[0];let A;for(A=0;A<c.length;A+=1){const d=f1(p,c,A);h[A]?(h[A].p(d,k),se(h[A],1)):(h[A]=d1(d),h[A].c(),se(h[A],1),h[A].m(t,null))}for(sr(),A=c.length;A<h.length;A+=1)m(A);nr()}(!s||k[0]&512)&&x(t,"height",p[9]),(!s||k[0]&32)&&x(t,"--width",p[5]+"px"),(!s||k[0]&16)&&x(t,"--height",p[4]+"px")},i(p){if(!s){for(let k=0;k<c.length;k+=1)se(h[k]);i||Ka(()=>{i=Ds(t,ja,{duration:500,delay:200}),i.start()}),s=!0}},o(p){h=h.filter(Boolean);for(let k=0;k<h.length;k+=1)me(h[k]);s=!1},d(p){p&&v(e),p&&v(r),p&&v(t),rn(h,p),n(),l=!1,f()}}}function d2(a){let e,r;return e=new ju({props:{list:a[0],standalone:a[1],bannerType:a[2]}}),{c(){Xt(e.$$.fragment)},l(t){ir(e.$$.fragment,t)},m(t,n){qt(e,t,n),r=!0},p(t,n){const i={};n[0]&1&&(i.list=t[0]),n[0]&2&&(i.standalone=t[1]),n[0]&4&&(i.bannerType=t[2]),e.$set(i)},i(t){r||(se(e.$$.fragment,t),r=!0)},o(t){me(e.$$.fragment,t),r=!1},d(t){Zt(e,t)}}}function u1(a){let e,r,t,n,i,s,l,f,c,h,m,p=!a[6]&&h1(a);n=new c2({props:{offset:a[42]?.splashArt,custom:a[43],name:a[32],type:a[34],outfitName:a[35],weaponType:a[37],useOutfit:a[41],clientHeight:a[4],clientWidth:a[5],chineseChar:a[44]}}),s=new Eu({props:{itemName:a[32],type:a[34],outfitName:a[35],rarity:a[33],vision:a[36],bonusQty:a[38],weaponType:a[37],stelaFortuna:a[40],custom:a[43],chineseChar:a[44]}}),f=new Zu({props:{type:a[34],bonusQty:a[38],bonusType:a[39]}});let k=a[6]&&v1(a);return{c(){e=j("div"),p&&p.c(),r=ge(),t=j("div"),Xt(n.$$.fragment),i=ge(),Xt(s.$$.fragment),l=ge(),Xt(f.$$.fragment),c=ge(),k&&k.c(),h=ge(),this.h()},l(A){e=F(A,"DIV",{class:!0});var d=b(e);p&&p.l(d),r=_e(d),t=F(d,"DIV",{class:!0});var _=b(t);ir(n.$$.fragment,_),_.forEach(v),i=_e(d),ir(s.$$.fragment,d),l=_e(d),ir(f.$$.fragment,d),c=_e(d),k&&k.l(d),h=_e(d),d.forEach(v),this.h()},h(){o(t,"class","art-wrapper svelte-1ikxtky"),o(e,"class","art-wrapper svelte-1ikxtky")},m(A,d){q(A,e,d),p&&p.m(e,null),y(e,r),y(e,t),qt(n,t,null),y(e,i),qt(s,e,null),y(e,l),qt(f,e,null),y(e,c),k&&k.m(e,null),y(e,h),m=!0},p(A,d){A[6]?p&&(sr(),me(p,1,1,()=>{p=null}),nr()):p?(p.p(A,d),d[0]&64&&se(p,1)):(p=h1(A),p.c(),se(p,1),p.m(e,r));const _={};d[0]&1&&(_.offset=A[42]?.splashArt),d[0]&1&&(_.custom=A[43]),d[0]&1&&(_.name=A[32]),d[0]&1&&(_.type=A[34]),d[0]&1&&(_.outfitName=A[35]),d[0]&1&&(_.weaponType=A[37]),d[0]&1&&(_.useOutfit=A[41]),d[0]&16&&(_.clientHeight=A[4]),d[0]&32&&(_.clientWidth=A[5]),d[0]&1&&(_.chineseChar=A[44]),n.$set(_);const u={};d[0]&1&&(u.itemName=A[32]),d[0]&1&&(u.type=A[34]),d[0]&1&&(u.outfitName=A[35]),d[0]&1&&(u.rarity=A[33]),d[0]&1&&(u.vision=A[36]),d[0]&1&&(u.bonusQty=A[38]),d[0]&1&&(u.weaponType=A[37]),d[0]&1&&(u.stelaFortuna=A[40]),d[0]&1&&(u.custom=A[43]),d[0]&1&&(u.chineseChar=A[44]),s.$set(u);const C={};d[0]&1&&(C.type=A[34]),d[0]&1&&(C.bonusQty=A[38]),d[0]&1&&(C.bonusType=A[39]),f.$set(C),A[6]?k?(k.p(A,d),d[0]&64&&se(k,1)):(k=v1(A),k.c(),se(k,1),k.m(e,h)):k&&(sr(),me(k,1,1,()=>{k=null}),nr())},i(A){m||(se(p),se(n.$$.fragment,A),se(s.$$.fragment,A),se(f.$$.fragment,A),se(k),m=!0)},o(A){me(p),me(n.$$.fragment,A),me(s.$$.fragment,A),me(f.$$.fragment,A),me(k),m=!1},d(A){A&&v(e),p&&p.d(),Zt(n),Zt(s),Zt(f),k&&k.d()}}}function h1(a){let e,r;return e=new R1({props:{type:"in",rarity:a[33]}}),{c(){Xt(e.$$.fragment)},l(t){ir(e.$$.fragment,t)},m(t,n){qt(e,t,n),r=!0},p(t,n){const i={};n[0]&1&&(i.rarity=t[33]),e.$set(i)},i(t){r||(se(e.$$.fragment,t),r=!0)},o(t){me(e.$$.fragment,t),r=!1},d(t){Zt(e,t)}}}function v1(a){let e,r;return e=new R1({props:{type:"out",rarity:a[33]}}),{c(){Xt(e.$$.fragment)},l(t){ir(e.$$.fragment,t)},m(t,n){qt(e,t,n),r=!0},p(t,n){const i={};n[0]&1&&(i.rarity=t[33]),e.$set(i)},i(t){r||(se(e.$$.fragment,t),r=!0)},o(t){me(e.$$.fragment,t),r=!1},d(t){Zt(e,t)}}}function d1(a){let e,r,t=a[8]===a[46]&&u1(a);return{c(){t&&t.c(),e=Qt()},l(n){t&&t.l(n),e=Qt()},m(n,i){t&&t.m(n,i),q(n,e,i),r=!0},p(n,i){n[8]===n[46]?t?(t.p(n,i),i[0]&256&&se(t,1)):(t=u1(n),t.c(),se(t,1),t.m(e.parentNode,e)):t&&(sr(),me(t,1,1,()=>{t=null}),nr())},i(n){r||(se(t),r=!0)},o(n){me(t),r=!1},d(n){t&&t.d(n),n&&v(e)}}}function p1(a){let e,r,t=(a[0][a[8]].rarity>3||a[7]&&a[0].length>1)&&m1(a);return{c(){t&&t.c(),e=Qt()},l(n){t&&t.l(n),e=Qt()},m(n,i){t&&t.m(n,i),q(n,e,i),r=!0},p(n,i){n[0][n[8]].rarity>3||n[7]&&n[0].length>1?t?(t.p(n,i),i[0]&385&&se(t,1)):(t=m1(n),t.c(),se(t,1),t.m(e.parentNode,e)):t&&(sr(),me(t,1,1,()=>{t=null}),nr())},i(n){r||(se(t),r=!0)},o(n){me(t),r=!1},d(n){t&&t.d(n),n&&v(e)}}}function m1(a){let e,r,t;return r=new r2({props:{canshare:!0,shareURL:a[14](a[8],a[7])}}),{c(){e=j("div"),Xt(r.$$.fragment),this.h()},l(n){e=F(n,"DIV",{class:!0});var i=b(e);ir(r.$$.fragment,i),i.forEach(v),this.h()},h(){o(e,"class","share svelte-1ikxtky")},m(n,i){q(n,e,i),qt(r,e,null),t=!0},p(n,i){const s={};i[0]&384&&(s.shareURL=n[14](n[8],n[7])),r.$set(s)},i(n){t||(se(r.$$.fragment,n),t=!0)},o(n){me(r.$$.fragment,n),t=!1},d(n){n&&v(e),Zt(r)}}}function p2(a){let e,r,t,n,i,s,l,f,c,h,m=!a[1]&&c1(a);const p=[d2,v2],k=[];function A(_,u){return _[7]&&_[0].length>1?0:1}s=A(a),l=k[s]=p[s](a);let d=!a[1]&&p1(a);return{c(){e=j("div"),r=j("img"),n=ge(),m&&m.c(),i=ge(),l.c(),f=ge(),d&&d.c(),this.h()},l(_){e=F(_,"DIV",{class:!0,style:!0});var u=b(e);r=F(u,"IMG",{src:!0,alt:!0,class:!0}),n=_e(u),m&&m.l(u),i=_e(u),l.l(u),f=_e(u),d&&d.l(u),u.forEach(v),this.h()},h(){Pt(r.src,t=a[10][`genshin-logo${a[12]?"-cn":""}.webp`])||o(r,"src",t),o(r,"alt","genshin logo"),o(r,"class","logo svelte-1ikxtky"),Ot(r,"cn",a[12]),o(e,"class","wish-result svelte-1ikxtky"),x(e,"background-image","url("+a[13]+")"),Ot(e,"preview",a[3])},m(_,u){q(_,e,u),y(e,r),y(e,n),m&&m.m(e,null),y(e,i),k[s].m(e,null),y(e,f),d&&d.m(e,null),h=!0},p(_,u){(!h||u[0]&1024&&!Pt(r.src,t=_[10][`genshin-logo${_[12]?"-cn":""}.webp`]))&&o(r,"src",t),_[1]?m&&(m.d(1),m=null):m?(m.p(_,u),u[0]&2&&se(m,1)):(m=c1(_),m.c(),se(m,1),m.m(e,i));let C=s;s=A(_),s===C?k[s].p(_,u):(sr(),me(k[C],1,1,()=>{k[C]=null}),nr(),l=k[s],l?l.p(_,u):(l=k[s]=p[s](_),l.c()),se(l,1),l.m(e,f)),_[1]?d&&(sr(),me(d,1,1,()=>{d=null}),nr()):d?(d.p(_,u),u[0]&2&&se(d,1)):(d=p1(_),d.c(),se(d,1),d.m(e,null)),u[0]&8&&Ot(e,"preview",_[3])},i(_){h||(se(m),se(l),se(d),c&&c.end(1),h=!0)},o(_){me(l),me(d),c=rl(e,ja,{duration:250}),h=!1},d(_){_&&v(e),m&&m.d(),k[s].d(),d&&d.d(),_&&c&&c.end()}}}function m2(a,e,r){let t,n,i,s,l,f,c;Vt(a,If,J=>r(21,i=J)),Vt(a,Pf,J=>r(22,s=J)),Vt(a,ln,J=>r(10,l=J)),Vt(a,Tf,J=>r(26,f=J)),Vt(a,Ts,J=>r(11,c=J));let{list:h=[]}=e,{skip:m=!1}=e,{standalone:p=!1}=e,{isOutfit:k=!1}=e,{bannerType:A=""}=e,d=p||!1;Ji("preview",J=>r(3,d=J));const u=(f?.toLowerCase()||"").match(/(cn|ja)/),C=k?l["outfit-background.webp"]:l["splash-background.webp"];h=h.map(Rf);let L=0,w=0;const D=(J,Fe)=>J<Fe?"80vw":J<Fe*1.5?"65vw":"100%";let N=!1,Z;const B=()=>{clearTimeout(Z),r(6,N=!1),Z=setTimeout(()=>{r(6,N=!0),clearTimeout(Z)},1100)},G=()=>{if(B(),$i.get("muted"))return;if(W>0){const Fe=h[W-1].rarity;Mf(`reveal${Fe}Star`)}const J=h[W].rarity;ea(`reveal${J}Star`)};let H=!1,W=0;const Q=(J,Fe)=>{const ae=Fe&&h.length>1;return jo(ae?h:[h[J]])},Y=J=>{if(h.length===1){J==="start"&&G();return}if(W>h.length-2){r(7,H=!0);return}J!=="start"&&r(8,W=W+1),G()},le=Ss("closeResult"),fe=()=>{ea("close"),le()},re=()=>{ea(),r(7,H=!0)};_1(()=>{if((!m||h.length===1)&&Y("start"),m||p)return r(7,H=!0)});const De=Ss("onWish");Vt(a,De,J=>r(25,n=J)),La("enter,space","index",J=>{!n||(J.preventDefault(),h.length>1&&!H&&Y())}),La("esc","index",J=>{if(!!n)return J.preventDefault(),h<=1||H?fe():re()});function lr(){L=this.clientHeight,w=this.clientWidth,r(4,L),r(5,w)}return a.$$set=J=>{"list"in J&&r(0,h=J.list),"skip"in J&&r(19,m=J.skip),"standalone"in J&&r(1,p=J.standalone),"isOutfit"in J&&r(20,k=J.isOutfit),"bannerType"in J&&r(2,A=J.bannerType)},a.$$.update=()=>{a.$$.dirty[0]&6291456&&r(9,t=D(s,i))},[h,p,A,d,L,w,N,H,W,t,l,c,u,C,Q,Y,fe,re,De,m,k,i,s,lr]}class O2 extends pt{constructor(e){super(),mt(this,e,m2,p2,gt,{list:0,skip:19,standalone:1,isOutfit:20,bannerType:2},null,[-1,-1])}}export{Nn as I,rc as O,x1 as S,O2 as W,x2 as a,Eu as b,S2 as c,T2 as d,r2 as e,E2 as g,La as h,D2 as m,k2 as p,_u as t};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_layout-0ebf6292.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_layout-0ebf6292.js
deleted file mode 100644
index 470b827d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_layout-0ebf6292.js
+++ /dev/null
@@ -1 +0,0 @@
-const e=!0,r=Object.freeze(Object.defineProperty({__proto__:null,prerender:!0},Symbol.toStringTag,{value:"Module"}));export{r as _,e as p};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_modal-balance-a6913f0e.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_modal-balance-a6913f0e.js
deleted file mode 100644
index a440611d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_modal-balance-a6913f0e.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as se,i as ne,s as ae,k,a as B,q as C,l as z,m as N,h as _,c as R,r as D,n as v,p as V,b as h,G as $,H as w,O as Q,u as P,A as x,C as le,F as ie,f as q,J as ue,L as ee,t as S,E as U,v as F,w as j,x as G,y as H}from"./index-c0d078cd.js";import{p as re}from"./audio-460a91c6.js";import{h as te}from"./index-123e2351.js";import{f as oe,g as fe,j as me,k as _e,p as pe,h as ce}from"./app-stores-358281e6.js";import{a as J}from"./_page-87ee6ee5.js";function de(s){let t,e,n,f,l,u,r,o,a,i,g,m,T,y,E,A,L,b,p,I,O,K;return{c(){t=k("div"),e=k("button"),n=k("i"),l=B(),u=k("div"),r=k("span"),o=C(s[1]),a=B(),i=k("input"),y=B(),E=k("span"),A=C(s[0]),L=B(),b=k("button"),p=k("i"),this.h()},l(c){t=z(c,"DIV",{class:!0});var d=N(t);e=z(d,"BUTTON",{class:!0});var W=N(e);n=z(W,"I",{class:!0}),N(n).forEach(_),W.forEach(_),l=R(d),u=z(d,"DIV",{class:!0});var M=N(u);r=z(M,"SPAN",{style:!0,class:!0});var X=N(r);o=D(X,s[1]),X.forEach(_),a=R(M),i=z(M,"INPUT",{style:!0,class:!0,type:!0,max:!0,min:!0}),y=R(M),E=z(M,"SPAN",{style:!0,class:!0});var Y=N(E);A=D(Y,s[0]),Y.forEach(_),M.forEach(_),L=R(d),b=z(d,"BUTTON",{class:!0});var Z=N(b);p=z(Z,"I",{class:!0}),N(p).forEach(_),Z.forEach(_),d.forEach(_),this.h()},h(){v(n,"class","gi-min"),v(e,"class","min svelte-kozz62"),e.disabled=f=isNaN(s[2])||s[2]<=1,V(r,"pointer-events","none"),v(r,"class","svelte-kozz62"),V(i,"--min",s[1]||0),V(i,"--max",s[0]||0),V(i,"--val",s[2]||0),v(i,"class","range svelte-kozz62"),v(i,"type","range"),v(i,"max",g=s[0]||0),v(i,"min",m=s[1]||0),i.value=T=s[2]||0,i.disabled=s[3],V(E,"pointer-events","none"),v(E,"class","svelte-kozz62"),v(u,"class","control svelte-kozz62"),v(p,"class","gi-plus"),v(b,"class","plus svelte-kozz62"),b.disabled=I=isNaN(s[2])||s[2]>=s[0],v(t,"class","input svelte-kozz62")},m(c,d){h(c,t,d),$(t,e),$(e,n),$(t,l),$(t,u),$(u,r),$(r,o),$(u,a),$(u,i),$(u,y),$(u,E),$(E,A),$(t,L),$(t,b),$(b,p),O||(K=[w(e,"touchstart",Q(s[7]),{passive:!1}),w(e,"mousedown",Q(s[8])),w(e,"mouseleave",s[6]),w(e,"mouseup",s[6]),w(e,"touchend",s[6],{passive:!0}),w(i,"input",s[4]),w(b,"touchstart",Q(s[9]),{passive:!1}),w(b,"mousedown",Q(s[10])),w(b,"mouseleave",s[6]),w(b,"mouseup",s[6]),w(b,"touchend",s[6],{passive:!0})],O=!0)},p(c,[d]){d&4&&f!==(f=isNaN(c[2])||c[2]<=1)&&(e.disabled=f),d&2&&P(o,c[1]),d&2&&V(i,"--min",c[1]||0),d&1&&V(i,"--max",c[0]||0),d&4&&V(i,"--val",c[2]||0),d&1&&g!==(g=c[0]||0)&&v(i,"max",g),d&2&&m!==(m=c[1]||0)&&v(i,"min",m),d&4&&T!==(T=c[2]||0)&&(i.value=T),d&8&&(i.disabled=c[3]),d&1&&P(A,c[0]),d&5&&I!==(I=isNaN(c[2])||c[2]>=c[0])&&(b.disabled=I)},i:x,o:x,d(c){c&&_(t),O=!1,le(K)}}}function ve(s,t,e){let{max:n}=t,{min:f}=t,{value:l}=t,{disabled:u=!1}=t;const r=ie("setValue"),o=p=>{const{value:I}=p.target;r(parseInt(I))};let a,i;const g=(p="plus")=>{const I=p==="plus"?m:T;I(),a=setTimeout(()=>{i=setInterval(I,50)},500);const O=p==="min"&&l<=1,K=p==="plus"&&l>=n;O||K||re()},m=()=>{if(l>=n)return y();o({target:{value:l+1}})},T=()=>{if(l<=1)return y();o({target:{value:l-1}})},y=()=>{clearTimeout(a),clearInterval(i)},E=()=>g("min"),A=()=>g("min"),L=()=>g("plus"),b=()=>g("plus");return s.$$set=p=>{"max"in p&&e(0,n=p.max),"min"in p&&e(1,f=p.min),"value"in p&&e(2,l=p.value),"disabled"in p&&e(3,u=p.disabled)},[n,f,l,u,o,g,y,E,A,L,b]}class qe extends se{constructor(t){super(),ne(this,t,ve,de,ae,{max:0,min:1,value:2,disabled:3})}}function $e(s){let t,e,n,f,l,u,r,o;return t=new J({props:{type:"stardust",$$slots:{default:[ge]},$$scope:{ctx:s}}}),n=new J({props:{type:"starglitter",$$slots:{default:[be]},$$scope:{ctx:s}}}),l=new J({props:{type:"primogem",$$slots:{default:[he]},$$scope:{ctx:s}}}),r=new J({props:{type:s[0],$$slots:{default:[ye]},$$scope:{ctx:s}}}),{c(){F(t.$$.fragment),e=B(),F(n.$$.fragment),f=B(),F(l.$$.fragment),u=B(),F(r.$$.fragment)},l(a){j(t.$$.fragment,a),e=R(a),j(n.$$.fragment,a),f=R(a),j(l.$$.fragment,a),u=R(a),j(r.$$.fragment,a)},m(a,i){G(t,a,i),h(a,e,i),G(n,a,i),h(a,f,i),G(l,a,i),h(a,u,i),G(r,a,i),o=!0},p(a,i){const g={};i&516&&(g.$$scope={dirty:i,ctx:a}),t.$set(g);const m={};i&520&&(m.$$scope={dirty:i,ctx:a}),n.$set(m);const T={};i&528&&(T.$$scope={dirty:i,ctx:a}),l.$set(T);const y={};i&1&&(y.type=a[0]),i&514&&(y.$$scope={dirty:i,ctx:a}),r.$set(y)},i(a){o||(q(t.$$.fragment,a),q(n.$$.fragment,a),q(l.$$.fragment,a),q(r.$$.fragment,a),o=!0)},o(a){S(t.$$.fragment,a),S(n.$$.fragment,a),S(l.$$.fragment,a),S(r.$$.fragment,a),o=!1},d(a){H(t,a),a&&_(e),H(n,a),a&&_(f),H(l,a),a&&_(u),H(r,a)}}}function ge(s){let t;return{c(){t=C(s[2])},l(e){t=D(e,s[2])},m(e,n){h(e,t,n)},p(e,n){n&4&&P(t,e[2])},d(e){e&&_(t)}}}function be(s){let t;return{c(){t=C(s[3])},l(e){t=D(e,s[3])},m(e,n){h(e,t,n)},p(e,n){n&8&&P(t,e[3])},d(e){e&&_(t)}}}function he(s){let t;return{c(){t=C(s[4])},l(e){t=D(e,s[4])},m(e,n){h(e,t,n)},p(e,n){n&16&&P(t,e[4])},d(e){e&&_(t)}}}function ye(s){let t;return{c(){t=C(s[1])},l(e){t=D(e,s[1])},m(e,n){h(e,t,n)},p(e,n){n&2&&P(t,e[1])},d(e){e&&_(t)}}}function we(s){let t,e,n,f;return t=new J({props:{type:"primogem",$$slots:{default:[ke]},$$scope:{ctx:s}}}),n=new J({props:{type:"genesis",$$slots:{default:[ze]},$$scope:{ctx:s}}}),{c(){F(t.$$.fragment),e=B(),F(n.$$.fragment)},l(l){j(t.$$.fragment,l),e=R(l),j(n.$$.fragment,l)},m(l,u){G(t,l,u),h(l,e,u),G(n,l,u),f=!0},p(l,u){const r={};u&528&&(r.$$scope={dirty:u,ctx:l}),t.$set(r);const o={};u&544&&(o.$$scope={dirty:u,ctx:l}),n.$set(o)},i(l){f||(q(t.$$.fragment,l),q(n.$$.fragment,l),f=!0)},o(l){S(t.$$.fragment,l),S(n.$$.fragment,l),f=!1},d(l){H(t,l),l&&_(e),H(n,l)}}}function ke(s){let t;return{c(){t=C(s[4])},l(e){t=D(e,s[4])},m(e,n){h(e,t,n)},p(e,n){n&16&&P(t,e[4])},d(e){e&&_(t)}}}function ze(s){let t;return{c(){t=C(s[5])},l(e){t=D(e,s[5])},m(e,n){h(e,t,n)},p(e,n){n&32&&P(t,e[5])},d(e){e&&_(t)}}}function Ne(s){let t,e,n,f,l,u=s[6]&&$e(s),r=!s[6]&&we(s);return{c(){t=k("div"),e=k("div"),u&&u.c(),n=B(),r&&r.c(),this.h()},l(o){t=z(o,"DIV",{class:!0});var a=N(t);e=z(a,"DIV",{class:!0});var i=N(e);u&&u.l(i),n=R(i),r&&r.l(i),i.forEach(_),a.forEach(_),this.h()},h(){v(e,"class","fates"),v(t,"class","funds svelte-vegs8f")},m(o,a){h(o,t,a),$(t,e),u&&u.m(e,null),$(e,n),r&&r.m(e,null),l=!0},p(o,[a]){o[6]&&u.p(o,a),o[6]||r.p(o,a)},i(o){l||(q(u),q(r),ue(()=>{f||(f=ee(t,te,{y:-15,duration:300},!0)),f.run(1)}),l=!0)},o(o){S(u),S(r),f||(f=ee(t,te,{y:-15,duration:300},!1)),f.run(0),l=!1},d(o){o&&_(t),u&&u.d(),r&&r.d(),o&&f&&f.end()}}}function Te(s,t,e){let n,f,l,u,r,o,a;U(s,oe,m=>e(7,f=m)),U(s,fe,m=>e(8,l=m)),U(s,me,m=>e(2,u=m)),U(s,_e,m=>e(3,r=m)),U(s,pe,m=>e(4,o=m)),U(s,ce,m=>e(5,a=m));let{itemToBuy:i=""}=t;const g=["intertwined","acquaint"].includes(i);return s.$$set=m=>{"itemToBuy"in m&&e(0,i=m.itemToBuy)},s.$$.update=()=>{s.$$.dirty&385&&e(1,n=i==="intertwined"?l:f)},[i,n,u,r,o,a,g,f,l]}class Se extends se{constructor(t){super(),ne(this,t,Te,Ne,ae,{itemToBuy:0})}}export{Se as M,qe as R};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_page-87ee6ee5.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_page-87ee6ee5.js
deleted file mode 100644
index 8984fa80..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_page-87ee6ee5.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import{_ as Ve}from"./preload-helper-176e53da.js";import{S as Qe,i as Je,s as He,k as b,a as P,l as g,m as w,h,c as S,n as d,p as _e,N as pe,b as O,G as f,H as ge,Z as tr,g as Ee,t as M,d as ye,f as N,J as Pe,K as Ke,I as Ms,E as Z,_ as ua,o as Et,$ as gl,a0 as Mi,a1 as Rt,R as wl,v as ne,w as fe,x as ie,T as kl,U as El,V as yl,y as ae,q as H,r as F,u as J,e as We,A as we,Y as je,F as Re,a2 as js,a3 as ft,a4 as dt,a5 as rs,a6 as Ut,C as ns,L as ot,P as Fe,a7 as Al,a8 as fa,a9 as cl,aa as ul,ab as sr,D as lr,ac as da,M as ha}from"./index-c0d078cd.js";import{p as ma}from"./stores-65b20c67.js";import{a as vs,b as Lt,r as Ol,c as _a,h as lt,f as et,i as Cl,g as Is,j as fl,l as St,o as va,d as pa}from"./index-123e2351.js";import{w as Ls}from"./index-0189b6d0.js";import{O as zs,h as nt,I as us,p as Kt,S as ji,t as ba,g as Ui,a as Wi,b as ga,W as wa}from"./WishResult-901333c5.js";import{D as qi,E as Ml,p as Us,f as ps,g as bs,h as ka,j as Il,k as Dl,z as zl,e as rr,y as Ea,F as nr,A as ya,r as Or,t as dl,w as hl,u as Ds,G as jt,H as $i,I as is,x as Ft,o as $s,q as Hs,n as gs,s as ir,J as Ia,a as wt,K as Da,d as Qt,c as Fs,m as ar,b as za,i as Vl,l as Vs,L as Va,v as or}from"./app-stores-358281e6.js";import{c as cr}from"./api-cookie-d587b0da.js";import{_ as Hi,s as Fi,c as Ta,i as Ba,g as Tl,d as At,e as ml,f as _l,h as Ws,j as Bl,k as Na,l as kt,p as Yi,n as Cr,o as ll,q as Xi,t as Es,u as Pa}from"./i18n-ec7c8da1.js";import{a as Gi,B as Ys,A as Ki,H as Sa,c as Ra,o as Qi,d as qs}from"./custom-banner-3b9921d3.js";import{p as Be,a as Mr}from"./audio-460a91c6.js";import{Y as ct,D as La,o as Aa}from"./runtime.esm-4bf604c8.js";import{H as Oa,I as Ca,A as jr}from"./env-f184adc0.js";import{B as Zt}from"./ButtonModal-7ee3a4a1.js";import{B as Os,l as ur}from"./lazyload-05dfa468.js";import{a as Ma,d as ja,i as Ua,c as Ji}from"./outfit-bffb00d9.js";const Jt=({type:l="info",dismissible:e=!1,autoclose:t=!0,timeout:s=3e3,message:r=""})=>{const i=Math.floor(Math.random()*1e4),n={id:i,dismissible:e,autoclose:t,timeout:s,type:l,message:r};qi.update(o=>[n,...o]),t&&s>1&&setTimeout(()=>Wa(i),s)},Wa=l=>{qi.update(e=>e.filter(t=>t.id!==l))},Ur={set(l){history.pushState({page:l},null,null)},back(){!history.state?.page||history.back()}},Wr=()=>cr.get("notice")||[],qa=(l=[])=>cr.set("notice",l),fr={openNotice(l){const e=Wr();e.includes(l)||(e.push(l),qa(e),Ml.set(e))},onLoadCheck(){const l=Wr();Ml.set(l)}},$a=()=>{const{primogem:l,intertwined:e,acquaint:t,genesis:s,stardust:r,starglitter:i}=vs.all()||{};isNaN(l)||Us.set(l),isNaN(t)||ps.set(t),isNaN(e)||bs.set(e),isNaN(s)||ka.set(s),Il.set(isNaN(r)?0:r),Dl.set(isNaN(i)?0:i);const n=Lt.get("wishAmount")||"default";zl.set(n),console.log("Balance Updated");const o=Ol.get("beginner")||0;rr.set(20-o);const a=Lt.get("autoskip")||!1;Ea.set(a),fr.onLoadCheck();const c=Lt.get("multipull");nr.set(c||10);const u=_a.get();ya.set(u)},Ha=()=>{const l=Lt.get("storageVersion"),e=Lt.get("version")||"";let[t,s]=e.split("-");l!==Or&&(Lt.set("version",`${dl}-${hl}`),Lt.set("storageVersion",Or),[t,s]=[dl,hl]),Ds.set({patch:t,phase:parseInt(s)}),console.log(`Banner version set to ${t} phase ${s}`)},Zi={featured:{bannerName:"beginner",character:"noelle",vision:"geo"}},Fa=[{version:1,characters:["charlotte","beidou","collei","furina"],featured:{bannerName:"chanson-of-many-waters-1",character:"furina"}},{version:2,characters:["charlotte","beidou","collei","furina"],featured:{bannerName:"chanson-of-many-waters-1",character:"furina"}},{version:3,characters:["charlotte","beidou","collei","furina"],featured:{bannerName:"chanson-of-many-waters-1",character:"furina"}},{version:4,characters:["charlotte","beidou","collei","furina"],featured:{bannerName:"chanson-of-many-waters-1",character:"furina"}}],Ya=Ys,Xa=async l=>{try{const e=await Ya.get(l);if(!e)return Ds.set({patch:dl,phase:hl});const{bannerName:t="",character:s="",rateup:r=[],images:i={},hostedImages:n={},vision:o="pyro",charTitle:a="",artPosition:c={},watermark:u="",status:_=null}=e,m=_==="owned"?i:Gi(n);return $s.set({...e,name:s,images:m}),jt.set([{type:"character-event",bannerName:t,character:s,rateup:r,images:m,vision:o,charTitle:a,artPosition:c,watermark:u}]),is.set({patch:"Custom",phase:l}),Ft.set(0),gs.set(!1),Hs.set(!0),Lt.set("version",`Custom-${l}`),{status:"ok"}}catch(e){return console.error(e),{status:"error"}}},Ga=()=>(ir.set(!1),!1),Ka=async({patch:l,phase:e})=>{try{if(!l||!e)return;if(l.match(/(local|custom)/gi))return Xa(e);const t=Ga()?[{type:"beginner",...Zi.featured}]:[],{data:s}=await Hi(Object.assign({"../data/banners/events/1.0.json":()=>Ve(()=>import("./1.0-1c054612.js"),[],import.meta.url),"../data/banners/events/1.1.json":()=>Ve(()=>import("./1.1-3cf30f8b.js"),[],import.meta.url),"../data/banners/events/1.2.json":()=>Ve(()=>import("./1.2-aaf0e2fb.js"),[],import.meta.url),"../data/banners/events/1.3.json":()=>Ve(()=>import("./1.3-6b0b0d5d.js"),[],import.meta.url),"../data/banners/events/1.4.json":()=>Ve(()=>import("./1.4-ad0ba199.js"),[],import.meta.url),"../data/banners/events/1.5.json":()=>Ve(()=>import("./1.5-d00419ea.js"),[],import.meta.url),"../data/banners/events/1.6.json":()=>Ve(()=>import("./1.6-5d274b2f.js"),[],import.meta.url),"../data/banners/events/2.0.json":()=>Ve(()=>import("./2.0-d9400515.js"),[],import.meta.url),"../data/banners/events/2.1.json":()=>Ve(()=>import("./2.1-b1e02588.js"),[],import.meta.url),"../data/banners/events/2.2.json":()=>Ve(()=>import("./2.2-a8d9f452.js"),[],import.meta.url),"../data/banners/events/2.3.json":()=>Ve(()=>import("./2.3-63f68053.js"),[],import.meta.url),"../data/banners/events/2.4.json":()=>Ve(()=>import("./2.4-36c15b7f.js"),[],import.meta.url),"../data/banners/events/2.5.json":()=>Ve(()=>import("./2.5-5d57feac.js"),[],import.meta.url),"../data/banners/events/2.6.json":()=>Ve(()=>import("./2.6-0570e3ed.js"),[],import.meta.url),"../data/banners/events/2.7.json":()=>Ve(()=>import("./2.7-1162b8cf.js"),[],import.meta.url),"../data/banners/events/2.8.json":()=>Ve(()=>import("./2.8-c43df701.js"),[],import.meta.url),"../data/banners/events/3.0.json":()=>Ve(()=>import("./3.0-3ac6ff72.js"),[],import.meta.url),"../data/banners/events/3.1.json":()=>Ve(()=>import("./3.1-9f559463.js"),[],import.meta.url),"../data/banners/events/3.2.json":()=>Ve(()=>import("./3.2-deb84a02.js"),[],import.meta.url),"../data/banners/events/3.3.json":()=>Ve(()=>import("./3.3-60e982e0.js"),[],import.meta.url),"../data/banners/events/3.4.json":()=>Ve(()=>import("./3.4-0159422c.js"),[],import.meta.url),"../data/banners/events/3.5.json":()=>Ve(()=>import("./3.5-0e9eadf4.js"),[],import.meta.url),"../data/banners/events/3.6.json":()=>Ve(()=>import("./3.6-2d1ccd10.js"),[],import.meta.url),"../data/banners/events/3.7.json":()=>Ve(()=>import("./3.7-dfc781bc.js"),[],import.meta.url),"../data/banners/events/3.8.json":()=>Ve(()=>import("./3.8-cab116ac.js"),[],import.meta.url),"../data/banners/events/4.0.json":()=>Ve(()=>import("./4.0-b6f7811b.js"),[],import.meta.url),"../data/banners/events/4.1.json":()=>Ve(()=>import("./4.1-a7933656.js"),[],import.meta.url),"../data/banners/events/4.2.json":()=>Ve(()=>import("./4.2-afc28708.js"),[],import.meta.url),"../data/banners/events/4.3.json":()=>Ve(()=>import("./4.3-f9a28ea0.js"),[],import.meta.url)}),`../data/banners/events/${l}.json`),{banners:r}=s.find(_=>_.phase===e),{events:i,weapons:n,standardVersion:o}=r,{featured:a}=Fi.find(({version:_})=>o===_)||{},{featured:c}=Fa.find(({version:_})=>o===_)||{},u={type:"character-event",rateup:i.rateup,stdver:o};return t.push({type:"member",stdver:o,...c}),i.featured.forEach(_=>t.push({..._,...u})),t.push({type:"weapon-event",stdver:o,...n}),t.push({type:"standard",stdver:o,...a}),jt.set(t),$i.set(!!n.fatepointsystem),is.set({patch:l,phase:e}),Ft.set(0),Lt.set("version",`${l}-${e}`),$s.set({}),Hs.set(!1),{status:"ok"}}catch(t){return console.error(t),{status:"error",e:t}}},Qa=l=>l?jt.update(e=>(e.unshift({type:"beginner",...Zi.featured}),e)):jt.update(e=>e.filter(({type:t})=>t!=="beginner")),jl=[{country:["br"],currency:"BRL",symbol:"R$",format:"{symbol}{nominal}",list:{welkin:25.9,genesis:{60:4.9,300:25.9,980:76.9,1980:154.9,3280:254.9,6480:499.9}}},{country:["cn"],currency:"CNY",symbol:"\xA5",format:"{symbol}{nominal}",list:{welkin:30,genesis:{60:6,300:30,980:98,1980:198,3280:328,6480:648}}},{country:["ad","at","be","cy","gr","es","fr","de","fi","it","pt","nl"],currency:"EUR",symbol:"\u20AC",format:"{symbol}{nominal}",list:{welkin:4.49,genesis:{60:1.19,300:5.99,980:17.99,1980:35.99,3280:59.99,6480:119.99}}},{country:["uk"],currency:"GBP",symbol:"\xA3",format:"{symbol}{nominal}",list:{welkin:4.49,genesis:{60:.89,300:4.49,980:12.99,1980:25.99,3280:44.99,6480:89.99}}},{country:["id"],currency:"IDR",symbol:"Rp",format:"{symbol} {nominal}",list:{welkin:81e3,genesis:{60:16500,300:81e3,980:255e3,1980:489e3,3280:815e3,6480:1629e3}}},{country:["ja"],currency:"JPY",symbol:"\xA5",format:"{symbol}{nominal}",list:{welkin:610,genesis:{60:120,300:610,980:1840,1980:3680,3280:6100,6480:12e3}}},{country:["ko"],currency:"KRW",symbol:"\u20A9",format:"{symbol}{nominal}",list:{welkin:5900,genesis:{60:1200,300:5900,980:19e3,1980:37e3,3280:65e3,6480:119e3}}},{country:["ph"],currency:"PHP",symbol:"\u20B1",format:"{symbol}{nominal}",list:{welkin:280,genesis:{60:55,300:280,980:830,1980:1670,3280:2800,6480:5500}}},{country:["ru"],currency:"RUB",symbol:"\u20BD",format:"{nominal}{symbol}",list:{welkin:499,genesis:{60:99,300:499,980:1390,1980:2790,3280:4690,6480:9490}}},{country:["th"],currency:"THB",symbol:"\u0E3F",format:"{symbol}{nominal}",list:{welkin:179,genesis:{60:35,300:179,980:549,1980:1100,3280:1800,6480:3700}}},{country:["tw"],currency:"NTD",symbol:"NT$",format:"{symbol} {nominal}",list:{welkin:170,genesis:{60:33,300:170,980:490,1980:990,3280:1690,6480:3290}}},{country:["us"],currency:"USD",symbol:"US$",format:"{symbol}{nominal}",list:{welkin:4.99,genesis:{60:.99,300:4.99,980:14.99,1980:29.99,3280:49.99,6480:99.99}}},{country:["vn"],currency:"VND",symbol:"\u0111",format:"{nominal}{symbol}",list:{welkin:109e3,genesis:{60:22e3,300:109e3,980:329e3,1980:699e3,3280:1099e3,6480:2199e3}}}],ed={versionReset:[1,2.1,3.1,4.1],topupBonus:{300:30,980:110,1980:260,3280:600,6480:1600}},td=jl.map(({symbol:l,currency:e})=>({symbol:l,currency:e})),Ja=l=>l.replace(/\B(?=(\d{3})+(?!\d))/g,","),Za={init(l=null){const{symbol:e,list:t,format:s}=this.checkUsedCurrency(l);this._symbol=e,this._list=t,this._format=s;const{welkin:r,genesis:i}=t,n={genesis:{}};n.welkin=this.formatPrice(r),Object.keys(i).forEach(o=>{n.genesis[o]=this.formatPrice(i[o])}),Ia.set(n)},checkUsedCurrency(l){const e=l||cr.get("currency")||Ta();return jl.find(({country:s,currency:r})=>{const i=e===r,n=s.find(a=>e.toLocaleLowerCase().includes(a));return i||e.length<6&&n})||jl.find(({currency:s})=>s==="USD")},formatPrice(l){const e=l.toFixed(2).toString(),t=Ja(e);return this._format.replace("{symbol}",this._symbol).replace("{nominal}",t)},getTotalSpend(l){const e=this._list.genesis[60]/60,t=l*160*e;return this.formatPrice(t)}};const xa=l=>({}),qr=l=>({});function eo(l){let e,t,s,r,i,n,o,a=l[0]&&$r(l);const c=l[13].default,u=wl(c,l,l[15],null);let _=!l[4]&&Hr(l);return n=new Zt({props:{light:l[1],type:"confirm",disabled:l[3],$$slots:{default:[ro]},$$scope:{ctx:l}}}),n.$on("click",l[8]),{c(){a&&a.c(),e=P(),t=b("div"),u&&u.c(),s=P(),r=b("div"),_&&_.c(),i=P(),ne(n.$$.fragment),this.h()},l(m){a&&a.l(m),e=S(m),t=g(m,"DIV",{class:!0});var v=w(t);u&&u.l(v),v.forEach(h),s=S(m),r=g(m,"DIV",{class:!0});var p=w(r);_&&_.l(p),i=S(p),fe(n.$$.fragment,p),p.forEach(h),this.h()},h(){d(t,"class","pop-body svelte-1fzyohs"),d(r,"class","pop-footer svelte-1fzyohs")},m(m,v){a&&a.m(m,v),O(m,e,v),O(m,t,v),u&&u.m(t,null),l[14](t),O(m,s,v),O(m,r,v),_&&_.m(r,null),f(r,i),ie(n,r,null),o=!0},p(m,v){m[0]?a?a.p(m,v):(a=$r(m),a.c(),a.m(e.parentNode,e)):a&&(a.d(1),a=null),u&&u.p&&(!o||v&32768)&&kl(u,c,m,m[15],o?yl(c,m[15],v,null):El(m[15]),null),m[4]?_&&(Ee(),M(_,1,1,()=>{_=null}),ye()):_?(_.p(m,v),v&16&&N(_,1)):(_=Hr(m),_.c(),N(_,1),_.m(r,i));const p={};v&2&&(p.light=m[1]),v&8&&(p.disabled=m[3]),v&34944&&(p.$$scope={dirty:v,ctx:m}),n.$set(p)},i(m){o||(N(u,m),N(_),N(n.$$.fragment,m),o=!0)},o(m){M(u,m),M(_),M(n.$$.fragment,m),o=!1},d(m){a&&a.d(m),m&&h(e),m&&h(t),u&&u.d(m),l[14](null),m&&h(s),m&&h(r),_&&_.d(),ae(n)}}}function to(l){let e;const t=l[13].default,s=wl(t,l,l[15],null);return{c(){s&&s.c()},l(r){s&&s.l(r)},m(r,i){s&&s.m(r,i),e=!0},p(r,i){s&&s.p&&(!e||i&32768)&&kl(s,t,r,r[15],e?yl(t,r[15],i,null):El(r[15]),null)},i(r){e||(N(s,r),e=!0)},o(r){M(s,r),e=!1},d(r){s&&s.d(r)}}}function $r(l){let e,t;return{c(){e=b("h1"),t=H(l[0]),this.h()},l(s){e=g(s,"H1",{class:!0});var r=w(e);t=F(r,l[0]),r.forEach(h),this.h()},h(){d(e,"class","pop-header svelte-1fzyohs")},m(s,r){O(s,e,r),f(e,t)},p(s,r){r&1&&J(t,s[0])},d(s){s&&h(e)}}}function Hr(l){let e,t;return e=new Zt({props:{light:l[1],type:"cancel"}}),e.$on("click",l[9]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r&2&&(i.light=s[1]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function so(l){let e=l[7]("confirmButton")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r&128&&e!==(e=s[7]("confirmButton")+"")&&J(t,e)},i:we,o:we,d(s){s&&h(t)}}}function lo(l){let e;const t=l[13].confirmtext,s=wl(t,l,l[15],qr);return{c(){s&&s.c()},l(r){s&&s.l(r)},m(r,i){s&&s.m(r,i),e=!0},p(r,i){s&&s.p&&(!e||i&32768)&&kl(s,t,r,r[15],e?yl(t,r[15],i,xa):El(r[15]),qr)},i(r){e||(N(s,r),e=!0)},o(r){M(s,r),e=!1},d(r){s&&s.d(r)}}}function ro(l){let e,t,s,r;const i=[lo,so],n=[];function o(a,c){return a[11].confirmtext?0:1}return e=o(l),t=n[e]=i[e](l),{c(){t.c(),s=We()},l(a){t.l(a),s=We()},m(a,c){n[e].m(a,c),O(a,s,c),r=!0},p(a,c){let u=e;e=o(a),e===u?n[e].p(a,c):(Ee(),M(n[u],1,1,()=>{n[u]=null}),ye(),t=n[e],t?t.p(a,c):(t=n[e]=i[e](a),t.c()),N(t,1),t.m(s.parentNode,s))},i(a){r||(N(t),r=!0)},o(a){M(t),r=!1},d(a){n[e].d(a),a&&h(s)}}}function no(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E;const z=[to,eo],T=[];function R(B,L){return B[2]?0:1}return m=R(l),v=T[m]=z[m](l),{c(){e=b("div"),t=b("div"),s=b("span"),r=P(),i=b("span"),n=P(),o=b("span"),a=P(),c=b("span"),u=P(),_=b("div"),v.c(),this.h()},l(B){e=g(B,"DIV",{class:!0});var L=w(e);t=g(L,"DIV",{class:!0});var j=w(t);s=g(j,"SPAN",{class:!0}),w(s).forEach(h),r=S(j),i=g(j,"SPAN",{class:!0}),w(i).forEach(h),n=S(j),o=g(j,"SPAN",{class:!0}),w(o).forEach(h),a=S(j),c=g(j,"SPAN",{class:!0}),w(c).forEach(h),u=S(j),_=g(j,"DIV",{class:!0,style:!0});var U=w(_);v.l(U),U.forEach(h),j.forEach(h),L.forEach(h),this.h()},h(){d(s,"class","corner top-left svelte-1fzyohs"),d(i,"class","corner top-right svelte-1fzyohs"),d(o,"class","corner bottom-left svelte-1fzyohs"),d(c,"class","corner bottom-right svelte-1fzyohs"),d(_,"class","container svelte-1fzyohs"),_e(_,"--bg-icon","url("+l[6]["modal-bg-icon.png"]+")"),d(t,"class","modal-content svelte-1fzyohs"),d(e,"class","modal svelte-1fzyohs"),pe(e,"dark",l[1])},m(B,L){O(B,e,L),f(e,t),f(t,s),f(t,r),f(t,i),f(t,n),f(t,o),f(t,a),f(t,c),f(t,u),f(t,_),T[m].m(_,null),V=!0,I||(E=ge(e,"mousedown",tr(l[10])),I=!0)},p(B,[L]){let j=m;m=R(B),m===j?T[m].p(B,L):(Ee(),M(T[j],1,1,()=>{T[j]=null}),ye(),v=T[m],v?v.p(B,L):(v=T[m]=z[m](B),v.c()),N(v,1),v.m(_,null)),(!V||L&64)&&_e(_,"--bg-icon","url("+B[6]["modal-bg-icon.png"]+")"),L&2&&pe(e,"dark",B[1])},i(B){V||(N(v),Pe(()=>{k&&k.end(1),p=Ke(t,lt,{y:20,duration:250,opacity:1}),p.start()}),Pe(()=>{D&&D.end(1),y=Ke(e,et,{duration:200}),y.start()}),V=!0)},o(B){M(v),p&&p.invalidate(),k=Ms(t,lt,{y:50,duration:100,opacity:1}),y&&y.invalidate(),D=Ms(e,et,{duration:80}),V=!1},d(B){B&&h(e),T[m].d(),B&&k&&k.end(),B&&D&&D.end(),I=!1,E()}}}function io(l,e,t){let s,r;Z(l,wt,z=>t(6,s=z)),Z(l,ct,z=>t(7,r=z));let{$$slots:i={},$$scope:n}=e;const o=ua(i);let{title:a=""}=e,{dark:c=!1}=e,{blank:u=!1}=e,{disabled:_=!1}=e,{confirmOnly:m=!1}=e,{noDimiss:v=!1}=e,p;Et(()=>zs(p,{sizeAutoCapable:!1,className:"os-theme-light"}));const k=gl(),y=()=>k("confirm"),D=()=>k("cancel"),V=()=>{m||v||k("cancel")};nt("enter","modal",z=>{z.preventDefault(),!_&&y()}),nt("esc","modal",z=>{z.preventDefault(),D()});const I=nt.getScope();nt.setScope("modal"),Mi(()=>nt.deleteScope("modal",I));function E(z){Rt[z?"unshift":"push"](()=>{p=z,t(5,p)})}return l.$$set=z=>{"title"in z&&t(0,a=z.title),"dark"in z&&t(1,c=z.dark),"blank"in z&&t(2,u=z.blank),"disabled"in z&&t(3,_=z.disabled),"confirmOnly"in z&&t(4,m=z.confirmOnly),"noDimiss"in z&&t(12,v=z.noDimiss),"$$scope"in z&&t(15,n=z.$$scope)},[a,c,u,_,m,p,s,r,y,D,V,o,v,i,E,n]}class Nl extends Qe{constructor(e){super(),Je(this,e,io,no,He,{title:0,dark:1,blank:2,disabled:3,confirmOnly:4,noDimiss:12})}}function ao(l){let e,t,s,r,i,n,o,a,c,u,_=l[2]("shop.recomended.claimingBlessing")+"",m,v,p,k=l[2]("shop.recomended.dayRemaining",{values:{days:`<span>${l[0]}</span>`}})+"",y,D;return{c(){e=b("section"),t=b("div"),s=b("div"),r=P(),i=b("div"),n=b("div"),o=b("img"),c=P(),u=b("h3"),m=H(_),v=P(),p=b("h4"),this.h()},l(V){e=g(V,"SECTION",{class:!0});var I=w(e);t=g(I,"DIV",{class:!0});var E=w(t);s=g(E,"DIV",{class:!0}),w(s).forEach(h),r=S(E),i=g(E,"DIV",{class:!0});var z=w(i);n=g(z,"DIV",{class:!0});var T=w(n);o=g(T,"IMG",{src:!0,alt:!0,class:!0}),T.forEach(h),c=S(z),u=g(z,"H3",{class:!0});var R=w(u);m=F(R,_),R.forEach(h),v=S(z),p=g(z,"H4",{class:!0});var B=w(p);B.forEach(h),z.forEach(h),E.forEach(h),I.forEach(h),this.h()},h(){d(s,"class","bg svelte-1x1789m"),je(o.src,a=l[1]["welkin-moon-girl.webp"])||d(o,"src",a),d(o,"alt","Welkin Moon Girl"),d(o,"class","svelte-1x1789m"),d(n,"class","milestone svelte-1x1789m"),d(u,"class","title svelte-1x1789m"),d(p,"class","msg svelte-1x1789m"),d(i,"class","content svelte-1x1789m"),d(t,"class","container svelte-1x1789m"),d(e,"class","svelte-1x1789m")},m(V,I){O(V,e,I),f(e,t),f(t,s),f(t,r),f(t,i),f(i,n),f(n,o),f(i,c),f(i,u),f(u,m),f(i,v),f(i,p),p.innerHTML=k,y||(D=ge(e,"mousedown",l[3]),y=!0)},p(V,[I]){I&2&&!je(o.src,a=V[1]["welkin-moon-girl.webp"])&&d(o,"src",a),I&4&&_!==(_=V[2]("shop.recomended.claimingBlessing")+"")&&J(m,_),I&5&&k!==(k=V[2]("shop.recomended.dayRemaining",{values:{days:`<span>${V[0]}</span>`}})+"")&&(p.innerHTML=k)},i:we,o:we,d(V){V&&h(e),y=!1,D()}}}function oo(l,e,t){let s,r;Z(l,wt,_=>t(1,s=_)),Z(l,ct,_=>t(2,r=_));const{primogem:i}=Da,n=Re("closeWelkin"),o=Re("openObtained"),a=()=>{n(),Us.update(_=>{const m=_+i;return vs.set("primogem",m),m}),o([{item:"primogem",qty:i}])};let c;return Et(()=>{t(0,c=Cl.getData().remaining)}),[c,s,r,a]}class co extends Qe{constructor(e){super(),Je(this,e,oo,ao,He,{})}}const uo=[3,3,4,4,5,5],cs=["bg.webm","3star-single.mp4","4star-single.mp4","4star-multi.mp4","5star-single.mp4","5star-multi.mp4"],fo=async()=>{const l=[];if(Ba())return ho();for(let t=0;t<cs.length;t++){const s=cs[t],r=await Ki.get(s);!r||l.push(r)}const e=l.length===cs.length;if(e){const t=window.URL||window.webkitURL;wt.update(s=>(l.forEach(({key:r,blob:i})=>s[r]=t.createObjectURL(i)),s))}return e},ho=()=>(wt.update(l=>(cs.forEach(e=>l[e]=`/videos/${e}`),l)),!0),dr=Ls({rarity:"",progress:0,totalItem:0,itemNumber:0}),mo=async()=>{const l=[],e=cs.length;for(let t=0;t<e;t++){dr.set({rarity:uo[t],progress:0,totalItem:e,itemIndex:t});const s=await fetch(`/videos/${cs[t]}`),i=await new Response(_o(s)).blob();await Ki.put({key:cs[t],blob:i});const o=(window.URL||window.webkitURL).createObjectURL(i),a={asset:cs[t],url:o};l.push(a)}return l},_o=l=>{const e=l.headers.get("content-length");return new ReadableStream({start(t){const s=l.body.getReader();xi(t,s,e)}})};let Rl=0;const xi=(l,e,t)=>{e.read().then(s=>{if(s.done){l.close(),Rl=0;return}dr.update(r=>(Rl+=s.value.byteLength,r.progress=Math.round(Rl/t*100),r)),l.enqueue(s.value),xi(l,e,t)})};function vo(l,e,t){let s,r,i;Z(l,dr,m=>t(5,i=m));let n=3,o=0,a,c;const u=Re("readyToPull");return Z(l,u,m=>t(4,r=m)),Et(async()=>{const m=Lt.get("autoskip")||await fo();u.set(m)}),s||(async()=>{Be();const m=await mo();wt.update(v=>(m.forEach(({asset:p,url:k})=>v[p]=k),v)),u.set(!0)})(),l.$$.update=()=>{l.$$.dirty&32&&t(1,{rarity:n,progress:o,itemIndex:c,totalItem:a}=i,o,(t(3,c),t(5,i)),(t(2,a),t(5,i))),l.$$.dirty&14,l.$$.dirty&16&&(s=r)},[u,o,a,c,r,i]}class po extends Qe{constructor(e){super(),Je(this,e,vo,null,He,{})}}const bo={init({indexOfBanner:l,featured:e,rateup:t,version:s,phase:r,stdver:i,customData:n}){return this._featured=e,this._rateup=t,this._indexOfBanner=l,this._version=s,this._phase=r,this._stdver=i,this._customData=n,this},get(l){if(l===3){const e=Tl();return At(e)}if(l===4){const{_version:e,_phase:t,_rateup:s}=this,{status:r,never:i,always:n}=ml("character-event",4),o=r&&!i||n||_l("character-event"),a=Ws({banner:"character-event",rateupNamelist:s,useRateup:o,version:e,phase:t});return Is.set("character-event-4star",!o),At(a)}if(l===5){const{_featured:e,_indexOfBanner:t,_stdver:s,_customData:r}=this,{status:i,never:n,always:o}=ml("character-event",5),a=i&&!n||o||_l("character-event"),c=Bl({banner:"character-event",stdver:s,rateupItem:[e[t].character],customData:r,useRateup:a}),u=At(c),v=a?i&&!n||o?"guaranteed":"win":"lose";return Is.set("character-event-5star",!a),{...u,status:v}}}},go=l=>{const e=Is.get("beginner");if(l===3){const t=Tl();return At(t)}if(l===4){if(!e){const s=Ws({rateupNamelist:["noelle"],banner:"beginner",useRateup:!0});return Is.set("beginner",!0),At(s)}const t=Ws({banner:"beginner"});return At(t)}if(l===5){const t=Bl({banner:"beginner"});return At(t)}},wo={init({stdver:l,version:e,phase:t}){return this._stdver=l,this._version=e,this._phase=t,this},get(l){const e=Na();return At(e)}},ko={init({version:l,phase:e,featured:t,fatesystemON:s}){return this._fatesystemON=s,s?(this._featured=t,this._fatepointManager=fl.init({version:l,phase:e}),this):null},check(){return this._info=this._fatepointManager.getInfo(),this._info},verify(l){if(!this._fatesystemON)return null;const{_featured:e,_info:t,_fatepointManager:s}=this,{selected:r,point:i}=t;if(r===null)return!1;const{name:n}=l,{name:o}=e[r];return n===o?(s.remove(),Qt.set({point:0,selected:null}),i===2):(s.set(i+1,r),Qt.set({point:i+1,selected:r}),!1)}},Eo={init({rateup:l,version:e,phase:t,featured:s,fatesystemON:r}={}){return this._version=e,this._phase=t,this._rateup=l,this._featured=s,this._fatesystem=ko.init({version:e,phase:t,featured:s,fatesystemON:r}),this},get(l){if(l===3){const e=Tl();return At(e)}if(l===4){const{_version:e,_phase:t,_rateup:s}=this,{status:r,never:i,always:n}=ml("weapon-event",4),o=r&&!i||n||_l("weapon-event"),a=Ws({banner:"weapon-event",rateupNamelist:s,useRateup:o,version:e,phase:t});return Is.set("weapon-event-4star",!o),At(a)}if(l===5){const{_featured:e,_fatesystem:t}=this,{status:s,never:r,always:i}=ml("weapon-event",5);let n=s&&!r||i||_l("weapon-event"),o=!1,a=e.map(({name:y})=>y);if(t){const{selected:y,point:D}=t.check();o=y!==null&&y>-1;let V=!1;if(o&&n){const I=kt("weapon-event","selectedRate"),{item:E}=Yi([{item:"selected",chance:I},{item:"random",chance:100-I}]);V=E==="selected"}(V||o&&D>=2)&&(n=!0,a=[a[y]])}const c=Bl({banner:"weapon-event",rateupItem:a,useRateup:n}),u=At(c),_=t?.verify(u),k=n?o&&_?"selected":s&&!r||i?"guaranteed":"win":"lose";return Is.set("weapon-event-5star",!n),{...u,status:k}}}},yo={init({stdver:l,version:e,phase:t}){return this._stdver=l,this._version=e,this._phase=t,this},get(l){if(l===3){const e=Tl();return At(e)}if(l===4){const e=Ws({banner:"standard",version:this._version,phase:this._phase});return At(e)}if(l===5){const e=Bl({banner:"standard",stdver:this._stdver});return At(e)}}},{addHistory:Io}=Sa,Do=async(l,e,t)=>{if(l==="member"){const B=e.getItem(5,l,t);let L=1;const j=!1,U=B.rarity===3?"stardust":"starglitter";return{pity:L,isNew:j,bonusType:U,bonusQty:20,...B}}const s=St.get(`pity5-${l}`)+1,r=St.get(`pity4-${l}`)+1,i=kt(l,"max5"),n=()=>Cr({baseRate:kt(l,"baseRate5"),rateIncreasedAt:kt(l,"hard5"),currentPity:s,maxPity:i}),o=()=>Cr({baseRate:kt(l,"baseRate4"),currentPity:r,rateIncreasedAt:kt(l,"hard4"),maxPity:kt(l,"max4")});let a=n(),c=o(),u=100-c-a;(u<0&&s>=i||a===100)&&(c=0),u<0&&(u=0),c===100&&(a=0);const _=[{rarity:3,chance:u},{rarity:4,chance:c},{rarity:5,chance:a}],{rarity:m}=Yi(_);let v=1;const p=Ol.get(l);Ol.set(l,p+1),l==="beginner"&&(rr.update(B=>B<1?0:B-1),p>=19&&ir.set(!1)),m===5&&(St.set(`pity4-${l}`,r),St.set(`pity5-${l}`,0),v=s),m===4&&(St.set(`pity4-${l}`,0),St.set(`pity5-${l}`,s),v=r),m===3&&(St.set(`pity4-${l}`,r),St.set(`pity5-${l}`,s));const k=e.getItem(m,l,t),{manual:y,wish:D}=va.put({itemID:k.itemID}),V=y+D-1,I=V<1;await zo({pity:v,...k});const E=V>6;k.type==="character"&&!I&&(k.stelaFortuna=!E);const z=k.rarity===3?"stardust":"starglitter",T=Vo(k.rarity,k.type,E,I);return{pity:v,isNew:I,bonusType:z,bonusQty:T,...k}},zo=async l=>{const e={...l};delete e.release,delete e.limited,delete e.offset,await Io(e)},Vo=(l,e,t,s)=>e==="weapon"?l===3?15:l===4?2:10:s?0:l===4?t?5:2:t?25:10,To={async init(l,e,t){if(this._version=l,this._phase=e,l.match(/(custom|local)/gi))return this._initCustom(t);const{data:s}=await Hi(Object.assign({"../../data/banners/events/1.0.json":()=>Ve(()=>import("./1.0-1c054612.js"),[],import.meta.url),"../../data/banners/events/1.1.json":()=>Ve(()=>import("./1.1-3cf30f8b.js"),[],import.meta.url),"../../data/banners/events/1.2.json":()=>Ve(()=>import("./1.2-aaf0e2fb.js"),[],import.meta.url),"../../data/banners/events/1.3.json":()=>Ve(()=>import("./1.3-6b0b0d5d.js"),[],import.meta.url),"../../data/banners/events/1.4.json":()=>Ve(()=>import("./1.4-ad0ba199.js"),[],import.meta.url),"../../data/banners/events/1.5.json":()=>Ve(()=>import("./1.5-d00419ea.js"),[],import.meta.url),"../../data/banners/events/1.6.json":()=>Ve(()=>import("./1.6-5d274b2f.js"),[],import.meta.url),"../../data/banners/events/2.0.json":()=>Ve(()=>import("./2.0-d9400515.js"),[],import.meta.url),"../../data/banners/events/2.1.json":()=>Ve(()=>import("./2.1-b1e02588.js"),[],import.meta.url),"../../data/banners/events/2.2.json":()=>Ve(()=>import("./2.2-a8d9f452.js"),[],import.meta.url),"../../data/banners/events/2.3.json":()=>Ve(()=>import("./2.3-63f68053.js"),[],import.meta.url),"../../data/banners/events/2.4.json":()=>Ve(()=>import("./2.4-36c15b7f.js"),[],import.meta.url),"../../data/banners/events/2.5.json":()=>Ve(()=>import("./2.5-5d57feac.js"),[],import.meta.url),"../../data/banners/events/2.6.json":()=>Ve(()=>import("./2.6-0570e3ed.js"),[],import.meta.url),"../../data/banners/events/2.7.json":()=>Ve(()=>import("./2.7-1162b8cf.js"),[],import.meta.url),"../../data/banners/events/2.8.json":()=>Ve(()=>import("./2.8-c43df701.js"),[],import.meta.url),"../../data/banners/events/3.0.json":()=>Ve(()=>import("./3.0-3ac6ff72.js"),[],import.meta.url),"../../data/banners/events/3.1.json":()=>Ve(()=>import("./3.1-9f559463.js"),[],import.meta.url),"../../data/banners/events/3.2.json":()=>Ve(()=>import("./3.2-deb84a02.js"),[],import.meta.url),"../../data/banners/events/3.3.json":()=>Ve(()=>import("./3.3-60e982e0.js"),[],import.meta.url),"../../data/banners/events/3.4.json":()=>Ve(()=>import("./3.4-0159422c.js"),[],import.meta.url),"../../data/banners/events/3.5.json":()=>Ve(()=>import("./3.5-0e9eadf4.js"),[],import.meta.url),"../../data/banners/events/3.6.json":()=>Ve(()=>import("./3.6-2d1ccd10.js"),[],import.meta.url),"../../data/banners/events/3.7.json":()=>Ve(()=>import("./3.7-dfc781bc.js"),[],import.meta.url),"../../data/banners/events/3.8.json":()=>Ve(()=>import("./3.8-cab116ac.js"),[],import.meta.url),"../../data/banners/events/4.0.json":()=>Ve(()=>import("./4.0-b6f7811b.js"),[],import.meta.url),"../../data/banners/events/4.1.json":()=>Ve(()=>import("./4.1-a7933656.js"),[],import.meta.url),"../../data/banners/events/4.2.json":()=>Ve(()=>import("./4.2-afc28708.js"),[],import.meta.url),"../../data/banners/events/4.3.json":()=>Ve(()=>import("./4.3-f9a28ea0.js"),[],import.meta.url)}),`../../data/banners/events/${l}.json`),{standardVersion:r,weapons:i,events:n}=s.find(o=>o.phase===e).banners;return this._characters=n,this._isDualBanner=n.featured?.length>1,this._weapons=i,this._standardVer=r,this._customData={},this},_initCustom(l){this._customData=l,this._standardVer=Fi.reverse()[0].version;const{character:e="",rateup:t=[],bannerName:s=""}=l;return this._characters={rateup:t,featured:[{bannerName:s,character:e}]},this},_characterWish(l,e){const{featured:t,rateup:s}=this._characters,i=bo.init({version:this._version,phase:this._phase,stdver:this._standardVer,customData:this._customData,indexOfBanner:e,featured:t,rateup:s}).get(l);return i.bannerName=t[e].bannerName,i},_weaponWish(l){const{_weapons:e,_phase:t,_version:s}=this,{fatepointsystem:r=!1,featured:i,rateup:n}=e,a=Eo.init({fatesystemON:r,featured:i,phase:t,version:s,rateup:n}).get(l);return a.bannerName=e.bannerName,a},_beginnerWish(l){const e=go(l);return e.bannerName="beginner",e},_standardWish(l){const{_standardVer:e,_phase:t,_version:s}=this,i=yo.init({stdver:e,phase:t,version:s}).get(l);return i.bannerName=`wanderlust-invocation-${e}`,i},_memberWish(l){const{_standardVer:e,_phase:t,_version:s}=this,i=wo.init({stdver:e,phase:t,version:s}).get(l);return i.bannerName=`wanderlust-invocation-${e}`,i},getItem(l,e,t){const s=new Date,i={time:`${s.toLocaleDateString()} ${s.toLocaleTimeString()}`,banner:e};return e==="member"?{...i,...this._memberWish(l)}:e==="beginner"?{...i,...this._beginnerWish(l)}:e==="standard"?{...i,...this._standardWish(l)}:e==="weapon-event"?{...i,...this._weaponWish(l)}:e==="character-event"?{...i,...this._characterWish(l,t)}:{type:null,rarity:0,name:null}}};function Bo(l){let e,t;return{c(){e=b("span"),t=b("i"),this.h()},l(s){e=g(s,"SPAN",{class:!0});var r=w(e);t=g(r,"I",{class:!0}),w(t).forEach(h),r.forEach(h),this.h()},h(){d(t,"class","gi-plus svelte-19jgwr3"),d(e,"class","svelte-19jgwr3")},m(s,r){O(s,e,r),f(e,t)},d(s){s&&h(e)}}}function No(l){let e,t,s,r,i,n,o,a;t=new us({props:{type:l[0],height:"80%",width:"auto",style:"position: absolute; left: 5px;top: 50%; transform: translateY(-50%);"}});const c=l[5].default,u=wl(c,l,l[4],null);let _=l[1]&&Bo();return{c(){e=b("button"),ne(t.$$.fragment),s=P(),u&&u.c(),r=P(),_&&_.c(),this.h()},l(m){e=g(m,"BUTTON",{class:!0});var v=w(e);fe(t.$$.fragment,v),s=S(v),u&&u.l(v),r=S(v),_&&_.l(v),v.forEach(h),this.h()},h(){d(e,"class",i=js(l[0])+" svelte-19jgwr3"),pe(e,"increament",l[1])},m(m,v){O(m,e,v),ie(t,e,null),f(e,s),u&&u.m(e,null),f(e,r),_&&_.m(e,null),n=!0,o||(a=ge(e,"click",l[2]),o=!0)},p(m,[v]){const p={};v&1&&(p.type=m[0]),t.$set(p),u&&u.p&&(!n||v&16)&&kl(u,c,m,m[4],n?yl(c,m[4],v,null):El(m[4]),null),(!n||v&1&&i!==(i=js(m[0])+" svelte-19jgwr3"))&&d(e,"class",i),v&3&&pe(e,"increament",m[1])},i(m){n||(N(t.$$.fragment,m),N(u,m),n=!0)},o(m){M(t.$$.fragment,m),M(u,m),n=!1},d(m){m&&h(e),ae(t),u&&u.d(m),_&&_.d(),o=!1,a()}}}function Po(l,e,t){let{$$slots:s={},$$scope:r}=e,{type:i="primogem"}=e,{plusbutton:n=!1}=e;const o=i==="primogem"&&n,a=Re("openConvertModal"),c=()=>{!o||(a(),Be("modal"))};return l.$$set=u=>{"type"in u&&t(0,i=u.type),"plusbutton"in u&&t(3,n=u.plusbutton),"$$scope"in u&&t(4,r=u.$$scope)},[i,o,c,n,r,s]}class vl extends Qe{constructor(e){super(),Je(this,e,Po,No,He,{type:0,plusbutton:3})}}function Fr(l){let e,t,s;return{c(){e=b("div"),t=b("span"),s=H("i"),this.h()},l(r){e=g(r,"DIV",{class:!0,style:!0});var i=w(e);t=g(i,"SPAN",{class:!0});var n=w(t);s=F(n,"i"),n.forEach(h),i.forEach(h),this.h()},h(){d(t,"class","svelte-v7y2hv"),d(e,"class","notice svelte-v7y2hv"),d(e,"style",l[0])},m(r,i){O(r,e,i),f(e,t),f(t,s)},p(r,i){i&1&&d(e,"style",r[0])},d(r){r&&h(e)}}}function So(l){let e,t=l[1]&&Fr(l);return{c(){t&&t.c(),e=We()},l(s){t&&t.l(s),e=We()},m(s,r){t&&t.m(s,r),O(s,e,r)},p(s,[r]){s[1]?t?t.p(s,r):(t=Fr(s),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null)},i:we,o:we,d(s){t&&t.d(s),s&&h(e)}}}function Ro(l,e,t){let s;Z(l,Ml,o=>t(3,s=o));let{name:r=""}=e,{style:i=""}=e,n=!1;return l.$$set=o=>{"name"in o&&t(2,r=o.name),"style"in o&&t(0,i=o.style)},l.$$.update=()=>{if(l.$$.dirty&12)if(!Array.isArray(r))t(1,n=!s.includes(r));else{const o=[];r.forEach(a=>o.push(s.includes(a))),t(1,n=o.includes(!1))}},[i,n,r,s]}class hr extends Qe{constructor(e){super(),Je(this,e,Ro,So,He,{name:2,style:0})}}function Lo(l){let e,t,s,r,i,n,o,a,c,u,_,m;return{c(){e=b("div"),t=ft("svg"),s=ft("g"),r=ft("metadata"),i=ft("circle"),n=ft("path"),o=ft("path"),a=ft("path"),c=ft("path"),u=ft("path"),_=ft("path"),m=ft("path"),this.h()},l(v){e=g(v,"DIV",{class:!0});var p=w(e);t=dt(p,"svg",{xmlns:!0,"xml:space":!0,width:!0,height:!0,version:!0,style:!0,viewBox:!0,"xmlns:xlink":!0,class:!0});var k=w(t);s=dt(k,"g",{id:!0});var y=w(s);r=dt(y,"metadata",{id:!0}),w(r).forEach(h),i=dt(y,"circle",{class:!0,cx:!0,cy:!0,r:!0}),w(i).forEach(h),n=dt(y,"path",{class:!0,d:!0}),w(n).forEach(h),o=dt(y,"path",{class:!0,d:!0}),w(o).forEach(h),a=dt(y,"path",{class:!0,d:!0}),w(a).forEach(h),c=dt(y,"path",{class:!0,d:!0}),w(c).forEach(h),u=dt(y,"path",{class:!0,d:!0}),w(u).forEach(h),_=dt(y,"path",{class:!0,d:!0}),w(_).forEach(h),m=dt(y,"path",{class:!0,d:!0}),w(m).forEach(h),y.forEach(h),k.forEach(h),p.forEach(h),this.h()},h(){d(r,"id","CorelCorpID_0Corel-Layer"),d(i,"class","fil0 svelte-1vj2we9"),d(i,"cx","254424"),d(i,"cy","253230"),d(i,"r","235000"),d(n,"class","fil1 svelte-1vj2we9"),d(n,"d","M255693 0c13547,26247 28024,32190 42571,35155 86821,17695 155401,85552 174155,171983 3340,15397 8488,34162 36428,46862 -23707,12700 -32662,29168 -35212,42704 -17117,90856 -89026,162369 -180088,178895 -13076,2373 -26000,6154 -39547,30861 -11853,-20473 -28814,-28563 -42256,-31076 -92318,-17262 -164722,-91085 -179876,-184128 -1926,-11825 -6468,-24556 -31868,-35563 27093,-10160 29923,-25044 31812,-36761 14555,-90240 82951,-162462 171176,-182650 16150,-3695 39159,-5802 52705,-36282z"),d(o,"class","fil2 svelte-1vj2we9"),d(o,"d","M255542 30055c11940,23132 24698,28369 37519,30983 76516,15594 136957,75398 153485,151571 2944,13569 7481,30107 32104,41300 -20893,11192 -28785,25706 -31032,37635 -15086,80073 -78460,143098 -158714,157663 -11524,2091 -22915,5423 -34854,27198 -10446,-18043 -25394,-25173 -37240,-27388 -81362,-15213 -145172,-80274 -158528,-162274 -1697,-10422 -5700,-21642 -28085,-31342 23877,-8954 26371,-22072 28036,-32398 12828,-79530 73106,-143180 150860,-160972 14233,-3257 34511,-5114 46449,-31976z"),d(a,"class","fil1 svelte-1vj2we9"),d(a,"d","M330264 271900c123,-533 12562,-25081 10158,-32020 -1162,-1427 -2401,-2861 -3702,-5015 -10709,-2024 -12079,-25210 -13164,-33686 -14482,-47196 -72342,-40941 -75929,-52261 -358,-5588 -312,-4871 -670,-10459 -7941,-1020 -13237,1312 -15009,8106 -10178,3252 -5167,18577 -5501,26637 -1026,-642 -5493,-4403 -5588,-4447 -15337,-7251 -37943,31295 -36627,45876 -2865,18246 -4687,19434 -13733,25783 -2850,2000 -600,259 -2382,1933l565 8165c13533,41301 39679,48402 77665,53316 -1307,1383 991,2598 -2457,4085 -17607,7585 -16560,12591 -21001,31019 -1670,3686 -3464,12046 -2869,16028 -138,14893 63684,19907 79345,971 1836,-15767 -2789,-25064 -10248,-39071 -6148,-5850 -3857,-7275 -14719,-8437 -5230,-2021 -2896,1743 -3630,-4393 21183,67 46793,-11256 59496,-32130zm-57388 55269c4914,9251 4765,12192 14138,13865 -8154,-4650 -10703,-14461 -18651,-21822 -5039,-2075 -10340,-4118 -13672,-3026 -6579,2156 -10978,6676 -17718,15712 8536,-3503 10646,-9555 18301,-13067 7391,5619 -1300,14794 -3372,23823 -1079,4703 476,9454 2036,12648 -2369,-10300 409,-16090 6895,-17943 3642,6892 3606,8549 8908,12534 -3457,-7528 -12293,-20101 -7056,-29210 3890,-1154 4734,2232 10191,6486zm-30308 -71245c-9691,1465 -6106,3188 -12543,6960 -10988,6437 -14245,-5177 -25718,-6891 2209,18389 33672,21098 38261,-69zm30053 0c9691,1465 6106,3188 12543,6960 10987,6437 14245,-5177 25718,-6891 -2209,18389 -33672,21098 -38261,-69zm-15561 31599c6016,-1307 5913,-1191 7499,-6781 -3798,-269 -10937,-717 -14214,-158 1060,4275 2615,5911 6715,6939z"),d(c,"class","fil3 svelte-1vj2we9"),d(c,"d","M254424 68164c102209,0 185066,82857 185066,185066 0,102209 -82857,185066 -185066,185066 -102209,0 -185066,-82857 -185066,-185066 0,-102209 82857,-185066 185066,-185066zm0 28190c86640,0 156876,70236 156876,156876 0,86640 -70236,156876 -156876,156876 -86640,0 -156876,-70236 -156876,-156876 0,-86640 70236,-156876 156876,-156876z"),d(u,"class","fil1 svelte-1vj2we9"),d(u,"d","M329531 141779c3037,10634 9793,17203 20000,20000 -10634,3037 -17203,9793 -20000,20000 -3037,-10634 -9793,-17203 -20000,-20000 10634,-3037 17203,-9793 20000,-20000z"),d(_,"class","fil1 svelte-1vj2we9"),d(_,"d","M165200 297389c2278,7976 7345,12902 15000,15000 -7976,2278 -12902,7345 -15000,15000 -2278,-7976 -7345,-12902 -15000,-15000 7976,-2278 12902,-7345 15000,-15000z"),d(m,"class","fil1 svelte-1vj2we9"),d(m,"d","M362750 205788c1519,5317 4897,8602 10000,10000 -5317,1519 -8602,4897 -10000,10000 -1519,-5317 -4897,-8602 -10000,-10000 5317,-1519 8602,-4897 10000,-10000z"),d(s,"id","Layer_x0020_1"),d(t,"xmlns","http://www.w3.org/2000/svg"),d(t,"xml:space","preserve"),d(t,"width","100%"),d(t,"height","100%"),d(t,"version","1.1"),_e(t,"shape-rendering","geometricPrecision"),_e(t,"text-rendering","geometricPrecision"),_e(t,"image-rendering","optimizeQuality"),_e(t,"fill-rule","evenodd"),_e(t,"clip-rule","evenodd"),d(t,"viewBox","0 0 508847 506460"),d(t,"xmlns:xlink","http://www.w3.org/1999/xlink"),d(t,"class","svelte-1vj2we9"),d(e,"class","fatepoint-button svelte-1vj2we9"),pe(e,"active",l[0])},m(v,p){O(v,e,p),f(e,t),f(t,s),f(s,r),f(s,i),f(s,n),f(s,o),f(s,a),f(s,c),f(s,u),f(s,_),f(s,m)},p(v,[p]){p&1&&pe(e,"active",v[0])},i:we,o:we,d(v){v&&h(e)}}}function Ao(l,e,t){let{active:s=!1}=e;return l.$$set=r=>{"active"in r&&t(0,s=r.active)},[s]}class Oo extends Qe{constructor(e){super(),Je(this,e,Ao,Lo,He,{active:0})}}function Yr(l){let e,t,s,r,i,n,o,a,c,u,_;t=new hr({props:{name:"fatepoint"+l[1]+"-"+l[2]}}),r=new Oo({props:{active:l[4].point===2}});function m(k,y){return k[4].selected!==null?Mo:Co}let v=m(l),p=v(l);return{c(){e=b("button"),ne(t.$$.fragment),s=P(),ne(r.$$.fragment),i=P(),n=b("div"),p.c(),this.h()},l(k){e=g(k,"BUTTON",{class:!0,style:!0});var y=w(e);fe(t.$$.fragment,y),s=S(y),fe(r.$$.fragment,y),i=S(y),n=g(y,"DIV",{class:!0});var D=w(n);p.l(D),D.forEach(h),y.forEach(h),this.h()},h(){d(n,"class","point-number svelte-15mfo3k"),d(e,"class","container svelte-15mfo3k"),_e(e,"--height",l[0]+"px"),Pe(()=>l[10].call(e))},m(k,y){O(k,e,y),ie(t,e,null),f(e,s),ie(r,e,null),f(e,i),f(e,n),p.m(n,null),o=rs(e,l[10].bind(e)),c=!0,u||(_=ge(e,"click",l[6]),u=!0)},p(k,y){const D={};y&6&&(D.name="fatepoint"+k[1]+"-"+k[2]),t.$set(D);const V={};y&16&&(V.active=k[4].point===2),r.$set(V),v===(v=m(k))&&p?p.p(k,y):(p.d(1),p=v(k),p&&(p.c(),p.m(n,null))),(!c||y&1)&&_e(e,"--height",k[0]+"px")},i(k){c||(N(t.$$.fragment,k),N(r.$$.fragment,k),a||Pe(()=>{a=Ke(e,et,{duration:250}),a.start()}),c=!0)},o(k){M(t.$$.fragment,k),M(r.$$.fragment,k),c=!1},d(k){k&&h(e),ae(t),ae(r),p.d(),o(),u=!1,_()}}}function Co(l){let e,t=l[5]("wish.epitomizedPath.text")+"",s;return{c(){e=b("span"),s=H(t),this.h()},l(r){e=g(r,"SPAN",{class:!0});var i=w(e);s=F(i,t),i.forEach(h),this.h()},h(){d(e,"class","small svelte-15mfo3k")},m(r,i){O(r,e,i),f(e,s)},p(r,i){i&32&&t!==(t=r[5]("wish.epitomizedPath.text")+"")&&J(s,t)},d(r){r&&h(e)}}}function Mo(l){let e,t=l[4].point+"",s,r;return{c(){e=b("span"),s=H(t),r=H("/2"),this.h()},l(i){e=g(i,"SPAN",{class:!0});var n=w(e);s=F(n,t),n.forEach(h),r=F(i,"/2"),this.h()},h(){d(e,"class","svelte-15mfo3k")},m(i,n){O(i,e,n),f(e,s),O(i,r,n)},p(i,n){n&16&&t!==(t=i[4].point+"")&&J(s,t)},d(i){i&&h(e),i&&h(r)}}}function jo(l){let e,t,s=l[3]&&Yr(l);return{c(){s&&s.c(),e=We()},l(r){s&&s.l(r),e=We()},m(r,i){s&&s.m(r,i),O(r,e,i),t=!0},p(r,[i]){r[3]?s?(s.p(r,i),i&8&&N(s,1)):(s=Yr(r),s.c(),N(s,1),s.m(e.parentNode,e)):s&&(Ee(),M(s,1,1,()=>{s=null}),ye())},i(r){t||(N(s),t=!0)},o(r){M(s),t=!1},d(r){s&&s.d(r),r&&h(e)}}}function Uo(l,e,t){let s,r,i,n,o;Z(l,Ft,D=>t(7,s=D)),Z(l,jt,D=>t(8,r=D)),Z(l,is,D=>t(9,i=D)),Z(l,Qt,D=>t(4,n=D)),Z(l,ct,D=>t(5,o=D));let a,c,u,_,m;const v=()=>{const D=fl.init({phase:u,version:c}),{selected:V,point:I}=D.getInfo();Qt.set({point:I,selected:V})},p=Re("handleEpitomizedModal"),k=()=>{Be("exchange"),p(),fr.openNotice(`fatepoint${c}-${u}`)};Et(()=>jt.subscribe(v)),nt("e","index",D=>{D.preventDefault(),!(!m||_!=="weapon-event")&&k()});function y(){a=this.clientHeight,t(0,a)}return l.$$.update=()=>{l.$$.dirty&512&&t(1,{patch:c,phase:u}=i,c,(t(2,u),t(9,i))),l.$$.dirty&384&&t(3,{fatepointsystem:m,type:_}=r[s],m)},[a,c,u,m,n,o,k,s,r,i,y]}class ea extends Qe{constructor(e){super(),Je(this,e,Uo,jo,He,{})}}function Xr(l,e,t){const s=l.slice();return s[17]=e[t].name,s[18]=e[t].buttonPosition,s}function Gr(l){let e,t;return e=new hr({props:{name:l[4],style:"transform: translateY(-130%) translateX(50%); z-index:+10"}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r&16&&(i.name=s[4]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Wo(l){let e,t,s,r,i,n,o;return{c(){e=b("img"),this.h()},l(a){e=g(a,"IMG",{src:!0,alt:!0,style:!0,crossorigin:!0,class:!0}),this.h()},h(){je(e.src,t=l[5][`button/${l[3]}`])||d(e,"src",t),d(e,"alt",s=l[1]+" Wish"),d(e,"style",r=Kt(l[6](l[3]))),d(e,"crossorigin","anonymous"),d(e,"class","svelte-1aipbo4")},m(a,c){O(a,e,c),n||(o=ge(e,"error",Fo),n=!0)},p(a,c){c&40&&!je(e.src,t=a[5][`button/${a[3]}`])&&d(e,"src",t),c&2&&s!==(s=a[1]+" Wish")&&d(e,"alt",s),c&8&&r!==(r=Kt(a[6](a[3])))&&d(e,"style",r)},i(a){i||Pe(()=>{i=Ke(e,et,{}),i.start()})},o:we,d(a){a&&h(e),n=!1,o()}}}function qo(l){let e,t=l[2],s=[];for(let r=0;r<t.length;r+=1)s[r]=Kr(Xr(l,t,r));return{c(){for(let r=0;r<s.length;r+=1)s[r].c();e=We()},l(r){for(let i=0;i<s.length;i+=1)s[i].l(r);e=We()},m(r,i){for(let n=0;n<s.length;n+=1)s[n].m(r,i);O(r,e,i)},p(r,i){if(i&100){t=r[2];let n;for(n=0;n<t.length;n+=1){const o=Xr(r,t,n);s[n]?(s[n].p(o,i),N(s[n],1)):(s[n]=Kr(o),s[n].c(),N(s[n],1),s[n].m(e.parentNode,e))}for(;n<s.length;n+=1)s[n].d(1);s.length=t.length}},i(r){for(let i=0;i<t.length;i+=1)N(s[i])},o:we,d(r){Ut(s,r),r&&h(e)}}}function Kr(l){let e,t,s,r,i,n;return{c(){e=b("img"),this.h()},l(o){e=g(o,"IMG",{src:!0,alt:!0,style:!0,crossorigin:!0,class:!0}),this.h()},h(){je(e.src,t=l[5][l[17]])||d(e,"src",t),d(e,"alt","Weapon Wish"),d(e,"style",s=Kt(l[6](l[17],l[18]))),d(e,"crossorigin","anonymous"),d(e,"class","svelte-1aipbo4")},m(o,a){O(o,e,a),i||(n=ge(e,"error",Ho),i=!0)},p(o,a){a&36&&!je(e.src,t=o[5][o[17]])&&d(e,"src",t),a&4&&s!==(s=Kt(o[6](o[17],o[18])))&&d(e,"style",s)},i(o){r||Pe(()=>{r=Ke(e,et,{}),r.start()})},o:we,d(o){o&&h(e),i=!1,n()}}}function Qr(l){let e,t;return{c(){e=b("div"),t=H("-20%"),this.h()},l(s){e=g(s,"DIV",{class:!0});var r=w(e);t=F(r,"-20%"),r.forEach(h),this.h()},h(){d(e,"class","discount svelte-1aipbo4")},m(s,r){O(s,e,r),f(e,t)},d(s){s&&h(e)}}}function $o(l){let e,t=l[1].match("event"),s,r,i,n,o,a,c,u,_,m,v,p,k=t&&Gr(l);function y(E,z){return E[1]==="weapon-event"?qo:Wo}let D=y(l),V=D(l),I=l[1]==="beginner"&&Qr();return{c(){e=b("button"),k&&k.c(),s=P(),r=b("i"),i=P(),n=b("i"),o=P(),a=b("div"),c=b("div"),V.c(),u=P(),I&&I.c(),this.h()},l(E){e=g(E,"BUTTON",{class:!0});var z=w(e);k&&k.l(z),s=S(z),r=g(z,"I",{class:!0}),w(r).forEach(h),i=S(z),n=g(z,"I",{class:!0}),w(n).forEach(h),o=S(z),a=g(z,"DIV",{class:!0});var T=w(a);c=g(T,"DIV",{class:!0});var R=w(c);V.l(R),R.forEach(h),T.forEach(h),u=S(z),I&&I.l(z),z.forEach(h),this.h()},h(){d(r,"class","gi-primo-star svelte-1aipbo4"),d(n,"class","gi-companion svelte-1aipbo4"),d(c,"class","wrapper svelte-1aipbo4"),d(a,"class","picture svelte-1aipbo4"),d(e,"class",_="button "+l[1]+" svelte-1aipbo4"),pe(e,"active",l[0])},m(E,z){O(E,e,z),k&&k.m(e,null),f(e,s),f(e,r),f(e,i),f(e,n),f(e,o),f(e,a),f(a,c),V.m(c,null),f(e,u),I&&I.m(e,null),m=!0,v||(p=ge(e,"click",l[7]),v=!0)},p(E,[z]){z&2&&(t=E[1].match("event")),t?k?(k.p(E,z),z&2&&N(k,1)):(k=Gr(E),k.c(),N(k,1),k.m(e,s)):k&&(Ee(),M(k,1,1,()=>{k=null}),ye()),D===(D=y(E))&&V?V.p(E,z):(V.d(1),V=D(E),V&&(V.c(),N(V,1),V.m(c,null))),E[1]==="beginner"?I||(I=Qr(),I.c(),I.m(e,null)):I&&(I.d(1),I=null),(!m||z&2&&_!==(_="button "+E[1]+" svelte-1aipbo4"))&&d(e,"class",_),z&3&&pe(e,"active",E[0])},i(E){m||(N(k),N(V),m=!0)},o(E){M(k),m=!1},d(E){E&&h(e),k&&k.d(),V.d(),I&&I.d(),v=!1,p()}}}const Ho=l=>l.target.remove(),Fo=l=>l.target.remove();function Yo(l,e,t){let s,r,i,n,o,a;Z(l,$i,E=>t(13,n=E)),Z(l,is,E=>t(14,o=E)),Z(l,wt,E=>t(5,a=E));let{active:c=!1}=e,{type:u="beginner"}=e,{featured:_=[]}=e,{character:m=""}=e,{index:v=0}=e;const p=(E,z={})=>{const T=u==="weapon-event"?Ma:ja,{offset:R={}}=T.find(({name:L})=>L===E)||{},{button:B={}}=R;return Object.keys(z).forEach(L=>B[L]=z[L]),B};let k,y;const D=()=>{!c||!u.match("event")||fr.openNotice(s)},V=gl(),I=()=>V("click");return l.$$set=E=>{"active"in E&&t(0,c=E.active),"type"in E&&t(1,u=E.type),"featured"in E&&t(2,_=E.featured),"character"in E&&t(3,m=E.character),"index"in E&&t(8,v=E.index)},l.$$.update=()=>{l.$$.dirty&16384&&t(9,{patch:k,phase:y}=o,k,(t(10,y),t(14,o))),l.$$.dirty&1792&&t(11,s=`${k}-${y}-${v}`),l.$$.dirty&8194&&t(12,r=u==="weapon-event"&&n),l.$$.dirty&7680&&t(4,i=r?`fatepoint${k}-${y}`:s),l.$$.dirty&1&&D()},[c,u,_,m,i,a,p,I,v,k,y,s,r,n,o]}class Xo extends Qe{constructor(e){super(),Je(this,e,Yo,$o,He,{active:0,type:1,featured:2,character:3,index:8})}}function Jr(l,e,t){const s=l.slice();return s[34]=e[t].type,s[35]=e[t].featured,s[36]=e[t].character,s[38]=t,s}function Go(l){let e,t=l[10]("customBanner.title")+"",s;return{c(){e=b("span"),s=H(t)},l(r){e=g(r,"SPAN",{});var i=w(e);s=F(i,t),i.forEach(h)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i[0]&1024&&t!==(t=r[10]("customBanner.title")+"")&&J(s,t)},d(r){r&&h(e)}}}function Ko(l){let e,t=l[10]("wish.wishTitle")+"",s;return{c(){e=b("span"),s=H(t)},l(r){e=g(r,"SPAN",{});var i=w(e);s=F(i,t),i.forEach(h)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i[0]&1024&&t!==(t=r[10]("wish.wishTitle")+"")&&J(s,t)},d(r){r&&h(e)}}}function Zr(l){let e,t,s,r,i;return{c(){e=b("button"),t=b("i"),this.h()},l(n){e=g(n,"BUTTON",{class:!0,title:!0,"aria-label":!0});var o=w(e);t=g(o,"I",{class:!0}),w(t).forEach(h),o.forEach(h),this.h()},h(){d(t,"class",s="gi-"+(l[3]?"shrink":"fullscreen")),d(e,"class","fullscreen svelte-10cweyq"),d(e,"title","FullScreen"),d(e,"aria-label","Fullscreen")},m(n,o){O(n,e,o),f(e,t),r||(i=ge(e,"click",l[23]),r=!0)},p(n,o){o[0]&8&&s!==(s="gi-"+(n[3]?"shrink":"fullscreen"))&&d(t,"class",s)},d(n){n&&h(e),r=!1,i()}}}function Qo(l){let e,t,s,r;return{c(){e=b("button"),t=b("i"),this.h()},l(i){e=g(i,"BUTTON",{class:!0,title:!0});var n=w(e);t=g(n,"I",{class:!0}),w(t).forEach(h),n.forEach(h),this.h()},h(){d(t,"class","gi-close"),d(e,"class","close"),d(e,"title","Cancel Edit")},m(i,n){O(i,e,n),f(e,t),s||(r=ge(e,"click",l[29]),s=!0)},p:we,i:we,o:we,d(i){i&&h(e),s=!1,r()}}}function Jo(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k=l[2]&&xr(l);return s=new vl({props:{type:"primogem",plusbutton:!0,$$slots:{default:[ec]},$$scope:{ctx:l}}}),i=new vl({props:{type:l[1]?"intertwined":"acquaint",$$slots:{default:[tc]},$$scope:{ctx:l}}}),{c(){e=b("div"),k&&k.c(),t=P(),ne(s.$$.fragment),r=P(),ne(i.$$.fragment),n=P(),o=b("button"),a=b("i"),c=P(),u=b("button"),_=b("i"),this.h()},l(y){e=g(y,"DIV",{class:!0});var D=w(e);k&&k.l(D),t=S(D),fe(s.$$.fragment,D),r=S(D),fe(i.$$.fragment,D),D.forEach(h),n=S(y),o=g(y,"BUTTON",{class:!0,title:!0});var V=w(o);a=g(V,"I",{class:!0}),w(a).forEach(h),V.forEach(h),c=S(y),u=g(y,"BUTTON",{class:!0,title:!0});var I=w(u);_=g(I,"I",{class:!0}),w(_).forEach(h),I.forEach(h),this.h()},h(){d(e,"class","fates"),d(a,"class","gi-close"),d(o,"class","close"),d(o,"title","Change Banner"),d(_,"class","gi-close"),d(u,"class","close"),d(u,"title","close")},m(y,D){O(y,e,D),k&&k.m(e,null),f(e,t),ie(s,e,null),f(e,r),ie(i,e,null),O(y,n,D),O(y,o,D),f(o,a),O(y,c,D),O(y,u,D),f(u,_),m=!0,v||(p=[ge(o,"click",l[20]),ge(u,"click",l[21])],v=!0)},p(y,D){y[2]?k?(k.p(y,D),D[0]&4&&N(k,1)):(k=xr(y),k.c(),N(k,1),k.m(e,t)):k&&(Ee(),M(k,1,1,()=>{k=null}),ye());const V={};D[0]&32800|D[1]&256&&(V.$$scope={dirty:D,ctx:y}),s.$set(V);const I={};D[0]&2&&(I.type=y[1]?"intertwined":"acquaint"),D[0]&96|D[1]&256&&(I.$$scope={dirty:D,ctx:y}),i.$set(I)},i(y){m||(N(k),N(s.$$.fragment,y),N(i.$$.fragment,y),m=!0)},o(y){M(k),M(s.$$.fragment,y),M(i.$$.fragment,y),m=!1},d(y){y&&h(e),k&&k.d(),ae(s),ae(i),y&&h(n),y&&h(o),y&&h(c),y&&h(u),v=!1,ns(p)}}}function xr(l){let e,t,s,r;return e=new vl({props:{type:"starglitter",$$slots:{default:[Zo]},$$scope:{ctx:l}}}),s=new vl({props:{type:"stardust",$$slots:{default:[xo]},$$scope:{ctx:l}}}),{c(){ne(e.$$.fragment),t=P(),ne(s.$$.fragment)},l(i){fe(e.$$.fragment,i),t=S(i),fe(s.$$.fragment,i)},m(i,n){ie(e,i,n),O(i,t,n),ie(s,i,n),r=!0},p(i,n){const o={};n[0]&8192|n[1]&256&&(o.$$scope={dirty:n,ctx:i}),e.$set(o);const a={};n[0]&16384|n[1]&256&&(a.$$scope={dirty:n,ctx:i}),s.$set(a)},i(i){r||(N(e.$$.fragment,i),N(s.$$.fragment,i),r=!0)},o(i){M(e.$$.fragment,i),M(s.$$.fragment,i),r=!1},d(i){ae(e,i),i&&h(t),ae(s,i)}}}function Zo(l){let e;return{c(){e=H(l[13])},l(t){e=F(t,l[13])},m(t,s){O(t,e,s)},p(t,s){s[0]&8192&&J(e,t[13])},d(t){t&&h(e)}}}function xo(l){let e;return{c(){e=H(l[14])},l(t){e=F(t,l[14])},m(t,s){O(t,e,s)},p(t,s){s[0]&16384&&J(e,t[14])},d(t){t&&h(e)}}}function ec(l){let e=(l[5]?"\u221E":l[15])+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&32800&&e!==(e=(s[5]?"\u221E":s[15])+"")&&J(t,e)},d(s){s&&h(t)}}}function tc(l){let e=(l[5]?"\u221E":l[6])+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&96&&e!==(e=(s[5]?"\u221E":s[6])+"")&&J(t,e)},d(s){s&&h(t)}}}function sc(l){let e,t;return{c(){e=b("div"),this.h()},l(s){e=g(s,"DIV",{class:!0}),w(e).forEach(h),this.h()},h(){d(e,"class","banner-button svelte-10cweyq")},m(s,r){O(s,e,r)},p(s,r){l=s},i(s){t||Pe(()=>{t=Ke(e,l[18],{mobile:l[2]}),t.start()})},o:we,d(s){s&&h(e)}}}function lc(l){let e,t,s,r,i,n,o,a,c=l[17],u=[];for(let v=0;v<c.length;v+=1)u[v]=en(Jr(l,c,v));const _=v=>M(u[v],1,1,()=>{u[v]=null});let m=l[2]&&l[0]==="weapon-event"&&tn();return{c(){e=b("div"),t=b("div"),s=b("img"),i=P();for(let v=0;v<u.length;v+=1)u[v].c();n=P(),m&&m.c(),this.h()},l(v){e=g(v,"DIV",{class:!0});var p=w(e);t=g(p,"DIV",{class:!0,style:!0});var k=w(t);s=g(k,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),k.forEach(h),i=S(p);for(let y=0;y<u.length;y+=1)u[y].l(p);n=S(p),m&&m.l(p),p.forEach(h),this.h()},h(){je(s.src,r=l[8]["brand.png"])||d(s,"src",r),d(s,"alt","Brand"),d(s,"crossorigin","anonymous"),d(s,"class","svelte-10cweyq"),d(t,"class","bg svelte-10cweyq"),d(t,"style",l[4]),d(e,"class","banner-button svelte-10cweyq")},m(v,p){O(v,e,p),f(e,t),f(t,s),f(e,i);for(let k=0;k<u.length;k+=1)u[k].m(e,null);f(e,n),m&&m.m(e,null),a=!0},p(v,p){if(l=v,(!a||p[0]&256&&!je(s.src,r=l[8]["brand.png"]))&&d(s,"src",r),(!a||p[0]&16)&&d(t,"style",l[4]),p[0]&655488){c=l[17];let k;for(k=0;k<c.length;k+=1){const y=Jr(l,c,k);u[k]?(u[k].p(y,p),N(u[k],1)):(u[k]=en(y),u[k].c(),N(u[k],1),u[k].m(e,n))}for(Ee(),k=c.length;k<u.length;k+=1)_(k);ye()}l[2]&&l[0]==="weapon-event"?m?p[0]&5&&N(m,1):(m=tn(),m.c(),N(m,1),m.m(e,null)):m&&(Ee(),M(m,1,1,()=>{m=null}),ye())},i(v){if(!a){for(let p=0;p<c.length;p+=1)N(u[p]);N(m),o||Pe(()=>{o=Ke(e,l[18],{mobile:l[2]}),o.start()}),a=!0}},o(v){u=u.filter(Boolean);for(let p=0;p<u.length;p+=1)M(u[p]);M(m),a=!1},d(v){v&&h(e),Ut(u,v),m&&m.d()}}}function en(l){let e,t;function s(){return l[30](l[38])}return e=new Xo({props:{type:l[34],featured:l[35],character:l[36],index:l[38],active:l[7]===l[38]}}),e.$on("click",s),{c(){ne(e.$$.fragment)},l(r){fe(e.$$.fragment,r)},m(r,i){ie(e,r,i),t=!0},p(r,i){l=r;const n={};i[0]&131072&&(n.type=l[34]),i[0]&131072&&(n.featured=l[35]),i[0]&131072&&(n.character=l[36]),i[0]&128&&(n.active=l[7]===l[38]),e.$set(n)},i(r){t||(N(e.$$.fragment,r),t=!0)},o(r){M(e.$$.fragment,r),t=!1},d(r){ae(e,r)}}}function tn(l){let e,t;return e=new ea({}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function rc(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z;function T(C,q){return C[9]?Go:Ko}let R=T(l),B=R(l),L=(!l[11]||!l[12])&&Zr(l);const j=[Jo,Qo],U=[];function A(C,q){return C[9]?1:0}v=A(l),p=U[v]=j[v](l);const W=[lc,sc],Y=[];function Q(C,q){return!C[9]&&!C[16]?0:1}return D=Q(l),V=Y[D]=W[D](l),{c(){e=b("div"),t=b("div"),s=b("h1"),r=b("img"),n=P(),B.c(),o=P(),a=b("button"),c=b("i"),u=P(),L&&L.c(),_=P(),m=b("div"),p.c(),y=P(),V.c(),this.h()},l(C){e=g(C,"DIV",{id:!0,style:!0,class:!0});var q=w(e);t=g(q,"DIV",{class:!0});var te=w(t);s=g(te,"H1",{class:!0});var re=w(s);r=g(re,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),n=S(re),B.l(re),o=S(re),a=g(re,"BUTTON",{class:!0,title:!0,"aria-label":!0});var K=w(a);c=g(K,"I",{class:!0}),w(c).forEach(h),K.forEach(h),u=S(re),L&&L.l(re),re.forEach(h),_=S(te),m=g(te,"DIV",{class:!0});var le=w(m);p.l(le),le.forEach(h),te.forEach(h),y=S(q),V.l(q),q.forEach(h),this.h()},h(){je(r.src,i=l[8]["brand.png"])||d(r,"src",i),d(r,"alt","Brand"),d(r,"crossorigin","anonymous"),d(r,"class","svelte-10cweyq"),d(c,"class","gi-help"),d(a,"class","help svelte-10cweyq"),d(a,"title","Setting"),d(a,"aria-label","Setting"),d(s,"class","wish-title svelte-10cweyq"),d(m,"class","budget svelte-10cweyq"),d(t,"class","top svelte-10cweyq"),d(e,"id","header"),d(e,"style",l[4]),d(e,"class","svelte-10cweyq")},m(C,q){O(C,e,q),f(e,t),f(t,s),f(s,r),f(s,n),B.m(s,null),f(s,o),f(s,a),f(a,c),f(s,u),L&&L.m(s,null),f(t,_),f(t,m),U[v].m(m,null),f(e,y),Y[D].m(e,null),I=!0,E||(z=ge(a,"click",l[22]),E=!0)},p(C,q){(!I||q[0]&256&&!je(r.src,i=C[8]["brand.png"]))&&d(r,"src",i),R===(R=T(C))&&B?B.p(C,q):(B.d(1),B=R(C),B&&(B.c(),B.m(s,o))),!C[11]||!C[12]?L?L.p(C,q):(L=Zr(C),L.c(),L.m(s,null)):L&&(L.d(1),L=null);let te=v;v=A(C),v===te?U[v].p(C,q):(Ee(),M(U[te],1,1,()=>{U[te]=null}),ye(),p=U[v],p?p.p(C,q):(p=U[v]=j[v](C),p.c()),N(p,1),p.m(m,null));let re=D;D=Q(C),D===re?Y[D].p(C,q):(Ee(),M(Y[re],1,1,()=>{Y[re]=null}),ye(),V=Y[D],V?V.p(C,q):(V=Y[D]=W[D](C),V.c()),N(V,1),V.m(e,null)),(!I||q[0]&16)&&d(e,"style",C[4])},i(C){I||(N(p),k||Pe(()=>{k=Ke(t,lt,{y:-20,duration:800}),k.start()}),N(V),I=!0)},o(C){M(p),M(V),I=!1},d(C){C&&h(e),B.d(),L&&L.d(),U[v].d(),Y[D].d(),E=!1,z()}}}function nc(l,e,t){let s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,B;Z(l,Fs,K=>t(25,c=K)),Z(l,ar,K=>t(2,u=K)),Z(l,Ft,K=>t(7,_=K)),Z(l,zl,K=>t(26,m=K)),Z(l,ps,K=>t(27,v=K)),Z(l,bs,K=>t(28,p=K)),Z(l,wt,K=>t(8,k=K)),Z(l,gs,K=>t(9,y=K)),Z(l,ct,K=>t(10,D=K)),Z(l,za,K=>t(11,V=K)),Z(l,Vl,K=>t(12,I=K)),Z(l,Dl,K=>t(13,E=K)),Z(l,Il,K=>t(14,z=K)),Z(l,Us,K=>t(15,T=K)),Z(l,Hs,K=>t(16,R=K)),Z(l,jt,K=>t(17,B=K));let{bannerType:L=""}=e;const j=(K,le)=>le.mobile?lt(K,{x:-20,duration:1e3}):lt(K,{y:-20,duration:1e3}),U=K=>{_!==K&&(Ft.set(K),Be("changebanner"))};Re("chatToggle");const A=Re("navigate"),W=()=>{A("allbanners"),Be()},Y=()=>{window.close()},Q=Re("handleMenu"),C=()=>{if(o){if(document.exitFullscreen)return document?.exitFullscreen();if(document.webkitExitFullscreen)return document?.webkitExitFullscreen();if(document.msExitFullscreen)return document?.msExitFullscreen()}else{const K=document.body;if(K.requestFullscreen)return K.requestFullscreen();if(K.webkitRequestFullscreen)return K.webkitRequestFullscreen();if(K.msRequestFullscreen)return K?.msRequestFullscreen()}},q=Re("onWish");Z(l,q,K=>t(31,a=K)),nt("esc","index",K=>{a||(K.preventDefault(),W())}),nt("m","index",K=>{a||(K.preventDefault(),Q())});const te=()=>{gs.set(!1),Be("close")},re=K=>U(K);return l.$$set=K=>{"bannerType"in K&&t(0,L=K.bannerType)},l.$$.update=()=>{l.$$.dirty[0]&1&&t(1,s=L.match("event")),l.$$.dirty[0]&402653186&&t(6,r=s?p:v),l.$$.dirty[0]&67108864&&t(5,i=m==="unlimited"),l.$$.dirty[0]&33554436&&t(4,n=u?`height: ${c}px`:""),l.$$.dirty[0]&33554432&&t(3,o=c===window.screen.height)},[L,s,u,o,n,i,r,_,k,y,D,V,I,E,z,T,R,B,j,U,W,Y,Q,C,q,c,m,v,p,te,re]}class ic extends Qe{constructor(e){super(),Je(this,e,nc,rc,He,{bannerType:0},null,[-1,-1])}}const ac=l=>{const e=l.split("-");return{name:e.slice(0,-1).join("-"),number:e[e.length-1]}},sd=l=>l&&l.replace(/-/g," ").replace(new RegExp("_"),"'").split(" ").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(" "),oc=l=>{if(navigator.clipboard){navigator.clipboard.writeText(l);return}const e=document.createElement("textarea");return e.setAttribute("style","position: fixed; top: -200%"),e.value=l,document.body.appendChild(e),e.focus(),e.select(),new Promise((t,s)=>{document.execCommand("copy")?t():s(),e.remove()})},fs=(l,e)=>{const s=l.trim().split(" "),r=s.length-1;if(r<1)return`<span class="${e}-flat">${l}</span>`;const i=r%2,n=(r-i)/2,o=s.filter((c,u)=>u<=n).join(" "),a=s.filter((c,u)=>u>n).join(" ");return`<span class="${e}-flat">${o}</span> ${a}`};function sn(l){let e,t,s,r,i;return{c(){e=b("div"),t=H("Copied to Clipboard"),this.h()},l(n){e=g(n,"DIV",{class:!0});var o=w(e);t=F(o,"Copied to Clipboard"),o.forEach(h),this.h()},h(){d(e,"class","toast svelte-ru4wkb")},m(n,o){O(n,e,o),f(e,t),i=!0},i(n){i||(Pe(()=>{r&&r.end(1),s=Ke(e,lt,{y:10}),s.start()}),i=!0)},o(n){s&&s.invalidate(),r=Ms(e,et,{}),i=!1},d(n){n&&h(e),n&&r&&r.end()}}}function cc(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,B,L,j;return T=new Zt({}),T.$on("click",l[15]),{c(){e=b("div"),t=b("div"),s=b("label"),r=H(l[7]),i=P(),n=b("button"),o=b("i"),a=P(),c=b("span"),u=H("Copy"),_=P(),m=b("div"),v=b("button"),p=b("i"),k=P(),y=b("button"),D=b("i"),V=P(),I=b("button"),E=b("i"),z=P(),ne(T.$$.fragment),this.h()},l(U){e=g(U,"DIV",{class:!0});var A=w(e);t=g(A,"DIV",{class:!0});var W=w(t);s=g(W,"LABEL",{for:!0,class:!0});var Y=w(s);r=F(Y,l[7]),Y.forEach(h),i=S(W),n=g(W,"BUTTON",{id:!0,title:!0,class:!0});var Q=w(n);o=g(Q,"I",{class:!0}),w(o).forEach(h),a=S(Q),c=g(Q,"SPAN",{});var C=w(c);u=F(C,"Copy"),C.forEach(h),Q.forEach(h),W.forEach(h),_=S(A),m=g(A,"DIV",{class:!0});var q=w(m);v=g(q,"BUTTON",{class:!0,title:!0});var te=w(v);p=g(te,"I",{class:!0}),w(p).forEach(h),te.forEach(h),k=S(q),y=g(q,"BUTTON",{class:!0,title:!0});var re=w(y);D=g(re,"I",{class:!0}),w(D).forEach(h),re.forEach(h),V=S(q),I=g(q,"BUTTON",{class:!0,title:!0});var K=w(I);E=g(K,"I",{class:!0}),w(E).forEach(h),K.forEach(h),q.forEach(h),z=S(A),fe(T.$$.fragment,A),A.forEach(h),this.h()},h(){d(s,"for","link"),d(s,"class","link svelte-ru4wkb"),d(o,"class","gi-copy"),d(n,"id","link"),d(n,"title","Copy link"),d(n,"class","svelte-ru4wkb"),d(t,"class","copy-text svelte-ru4wkb"),d(p,"class","gi-twitter"),d(v,"class","twitter svelte-ru4wkb"),d(v,"title","Share to Twitter"),d(D,"class","gi-facebook"),d(y,"class","facebook svelte-ru4wkb"),d(y,"title","Share to Facebook"),d(E,"class","gi-dot-3"),d(I,"class","save svelte-ru4wkb"),d(I,"title","More Options"),d(m,"class","shareable svelte-ru4wkb"),d(e,"class","content svelte-ru4wkb")},m(U,A){O(U,e,A),f(e,t),f(t,s),f(s,r),f(t,i),f(t,n),f(n,o),f(n,a),f(n,c),f(c,u),f(e,_),f(e,m),f(m,v),f(v,p),f(m,k),f(m,y),f(y,D),f(m,V),f(m,I),f(I,E),f(e,z),ie(T,e,null),B=!0,L||(j=[ge(n,"click",l[9]),ge(v,"click",l[11]),ge(y,"click",l[10]),ge(I,"click",l[12])],L=!0)},p(U,A){(!B||A&128)&&J(r,U[7])},i(U){B||(N(T.$$.fragment,U),R||Pe(()=>{R=Ke(e,et,{}),R.start()}),B=!0)},o(U){M(T.$$.fragment,U),B=!1},d(U){U&&h(e),ae(T),L=!1,ns(j)}}}function uc(l){let e,t,s=l[0]("customBanner.uploadFailed")+"",r,i,n,o,a,c,u,_,m,v,p,k,y,D;return v=new Zt({props:{$$slots:{default:[hc]},$$scope:{ctx:l}}}),v.$on("click",l[14]),{c(){e=b("div"),t=b("caption"),r=H(s),i=P(),n=b("div"),o=H("Please "),a=b("button"),c=H("Report"),u=H(" if you think this is a mistake!"),_=P(),m=b("div"),ne(v.$$.fragment),this.h()},l(V){e=g(V,"DIV",{class:!0});var I=w(e);t=g(I,"CAPTION",{class:!0});var E=w(t);r=F(E,s),E.forEach(h),i=S(I),n=g(I,"DIV",{class:!0});var z=w(n);o=F(z,"Please "),a=g(z,"BUTTON",{class:!0});var T=w(a);c=F(T,"Report"),T.forEach(h),u=F(z," if you think this is a mistake!"),z.forEach(h),_=S(I),m=g(I,"DIV",{style:!0});var R=w(m);fe(v.$$.fragment,R),R.forEach(h),I.forEach(h),this.h()},h(){d(t,"class","load-text svelte-ru4wkb"),d(a,"class","svelte-ru4wkb"),d(n,"class","report svelte-ru4wkb"),_e(m,"margin-top","1rem"),d(e,"class","content svelte-ru4wkb")},m(V,I){O(V,e,I),f(e,t),f(t,r),f(e,i),f(e,n),f(n,o),f(n,a),f(a,c),f(n,u),f(e,_),f(e,m),ie(v,m,null),k=!0,y||(D=ge(a,"click",l[13]),y=!0)},p(V,I){(!k||I&1)&&s!==(s=V[0]("customBanner.uploadFailed")+"")&&J(r,s);const E={};I&134217729&&(E.$$scope={dirty:I,ctx:V}),v.$set(E)},i(V){k||(N(v.$$.fragment,V),p||Pe(()=>{p=Ke(e,et,{}),p.start()}),k=!0)},o(V){M(v.$$.fragment,V),k=!1},d(V){V&&h(e),ae(v),y=!1,D()}}}function fc(l){let e,t,s=l[0]("customBanner.almostDone")+"",r,i,n,o,a,c;return o=new us({props:{type:"loader"}}),{c(){e=b("div"),t=b("caption"),r=H(s),i=P(),n=b("div"),ne(o.$$.fragment),this.h()},l(u){e=g(u,"DIV",{class:!0});var _=w(e);t=g(_,"CAPTION",{class:!0});var m=w(t);r=F(m,s),m.forEach(h),i=S(_),n=g(_,"DIV",{class:!0});var v=w(n);fe(o.$$.fragment,v),v.forEach(h),_.forEach(h),this.h()},h(){d(t,"class","load-text svelte-ru4wkb"),d(n,"class","loader svelte-ru4wkb"),d(e,"class","content svelte-ru4wkb")},m(u,_){O(u,e,_),f(e,t),f(t,r),f(e,i),f(e,n),ie(o,n,null),c=!0},p(u,_){(!c||_&1)&&s!==(s=u[0]("customBanner.almostDone")+"")&&J(r,s)},i(u){c||(N(o.$$.fragment,u),a||Pe(()=>{a=Ke(e,et,{}),a.start()}),c=!0)},o(u){M(o.$$.fragment,u),c=!1},d(u){u&&h(e),ae(o)}}}function dc(l){let e,t,s=l[0]("customBanner.uploading",{values:{item:`<span>${l[8][l[5]]}</span>`}})+"",r,i,n,o;return{c(){e=b("div"),t=b("caption"),r=P(),i=b("div"),n=b("span"),this.h()},l(a){e=g(a,"DIV",{class:!0});var c=w(e);t=g(c,"CAPTION",{class:!0,style:!0});var u=w(t);u.forEach(h),r=S(c),i=g(c,"DIV",{class:!0,style:!0});var _=w(i);n=g(_,"SPAN",{class:!0}),w(n).forEach(h),_.forEach(h),c.forEach(h),this.h()},h(){d(t,"class","load-text svelte-ru4wkb"),_e(t,"position","relative"),d(n,"class","svelte-ru4wkb"),d(i,"class","progress-bar svelte-ru4wkb"),_e(i,"--per",l[1]+"%"),d(e,"class","content svelte-ru4wkb")},m(a,c){O(a,e,c),f(e,t),t.innerHTML=s,f(e,r),f(e,i),f(i,n)},p(a,c){c&33&&s!==(s=a[0]("customBanner.uploading",{values:{item:`<span>${a[8][a[5]]}</span>`}})+"")&&(t.innerHTML=s),c&2&&_e(i,"--per",a[1]+"%")},i(a){o||Pe(()=>{o=Ke(e,et,{}),o.start()})},o:we,d(a){a&&h(e)}}}function hc(l){let e=l[0]("customBanner.close")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r&1&&e!==(e=s[0]("customBanner.close")+"")&&J(t,e)},d(s){s&&h(t)}}}function mc(l){let e,t,s,r,i,n,o,a=l[6]&&sn();const c=[dc,fc,uc,cc],u=[];function _(m,v){return m[2]?0:m[3]?1:m[4]?2:3}return r=_(l),i=u[r]=c[r](l),{c(){a&&a.c(),e=P(),t=b("div"),s=b("div"),i.c(),this.h()},l(m){a&&a.l(m),e=S(m),t=g(m,"DIV",{class:!0});var v=w(t);s=g(v,"DIV",{class:!0});var p=w(s);i.l(p),p.forEach(h),v.forEach(h),this.h()},h(){d(s,"class","container svelte-ru4wkb"),d(t,"class","publisher svelte-ru4wkb")},m(m,v){a&&a.m(m,v),O(m,e,v),O(m,t,v),f(t,s),u[r].m(s,null),o=!0},p(m,[v]){m[6]?a?v&64&&N(a,1):(a=sn(),a.c(),N(a,1),a.m(e.parentNode,e)):a&&(Ee(),M(a,1,1,()=>{a=null}),ye());let p=r;r=_(m),r===p?u[r].p(m,v):(Ee(),M(u[p],1,1,()=>{u[p]=null}),ye(),i=u[r],i?i.p(m,v):(i=u[r]=c[r](m),i.c()),N(i,1),i.m(s,null))},i(m){o||(N(a),N(i),Pe(()=>{n||(n=ot(t,et,{},!0)),n.run(1)}),o=!0)},o(m){M(a),M(i),n||(n=ot(t,et,{},!1)),n.run(0),o=!1},d(m){a&&a.d(m),m&&h(e),m&&h(t),u[r].d(),m&&n&&n.end()}}}function _c(l,e,t){let s,r,i,n,o;Z(l,Vs,Y=>t(20,i=Y)),Z(l,Vl,Y=>t(21,n=Y)),Z(l,ct,Y=>t(0,o=Y));let a=0,c=!0,u=!1,_=!1,m="";const v={artURL:"SplashArt",faceURL:"Face",thumbnail:"Banner Preview"};let p,k="",y="",D="";const V=async()=>{Be(),oc(s),t(6,p=!0);const Y=setTimeout(()=>{t(6,p=!1),clearTimeout(Y)},2e3)},I=()=>{Be();const Y=`https://web.facebook.com/sharer/sharer.php?u=${s}&quote=${r}`;window.open(Y,"_blank")},E=()=>{Be();const Y=`https://twitter.com/intent/tweet?text=${r}&url=${s}`;window.open(Y,"_blank")},z=async()=>{try{Be();const Y={title:`${y} Wish Simulator`,text:r,url:s},Q=Ra(D),C=new File([Q],`WishSimulator.App - ${new Date().toLocaleString()}.png`,{type:Q.type,lastModified:new Date().getTime()}),q={...Y,files:[C]},re=navigator?.canShare(q)&&n?q:Y;await navigator.share(re)}catch(Y){console.error("Abort Sharing",Y)}},T=Re("chatToggle"),R=Re("publishError"),B=Re("publishDone"),L=Re("closePublisher"),j=()=>{Be(),B()},U=async()=>{t(2,c=!1),t(3,u=!0),t(16,{shareID:k,character:y,thumbnail:D}=await Qi.updateData(i),k),t(3,u=!1)},A=async({file:Y,total:Q=0,number:C=0,key:q})=>new Promise((re,K)=>{try{const le=new FormData;le.append("image",Y);const ce=new XMLHttpRequest;ce.open("POST",`https://api.imgbb.com/1/upload?key=${Ca}`),ce.send(le),ce.addEventListener("error",()=>K({success:!1})),ce.upload.addEventListener("progress",se=>{const x=se.loaded/se.total,ee=1/Q,de=x*ee,ze=(C-1)*ee+de;t(1,a=Math.round(ze*100))}),ce.addEventListener("load",async()=>{const se=JSON.parse(ce.responseText);if(ce.status!=200)return K({success:!1,...se});await qs.renewImage({id:i,newData:se,key:q}),re({...se,status_code:200})})}catch{return K({success:!1})}});return Et(async()=>{if(!window.navigator.onLine)return R();const Q=await Ys.get(i),{imgChanged:C={},images:q={}}=Q,te=Object.keys(C).filter(K=>C[K]);if(te.length<1)return U();let re=0;for await(const K of te){if(re++,!q[K])continue;const le=q[K].split(",")[1];if(!!le)try{if(t(5,m=K),await A({file:le,number:re,total:te.length,key:K}),re<te.length)continue;U()}catch{t(2,c=!1),t(3,u=!1),t(4,_=!0)}}}),l.$$.update=()=>{l.$$.dirty&65536&&t(7,s=`${Oa}/?banner=${k}`),l.$$.dirty&1&&(r=o("customBanner.shareText"))},[o,a,c,u,_,m,p,s,v,V,I,E,z,T,L,j,k]}class vc extends Qe{constructor(e){super(),Je(this,e,_c,mc,He,{})}}function ln(l){let e,t;return e=new vc({}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function rn(l){let e,t,s=!l[13]&&nn(l);return{c(){e=b("div"),s&&s.c(),this.h()},l(r){e=g(r,"DIV",{class:!0});var i=w(e);s&&s.l(i),i.forEach(h),this.h()},h(){d(e,"class","footer-info svelte-6g0x8w")},m(r,i){O(r,e,i),s&&s.m(e,null),t=!0},p(r,i){r[13]?s&&(Ee(),M(s,1,1,()=>{s=null}),ye()):s?(s.p(r,i),i[0]&8192&&N(s,1)):(s=nn(r),s.c(),N(s,1),s.m(e,null))},i(r){t||(N(s),t=!0)},o(r){M(s),t=!1},d(r){r&&h(e),s&&s.d()}}}function nn(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k=l[0]==="weapon-event"&&an();return r=new us({props:{type:"starglitter"}}),u=new us({props:{type:"stardust"}}),{c(){k&&k.c(),e=P(),t=b("div"),s=b("div"),ne(r.$$.fragment),i=P(),n=b("span"),o=H(l[14]),a=P(),c=b("div"),ne(u.$$.fragment),_=P(),m=b("span"),v=H(l[15]),this.h()},l(y){k&&k.l(y),e=S(y),t=g(y,"DIV",{class:!0});var D=w(t);s=g(D,"DIV",{class:!0});var V=w(s);fe(r.$$.fragment,V),i=S(V),n=g(V,"SPAN",{class:!0});var I=w(n);o=F(I,l[14]),I.forEach(h),V.forEach(h),a=S(D),c=g(D,"DIV",{class:!0});var E=w(c);fe(u.$$.fragment,E),_=S(E),m=g(E,"SPAN",{class:!0});var z=w(m);v=F(z,l[15]),z.forEach(h),E.forEach(h),D.forEach(h),this.h()},h(){d(n,"class","svelte-6g0x8w"),d(s,"class","starglitter svelte-6g0x8w"),d(m,"class","svelte-6g0x8w"),d(c,"class","stardust svelte-6g0x8w"),d(t,"class","wish svelte-6g0x8w")},m(y,D){k&&k.m(y,D),O(y,e,D),O(y,t,D),f(t,s),ie(r,s,null),f(s,i),f(s,n),f(n,o),f(t,a),f(t,c),ie(u,c,null),f(c,_),f(c,m),f(m,v),p=!0},p(y,D){y[0]==="weapon-event"?k?D[0]&1&&N(k,1):(k=an(),k.c(),N(k,1),k.m(e.parentNode,e)):k&&(Ee(),M(k,1,1,()=>{k=null}),ye()),(!p||D[0]&16384)&&J(o,y[14]),(!p||D[0]&32768)&&J(v,y[15])},i(y){p||(N(k),N(r.$$.fragment,y),N(u.$$.fragment,y),p=!0)},o(y){M(k),M(r.$$.fragment,y),M(u.$$.fragment,y),p=!1},d(y){k&&k.d(y),y&&h(e),y&&h(t),ae(r),ae(u)}}}function an(l){let e,t;return e=new ea({}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function pc(l){let e,t,s,r,i,n,o,a=l[10]("customBanner.finishAndWish")+"",c,u,_,m,v,p,k,y,D={ctx:l,current:null,token:null,hasCatch:!1,pending:yc,then:wc,catch:gc,value:38};return Al(p=qs.isHostedBanner(l[11]),D),{c(){e=b("div"),t=P(),s=b("div"),r=b("button"),i=b("i"),n=P(),o=b("span"),c=H(a),u=P(),_=b("button"),m=b("i"),v=P(),D.block.c(),this.h()},l(V){e=g(V,"DIV",{class:!0}),w(e).forEach(h),t=S(V),s=g(V,"DIV",{class:!0});var I=w(s);r=g(I,"BUTTON",{class:!0,style:!0});var E=w(r);i=g(E,"I",{class:!0,style:!0}),w(i).forEach(h),n=S(E),o=g(E,"SPAN",{});var z=w(o);c=F(z,a),z.forEach(h),E.forEach(h),u=S(I),_=g(I,"BUTTON",{class:!0,style:!0});var T=w(_);m=g(T,"I",{class:!0,style:!0}),w(m).forEach(h),v=S(T),D.block.l(T),T.forEach(h),I.forEach(h),this.h()},h(){d(e,"class","left menu-button svelte-6g0x8w"),d(i,"class","gi-primo-star"),_e(i,"transform","translateX(-50%)"),d(r,"class","wish-button svelte-6g0x8w"),_e(r,"flex-direction","row"),_e(r,"line-height","0"),d(m,"class","gi-share"),_e(m,"transform","translateX(-50%)"),d(_,"class","wish-button svelte-6g0x8w"),_e(_,"flex-direction","row"),_e(_,"line-height","0"),d(s,"class","right roll-button svelte-6g0x8w")},m(V,I){O(V,e,I),O(V,t,I),O(V,s,I),f(s,r),f(r,i),f(r,n),f(r,o),f(o,c),f(s,u),f(s,_),f(_,m),f(_,v),D.block.m(_,D.anchor=null),D.mount=()=>_,D.anchor=null,k||(y=[ge(r,"click",l[23]),ge(_,"click",l[24])],k=!0)},p(V,I){l=V,I[0]&1024&&a!==(a=l[10]("customBanner.finishAndWish")+"")&&J(c,a),D.ctx=l,I[0]&2048&&p!==(p=qs.isHostedBanner(l[11]))&&Al(p,D)||fa(D,l,I)},i:we,o:we,d(V){V&&h(e),V&&h(t),V&&h(s),D.block.d(),D.token=null,D=null,k=!1,ns(y)}}}function bc(l){let e,t,s,r,i,n,o,a,c,u,_,m,v=l[10]("wish.rollButton",{values:{count:`\xD7${l[2]?10:l[12]}`}})+"",p,k,y,D,V,I,E,z,T;t=new Os({props:{$$slots:{default:[Ic]},$$scope:{ctx:l}}}),t.$on("click",l[32]),r=new Os({props:{$$slots:{default:[Dc]},$$scope:{ctx:l}}}),r.$on("click",l[33]),n=new Os({props:{$$slots:{default:[zc]},$$scope:{ctx:l}}}),n.$on("click",l[34]);let R=!l[2]&&cn(l),B=l[0]==="beginner"&&un();D=new us({props:{type:l[6]}});function L(A,W){return A[2]?Tc:Vc}let j=L(l),U=j(l);return{c(){e=b("div"),ne(t.$$.fragment),s=P(),ne(r.$$.fragment),i=P(),ne(n.$$.fragment),o=P(),a=b("div"),R&&R.c(),c=P(),u=b("button"),B&&B.c(),_=P(),m=b("div"),p=H(v),k=P(),y=b("div"),ne(D.$$.fragment),V=P(),U.c(),this.h()},l(A){e=g(A,"DIV",{class:!0});var W=w(e);fe(t.$$.fragment,W),s=S(W),fe(r.$$.fragment,W),i=S(W),fe(n.$$.fragment,W),W.forEach(h),o=S(A),a=g(A,"DIV",{class:!0});var Y=w(a);R&&R.l(Y),c=S(Y),u=g(Y,"BUTTON",{class:!0});var Q=w(u);B&&B.l(Q),_=S(Q),m=g(Q,"DIV",{class:!0});var C=w(m);p=F(C,v),C.forEach(h),k=S(Q),y=g(Q,"DIV",{class:!0});var q=w(y);fe(D.$$.fragment,q),V=S(q),U.l(q),q.forEach(h),Q.forEach(h),Y.forEach(h),this.h()},h(){d(e,"class","left menu-button svelte-6g0x8w"),d(m,"class","top"),d(y,"class","bottom svelte-6g0x8w"),d(u,"class","ten wish-button svelte-6g0x8w"),u.disabled=I=l[9]||!l[17],d(a,"class","right roll-button svelte-6g0x8w")},m(A,W){O(A,e,W),ie(t,e,null),f(e,s),ie(r,e,null),f(e,i),ie(n,e,null),O(A,o,W),O(A,a,W),R&&R.m(a,null),f(a,c),f(a,u),B&&B.m(u,null),f(u,_),f(u,m),f(m,p),f(u,k),f(u,y),ie(D,y,null),f(y,V),U.m(y,null),E=!0,z||(T=ge(u,"click",l[22]),z=!0)},p(A,W){const Y={};W[0]&1048|W[1]&256&&(Y.$$scope={dirty:W,ctx:A}),t.$set(Y);const Q={};W[0]&1024|W[1]&256&&(Q.$$scope={dirty:W,ctx:A}),r.$set(Q);const C={};W[0]&1024|W[1]&256&&(C.$$scope={dirty:W,ctx:A}),n.$set(C),A[2]?R&&(Ee(),M(R,1,1,()=>{R=null}),ye()):R?(R.p(A,W),W[0]&4&&N(R,1)):(R=cn(A),R.c(),N(R,1),R.m(a,c)),A[0]==="beginner"?B||(B=un(),B.c(),B.m(u,_)):B&&(B.d(1),B=null),(!E||W[0]&5124)&&v!==(v=A[10]("wish.rollButton",{values:{count:`\xD7${A[2]?10:A[12]}`}})+"")&&J(p,v);const q={};W[0]&64&&(q.type=A[6]),D.$set(q),j===(j=L(A))&&U?U.p(A,W):(U.d(1),U=j(A),U&&(U.c(),U.m(y,null))),(!E||W[0]&131584&&I!==(I=A[9]||!A[17]))&&(u.disabled=I)},i(A){E||(N(t.$$.fragment,A),N(r.$$.fragment,A),N(n.$$.fragment,A),N(R),N(D.$$.fragment,A),E=!0)},o(A){M(t.$$.fragment,A),M(r.$$.fragment,A),M(n.$$.fragment,A),M(R),M(D.$$.fragment,A),E=!1},d(A){A&&h(e),ae(t),ae(r),ae(n),A&&h(o),A&&h(a),R&&R.d(),B&&B.d(),ae(D),U.d(),z=!1,T()}}}function gc(l){return{c:we,l:we,m:we,p:we,d:we}}function wc(l){let e;function t(i,n){return i[38]?Ec:kc}let s=t(l),r=s(l);return{c(){r.c(),e=We()},l(i){r.l(i),e=We()},m(i,n){r.m(i,n),O(i,e,n)},p(i,n){s===(s=t(i))&&r?r.p(i,n):(r.d(1),r=s(i),r&&(r.c(),r.m(e.parentNode,e)))},d(i){r.d(i),i&&h(e)}}}function kc(l){let e,t=l[10]("customBanner.publish")+"",s;return{c(){e=b("span"),s=H(t)},l(r){e=g(r,"SPAN",{});var i=w(e);s=F(i,t),i.forEach(h)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i[0]&1024&&t!==(t=r[10]("customBanner.publish")+"")&&J(s,t)},d(r){r&&h(e)}}}function Ec(l){let e,t=l[10]("customBanner.updateAndShare")+"",s;return{c(){e=b("span"),s=H(t)},l(r){e=g(r,"SPAN",{});var i=w(e);s=F(i,t),i.forEach(h)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i[0]&1024&&t!==(t=r[10]("customBanner.updateAndShare")+"")&&J(s,t)},d(r){r&&h(e)}}}function yc(l){let e,t=l[10]("customBanner.publish")+"",s;return{c(){e=b("span"),s=H(t)},l(r){e=g(r,"SPAN",{});var i=w(e);s=F(i,t),i.forEach(h)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i[0]&1024&&t!==(t=r[10]("customBanner.publish")+"")&&J(s,t)},d(r){r&&h(e)}}}function on(l){let e,t;return e=new hr({props:{name:l[4],style:"transform: translateX(70%) translateY(-80%)"}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&16&&(i.name=s[4]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Ic(l){let e,t=l[10]("shop.text")+"",s,r,i=l[3]&&on(l);return{c(){i&&i.c(),e=P(),s=H(t)},l(n){i&&i.l(n),e=S(n),s=F(n,t)},m(n,o){i&&i.m(n,o),O(n,e,o),O(n,s,o),r=!0},p(n,o){n[3]?i?(i.p(n,o),o[0]&8&&N(i,1)):(i=on(n),i.c(),N(i,1),i.m(e.parentNode,e)):i&&(Ee(),M(i,1,1,()=>{i=null}),ye()),(!r||o[0]&1024)&&t!==(t=n[10]("shop.text")+"")&&J(s,t)},i(n){r||(N(i),r=!0)},o(n){M(i),r=!1},d(n){i&&i.d(n),n&&h(e),n&&h(s)}}}function Dc(l){let e=l[10]("inventory.text")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&1024&&e!==(e=s[10]("inventory.text")+"")&&J(t,e)},d(s){s&&h(t)}}}function zc(l){let e=l[10]("history.text")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&1024&&e!==(e=s[10]("history.text")+"")&&J(t,e)},d(s){s&&h(t)}}}function cn(l){let e,t,s=l[10]("wish.rollButton",{values:{count:"\xD71"}})+"",r,i,n,o,a,c,u,_,m,v,p;return o=new us({props:{type:l[6]}}),{c(){e=b("button"),t=b("div"),r=H(s),i=P(),n=b("div"),ne(o.$$.fragment),a=P(),c=b("span"),u=H("x 1"),this.h()},l(k){e=g(k,"BUTTON",{class:!0});var y=w(e);t=g(y,"DIV",{class:!0});var D=w(t);r=F(D,s),D.forEach(h),i=S(y),n=g(y,"DIV",{class:!0});var V=w(n);fe(o.$$.fragment,V),a=S(V),c=g(V,"SPAN",{style:!0,class:!0});var I=w(c);u=F(I,"x 1"),I.forEach(h),V.forEach(h),y.forEach(h),this.h()},h(){d(t,"class","top"),_e(c,"margin-left","7px"),d(c,"class","svelte-6g0x8w"),pe(c,"red",l[7]<1&&!l[5]),d(n,"class","bottom svelte-6g0x8w"),d(e,"class","single wish-button svelte-6g0x8w"),e.disabled=_=l[9]||!l[17]},m(k,y){O(k,e,y),f(e,t),f(t,r),f(e,i),f(e,n),ie(o,n,null),f(n,a),f(n,c),f(c,u),m=!0,v||(p=ge(e,"click",l[21]),v=!0)},p(k,y){(!m||y[0]&1024)&&s!==(s=k[10]("wish.rollButton",{values:{count:"\xD71"}})+"")&&J(r,s);const D={};y[0]&64&&(D.type=k[6]),o.$set(D),y[0]&160&&pe(c,"red",k[7]<1&&!k[5]),(!m||y[0]&131584&&_!==(_=k[9]||!k[17]))&&(e.disabled=_)},i(k){m||(N(o.$$.fragment,k),m=!0)},o(k){M(o.$$.fragment,k),m=!1},d(k){k&&h(e),ae(o),v=!1,p()}}}function un(l){let e,t;return{c(){e=b("span"),t=H("-20%"),this.h()},l(s){e=g(s,"SPAN",{class:!0});var r=w(e);t=F(r,"-20%"),r.forEach(h),this.h()},h(){d(e,"class","discount svelte-6g0x8w")},m(s,r){O(s,e,r),f(e,t)},d(s){s&&h(e)}}}function Vc(l){let e,t,s;return{c(){e=b("span"),t=H("x "),s=H(l[12]),this.h()},l(r){e=g(r,"SPAN",{style:!0,class:!0});var i=w(e);t=F(i,"x "),s=F(i,l[12]),i.forEach(h),this.h()},h(){_e(e,"margin-left","7px"),d(e,"class","svelte-6g0x8w"),pe(e,"red",l[7]<l[12]&&!l[5])},m(r,i){O(r,e,i),f(e,t),f(e,s)},p(r,i){i[0]&4096&&J(s,r[12]),i[0]&4256&&pe(e,"red",r[7]<r[12]&&!r[5])},d(r){r&&h(e)}}}function Tc(l){let e,t;return{c(){e=b("span"),t=H("x 8"),this.h()},l(s){e=g(s,"SPAN",{style:!0,class:!0});var r=w(e);t=F(r,"x 8"),r.forEach(h),this.h()},h(){_e(e,"margin-left","7px"),d(e,"class","svelte-6g0x8w"),pe(e,"red",l[7]<8&&!l[5])},m(s,r){O(s,e,r),f(e,t)},p(s,r){r[0]&160&&pe(e,"red",s[7]<8&&!s[5])},d(s){s&&h(e)}}}function Bc(l){let e,t,s,r,i,n,o,a=l[1]&&ln(),c=!l[8]&&rn(l);const u=[bc,pc],_=[];function m(v,p){return v[8]?1:0}return i=m(l),n=_[i]=u[i](l),{c(){a&&a.c(),e=P(),t=b("div"),c&&c.c(),s=P(),r=b("div"),n.c(),this.h()},l(v){a&&a.l(v),e=S(v),t=g(v,"DIV",{id:!0,style:!0,class:!0});var p=w(t);c&&c.l(p),s=S(p),r=g(p,"DIV",{class:!0,style:!0});var k=w(r);n.l(k),k.forEach(h),p.forEach(h),this.h()},h(){d(r,"class","row svelte-6g0x8w"),_e(r,"--bg","url("+l[16]["button.webp"]+")"),d(t,"id","footer"),_e(t,"width","100%"),_e(t,"height","100%"),d(t,"class","svelte-6g0x8w")},m(v,p){a&&a.m(v,p),O(v,e,p),O(v,t,p),c&&c.m(t,null),f(t,s),f(t,r),_[i].m(r,null),o=!0},p(v,p){v[1]?a?p[0]&2&&N(a,1):(a=ln(),a.c(),N(a,1),a.m(e.parentNode,e)):a&&(Ee(),M(a,1,1,()=>{a=null}),ye()),v[8]?c&&(Ee(),M(c,1,1,()=>{c=null}),ye()):c?(c.p(v,p),p[0]&256&&N(c,1)):(c=rn(v),c.c(),N(c,1),c.m(t,s));let k=i;i=m(v),i===k?_[i].p(v,p):(Ee(),M(_[k],1,1,()=>{_[k]=null}),ye(),n=_[i],n?n.p(v,p):(n=_[i]=u[i](v),n.c()),N(n,1),n.m(r,null)),(!o||p[0]&65536)&&_e(r,"--bg","url("+v[16]["button.webp"]+")")},i(v){o||(N(a),N(c),N(n),o=!0)},o(v){M(a),M(c),M(n),o=!1},d(v){a&&a.d(v),v&&h(e),v&&h(t),c&&c.d(),_[i].d()}}}function Nc(l,e,t){let s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,B,L;Z(l,gs,ee=>t(8,_=ee)),Z(l,ct,ee=>t(10,p=ee)),Z(l,Vs,ee=>t(11,k=ee)),Z(l,nr,ee=>t(12,y=ee)),Z(l,is,ee=>t(28,D=ee)),Z(l,zl,ee=>t(29,V=ee)),Z(l,ps,ee=>t(30,I=ee)),Z(l,bs,ee=>t(31,E=ee)),Z(l,ar,ee=>t(13,z=ee)),Z(l,Dl,ee=>t(14,T=ee)),Z(l,Il,ee=>t(15,R=ee)),Z(l,wt,ee=>t(16,B=ee));let{bannerType:j="beginner"}=e;const U=Re("onWish");Z(l,U,ee=>t(9,m=ee));const A=Re("readyToPull");Z(l,A,ee=>t(17,L=ee));const W=Re("navigate"),Y=ee=>(W(ee),["inventory","history"].includes(ee)?Be(ee):ee==="shop"?Be("shopopen"):Be()),Q=Re("doRoll"),C=()=>{if(j==="member"&&(!Array.isArray(ll)||ll.length==0)){alert("\u8BF7\u70B9\u51FB\u5DE6\u4E0A\u89D2\u95EE\u53F7\u53BB\u4E0A\u4F20\u540D\u5355");return}Be("roll"),Q(1,j)},q=()=>{if(j==="member"&&(!Array.isArray(ll)||ll.length==0)){alert("\u8BF7\u70B9\u51FB\u5DE6\u4E0A\u89D2\u95EE\u53F7\u53BB\u4E0A\u4F20\u540D\u5355");return}Be("roll"),Q(s?10:y,j)},te=async()=>{if(Be(),await qs.isComplete(k))return Ds.set({patch:"Custom",phase:k});const de=p("customBanner.completeAllField");Jt({message:de,type:"error"})};let re=!1;const K=async()=>{if(Be(),await qs.isComplete(k))return t(1,re=!0);const de=p("customBanner.completeAllField");Jt({message:de,type:"error"})};Fe("closePublisher",()=>t(1,re=!1)),Fe("publishDone",()=>{Ds.set({patch:"Custom",phase:k}),t(1,re=!1),Be("close")}),Fe("publishError",()=>{const ee=p("customBanner.networkError");Jt({message:ee,type:"error"}),t(1,re=!1)});const le=Re("appReady");Z(l,le,ee=>t(35,v=ee)),nt("enter","index",ee=>{!v||m||_||(ee.preventDefault(),q())}),nt("shift+enter","index",ee=>{!v||m||s||_||(ee.preventDefault(),C())}),nt("s,c,h,d","index",ee=>{if(!v||m||_)return;ee.preventDefault();const[de]=nt.getPressedKeyString(),ze=de.toLocaleLowerCase();if(ze==="s")return Y("shop");if(ze==="c")return Y("inventory");if(ze==="h")return Y("history");if(ze==="d")return Y("details")});const ce=()=>Y("shop"),se=()=>Y("inventory"),x=()=>Y("history");return l.$$set=ee=>{"bannerType"in ee&&t(0,j=ee.bannerType)},l.$$.update=()=>{l.$$.dirty[0]&1&&t(2,s=j==="beginner"),l.$$.dirty[0]&1&&t(27,r=j.match("event")),l.$$.dirty[0]&1207959552|l.$$.dirty[1]&1&&t(7,i=r?E:I),l.$$.dirty[0]&134217728&&t(6,n=r?"intertwined":"acquaint"),l.$$.dirty[0]&536870912&&t(5,o=V==="unlimited"),l.$$.dirty[0]&268435456&&t(26,a=D.patch),l.$$.dirty[0]&67108864&&t(4,c=[`outfits-${a}`,`recomended-${a}`]),l.$$.dirty[0]&67108864&&t(3,u=Ua(a))},[j,re,s,u,c,o,n,i,_,m,p,k,y,z,T,R,B,L,U,A,Y,C,q,te,K,le,a,r,D,V,I,E,ce,se,x]}class Pc extends Qe{constructor(e){super(),Je(this,e,Nc,Bc,He,{bannerType:0},null,[-1,-1])}}function Sc(l){let e,t,s,r,i,n=l[0]("shop.insufficient")+"",o;return{c(){e=b("br"),t=P(),s=b("br"),r=P(),i=b("span"),o=H(n),this.h()},l(a){e=g(a,"BR",{}),t=S(a),s=g(a,"BR",{}),r=S(a),i=g(a,"SPAN",{class:!0});var c=w(i);o=F(c,n),c.forEach(h),this.h()},h(){d(i,"class","red")},m(a,c){O(a,e,c),O(a,t,c),O(a,s,c),O(a,r,c),O(a,i,c),f(i,o)},p(a,c){c&1&&n!==(n=a[0]("shop.insufficient")+"")&&J(o,n)},d(a){a&&h(e),a&&h(t),a&&h(s),a&&h(r),a&&h(i)}}}function Rc(l){let e,t,s,r=l[0]("shop.fateNeeded",{values:{rollQty:`<span class="yellow">${l[3]}</span>`,currency:l[2]}})+"",i,n,o,a,c=l[0]("shop.primoNeeded",{values:{primoPrice:`
-						<span class="${l[5]?"red":"yellow"}">
-							${l[4]}
-						</span>
-					`}})+"",u,_=l[5]&&Sc(l);return{c(){e=b("div"),t=b("div"),s=new cl(!1),i=P(),n=b("br"),o=P(),a=new cl(!1),u=P(),_&&_.c(),this.h()},l(m){e=g(m,"DIV",{class:!0});var v=w(e);t=g(v,"DIV",{});var p=w(t);s=ul(p,!1),i=S(p),n=g(p,"BR",{}),o=S(p),a=ul(p,!1),u=S(p),_&&_.l(p),p.forEach(h),v.forEach(h),this.h()},h(){s.a=i,a.a=u,d(e,"class","exchange svelte-eojthv")},m(m,v){O(m,e,v),f(e,t),s.m(r,t),f(t,i),f(t,n),f(t,o),a.m(c,t),f(t,u),_&&_.m(t,null)},p(m,v){v&1&&r!==(r=m[0]("shop.fateNeeded",{values:{rollQty:`<span class="yellow">${m[3]}</span>`,currency:m[2]}})+"")&&s.p(r),v&1&&c!==(c=m[0]("shop.primoNeeded",{values:{primoPrice:`
-						<span class="${m[5]?"red":"yellow"}">
-							${m[4]}
-						</span>
-					`}})+"")&&a.p(c),m[5]&&_.p(m,v)},d(m){m&&h(e),_&&_.d()}}}function Lc(l){let e,t;return e=new Nl({props:{title:l[0]("shop.paimonBargains"),disabled:l[5],$$slots:{default:[Rc]},$$scope:{ctx:l}}}),e.$on("cancel",l[1]),e.$on("confirm",l[6]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,[r]){const i={};r&1&&(i.title=s[0]("shop.paimonBargains")),r&65537&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Ac(l,e,t){let s,r,i,n,o;Z(l,nr,I=>t(9,s=I)),Z(l,Us,I=>t(10,r=I)),Z(l,ct,I=>t(0,i=I)),Z(l,ps,I=>t(11,n=I)),Z(l,bs,I=>t(12,o=I));let{isEventBanner:a=!1}=e,{rollCost:c=0}=e;const u=Re("closeModal"),_=Re("reroll"),m=a?o:n,v=i(a?"shop.item.intertwined":"shop.item.acquaint"),p=c-m,k=p*160,y=r<k,D=async()=>(await V(),_(s)),V=async()=>{new Promise((I,E)=>{if(y)return E("not enough Primogem");Us.update(z=>{const T=z-k;return vs.set("primogem",T),I("ok"),T}),a?bs.update(z=>{const T=z+p;return vs.set("intertwined",T),I("ok"),T}):ps.update(z=>{const T=z+p;return vs.set("acquaint",T),I("ok"),T})})};return l.$$set=I=>{"isEventBanner"in I&&t(7,a=I.isEventBanner),"rollCost"in I&&t(8,c=I.rollCost)},[i,u,v,p,k,y,D,a,c]}class Oc extends Qe{constructor(e){super(),Je(this,e,Ac,Lc,He,{isEventBanner:7,rollCost:8})}}function Cc(l){let e,t,s=l[1]("wish.banner.novice")+"",r,i,n,o=fs(l[1]("banner.beginner"),"geo")+"",a,c,u,_,m,v=l[1]("wish.banner.beginnerSet",{values:{character:l[3]}})+"",p,k,y,D,V,I,E,z=l[1]("wish.banner.wishDescription")+"",T,R,B,L=l[1]("wish.banner.beginnerNote")+"",j,U,A,W,Y,Q,C,q,te,re=l[1]("wish.banner.up")+"",K,le,ce,se,x=l[1](`${l[0]}.title`)+"",ee,de,ze,X,$=l[1]("wish.banner.beginnerChance",{values:{chances:`${l[4]}/20`}})+"",me;return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("h1"),c=P(),u=b("div"),_=b("div"),m=b("div"),p=H(v),k=P(),y=b("div"),D=b("div"),V=b("i"),I=P(),E=b("p"),T=H(z),R=P(),B=b("div"),j=H(L),A=P(),W=b("div"),Y=b("div"),Q=b("span"),C=H(l[3]),q=P(),te=b("span"),K=H(re),ce=P(),se=b("div"),ee=H(x),ze=P(),X=b("div"),me=H($),this.h()},l(ve){e=g(ve,"DIV",{class:!0});var G=w(e);t=g(G,"DIV",{class:!0});var he=w(t);r=F(he,s),he.forEach(h),i=S(G),n=g(G,"H1",{class:!0});var ke=w(n);ke.forEach(h),c=S(G),u=g(G,"DIV",{class:!0});var Ie=w(u);_=g(Ie,"DIV",{class:!0});var be=w(_);m=g(be,"DIV",{class:!0});var Te=w(m);p=F(Te,v),Te.forEach(h),k=S(be),y=g(be,"DIV",{class:!0});var qe=w(y);D=g(qe,"DIV",{class:!0});var Ze=w(D);V=g(Ze,"I",{class:!0}),w(V).forEach(h),Ze.forEach(h),I=S(qe),E=g(qe,"P",{class:!0});var Me=w(E);T=F(Me,z),Me.forEach(h),qe.forEach(h),R=S(be),B=g(be,"DIV",{class:!0});var Ue=w(B);j=F(Ue,L),Ue.forEach(h),be.forEach(h),Ie.forEach(h),A=S(G),W=g(G,"DIV",{class:!0});var tt=w(W);Y=g(tt,"DIV",{class:!0,style:!0});var Le=w(Y);Q=g(Le,"SPAN",{class:!0});var Ae=w(Q);C=F(Ae,l[3]),Ae.forEach(h),q=S(Le),te=g(Le,"SPAN",{class:!0});var Oe=w(te);K=F(Oe,re),Oe.forEach(h),Le.forEach(h),tt.forEach(h),ce=S(G),se=g(G,"DIV",{class:!0});var Ne=w(se);ee=F(Ne,x),Ne.forEach(h),ze=S(G),X=g(G,"DIV",{class:!0});var oe=w(X);me=F(oe,$),oe.forEach(h),G.forEach(h),this.h()},h(){d(t,"class","top svelte-7m46zd"),d(n,"class","card-stroke svelte-7m46zd"),d(m,"class","set svelte-7m46zd"),d(V,"class","gi-primo-star"),d(D,"class","icon svelte-7m46zd"),d(E,"class","text svelte-7m46zd"),d(y,"class","desc svelte-7m46zd"),d(B,"class","note"),d(_,"class","content"),d(u,"class","info svelte-7m46zd"),d(Q,"class","svelte-7m46zd"),d(te,"class","up svelte-7m46zd"),d(Y,"class","charName svelte-7m46zd"),_e(Y,"position","relative"),d(W,"class","featured svelte-7m46zd"),d(se,"class","char-title svelte-7m46zd"),d(X,"class","chances svelte-7m46zd"),d(e,"class","frame-content svelte-7m46zd")},m(ve,G){O(ve,e,G),f(e,t),f(t,r),f(e,i),f(e,n),n.innerHTML=o,f(e,c),f(e,u),f(u,_),f(_,m),f(m,p),f(_,k),f(_,y),f(y,D),f(D,V),f(y,I),f(y,E),f(E,T),f(_,R),f(_,B),f(B,j),l[5](u),f(e,A),f(e,W),f(W,Y),f(Y,Q),f(Q,C),f(Y,q),f(Y,te),f(te,K),f(e,ce),f(e,se),f(se,ee),f(e,ze),f(e,X),f(X,me)},p(ve,[G]){G&2&&s!==(s=ve[1]("wish.banner.novice")+"")&&J(r,s),G&2&&o!==(o=fs(ve[1]("banner.beginner"),"geo")+"")&&(n.innerHTML=o),G&10&&v!==(v=ve[1]("wish.banner.beginnerSet",{values:{character:ve[3]}})+"")&&J(p,v),G&2&&z!==(z=ve[1]("wish.banner.wishDescription")+"")&&J(T,z),G&2&&L!==(L=ve[1]("wish.banner.beginnerNote")+"")&&J(j,L),G&8&&J(C,ve[3]),G&2&&re!==(re=ve[1]("wish.banner.up")+"")&&J(K,re),G&3&&x!==(x=ve[1](`${ve[0]}.title`)+"")&&J(ee,x),G&18&&$!==($=ve[1]("wish.banner.beginnerChance",{values:{chances:`${ve[4]}/20`}})+"")&&J(me,$)},i(ve){a||Pe(()=>{a=Ke(n,lt,{x:10,duration:700}),a.start()}),U||Pe(()=>{U=Ke(u,lt,{x:15,duration:700}),U.start()}),le||Pe(()=>{le=Ke(W,lt,{x:10,duration:700}),le.start()}),de||Pe(()=>{de=Ke(se,lt,{x:10,duration:700}),de.start()})},o:we,d(ve){ve&&h(e),l[5](null)}}}function Mc(l,e,t){let s,r,i;Z(l,ct,c=>t(1,r=c)),Z(l,rr,c=>t(4,i=c));let{character:n=""}=e,o;Et(()=>{zs(o,{sizeAutoCapable:!1,className:"os-theme-light",scrollbars:{visibility:"hidden"}})});function a(c){Rt[c?"unshift":"push"](()=>{o=c,t(2,o)})}return l.$$set=c=>{"character"in c&&t(0,n=c.character)},l.$$.update=()=>{l.$$.dirty&3&&t(3,s=r(`${n}.name`))},[n,r,o,s,i,a]}class jc extends Qe{constructor(e){super(),Je(this,e,Mc,Cc,He,{character:0})}}function Uc(l){let e,t,s=l[3]("wish.banner.character-event")+"",r,i,n=l[2]?l[8]==="ja-JP"?"2":"\u2014 2":"",o,a,c,u,_=fs(l[7],l[6])+"",m,v,p,k,y,D=l[3]("wish.banner.probIncreased")+"",V,I,E,z,T,R,B,L=l[3]("wish.banner.wishDescription")+"",j,U,A,W,Y=l[3]("wish.banner.eventNote")+"",Q,C,q=l[3]("wish.banner.viewDetails")+"",te,re,K,le,ce,se,x=l[3](`${l[0]}.name`)+"",ee,de,ze,X=l[3]("wish.banner.up")+"",$,me,ve,G=l[3](`${l[0]}.title`)+"",he,ke,Ie;return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),o=H(n),c=P(),u=b("h1"),v=P(),p=b("div"),k=b("div"),y=b("div"),V=H(D),I=P(),E=b("div"),z=b("div"),T=b("i"),R=P(),B=b("div"),j=H(L),A=P(),W=b("div"),Q=H(Y),C=P(),te=H(q),K=P(),le=b("div"),ce=b("div"),se=b("span"),ee=H(x),de=P(),ze=b("span"),$=H(X),me=P(),ve=b("div"),he=H(G),this.h()},l(be){e=g(be,"DIV",{class:!0});var Te=w(e);t=g(Te,"DIV",{class:!0});var qe=w(t);r=F(qe,s),i=S(qe),o=F(qe,n),qe.forEach(h),c=S(Te),u=g(Te,"H1",{class:!0});var Ze=w(u);Ze.forEach(h),v=S(Te),p=g(Te,"DIV",{class:!0});var Me=w(p);k=g(Me,"DIV",{class:!0});var Ue=w(k);y=g(Ue,"DIV",{class:!0});var tt=w(y);V=F(tt,D),tt.forEach(h),I=S(Ue),E=g(Ue,"DIV",{class:!0,style:!0});var Le=w(E);z=g(Le,"DIV",{class:!0});var Ae=w(z);T=g(Ae,"I",{class:!0}),w(T).forEach(h),Ae.forEach(h),R=S(Le),B=g(Le,"DIV",{class:!0});var Oe=w(B);j=F(Oe,L),Oe.forEach(h),Le.forEach(h),A=S(Ue),W=g(Ue,"DIV",{class:!0});var Ne=w(W);Q=F(Ne,Y),C=S(Ne),te=F(Ne,q),Ne.forEach(h),Ue.forEach(h),Me.forEach(h),K=S(Te),le=g(Te,"DIV",{class:!0,style:!0});var oe=w(le);ce=g(oe,"DIV",{class:!0});var Se=w(ce);se=g(Se,"SPAN",{class:!0});var rt=w(se);ee=F(rt,x),rt.forEach(h),de=S(Se),ze=g(Se,"SPAN",{class:!0});var it=w(ze);$=F(it,X),it.forEach(h),Se.forEach(h),me=S(oe),ve=g(oe,"DIV",{class:!0});var mt=w(ve);he=F(mt,G),mt.forEach(h),oe.forEach(h),Te.forEach(h),this.h()},h(){d(t,"class",a="top bg-"+l[6]+" svelte-1b4k6p2"),d(u,"class","card-stroke svelte-1b4k6p2"),d(y,"class","set card-stroke svelte-1b4k6p2"),d(T,"class","gi-primo-star"),d(z,"class","icon svelte-1b4k6p2"),d(B,"class","text svelte-1b4k6p2"),d(E,"class",U="desc bg-"+l[6]+" svelte-1b4k6p2"),_e(E,"opacity","90%"),d(W,"class","note card-stroke"),d(k,"class","content svelte-1b4k6p2"),d(p,"class","info svelte-1b4k6p2"),d(se,"class","svelte-1b4k6p2"),d(ze,"class","up svelte-1b4k6p2"),d(ce,"class","char-name svelte-1b4k6p2"),d(ve,"class","char-title svelte-1b4k6p2"),d(le,"class","character svelte-1b4k6p2"),d(le,"style",ke=""+(l[5]+Kt(l[1]))),d(e,"class","frame-content svelte-1b4k6p2")},m(be,Te){O(be,e,Te),f(e,t),f(t,r),f(t,i),f(t,o),f(e,c),f(e,u),u.innerHTML=_,f(e,v),f(e,p),f(p,k),f(k,y),f(y,V),f(k,I),f(k,E),f(E,z),f(z,T),f(E,R),f(E,B),f(B,j),f(k,A),f(k,W),f(W,Q),f(W,C),f(W,te),l[10](p),f(e,K),f(e,le),f(le,ce),f(ce,se),f(se,ee),f(ce,de),f(ce,ze),f(ze,$),f(le,me),f(le,ve),f(ve,he)},p(be,[Te]){Te&8&&s!==(s=be[3]("wish.banner.character-event")+"")&&J(r,s),Te&260&&n!==(n=be[2]?be[8]==="ja-JP"?"2":"\u2014 2":"")&&J(o,n),Te&64&&a!==(a="top bg-"+be[6]+" svelte-1b4k6p2")&&d(t,"class",a),Te&192&&_!==(_=fs(be[7],be[6])+"")&&(u.innerHTML=_),Te&8&&D!==(D=be[3]("wish.banner.probIncreased")+"")&&J(V,D),Te&8&&L!==(L=be[3]("wish.banner.wishDescription")+"")&&J(j,L),Te&64&&U!==(U="desc bg-"+be[6]+" svelte-1b4k6p2")&&d(E,"class",U),Te&8&&Y!==(Y=be[3]("wish.banner.eventNote")+"")&&J(Q,Y),Te&8&&q!==(q=be[3]("wish.banner.viewDetails")+"")&&J(te,q),Te&9&&x!==(x=be[3](`${be[0]}.name`)+"")&&J(ee,x),Te&8&&X!==(X=be[3]("wish.banner.up")+"")&&J($,X),Te&9&&G!==(G=be[3](`${be[0]}.title`)+"")&&J(he,G),Te&34&&ke!==(ke=""+(be[5]+Kt(be[1])))&&d(le,"style",ke)},i(be){m||Pe(()=>{m=Ke(u,lt,{x:15,duration:700}),m.start()}),re||Pe(()=>{re=Ke(k,lt,{x:15,duration:700}),re.start()}),Ie||Pe(()=>{Ie=Ke(le,lt,{x:10,duration:700}),Ie.start()})},o:we,d(be){be&&h(e),l[10](null)}}}function Wc(l,e,t){let s,r,i,n,o;Z(l,ct,p=>t(3,n=p)),Z(l,La,p=>t(8,o=p));let{bannerName:a=""}=e,{character:c=""}=e,{textOffset:u={}}=e,{event2:_=!1}=e,m;Et(()=>{zs(m,{sizeAutoCapable:!1,className:"os-theme-light",scrollbars:{visibility:"hidden"}})});function v(p){Rt[p?"unshift":"push"](()=>{m=p,t(4,m)})}return l.$$set=p=>{"bannerName"in p&&t(9,a=p.bannerName),"character"in p&&t(0,c=p.character),"textOffset"in p&&t(1,u=p.textOffset),"event2"in p&&t(2,_=p.event2)},l.$$.update=()=>{l.$$.dirty&520&&t(7,s=n(`banner.${ac(a).name}`)),l.$$.dirty&1&&t(6,r=Xi(c).vision),l.$$.dirty&2&&t(5,i=`--text-width: calc(${u?.w||30} / 100 * var(--content-width));`)},[c,u,_,n,m,i,r,s,o,a,v]}class ta extends Qe{constructor(e){super(),Je(this,e,Wc,Uc,He,{bannerName:9,character:0,textOffset:1,event2:2})}}function fn(l){let e,t=l[3]("wish.epitomizedPath.courseSetFor",{values:{selectedCourse:l[3](l[0][l[4].selected]?.name)}})+"",s;return{c(){e=b("div"),s=H(t),this.h()},l(r){e=g(r,"DIV",{class:!0});var i=w(e);s=F(i,t),i.forEach(h),this.h()},h(){d(e,"class","selected svelte-8vngkj"),pe(e,"fill",l[4].point===2)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i&25&&t!==(t=r[3]("wish.epitomizedPath.courseSetFor",{values:{selectedCourse:r[3](r[0][r[4].selected]?.name)}})+"")&&J(s,t),i&16&&pe(e,"fill",r[4].point===2)},d(r){r&&h(e)}}}function qc(l){let e,t,s=l[3]("wish.banner.weapon-event")+"",r,i,n,o=fs(l[3]("banner.epitome-invocation"),"epitome")+"",a,c,u,_,m=l[3]("wish.banner.probIncreased")+"",v,p,k,y,D,V,I,E=l[3]("wish.banner.wishDescription")+"",z,T,R,B=l[3]("wish.banner.viewDetails")+"",L,j,U,A,W,Y,Q=l[3](`${l[0][0].name}`)+"",C,q,te,re=l[3]("wish.banner.up")+"",K,le,ce,se=l[3](`${l[0][1].name}`)+"",x,ee,de,ze,X,$,me,ve=l[3](`${l[1][0]}`)+"",G,he,ke,Ie,be=l[3]("wish.banner.etc")+"",Te,qe,Ze,Me=l[3]("wish.banner.up")+"",Ue,tt,Le,Ae,Oe=l[4].selected!==null&&fn(l);return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("h1"),c=P(),u=b("div"),_=b("div"),v=H(m),p=P(),k=b("div"),y=b("div"),D=b("i"),V=P(),I=b("div"),z=H(E),T=P(),R=b("div"),L=H(B),U=P(),A=b("div"),W=b("div"),Y=b("span"),C=H(Q),q=P(),te=b("span"),K=H(re),le=P(),ce=b("div"),x=H(se),ze=P(),X=b("div"),$=b("div"),me=b("span"),G=H(ve),he=H(","),ke=P(),Ie=b("span"),Te=H(be),qe=P(),Ze=b("span"),Ue=H(Me),Ae=P(),Oe&&Oe.c(),this.h()},l(Ne){e=g(Ne,"DIV",{class:!0});var oe=w(e);t=g(oe,"DIV",{class:!0});var Se=w(t);r=F(Se,s),Se.forEach(h),i=S(oe),n=g(oe,"H1",{class:!0});var rt=w(n);rt.forEach(h),c=S(oe),u=g(oe,"DIV",{class:!0});var it=w(u);_=g(it,"DIV",{class:!0});var mt=w(_);v=F(mt,m),mt.forEach(h),p=S(it),k=g(it,"DIV",{class:!0,style:!0});var vt=w(k);y=g(vt,"DIV",{class:!0});var Xe=w(y);D=g(Xe,"I",{class:!0}),w(D).forEach(h),Xe.forEach(h),V=S(vt),I=g(vt,"DIV",{class:!0});var yt=w(I);z=F(yt,E),yt.forEach(h),vt.forEach(h),T=S(it),R=g(it,"DIV",{class:!0});var It=w(R);L=F(It,B),It.forEach(h),it.forEach(h),U=S(oe),A=g(oe,"DIV",{class:!0,style:!0});var pt=w(A);W=g(pt,"DIV",{class:!0});var xe=w(W);Y=g(xe,"SPAN",{class:!0});var Dt=w(Y);C=F(Dt,Q),Dt.forEach(h),q=S(xe),te=g(xe,"SPAN",{class:!0});var Ge=w(te);K=F(Ge,re),Ge.forEach(h),xe.forEach(h),le=S(pt),ce=g(pt,"DIV",{class:!0});var De=w(ce);x=F(De,se),De.forEach(h),pt.forEach(h),ze=S(oe),X=g(oe,"DIV",{class:!0,style:!0});var $e=w(X);$=g($e,"DIV",{class:!0});var at=w($);me=g(at,"SPAN",{class:!0});var Ye=w(me);G=F(Ye,ve),he=F(Ye,","),Ye.forEach(h),ke=S(at),Ie=g(at,"SPAN",{class:!0});var ht=w(Ie);Te=F(ht,be),ht.forEach(h),qe=S(at),Ze=g(at,"SPAN",{class:!0});var Bt=w(Ze);Ue=F(Bt,Me),Bt.forEach(h),at.forEach(h),$e.forEach(h),Ae=S(oe),Oe&&Oe.l(oe),oe.forEach(h),this.h()},h(){d(t,"class","top bg-epitome svelte-8vngkj"),d(n,"class","svelte-8vngkj"),d(_,"class","set card-stroke svelte-8vngkj"),d(D,"class","gi-primo-star"),d(y,"class","icon svelte-8vngkj"),d(I,"class","text svelte-8vngkj"),d(k,"class","desc bg-epitome  svelte-8vngkj"),_e(k,"opacity","90%"),d(R,"class","note card-stroke svelte-8vngkj"),d(u,"class","info svelte-8vngkj"),d(Y,"class","svelte-8vngkj"),d(te,"class","up svelte-8vngkj"),d(W,"class","weapon-name first-wp svelte-8vngkj"),d(ce,"class","weapon-name second-wp svelte-8vngkj"),d(A,"class","featured svelte-8vngkj"),d(A,"style",ee=""+(l[5]+Kt(l[2]?.featured))),d(me,"class","svelte-8vngkj"),d(Ie,"class","etc svelte-8vngkj"),d(Ze,"class","up svelte-8vngkj"),d($,"class","weapon-name svelte-8vngkj"),d(X,"class","rateup svelte-8vngkj"),d(X,"style",tt=Kt(l[2]?.rateup)),d(e,"class","frame-content svelte-8vngkj")},m(Ne,oe){O(Ne,e,oe),f(e,t),f(t,r),f(e,i),f(e,n),n.innerHTML=o,f(e,c),f(e,u),f(u,_),f(_,v),f(u,p),f(u,k),f(k,y),f(y,D),f(k,V),f(k,I),f(I,z),f(u,T),f(u,R),f(R,L),f(e,U),f(e,A),f(A,W),f(W,Y),f(Y,C),f(W,q),f(W,te),f(te,K),f(A,le),f(A,ce),f(ce,x),f(e,ze),f(e,X),f(X,$),f($,me),f(me,G),f(me,he),f($,ke),f($,Ie),f(Ie,Te),f($,qe),f($,Ze),f(Ze,Ue),f(e,Ae),Oe&&Oe.m(e,null)},p(Ne,[oe]){oe&8&&s!==(s=Ne[3]("wish.banner.weapon-event")+"")&&J(r,s),oe&8&&o!==(o=fs(Ne[3]("banner.epitome-invocation"),"epitome")+"")&&(n.innerHTML=o),oe&8&&m!==(m=Ne[3]("wish.banner.probIncreased")+"")&&J(v,m),oe&8&&E!==(E=Ne[3]("wish.banner.wishDescription")+"")&&J(z,E),oe&8&&B!==(B=Ne[3]("wish.banner.viewDetails")+"")&&J(L,B),oe&9&&Q!==(Q=Ne[3](`${Ne[0][0].name}`)+"")&&J(C,Q),oe&8&&re!==(re=Ne[3]("wish.banner.up")+"")&&J(K,re),oe&9&&se!==(se=Ne[3](`${Ne[0][1].name}`)+"")&&J(x,se),oe&4&&ee!==(ee=""+(Ne[5]+Kt(Ne[2]?.featured)))&&d(A,"style",ee),oe&10&&ve!==(ve=Ne[3](`${Ne[1][0]}`)+"")&&J(G,ve),oe&8&&be!==(be=Ne[3]("wish.banner.etc")+"")&&J(Te,be),oe&8&&Me!==(Me=Ne[3]("wish.banner.up")+"")&&J(Ue,Me),oe&4&&tt!==(tt=Kt(Ne[2]?.rateup))&&d(X,"style",tt),Ne[4].selected!==null?Oe?Oe.p(Ne,oe):(Oe=fn(Ne),Oe.c(),Oe.m(e,null)):Oe&&(Oe.d(1),Oe=null)},i(Ne){a||Pe(()=>{a=Ke(n,lt,{x:10,duration:700}),a.start()}),j||Pe(()=>{j=Ke(u,lt,{x:10,duration:700}),j.start()}),de||Pe(()=>{de=Ke(A,lt,{x:10,duration:700}),de.start()}),Le||Pe(()=>{Le=Ke(X,lt,{x:10,duration:700}),Le.start()})},o:we,d(Ne){Ne&&h(e),Oe&&Oe.d()}}}function $c(l,e,t){let s,r;Z(l,ct,u=>t(3,s=u)),Z(l,Qt,u=>t(4,r=u));let{featured:i={}}=e,{rateup:n={}}=e,{textOffset:o={}}=e;const c=`--text-width: calc(${o?.featured?.w||29} / 100 * var(--content-width));`;return l.$$set=u=>{"featured"in u&&t(0,i=u.featured),"rateup"in u&&t(1,n=u.rateup),"textOffset"in u&&t(2,o=u.textOffset)},[i,n,o,s,r,c]}class Hc extends Qe{constructor(e){super(),Je(this,e,$c,qc,He,{featured:0,rateup:1,textOffset:2})}}function dn(l,e,t){const s=l.slice();return s[8]=e[t],s}function hn(l){let e,t,s,r=l[1](`${l[8]}.name`)+"",i,n,o,a=l[1](`${l[8]}.title`)+"",c,u;return{c(){e=b("div"),t=b("div"),s=b("div"),i=H(r),n=P(),o=b("div"),c=H(a),this.h()},l(_){e=g(_,"DIV",{class:!0});var m=w(e);t=g(m,"DIV",{class:!0});var v=w(t);s=g(v,"DIV",{class:!0});var p=w(s);i=F(p,r),p.forEach(h),n=S(v),o=g(v,"DIV",{class:!0});var k=w(o);c=F(k,a),k.forEach(h),v.forEach(h),m.forEach(h),this.h()},h(){d(s,"class","item-name svelte-1dimnlq"),d(o,"class","char-title svelte-1dimnlq"),d(t,"class","group-content svelte-1dimnlq"),d(e,"class","group "+l[8]+" svelte-1dimnlq")},m(_,m){O(_,e,m),f(e,t),f(t,s),f(s,i),f(t,n),f(t,o),f(o,c)},p(_,m){m&2&&r!==(r=_[1](`${_[8]}.name`)+"")&&J(i,r),m&2&&a!==(a=_[1](`${_[8]}.title`)+"")&&J(c,a)},i(_){u||Pe(()=>{u=Ke(e,lt,{x:10,duration:700}),u.start()})},o:we,d(_){_&&h(e)}}}function Fc(l){let e,t,s=l[1]("wish.banner.standard")+"",r,i,n,o=l[5](l[1]("banner.wanderlust"))+"",a,c,u,_,m,v=l[1]("wish.banner.standard")+"",p,k,y,D,V,I,E,z=l[1]("wish.banner.wishDescription")+"",T,R,B,L=l[1]("wish.banner.standardNote")+"",j,U,A=l[1]("wish.banner.viewDetails")+"",W,Y,Q,C,q,te,re,K=l[1](l[4])+"",le,ce,se,x=l[1]("wish.banner.etc")+"",ee,de,ze,X=l[1]("wish.banner.allWeaponTypes")+"",$,me,ve=l[3],G=[];for(let he=0;he<ve.length;he+=1)G[he]=hn(dn(l,ve,he));return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("h1"),c=P(),u=b("div"),_=b("div"),m=b("div"),p=H(v),k=P(),y=b("div"),D=b("div"),V=b("i"),I=P(),E=b("div"),T=H(z),R=P(),B=b("div"),j=H(L),U=P(),W=H(A),Q=P();for(let he=0;he<G.length;he+=1)G[he].c();C=P(),q=b("div"),te=b("div"),re=b("div"),le=H(K),ce=P(),se=b("span"),ee=H(x),de=P(),ze=b("div"),$=H(X),this.h()},l(he){e=g(he,"DIV",{class:!0});var ke=w(e);t=g(ke,"DIV",{class:!0});var Ie=w(t);r=F(Ie,s),Ie.forEach(h),i=S(ke),n=g(ke,"H1",{class:!0});var be=w(n);be.forEach(h),c=S(ke),u=g(ke,"DIV",{class:!0});var Te=w(u);_=g(Te,"DIV",{class:!0});var qe=w(_);m=g(qe,"DIV",{class:!0});var Ze=w(m);p=F(Ze,v),Ze.forEach(h),k=S(qe),y=g(qe,"DIV",{class:!0});var Me=w(y);D=g(Me,"DIV",{class:!0});var Ue=w(D);V=g(Ue,"I",{class:!0}),w(V).forEach(h),Ue.forEach(h),I=S(Me),E=g(Me,"DIV",{class:!0});var tt=w(E);T=F(tt,z),tt.forEach(h),Me.forEach(h),R=S(qe),B=g(qe,"DIV",{class:!0});var Le=w(B);j=F(Le,L),U=S(Le),W=F(Le,A),Le.forEach(h),qe.forEach(h),Te.forEach(h),Q=S(ke);for(let rt=0;rt<G.length;rt+=1)G[rt].l(ke);C=S(ke),q=g(ke,"DIV",{class:!0});var Ae=w(q);te=g(Ae,"DIV",{class:!0});var Oe=w(te);re=g(Oe,"DIV",{class:!0});var Ne=w(re);le=F(Ne,K),ce=S(Ne),se=g(Ne,"SPAN",{class:!0});var oe=w(se);ee=F(oe,x),oe.forEach(h),Ne.forEach(h),de=S(Oe),ze=g(Oe,"DIV",{class:!0});var Se=w(ze);$=F(Se,X),Se.forEach(h),Oe.forEach(h),Ae.forEach(h),ke.forEach(h),this.h()},h(){d(t,"class","top bg-wanderlust svelte-1dimnlq"),d(n,"class","card-stroke svelte-1dimnlq"),d(m,"class","set card-stroke svelte-1dimnlq"),d(V,"class","gi-primo-star"),d(D,"class","icon svelte-1dimnlq"),d(E,"class","text svelte-1dimnlq"),d(y,"class","desc svelte-1dimnlq"),d(B,"class","note card-stroke"),d(_,"class","content"),d(u,"class","info svelte-1dimnlq"),d(se,"class","svelte-1dimnlq"),d(re,"class","item-name svelte-1dimnlq"),d(ze,"class","all svelte-1dimnlq"),d(te,"class","group-content svelte-1dimnlq"),d(q,"class","group skyward svelte-1dimnlq"),d(e,"class","frame-content svelte-1dimnlq"),pe(e,"old",l[2])},m(he,ke){O(he,e,ke),f(e,t),f(t,r),f(e,i),f(e,n),n.innerHTML=o,f(e,c),f(e,u),f(u,_),f(_,m),f(m,p),f(_,k),f(_,y),f(y,D),f(D,V),f(y,I),f(y,E),f(E,T),f(_,R),f(_,B),f(B,j),f(B,U),f(B,W),l[7](u),f(e,Q);for(let Ie=0;Ie<G.length;Ie+=1)G[Ie].m(e,null);f(e,C),f(e,q),f(q,te),f(te,re),f(re,le),f(re,ce),f(re,se),f(se,ee),f(te,de),f(te,ze),f(ze,$)},p(he,[ke]){if(ke&2&&s!==(s=he[1]("wish.banner.standard")+"")&&J(r,s),ke&2&&o!==(o=he[5](he[1]("banner.wanderlust"))+"")&&(n.innerHTML=o),ke&2&&v!==(v=he[1]("wish.banner.standard")+"")&&J(p,v),ke&2&&z!==(z=he[1]("wish.banner.wishDescription")+"")&&J(T,z),ke&2&&L!==(L=he[1]("wish.banner.standardNote")+"")&&J(j,L),ke&2&&A!==(A=he[1]("wish.banner.viewDetails")+"")&&J(W,A),ke&10){ve=he[3];let Ie;for(Ie=0;Ie<ve.length;Ie+=1){const be=dn(he,ve,Ie);G[Ie]?(G[Ie].p(be,ke),N(G[Ie],1)):(G[Ie]=hn(be),G[Ie].c(),N(G[Ie],1),G[Ie].m(e,C))}for(;Ie<G.length;Ie+=1)G[Ie].d(1);G.length=ve.length}ke&2&&K!==(K=he[1](he[4])+"")&&J(le,K),ke&2&&x!==(x=he[1]("wish.banner.etc")+"")&&J(ee,x),ke&2&&X!==(X=he[1]("wish.banner.allWeaponTypes")+"")&&J($,X)},i(he){a||Pe(()=>{a=Ke(n,lt,{x:10,duration:700}),a.start()}),Y||Pe(()=>{Y=Ke(u,lt,{x:15,duration:700}),Y.start()});for(let ke=0;ke<ve.length;ke+=1)N(G[ke]);me||Pe(()=>{me=Ke(q,lt,{x:10,duration:700}),me.start()})},o:we,d(he){he&&h(e),l[7](null),Ut(G,he)}}}function Yc(l,e,t){let s;Z(l,ct,_=>t(1,s=_));let{bannerName:r=""}=e;const i=r==="wanderlust-invocation-1",n=i?["jean","diluc"]:["qiqi","mona","keqing"],o=i?"skyward-blade":"skyward-spine",a=_=>{const m=i?"old":"wanderlust-flat",v=_.split(" ");return`${v[0]} <span class="${m}"> ${v.slice(1).join(" ")}</span>`};let c;Et(()=>{zs(c,{sizeAutoCapable:!1,className:"os-theme-light",scrollbars:{visibility:"hidden"}})});function u(_){Rt[_?"unshift":"push"](()=>{c=_,t(0,c)})}return l.$$set=_=>{"bannerName"in _&&t(6,r=_.bannerName)},[c,s,i,n,o,a,r,u]}class Xc extends Qe{constructor(e){super(),Je(this,e,Yc,Fc,He,{bannerName:6})}}function Gc(l,e,t){const s=l.slice();return s[17]=e[t],s}function mn(l){let e,t,s,r,i,n=l[10]("customBanner.delete")+"",o,a,c,u=l[9].status==="owned"&&!l[4]&&!l[8]&&_n(l);return{c(){e=b("div"),u&&u.c(),t=P(),s=b("button"),r=b("i"),i=P(),o=H(n),this.h()},l(_){e=g(_,"DIV",{class:!0});var m=w(e);u&&u.l(m),t=S(m),s=g(m,"BUTTON",{class:!0});var v=w(s);r=g(v,"I",{class:!0}),w(r).forEach(h),i=S(v),o=F(v,n),v.forEach(h),m.forEach(h),this.h()},h(){d(r,"class","gi-delete svelte-10wsjyw"),d(s,"class","delete svelte-10wsjyw"),d(e,"class","action svelte-10wsjyw")},m(_,m){O(_,e,m),u&&u.m(e,null),f(e,t),f(e,s),f(s,r),f(s,i),f(s,o),a||(c=ge(s,"click",l[12]),a=!0)},p(_,m){_[9].status==="owned"&&!_[4]&&!_[8]?u?u.p(_,m):(u=_n(_),u.c(),u.m(e,t)):u&&(u.d(1),u=null),m&1024&&n!==(n=_[10]("customBanner.delete")+"")&&J(o,n)},d(_){_&&h(e),u&&u.d(),a=!1,c()}}}function _n(l){let e,t,s,r,i=l[10]("customBanner.edit")+"",n,o,a;return{c(){e=b("button"),t=b("i"),s=P(),r=b("span"),n=H(i),this.h()},l(c){e=g(c,"BUTTON",{class:!0});var u=w(e);t=g(u,"I",{class:!0}),w(t).forEach(h),s=S(u),r=g(u,"SPAN",{});var _=w(r);n=F(_,i),_.forEach(h),u.forEach(h),this.h()},h(){d(t,"class","gi-pen svelte-10wsjyw"),d(e,"class","edit svelte-10wsjyw")},m(c,u){O(c,e,u),f(e,t),f(e,s),f(e,r),f(r,n),o||(a=ge(e,"click",l[13]),o=!0)},p(c,u){u&1024&&i!==(i=c[10]("customBanner.edit")+"")&&J(n,i)},d(c){c&&h(e),o=!1,a()}}}function Kc(l){let e;return{c(){e=b("i"),this.h()},l(t){e=g(t,"I",{class:!0}),w(e).forEach(h),this.h()},h(){d(e,"class","gi-star svelte-10wsjyw")},m(t,s){O(t,e,s)},p:we,d(t){t&&h(e)}}}function Qc(l){let e,t,s=l[10]("wish.banner.character-event")+"",r,i,n,o,a,c=fs(l[0]||l[10]("customBanner.bannerName"),l[3])+"",u,_,m,v,p,k,y=l[10]("wish.banner.probIncreased")+"",D,V,I,E,z,T,R,B=l[10]("wish.banner.wishDescription")+"",L,j,U,A,W=l[10]("wish.banner.eventNote")+"",Y,Q,C=l[10]("wish.banner.viewDetails")+"",q,te,re,K,le,ce=(l[1]||l[10]("customBanner.charName"))+"",se,x,ee,de=l[10]("wish.banner.up")+"",ze,X,$,me,ve,G,he,ke,Ie,be,Te=(l[2]||l[10]("customBanner.charTitle"))+"",qe,Ze,Me,Ue=(l[6]||"")+"",tt,Le,Ae=l[11]&&mn(l);ve=new ji({props:{name:l[3]}});let Oe=Array(5),Ne=[];for(let oe=0;oe<Oe.length;oe+=1)Ne[oe]=Kc(Gc(l,Oe,oe));return{c(){e=b("div"),t=b("div"),r=H(s),n=P(),o=b("h1"),a=b("div"),_=P(),Ae&&Ae.c(),m=P(),v=b("div"),p=b("div"),k=b("div"),D=H(y),V=P(),I=b("div"),E=b("div"),z=b("i"),T=P(),R=b("div"),L=H(B),U=P(),A=b("div"),Y=H(W),Q=P(),q=H(C),te=P(),re=b("div"),K=b("div"),le=b("span"),se=H(ce),x=P(),ee=b("span"),ze=H(de),X=P(),$=b("div"),me=b("div"),ne(ve.$$.fragment),he=P(),ke=b("div");for(let oe=0;oe<Ne.length;oe+=1)Ne[oe].c();Ie=P(),be=b("div"),qe=H(Te),Ze=P(),Me=b("div"),tt=H(Ue),this.h()},l(oe){e=g(oe,"DIV",{class:!0});var Se=w(e);t=g(Se,"DIV",{class:!0});var rt=w(t);r=F(rt,s),rt.forEach(h),n=S(Se),o=g(Se,"H1",{class:!0});var it=w(o);a=g(it,"DIV",{class:!0});var mt=w(a);mt.forEach(h),it.forEach(h),_=S(Se),Ae&&Ae.l(Se),m=S(Se),v=g(Se,"DIV",{class:!0});var vt=w(v);p=g(vt,"DIV",{class:!0});var Xe=w(p);k=g(Xe,"DIV",{class:!0});var yt=w(k);D=F(yt,y),yt.forEach(h),V=S(Xe),I=g(Xe,"DIV",{class:!0,style:!0});var It=w(I);E=g(It,"DIV",{class:!0});var pt=w(E);z=g(pt,"I",{class:!0}),w(z).forEach(h),pt.forEach(h),T=S(It),R=g(It,"DIV",{class:!0});var xe=w(R);L=F(xe,B),xe.forEach(h),It.forEach(h),U=S(Xe),A=g(Xe,"DIV",{class:!0});var Dt=w(A);Y=F(Dt,W),Q=S(Dt),q=F(Dt,C),Dt.forEach(h),Xe.forEach(h),vt.forEach(h),te=S(Se),re=g(Se,"DIV",{class:!0});var Ge=w(re);K=g(Ge,"DIV",{class:!0});var De=w(K);le=g(De,"SPAN",{class:!0});var $e=w(le);se=F($e,ce),$e.forEach(h),x=S(De),ee=g(De,"SPAN",{class:!0});var at=w(ee);ze=F(at,de),at.forEach(h),X=S(De),$=g(De,"DIV",{class:!0});var Ye=w($);me=g(Ye,"DIV",{class:!0});var ht=w(me);fe(ve.$$.fragment,ht),ht.forEach(h),he=S(Ye),ke=g(Ye,"DIV",{class:!0});var Bt=w(ke);for(let _t=0;_t<Ne.length;_t+=1)Ne[_t].l(Bt);Bt.forEach(h),Ye.forEach(h),De.forEach(h),Ie=S(Ge),be=g(Ge,"DIV",{class:!0});var Yt=w(be);qe=F(Yt,Te),Yt.forEach(h),Ge.forEach(h),Ze=S(Se),Me=g(Se,"DIV",{class:!0});var Wt=w(Me);tt=F(Wt,Ue),Wt.forEach(h),Se.forEach(h),this.h()},h(){d(t,"class",i="top bg-"+l[3]+" svelte-10wsjyw"),d(a,"class","wrap"),d(o,"class","card-stroke svelte-10wsjyw"),d(k,"class","set card-stroke svelte-10wsjyw"),d(z,"class","gi-primo-star svelte-10wsjyw"),d(E,"class","icon svelte-10wsjyw"),d(R,"class","text svelte-10wsjyw"),d(I,"class",j="desc bg-"+l[3]+" svelte-10wsjyw"),_e(I,"opacity","90%"),d(A,"class","note card-stroke"),d(p,"class","content svelte-10wsjyw"),d(v,"class","info svelte-10wsjyw"),d(le,"class","svelte-10wsjyw"),d(ee,"class","up svelte-10wsjyw"),d(me,"class",G="icon-vision "+l[3]+" filter-drop svelte-10wsjyw"),d(ke,"class","stars svelte-10wsjyw"),d($,"class","textbg svelte-10wsjyw"),d(K,"class","char-name svelte-10wsjyw"),d(be,"class","char-title svelte-10wsjyw"),d(re,"class","character svelte-10wsjyw"),d(Me,"class","watermark svelte-10wsjyw"),d(e,"class","frame-content svelte-10wsjyw"),pe(e,"editorMode",l[4]),pe(e,"onBannerEdit",l[5])},m(oe,Se){O(oe,e,Se),f(e,t),f(t,r),f(e,n),f(e,o),f(o,a),a.innerHTML=c,f(e,_),Ae&&Ae.m(e,null),f(e,m),f(e,v),f(v,p),f(p,k),f(k,D),f(p,V),f(p,I),f(I,E),f(E,z),f(I,T),f(I,R),f(R,L),f(p,U),f(p,A),f(A,Y),f(A,Q),f(A,q),l[16](v),f(e,te),f(e,re),f(re,K),f(K,le),f(le,se),f(K,x),f(K,ee),f(ee,ze),f(K,X),f(K,$),f($,me),ie(ve,me,null),f($,he),f($,ke);for(let rt=0;rt<Ne.length;rt+=1)Ne[rt].m(ke,null);f(re,Ie),f(re,be),f(be,qe),f(e,Ze),f(e,Me),f(Me,tt),Le=!0},p(oe,[Se]){(!Le||Se&1024)&&s!==(s=oe[10]("wish.banner.character-event")+"")&&J(r,s),(!Le||Se&8&&i!==(i="top bg-"+oe[3]+" svelte-10wsjyw"))&&d(t,"class",i),(!Le||Se&1033)&&c!==(c=fs(oe[0]||oe[10]("customBanner.bannerName"),oe[3])+"")&&(a.innerHTML=c),oe[11]?Ae?Ae.p(oe,Se):(Ae=mn(oe),Ae.c(),Ae.m(e,m)):Ae&&(Ae.d(1),Ae=null),(!Le||Se&1024)&&y!==(y=oe[10]("wish.banner.probIncreased")+"")&&J(D,y),(!Le||Se&1024)&&B!==(B=oe[10]("wish.banner.wishDescription")+"")&&J(L,B),(!Le||Se&8&&j!==(j="desc bg-"+oe[3]+" svelte-10wsjyw"))&&d(I,"class",j),(!Le||Se&1024)&&W!==(W=oe[10]("wish.banner.eventNote")+"")&&J(Y,W),(!Le||Se&1024)&&C!==(C=oe[10]("wish.banner.viewDetails")+"")&&J(q,C),(!Le||Se&1026)&&ce!==(ce=(oe[1]||oe[10]("customBanner.charName"))+"")&&J(se,ce),(!Le||Se&1024)&&de!==(de=oe[10]("wish.banner.up")+"")&&J(ze,de);const rt={};Se&8&&(rt.name=oe[3]),ve.$set(rt),(!Le||Se&8&&G!==(G="icon-vision "+oe[3]+" filter-drop svelte-10wsjyw"))&&d(me,"class",G),(!Le||Se&1028)&&Te!==(Te=(oe[2]||oe[10]("customBanner.charTitle"))+"")&&J(qe,Te),(!Le||Se&64)&&Ue!==(Ue=(oe[6]||"")+"")&&J(tt,Ue),Se&16&&pe(e,"editorMode",oe[4]),Se&32&&pe(e,"onBannerEdit",oe[5])},i(oe){Le||(u||Pe(()=>{u=Ke(o,lt,{x:15,duration:700}),u.start()}),N(ve.$$.fragment,oe),Le=!0)},o(oe){M(ve.$$.fragment,oe),Le=!1},d(oe){oe&&h(e),Ae&&Ae.d(),l[16](null),ae(ve),Ut(Ne,oe)}}}function Jc(l,e,t){let s,r,i,n,o;Z(l,Va,E=>t(15,r=E)),Z(l,$s,E=>t(9,i=E)),Z(l,ct,E=>t(10,n=E)),Z(l,Hs,E=>t(11,o=E));let{bannerName:a=""}=e,{character:c=""}=e,{charTitle:u=""}=e,{vision:_=""}=e,{editorMode:m=!1}=e,{onBannerEdit:v=!1}=e,{watermark:p=""}=e;const k=Re("deleteBanner"),y=()=>{Be(),Vs.set(i.itemID),gs.set(!0)};let D,V=0;Et(async()=>{const{getListByStatus:E}=Ys,z=await E("owned")||[];t(14,V=z.length),!v&&zs(D,{sizeAutoCapable:!1,className:"os-theme-light",scrollbars:{visibility:"hidden"}})});function I(E){Rt[E?"unshift":"push"](()=>{D=E,t(7,D)})}return l.$$set=E=>{"bannerName"in E&&t(0,a=E.bannerName),"character"in E&&t(1,c=E.character),"charTitle"in E&&t(2,u=E.charTitle),"vision"in E&&t(3,_=E.vision),"editorMode"in E&&t(4,m=E.editorMode),"onBannerEdit"in E&&t(5,v=E.onBannerEdit),"watermark"in E&&t(6,p=E.watermark)},l.$$.update=()=>{l.$$.dirty&49152&&t(8,s=!r&&V>3)},[a,c,u,_,m,v,p,D,s,i,n,o,k,y,V,r,I]}class sa extends Qe{constructor(e){super(),Je(this,e,Jc,Qc,He,{bannerName:0,character:1,charTitle:2,vision:3,editorMode:4,onBannerEdit:5,watermark:6})}}var Zc=Object.defineProperty,xc=(l,e,t)=>e in l?Zc(l,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):l[e]=t,Ht=(l,e,t)=>(xc(l,typeof e!="symbol"?e+"":e,t),t),eu=(l,e,t)=>{if(!e.has(l))throw TypeError("Cannot "+t)},Ct=(l,e,t)=>{if(e.has(l))throw TypeError("Cannot add the same private member more than once");e instanceof WeakSet?e.add(l):e.set(l,t)},Mt=(l,e,t)=>(eu(l,e,"access private method"),t);const Ul=l=>document.contains(pl(l)),la=l=>{if(!l)return!1;try{const{constructor:e}=l,{prototype:t}=e,{hasOwnProperty:s}=Object.prototype;return e&&t&&s.call(t,"isPrototypeOf")}catch{return!1}},vn=l=>typeof l=="function",rl=l=>!isNaN(Number(l)),Ll=l=>l==null,pl=l=>l instanceof HTMLElement?l:document.querySelector(l),Gt=l=>{const e=l instanceof TouchEvent?l.touches[0]:l;return{clientX:e.clientX,clientY:e.clientY}},nl=l=>({clientX:[...l].map(e=>e.clientX).reduce((e,t)=>e+t)/l.length,clientY:[...l].map(e=>e.clientY).reduce((e,t)=>e+t)/l.length}),ss=l=>{const{width:e,height:t,top:s,left:r,bottom:i}=l.getBoundingClientRect();return{width:e,height:t,top:s,left:r,bottom:i}},pn=l=>l.length>=2?Math.hypot(l[0].clientX-l[1].clientX,l[0].clientY-l[1].clientY):0,Ss=(l,e)=>{for(const[t,s]of Object.entries(e))typeof s=="string"&&l.style.setProperty(t,s)},As=(l,e)=>{for(const[t,s]of Object.entries(e))l.setAttribute(t,s)},Ot=(l,e)=>{for(const[t,s]of Object.entries(e))l[t]=s},ls=(l,e,t)=>Math.min(Math.max(l,e),t),ys=l=>{const e=+(Math.round(+(l+"e+2"))+"e-2");return isNaN(e)?0:e},bn=l=>{throw new Error(l)},Wl=l=>console.warn(l),Rs=(l="div",e,t,s)=>{const r=document.createElement(l);return e&&r.classList.add(...e.split(" ")),t&&As(r,t),s&&(r.innerHTML=s),r},gt="zoomist",tu=`${gt}-container`,gn=`${gt}-wrapper`,ql=`${gt}-image`,Cs=`${gt}-slider`,su=`${gt}-slider-wrapper`,lu=`${gt}-slider-bar`,ru=`${gt}-slider-button`,bl=`${gt}-zoomer`,nu=`${gt}-zoomer-button`,mr=`${gt}-zoomer-icon`,_r=`${gt}-zoomer-in`,vr=`${gt}-zoomer-out`,pr=`${gt}-zoomer-reset`,iu=`${gt}-zoomer-disabled`,au={tabindex:"0",role:"slider","aria-label":"slider for zoomist","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":"0","aria-disabled":"false"},br={tabindex:"0",role:"button","aria-disabled":"false"},ou={...br,"aria-label":"button for zoom in zoomist"},cu={...br,"aria-label":"button for zoom out zoomist"},uu={...br,"aria-label":"button for reset zoomist scale"},fu=typeof window<"u"&&typeof window.document<"u",_s=!!(fu&&"ontouchstart"in window),du=_s?"touchstart":"mousedown",il=_s?"touchmove":"mousemove",al=_s?"touchend":"mouseup",hu="wheel",mu=["left","right","center"],_u=["top","bottom","center"],wn="--scale",kn="--translate-x",En="--translate-y",vu="--value",ra={draggable:!0,wheelable:!0,pinchable:!0,bounds:!0,zoomRatio:.1,maxScale:10,minScale:1,initScale:null},pu={el:null,direction:"horizontal"},bu={el:`.${Cs}`},gu={el:null,inEl:null,outEl:null,resetEl:null,disabledClass:iu},wu={el:`.${bl}`,inEl:`.${_r}`,outEl:`.${vr}`,resetEl:`.${pr}`},ku={ready:null,reset:null,resize:null,beforeDestroy:null,destroy:null,beforeUpdate:null,update:null,zoom:null,wheel:null,dragStart:null,drag:null,dragEnd:null,pinchStart:null,pinch:null,pinchEnd:null,slideStart:null,slide:null,slideEnd:null},Eu={slider:null,zoomer:null},yu=`
-<svg viewBox="0 0 12 12" class="${mr}">
-  <polygon points="12,5.5 6.5,5.5 6.5,0 5.5,0 5.5,5.5 0,5.5 0,6.5 5.5,6.5 5.5,12 6.5,12 6.5,6.5 12,6.5 "/>
-</svg>
-`,Iu=`
-<svg viewBox="0 0 12 12" class="${mr}">
-  <rect y="5.5" width="12" height="1"/>
-</svg>
-`,Du=`
-<svg viewBox="0 0 12 12" class="${mr}">
-  <path d="m7.45,1.27l.35-.22c.26-.17.34-.52.17-.78-.17-.27-.52-.34-.78-.17l-1.54.99-.19.13-.11.46,1.12,1.75c.11.17.29.26.48.26.1,0,.21-.03.31-.09.26-.17.34-.52.17-.78l-.29-.46c1.85.5,3.22,2.17,3.22,4.18,0,2.39-1.95,4.34-4.34,4.34S1.66,8.92,1.66,6.52c0-1.15.44-2.23,1.25-3.05.22-.22.22-.58,0-.8-.22-.22-.58-.22-.8,0-1.02,1.03-1.58,2.4-1.58,3.85,0,3.02,2.46,5.48,5.48,5.48s5.48-2.46,5.48-5.48c0-2.51-1.71-4.62-4.02-5.26Z"/>
-</svg>
-`,zu={on(l,e){if(!e||!vn(e))return this;const{__events__:t}=this;return l.split(" ").forEach(s=>{const r=s;t[r]||(t[r]=[]),t[r].push(e)}),this},emit(l,...e){const{__events__:t}=this;return t[l]?(t[l].forEach(s=>{vn(s)&&s.apply(this,e)}),this):this},zoom(l,e){const{scale:t}=this.transform,s=this.useFixedRatio(ys(t*(l+1)));return t===s?this:(this.zoomTo(s,e),this)},zoomTo(l,e=!0){const{image:t,transform:{scale:s,translateX:r,translateY:i},options:{bounds:n}}=this;if(l=this.useFixedRatio(l),l===s)return this;if(this.transform.scale=l,this.emit("zoom",this,this.transform.scale),!e)return this;e=typeof e=="boolean"?this.getContainerCenterClient():e;const{clientX:o,clientY:a}=e,{top:c,left:u,width:_,height:m}=ss(t),{width:v,height:p}=this.getImageDiff(),k=l/s-1,y=(_/2-o+u)*k+r,D=(m/2-a+c)*k+i,V=n?ls(y,v,-v):y,I=n?ls(D,p,-p):D;return Ot(this.transform,{translateX:V,translateY:I}),this},move(l){const{options:{bounds:e},transform:{translateX:t,translateY:s}}=this,{x:r,y:i}=l,{width:n,height:o}=this.getImageDiff();if(rl(r)){const a=t+r,c=e?ls(a,n,-n):a;this.transform.translateX=c}if(rl(i)){const a=s+i,c=e?ls(a,o,-o):a;this.transform.translateY=c}return this},moveTo(l){const{options:{bounds:e}}=this,{x:t,y:s}=l,{width:r,height:i}=this.getImageDiff();if(rl(t)){const n=Number(t),o=e?ls(n,r,-r):n;this.transform.translateX=o}if(mu.some(n=>n===t)){const n={left:-r,right:r,center:0}[t];this.transform.translateX=n}if(rl(s)){const n=Number(s),o=e?ls(n,i,-i):n;this.transform.translateY=o}if(_u.some(n=>n===s)){const n={top:-i,bottom:i,center:0}[s];this.transform.translateY=n}return this},slideTo(l){const{options:{minScale:e,maxScale:t}}=this,s=(t-e)*l/100+e;return this.zoomTo(s),this},reset(){const{options:{initScale:l}}=this;return Ot(this.transform,{scale:l,translateX:0,translateY:0}),this.emit("reset",this),this},destroy(l=!1){const{element:e,image:t,controller:s}=this;return this.mounted&&(this.emit("beforeDestroy",this),s.abort(),this.destroyModules(),l&&t&&(this.reset(),t.removeAttribute("style")),e[gt]=null,this.mounted=!1,this.emit("destroy",this)),null},update(l){const{element:e,controller:t}=this;return this.emit("beforeUpdate",this),e[gt]=null,this.mounted=!1,t.abort(),this.destroyModules(),l&&(this.options=Object.assign({},ra,la(l)&&l)),this.init(),this.emit("update",this),this},getImageData(){return{...this.data.imageData}},getContainerData(){return{...this.data.containerData}},getSliderValue(){const{__modules__:{slider:l}}=this;return l&&l.value?l.value:null},getImageDiff(){const{width:l,height:e}=this.getContainerData(),{width:t,height:s}=this.getImageData();return{width:(l-t)/2,height:(e-s)/2}},getContainerCenterClient(){const{element:l}=this,{top:e,left:t,width:s,height:r}=ss(l);return{clientX:t+s/2,clientY:e+r/2}},getScaleRatio(){const{transform:{scale:l},options:{minScale:e,maxScale:t}}=this;return(l-e)/(t-e)},useFixedRatio(l){const{options:{minScale:e,maxScale:t}}=this;return ls(l,e,t)}},{defineProperty:ol}=Object;var $l,na,Hl,yn,Fl,In,Yl,Dn,Xl,zn,Gl,Vn,Kl,Tn,Ql,Bn,Jl,Nn,Zl,Pn,xl,Sn,er,Rn;class Pl{constructor(e,t){Ct(this,$l),Ct(this,Hl),Ct(this,Fl),Ct(this,Yl),Ct(this,Xl),Ct(this,Gl),Ct(this,Kl),Ct(this,Ql),Ct(this,Jl),Ct(this,Zl),Ct(this,xl),Ct(this,er),Ht(this,"element"),Ht(this,"options"),Ht(this,"wrapper"),Ht(this,"image"),Ht(this,"mounted"),Ht(this,"data"),Ht(this,"transform"),Ht(this,"states"),Ht(this,"controller"),Ht(this,"__events__"),Ht(this,"__modules__"),e||bn("The first argument is required."),Ul(e)||bn(`Element ${e} is not exist.`),this.element=pl(e),this.options=Object.assign({},ra,la(t)&&t),this.init()}init(){const{element:e}=this,{options:{bounds:t,minScale:s,maxScale:r,initScale:i}}=this;if(e[gt])return;e[gt]=this;const n=e.querySelector(`.${gn}`),o=e.querySelector(`.${ql}`);if(!n)return Wl(`${gt} needs a ".${gn}" element.`);if(!o)return Wl(`${gt} needs a ".${ql}" element.`);this.options.minScale=t&&s<1?1:s,this.options.maxScale=Math.max(r,s),this.options.initScale=ls(i||s,s,r),this.wrapper=n,this.image=o,Mt(this,$l,na).call(this)}destroyModules(){const{slider:e,zoomer:t}=this.__modules__;e&&this.destroySlider(),t&&this.destroyZoomer()}destroySlider(){var e,t;const{__modules__:{slider:s}}=this;if(!s||!s.mounted)return;const{options:{el:r},controller:i}=s;r===`.${Cs}`?(e=s.sliderEl)==null||e.remove():(t=s.sliderTrack)==null||t.remove(),i?.abort(),s.mounted=!1}destroyZoomer(){const{__modules__:{zoomer:e}}=this;if(!e||!e.mounted)return;const{options:{el:t,inEl:s,outEl:r,resetEl:i},controller:n,zoomerEl:o,zoomerInEl:a,zoomerOutEl:c,zoomerResetEl:u}=e,_=(m,v,p)=>{m===`.${v}`&&p?.remove()};[{target:t,className:bl,el:o},{target:s,className:_r,el:a},{target:r,className:vr,el:c},{target:i,className:pr,el:u}].forEach(m=>_(m.target,m.className,m.el)),n?.abort(),e.mounted=!1}}$l=new WeakSet,na=function(){const{element:l,image:e,options:t}=this,{draggable:s,pinchable:r}=t,{offsetWidth:i,offsetHeight:n}=l,{offsetWidth:o,offsetHeight:a}=e,{width:c,height:u}=ss(e);if(!o||!a)return Wl(`The width or height of ${ql} should not be 0.`);if(this.transform={scale:0,translateX:0,translateY:0},this.data={imageData:{originWidth:o,originHeight:a,width:c,height:u},containerData:{width:i,height:n}},_s&&(s||r)&&(this.data.touchData={hypot:0,startX:0,startY:0,prevX:0,prevY:0,imageTop:0,imageLeft:0,widthDiff:0,heightDiff:0}),!_s&&s&&(this.data.dragData={startX:0,startY:0}),this.__events__={...ku},t.on)for(const[_,m]of Object.entries(t.on))this.__events__[_]=[m];if(this.__modules__={...Eu},t.slider){const _=t.slider===!0?bu:t.slider;this.__modules__.slider={options:Object.assign({},pu,_)}}if(t.zoomer){const _=t.zoomer===!0?wu:t.zoomer;this.__modules__.zoomer={options:Object.assign({},gu,_)}}this.controller=new AbortController,Mt(this,Hl,yn).call(this)},Hl=new WeakSet,yn=function(){if(this.mounted)return;const{element:l,image:e,options:{minScale:t,maxScale:s,initScale:r},__modules__:{slider:i,zoomer:n}}=this,o=this;Ss(e,{transform:`
-        translate(var(${kn}, 0px), var(${En}, 0px))
-        scale(var(${wn}, 0))`}),ol(this.transform,"scale",{get(){return o.transform.__scale__},set(a){const c=o.useFixedRatio(a);if(!(Ll(c)||o.transform.__scale__===c)){if(o.transform.__scale__=c,Ss(e,{[wn]:c.toString()}),Ot(o.data.imageData,{width:ss(e).width,height:ss(e).height}),i){const u=Math.round(o.getScaleRatio()*100);i.value=u}if(n&&n.options.disabledClass){const{zoomerInEl:u,zoomerOutEl:_,zoomerResetEl:m,options:{disabledClass:v}}=n;u&&(u.classList[c===s?"add":"remove"](v),As(u,{"aria-disabled":c===s?"true":"false"})),_&&(_.classList[c===t?"add":"remove"](v),As(_,{"aria-disabled":c===t?"true":"false"})),m&&(m.classList[c===r?"add":"remove"](v),As(m,{"aria-disabled":c===r?"true":"false"}))}}}}),ol(this.transform,"translateX",{get(){return o.transform.__translateX__},set(a){const c=ys(a);Ll(c)||o.transform.__translateX__===c||(o.transform.__translateX__=c,Ss(e,{[kn]:`${c}px`}))}}),ol(this.transform,"translateY",{get(){return o.transform.__translateY__},set(a){const c=ys(a);Ll(c)||o.transform.__translateY__===c||(o.transform.__translateY__=c,Ss(e,{[En]:`${c}px`}))}}),Mt(this,Fl,In).call(this),Mt(this,Ql,Bn).call(this),Ot(this.transform,{scale:r,translateX:0,translateY:0}),l.classList.add(tu),this.mounted=!0,this.emit("ready",this)},Fl=new WeakSet,In=function(){const{wrapper:l,options:e,controller:{signal:t}}=this,{draggable:s,pinchable:r,wheelable:i}=e;if(this.states={},i){this.states.wheeling=!1;const n=o=>Mt(this,Yl,Dn).call(this,o);l.addEventListener(hu,n,{signal:t})}if(_s&&(s||r)){s&&(this.states.dragging=!1),r&&(this.states.pinching=!1);const n=o=>Mt(this,Gl,Vn).call(this,o);l.addEventListener("touchstart",n,{signal:t})}if(!_s&&s){this.states.dragging=!1;const n=o=>Mt(this,Xl,zn).call(this,o);l.addEventListener("mousedown",n,{signal:t})}Mt(this,Kl,Tn).call(this)},Yl=new WeakSet,Dn=function(l){const{options:e}=this,{zoomRatio:t}=e;if(l.preventDefault(),this.states.wheeling)return;this.states.wheeling=!0,setTimeout(()=>{this.states.wheeling=!1},30);const s=(l.deltaY||l.detail)>0?-1:1;this.zoom(s*t,Gt(l)),this.emit("wheel",this,this.transform.scale,l)},Xl=new WeakSet,zn=function(l){const{data:e,transform:t}=this,{dragData:s,imageData:r}=e;if(!s||!r)return;const i=a=>{a&&a.button!==0||(Ot(s,{startX:Gt(a).clientX,startY:Gt(a).clientY}),this.states.dragging=!0,this.emit("dragStart",this,{x:t.translateX,y:t.translateY},a),document.addEventListener(il,n),document.addEventListener(al,o))},n=a=>{if(a.touches||!this.states.dragging)return;const c=Gt(a).clientX,u=Gt(a).clientY,_=c-s.startX+t.translateX,m=u-s.startY+t.translateY;this.moveTo({x:_,y:m}),Ot(s,{startX:Gt(a).clientX,startY:Gt(a).clientY}),this.emit("drag",this,{x:_,y:m},a)},o=a=>{a.touches||(this.states.dragging=!1,this.emit("dragEnd",this,{x:t.translateX,y:t.translateY},a),document.removeEventListener(il,n),document.removeEventListener(al,o))};i(l)},Gl=new WeakSet,Vn=function(l){const{data:e,transform:t,options:{maxScale:s,minScale:r,draggable:i,pinchable:n}}=this,{touchData:o,imageData:a}=e;if(!o||!a)return;const c=m=>{const v=m.touches;if(!v)return;const{top:p,left:k}=ss(this.image),{width:y,height:D}=this.getImageDiff();Ot(o,{hypot:pn(v),startX:nl(v).clientX,startY:nl(v).clientY,prevX:0,prevY:0,imageTop:p,imageLeft:k,widthDiff:y,heightDiff:D}),i&&(this.states.dragging=!0,this.emit("dragStart",this,{x:t.translateX,y:t.translateY},m)),n&&v.length===2&&(this.states.pinching=!0,this.emit("pinchStart",this,t.scale,m)),document.addEventListener("touchmove",u),document.addEventListener("touchend",_)},u=m=>{const v=m.touches;if(!v)return;const{states:{dragging:p,pinching:k}}=this,{top:y,left:D}=ss(this.image),{width:V,height:I}=this.getImageDiff(),E=pn(v),z=E?E/o.hypot:1,T=this.useFixedRatio(z*t.scale),R=nl(v).clientX+o.prevX,B=nl(v).clientY+o.prevY;if(k&&v.length===2&&this.zoomTo(T,!1),p){const L=T!==s&&T!==r&&n?z:1,j=ys(R-o.imageLeft-(V-o.widthDiff)-(o.startX-o.imageLeft)*L+t.translateX),U=ys(B-o.imageTop-(I-o.heightDiff)-(o.startY-o.imageTop)*L+t.translateY);this.moveTo({x:j,y:U})}Ot(o,{hypot:E,startX:R,startY:B,imageTop:y,imageLeft:D,widthDiff:V,heightDiff:I}),k&&v.length===2&&this.emit("pinch",this,t.scale,m),p&&this.emit("drag",this,{x:t.translateX,y:t.translateY},m)},_=m=>{const v=m.touches;if(!v)return;const{states:{dragging:p,pinching:k}}=this;if(p&&!v.length&&(this.states.dragging=!1,this.emit("dragEnd",this,{x:t.translateX,y:t.translateY},m)),k&&v.length<2&&(this.states.pinching=!1,this.emit("pinchEnd",this,t.scale,m)),p&&v.length===1){const y=Gt(m).clientX,D=Gt(m).clientY;Ot(o,{prevX:o.startX-y,prevY:o.startY-D})}v.length||(document.removeEventListener("touchmove",u),document.removeEventListener("touchend",_))};c(l)},Kl=new WeakSet,Tn=function(){const{element:l,image:e,transform:t}=this;new ResizeObserver(()=>{const{offsetWidth:s,offsetHeight:r}=l,{width:i,height:n}=this.getContainerData();if(s===i&&r===n)return;const o=t.translateX,a=t.translateY;if(o){const v=s/i*o;this.transform.translateX=v}if(a){const v=r/n*a;this.transform.translateY=v}const{offsetWidth:c,offsetHeight:u}=e,{width:_,height:m}=ss(e);Ot(this.data.containerData,{width:s,height:r}),Ot(this.data.imageData,{originWidth:c,originHeight:u,width:_,height:m}),this.emit("resize",this)}).observe(l)},Ql=new WeakSet,Bn=function(){const{slider:l,zoomer:e}=this.__modules__;l&&Mt(this,Jl,Nn).call(this),e&&Mt(this,xl,Sn).call(this)},Jl=new WeakSet,Nn=function(){const{element:l,__modules__:{slider:e}}=this;if(!e||e.mounted)return;const{options:{el:t,direction:s}}=e,r=t===`.${Cs}`;if(!t||!r&&!Ul(t))return;const i=r?Rs("div",Cs):pl(t),n=Rs("div",su),o=Rs("span",lu),a=Rs("span",ru,{...au,"aria-orientation":s});i.classList.add(`${Cs}-${s}`),ol(e,"value",{get(){return e.__value__},set(c){e.__value__!==c&&(e.__value__=c,Ss(i,{[vu]:c.toString()}),As(a,{"aria-valuenow":c.toString()}))}}),Ot(e,{value:this.getScaleRatio()*100,controller:new AbortController,sliding:!1,sliderEl:i,sliderTrack:n,sliderButton:a}),Mt(this,Zl,Pn).call(this),n.append(o,a),i.append(n),r&&l.append(i),e.mounted=!0},Zl=new WeakSet,Pn=function(){const{options:{minScale:l,maxScale:e},__modules__:{slider:t}}=this;if(!t)return;const{options:{direction:s},controller:r,sliderEl:i,sliderTrack:n}=t;if(!i||!n)return;const o=s==="vertical",a=m=>{const v=ss(n),p=v[o?"height":"width"],k=v[o?"bottom":"left"],y=Gt(m)[o?"clientY":"clientX"],D=ys(ls((y-k)*(o?-1:1)/p,0,1));return(e-l)*D+l},c=m=>{if(m instanceof MouseEvent&&m.button!==0)return;t.sliding=!0;const v=a(m);this.zoomTo(v),this.emit("slideStart",this,this.getSliderValue(),m),document.addEventListener(il,u),document.addEventListener(al,_)},u=m=>{if(!t.sliding)return;const v=a(m);this.zoomTo(v),this.emit("slide",this,this.getSliderValue(),m)},_=m=>{this.emit("slideEnd",this,this.getSliderValue(),m),t.sliding=!1,document.removeEventListener(il,u),document.removeEventListener(al,_)};i.addEventListener(du,c,{signal:r?.signal})},xl=new WeakSet,Sn=function(){const{element:l,__modules__:{zoomer:e}}=this;if(!e||e.mounted)return;const{options:{el:t,inEl:s,outEl:r,resetEl:i}}=e,n=[s,r,i],o=(m,v,p,k,y)=>{const D=m===`.${p}`;return!m||!D&&!Ul(m)?null:(p=n.includes(m)?`${p} ${nu}`:p,D?Rs(v,p,k,y):pl(m))},a=o(t,"div",bl),c=o(s,"button",_r,ou,yu),u=o(r,"button",vr,cu,Iu),_=o(i,"button",pr,uu,Du);Ot(e,{controller:new AbortController,zoomerEl:a,zoomerInEl:c,zoomerOutEl:u,zoomerResetEl:_}),a&&(c&&a.append(c),u&&a.append(u),_&&a.append(_),t===`.${bl}`&&l.append(a)),Mt(this,er,Rn).call(this),e.mounted=!0},er=new WeakSet,Rn=function(){const{options:{zoomRatio:l},__modules__:{zoomer:e}}=this,t=this;if(!e)return;const{controller:s,zoomerInEl:r,zoomerOutEl:i,zoomerResetEl:n}=e;r&&r.addEventListener("click",()=>{t.zoom(l)},{signal:s?.signal}),i&&i.addEventListener("click",()=>{t.zoom(-l)},{signal:s?.signal}),n&&n.addEventListener("click",()=>{t.reset()},{signal:s?.signal})};Object.assign(Pl.prototype,zu);function Vu(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z;return{c(){e=b("div"),t=b("div"),s=P(),r=b("div"),i=b("button"),n=b("i"),o=P(),a=b("button"),c=b("i"),u=P(),_=b("button"),m=b("i"),v=P(),p=b("div"),k=b("div"),y=b("div"),D=b("img"),this.h()},l(T){e=g(T,"DIV",{class:!0});var R=w(e);t=g(R,"DIV",{class:!0}),w(t).forEach(h),s=S(R),r=g(R,"DIV",{class:!0});var B=w(r);i=g(B,"BUTTON",{class:!0});var L=w(i);n=g(L,"I",{class:!0}),w(n).forEach(h),L.forEach(h),o=S(B),a=g(B,"BUTTON",{class:!0});var j=w(a);c=g(j,"I",{class:!0}),w(c).forEach(h),j.forEach(h),B.forEach(h),u=S(R),_=g(R,"BUTTON",{class:!0});var U=w(_);m=g(U,"I",{class:!0}),w(m).forEach(h),U.forEach(h),v=S(R),p=g(R,"DIV",{class:!0});var A=w(p);k=g(A,"DIV",{class:!0});var W=w(k);y=g(W,"DIV",{class:!0});var Y=w(y);D=g(Y,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),Y.forEach(h),W.forEach(h),A.forEach(h),R.forEach(h),this.h()},h(){d(t,"class","zoom-slider svelte-1oo1z35"),d(n,"class","gi-zoom-in"),d(i,"class","zoomin svelte-1oo1z35"),d(c,"class","gi-zoom-out"),d(a,"class","zoomout svelte-1oo1z35"),d(r,"class","zoomer svelte-1oo1z35"),d(m,"class","gi-check"),d(_,"class","setpos svelte-1oo1z35"),je(D.src,V=l[1])||d(D,"src",V),d(D,"alt","Uploaded Splash Art"),d(D,"crossorigin","anonymous"),d(D,"class","svelte-1oo1z35"),d(y,"class","zoomist-image svelte-1oo1z35"),d(k,"class","zoomist-wrapper svelte-1oo1z35"),d(p,"class","zoomist-container"),d(e,"class","main-art svelte-1oo1z35"),Pe(()=>l[8].call(e)),pe(e,"onBannerEdit",l[0])},m(T,R){O(T,e,R),f(e,t),f(e,s),f(e,r),f(r,i),f(i,n),f(r,o),f(r,a),f(a,c),f(e,u),f(e,_),f(_,m),f(e,v),f(e,p),f(p,k),f(k,y),f(y,D),l[7](p),I=rs(e,l[8].bind(e)),E||(z=ge(_,"click",l[5]),E=!0)},p(T,[R]){R&2&&!je(D.src,V=T[1])&&d(D,"src",V),R&1&&pe(e,"onBannerEdit",T[0])},i:we,o:we,d(T){T&&h(e),l[7](null),I(),E=!1,z()}}}function Tu(l,e,t){let{onBannerEdit:s=!1}=e,{artURL:r=""}=e,{bannerPosition:i={scale:2,x:0,y:0}}=e,n,o,a=0,c=0,u=i||{};const _={initScale:i.scale||2,maxScale:5,slider:{el:".zoom-slider",direction:"vertical"},zoomer:{inEl:".zoomin",outEl:".zoomout",resetEl:null,disabledClass:"zoomer-disabled"}},m=()=>{const{x:z=0,y:T=0}=u,R=z/100*a,B=T/100*c;return{x:R,y:B}},v=Re("editBanner"),p=Re("setPosition"),k=(z,T)=>{const B=getComputedStyle(z).getPropertyValue(T).split("px")[0]||0;return parseFloat(B)},y=()=>{const T={..._,...{draggable:!1,wheelable:!1,pinchable:!1}},R=n.querySelector(".zoomist-image"),B=k(R,"--translate-x"),L=k(R,"--translate-y"),j=B/a*100,U=L/c*100;u={x:j,y:U},p("banner",{scale:_.initScale,x:j,y:U}),o.update(T),o.moveTo(m()),v(!1)},D=()=>{o.moveTo(m()),o.on("zoom",(z,T)=>_.initScale=T)},V=()=>{!o||(o.update(_),D())};Et(()=>{o=new Pl(n,_),D()});function I(z){Rt[z?"unshift":"push"](()=>{n=z,t(2,n)})}function E(){c=this.clientHeight,a=this.clientWidth,t(4,c),t(3,a)}return l.$$set=z=>{"onBannerEdit"in z&&t(0,s=z.onBannerEdit),"artURL"in z&&t(1,r=z.artURL),"bannerPosition"in z&&t(6,i=z.bannerPosition)},l.$$.update=()=>{l.$$.dirty&1&&(!s||V())},[s,r,n,a,c,y,i,I,E]}class ia extends Qe{constructor(e){super(),Je(this,e,Tu,Vu,He,{onBannerEdit:0,artURL:1,bannerPosition:6})}}function Ln(l){let e,t,s,r;const i=[Nu,Bu],n=[];function o(a,c){return a[4]?0:1}return e=o(l),t=n[e]=i[e](l),{c(){t.c(),s=We()},l(a){t.l(a),s=We()},m(a,c){n[e].m(a,c),O(a,s,c),r=!0},p(a,c){let u=e;e=o(a),e===u?n[e].p(a,c):(Ee(),M(n[u],1,1,()=>{n[u]=null}),ye(),t=n[e],t?t.p(a,c):(t=n[e]=i[e](a),t.c()),N(t,1),t.m(s.parentNode,s))},i(a){r||(N(t),r=!0)},o(a){M(t),r=!1},d(a){n[e].d(a),a&&h(s)}}}function Bu(l){let e,t,s,r,i,n,o;return{c(){e=b("div"),t=b("div"),s=b("picture"),r=b("img"),this.h()},l(a){e=g(a,"DIV",{style:!0});var c=w(e);t=g(c,"DIV",{style:!0});var u=w(t);s=g(u,"PICTURE",{class:!0});var _=w(s);r=g(_,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),_.forEach(h),u.forEach(h),c.forEach(h),this.h()},h(){je(r.src,i=l[0])||d(r,"src",i),d(r,"alt",l[1]),d(r,"crossorigin","anonymous"),d(r,"class","svelte-1f4lu7l"),d(s,"class","svelte-1f4lu7l"),_e(t,"position","relative"),_e(t,"overflow","hidden"),_e(e,"position","relative"),_e(e,"width","100%")},m(a,c){O(a,e,c),f(e,t),f(t,s),f(s,r),n||(o=ge(r,"error",l[8]),n=!0)},p(a,c){c&1&&!je(r.src,i=a[0])&&d(r,"src",i),c&2&&d(r,"alt",a[1])},i:we,o:we,d(a){a&&h(e),n=!1,o()}}}function Nu(l){let e,t,s,r=l[6],i,n,o=An(l);return{c(){e=b("img"),s=P(),o.c(),i=We(),this.h()},l(a){e=g(a,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),s=S(a),o.l(a),i=We(),this.h()},h(){je(e.src,t=l[7][`blank/${l[5]}`])||d(e,"src",t),d(e,"alt","background banner"),d(e,"crossorigin","anonymous"),d(e,"class","art-bg svelte-1f4lu7l")},m(a,c){O(a,e,c),O(a,s,c),o.m(a,c),O(a,i,c),n=!0},p(a,c){(!n||c&160&&!je(e.src,t=a[7][`blank/${a[5]}`]))&&d(e,"src",t),c&64&&He(r,r=a[6])?(Ee(),M(o,1,1,we),ye(),o=An(a),o.c(),N(o,1),o.m(i.parentNode,i)):o.p(a,c)},i(a){n||(N(o),n=!0)},o(a){M(o),n=!1},d(a){a&&h(e),a&&h(s),a&&h(i),o.d(a)}}}function An(l){let e,t;return e=new ia({props:{artURL:l[0],bannerPosition:l[6]?.banner}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r&1&&(i.artURL=s[0]),r&64&&(i.bannerPosition=s[6]?.banner),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Pu(l){let e,t,s,r=!l[3]&&Ln(l);return{c(){e=b("div"),r&&r.c(),this.h()},l(i){e=g(i,"DIV",{class:!0,style:!0});var n=w(e);r&&r.l(n),n.forEach(h),this.h()},h(){d(e,"class",t="wrapper "+l[2]+" svelte-1f4lu7l"),_e(e,"min-height","100px"),_e(e,"width","100%"),pe(e,"image-error",l[3])},m(i,n){O(i,e,n),r&&r.m(e,null),s=!0},p(i,[n]){i[3]?r&&(Ee(),M(r,1,1,()=>{r=null}),ye()):r?(r.p(i,n),n&8&&N(r,1)):(r=Ln(i),r.c(),N(r,1),r.m(e,null)),(!s||n&4&&t!==(t="wrapper "+i[2]+" svelte-1f4lu7l"))&&d(e,"class",t),n&12&&pe(e,"image-error",i[3])},i(i){s||(N(r),s=!0)},o(i){M(r),s=!1},d(i){i&&h(e),r&&r.d()}}}function Su(l,e,t){let s;Z(l,wt,m=>t(7,s=m));let{src:r=""}=e,{alt:i=""}=e,{wrapperClass:n=""}=e,{isError:o=!1}=e,{custom:a=!1}=e,{vision:c=""}=e,{artPosition:u={}}=e;const _=Re("imageError");return l.$$set=m=>{"src"in m&&t(0,r=m.src),"alt"in m&&t(1,i=m.alt),"wrapperClass"in m&&t(2,n=m.wrapperClass),"isError"in m&&t(3,o=m.isError),"custom"in m&&t(4,a=m.custom),"vision"in m&&t(5,c=m.vision),"artPosition"in m&&t(6,u=m.artPosition)},[r,i,n,o,a,c,u,s,_]}class Ts extends Qe{constructor(e){super(),Je(this,e,Su,Pu,He,{src:0,alt:1,wrapperClass:2,isError:3,custom:4,vision:5,artPosition:6})}}function On(l){let e,t,s=l[13]("editor.winRate")+"",r,i,n,o,a,c,u;return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("div"),o=b("input"),this.h()},l(_){e=g(_,"DIV",{class:!0});var m=w(e);t=g(m,"DIV",{class:!0});var v=w(t);r=F(v,s),v.forEach(h),i=S(m),n=g(m,"DIV",{class:!0});var p=w(n);o=g(p,"INPUT",{type:!0,class:!0}),p.forEach(h),m.forEach(h),this.h()},h(){d(t,"class","col svelte-cbzzf0"),d(o,"type","number"),o.value=l[9],o.disabled=a=l[10]==="always",d(o,"class","svelte-cbzzf0"),d(n,"class","col percent svelte-cbzzf0"),d(e,"class","item svelte-cbzzf0"),pe(e,"disabled",l[10]==="always")},m(_,m){O(_,e,m),f(e,t),f(t,r),f(e,i),f(e,n),f(n,o),c||(u=ge(o,"input",l[27]),c=!0)},p(_,m){m[0]&8192&&s!==(s=_[13]("editor.winRate")+"")&&J(r,s),m[0]&512&&o.value!==_[9]&&(o.value=_[9]),m[0]&1024&&a!==(a=_[10]==="always")&&(o.disabled=a),m[0]&1024&&pe(e,"disabled",_[10]==="always")},d(_){_&&h(e),c=!1,u()}}}function Cn(l){let e,t=l[13]("editor.nonRateup")+"",s;return{c(){e=b("small"),s=H(t)},l(r){e=g(r,"SMALL",{});var i=w(e);s=F(i,t),i.forEach(h)},m(r,i){O(r,e,i),f(e,s)},p(r,i){i[0]&8192&&t!==(t=r[13]("editor.nonRateup")+"")&&J(s,t)},d(r){r&&h(e)}}}function Mn(l){let e,t,s=l[13]("editor.selectedRate")+"",r,i,n,o,a,c;return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("div"),o=b("input"),this.h()},l(u){e=g(u,"DIV",{class:!0});var _=w(e);t=g(_,"DIV",{class:!0});var m=w(t);r=F(m,s),m.forEach(h),i=S(_),n=g(_,"DIV",{class:!0});var v=w(n);o=g(v,"INPUT",{type:!0,class:!0}),v.forEach(h),_.forEach(h),this.h()},h(){d(t,"class","col svelte-cbzzf0"),d(o,"type","number"),o.value=l[11],d(o,"class","svelte-cbzzf0"),d(n,"class","col percent svelte-cbzzf0"),d(e,"class","item svelte-cbzzf0")},m(u,_){O(u,e,_),f(e,t),f(t,r),f(e,i),f(e,n),f(n,o),a||(c=ge(o,"input",l[29]),a=!0)},p(u,_){_[0]&8192&&s!==(s=u[13]("editor.selectedRate")+"")&&J(r,s),_[0]&2048&&o.value!==u[11]&&(o.value=u[11])},d(u){u&&h(e),a=!1,c()}}}function jn(l){let e,t,s=l[13]("editor.guaranteedSystem")+"",r,i,n,o=l[13](`editor.${l[10]}`)+"",a,c,u,_,m=l[2]&&Un(l);return{c(){e=b("div"),t=b("div"),r=P(),i=b("div"),n=b("button"),a=H(o),c=P(),m&&m.c(),this.h()},l(v){e=g(v,"DIV",{class:!0});var p=w(e);t=g(p,"DIV",{class:!0});var k=w(t);k.forEach(h),r=S(p),i=g(p,"DIV",{class:!0});var y=w(i);n=g(y,"BUTTON",{class:!0});var D=w(n);a=F(D,o),D.forEach(h),c=S(y),m&&m.l(y),y.forEach(h),p.forEach(h),this.h()},h(){d(t,"class","col svelte-cbzzf0"),d(n,"class","selected svelte-cbzzf0"),d(i,"class","col select svelte-cbzzf0"),d(e,"class","item svelte-cbzzf0")},m(v,p){O(v,e,p),f(e,t),t.innerHTML=s,f(e,r),f(e,i),f(i,n),f(n,a),f(i,c),m&&m.m(i,null),u||(_=ge(n,"click",l[30]),u=!0)},p(v,p){p[0]&8192&&s!==(s=v[13]("editor.guaranteedSystem")+"")&&(t.innerHTML=s),p[0]&9216&&o!==(o=v[13](`editor.${v[10]}`)+"")&&J(a,o),v[2]?m?(m.p(v,p),p[0]&4&&N(m,1)):(m=Un(v),m.c(),N(m,1),m.m(i,null)):m&&(Ee(),M(m,1,1,()=>{m=null}),ye())},d(v){v&&h(e),m&&m.d(),u=!1,_()}}}function Un(l){let e,t,s=l[13]("editor.default")+"",r,i,n,o=l[13]("editor.always")+"",a,c,u,_=l[13]("editor.never")+"",m,v,p,k,y;return{c(){e=b("div"),t=b("button"),r=H(s),i=P(),n=b("button"),a=H(o),c=P(),u=b("button"),m=H(_),this.h()},l(D){e=g(D,"DIV",{class:!0});var V=w(e);t=g(V,"BUTTON",{class:!0});var I=w(t);r=F(I,s),I.forEach(h),i=S(V),n=g(V,"BUTTON",{class:!0});var E=w(n);a=F(E,o),E.forEach(h),c=S(V),u=g(V,"BUTTON",{class:!0});var z=w(u);m=F(z,_),z.forEach(h),V.forEach(h),this.h()},h(){d(t,"class","option svelte-cbzzf0"),d(n,"class","option svelte-cbzzf0"),d(u,"class","option svelte-cbzzf0"),d(e,"class","selection svelte-cbzzf0")},m(D,V){O(D,e,V),f(e,t),f(t,r),f(e,i),f(e,n),f(n,a),f(e,c),f(e,u),f(u,m),p=!0,k||(y=[ge(t,"click",l[31]),ge(n,"click",l[32]),ge(u,"click",l[33])],k=!0)},p(D,V){(!p||V[0]&8192)&&s!==(s=D[13]("editor.default")+"")&&J(r,s),(!p||V[0]&8192)&&o!==(o=D[13]("editor.always")+"")&&J(a,o),(!p||V[0]&8192)&&_!==(_=D[13]("editor.never")+"")&&J(m,_)},i(D){p||(D&&Pe(()=>{v||(v=ot(e,lt,{y:10},!0)),v.run(1)}),p=!0)},o(D){D&&(v||(v=ot(e,lt,{y:10},!1)),v.run(0)),p=!1},d(D){D&&h(e),D&&v&&v.end(),k=!1,ns(y)}}}function Ru(l){let e=l[13]("editor.backToDefault")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&8192&&e!==(e=s[13]("editor.backToDefault")+"")&&J(t,e)},d(s){s&&h(t)}}}function Lu(l){let e,t,s=l[13]("editor.bannerConfig",{values:{banner:l[13](`wish.banner.${l[0]}`)}})+"",r,i,n,o,a,c=l[13]("editor.baseRate",{values:{rarity:5}})+"",u,_,m,v,p,k,y,D=l[13]("editor.maxPity",{values:{rarity:5}})+"",V,I,E,z,T,R,B,L,j=l[13]("editor.hardPity",{values:{rarity:5}})+"",U,A,W,Y,Q,C,q,te,re=l[13]("editor.currentPity",{values:{rarity:5}})+"",K,le,ce,se,x,ee,de,ze,X=l[13]("editor.baseRate",{values:{rarity:4}})+"",$,me,ve,G,he,ke,Ie,be,Te=l[13]("editor.maxPity",{values:{rarity:4}})+"",qe,Ze,Me,Ue,tt,Le,Ae,Oe,Ne=l[13]("editor.hardPity",{values:{rarity:4}})+"",oe,Se,rt,it,mt,vt,Xe,yt,It=l[13]("editor.currentPity",{values:{rarity:4}})+"",pt,xe,Dt,Ge,De,$e,at,Ye,ht,Bt=l[13]("editor.charRate")+"",Yt,Wt,_t,as,Xt,Nt,xt,ds,ws=l[0].match("weapon"),es,hs,qt,Pt,ms,$t,ts,os,st,ks,Bs,bt=l[0]!=="standard"&&On(l),zt=l[0]!=="standard"&&Cn(l),Vt=ws&&Mn(l),Tt=l[0]!=="standard"&&jn(l);return Pt=new Os({props:{$$slots:{default:[Ru]},$$scope:{ctx:l}}}),Pt.$on("click",l[15]),$t=new Zt({}),$t.$on("click",l[34]),{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("div"),o=b("div"),a=b("div"),u=H(c),_=P(),m=b("div"),v=b("input"),p=P(),k=b("div"),y=b("div"),V=H(D),I=P(),E=b("div"),z=b("input"),R=P(),B=b("div"),L=b("div"),U=H(j),A=P(),W=b("div"),Y=b("input"),C=P(),q=b("div"),te=b("div"),K=H(re),le=P(),ce=b("div"),se=b("input"),ee=P(),de=b("div"),ze=b("div"),$=H(X),me=P(),ve=b("div"),G=b("input"),ke=P(),Ie=b("div"),be=b("div"),qe=H(Te),Ze=P(),Me=b("div"),Ue=b("input"),Le=P(),Ae=b("div"),Oe=b("div"),oe=H(Ne),Se=P(),rt=b("div"),it=b("input"),vt=P(),Xe=b("div"),yt=b("div"),pt=H(It),xe=P(),Dt=b("div"),Ge=b("input"),$e=P(),bt&&bt.c(),at=P(),Ye=b("div"),ht=b("div"),Yt=H(Bt),Wt=P(),zt&&zt.c(),_t=H(`
-				:`),as=P(),Xt=b("div"),Nt=b("input"),ds=P(),Vt&&Vt.c(),es=P(),Tt&&Tt.c(),hs=P(),qt=b("div"),ne(Pt.$$.fragment),ms=P(),ne($t.$$.fragment),this.h()},l(ue){e=g(ue,"DIV",{class:!0});var Ce=w(e);t=g(Ce,"DIV",{class:!0});var Ns=w(t);r=F(Ns,s),Ns.forEach(h),i=S(Ce),n=g(Ce,"DIV",{class:!0});var ut=w(n);o=g(ut,"DIV",{class:!0});var Xs=w(o);a=g(Xs,"DIV",{class:!0});var gr=w(a);u=F(gr,c),gr.forEach(h),_=S(Xs),m=g(Xs,"DIV",{class:!0});var wr=w(m);v=g(wr,"INPUT",{type:!0,class:!0}),wr.forEach(h),Xs.forEach(h),p=S(ut),k=g(ut,"DIV",{class:!0});var Gs=w(k);y=g(Gs,"DIV",{class:!0});var kr=w(y);V=F(kr,D),kr.forEach(h),I=S(Gs),E=g(Gs,"DIV",{class:!0});var Er=w(E);z=g(Er,"INPUT",{type:!0,class:!0}),Er.forEach(h),Gs.forEach(h),R=S(ut),B=g(ut,"DIV",{class:!0});var Ks=w(B);L=g(Ks,"DIV",{class:!0});var yr=w(L);U=F(yr,j),yr.forEach(h),A=S(Ks),W=g(Ks,"DIV",{class:!0});var Ir=w(W);Y=g(Ir,"INPUT",{type:!0,class:!0}),Ir.forEach(h),Ks.forEach(h),C=S(ut),q=g(ut,"DIV",{class:!0});var Qs=w(q);te=g(Qs,"DIV",{class:!0});var Dr=w(te);K=F(Dr,re),Dr.forEach(h),le=S(Qs),ce=g(Qs,"DIV",{class:!0});var zr=w(ce);se=g(zr,"INPUT",{type:!0,class:!0}),zr.forEach(h),Qs.forEach(h),ee=S(ut),de=g(ut,"DIV",{class:!0});var Js=w(de);ze=g(Js,"DIV",{class:!0});var Vr=w(ze);$=F(Vr,X),Vr.forEach(h),me=S(Js),ve=g(Js,"DIV",{class:!0});var Tr=w(ve);G=g(Tr,"INPUT",{type:!0,class:!0}),Tr.forEach(h),Js.forEach(h),ke=S(ut),Ie=g(ut,"DIV",{class:!0});var Zs=w(Ie);be=g(Zs,"DIV",{class:!0});var Br=w(be);qe=F(Br,Te),Br.forEach(h),Ze=S(Zs),Me=g(Zs,"DIV",{class:!0});var Nr=w(Me);Ue=g(Nr,"INPUT",{type:!0,class:!0}),Nr.forEach(h),Zs.forEach(h),Le=S(ut),Ae=g(ut,"DIV",{class:!0});var xs=w(Ae);Oe=g(xs,"DIV",{class:!0});var Pr=w(Oe);oe=F(Pr,Ne),Pr.forEach(h),Se=S(xs),rt=g(xs,"DIV",{class:!0});var Sr=w(rt);it=g(Sr,"INPUT",{type:!0,class:!0}),Sr.forEach(h),xs.forEach(h),vt=S(ut),Xe=g(ut,"DIV",{class:!0});var el=w(Xe);yt=g(el,"DIV",{class:!0});var Rr=w(yt);pt=F(Rr,It),Rr.forEach(h),xe=S(el),Dt=g(el,"DIV",{class:!0});var Lr=w(Dt);Ge=g(Lr,"INPUT",{type:!0,class:!0}),Lr.forEach(h),el.forEach(h),$e=S(ut),bt&&bt.l(ut),at=S(ut),Ye=g(ut,"DIV",{class:!0});var tl=w(Ye);ht=g(tl,"DIV",{class:!0});var Ps=w(ht);Yt=F(Ps,Bt),Wt=S(Ps),zt&&zt.l(Ps),_t=F(Ps,`
-				:`),Ps.forEach(h),as=S(tl),Xt=g(tl,"DIV",{class:!0});var Ar=w(Xt);Nt=g(Ar,"INPUT",{type:!0,class:!0}),Ar.forEach(h),tl.forEach(h),ds=S(ut),Vt&&Vt.l(ut),es=S(ut),Tt&&Tt.l(ut),ut.forEach(h),hs=S(Ce),qt=g(Ce,"DIV",{class:!0});var sl=w(qt);fe(Pt.$$.fragment,sl),ms=S(sl),fe($t.$$.fragment,sl),sl.forEach(h),Ce.forEach(h),this.h()},h(){d(t,"class","header svelte-cbzzf0"),d(a,"class","col svelte-cbzzf0"),d(v,"type","number"),v.value=l[8],d(v,"class","svelte-cbzzf0"),d(m,"class","col percent svelte-cbzzf0"),d(o,"class","item svelte-cbzzf0"),d(y,"class","col svelte-cbzzf0"),d(z,"type","number"),z.value=l[6],z.disabled=T=l[8]>=100,d(z,"class","svelte-cbzzf0"),d(E,"class","col svelte-cbzzf0"),d(k,"class","item svelte-cbzzf0"),pe(k,"disabled",l[8]>=100),d(L,"class","col svelte-cbzzf0"),d(Y,"type","number"),Y.value=l[3],Y.disabled=Q=l[8]>=100||!l[6]||l[6]<=1,d(Y,"class","svelte-cbzzf0"),d(W,"class","col svelte-cbzzf0"),d(B,"class","item svelte-cbzzf0"),pe(B,"disabled",l[8]>=100||!l[6]||l[6]<=1),d(te,"class","col svelte-cbzzf0"),d(se,"type","number"),se.value=x=St.get(`pity5-${l[0]}`),d(se,"class","svelte-cbzzf0"),d(ce,"class","col svelte-cbzzf0"),d(q,"class","item svelte-cbzzf0"),d(ze,"class","col svelte-cbzzf0"),d(G,"type","number"),G.value=l[7],G.disabled=he=l[8]>=100||l[6]<=1,d(G,"class","svelte-cbzzf0"),d(ve,"class","col percent svelte-cbzzf0"),d(de,"class","item svelte-cbzzf0"),pe(de,"disabled",l[8]>=100||l[6]<=1),d(be,"class","col svelte-cbzzf0"),d(Ue,"type","number"),Ue.value=l[5],Ue.disabled=tt=l[8]>=100||l[7]>=100||l[6]<=1,d(Ue,"class","svelte-cbzzf0"),d(Me,"class","col svelte-cbzzf0"),d(Ie,"class","item svelte-cbzzf0"),pe(Ie,"disabled",l[8]>=100||l[7]>=100||l[6]<=1),d(Oe,"class","col svelte-cbzzf0"),d(it,"type","number"),it.value=l[4],it.disabled=mt=l[8]>=100||l[7]>=100||!l[5]||l[5]<=1||l[6]<=1,d(it,"class","svelte-cbzzf0"),d(rt,"class","col svelte-cbzzf0"),d(Ae,"class","item svelte-cbzzf0"),pe(Ae,"disabled",l[8]>=100||l[7]>=100||!l[5]||l[5]<=1||l[6]<=1),d(yt,"class","col svelte-cbzzf0"),d(Ge,"type","number"),Ge.value=De=St.get(`pity4-${l[0]}`),d(Ge,"class","svelte-cbzzf0"),d(Dt,"class","col svelte-cbzzf0"),d(Xe,"class","item svelte-cbzzf0"),d(ht,"class","col svelte-cbzzf0"),d(Nt,"type","number"),Nt.value=l[12],Nt.disabled=xt=l[8]>=100&&l[0]!=="standard"||l[10]==="always"||l[9]>=100,d(Nt,"class","svelte-cbzzf0"),d(Xt,"class","col percent svelte-cbzzf0"),d(Ye,"class","item svelte-cbzzf0"),pe(Ye,"disabled",l[8]>=100&&l[0]!=="standard"||l[10]==="always"||l[9]>=100),d(n,"class","body svelte-cbzzf0"),d(qt,"class","footer svelte-cbzzf0"),d(e,"class",ts="editor "+l[0]+" svelte-cbzzf0"),pe(e,"fullscreenEditor",l[1])},m(ue,Ce){O(ue,e,Ce),f(e,t),f(t,r),f(e,i),f(e,n),f(n,o),f(o,a),f(a,u),f(o,_),f(o,m),f(m,v),f(n,p),f(n,k),f(k,y),f(y,V),f(k,I),f(k,E),f(E,z),f(n,R),f(n,B),f(B,L),f(L,U),f(B,A),f(B,W),f(W,Y),f(n,C),f(n,q),f(q,te),f(te,K),f(q,le),f(q,ce),f(ce,se),f(n,ee),f(n,de),f(de,ze),f(ze,$),f(de,me),f(de,ve),f(ve,G),f(n,ke),f(n,Ie),f(Ie,be),f(be,qe),f(Ie,Ze),f(Ie,Me),f(Me,Ue),f(n,Le),f(n,Ae),f(Ae,Oe),f(Oe,oe),f(Ae,Se),f(Ae,rt),f(rt,it),f(n,vt),f(n,Xe),f(Xe,yt),f(yt,pt),f(Xe,xe),f(Xe,Dt),f(Dt,Ge),f(n,$e),bt&&bt.m(n,null),f(n,at),f(n,Ye),f(Ye,ht),f(ht,Yt),f(ht,Wt),zt&&zt.m(ht,null),f(ht,_t),f(Ye,as),f(Ye,Xt),f(Xt,Nt),f(n,ds),Vt&&Vt.m(n,null),f(n,es),Tt&&Tt.m(n,null),f(e,hs),f(e,qt),ie(Pt,qt,null),f(qt,ms),ie($t,qt,null),st=!0,ks||(Bs=[ge(v,"input",l[19]),ge(z,"input",l[20]),ge(Y,"input",l[21]),ge(se,"input",l[22]),ge(G,"input",l[23]),ge(Ue,"input",l[24]),ge(it,"input",l[25]),ge(Ge,"input",l[26]),ge(Nt,"input",l[28])],ks=!0)},p(ue,Ce){(!st||Ce[0]&8193)&&s!==(s=ue[13]("editor.bannerConfig",{values:{banner:ue[13](`wish.banner.${ue[0]}`)}})+"")&&J(r,s),(!st||Ce[0]&8192)&&c!==(c=ue[13]("editor.baseRate",{values:{rarity:5}})+"")&&J(u,c),(!st||Ce[0]&256&&v.value!==ue[8])&&(v.value=ue[8]),(!st||Ce[0]&8192)&&D!==(D=ue[13]("editor.maxPity",{values:{rarity:5}})+"")&&J(V,D),(!st||Ce[0]&64&&z.value!==ue[6])&&(z.value=ue[6]),(!st||Ce[0]&256&&T!==(T=ue[8]>=100))&&(z.disabled=T),Ce[0]&256&&pe(k,"disabled",ue[8]>=100),(!st||Ce[0]&8192)&&j!==(j=ue[13]("editor.hardPity",{values:{rarity:5}})+"")&&J(U,j),(!st||Ce[0]&8&&Y.value!==ue[3])&&(Y.value=ue[3]),(!st||Ce[0]&320&&Q!==(Q=ue[8]>=100||!ue[6]||ue[6]<=1))&&(Y.disabled=Q),Ce[0]&320&&pe(B,"disabled",ue[8]>=100||!ue[6]||ue[6]<=1),(!st||Ce[0]&8192)&&re!==(re=ue[13]("editor.currentPity",{values:{rarity:5}})+"")&&J(K,re),(!st||Ce[0]&1&&x!==(x=St.get(`pity5-${ue[0]}`))&&se.value!==x)&&(se.value=x),(!st||Ce[0]&8192)&&X!==(X=ue[13]("editor.baseRate",{values:{rarity:4}})+"")&&J($,X),(!st||Ce[0]&128&&G.value!==ue[7])&&(G.value=ue[7]),(!st||Ce[0]&320&&he!==(he=ue[8]>=100||ue[6]<=1))&&(G.disabled=he),Ce[0]&320&&pe(de,"disabled",ue[8]>=100||ue[6]<=1),(!st||Ce[0]&8192)&&Te!==(Te=ue[13]("editor.maxPity",{values:{rarity:4}})+"")&&J(qe,Te),(!st||Ce[0]&32&&Ue.value!==ue[5])&&(Ue.value=ue[5]),(!st||Ce[0]&448&&tt!==(tt=ue[8]>=100||ue[7]>=100||ue[6]<=1))&&(Ue.disabled=tt),Ce[0]&448&&pe(Ie,"disabled",ue[8]>=100||ue[7]>=100||ue[6]<=1),(!st||Ce[0]&8192)&&Ne!==(Ne=ue[13]("editor.hardPity",{values:{rarity:4}})+"")&&J(oe,Ne),(!st||Ce[0]&16&&it.value!==ue[4])&&(it.value=ue[4]),(!st||Ce[0]&480&&mt!==(mt=ue[8]>=100||ue[7]>=100||!ue[5]||ue[5]<=1||ue[6]<=1))&&(it.disabled=mt),Ce[0]&480&&pe(Ae,"disabled",ue[8]>=100||ue[7]>=100||!ue[5]||ue[5]<=1||ue[6]<=1),(!st||Ce[0]&8192)&&It!==(It=ue[13]("editor.currentPity",{values:{rarity:4}})+"")&&J(pt,It),(!st||Ce[0]&1&&De!==(De=St.get(`pity4-${ue[0]}`))&&Ge.value!==De)&&(Ge.value=De),ue[0]!=="standard"?bt?bt.p(ue,Ce):(bt=On(ue),bt.c(),bt.m(n,at)):bt&&(bt.d(1),bt=null),(!st||Ce[0]&8192)&&Bt!==(Bt=ue[13]("editor.charRate")+"")&&J(Yt,Bt),ue[0]!=="standard"?zt?zt.p(ue,Ce):(zt=Cn(ue),zt.c(),zt.m(ht,_t)):zt&&(zt.d(1),zt=null),(!st||Ce[0]&4096&&Nt.value!==ue[12])&&(Nt.value=ue[12]),(!st||Ce[0]&1793&&xt!==(xt=ue[8]>=100&&ue[0]!=="standard"||ue[10]==="always"||ue[9]>=100))&&(Nt.disabled=xt),Ce[0]&1793&&pe(Ye,"disabled",ue[8]>=100&&ue[0]!=="standard"||ue[10]==="always"||ue[9]>=100),Ce[0]&1&&(ws=ue[0].match("weapon")),ws?Vt?Vt.p(ue,Ce):(Vt=Mn(ue),Vt.c(),Vt.m(n,es)):Vt&&(Vt.d(1),Vt=null),ue[0]!=="standard"?Tt?Tt.p(ue,Ce):(Tt=jn(ue),Tt.c(),Tt.m(n,null)):Tt&&(Tt.d(1),Tt=null);const Ns={};Ce[0]&8192|Ce[1]&32&&(Ns.$$scope={dirty:Ce,ctx:ue}),Pt.$set(Ns),(!st||Ce[0]&1&&ts!==(ts="editor "+ue[0]+" svelte-cbzzf0"))&&d(e,"class",ts),Ce[0]&3&&pe(e,"fullscreenEditor",ue[1])},i(ue){st||(N(Pt.$$.fragment,ue),N($t.$$.fragment,ue),os&&os.end(1),st=!0)},o(ue){M(Pt.$$.fragment,ue),M($t.$$.fragment,ue),ue&&(os=Ms(e,et,{})),st=!1},d(ue){ue&&h(e),bt&&bt.d(),zt&&zt.d(),Vt&&Vt.d(),Tt&&Tt.d(),ae(Pt),ae($t),ue&&os&&os.end(),ks=!1,ns(Bs)}}}function Au(l,e,t){let s,r,i,n,o,a,c,u,_,m,v;Z(l,ct,se=>t(13,v=se));let{type:p="character-event"}=e,{fullscreenEditor:k=!1}=e;const y=Re("editprob"),D=Re("showModalReset"),V=()=>{D(),Be()};let I=!1;const E=se=>{Es(p,"guaranteed",se),t(10,m=se),t(2,I=!1),Be("click2")},z=(se,x)=>{const ee=se.target.value,de=x.match("Rate4")?100-r:100,ze=parseFloat(ee)<de||!ee?ee:de;if(ee>=de&&(se.target.value=ze),Es(p,x,ze||0),x==="winRate")return t(9,n=ze);if(x==="baseRate4")return t(7,s=ze);if(x==="baseRate5"){if(t(8,r=ze),!(parseFloat(r)+parseFloat(s)>100))return;t(7,s=100-r),Es(p,"baseRate4",s)}},T=(se,x)=>{const ee=se.target.value;let de=1;if(x.match("max")){const X=ee<=1||!ee?1:ee;if(de=parseInt(X),se.target.value=de,x==="max5"){t(6,_=de);const $=c>=_-1?_-1:c;(c>=$||isNaN(de))&&(t(3,c=isNaN(de)?0:$),Es(p,"hard5",c||0))}if(x==="max4"){t(5,u=de);const $=a>=u-1?u-1:a;(a>=$||isNaN(de))&&(t(4,a=isNaN(de)?0:$),Es(p,"hard4",a||0))}}if(x.match("hard")){const $=((x==="hard5"?_:u)||0)-1;de=ee>=$?$:ee,ee>=$&&(se.target.value=de),x==="hard4"&&t(4,a=de),x==="hard5"&&t(3,c=de)}if(!x.match("now"))return Es(p,x,de||1);const ze=parseInt(ee);x==="now4"&&St.set(`pity4-${p}`,ze),x==="now5"&&St.set(`pity5-${p}`,ze)},R=se=>z(se,"baseRate5"),B=se=>T(se,"max5"),L=se=>T(se,"hard5"),j=se=>T(se,"now5"),U=se=>z(se,"baseRate4"),A=se=>T(se,"max4"),W=se=>T(se,"hard4"),Y=se=>T(se,"now4"),Q=se=>z(se,"winRate"),C=se=>z(se,"charRate"),q=se=>z(se,"selectedRate"),te=()=>{t(2,I=!I),Be("click2")},re=()=>E("default"),K=()=>E("always"),le=()=>E("never"),ce=()=>{y(),Be("modal")};return l.$$set=se=>{"type"in se&&t(0,p=se.type),"fullscreenEditor"in se&&t(1,k=se.fullscreenEditor)},l.$$.update=()=>{l.$$.dirty[0]&1&&t(7,s=kt(p,"baseRate4")),l.$$.dirty[0]&1&&t(8,r=kt(p,"baseRate5")),l.$$.dirty[0]&1&&t(12,i=kt(p,"charRate")),l.$$.dirty[0]&1&&t(9,n=kt(p,"winRate")),l.$$.dirty[0]&1&&t(11,o=kt(p,"selectedRate")),l.$$.dirty[0]&1&&t(4,a=kt(p,"hard4")),l.$$.dirty[0]&1&&t(3,c=kt(p,"hard5")),l.$$.dirty[0]&1&&t(5,u=kt(p,"max4")),l.$$.dirty[0]&1&&t(6,_=kt(p,"max5")),l.$$.dirty[0]&1&&t(10,m=kt(p,"guaranteed")||"default")},[p,k,I,c,a,u,_,s,r,n,m,o,i,v,y,V,E,z,T,R,B,L,j,U,A,W,Y,Q,C,q,te,re,K,le,ce]}class Ou extends Qe{constructor(e){super(),Je(this,e,Au,Lu,He,{type:0,fullscreenEditor:1},null,[-1,-1])}}function Wn(l){let e,t;return e=new Ou({props:{type:l[3],fullscreenEditor:l[1]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r&8&&(i.type=s[3]),r&2&&(i.fullscreenEditor=s[1]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Cu(l){let e,t,s,r,i;return e=new Ts({props:{isError:l[15],src:l[18][l[6]],alt:"Member Banner",wrapperClass:"card-image "+(l[15]?"skeleton":"")}}),r=new ta({props:{bannerName:l[6],character:l[5],textOffset:l[8]}}),{c(){ne(e.$$.fragment),t=P(),s=b("div"),ne(r.$$.fragment),this.h()},l(n){fe(e.$$.fragment,n),t=S(n),s=g(n,"DIV",{class:!0});var o=w(s);fe(r.$$.fragment,o),o.forEach(h),this.h()},h(){d(s,"class","frame svelte-xg8c82")},m(n,o){ie(e,n,o),O(n,t,o),O(n,s,o),ie(r,s,null),i=!0},p(n,o){const a={};o&32768&&(a.isError=n[15]),o&262208&&(a.src=n[18][n[6]]),o&32768&&(a.wrapperClass="card-image "+(n[15]?"skeleton":"")),e.$set(a);const c={};o&64&&(c.bannerName=n[6]),o&32&&(c.character=n[5]),o&256&&(c.textOffset=n[8]),r.$set(c)},i(n){i||(N(e.$$.fragment,n),N(r.$$.fragment,n),i=!0)},o(n){M(e.$$.fragment,n),M(r.$$.fragment,n),i=!1},d(n){ae(e,n),n&&h(t),n&&h(s),ae(r)}}}function Mu(l){let e,t,s,r,i;return e=new Ts({props:{isError:l[15],src:l[18][l[6]],alt:"Standard Banner",wrapperClass:"card-image "+(l[15]?"skeleton":"")}}),r=new Xc({props:{bannerName:l[6]}}),{c(){ne(e.$$.fragment),t=P(),s=b("div"),ne(r.$$.fragment),this.h()},l(n){fe(e.$$.fragment,n),t=S(n),s=g(n,"DIV",{class:!0});var o=w(s);fe(r.$$.fragment,o),o.forEach(h),this.h()},h(){d(s,"class","frame svelte-xg8c82")},m(n,o){ie(e,n,o),O(n,t,o),O(n,s,o),ie(r,s,null),i=!0},p(n,o){const a={};o&32768&&(a.isError=n[15]),o&262208&&(a.src=n[18][n[6]]),o&32768&&(a.wrapperClass="card-image "+(n[15]?"skeleton":"")),e.$set(a);const c={};o&64&&(c.bannerName=n[6]),r.$set(c)},i(n){i||(N(e.$$.fragment,n),N(r.$$.fragment,n),i=!0)},o(n){M(e.$$.fragment,n),M(r.$$.fragment,n),i=!1},d(n){ae(e,n),n&&h(t),n&&h(s),ae(r)}}}function ju(l){let e,t,s,r,i,n;e=new Ts({props:{isError:l[15],src:l[18][l[6]],alt:"Character Event Banner",wrapperClass:"card-image skeleton-event"}});let o=(!l[6]||l[15])&&qn(l);return i=new ta({props:{character:l[5],textOffset:l[8],bannerName:l[6],event2:l[0]===2}}),{c(){ne(e.$$.fragment),t=P(),o&&o.c(),s=P(),r=b("div"),ne(i.$$.fragment),this.h()},l(a){fe(e.$$.fragment,a),t=S(a),o&&o.l(a),s=S(a),r=g(a,"DIV",{class:!0});var c=w(r);fe(i.$$.fragment,c),c.forEach(h),this.h()},h(){d(r,"class","frame skeleton-event svelte-xg8c82")},m(a,c){ie(e,a,c),O(a,t,c),o&&o.m(a,c),O(a,s,c),O(a,r,c),ie(i,r,null),n=!0},p(a,c){const u={};c&32768&&(u.isError=a[15]),c&262208&&(u.src=a[18][a[6]]),e.$set(u),!a[6]||a[15]?o?(o.p(a,c),c&32832&&N(o,1)):(o=qn(a),o.c(),N(o,1),o.m(s.parentNode,s)):o&&(o.d(1),o=null);const _={};c&32&&(_.character=a[5]),c&256&&(_.textOffset=a[8]),c&64&&(_.bannerName=a[6]),c&1&&(_.event2=a[0]===2),i.$set(_)},i(a){n||(N(e.$$.fragment,a),N(o),N(i.$$.fragment,a),n=!0)},o(a){M(e.$$.fragment,a),M(i.$$.fragment,a),n=!1},d(a){ae(e,a),a&&h(t),o&&o.d(a),a&&h(s),a&&h(r),ae(i)}}}function Uu(l){let e,t,s,r,i;return e=new Ts({props:{isError:l[15],src:l[18][l[6]],alt:"Weapon Banner",wrapperClass:"card-image skeleton-event"}}),r=new Hc({props:{featured:l[4],rateup:l[7],textOffset:l[8]}}),{c(){ne(e.$$.fragment),t=P(),s=b("div"),ne(r.$$.fragment),this.h()},l(n){fe(e.$$.fragment,n),t=S(n),s=g(n,"DIV",{class:!0});var o=w(s);fe(r.$$.fragment,o),o.forEach(h),this.h()},h(){d(s,"class","frame skeleton-event svelte-xg8c82")},m(n,o){ie(e,n,o),O(n,t,o),O(n,s,o),ie(r,s,null),i=!0},p(n,o){const a={};o&32768&&(a.isError=n[15]),o&262208&&(a.src=n[18][n[6]]),e.$set(a);const c={};o&16&&(c.featured=n[4]),o&128&&(c.rateup=n[7]),o&256&&(c.textOffset=n[8]),r.$set(c)},i(n){i||(N(e.$$.fragment,n),N(r.$$.fragment,n),i=!0)},o(n){M(e.$$.fragment,n),M(r.$$.fragment,n),i=!1},d(n){ae(e,n),n&&h(t),n&&h(s),ae(r)}}}function Wu(l){let e,t,s,r,i;return e=new Ts({props:{src:l[18].beginner,isError:l[15],alt:"Weapon Banner",wrapperClass:"card-image skeleton"}}),r=new jc({props:{character:l[5]}}),{c(){ne(e.$$.fragment),t=P(),s=b("div"),ne(r.$$.fragment),this.h()},l(n){fe(e.$$.fragment,n),t=S(n),s=g(n,"DIV",{class:!0});var o=w(s);fe(r.$$.fragment,o),o.forEach(h),this.h()},h(){d(s,"class","frame skeleton svelte-xg8c82")},m(n,o){ie(e,n,o),O(n,t,o),O(n,s,o),ie(r,s,null),i=!0},p(n,o){const a={};o&262144&&(a.src=n[18].beginner),o&32768&&(a.isError=n[15]),e.$set(a);const c={};o&32&&(c.character=n[5]),r.$set(c)},i(n){i||(N(e.$$.fragment,n),N(r.$$.fragment,n),i=!0)},o(n){M(e.$$.fragment,n),M(r.$$.fragment,n),i=!1},d(n){ae(e,n),n&&h(t),n&&h(s),ae(r)}}}function qu(l){let e,t,s,r,i;return e=new Ts({props:{custom:!0,src:l[11]?.artURL,alt:l[6],wrapperClass:"card-image skeleton",artPosition:l[12],vision:l[10]}}),r=new sa({props:{bannerName:l[6],character:l[5],charTitle:l[9],vision:l[10],watermark:l[16]}}),{c(){ne(e.$$.fragment),t=P(),s=b("div"),ne(r.$$.fragment),this.h()},l(n){fe(e.$$.fragment,n),t=S(n),s=g(n,"DIV",{class:!0});var o=w(s);fe(r.$$.fragment,o),o.forEach(h),this.h()},h(){d(s,"class","frame skeleton svelte-xg8c82")},m(n,o){ie(e,n,o),O(n,t,o),O(n,s,o),ie(r,s,null),i=!0},p(n,o){const a={};o&2048&&(a.src=n[11]?.artURL),o&64&&(a.alt=n[6]),o&4096&&(a.artPosition=n[12]),o&1024&&(a.vision=n[10]),e.$set(a);const c={};o&64&&(c.bannerName=n[6]),o&32&&(c.character=n[5]),o&512&&(c.charTitle=n[9]),o&1024&&(c.vision=n[10]),o&65536&&(c.watermark=n[16]),r.$set(c)},i(n){i||(N(e.$$.fragment,n),N(r.$$.fragment,n),i=!0)},o(n){M(e.$$.fragment,n),M(r.$$.fragment,n),i=!1},d(n){ae(e,n),n&&h(t),n&&h(s),ae(r)}}}function qn(l){let e,t,s,r,i,n;return{c(){e=b("div"),t=b("img"),this.h()},l(o){e=g(o,"DIV",{class:!0});var a=w(e);t=g(a,"IMG",{class:!0,src:!0,alt:!0,crossorigin:!0}),a.forEach(h),this.h()},h(){d(t,"class","splash-art svelte-xg8c82"),je(t.src,s=l[18][`splash-art/${l[5]}`])||d(t,"src",s),d(t,"alt","character"),d(t,"crossorigin","anonymous"),d(e,"class","character svelte-xg8c82")},m(o,a){O(o,e,a),f(e,t),i||(n=ge(t,"error",Hu),i=!0)},p(o,a){a&262176&&!je(t.src,s=o[18][`splash-art/${o[5]}`])&&d(t,"src",s)},i(o){r||Pe(()=>{r=Ke(e,lt,{x:20,duration:850}),r.start()})},o:we,d(o){o&&h(e),i=!1,n()}}}function $n(l){let e,t,s,r;return{c(){e=b("button"),t=b("i"),this.h()},l(i){e=g(i,"BUTTON",{class:!0});var n=w(e);t=g(n,"I",{class:!0}),w(t).forEach(h),n.forEach(h),this.h()},h(){d(t,"class","gi-gear"),d(e,"class","gear svelte-xg8c82")},m(i,n){O(i,e,n),f(e,t),s||(r=ge(e,"click",l[20]),s=!0)},p:we,d(i){i&&h(e),s=!1,r()}}}function $u(l){let e,t,s,r,i,n,o,a,c,u=l[19]("details.text")+"",_,m,v,p,k,y,D=l[2]&&Wn(l);const V=[qu,Wu,Uu,ju,Mu,Cu],I=[];function E(T,R){return T[17]?0:T[3]==="beginner"?1:T[3]==="weapon-event"?2:T[3]==="character-event"?3:T[3]==="standard"?4:T[3]==="member"?5:-1}~(i=E(l))&&(n=I[i]=V[i](l));let z=l[3]!=="beginner"&&$n(l);return{c(){e=b("div"),t=b("div"),D&&D.c(),s=P(),r=b("div"),n&&n.c(),o=P(),a=b("div"),c=b("button"),_=H(u),m=P(),z&&z.c(),this.h()},l(T){e=g(T,"DIV",{class:!0,style:!0});var R=w(e);t=g(R,"DIV",{class:!0});var B=w(t);D&&D.l(B),B.forEach(h),s=S(R),r=g(R,"DIV",{class:!0});var L=w(r);n&&n.l(L),o=S(L),a=g(L,"DIV",{class:!0});var j=w(a);c=g(j,"BUTTON",{class:!0});var U=w(c);_=F(U,u),U.forEach(h),m=S(j),z&&z.l(j),j.forEach(h),L.forEach(h),R.forEach(h),this.h()},h(){d(t,"class","back svelte-xg8c82"),d(c,"class","detail svelte-xg8c82"),d(a,"class","info svelte-xg8c82"),d(r,"class","front svelte-xg8c82"),d(e,"class","card svelte-xg8c82"),_e(e,"--content-width",l[13]+"px"),_e(e,"--content-height",l[14]+"px"),Pe(()=>l[23].call(e)),pe(e,"editor",l[2]),pe(e,"fullscreenEditor",l[1])},m(T,R){O(T,e,R),f(e,t),D&&D.m(t,null),f(e,s),f(e,r),~i&&I[i].m(r,null),f(r,o),f(r,a),f(a,c),f(c,_),f(a,m),z&&z.m(a,null),v=rs(e,l[23].bind(e)),p=!0,k||(y=[ge(t,"mousedown",tr(l[20])),ge(c,"click",l[21])],k=!0)},p(T,[R]){T[2]?D?(D.p(T,R),R&4&&N(D,1)):(D=Wn(T),D.c(),N(D,1),D.m(t,null)):D&&(Ee(),M(D,1,1,()=>{D=null}),ye());let B=i;i=E(T),i===B?~i&&I[i].p(T,R):(n&&(Ee(),M(I[B],1,1,()=>{I[B]=null}),ye()),~i?(n=I[i],n?n.p(T,R):(n=I[i]=V[i](T),n.c()),N(n,1),n.m(r,o)):n=null),(!p||R&524288)&&u!==(u=T[19]("details.text")+"")&&J(_,u),T[3]!=="beginner"?z?z.p(T,R):(z=$n(T),z.c(),z.m(a,null)):z&&(z.d(1),z=null),(!p||R&8192)&&_e(e,"--content-width",T[13]+"px"),(!p||R&16384)&&_e(e,"--content-height",T[14]+"px"),R&4&&pe(e,"editor",T[2]),R&2&&pe(e,"fullscreenEditor",T[1])},i(T){p||(N(D),N(n),p=!0)},o(T){M(D),M(n),p=!1},d(T){T&&h(e),D&&D.d(),~i&&I[i].d(),z&&z.d(),v(),k=!1,ns(y)}}}const Hu=l=>l.target.remove();function Fu(l,e,t){let s,r,i,n;Z(l,Hs,A=>t(17,r=A)),Z(l,wt,A=>t(18,i=A)),Z(l,ct,A=>t(19,n=A));let{data:o={}}=e,{index:a=-1}=e,{fullscreenEditor:c=!1}=e,{editor:u=!1}=e,_,m,v,p,k,y,D,V,I,E,z,T,R=!1;Fe("imageError",()=>t(15,R=!0));const B=Re("editprob"),L=Re("navigate"),j=()=>(L("details"),Be());function U(){z=this.clientWidth,T=this.clientHeight,t(13,z),t(14,T)}return l.$$set=A=>{"data"in A&&t(22,o=A.data),"index"in A&&t(0,a=A.index),"fullscreenEditor"in A&&t(1,c=A.fullscreenEditor),"editor"in A&&t(2,u=A.editor)},l.$$.update=()=>{l.$$.dirty&4194304&&t(3,{type:_,featured:m,character:v,bannerName:p,rateup:k,textOffset:y,charTitle:D,vision:V,images:I,artPosition:E,watermark:s}=o,_,(t(4,m),t(22,o)),(t(5,v),t(22,o)),(t(6,p),t(22,o)),(t(7,k),t(22,o)),(t(8,y),t(22,o)),(t(9,D),t(22,o)),(t(10,V),t(22,o)),(t(11,I),t(22,o)),(t(12,E),t(22,o)),(t(16,s),t(22,o)))},[a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,s,r,i,n,B,j,o,U]}class Yu extends Qe{constructor(e){super(),Je(this,e,Fu,$u,He,{data:22,index:0,fullscreenEditor:1,editor:2})}}function Xu(l){let e,t;return{c(){e=b("img"),this.h()},l(s){e=g(s,"IMG",{class:!0,src:!0,alt:!0,crossorigin:!0}),this.h()},h(){d(e,"class","placeholder svelte-1q3ualb"),je(e.src,t=l[3]["face-placeholder.webp"])||d(e,"src",t),d(e,"alt","face placeholder"),d(e,"crossorigin","anonymous")},m(s,r){O(s,e,r)},p(s,r){r&8&&!je(e.src,t=s[3]["face-placeholder.webp"])&&d(e,"src",t)},d(s){s&&h(e)}}}function Gu(l){let e,t;return{c(){e=b("img"),this.h()},l(s){e=g(s,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),this.h()},h(){je(e.src,t=l[1])||d(e,"src",t),d(e,"alt","Face"),d(e,"crossorigin","anonymous"),d(e,"class","svelte-1q3ualb")},m(s,r){O(s,e,r)},p(s,r){r&2&&!je(e.src,t=s[1])&&d(e,"src",t)},d(s){s&&h(e)}}}function Ku(l){let e,t,s,r,i,n,o,a=l[2]("customBanner.faceIcon")+"",c,u,_,m,v,p,k,y,D,V=l[2]("customBanner.editInfo")+"",I,E,z,T,R,B,L,j=l[2]("customBanner.adjustSplashArt")+"",U,A,W;function Y(q,te){return q[1]?Gu:Xu}let Q=Y(l),C=Q(l);return{c(){e=b("div"),t=b("div"),s=b("label"),r=b("div"),i=b("i"),n=P(),o=b("span"),c=H(a),u=P(),C.c(),_=P(),m=b("input"),v=P(),p=b("div"),k=b("button"),y=b("i"),D=P(),I=H(V),E=P(),z=b("br"),T=P(),R=b("button"),B=b("i"),L=P(),U=H(j),this.h()},l(q){e=g(q,"DIV",{class:!0});var te=w(e);t=g(te,"DIV",{class:!0});var re=w(t);s=g(re,"LABEL",{class:!0,for:!0});var K=w(s);r=g(K,"DIV",{class:!0});var le=w(r);i=g(le,"I",{class:!0}),w(i).forEach(h),n=S(le),o=g(le,"SPAN",{class:!0});var ce=w(o);c=F(ce,a),ce.forEach(h),le.forEach(h),u=S(K),C.l(K),K.forEach(h),_=S(re),m=g(re,"INPUT",{class:!0,type:!0,id:!0,accept:!0}),re.forEach(h),v=S(te),p=g(te,"DIV",{class:!0});var se=w(p);k=g(se,"BUTTON",{class:!0});var x=w(k);y=g(x,"I",{class:!0}),w(y).forEach(h),D=S(x),I=F(x,V),x.forEach(h),E=S(se),z=g(se,"BR",{}),T=S(se),R=g(se,"BUTTON",{class:!0});var ee=w(R);B=g(ee,"I",{class:!0}),w(B).forEach(h),L=S(ee),U=F(ee,j),ee.forEach(h),se.forEach(h),te.forEach(h),this.h()},h(){d(i,"class","gi-picture svelte-1q3ualb"),d(o,"class","svelte-1q3ualb"),d(r,"class","overlay svelte-1q3ualb"),d(s,"class","face svelte-1q3ualb"),d(s,"for","faceInput"),d(m,"class","inputFile svelte-1q3ualb"),d(m,"type","file"),d(m,"id","faceInput"),d(m,"accept",aa),d(t,"class","pic"),d(y,"class","gi-pen"),d(k,"class","detail svelte-1q3ualb"),d(B,"class","gi-pen"),d(R,"class","splashart svelte-1q3ualb"),d(p,"class","customize svelte-1q3ualb"),d(e,"class","info svelte-1q3ualb"),pe(e,"onBannerEdit",l[0])},m(q,te){O(q,e,te),f(e,t),f(t,s),f(s,r),f(r,i),f(r,n),f(r,o),f(o,c),f(s,u),C.m(s,null),f(t,_),f(t,m),f(e,v),f(e,p),f(p,k),f(k,y),f(k,D),f(k,I),f(p,E),f(p,z),f(p,T),f(p,R),f(R,B),f(R,L),f(R,U),A||(W=[ge(s,"mousedown",l[7]),ge(m,"change",l[6]),ge(k,"click",l[4]),ge(R,"click",l[5])],A=!0)},p(q,[te]){te&4&&a!==(a=q[2]("customBanner.faceIcon")+"")&&J(c,a),Q===(Q=Y(q))&&C?C.p(q,te):(C.d(1),C=Q(q),C&&(C.c(),C.m(s,null))),te&4&&V!==(V=q[2]("customBanner.editInfo")+"")&&J(I,V),te&4&&j!==(j=q[2]("customBanner.adjustSplashArt")+"")&&J(U,j),te&1&&pe(e,"onBannerEdit",q[0])},i:we,o:we,d(q){q&&h(e),C.d(),A=!1,ns(W)}}}const aa="image/png, image/webp, image/jpeg";function Qu(l,e,t){let s,r;Z(l,ct,p=>t(2,s=p)),Z(l,wt,p=>t(3,r=p));let{onBannerEdit:i=!1}=e,{faceURL:n=""}=e;const o=Re("editInfo"),a=Re("changeFace"),c=Re("editSplashArt"),u=()=>{o(!0),Be("modal")},_=()=>{c(!0),Be()},m=p=>{try{const k=p.target.files[0];if(!aa.match(k.type)){const I=s("customBanner.notAnImage");throw Jt({message:I}),new Error(I)}const D=k.size,V=1024*1024*2;if(D>V){const I=s("customBanner.imageTooLarge",{values:{maxSize:"2MB"}});throw Jt({message:I,timeout:5e3}),new Error(I)}a(k)}catch(k){console.error(k)}},v=()=>Be();return l.$$set=p=>{"onBannerEdit"in p&&t(0,i=p.onBannerEdit),"faceURL"in p&&t(1,n=p.faceURL)},[i,n,s,r,u,_,m,v]}class Ju extends Qe{constructor(e){super(),Je(this,e,Qu,Ku,He,{onBannerEdit:0,faceURL:1})}}function Hn(l){let e,t,s,r,i=l[2]("customBanner.changeSplashArt")+"",n,o,a,c,u,_,m,v=l[2]("customBanner.move")+"",p,k,y,D,V;return{c(){e=b("label"),t=b("i"),s=P(),r=b("span"),n=H(i),a=P(),c=b("button"),u=b("i"),_=P(),m=b("span"),p=H(v),this.h()},l(I){e=g(I,"LABEL",{class:!0,for:!0});var E=w(e);t=g(E,"I",{class:!0}),w(t).forEach(h),s=S(E),r=g(E,"SPAN",{});var z=w(r);n=F(z,i),z.forEach(h),E.forEach(h),a=S(I),c=g(I,"BUTTON",{class:!0});var T=w(c);u=g(T,"I",{class:!0}),w(u).forEach(h),_=S(T),m=g(T,"SPAN",{});var R=w(m);p=F(R,v),R.forEach(h),T.forEach(h),this.h()},h(){d(t,"class","gi-picture svelte-nxdi6f"),d(e,"class","mainart button svelte-nxdi6f"),d(e,"for","uploadFile"),d(u,"class","gi-move svelte-nxdi6f"),d(c,"class","button move svelte-nxdi6f")},m(I,E){O(I,e,E),f(e,t),f(e,s),f(e,r),f(r,n),O(I,a,E),O(I,c,E),f(c,u),f(c,_),f(c,m),f(m,p),y=!0,D||(V=ge(c,"click",l[4]),D=!0)},p(I,E){(!y||E&4)&&i!==(i=I[2]("customBanner.changeSplashArt")+"")&&J(n,i),(!y||E&4)&&v!==(v=I[2]("customBanner.move")+"")&&J(p,v)},i(I){y||(I&&Pe(()=>{o||(o=ot(e,et,{},!0)),o.run(1)}),I&&Pe(()=>{k||(k=ot(c,et,{},!0)),k.run(1)}),y=!0)},o(I){I&&(o||(o=ot(e,et,{},!1)),o.run(0)),I&&(k||(k=ot(c,et,{},!1)),k.run(0)),y=!1},d(I){I&&h(e),I&&o&&o.end(),I&&h(a),I&&h(c),I&&k&&k.end(),D=!1,V()}}}function Fn(l){let e,t,s,r,i,n=l[2]("customBanner.dropHere")+"",o;return{c(){e=b("div"),t=b("div"),s=b("i"),r=P(),i=b("span"),o=H(n),this.h()},l(a){e=g(a,"DIV",{class:!0});var c=w(e);t=g(c,"DIV",{class:!0});var u=w(t);s=g(u,"I",{class:!0}),w(s).forEach(h),r=S(u),i=g(u,"SPAN",{});var _=w(i);o=F(_,n),_.forEach(h),u.forEach(h),c.forEach(h),this.h()},h(){d(s,"class","gi-picture svelte-nxdi6f"),d(t,"class","drop button svelte-nxdi6f"),d(e,"class","drophere svelte-nxdi6f")},m(a,c){O(a,e,c),f(e,t),f(t,s),f(t,r),f(t,i),f(i,o)},p(a,c){c&4&&n!==(n=a[2]("customBanner.dropHere")+"")&&J(o,n)},d(a){a&&h(e)}}}function Zu(l){let e,t,s,r,i,n,o,a=!l[1]&&Hn(l),c=l[1]&&Fn(l);return{c(){e=b("div"),t=b("div"),a&&a.c(),s=P(),c&&c.c(),r=P(),i=b("input"),this.h()},l(u){e=g(u,"DIV",{class:!0});var _=w(e);t=g(_,"DIV",{class:!0});var m=w(t);a&&a.l(m),m.forEach(h),s=S(_),c&&c.l(_),r=S(_),i=g(_,"INPUT",{class:!0,type:!0,id:!0,accept:!0}),_.forEach(h),this.h()},h(){d(t,"class","wrapper svelte-nxdi6f"),d(i,"class","inputFile svelte-nxdi6f"),d(i,"type","file"),d(i,"id","uploadFile"),d(i,"accept",oa),d(e,"class","hoverable svelte-nxdi6f"),pe(e,"isMobile",l[3]),pe(e,"onBannerEdit",l[0]),pe(e,"onDrag",l[1])},m(u,_){O(u,e,_),f(e,t),a&&a.m(t,null),f(e,s),c&&c.m(e,null),f(e,r),f(e,i),n||(o=[ge(i,"change",l[5]),ge(i,"dragleave",l[6]),ge(i,"drop",l[7]),ge(e,"dragenter",l[8])],n=!0)},p(u,[_]){u[1]?a&&(Ee(),M(a,1,1,()=>{a=null}),ye()):a?(a.p(u,_),_&2&&N(a,1)):(a=Hn(u),a.c(),N(a,1),a.m(t,null)),u[1]?c?c.p(u,_):(c=Fn(u),c.c(),c.m(e,r)):c&&(c.d(1),c=null),_&8&&pe(e,"isMobile",u[3]),_&1&&pe(e,"onBannerEdit",u[0]),_&2&&pe(e,"onDrag",u[1])},i(u){N(a)},o(u){M(a)},d(u){u&&h(e),a&&a.d(),c&&c.d(),n=!1,ns(o)}}}const oa="image/png, image/webp, image/jpeg";function xu(l,e,t){let s,r;Z(l,ct,v=>t(2,s=v)),Z(l,Vl,v=>t(3,r=v));let{onBannerEdit:i=!1}=e,n=!1;const o=Re("editBanner"),a=Re("changeArt"),c=v=>{try{const p=v.target.files[0];if(!oa.match(p.type)){const V=s("customBanner.notAnImage");throw Jt({message:V}),new Error(V)}const y=p.size,D=1024*1024*2;if(y>D){const V=s("customBanner.imageTooLarge",{values:{maxSize:"2MB"}});throw Jt({message:V,timeout:5e3}),new Error(V)}a(p)}catch(p){console.error(p)}},u=()=>t(1,n=!1),_=()=>t(1,n=!1),m=()=>t(1,n=!0);return l.$$set=v=>{"onBannerEdit"in v&&t(0,i=v.onBannerEdit)},[i,n,s,r,o,c,u,_,m]}class ef extends Qe{constructor(e){super(),Je(this,e,xu,Zu,He,{onBannerEdit:0})}}function Yn(l,e,t){const s=l.slice();s[5]=e[t];const r=s[0]===s[5];return s[6]=r,s}function Xn(l){let e,t,s,r,i,n,o;function a(){return l[3](l[5])}return{c(){e=b("button"),t=b("i"),r=P(),this.h()},l(c){e=g(c,"BUTTON",{class:!0});var u=w(e);t=g(u,"I",{class:!0}),w(t).forEach(h),r=S(u),u.forEach(h),this.h()},h(){d(t,"class",s="gi-"+l[5]+" "+(l[6]?"":`${l[5]}-flat`)+" svelte-1dh2206"),d(e,"class",i=js(l[6]?`bg-${l[5]}`:"")+" svelte-1dh2206"),pe(e,"active",l[6])},m(c,u){O(c,e,u),f(e,t),f(e,r),n||(o=ge(e,"click",a),n=!0)},p(c,u){l=c,u&1&&s!==(s="gi-"+l[5]+" "+(l[6]?"":`${l[5]}-flat`)+" svelte-1dh2206")&&d(t,"class",s),u&1&&i!==(i=js(l[6]?`bg-${l[5]}`:"")+" svelte-1dh2206")&&d(e,"class",i),u&3&&pe(e,"active",l[6])},d(c){c&&h(e),n=!1,o()}}}function tf(l){let e,t=l[1],s=[];for(let r=0;r<t.length;r+=1)s[r]=Xn(Yn(l,t,r));return{c(){e=b("div");for(let r=0;r<s.length;r+=1)s[r].c();this.h()},l(r){e=g(r,"DIV",{class:!0});var i=w(e);for(let n=0;n<s.length;n+=1)s[n].l(i);i.forEach(h),this.h()},h(){d(e,"class","vision-picker svelte-1dh2206")},m(r,i){O(r,e,i);for(let n=0;n<s.length;n+=1)s[n].m(e,null)},p(r,[i]){if(i&7){t=r[1];let n;for(n=0;n<t.length;n+=1){const o=Yn(r,t,n);s[n]?s[n].p(o,i):(s[n]=Xn(o),s[n].c(),s[n].m(e,null))}for(;n<s.length;n+=1)s[n].d(1);s.length=t.length}},i:we,o:we,d(r){r&&h(e),Ut(s,r)}}}function sf(l,e,t){let{selected:s=""}=e;const r=["pyro","hydro","anemo","electro","dendro","cryo","geo"],i=Re("setVision"),n=a=>{s!==a&&(i(a),Be("click2"))},o=a=>n(a);return l.$$set=a=>{"selected"in a&&t(0,s=a.selected)},[s,r,n,o]}class lf extends Qe{constructor(e){super(),Je(this,e,sf,tf,He,{selected:0})}}function rf(l,e,t){const s=l.slice();return s[19]=e[t],s}function nf(l){const e=l.slice(),t=e[0]?e[1]:null;return e[22]=t,e}function af(l){let e;return{c(){e=b("div"),this.h()},l(t){e=g(t,"DIV",{class:!0}),w(e).forEach(h),this.h()},h(){d(e,"class","overlay svelte-brfwbj")},m(t,s){O(t,e,s)},d(t){t&&h(e)}}}function of(l){let e,t,s,r;return{c(){e=b("img"),this.h()},l(i){e=g(i,"IMG",{loading:!0,crossorigin:!0,src:!0,alt:!0,class:!0}),this.h()},h(){d(e,"loading","lazy"),d(e,"crossorigin","anonymous"),je(e.src,t=l[4][l[7]])||d(e,"src",t),d(e,"alt",l[8]),d(e,"class",js(l[10])+" svelte-brfwbj")},m(i,n){O(i,e,n),s||(r=ge(e,"error",hf),s=!0)},p(i,n){n&16&&!je(e.src,t=i[4][i[7]])&&d(e,"src",t)},d(i){i&&h(e),s=!1,r()}}}function Gn(l){let e=l[1],t,s,r=Kn(l);return{c(){r.c(),t=P(),s=b("span"),this.h()},l(i){r.l(i),t=S(i),s=g(i,"SPAN",{class:!0}),w(s).forEach(h),this.h()},h(){d(s,"class","gi-"+l[9]+" "+l[9]+" icon-gradient element svelte-brfwbj")},m(i,n){r.m(i,n),O(i,t,n),O(i,s,n)},p(i,n){n&2&&He(e,e=i[1])?(r.d(1),r=Kn(i),r.c(),r.m(t.parentNode,t)):r.p(i,n)},d(i){r.d(i),i&&h(t),i&&h(s)}}}function cf(l){let e,t,s,r,i,n,o;return{c(){e=b("img"),r=P(),i=b("span"),this.h()},l(a){e=g(a,"IMG",{"data-placeholder":!0,alt:!0,crossorigin:!0,class:!0}),r=S(a),i=g(a,"SPAN",{class:!0}),w(i).forEach(h),this.h()},h(){d(e,"data-placeholder",t=l[4]["face-placeholder.webp"]),d(e,"alt",l[8]),d(e,"crossorigin","anonymous"),d(e,"class","svelte-brfwbj"),d(i,"class","gi-"+l[9]+" "+l[9]+" icon-gradient element svelte-brfwbj")},m(a,c){O(a,e,c),O(a,r,c),O(a,i,c),n||(o=sr(s=ur.call(null,e,l[2]?.faceURL)),n=!0)},p(a,c){c&16&&t!==(t=a[4]["face-placeholder.webp"])&&d(e,"data-placeholder",t),s&&lr(s.update)&&c&4&&s.update.call(null,a[2]?.faceURL)},d(a){a&&h(e),a&&h(r),a&&h(i),n=!1,o()}}}function Kn(l){let e,t,s,r,i;return{c(){e=b("img"),this.h()},l(n){e=g(n,"IMG",{"data-placeholder":!0,alt:!0,crossorigin:!0,class:!0}),this.h()},h(){d(e,"data-placeholder",t=l[4]["face-placeholder.webp"]),d(e,"alt",l[8]),d(e,"crossorigin","anonymous"),d(e,"class","svelte-brfwbj")},m(n,o){O(n,e,o),r||(i=sr(s=ur.call(null,e,l[4][`face/${l[0]?l[22]:l[7]}`])),r=!0)},p(n,o){l=n,o&16&&t!==(t=l[4]["face-placeholder.webp"])&&d(e,"data-placeholder",t),s&&lr(s.update)&&o&19&&s.update.call(null,l[4][`face/${l[0]?l[22]:l[7]}`])},d(n){n&&h(e),r=!1,i()}}}function uf(l){let e,t;return{c(){e=b("span"),t=H(l[3]),this.h()},l(s){e=g(s,"SPAN",{class:!0});var r=w(e);t=F(r,l[3]),r.forEach(h),this.h()},h(){d(e,"class","qty svelte-brfwbj")},m(s,r){O(s,e,r),f(e,t)},p(s,r){r&8&&J(t,s[3])},d(s){s&&h(e)}}}function ff(l){let e;return{c(){e=b("i"),this.h()},l(t){e=g(t,"I",{class:!0}),w(e).forEach(h),this.h()},h(){d(e,"class","gi-star svelte-brfwbj")},m(t,s){O(t,e,s)},p:we,d(t){t&&h(e)}}}function df(l){let e,t,s,r,i,n,o,a,c,u,_,m,v=!l[12]&&af();function p(z,T){return z[13]?cf:z[6]==="character"?Gn:of}function k(z,T){return T===Gn?nf(z):z}let y=p(l),D=y(k(l,y)),V=l[11]>1&&uf(l),I=Array(l[5]),E=[];for(let z=0;z<I.length;z+=1)E[z]=ff(rf(l,I,z));return{c(){e=b("div"),v&&v.c(),t=P(),s=b("picture"),D.c(),r=P(),V&&V.c(),i=P(),n=b("div"),o=b("div");for(let z=0;z<E.length;z+=1)E[z].c();a=P(),c=b("span"),u=H(l[8]),this.h()},l(z){e=g(z,"DIV",{class:!0});var T=w(e);v&&v.l(T),t=S(T),s=g(T,"PICTURE",{class:!0,style:!0});var R=w(s);D.l(R),r=S(R),V&&V.l(R),R.forEach(h),i=S(T),n=g(T,"DIV",{class:!0});var B=w(n);o=g(B,"DIV",{class:!0});var L=w(o);for(let U=0;U<E.length;U+=1)E[U].l(L);L.forEach(h),a=S(B),c=g(B,"SPAN",{class:!0});var j=w(c);u=F(j,l[8]),j.forEach(h),B.forEach(h),T.forEach(h),this.h()},h(){d(s,"class","star"+l[5]+" "+l[6]+" svelte-brfwbj"),_e(s,"background-image","url('"+l[14]+"')"),d(o,"class","star svelte-brfwbj"),d(c,"class","svelte-brfwbj"),d(n,"class","caption svelte-brfwbj"),d(e,"class","content svelte-brfwbj"),pe(e,"owned",l[12])},m(z,T){O(z,e,T),v&&v.m(e,null),f(e,t),f(e,s),D.m(s,null),f(s,r),V&&V.m(s,null),f(e,i),f(e,n),f(n,o);for(let R=0;R<E.length;R+=1)E[R].m(o,null);f(n,a),f(n,c),f(c,u),_||(m=ge(e,"mousedown",l[15]),_=!0)},p(z,[T]){D.p(k(z,y),T),z[11]>1&&V.p(z,T)},i:we,o:we,d(z){z&&h(e),v&&v.d(),D.d(),V&&V.d(),Ut(E,z),_=!1,m()}}}const hf=l=>l.target.remove();function mf(l,e,t){let s;Z(l,wt,T=>t(4,s=T));let{itemdata:r={}}=e;const{rarity:i=3,type:n="character",itemID:o=0,name:a="",localName:c="",vision:u="",weaponType:_="",qty:m=0,isOwned:v=!0,custom:p=!1}=r;let k,y,D;const V=p?s[`${i}star-special.webp`]:s[`${i}star-bg.webp`];let I=`R${m>5?`5 + ${m-5}`:m}`;n==="character"&&(I=`C${m>7?`6 + ${m-7}`:m-1}`);const E=Re("showDetail"),z=()=>{!E||E(o)};return l.$$set=T=>{"itemdata"in T&&t(16,r=T.itemdata)},l.$$.update=()=>{l.$$.dirty&65536&&t(0,{useOutfit:k=!1,outfitName:y="",images:D={}}=r,k,(t(1,y),t(16,r)),(t(2,D),t(16,r)))},[k,y,D,I,s,i,n,a,c,u,_,m,v,p,V,z,r]}class Sl extends Qe{constructor(e){super(),Je(this,e,mf,df,He,{itemdata:16})}}const ca=l=>Ji.data.filter(({rarity:e})=>e===l).map(e=>(e.type="character",e));ca(4).filter(({name:l})=>!Ji.onlyStandard.includes(l));function Qn(l,e,t){const s=l.slice();return s[7]=e[t],s}function Jn(l){let e,t,s,r,i,n;t=new Sl({props:{itemdata:{...l[7],localName:l[1](`${l[7].name}.name`)}}});function o(){return l[5](l[7])}return{c(){e=b("button"),ne(t.$$.fragment),s=P(),this.h()},l(a){e=g(a,"BUTTON",{class:!0});var c=w(e);fe(t.$$.fragment,c),s=S(c),c.forEach(h),this.h()},h(){d(e,"class","item svelte-1eit2lp")},m(a,c){O(a,e,c),ie(t,e,null),f(e,s),r=!0,i||(n=ge(e,"click",o),i=!0)},p(a,c){l=a;const u={};c&2&&(u.itemdata={...l[7],localName:l[1](`${l[7].name}.name`)}),t.$set(u)},i(a){r||(N(t.$$.fragment,a),r=!0)},o(a){M(t.$$.fragment,a),r=!1},d(a){a&&h(e),ae(t),i=!1,n()}}}function _f(l){let e,t,s,r,i=l[2],n=[];for(let a=0;a<i.length;a+=1)n[a]=Jn(Qn(l,i,a));const o=a=>M(n[a],1,1,()=>{n[a]=null});return{c(){e=b("div"),t=b("div");for(let a=0;a<n.length;a+=1)n[a].c();this.h()},l(a){e=g(a,"DIV",{class:!0});var c=w(e);t=g(c,"DIV",{class:!0});var u=w(t);for(let _=0;_<n.length;_+=1)n[_].l(u);u.forEach(h),c.forEach(h),this.h()},h(){d(t,"class","row svelte-1eit2lp"),d(e,"class","picker svelte-1eit2lp")},m(a,c){O(a,e,c),f(e,t);for(let u=0;u<n.length;u+=1)n[u].m(t,null);r=!0},p(a,[c]){if(l=a,c&14){i=l[2];let u;for(u=0;u<i.length;u+=1){const _=Qn(l,i,u);n[u]?(n[u].p(_,c),N(n[u],1)):(n[u]=Jn(_),n[u].c(),N(n[u],1),n[u].m(t,null))}for(Ee(),u=i.length;u<n.length;u+=1)o(u);ye()}},i(a){if(!r){for(let c=0;c<i.length;c+=1)N(n[c]);Pe(()=>{s||(s=ot(e,lt,{y:l[0],duration:250},!0)),s.run(1)}),r=!0}},o(a){n=n.filter(Boolean);for(let c=0;c<n.length;c+=1)M(n[c]);s||(s=ot(e,lt,{y:l[0],duration:250},!1)),s.run(0),r=!1},d(a){a&&h(e),Ut(n,a),a&&s&&s.end()}}}function vf(l,e,t){let s,r;Z(l,Fs,u=>t(0,s=u)),Z(l,ct,u=>t(1,r=u));let{exclude:i=[]}=e;const n=ca(4).filter(({name:u})=>!i.includes(u)),o=Re("selectChar"),a=u=>{o(u),Be("click2")},c=u=>a(u.name);return l.$$set=u=>{"exclude"in u&&t(4,i=u.exclude)},[s,r,n,a,i,c]}class pf extends Qe{constructor(e){super(),Je(this,e,vf,_f,He,{exclude:4})}}function bf(l){let e=l[1]("customBanner.generateImage")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r&2&&e!==(e=s[1]("customBanner.generateImage")+"")&&J(t,e)},d(s){s&&h(t)}}}function Zn(l){let e,t;return{c(){e=b("img"),this.h()},l(s){e=g(s,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),this.h()},h(){je(e.src,t=l[0])||d(e,"src",t),d(e,"alt","Preview Banner"),d(e,"crossorigin","anonymous"),d(e,"class","svelte-17c1xc4")},m(s,r){O(s,e,r)},p(s,r){r&1&&!je(e.src,t=s[0])&&d(e,"src",t)},d(s){s&&h(e)}}}function gf(l){let e,t,s=l[1]("customBanner.preview")+"",r,i,n,o,a,c;n=new Os({props:{$$slots:{default:[bf]},$$scope:{ctx:l}}}),n.$on("click",l[2]);let u=l[0]&&Zn(l);return{c(){e=b("div"),t=b("label"),r=H(s),i=P(),ne(n.$$.fragment),o=P(),a=b("div"),u&&u.c(),this.h()},l(_){e=g(_,"DIV",{class:!0});var m=w(e);t=g(m,"LABEL",{for:!0});var v=w(t);r=F(v,s),v.forEach(h),i=S(m),fe(n.$$.fragment,m),m.forEach(h),o=S(_),a=g(_,"DIV",{class:!0});var p=w(a);u&&u.l(p),p.forEach(h),this.h()},h(){d(t,"for","bannerdesign"),d(e,"class","row svelte-17c1xc4"),d(a,"class","row svelte-17c1xc4")},m(_,m){O(_,e,m),f(e,t),f(t,r),f(e,i),ie(n,e,null),O(_,o,m),O(_,a,m),u&&u.m(a,null),c=!0},p(_,[m]){(!c||m&2)&&s!==(s=_[1]("customBanner.preview")+"")&&J(r,s);const v={};m&34&&(v.$$scope={dirty:m,ctx:_}),n.$set(v),_[0]?u?u.p(_,m):(u=Zn(_),u.c(),u.m(a,null)):u&&(u.d(1),u=null)},i(_){c||(N(n.$$.fragment,_),c=!0)},o(_){M(n.$$.fragment,_),c=!1},d(_){_&&h(e),ae(n),_&&h(o),_&&h(a),u&&u.d()}}}function wf(l,e,t){let s;Z(l,ct,a=>t(1,s=a));let{preview:r=""}=e;const i=Re("changeThumbnail"),n=a=>{const c=["vision-picker","hoverable","customize","outfit-toggle"];return a.classList?!c.some(u=>a.classList.contains(u)):!0},o=async()=>{Be();const a=document.querySelector("#cardEditor"),c=await ba(a,{canvasHeight:106.6,canvasWidth:216,filter:n});i(c)};return l.$$set=a=>{"preview"in a&&t(0,r=a.preview)},[r,s,o]}class kf extends Qe{constructor(e){super(),Je(this,e,wf,gf,He,{preview:0})}}function xn(l,e,t){const s=l.slice();s[29]=e[t],s[33]=t;const r=Xi(s[0][s[33]])||{};return s[30]=r.name,s[31]=r.vision,s}function Ef(l){let e,t,s,r;return{c(){e=b("button"),t=b("i"),this.h()},l(i){e=g(i,"BUTTON",{class:!0});var n=w(e);t=g(n,"I",{class:!0}),w(t).forEach(h),n.forEach(h),this.h()},h(){d(t,"class","gi-plus"),d(e,"class","add svelte-a9gf4v")},m(i,n){O(i,e,n),f(e,t),s||(r=ge(e,"click",l[17]),s=!0)},p:we,i:we,o:we,d(i){i&&h(e),s=!1,r()}}}function yf(l){let e,t,s,r,i=l[30],n,o,a;function c(){return l[20](l[30])}let u=ei(l);return{c(){e=b("button"),t=b("i"),s=P(),r=b("button"),u.c(),this.h()},l(_){e=g(_,"BUTTON",{class:!0});var m=w(e);t=g(m,"I",{class:!0}),w(t).forEach(h),m.forEach(h),s=S(_),r=g(_,"BUTTON",{class:!0});var v=w(r);u.l(v),v.forEach(h),this.h()},h(){d(t,"class","gi-delete"),d(e,"class","remove svelte-a9gf4v"),d(r,"class","item-wrapper svelte-a9gf4v")},m(_,m){O(_,e,m),f(e,t),O(_,s,m),O(_,r,m),u.m(r,null),n=!0,o||(a=ge(e,"click",c),o=!0)},p(_,m){l=_,m[0]&1&&He(i,i=l[30])?(Ee(),M(u,1,1,we),ye(),u=ei(l),u.c(),N(u,1),u.m(r,null)):u.p(l,m)},i(_){n||(N(u),n=!0)},o(_){M(u),n=!1},d(_){_&&h(e),_&&h(s),_&&h(r),u.d(_),o=!1,a()}}}function ei(l){let e,t;return e=new Sl({props:{itemdata:{localName:l[11](`${l[30]}.name`),name:l[30],vision:l[31],rarity:4}}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&2049&&(i.itemdata={localName:s[11](`${s[30]}.name`),name:s[30],vision:s[31],rarity:4}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function ti(l){let e,t,s,r,i;const n=[yf,Ef],o=[];function a(c,u){return c[30]?0:1}return t=a(l),s=o[t]=n[t](l),{c(){e=b("div"),s.c(),r=P(),this.h()},l(c){e=g(c,"DIV",{class:!0});var u=w(e);s.l(u),r=S(u),u.forEach(h),this.h()},h(){d(e,"class","rateup-item svelte-a9gf4v"),pe(e,"blank",!l[30])},m(c,u){O(c,e,u),o[t].m(e,null),f(e,r),i=!0},p(c,u){let _=t;t=a(c),t===_?o[t].p(c,u):(Ee(),M(o[_],1,1,()=>{o[_]=null}),ye(),s=o[t],s?s.p(c,u):(s=o[t]=n[t](c),s.c()),N(s,1),s.m(e,r)),u[0]&1&&pe(e,"blank",!c[30])},i(c){i||(N(s),i=!0)},o(c){M(s),i=!1},d(c){c&&h(e),o[t].d()}}}function si(l){let e,t;return e=new pf({props:{exclude:l[0]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&1&&(i.exclude=s[0]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function If(l){let e,t,s,r,i=l[11]("customBanner.editBanner")+"",n,o,a,c,u,_,m,v,p,k,y,D=l[11]("customBanner.bannerName")+"",V,I,E,z,T,R,B,L,j,U=l[11]("customBanner.charName")+"",A,W,Y,Q,C,q,te,re,K,le=l[11]("customBanner.charTitle")+"",ce,se,x,ee,de,ze,X,$,me,ve=l[11]("customBanner.watermark")+"",G,he,ke,Ie,be,Te,qe,Ze,Me,Ue=l[11]("customBanner.rateupChar")+"",tt,Le,Ae,Oe,Ne,oe,Se,rt,it,mt,vt,Xe,yt,It,pt=Array(3),xe=[];for(let De=0;De<pt.length;De+=1)xe[De]=ti(xn(l,pt,De));const Dt=De=>M(xe[De],1,1,()=>{xe[De]=null});Se=new kf({props:{preview:l[4]}});let Ge=l[7]&&si(l);return{c(){e=b("section"),t=b("div"),s=b("div"),r=b("h1"),n=H(i),o=P(),a=b("div"),c=b("button"),u=b("i"),m=P(),v=b("div"),p=b("div"),k=b("div"),y=b("label"),V=H(D),I=H(": *"),E=P(),z=b("div"),T=b("input"),B=P(),L=b("div"),j=b("label"),A=H(U),W=H(": *"),Y=P(),Q=b("div"),C=b("input"),te=P(),re=b("div"),K=b("label"),ce=H(le),se=H(":"),x=P(),ee=b("div"),de=b("input"),X=P(),$=b("div"),me=b("label"),G=H(ve),he=H(":"),ke=P(),Ie=b("div"),be=b("input"),Te=P(),qe=b("div"),Ze=b("div"),Me=b("label"),tt=H(Ue),Le=H(": *"),Ae=P(),Oe=b("div");for(let De=0;De<xe.length;De+=1)xe[De].c();Ne=P(),oe=b("div"),ne(Se.$$.fragment),rt=P(),Ge&&Ge.c(),this.h()},l(De){e=g(De,"SECTION",{class:!0});var $e=w(e);t=g($e,"DIV",{class:!0,style:!0});var at=w(t);s=g(at,"DIV",{class:!0});var Ye=w(s);r=g(Ye,"H1",{class:!0});var ht=w(r);n=F(ht,i),ht.forEach(h),o=S(Ye),a=g(Ye,"DIV",{class:!0});var Bt=w(a);c=g(Bt,"BUTTON",{class:!0});var Yt=w(c);u=g(Yt,"I",{class:!0}),w(u).forEach(h),Yt.forEach(h),Bt.forEach(h),Ye.forEach(h),m=S(at),v=g(at,"DIV",{class:!0,style:!0});var Wt=w(v);p=g(Wt,"DIV",{class:!0});var _t=w(p);k=g(_t,"DIV",{class:!0});var as=w(k);y=g(as,"LABEL",{for:!0});var Xt=w(y);V=F(Xt,D),I=F(Xt,": *"),Xt.forEach(h),E=S(as),z=g(as,"DIV",{class:!0});var Nt=w(z);T=g(Nt,"INPUT",{type:!0,autocomplete:!0,id:!0,placeholder:!0,class:!0}),Nt.forEach(h),as.forEach(h),B=S(_t),L=g(_t,"DIV",{class:!0});var xt=w(L);j=g(xt,"LABEL",{for:!0});var ds=w(j);A=F(ds,U),W=F(ds,": *"),ds.forEach(h),Y=S(xt),Q=g(xt,"DIV",{class:!0});var ws=w(Q);C=g(ws,"INPUT",{type:!0,autocomplete:!0,id:!0,placeholder:!0,class:!0}),ws.forEach(h),xt.forEach(h),te=S(_t),re=g(_t,"DIV",{class:!0});var es=w(re);K=g(es,"LABEL",{for:!0});var hs=w(K);ce=F(hs,le),se=F(hs,":"),hs.forEach(h),x=S(es),ee=g(es,"DIV",{class:!0});var qt=w(ee);de=g(qt,"INPUT",{type:!0,autocomplete:!0,id:!0,placeholder:!0,class:!0}),qt.forEach(h),es.forEach(h),X=S(_t),$=g(_t,"DIV",{class:!0});var Pt=w($);me=g(Pt,"LABEL",{for:!0});var ms=w(me);G=F(ms,ve),he=F(ms,":"),ms.forEach(h),ke=S(Pt),Ie=g(Pt,"DIV",{class:!0});var $t=w(Ie);be=g($t,"INPUT",{type:!0,autocomplete:!0,id:!0,placeholder:!0,class:!0}),$t.forEach(h),Pt.forEach(h),Te=S(_t),qe=g(_t,"DIV",{class:!0});var ts=w(qe);Ze=g(ts,"DIV",{class:!0});var os=w(Ze);Me=g(os,"LABEL",{for:!0});var st=w(Me);tt=F(st,Ue),Le=F(st,": *"),st.forEach(h),os.forEach(h),Ae=S(ts),Oe=g(ts,"DIV",{class:!0});var ks=w(Oe);for(let bt=0;bt<xe.length;bt+=1)xe[bt].l(ks);ks.forEach(h),ts.forEach(h),Ne=S(_t),oe=g(_t,"DIV",{class:!0});var Bs=w(oe);fe(Se.$$.fragment,Bs),Bs.forEach(h),_t.forEach(h),rt=S(Wt),Ge&&Ge.l(Wt),Wt.forEach(h),at.forEach(h),$e.forEach(h),this.h()},h(){d(r,"class","svelte-a9gf4v"),d(u,"class","gi-close"),d(c,"class","close"),d(a,"class","close-button"),d(s,"class","header svelte-a9gf4v"),Pe(()=>l[19].call(s)),d(y,"for","bannerName"),d(T,"type","text"),d(T,"autocomplete","off"),d(T,"id","bannerName"),d(T,"placeholder",R=l[11]("customBanner.bannerName")),T.value=l[1],d(T,"class","svelte-a9gf4v"),d(z,"class","col"),d(k,"class","field-group svelte-a9gf4v"),d(j,"for","charName"),d(C,"type","text"),d(C,"autocomplete","off"),d(C,"id","charName"),d(C,"placeholder",q=l[11]("customBanner.charName")),C.value=l[2],d(C,"class","svelte-a9gf4v"),d(Q,"class","col"),d(L,"class","field-group svelte-a9gf4v"),d(K,"for","charTitle"),d(de,"type","text"),d(de,"autocomplete","off"),d(de,"id","charTitle"),d(de,"placeholder",ze=l[11]("customBanner.charTitle")),de.value=l[3],d(de,"class","svelte-a9gf4v"),d(ee,"class","col"),d(re,"class","field-group svelte-a9gf4v"),d(me,"for","watermark"),d(be,"type","text"),d(be,"autocomplete","off"),d(be,"id","watermark"),d(be,"placeholder","Banner By @Traveler"),be.value=l[5],d(be,"class","svelte-a9gf4v"),d(Ie,"class","col"),d($,"class","field-group svelte-a9gf4v"),d(Me,"for","rateup"),d(Ze,"class","row svelte-a9gf4v"),d(Oe,"class","row svelte-a9gf4v"),d(qe,"class","field-group svelte-a9gf4v"),d(oe,"class","field-group svelte-a9gf4v"),d(p,"class","body-wrapper svelte-a9gf4v"),d(v,"class","body svelte-a9gf4v"),_e(v,"--item-width",l[9]+"px"),Pe(()=>l[21].call(v)),d(t,"class","wrapper vision-picker svelte-a9gf4v"),_e(t,"--bg-icon","url('"+l[10]["modal-bg-icon.png"]+"')"),_e(t,"--header-height",l[8]+"px"),pe(t,"pickerActive",l[7]),d(e,"class","svelte-a9gf4v")},m(De,$e){O(De,e,$e),f(e,t),f(t,s),f(s,r),f(r,n),f(s,o),f(s,a),f(a,c),f(c,u),_=rs(s,l[19].bind(s)),f(t,m),f(t,v),f(v,p),f(p,k),f(k,y),f(y,V),f(y,I),f(k,E),f(k,z),f(z,T),f(p,B),f(p,L),f(L,j),f(j,A),f(j,W),f(L,Y),f(L,Q),f(Q,C),f(p,te),f(p,re),f(re,K),f(K,ce),f(K,se),f(re,x),f(re,ee),f(ee,de),f(p,X),f(p,$),f($,me),f(me,G),f(me,he),f($,ke),f($,Ie),f(Ie,be),f(p,Te),f(p,qe),f(qe,Ze),f(Ze,Me),f(Me,tt),f(Me,Le),f(qe,Ae),f(qe,Oe);for(let at=0;at<xe.length;at+=1)xe[at].m(Oe,null);f(p,Ne),f(p,oe),ie(Se,oe,null),f(v,rt),Ge&&Ge.m(v,null),it=rs(v,l[21].bind(v)),Xe=!0,yt||(It=[ge(c,"click",l[16]),ge(T,"input",l[12]),ge(C,"input",l[13]),ge(de,"input",l[14]),ge(be,"input",l[15]),ge(e,"mousedown",tr(l[16]))],yt=!0)},p(De,$e){if((!Xe||$e[0]&2048)&&i!==(i=De[11]("customBanner.editBanner")+"")&&J(n,i),(!Xe||$e[0]&2048)&&D!==(D=De[11]("customBanner.bannerName")+"")&&J(V,D),(!Xe||$e[0]&2048&&R!==(R=De[11]("customBanner.bannerName")))&&d(T,"placeholder",R),(!Xe||$e[0]&2&&T.value!==De[1])&&(T.value=De[1]),(!Xe||$e[0]&2048)&&U!==(U=De[11]("customBanner.charName")+"")&&J(A,U),(!Xe||$e[0]&2048&&q!==(q=De[11]("customBanner.charName")))&&d(C,"placeholder",q),(!Xe||$e[0]&4&&C.value!==De[2])&&(C.value=De[2]),(!Xe||$e[0]&2048)&&le!==(le=De[11]("customBanner.charTitle")+"")&&J(ce,le),(!Xe||$e[0]&2048&&ze!==(ze=De[11]("customBanner.charTitle")))&&d(de,"placeholder",ze),(!Xe||$e[0]&8&&de.value!==De[3])&&(de.value=De[3]),(!Xe||$e[0]&2048)&&ve!==(ve=De[11]("customBanner.watermark")+"")&&J(G,ve),(!Xe||$e[0]&32&&be.value!==De[5])&&(be.value=De[5]),(!Xe||$e[0]&2048)&&Ue!==(Ue=De[11]("customBanner.rateupChar")+"")&&J(tt,Ue),$e[0]&395265){pt=Array(3);let Ye;for(Ye=0;Ye<pt.length;Ye+=1){const ht=xn(De,pt,Ye);xe[Ye]?(xe[Ye].p(ht,$e),N(xe[Ye],1)):(xe[Ye]=ti(ht),xe[Ye].c(),N(xe[Ye],1),xe[Ye].m(Oe,null))}for(Ee(),Ye=pt.length;Ye<xe.length;Ye+=1)Dt(Ye);ye()}const at={};$e[0]&16&&(at.preview=De[4]),Se.$set(at),De[7]?Ge?(Ge.p(De,$e),$e[0]&128&&N(Ge,1)):(Ge=si(De),Ge.c(),N(Ge,1),Ge.m(v,null)):Ge&&(Ee(),M(Ge,1,1,()=>{Ge=null}),ye()),(!Xe||$e[0]&512)&&_e(v,"--item-width",De[9]+"px"),(!Xe||$e[0]&1024)&&_e(t,"--bg-icon","url('"+De[10]["modal-bg-icon.png"]+"')"),(!Xe||$e[0]&256)&&_e(t,"--header-height",De[8]+"px"),$e[0]&128&&pe(t,"pickerActive",De[7])},i(De){if(!Xe){for(let $e=0;$e<pt.length;$e+=1)N(xe[$e]);N(Se.$$.fragment,De),N(Ge),Pe(()=>{mt||(mt=ot(t,lt,{duration:250,x:100},!0)),mt.run(1)}),Pe(()=>{vt||(vt=ot(e,et,{duration:250},!0)),vt.run(1)}),Xe=!0}},o(De){xe=xe.filter(Boolean);for(let $e=0;$e<xe.length;$e+=1)M(xe[$e]);M(Se.$$.fragment,De),M(Ge),mt||(mt=ot(t,lt,{duration:250,x:100},!1)),mt.run(0),vt||(vt=ot(e,et,{duration:250},!1)),vt.run(0),Xe=!1},d(De){De&&h(e),_(),Ut(xe,De),ae(Se),Ge&&Ge.d(),it(),De&&mt&&mt.end(),De&&vt&&vt.end(),yt=!1,ns(It)}}}function Df(l,e,t){let s,r,i;Z(l,wt,C=>t(10,r=C)),Z(l,ct,C=>t(11,i=C));let{rateup:n=[]}=e,{bannerName:o=""}=e,{character:a=""}=e,{charTitle:c=""}=e,{preview:u=""}=e,{watermark:_=""}=e,m=!1,v,p;const k=Re("editInfo"),y=Re("setBannerName"),D=Re("setCharName"),V=Re("setCharTitle"),I=Re("setRateup"),E=Re("setWatermark"),z=({target:C})=>{const{value:q}=C;y(q)},T=({target:C})=>{const{value:q}=C;D(q)},R=({target:C})=>{const{value:q}=C;V(q)},B=({target:C})=>{const{value:q}=C;E(q)},L=()=>{k(!1),Be("close")},j=()=>{t(7,m=!0),Be("click")};Fe("selectChar",C=>{t(7,m=!1),C&&(n.includes(C)||n.length>=3||I([...n,C]))});const A=C=>{Be("close");const q=n.filter(te=>C!=te);I(q)};function W(){v=this.clientHeight,t(8,v)}const Y=C=>A(C);function Q(){p=this.clientWidth,t(6,p)}return l.$$set=C=>{"rateup"in C&&t(0,n=C.rateup),"bannerName"in C&&t(1,o=C.bannerName),"character"in C&&t(2,a=C.character),"charTitle"in C&&t(3,c=C.charTitle),"preview"in C&&t(4,u=C.preview),"watermark"in C&&t(5,_=C.watermark)},l.$$.update=()=>{l.$$.dirty[0]&64&&t(9,s=p/4)},[n,o,a,c,u,_,p,m,v,s,r,i,z,T,R,B,L,j,A,W,Y,Q]}class zf extends Qe{constructor(e){super(),Je(this,e,Df,If,He,{rateup:0,bannerName:1,character:2,charTitle:3,preview:4,watermark:5},null,[-1,-1])}}function Vf(l,e,t){const s=l.slice();return s[17]=e[t],s}function Tf(l){let e=l[4]?"Set Position":"OK",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r&16&&e!==(e=s[4]?"Set Position":"OK")&&J(t,e)},d(s){s&&h(t)}}}function Bf(l){let e;return{c(){e=b("div"),this.h()},l(t){e=g(t,"DIV",{class:!0}),w(e).forEach(h),this.h()},h(){d(e,"class","i gi-star svelte-geqzoz")},m(t,s){O(t,e,s)},p:we,d(t){t&&h(e)}}}function Nf(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R=l[8]("wish.result.new")+"",B,L,j,U,A,W,Y,Q,C,q,te,re,K,le,ce,se,x,ee,de;y=new Zt({props:{light:!0,$$slots:{default:[Tf]},$$scope:{ctx:l}}}),y.$on("click",l[9]),te=new ji({props:{name:l[2]}});let ze=Array(5),X=[];for(let $=0;$<ze.length;$+=1)X[$]=Bf(Vf(l,ze,$));return{c(){e=ft("svg"),t=ft("clipPath"),s=ft("path"),r=P(),i=b("div"),n=b("div"),o=b("div"),a=P(),c=b("button"),u=b("i"),_=P(),m=b("button"),v=b("i"),p=P(),k=b("div"),ne(y.$$.fragment),D=P(),V=b("div"),I=b("div"),E=b("div"),z=b("div"),T=b("div"),B=H(R),L=P(),j=b("div"),U=b("div"),A=b("div"),W=b("img"),Q=P(),C=b("div"),q=b("div"),ne(te.$$.fragment),re=P(),K=b("div");for(let $=0;$<X.length;$+=1)X[$].c();ce=P(),se=b("div"),x=b("div"),this.h()},l($){e=dt($,"svg",{viewBox:!0,height:!0,width:!0,style:!0});var me=w(e);t=dt(me,"clipPath",{id:!0,transform:!0,clipPathUnits:!0});var ve=w(t);s=dt(ve,"path",{d:!0}),w(s).forEach(h),ve.forEach(h),me.forEach(h),r=S($),i=g($,"DIV",{class:!0});var G=w(i);n=g(G,"DIV",{class:!0});var he=w(n);o=g(he,"DIV",{class:!0}),w(o).forEach(h),he.forEach(h),a=S(G),c=g(G,"BUTTON",{class:!0});var ke=w(c);u=g(ke,"I",{class:!0}),w(u).forEach(h),ke.forEach(h),_=S(G),m=g(G,"BUTTON",{class:!0});var Ie=w(m);v=g(Ie,"I",{class:!0}),w(v).forEach(h),Ie.forEach(h),G.forEach(h),p=S($),k=g($,"DIV",{class:!0});var be=w(k);fe(y.$$.fragment,be),be.forEach(h),D=S($),V=g($,"DIV",{class:!0});var Te=w(V);I=g(Te,"DIV",{class:!0,style:!0});var qe=w(I);E=g(qe,"DIV",{class:!0,style:!0});var Ze=w(E);z=g(Ze,"DIV",{id:!0,class:!0});var Me=w(z);T=g(Me,"DIV",{class:!0});var Ue=w(T);B=F(Ue,R),Ue.forEach(h),L=S(Me),j=g(Me,"DIV",{class:!0});var tt=w(j);U=g(tt,"DIV",{class:!0});var Le=w(U);A=g(Le,"DIV",{class:!0});var Ae=w(A);W=g(Ae,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),Ae.forEach(h),Q=S(Le),C=g(Le,"DIV",{class:!0});var Oe=w(C);q=g(Oe,"DIV",{class:!0,style:!0});var Ne=w(q);fe(te.$$.fragment,Ne),Ne.forEach(h),re=S(Oe),K=g(Oe,"DIV",{class:!0});var oe=w(K);for(let rt=0;rt<X.length;rt+=1)X[rt].l(oe);oe.forEach(h),Oe.forEach(h),Le.forEach(h),tt.forEach(h),Me.forEach(h),Ze.forEach(h),qe.forEach(h),ce=S(Te),se=g(Te,"DIV",{class:!0,style:!0});var Se=w(se);x=g(Se,"DIV",{class:!0}),w(x).forEach(h),Se.forEach(h),Te.forEach(h),this.h()},h(){d(s,"d",`M734 6419 c-25 -29 -100 -76 -199 -127 -125 -64 -165 -117 -165 -217
-			0 -22 -3 -50 -6 -63 -9 -33 -83 -72 -155 -82 -68 -10 -79 -19 -79 -67 0 -24
-			-7 -37 -32 -54 -18 -12 -43 -34 -55 -48 l-22 -26 -1 -2502 c0 -1542 4 -2503 9
-			-2503 5 0 13 -9 16 -20 4 -11 23 -28 43 -38 32 -15 37 -22 40 -57 4 -49 23
-			-65 76 -65 47 0 113 -28 140 -58 12 -14 21 -45 26 -90 13 -117 54 -164 215
-			-250 55 -28 114 -66 132 -82 18 -17 35 -30 39 -30 4 0 23 15 44 34 21 19 80
-			56 131 82 153 79 197 131 210 252 4 39 13 70 25 84 27 30 93 58 140 58 53 0
-			72 16 76 65 3 35 8 42 40 57 20 10 39 27 43 38 3 11 11 20 16 20 5 0 9 961 9
-			2503 l-1 2502 -22 26 c-12 14 -37 36 -54 48 -26 17 -33 30 -33 54 0 48 -11 57
-			-79 67 -72 10 -146 49 -155 82 -3 13 -6 41 -6 63 0 100 -40 153 -165 217 -106
-			54 -153 84 -191 119 l-30 29 -20 -21z`),d(t,"id","wishframe"),d(t,"transform","scale(0.00066225165562914 0.00015455950540958)"),d(t,"clipPathUnits","objectBoundingBox"),d(e,"viewBox","0 0 151.000000 656.000000"),d(e,"height","0"),d(e,"width","0"),_e(e,"position","absolute"),d(o,"class","zoomSlider svelte-geqzoz"),d(n,"class","slider svelte-geqzoz"),d(u,"class","gi-zoom-in"),d(c,"class","art-zoomin svelte-geqzoz"),d(v,"class","gi-zoom-out"),d(m,"class","art-zoomout svelte-geqzoz"),d(i,"class","zoomer svelte-geqzoz"),d(k,"class","confirm svelte-geqzoz"),d(T,"class","new svelte-geqzoz"),je(W.src,Y=l[0])||d(W,"src",Y),d(W,"alt",l[1]),d(W,"class","wishpic svelte-geqzoz"),d(W,"crossorigin","anonymous"),d(A,"class","zoomist-image svelte-geqzoz"),d(q,"class","icon svelte-geqzoz"),_e(q,"width","100%"),d(K,"class","star"),d(C,"class","info svelte-geqzoz"),d(U,"class","zoomist-wrapper item-content svelte-geqzoz"),d(j,"class","zoomist-container item-body svelte-geqzoz"),d(z,"id","wish1"),d(z,"class","item star5 character svelte-geqzoz"),d(E,"class","item-box svelte-geqzoz"),_e(E,"--bg","url("+l[7]["resultcard-bg.webp"]+")"),d(I,"class","wishlist svelte-geqzoz"),_e(I,"--card-height",l[5]+"px"),_e(I,"--card-width",l[6]+"px"),Pe(()=>l[12].call(I)),d(x,"class","shadow shadow5 svelte-geqzoz"),d(se,"class","shadows svelte-geqzoz"),_e(se,"--card-height",l[5]+"px"),d(V,"class","container svelte-geqzoz")},m($,me){O($,e,me),f(e,t),f(t,s),O($,r,me),O($,i,me),f(i,n),f(n,o),f(i,a),f(i,c),f(c,u),f(i,_),f(i,m),f(m,v),O($,p,me),O($,k,me),ie(y,k,null),O($,D,me),O($,V,me),f(V,I),f(I,E),f(E,z),f(z,T),f(T,B),f(z,L),f(z,j),f(j,U),f(U,A),f(A,W),f(U,Q),f(U,C),f(C,q),ie(te,q,null),f(C,re),f(C,K);for(let ve=0;ve<X.length;ve+=1)X[ve].m(K,null);l[11](j),le=rs(I,l[12].bind(I)),f(V,ce),f(V,se),f(se,x),de=!0},p($,[me]){const ve={};me&1048592&&(ve.$$scope={dirty:me,ctx:$}),y.$set(ve),(!de||me&256)&&R!==(R=$[8]("wish.result.new")+"")&&J(B,R),(!de||me&1&&!je(W.src,Y=$[0]))&&d(W,"src",Y),(!de||me&2)&&d(W,"alt",$[1]);const G={};me&4&&(G.name=$[2]),te.$set(G),(!de||me&128)&&_e(E,"--bg","url("+$[7]["resultcard-bg.webp"]+")"),(!de||me&32)&&_e(I,"--card-height",$[5]+"px"),(!de||me&64)&&_e(I,"--card-width",$[6]+"px"),(!de||me&32)&&_e(se,"--card-height",$[5]+"px")},i($){de||(N(y.$$.fragment,$),N(te.$$.fragment,$),ee||Pe(()=>{ee=Ke(V,et,{}),ee.start()}),de=!0)},o($){M(y.$$.fragment,$),M(te.$$.fragment,$),de=!1},d($){$&&h(e),$&&h(r),$&&h(i),$&&h(p),$&&h(k),ae(y),$&&h(D),$&&h(V),ae(te),Ut(X,$),l[11](null),le()}}}function Pf(l,e,t){let s,r;Z(l,wt,E=>t(7,s=E)),Z(l,ct,E=>t(8,r=E));let{artURL:i=""}=e,{character:n=""}=e,{vision:o=""}=e,{position:a={}}=e,c,u=!1,_=1,m=0;const{wishCard:v={scale:5,x:40,y:40}}=a,p={initScale:v.scale||1,maxScale:20,bounds:!1,slider:{el:".zoomSlider",direction:"vertical"},zoomer:{inEl:".art-zoomin",outEl:".art-zoomout",resetEl:null,disabledClass:"zoomer-disabled"}},k=Re("editSplashArt"),y=Re("setPosition"),D=()=>{if(Be(),k(!1),!u)return;const E=c.querySelector(".zoomist-image"),z=Ui(E,_,m);y("wishCard",z),t(4,u=!1)};Et(()=>{t(6,m=_*7/30);const E=new Pl(c,p),z=Wi(v,_,m);E.moveTo(z),E.on("dragEnd",()=>t(4,u=!0)),E.on("zoom",()=>t(4,u=!0))});function V(E){Rt[E?"unshift":"push"](()=>{c=E,t(3,c)})}function I(){_=this.clientHeight,t(5,_)}return l.$$set=E=>{"artURL"in E&&t(0,i=E.artURL),"character"in E&&t(1,n=E.character),"vision"in E&&t(2,o=E.vision),"position"in E&&t(10,a=E.position)},[i,n,o,c,u,_,m,s,r,D,a,V,I]}class Sf extends Qe{constructor(e){super(),Je(this,e,Pf,Nf,He,{artURL:0,character:1,vision:2,position:10})}}function li(l){let e,t;return{c(){e=b("div"),t=H("WishSimulator.App"),this.h()},l(s){e=g(s,"DIV",{class:!0});var r=w(e);t=F(r,"WishSimulator.App"),r.forEach(h),this.h()},h(){d(e,"class","uid svelte-iiacim")},m(s,r){O(s,e,r),f(e,t)},d(s){s&&h(e)}}}function ri(l){let e,t,s,r=l[18]("inventory.notOwned")+"",i;return{c(){e=b("div"),t=b("div"),s=b("span"),i=H(r),this.h()},l(n){e=g(n,"DIV",{class:!0});var o=w(e);t=g(o,"DIV",{class:!0});var a=w(t);s=g(a,"SPAN",{});var c=w(s);i=F(c,r),c.forEach(h),a.forEach(h),o.forEach(h),this.h()},h(){d(t,"class","not-owned svelte-iiacim"),d(e,"class","overlay svelte-iiacim")},m(n,o){O(n,e,o),f(e,t),f(t,s),f(s,i)},p(n,o){o[0]&262144&&r!==(r=n[18]("inventory.notOwned")+"")&&J(i,r)},d(n){n&&h(e)}}}function Rf(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V=!(l[5]&&!l[7])&&ni(l),I=!l[5]&&ai(l),E=l[8]&&oi(l),z=!l[10]&&ci(l);return{c(){V&&V.c(),e=P(),I&&I.c(),t=P(),s=b("div"),r=b("div"),i=b("div"),E&&E.c(),n=P(),o=b("img"),u=P(),_=b("div"),v=P(),z&&z.c(),this.h()},l(T){V&&V.l(T),e=S(T),I&&I.l(T),t=S(T),s=g(T,"DIV",{class:!0,style:!0});var R=w(s);r=g(R,"DIV",{class:!0,style:!0});var B=w(r);i=g(B,"DIV",{class:!0});var L=w(i);E&&E.l(L),n=S(L),o=g(L,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),L.forEach(h),u=S(B),_=g(B,"DIV",{class:!0}),w(_).forEach(h),B.forEach(h),v=S(R),z&&z.l(R),R.forEach(h),this.h()},h(){je(o.src,a=l[3])||d(o,"src",a),d(o,"alt",c=l[9]||l[0]),d(o,"crossorigin","anonymous"),d(o,"class","svelte-iiacim"),d(i,"class","zoomist-image svelte-iiacim"),d(_,"class","dragable svelte-iiacim"),d(r,"class",m="zoomist-wrapper "+l[8]+" svelte-iiacim"),_e(r,"overflow","visible"),pe(r,"notOwned",l[5]&&!l[7]),pe(r,"weapon",l[8]),d(s,"class","zoomist-container svelte-iiacim"),_e(s,"height",l[16]),Pe(()=>l[29].call(s))},m(T,R){V&&V.m(T,R),O(T,e,R),I&&I.m(T,R),O(T,t,R),O(T,s,R),f(s,r),f(r,i),E&&E.m(i,null),f(i,n),f(i,o),f(r,u),f(r,_),f(s,v),z&&z.m(s,null),l[28](s),p=rs(s,l[29].bind(s)),k=!0,y||(D=ge(o,"load",l[27]),y=!0)},p(T,R){T[5]&&!T[7]?V&&(V.d(1),V=null):V?V.p(T,R):(V=ni(T),V.c(),V.m(e.parentNode,e)),T[5]?I&&(Ee(),M(I,1,1,()=>{I=null}),ye()):I?(I.p(T,R),R[0]&32&&N(I,1)):(I=ai(T),I.c(),N(I,1),I.m(t.parentNode,t)),T[8]?E?E.p(T,R):(E=oi(T),E.c(),E.m(i,n)):E&&(E.d(1),E=null),(!k||R[0]&8&&!je(o.src,a=T[3]))&&d(o,"src",a),(!k||R[0]&513&&c!==(c=T[9]||T[0]))&&d(o,"alt",c),(!k||R[0]&256&&m!==(m="zoomist-wrapper "+T[8]+" svelte-iiacim"))&&d(r,"class",m),R[0]&416&&pe(r,"notOwned",T[5]&&!T[7]),R[0]&256&&pe(r,"weapon",T[8]),T[10]?z&&(Ee(),M(z,1,1,()=>{z=null}),ye()):z?(z.p(T,R),R[0]&1024&&N(z,1)):(z=ci(T),z.c(),N(z,1),z.m(s,null)),(!k||R[0]&65536)&&_e(s,"height",T[16])},i(T){k||(N(I),N(z),k=!0)},o(T){M(I),M(z),k=!1},d(T){V&&V.d(T),T&&h(e),I&&I.d(T),T&&h(t),T&&h(s),E&&E.d(),z&&z.d(),l[28](null),p(),y=!1,D()}}}function Lf(l){let e,t;return e=new Sf({props:{artURL:l[3],character:l[0],vision:l[2],position:l[4]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&8&&(i.artURL=s[3]),r[0]&1&&(i.character=s[0]),r[0]&4&&(i.vision=s[2]),r[0]&16&&(i.position=s[4]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function ni(l){let e,t,s,r,i,n,o,a,c,u,_=l[5]&&ii(l);return{c(){e=b("div"),t=b("div"),s=b("div"),r=P(),i=b("button"),n=b("i"),o=P(),a=b("button"),c=b("i"),u=P(),_&&_.c(),this.h()},l(m){e=g(m,"DIV",{class:!0});var v=w(e);t=g(v,"DIV",{class:!0});var p=w(t);s=g(p,"DIV",{class:!0}),w(s).forEach(h),p.forEach(h),r=S(v),i=g(v,"BUTTON",{class:!0});var k=w(i);n=g(k,"I",{class:!0}),w(n).forEach(h),k.forEach(h),o=S(v),a=g(v,"BUTTON",{class:!0});var y=w(a);c=g(y,"I",{class:!0}),w(c).forEach(h),y.forEach(h),u=S(v),_&&_.l(v),v.forEach(h),this.h()},h(){d(s,"class","zoomSlider svelte-iiacim"),d(t,"class","slider svelte-iiacim"),d(n,"class","gi-zoom-in"),d(i,"class","art-zoomin svelte-iiacim"),d(c,"class","gi-zoom-out"),d(a,"class","art-zoomout svelte-iiacim"),d(e,"class","zoomer svelte-iiacim")},m(m,v){O(m,e,v),f(e,t),f(t,s),f(e,r),f(e,i),f(i,n),f(e,o),f(e,a),f(a,c),f(e,u),_&&_.m(e,null)},p(m,v){m[5]?_?_.p(m,v):(_=ii(m),_.c(),_.m(e,null)):_&&(_.d(1),_=null)},d(m){m&&h(e),_&&_.d()}}}function ii(l){let e,t,s,r,i;return{c(){e=b("button"),t=b("i"),this.h()},l(n){e=g(n,"BUTTON",{class:!0});var o=w(e);t=g(o,"I",{class:!0}),w(t).forEach(h),o.forEach(h),this.h()},h(){d(t,"class",s="gi-eye"+(l[10]?"-slash":"")),d(e,"class","svelte-iiacim")},m(n,o){O(n,e,o),f(e,t),r||(i=ge(e,"click",l[21]),r=!0)},p(n,o){o[0]&1024&&s!==(s="gi-eye"+(n[10]?"-slash":""))&&d(t,"class",s)},d(n){n&&h(e),r=!1,i()}}}function ai(l){let e,t,s,r;const i=[Of,Af],n=[];function o(a,c){return a[14]?0:1}return t=o(l),s=n[t]=i[t](l),{c(){e=b("div"),s.c(),this.h()},l(a){e=g(a,"DIV",{class:!0});var c=w(e);s.l(c),c.forEach(h),this.h()},h(){d(e,"class","confirm svelte-iiacim")},m(a,c){O(a,e,c),n[t].m(e,null),r=!0},p(a,c){let u=t;t=o(a),t===u?n[t].p(a,c):(Ee(),M(n[u],1,1,()=>{n[u]=null}),ye(),s=n[t],s?s.p(a,c):(s=n[t]=i[t](a),s.c()),N(s,1),s.m(e,null))},i(a){r||(N(s),r=!0)},o(a){M(s),r=!1},d(a){a&&h(e),n[t].d()}}}function Af(l){let e,t;return e=new Zt({props:{light:!0,$$slots:{default:[Cf]},$$scope:{ctx:l}}}),e.$on("click",l[24]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&262144|r[1]&64&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Of(l){let e,t;return e=new Zt({props:{light:!0,$$slots:{default:[Mf]},$$scope:{ctx:l}}}),e.$on("click",l[22]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&262144|r[1]&64&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Cf(l){let e=l[18]("customBanner.next")+"",t,s;return{c(){t=H(e),s=H(" \xBB")},l(r){t=F(r,e),s=F(r," \xBB")},m(r,i){O(r,t,i),O(r,s,i)},p(r,i){i[0]&262144&&e!==(e=r[18]("customBanner.next")+"")&&J(t,e)},d(r){r&&h(t),r&&h(s)}}}function Mf(l){let e=l[18]("customBanner.setPosition")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&262144&&e!==(e=s[18]("customBanner.setPosition")+"")&&J(t,e)},d(s){s&&h(t)}}}function oi(l){let e,t;return{c(){e=b("img"),this.h()},l(s){e=g(s,"IMG",{src:!0,alt:!0,class:!0}),this.h()},h(){je(e.src,t=l[17][`bg-${l[8]}.webp`])||d(e,"src",t),d(e,"alt",l[8]),d(e,"class","weaponbg svelte-iiacim")},m(s,r){O(s,e,r)},p(s,r){r[0]&131328&&!je(e.src,t=s[17][`bg-${s[8]}.webp`])&&d(e,"src",t),r[0]&256&&d(e,"alt",s[8])},d(s){s&&h(e)}}}function ci(l){let e,t;return e=new ga({props:{custom:!0,staticMode:!0,itemName:l[9]||l[0],type:"character",rarity:l[1],vision:l[2],weaponType:l[8]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&513&&(i.itemName=s[9]||s[0]),r[0]&2&&(i.rarity=s[1]),r[0]&4&&(i.vision=s[2]),r[0]&256&&(i.weaponType=s[8]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function jf(l){let e,t,s,r,i,n,o,a,c,u,_,m,v=l[6]&&li(),p=l[5]&&!l[7]&&ri(l);const k=[Lf,Rf],y=[];function D(V,I){return V[15]?0:1}return o=D(l),a=y[o]=k[o](l),{c(){e=b("div"),v&&v.c(),t=P(),p&&p.c(),s=P(),r=b("button"),i=b("i"),n=P(),a.c(),this.h()},l(V){e=g(V,"DIV",{class:!0,style:!0});var I=w(e);v&&v.l(I),t=S(I),p&&p.l(I),s=S(I),r=g(I,"BUTTON",{class:!0});var E=w(r);i=g(E,"I",{class:!0}),w(i).forEach(h),E.forEach(h),n=S(I),a.l(I),I.forEach(h),this.h()},h(){d(i,"class","gi-close"),d(r,"class","close svelte-iiacim"),d(e,"class","splash-art wish-result svelte-iiacim"),_e(e,"--bg","url("+l[19]+")"),pe(e,"preview",l[5]),pe(e,"hideInfo",l[10])},m(V,I){O(V,e,I),v&&v.m(e,null),f(e,t),p&&p.m(e,null),f(e,s),f(e,r),f(r,i),f(e,n),y[o].m(e,null),u=!0,_||(m=ge(r,"click",l[20]),_=!0)},p(V,I){V[6]?v||(v=li(),v.c(),v.m(e,t)):v&&(v.d(1),v=null),V[5]&&!V[7]?p?p.p(V,I):(p=ri(V),p.c(),p.m(e,s)):p&&(p.d(1),p=null);let E=o;o=D(V),o===E?y[o].p(V,I):(Ee(),M(y[E],1,1,()=>{y[E]=null}),ye(),a=y[o],a?a.p(V,I):(a=y[o]=k[o](V),a.c()),N(a,1),a.m(e,null)),I[0]&32&&pe(e,"preview",V[5]),I[0]&1024&&pe(e,"hideInfo",V[10])},i(V){u||(N(a),Pe(()=>{c||(c=ot(e,et,{duration:250},!0)),c.run(1)}),u=!0)},o(V){M(a),c||(c=ot(e,et,{duration:250},!1)),c.run(0),u=!1},d(V){V&&h(e),v&&v.d(),p&&p.d(),y[o].d(),V&&c&&c.end(),_=!1,m()}}}function Uf(l,e,t){let s,r,i,n,o;Z(l,Fs,x=>t(25,r=x)),Z(l,or,x=>t(26,i=x)),Z(l,wt,x=>t(17,n=x)),Z(l,ct,x=>t(18,o=x));let{character:a}=e,{rarity:c=5}=e,{vision:u}=e,{artURL:_=""}=e,{position:m={}}=e,{preview:v=!1}=e,{onshot:p=!1}=e,{isOwned:k=!1}=e,{weaponType:y=""}=e,{localName:D=""}=e,{hideInfo:V=!1}=e,I,E=0,z=0,T=!1,R=!1;const{splashArt:B={scale:1.5,x:0,y:0}}=m,L=v?n["detailbg.webp"]:n["splash-background.webp"],j=(x,ee)=>x<ee?"85vw":x<ee*1.5?"65vw":"100%",U=gl(),A=()=>{Be("close"),U("close")},W=Re("toggleInfoHide"),Y=Re("setPosition"),Q={initScale:B.scale||1,maxScale:5,bounds:!1,slider:{el:".zoomSlider",direction:"vertical"},zoomer:{inEl:".art-zoomin",outEl:".art-zoomout",resetEl:null,disabledClass:"zoomer-disabled"}},C=()=>{const x=I.querySelector(".zoomist-image"),ee=Ui(x,E,z);Y("splashArt",ee),t(14,T=!1),Be("click2")};let q,te=!1;const re=x=>{if(!te||!x||typeof x!="object")return;const ee=Wi(x,E,z);q.zoomTo(x?.scale||1.1),q.moveTo(ee)};Et(()=>{q=new Pl(I,Q),te=!0,q.on("dragEnd",()=>t(14,T=!0)),q.on("zoom",()=>t(14,T=!0))});const K=()=>{Be(),t(15,R=!0)},le=()=>re(m?.splashArt||{});function ce(x){Rt[x?"unshift":"push"](()=>{I=x,t(11,I)})}function se(){E=this.clientHeight,z=this.clientWidth,t(12,E),t(13,z)}return l.$$set=x=>{"character"in x&&t(0,a=x.character),"rarity"in x&&t(1,c=x.rarity),"vision"in x&&t(2,u=x.vision),"artURL"in x&&t(3,_=x.artURL),"position"in x&&t(4,m=x.position),"preview"in x&&t(5,v=x.preview),"onshot"in x&&t(6,p=x.onshot),"isOwned"in x&&t(7,k=x.isOwned),"weaponType"in x&&t(8,y=x.weaponType),"localName"in x&&t(9,D=x.localName),"hideInfo"in x&&t(10,V=x.hideInfo)},l.$$.update=()=>{l.$$.dirty[0]&100663296&&t(16,s=j(i,r))},[a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,s,n,o,L,A,W,C,re,K,r,i,le,ce,se]}class Wf extends Qe{constructor(e){super(),Je(this,e,Uf,jf,He,{character:0,rarity:1,vision:2,artURL:3,position:4,preview:5,onshot:6,isOwned:7,weaponType:8,localName:9,hideInfo:10},null,[-1,-1])}}function qf(l){return{c:we,l:we,m:we,i:we,o:we,d:we}}function $f(l){return{c:we,l:we,m:we,i:we,o:we,d:we}}function Hf(l){let e,t,s,r,i;return s=new us({props:{type:"loader",width:"40px"}}),{c(){e=b("div"),t=b("div"),ne(s.$$.fragment),this.h()},l(n){e=g(n,"DIV",{class:!0});var o=w(e);t=g(o,"DIV",{class:!0});var a=w(t);fe(s.$$.fragment,a),a.forEach(h),o.forEach(h),this.h()},h(){d(t,"class","loader svelte-1kja6fh"),d(e,"class","loading svelte-1kja6fh")},m(n,o){O(n,e,o),f(e,t),ie(s,t,null),i=!0},i(n){i||(N(s.$$.fragment,n),r&&r.end(1),i=!0)},o(n){M(s.$$.fragment,n),r=Ms(e,et,{}),i=!1},d(n){n&&h(e),ae(s),n&&r&&r.end()}}}function ui(l){let e,t;return e=new ia({props:{onBannerEdit:l[10],artURL:l[7]?.artURL,bannerPosition:l[6]?.banner}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&1024&&(i.onBannerEdit=s[10]),r[0]&128&&(i.artURL=s[7]?.artURL),r[0]&64&&(i.bannerPosition=s[6]?.banner),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function fi(l){let e,t;return e=new zf({props:{preview:l[7]?.thumbnail,rateup:l[5],bannerName:l[0],character:l[1],charTitle:l[2],watermark:l[4]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&128&&(i.preview=s[7]?.thumbnail),r[0]&32&&(i.rateup=s[5]),r[0]&1&&(i.bannerName=s[0]),r[0]&2&&(i.character=s[1]),r[0]&4&&(i.charTitle=s[2]),r[0]&16&&(i.watermark=s[4]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function di(l){let e,t;return e=new Wf({props:{artURL:l[7]?.artURL,position:l[6],character:l[1],vision:l[3]}}),e.$on("close",l[21]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&128&&(i.artURL=s[7]?.artURL),r[0]&64&&(i.position=s[6]),r[0]&2&&(i.character=s[1]),r[0]&8&&(i.vision=s[3]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Ff(l){let e,t,s,r,i,n,o,a=l[6],c,u,_,m,v,p,k,y,D,V,I,E={ctx:l,current:null,token:null,hasCatch:!1,pending:Hf,then:$f,catch:qf,blocks:[,,,]};Al(l[16](l[15]),E),n=new lf({props:{selected:l[3]}});let z=ui(l);u=new ef({props:{onBannerEdit:l[10]}}),m=new sa({props:{editorMode:!0,onBannerEdit:l[10],vision:l[3],bannerName:l[0],character:l[1],charTitle:l[2],watermark:l[4]}}),p=new Ju({props:{faceURL:l[7]?.faceURL,onBannerEdit:l[10]}});let T=l[11]&&fi(l),R=l[12]&&di(l);return{c(){E.block.c(),e=P(),t=b("div"),s=b("img"),i=P(),ne(n.$$.fragment),o=P(),z.c(),c=P(),ne(u.$$.fragment),_=P(),ne(m.$$.fragment),v=P(),ne(p.$$.fragment),y=P(),T&&T.c(),D=P(),R&&R.c(),V=We(),this.h()},l(B){E.block.l(B),e=S(B),t=g(B,"DIV",{class:!0,id:!0,style:!0});var L=w(t);s=g(L,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),i=S(L),fe(n.$$.fragment,L),o=S(L),z.l(L),c=S(L),fe(u.$$.fragment,L),_=S(L),fe(m.$$.fragment,L),v=S(L),fe(p.$$.fragment,L),L.forEach(h),y=S(B),T&&T.l(B),D=S(B),R&&R.l(B),V=We(),this.h()},h(){je(s.src,r=l[14][`blank/${l[3]}`])||d(s,"src",r),d(s,"alt","Background Banner"),d(s,"crossorigin","anonymous"),d(s,"class","art-bg svelte-1kja6fh"),d(t,"class","card svelte-1kja6fh"),d(t,"id","cardEditor"),_e(t,"--content-width",l[9]+"px"),_e(t,"--content-height",l[8]+"px"),Pe(()=>l[20].call(t)),pe(t,"isLoaded",l[13])},m(B,L){E.block.m(B,E.anchor=L),E.mount=()=>e.parentNode,E.anchor=e,O(B,e,L),O(B,t,L),f(t,s),f(t,i),ie(n,t,null),f(t,o),z.m(t,null),f(t,c),ie(u,t,null),f(t,_),ie(m,t,null),f(t,v),ie(p,t,null),k=rs(t,l[20].bind(t)),O(B,y,L),T&&T.m(B,L),O(B,D,L),R&&R.m(B,L),O(B,V,L),I=!0},p(B,L){l=B,(!I||L[0]&16392&&!je(s.src,r=l[14][`blank/${l[3]}`]))&&d(s,"src",r);const j={};L[0]&8&&(j.selected=l[3]),n.$set(j),L[0]&64&&He(a,a=l[6])?(Ee(),M(z,1,1,we),ye(),z=ui(l),z.c(),N(z,1),z.m(t,c)):z.p(l,L);const U={};L[0]&1024&&(U.onBannerEdit=l[10]),u.$set(U);const A={};L[0]&1024&&(A.onBannerEdit=l[10]),L[0]&8&&(A.vision=l[3]),L[0]&1&&(A.bannerName=l[0]),L[0]&2&&(A.character=l[1]),L[0]&4&&(A.charTitle=l[2]),L[0]&16&&(A.watermark=l[4]),m.$set(A);const W={};L[0]&128&&(W.faceURL=l[7]?.faceURL),L[0]&1024&&(W.onBannerEdit=l[10]),p.$set(W),(!I||L[0]&512)&&_e(t,"--content-width",l[9]+"px"),(!I||L[0]&256)&&_e(t,"--content-height",l[8]+"px"),L[0]&8192&&pe(t,"isLoaded",l[13]),l[11]?T?(T.p(l,L),L[0]&2048&&N(T,1)):(T=fi(l),T.c(),N(T,1),T.m(D.parentNode,D)):T&&(Ee(),M(T,1,1,()=>{T=null}),ye()),l[12]?R?(R.p(l,L),L[0]&4096&&N(R,1)):(R=di(l),R.c(),N(R,1),R.m(V.parentNode,V)):R&&(Ee(),M(R,1,1,()=>{R=null}),ye())},i(B){I||(N(E.block),N(n.$$.fragment,B),N(z),N(u.$$.fragment,B),N(m.$$.fragment,B),N(p.$$.fragment,B),N(T),N(R),I=!0)},o(B){for(let L=0;L<3;L+=1){const j=E.blocks[L];M(j)}M(n.$$.fragment,B),M(z),M(u.$$.fragment,B),M(m.$$.fragment,B),M(p.$$.fragment,B),M(T),M(R),I=!1},d(B){E.block.d(B),E.token=null,E=null,B&&h(e),B&&h(t),ae(n),z.d(B),ae(u),ae(m),ae(p),k(),B&&h(y),T&&T.d(B),B&&h(D),R&&R.d(B),B&&h(V)}}}function Yf(l,e,t){let s,r,i,n,o;Z(l,jt,X=>t(24,r=X)),Z(l,is,X=>t(25,i=X)),Z(l,Vs,X=>t(26,n=X)),Z(l,wt,X=>t(14,o=X));let a,c,u=!1,_=!1,m=!1,v=!1,p=!1,k=n,y={},D="",V="",I="",E="",z="",T=[],R={artURL:!1,faceURL:!1,thumbnail:!1},B={banner:{},splashArt:{},wishCard:{}},L={};const j=Ys,U=async X=>{v||(t(13,v=!0),y=await j.get(X),t(0,{bannerName:D="",character:V="",charTitle:I="",watermark:z="",vision:E="pyro",rateup:T=[],artPosition:B={},images:L={},imgChanged:R={}}=y,D,t(1,V),t(2,I),t(4,z),t(3,E),t(5,T),t(6,B),t(7,L),t(18,R)))},A=async X=>{if(!v)return;if(!p)return p=!0;const $={...y,isChanged:!0,itemID:n,...X};delete $.lastModified,await j.put($);const{phase:me,patch:ve}=i;!(ve.match("local")&&me===k)||da(jt,r[0]={...$,type:"character-event"},r)},W=X=>t(12,m=X);Fe("editSplashArt",W),Fe("setPosition",(X,$)=>t(6,B[X]=$,B)),Fe("editBanner",X=>t(10,u=X)),Fe("editInfo",X=>t(11,_=X)),Fe("setVision",X=>t(3,E=X)),Fe("setRateup",X=>t(5,T=X)),Fe("setCharName",X=>t(1,V=X)),Fe("setCharTitle",X=>t(2,I=X)),Fe("setBannerName",X=>t(0,D=X)),Fe("setWatermark",X=>t(4,z=X)),Fe("changeArt",X=>{if(!X)return;const $=new FileReader;$.readAsDataURL(X),$.addEventListener("load",()=>{t(7,L.artURL=$.result,L),t(18,R.artURL=!0,R),t(10,u=!0)})}),Fe("changeFace",X=>{if(!X)return;const $=new FileReader;$.readAsDataURL(X),$.addEventListener("load",()=>{t(7,L.faceURL=$.result,L),t(18,R.faceURL=!0,R)})}),Fe("changeThumbnail",X=>{if(!X)return;const $=new FileReader;$.readAsDataURL(X),$.addEventListener("load",()=>{t(7,L.thumbnail=$.result,L),t(18,R.thumbnail=!0,R)})});function de(){c=this.clientWidth,a=this.clientHeight,t(9,c),t(8,a)}const ze=()=>W(!1);return l.$$.update=()=>{l.$$.dirty[0]&262399&&t(19,s={bannerName:D,character:V,charTitle:I,watermark:z,vision:E,rateup:T,artPosition:B,images:L,imgChanged:R}),l.$$.dirty[0]&524288&&A(s)},[D,V,I,E,z,T,B,L,a,c,u,_,m,v,o,k,U,W,R,s,de,ze]}class Xf extends Qe{constructor(e){super(),Je(this,e,Yf,Ff,He,{},null,[-1,-1])}}function Gf(l){let e,t,s=l[3]("customBanner.deletePrompt")+"",r,i,n,o;function a(m,v){return m[1]?Jf:Qf}let c=a(l),u=c(l),_=l[0]&&hi(l);return{c(){e=b("div"),t=b("span"),r=H(s),i=P(),u.c(),n=P(),_&&_.c(),this.h()},l(m){e=g(m,"DIV",{class:!0});var v=w(e);t=g(v,"SPAN",{});var p=w(t);r=F(p,s),p.forEach(h),i=S(v),u.l(v),n=S(v),_&&_.l(v),v.forEach(h),this.h()},h(){d(e,"class","wrapper")},m(m,v){O(m,e,v),f(e,t),f(t,r),f(e,i),u.m(e,null),f(e,n),_&&_.m(e,null)},p(m,v){v&8&&s!==(s=m[3]("customBanner.deletePrompt")+"")&&J(r,s),c===(c=a(m))&&u?u.p(m,v):(u.d(1),u=c(m),u&&(u.c(),u.m(e,n))),m[0]?_?_.p(m,v):(_=hi(m),_.c(),_.m(e,null)):_&&(_.d(1),_=null)},i(m){o||Pe(()=>{o=Ke(e,et,{}),o.start()})},o:we,d(m){m&&h(e),u.d(),_&&_.d()}}}function Kf(l){let e,t,s,r;return t=new us({props:{type:"loader"}}),{c(){e=b("div"),ne(t.$$.fragment),this.h()},l(i){e=g(i,"DIV",{class:!0});var n=w(e);fe(t.$$.fragment,n),n.forEach(h),this.h()},h(){d(e,"class","row loader svelte-1vkbej6")},m(i,n){O(i,e,n),ie(t,e,null),r=!0},p:we,i(i){r||(N(t.$$.fragment,i),s||Pe(()=>{s=Ke(e,et,{}),s.start()}),r=!0)},o(i){M(t.$$.fragment,i),r=!1},d(i){i&&h(e),ae(t)}}}function Qf(l){let e,t=l[3]("customBanner.userDeleteNote")+"",s;return{c(){e=b("small"),s=H(t),this.h()},l(r){e=g(r,"SMALL",{class:!0});var i=w(e);s=F(i,t),i.forEach(h),this.h()},h(){d(e,"class","svelte-1vkbej6")},m(r,i){O(r,e,i),f(e,s)},p(r,i){i&8&&t!==(t=r[3]("customBanner.userDeleteNote")+"")&&J(s,t)},d(r){r&&h(e)}}}function Jf(l){let e,t=l[3]("customBanner.ownerDeleteNote")+"",s;return{c(){e=b("small"),s=H(t),this.h()},l(r){e=g(r,"SMALL",{class:!0});var i=w(e);s=F(i,t),i.forEach(h),this.h()},h(){d(e,"class","svelte-1vkbej6")},m(r,i){O(r,e,i),f(e,s)},p(r,i){i&8&&t!==(t=r[3]("customBanner.ownerDeleteNote")+"")&&J(s,t)},d(r){r&&h(e)}}}function hi(l){let e,t,s,r;return{c(){e=b("img"),this.h()},l(i){e=g(i,"IMG",{alt:!0,class:!0,crossorigin:!0}),this.h()},h(){d(e,"alt","Delete this banner"),d(e,"class","selectedToDelete svelte-1vkbej6"),d(e,"crossorigin","anonymous")},m(i,n){O(i,e,n),s||(r=sr(t=ur.call(null,e,l[0])),s=!0)},p(i,n){t&&lr(t.update)&&n&1&&t.update.call(null,i[0])},d(i){i&&h(e),s=!1,r()}}}function Zf(l){let e,t,s,r;const i=[Kf,Gf],n=[];function o(a,c){return a[2]?0:1}return t=o(l),s=n[t]=i[t](l),{c(){e=b("div"),s.c(),this.h()},l(a){e=g(a,"DIV",{class:!0});var c=w(e);s.l(c),c.forEach(h),this.h()},h(){d(e,"class","confirmation svelte-1vkbej6")},m(a,c){O(a,e,c),n[t].m(e,null),r=!0},p(a,c){let u=t;t=o(a),t===u?n[t].p(a,c):(Ee(),M(n[u],1,1,()=>{n[u]=null}),ye(),s=n[t],s?s.p(a,c):(s=n[t]=i[t](a),s.c()),N(s,1),s.m(e,null))},i(a){r||(N(s),r=!0)},o(a){M(s),r=!1},d(a){a&&h(e),n[t].d()}}}function xf(l){let e,t;return e=new Nl({props:{title:"Remove Banner",disabled:l[2],$$slots:{default:[Zf]},$$scope:{ctx:l}}}),e.$on("confirm",l[5]),e.$on("cancel",l[7]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,[r]){const i={};r&4&&(i.disabled=s[2]),r&1039&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function e1(l,e,t){let s,r,i;Z(l,is,v=>t(8,s=v)),Z(l,Vs,v=>t(9,r=v)),Z(l,ct,v=>t(3,i=v));let{idToDelete:n=0}=e,o="",a=!1,c=!1;const u=gl(),_=async()=>{try{Be(),t(2,c=!0),n===r&&gs.set(!1);const{patch:v,phase:p}=s,k=v.match(/custom/gi)&&p==n,{status:y}=await Qi.deleteBanner(n);if(k&&Ds.set({patch:dl,phase:hl}),y!="ok")throw new Error;u("done"),t(2,c=!1)}catch{u("error"),t(2,c=!1)}};Et(async()=>{const{images:v={},hostedImages:p={},status:k}=await Ys.get(n);if(t(1,a=k==="owned"),a)return t(0,{thumbnail:o=""}=v,o);const{thumbnail:y=""}=p;t(0,o=Gi(y))});const m=()=>u("cancel");return l.$$set=v=>{"idToDelete"in v&&t(6,n=v.idToDelete)},[o,a,c,i,u,_,n,m]}class t1 extends Qe{constructor(e){super(),Je(this,e,e1,xf,He,{idToDelete:6})}}function mi(l,e,t){const s=l.slice();return s[28]=e[t],s[30]=t,s}function s1(l){let e,t,s,r,i=l[1],n=[];for(let u=0;u<i.length;u+=1)n[u]=vi(mi(l,i,u));const o=u=>M(n[u],1,1,()=>{n[u]=null});let a=l[2]>0&&pi(l),c=l[2]<l[1].length-1&&bi(l);return{c(){for(let u=0;u<n.length;u+=1)n[u].c();e=P(),t=b("div"),a&&a.c(),s=P(),c&&c.c(),this.h()},l(u){for(let m=0;m<n.length;m+=1)n[m].l(u);e=S(u),t=g(u,"DIV",{class:!0});var _=w(t);a&&a.l(_),s=S(_),c&&c.l(_),_.forEach(h),this.h()},h(){d(t,"class","navigate svelte-1fztub0")},m(u,_){for(let m=0;m<n.length;m+=1)n[m].m(u,_);O(u,e,_),O(u,t,_),a&&a.m(t,null),f(t,s),c&&c.m(t,null),r=!0},p(u,_){if(_[0]&2334){i=u[1];let m;for(m=0;m<i.length;m+=1){const v=mi(u,i,m);n[m]?(n[m].p(v,_),N(n[m],1)):(n[m]=vi(v),n[m].c(),N(n[m],1),n[m].m(e.parentNode,e))}for(Ee(),m=i.length;m<n.length;m+=1)o(m);ye()}u[2]>0?a?(a.p(u,_),_[0]&4&&N(a,1)):(a=pi(u),a.c(),N(a,1),a.m(t,s)):a&&(Ee(),M(a,1,1,()=>{a=null}),ye()),u[2]<u[1].length-1?c?(c.p(u,_),_[0]&6&&N(c,1)):(c=bi(u),c.c(),N(c,1),c.m(t,null)):c&&(Ee(),M(c,1,1,()=>{c=null}),ye())},i(u){if(!r){for(let _=0;_<i.length;_+=1)N(n[_]);N(a),N(c),r=!0}},o(u){n=n.filter(Boolean);for(let _=0;_<n.length;_+=1)M(n[_]);M(a),M(c),r=!1},d(u){Ut(n,u),u&&h(e),u&&h(t),a&&a.d(),c&&c.d()}}}function l1(l){let e=l[10],t,s,r=gi(l);return{c(){r.c(),t=We()},l(i){r.l(i),t=We()},m(i,n){r.m(i,n),O(i,t,n),s=!0},p(i,n){n[0]&1024&&He(e,e=i[10])?(Ee(),M(r,1,1,we),ye(),r=gi(i),r.c(),N(r,1),r.m(t.parentNode,t)):r.p(i,n)},i(i){s||(N(r),s=!0)},o(i){M(r),s=!1},d(i){i&&h(t),r.d(i)}}}function _i(l){let e,t,s,r;return t=new Yu({props:{data:l[28],editor:l[4],index:l[30],fullscreenEditor:l[11]&&l[3]}}),{c(){e=b("div"),ne(t.$$.fragment),this.h()},l(i){e=g(i,"DIV",{class:!0,style:!0});var n=w(e);fe(t.$$.fragment,n),n.forEach(h),this.h()},h(){d(e,"class","banner-item svelte-1fztub0"),d(e,"style",l[8]),pe(e,"editorOpen",l[4]),pe(e,"fullscreen",l[11]&&l[3])},m(i,n){O(i,e,n),ie(t,e,null),r=!0},p(i,n){const o={};n[0]&2&&(o.data=i[28]),n[0]&16&&(o.editor=i[4]),n[0]&2056&&(o.fullscreenEditor=i[11]&&i[3]),t.$set(o),(!r||n[0]&256)&&d(e,"style",i[8]),n[0]&16&&pe(e,"editorOpen",i[4]),n[0]&2056&&pe(e,"fullscreen",i[11]&&i[3])},i(i){r||(N(t.$$.fragment,i),s||Pe(()=>{s=Ke(e,lt,{x:25,duration:580}),s.start()}),r=!0)},o(i){M(t.$$.fragment,i),r=!1},d(i){i&&h(e),ae(t)}}}function vi(l){let e,t,s=l[2]===l[30]&&_i(l);return{c(){s&&s.c(),e=We()},l(r){s&&s.l(r),e=We()},m(r,i){s&&s.m(r,i),O(r,e,i),t=!0},p(r,i){r[2]===r[30]?s?(s.p(r,i),i[0]&4&&N(s,1)):(s=_i(r),s.c(),N(s,1),s.m(e.parentNode,e)):s&&(Ee(),M(s,1,1,()=>{s=null}),ye())},i(r){t||(N(s),t=!0)},o(r){M(s),t=!1},d(r){s&&s.d(r),r&&h(e)}}}function pi(l){let e,t,s,r,i,n;return{c(){e=b("button"),t=b("i"),this.h()},l(o){e=g(o,"BUTTON",{class:!0,style:!0});var a=w(e);t=g(a,"I",{class:!0}),w(t).forEach(h),a.forEach(h),this.h()},h(){d(t,"class","gi-arrow-left"),d(e,"class","left svelte-1fztub0"),_e(e,"margin-right","auto")},m(o,a){O(o,e,a),f(e,t),r=!0,i||(n=ge(e,"click",l[24]),i=!0)},p:we,i(o){r||(o&&Pe(()=>{s||(s=ot(e,et,{duration:200},!0)),s.run(1)}),r=!0)},o(o){o&&(s||(s=ot(e,et,{duration:200},!1)),s.run(0)),r=!1},d(o){o&&h(e),o&&s&&s.end(),i=!1,n()}}}function bi(l){let e,t,s,r,i,n;return{c(){e=b("button"),t=b("i"),this.h()},l(o){e=g(o,"BUTTON",{class:!0,style:!0});var a=w(e);t=g(a,"I",{class:!0}),w(t).forEach(h),a.forEach(h),this.h()},h(){d(t,"class","gi-arrow-right"),d(e,"class","left svelte-1fztub0"),_e(e,"margin-left","auto")},m(o,a){O(o,e,a),f(e,t),r=!0,i||(n=ge(e,"click",l[25]),i=!0)},p:we,i(o){r||(o&&Pe(()=>{s||(s=ot(e,et,{duration:200},!0)),s.run(1)}),r=!0)},o(o){o&&(s||(s=ot(e,et,{duration:200},!1)),s.run(0)),r=!1},d(o){o&&h(e),o&&s&&s.end(),i=!1,n()}}}function gi(l){let e,t,s,r;return t=new Xf({}),{c(){e=b("div"),ne(t.$$.fragment),this.h()},l(i){e=g(i,"DIV",{class:!0,style:!0});var n=w(e);fe(t.$$.fragment,n),n.forEach(h),this.h()},h(){d(e,"class","banner-item svelte-1fztub0"),d(e,"style",l[8])},m(i,n){O(i,e,n),ie(t,e,null),r=!0},p(i,n){(!r||n[0]&256)&&d(e,"style",i[8])},i(i){r||(N(t.$$.fragment,i),s||Pe(()=>{s=Ke(e,lt,{x:25,duration:580}),s.start()}),r=!0)},o(i){M(t.$$.fragment,i),r=!1},d(i){i&&h(e),ae(t)}}}function wi(l){let e,t;return e=new Nl({props:{title:"Back to Default",$$slots:{default:[r1]},$$scope:{ctx:l}}}),e.$on("cancel",l[16]),e.$on("confirm",l[15]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&4097|r[1]&1&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function r1(l){let e,t,s=l[12]("editor.resetPrompt",{values:{banner:l[12](`wish.banner.${l[0]}`)}})+"";return{c(){e=b("div"),t=b("p"),this.h()},l(r){e=g(r,"DIV",{class:!0});var i=w(e);t=g(i,"P",{});var n=w(t);n.forEach(h),i.forEach(h),this.h()},h(){d(e,"class","modal-content svelte-1fztub0")},m(r,i){O(r,e,i),f(e,t),t.innerHTML=s},p(r,i){i[0]&4097&&s!==(s=r[12]("editor.resetPrompt",{values:{banner:r[12](`wish.banner.${r[0]}`)}})+"")&&(t.innerHTML=s)},d(r){r&&h(e)}}}function ki(l){let e,t;return e=new t1({props:{idToDelete:l[13].itemID}}),e.$on("cancel",l[16]),e.$on("done",l[17]),e.$on("error",l[18]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&8192&&(i.idToDelete=s[13].itemID),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function n1(l){let e,t,s,r,i,n,o;const a=[l1,s1],c=[];function u(v,p){return v[9]?0:1}t=u(l),s=c[t]=a[t](l);let _=l[5]&&wi(l),m=l[6]&&ki(l);return{c(){e=b("div"),s.c(),r=P(),_&&_.c(),i=P(),m&&m.c(),n=We(),this.h()},l(v){e=g(v,"DIV",{class:!0,style:!0});var p=w(e);s.l(p),p.forEach(h),r=S(v),_&&_.l(v),i=S(v),m&&m.l(v),n=We(),this.h()},h(){d(e,"class","banner-container svelte-1fztub0"),d(e,"style",l[7]),pe(e,"editMode",l[9])},m(v,p){O(v,e,p),c[t].m(e,null),O(v,r,p),_&&_.m(v,p),O(v,i,p),m&&m.m(v,p),O(v,n,p),o=!0},p(v,p){let k=t;t=u(v),t===k?c[t].p(v,p):(Ee(),M(c[k],1,1,()=>{c[k]=null}),ye(),s=c[t],s?s.p(v,p):(s=c[t]=a[t](v),s.c()),N(s,1),s.m(e,null)),(!o||p[0]&128)&&d(e,"style",v[7]),p[0]&512&&pe(e,"editMode",v[9]),v[5]?_?(_.p(v,p),p[0]&32&&N(_,1)):(_=wi(v),_.c(),N(_,1),_.m(i.parentNode,i)):_&&(Ee(),M(_,1,1,()=>{_=null}),ye()),v[6]?m?(m.p(v,p),p[0]&64&&N(m,1)):(m=ki(v),m.c(),N(m,1),m.m(n.parentNode,n)):m&&(Ee(),M(m,1,1,()=>{m=null}),ye())},i(v){o||(N(s),N(_),N(m),o=!0)},o(v){M(s),M(_),M(m),o=!1},d(v){v&&h(e),c[t].d(),v&&h(r),_&&_.d(v),v&&h(i),m&&m.d(v),v&&h(n)}}}function i1(l,e,t){let s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V;Z(l,jt,Q=>t(1,a=Q)),Z(l,Ft,Q=>t(2,u=Q)),Z(l,or,Q=>t(22,_=Q)),Z(l,Fs,Q=>t(23,m=Q)),Z(l,ar,Q=>t(3,v=Q)),Z(l,gs,Q=>t(9,p=Q)),Z(l,Vs,Q=>t(10,k=Q)),Z(l,Vl,Q=>t(11,y=Q)),Z(l,ct,Q=>t(12,D=Q)),Z(l,$s,Q=>t(13,V=Q));const I=Q=>{if(Q==="right")return u>=a.length-1?void 0:(Be("changebanner"),Ft.update(C=>C+1));if(Q==="left")return u<=0?void 0:(Be("changebanner"),Ft.update(C=>C-1))};let E=!1;Fe("editprob",()=>{Be("bookflip"),t(4,E=!E)});let T=!1,R=!1;Fe("showModalReset",()=>{t(5,T=!0)});const B=()=>{Be("modal"),Be("bookflip"),pa.reset(o),t(5,T=!1),t(4,E=!1)},L=()=>{Be("close"),t(5,T=!1),t(6,R=!1)};Fe("deleteBanner",()=>{t(6,R=!0),Be()});const j=()=>{Jt({message:"Banner Removed",type:"success"}),t(6,R=!1)},U=()=>{Jt({message:"Failed to Remove",type:"error"})},A=Re("onWish");Z(l,A,Q=>t(26,c=Q)),nt("right,left,up,down","index",Q=>{if(c)return;Q.preventDefault();const[C]=nt.getPressedKeyString();if(C==="up")return I("left");if(C==="down")return I("right");I(C)}),nt("1,2,3,4,5","index",Q=>{if(c)return;Q.preventDefault();const C=nt.getPressedKeyString(),q=parseInt(C)-1;C>a.length||(Ft.set(q),Be("changebanner"))});const W=()=>I("left"),Y=()=>I("right");return l.$$.update=()=>{l.$$.dirty[0]&12582912&&t(21,s=_/2.1>m),l.$$.dirty[0]&2097152&&t(20,r=s?"width: 90vh":""),l.$$.dirty[0]&9437192&&t(8,i=v?`max-width: ${150/100*m}px;`:r),l.$$.dirty[0]&12582912&&t(7,n=m>800||m>_||m/_>.5?"align-items:center;":""),l.$$.dirty[0]&6&&t(0,o=a[u]?.type),l.$$.dirty[0]&1&&o==="beginner"&&t(4,E=!1)},[o,a,u,v,E,T,R,n,i,p,k,y,D,V,I,B,L,j,U,A,r,s,_,m,W,Y]}class a1 extends Qe{constructor(e){super(),Je(this,e,i1,n1,He,{},null,[-1,-1])}}function o1(l){let e,t,s,r,i,n,o,a,c,u,_,m,v;return{c(){e=ft("svg"),t=ft("defs"),s=ft("g"),r=ft("metadata"),i=ft("path"),o=ft("path"),c=ft("path"),u=ft("path"),_=ft("path"),m=ft("path"),this.h()},l(p){e=dt(p,"svg",{class:!0,xmlns:!0,"xml:space":!0,width:!0,height:!0,version:!0,style:!0,viewBox:!0,"xmlns:xlink":!0});var k=w(e);t=dt(k,"defs",{}),w(t).forEach(h),s=dt(k,"g",{id:!0});var y=w(s);r=dt(y,"metadata",{id:!0}),w(r).forEach(h),i=dt(y,"path",{class:!0,d:!0}),w(i).forEach(h),o=dt(y,"path",{class:!0,d:!0}),w(o).forEach(h),c=dt(y,"path",{class:!0,d:!0}),w(c).forEach(h),u=dt(y,"path",{class:!0,d:!0}),w(u).forEach(h),_=dt(y,"path",{class:!0,d:!0}),w(_).forEach(h),m=dt(y,"path",{class:!0,d:!0}),w(m).forEach(h),y.forEach(h),k.forEach(h),this.h()},h(){d(r,"id","CorelCorpID_0Corel-Layer"),d(i,"class",n=(l[1]>0?"filled":"")+" "+(l[0]==="bg"?"fil1":"fil0")+" svelte-1n1ouqa"),d(i,"d","M1237835 754784c-41627,24154 -57713,54476 -62457,79583 -33219,176299 -172756,315073 -349462,347141 -25370,4606 -50457,11941 -76748,59882 -22997,-39721 -55914,-55418 -81993,-60308 -179134,-33502 -319645,-176741 -349037,-357292 -3738,-22943 -12543,-47658 -61831,-69006l107099 0c804,211542 172526,382804 384273,382804 211731,0 383470,-171245 384274,-382804l105882 0z"),d(o,"class",a=(l[1]===2?"filled":"")+" "+(l[0]==="bg"?"fil1":"fil0")+" svelte-1n1ouqa"),d(o,"d","M752463 258628c26291,50936 54372,62469 82613,68209 168468,34335 301555,166006 337946,333729 6484,29871 16476,66296 70689,90940 -2014,1079 -3971,2172 -5876,3278l-105882 0c2,-498 19,-991 19,-1489 0,-212228 -172047,-384292 -384293,-384292 -212228,0 -384292,172047 -384292,384292 0,498 17,991 19,1489l-107099 0c52566,-19719 58058,-48597 61725,-71328 28241,-175111 160956,-315250 332170,-354422 31341,-7175 75987,-11250 102279,-70406l-18 0z"),d(c,"class","fil1 svelte-1n1ouqa"),d(c,"d","M751489 18l60785 226720c6804,25370 40501,32740 68298,39260l-8486 39544 -1293 -691c-55223,2374 -121395,-68493 -112714,-91276l13146 -34495 -24644 -45992 -19719 54213 12845 22996c7600,13606 -8132,48987 -38357,73595 -21508,17504 -51112,28807 -80983,26788l-6307 -41971c27957,-4412 56694,-213 66792,-33768l70637 -234941 0 18zm479803 614060c4411,27957 212,56693 33768,66792l234941 70636 -226721 60786c-25370,6803 -32740,40500 -39260,68298l-39544 -8486 691 -1294c-2374,-55223 68493,-121394 91277,-112713l34494 13145 45993 -24643 -54213 -19719 -22997 12844c-13606,7601 -48986,-8131 -73595,-38356 -17504,-21508 -28807,-51113 -26787,-80983l41970 -6307 -17 0zm-345352 617231c-27957,4412 -56693,213 -66791,33768l-70637 234941 -60786 -226720c-6803,-25371 -40500,-32741 -68298,-39260l8487 -39544 1293 691c55223,-2374 121395,68493 112713,91276l-13145 34495 24644 45992 19718 -54213 -12844 -22996c-7601,-13607 8132,-48987 38356,-73595 21508,-17504 51113,-28808 80983,-26788l6307 41971 0 -18zm-617231 -345351c-4412,-27957 -213,-56693 -33768,-66792l-234941 -70636 226720 -60786c25371,-6803 32741,-40501 39261,-68298l39543 8486 -691 1294c2374,55222 -68492,121394 -91276,112713l-34495 -13146 -45992 24644 54213 19719 22996 -12845c13607,-7600 48987,8132 73595,38357 17504,21508 28808,51112 26788,80983l-41971 6307 18 0z"),d(u,"class","fil1 svelte-1n1ouqa"),d(u,"d","M820743 133283c91099,116664 206594,101800 284937,176298l3207 2534 -9726 50864 -22306 -17716c-61264,-58253 -147261,-57066 -223124,-121501l-32988 -90497 0 0 0 18zm375186 249185c95121,112625 59138,196106 170523,288675l-77794 -19896c-69839,-75951 -50049,-148040 -131847,-242506l-13589 -10789 52707 -15502 0 18zm170807 438293c-116665,91099 -101800,206594 -176299,284937l-2533 3207 -50865 -9727 17717 -22305c58252,-61264 57065,-147261 121501,-223124l90496 -32988 0 0 -17 0zm-249185 375186c-112625,95121 -196106,59138 -288676,170523l19896 -77794c75951,-69839 148040,-50050 242506,-131848l10789 -13588 15502 52707 -17 0zm-438293 170806c-91100,-116664 -206595,-101800 -284938,-176298l-3207 -2534 9727 -50865 22305 17717c61265,58253 147261,57066 223124,121501l32989 90497 0 0 0 -18zm-375187 -249185c-95120,-112625 -59138,-196106 -170523,-288675l77794 19895c69839,75952 50050,148041 131848,242506l13589 10790 -52708 15502 0 -18zm-170806 -438293c116664,-91099 101800,-206594 176299,-284937l2533 -3207 50865 9727 -17717 22305c-58252,61264 -57065,147261 -121501,223124l-90497 32988 0 0 18 0zm249185 -375186c112625,-95121 196106,-59138 288676,-170523l-19896 77794c-75952,69839 -148041,50050 -242506,131847l-10790 13589 -15502 -52707 18 0z"),d(_,"class","fil1 svelte-1n1ouqa"),d(_,"d","M1128694 1220874c26841,2374 67359,15608 98576,36975 -9850,-34495 -10559,-79052 -8539,-110269 -28843,0 -65393,-24449 -114681,-60591 21367,50936 24644,105042 24644,133903l0 -18zm-762845 -948267c-26840,-2375 -67358,-15609 -98575,-36975 9850,34494 10559,79052 8539,110268 28843,0 65393,24449 114680,60591 -21366,-50935 -24644,-105042 -24644,-133902l0 18zm762845 0c26841,-2375 67359,-15609 98576,-36975 -9850,34494 -10559,79052 -8539,110268 -28843,0 -65393,24449 -114681,60591 21367,-50935 24644,-105042 24644,-133902l0 18zm-762845 948267c-26840,2374 -67358,15608 -98575,36975 9850,-34495 10559,-79052 8539,-110269 28843,0 65393,-24449 114680,-60591 -21366,50936 -24644,105042 -24644,133903l0 -18z"),d(m,"class","fil1 svelte-1n1ouqa"),d(m,"d","M738201 377613l-31748 28878c21348,14794 32864,29871 44362,52867 11498,-24644 24644,-39721 44363,-49589l-34371 -32191c21385,602 42326,3029 62664,7087l22465 22464c-73754,65074 -83623,116151 -91825,226225 32864,-294221 335164,-220290 179080,-77351 42715,-116647 -96928,-114999 -175785,110073l-4164 69272c45515,-77935 86316,-197416 152027,-139908 65711,57508 -64081,113369 -139731,150521l66774 -4961c234941,-77227 236730,-207533 110375,-172808 126497,-154437 241213,144887 -75881,174456 90037,-4447 154437,3295 228670,-85944l19878 19878c4004,20020 6395,40625 7051,61672l-28878 -31748c-14794,21348 -29871,32864 -52867,44362 24644,11498 39721,24644 49589,44363l32191 -34371c-602,21385 -3029,42326 -7086,62664l-22465 22465c-65073,-73754 -116151,-83623 -226224,-91825 294221,32864 220289,335164 77351,179080 116646,42715 114999,-96928 -110074,-175785l-69272 -4164c77935,45515 197417,86316 139908,152027 -57508,65711 -113369,-64081 -150521,-139731l4961 66774c77227,234941 207533,236730 172809,110375 154436,126497 -144887,241212 -174457,-75881 4447,90037 -3295,154437 85944,228670l-19878 19878c-20020,4004 -40624,6395 -61672,7051l31748 -28878c-21348,-14794 -32864,-29871 -44362,-52867 -11498,24644 -24644,39721 -44363,49589l34371 32191c-21384,-602 -42325,-3029 -62664,-7086l-22465 -22465c73755,-65073 83623,-116151 91826,-226224 -32865,294221 -335165,220289 -179081,77351 -42715,116646 96928,114999 175785,-110074l4164 -69272c-45514,77935 -86316,197417 -152027,139908 -65711,-57508 64081,-113369 139731,-150521l-66774 4961c-234941,77227 -236730,207533 -110375,172809 -126497,154436 -241212,-144887 75881,-174457 -90036,4447 -154437,-3295 -228669,85944l-19879 -19878c-4004,-20020 -6395,-40624 -7051,-61672l28878 31748c14794,-21348 29871,-32864 52867,-44362 -24644,-11498 -39721,-24644 -49589,-44363l-32191 34371c602,-21384 3029,-42325 7086,-62664l22465 -22465c65074,73755 116151,83623 226225,91826 -294221,-32865 -220290,-335165 -77352,-179081 -116646,-42715 -114999,96928 110074,175785l69272 4164c-77935,-45514 -197417,-86316 -139908,-152027 57508,-65711 113369,64081 150521,139731l-4961 -66774c-77227,-234941 -207533,-236730 -172808,-110375 -154437,-126497 144887,-241212 174456,75881 -4447,-90036 3295,-154436 -85944,-228669l19878 -19878c20020,-4004 40625,-6396 61672,-7052z"),d(s,"id","Layer_x0020_1"),d(e,"class",v=l[0]+" "+(l[1]>1?"full":"")+" svelte-1n1ouqa"),d(e,"xmlns","http://www.w3.org/2000/svg"),d(e,"xml:space","preserve"),d(e,"width","100%"),d(e,"height","100%"),d(e,"version","1.1"),_e(e,"shape-rendering","geometricPrecision"),_e(e,"text-rendering","geometricPrecision"),_e(e,"image-rendering","optimizeQuality"),_e(e,"fill-rule","evenodd"),_e(e,"clip-rule","evenodd"),d(e,"viewBox","0 0 1500001 1500018"),d(e,"xmlns:xlink","http://www.w3.org/1999/xlink")},m(p,k){O(p,e,k),f(e,t),f(e,s),f(s,r),f(s,i),f(s,o),f(s,c),f(s,u),f(s,_),f(s,m)},p(p,[k]){k&3&&n!==(n=(p[1]>0?"filled":"")+" "+(p[0]==="bg"?"fil1":"fil0")+" svelte-1n1ouqa")&&d(i,"class",n),k&3&&a!==(a=(p[1]===2?"filled":"")+" "+(p[0]==="bg"?"fil1":"fil0")+" svelte-1n1ouqa")&&d(o,"class",a),k&3&&v!==(v=p[0]+" "+(p[1]>1?"full":"")+" svelte-1n1ouqa")&&d(e,"class",v)},i:we,o:we,d(p){p&&h(e)}}}function c1(l,e,t){let s,r;Z(l,Qt,n=>t(2,r=n));let{mode:i=""}=e;return l.$$set=n=>{"mode"in n&&t(0,i=n.mode)},l.$$.update=()=>{l.$$.dirty&4&&t(1,s=r.point)},[i,s,r]}class u1 extends Qe{constructor(e){super(),Je(this,e,c1,o1,He,{mode:0})}}function Ei(l,e,t){const s=l.slice();return s[29]=e[t].name,s[30]=e[t].weaponType,s[32]=t,s}function yi(l,e,t){const s=l.slice();return s[33]=e[t],s}function Ii(l){let e,t;return e=new Nl({props:{$$slots:{default:[f1]},$$scope:{ctx:l}}}),e.$on("confirm",l[19]),e.$on("cancel",l[16]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&512|r[1]&32&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function f1(l){let e,t,s=l[9]("wish.epitomizedPath.cancelPrompt")+"",r,i,n,o,a,c=l[9]("wish.epitomizedPath.cancelDesc")+"",u;return{c(){e=b("div"),t=b("div"),r=H(s),i=P(),n=b("br"),o=P(),a=b("span"),u=H(c),this.h()},l(_){e=g(_,"DIV",{class:!0,style:!0});var m=w(e);t=g(m,"DIV",{});var v=w(t);r=F(v,s),i=S(v),n=g(v,"BR",{}),o=S(v),a=g(v,"SPAN",{style:!0,class:!0});var p=w(a);u=F(p,c),p.forEach(h),v.forEach(h),m.forEach(h),this.h()},h(){_e(a,"font-size","smaller"),_e(a,"padding","2rem"),d(a,"class","svelte-mpifkm"),d(e,"class","pop-up"),_e(e,"display","flex"),_e(e,"width","100%"),_e(e,"height","100%"),_e(e,"justify-content","center"),_e(e,"align-items","center")},m(_,m){O(_,e,m),f(e,t),f(t,r),f(t,i),f(t,n),f(t,o),f(t,a),f(a,u)},p(_,m){m[0]&512&&s!==(s=_[9]("wish.epitomizedPath.cancelPrompt")+"")&&J(r,s),m[0]&512&&c!==(c=_[9]("wish.epitomizedPath.cancelDesc")+"")&&J(u,c)},d(_){_&&h(e)}}}function Di(l){let e,t,s=l[9]("wish.epitomizedPath.text")+"",r,i,n,o=l[11]("wish.epitomizedPath.description"),a=[];for(let c=0;c<o.length;c+=1)a[c]=zi(yi(l,o,c));return{c(){e=b("div"),t=b("h1"),r=H(s),i=P(),n=b("div");for(let c=0;c<a.length;c+=1)a[c].c();this.h()},l(c){e=g(c,"DIV",{class:!0});var u=w(e);t=g(u,"H1",{class:!0});var _=w(t);r=F(_,s),_.forEach(h),i=S(u),n=g(u,"DIV",{class:!0});var m=w(n);for(let v=0;v<a.length;v+=1)a[v].l(m);m.forEach(h),u.forEach(h),this.h()},h(){d(t,"class","svelte-mpifkm"),d(n,"class","content svelte-mpifkm"),d(e,"class","description svelte-mpifkm")},m(c,u){O(c,e,u),f(e,t),f(t,r),f(e,i),f(e,n);for(let _=0;_<a.length;_+=1)a[_].m(n,null);l[22](n)},p(c,u){if(u[0]&512&&s!==(s=c[9]("wish.epitomizedPath.text")+"")&&J(r,s),u[0]&2048){o=c[11]("wish.epitomizedPath.description");let _;for(_=0;_<o.length;_+=1){const m=yi(c,o,_);a[_]?a[_].p(m,u):(a[_]=zi(m),a[_].c(),a[_].m(n,null))}for(;_<a.length;_+=1)a[_].d(1);a.length=o.length}},d(c){c&&h(e),Ut(a,c),l[22](null)}}}function zi(l){let e,t,s,r=l[33]+"",i;return{c(){e=b("p"),t=H("\xB7 "),s=new cl(!1),i=P(),this.h()},l(n){e=g(n,"P",{class:!0});var o=w(e);t=F(o,"\xB7 "),s=ul(o,!1),i=S(o),o.forEach(h),this.h()},h(){s.a=i,d(e,"class","svelte-mpifkm")},m(n,o){O(n,e,o),f(e,t),s.m(r,e),f(e,i)},p(n,o){o[0]&2048&&r!==(r=n[33]+"")&&s.p(r)},d(n){n&&h(e)}}}function d1(l){let e,t,s=l[13],r=[];for(let n=0;n<s.length;n+=1)r[n]=Vi(Ei(l,s,n));const i=n=>M(r[n],1,1,()=>{r[n]=null});return{c(){for(let n=0;n<r.length;n+=1)r[n].c();e=We()},l(n){for(let o=0;o<r.length;o+=1)r[o].l(n);e=We()},m(n,o){for(let a=0;a<r.length;a+=1)r[a].m(n,o);O(n,e,o),t=!0},p(n,o){if(o[0]&24640){s=n[13];let a;for(a=0;a<s.length;a+=1){const c=Ei(n,s,a);r[a]?(r[a].p(c,o),N(r[a],1)):(r[a]=Vi(c),r[a].c(),N(r[a],1),r[a].m(e.parentNode,e))}for(Ee(),a=s.length;a<r.length;a+=1)i(a);ye()}},i(n){if(!t){for(let o=0;o<s.length;o+=1)N(r[o]);t=!0}},o(n){r=r.filter(Boolean);for(let o=0;o<r.length;o+=1)M(r[o]);t=!1},d(n){Ut(r,n),n&&h(e)}}}function h1(l){let e,t,s,r;return s=new Sl({props:{itemdata:{name:l[4],weaponType:l[13][l[5]].weaponType,type:"weapon",rarity:5}}}),{c(){e=b("div"),t=b("button"),ne(s.$$.fragment),this.h()},l(i){e=g(i,"DIV",{class:!0});var n=w(e);t=g(n,"BUTTON",{class:!0});var o=w(t);fe(s.$$.fragment,o),o.forEach(h),n.forEach(h),this.h()},h(){d(t,"class","svelte-mpifkm"),d(e,"class","weapon-content svelte-mpifkm")},m(i,n){O(i,e,n),f(e,t),ie(s,t,null),r=!0},p(i,n){const o={};n[0]&48&&(o.itemdata={name:i[4],weaponType:i[13][i[5]].weaponType,type:"weapon",rarity:5}),s.$set(o)},i(i){r||(N(s.$$.fragment,i),r=!0)},o(i){M(s.$$.fragment,i),r=!1},d(i){i&&h(e),ae(s)}}}function Vi(l){let e,t,s,r,i,n,o;s=new Sl({props:{itemdata:{name:l[29],weaponType:l[30],type:"weapon",rarity:5}}});function a(){return l[23](l[32])}return{c(){e=b("div"),t=b("button"),ne(s.$$.fragment),r=P(),this.h()},l(c){e=g(c,"DIV",{class:!0});var u=w(e);t=g(u,"BUTTON",{class:!0});var _=w(t);fe(s.$$.fragment,_),_.forEach(h),r=S(u),u.forEach(h),this.h()},h(){d(t,"class","svelte-mpifkm"),d(e,"class","weapon-content svelte-mpifkm"),pe(e,"active",l[6]===l[32])},m(c,u){O(c,e,u),f(e,t),ie(s,t,null),f(e,r),i=!0,n||(o=ge(e,"click",a),n=!0)},p(c,u){l=c,u[0]&64&&pe(e,"active",l[6]===l[32])},i(c){i||(N(s.$$.fragment,c),i=!0)},o(c){M(s.$$.fragment,c),i=!1},d(c){c&&h(e),ae(s),n=!1,o()}}}function m1(l){let e,t=l[9]("wish.epitomizedPath.chartCourseOf",{values:{target:`<span> ${l[9](l[13][l[6]].name)} </span>`}})+"",s;return{c(){e=new cl(!1),s=We(),this.h()},l(r){e=ul(r,!1),s=We(),this.h()},h(){e.a=s},m(r,i){e.m(t,r,i),O(r,s,i)},p(r,i){i[0]&576&&t!==(t=r[9]("wish.epitomizedPath.chartCourseOf",{values:{target:`<span> ${r[9](r[13][r[6]].name)} </span>`}})+"")&&e.p(t)},d(r){r&&h(s),r&&e.d()}}}function _1(l){let e=l[9]("wish.epitomizedPath.selectWeapon")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&512&&e!==(e=s[9]("wish.epitomizedPath.selectWeapon")+"")&&J(t,e)},d(s){s&&h(t)}}}function v1(l){let e=l[9]("wish.epitomizedPath.fatePoint")+"",t,s,r,i=l[12].point+"",n,o;return{c(){t=H(e),s=H(" : "),r=b("span"),n=H(i),o=H("/2"),this.h()},l(a){t=F(a,e),s=F(a," : "),r=g(a,"SPAN",{class:!0});var c=w(r);n=F(c,i),c.forEach(h),o=F(a,"/2"),this.h()},h(){d(r,"class","svelte-mpifkm")},m(a,c){O(a,t,c),O(a,s,c),O(a,r,c),f(r,n),O(a,o,c)},p(a,c){c[0]&512&&e!==(e=a[9]("wish.epitomizedPath.fatePoint")+"")&&J(t,e),c[0]&4096&&i!==(i=a[12].point+"")&&J(n,i)},d(a){a&&h(t),a&&h(s),a&&h(r),a&&h(o)}}}function p1(l){let e,t;return e=new Zt({props:{disabled:l[6]===null,$$slots:{default:[g1]},$$scope:{ctx:l}}}),e.$on("click",l[18]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&64&&(i.disabled=s[6]===null),r[0]&512|r[1]&32&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function b1(l){let e,t;return e=new Zt({props:{type:"cancel",$$slots:{default:[w1]},$$scope:{ctx:l}}}),e.$on("click",l[17]),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&512|r[1]&32&&(i.$$scope={dirty:r,ctx:s}),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function g1(l){let e=l[9]("wish.epitomizedPath.chartCourse")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&512&&e!==(e=s[9]("wish.epitomizedPath.chartCourse")+"")&&J(t,e)},d(s){s&&h(t)}}}function w1(l){let e=l[9]("wish.epitomizedPath.cancelCourse")+"",t;return{c(){t=H(e)},l(s){t=F(s,e)},m(s,r){O(s,t,r)},p(s,r){r[0]&512&&e!==(e=s[9]("wish.epitomizedPath.cancelCourse")+"")&&J(t,e)},d(s){s&&h(t)}}}function k1(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D=l[9]("wish.epitomizedPath.selectWeapon")+"",V,I,E,z,T,R,B,L,j,U,A,W,Y,Q,C,q,te,re,K,le=l[7]&&Ii(l),ce=!l[8]&&Di(l);p=new u1({props:{mode:l[4]?"counter":"bg"}});const se=[h1,d1],x=[];function ee(G,he){return G[4]?0:1}T=ee(l),R=x[T]=se[T](l);function de(G,he){return G[4]?v1:G[6]===null?_1:m1}let ze=de(l),X=ze(l);const $=[b1,p1],me=[];function ve(G,he){return G[4]?0:1}return W=ve(l),Y=me[W]=$[W](l),{c(){le&&le.c(),e=P(),t=b("section"),s=b("div"),r=b("img"),n=P(),o=b("button"),a=b("i"),c=P(),u=b("div"),ce&&ce.c(),_=P(),m=b("div"),v=b("div"),ne(p.$$.fragment),k=P(),y=b("div"),V=H(D),I=P(),E=b("div"),z=b("div"),R.c(),B=P(),L=b("div"),j=b("div"),X.c(),U=P(),A=b("div"),Y.c(),this.h()},l(G){le&&le.l(G),e=S(G),t=g(G,"SECTION",{class:!0,style:!0});var he=w(t);s=g(he,"DIV",{class:!0,style:!0});var ke=w(s);r=g(ke,"IMG",{src:!0,alt:!0,class:!0}),n=S(ke),o=g(ke,"BUTTON",{class:!0});var Ie=w(o);a=g(Ie,"I",{class:!0}),w(a).forEach(h),Ie.forEach(h),c=S(ke),u=g(ke,"DIV",{class:!0});var be=w(u);ce&&ce.l(be),_=S(be),m=g(be,"DIV",{class:!0});var Te=w(m);v=g(Te,"DIV",{class:!0});var qe=w(v);fe(p.$$.fragment,qe),qe.forEach(h),k=S(Te),y=g(Te,"DIV",{class:!0});var Ze=w(y);V=F(Ze,D),Ze.forEach(h),I=S(Te),E=g(Te,"DIV",{class:!0});var Me=w(E);z=g(Me,"DIV",{class:!0,style:!0});var Ue=w(z);R.l(Ue),Ue.forEach(h),B=S(Me),L=g(Me,"DIV",{class:!0});var tt=w(L);j=g(tt,"DIV",{});var Le=w(j);X.l(Le),Le.forEach(h),tt.forEach(h),Me.forEach(h),U=S(Te),A=g(Te,"DIV",{class:!0});var Ae=w(A);Y.l(Ae),Ae.forEach(h),Te.forEach(h),be.forEach(h),ke.forEach(h),he.forEach(h),this.h()},h(){je(r.src,i=l[10][`fatepointbook${l[8]?"-half":""}.webp`])||d(r,"src",i),d(r,"alt","Fatepoint Background"),d(r,"class","svelte-mpifkm"),d(a,"class","gi-close svelte-mpifkm"),d(o,"class","close-modal svelte-mpifkm"),d(v,"class","bg svelte-mpifkm"),d(y,"class","top svelte-mpifkm"),d(z,"class","weapon-list svelte-mpifkm"),_e(z,"--item-width",l[0]+"px"),d(L,"class","text svelte-mpifkm"),d(E,"class","weapon-item svelte-mpifkm"),d(A,"class","button svelte-mpifkm"),d(m,"class","weapon-selector svelte-mpifkm"),pe(m,"counter",l[4]),d(u,"class","container svelte-mpifkm"),d(s,"class","modal-content svelte-mpifkm"),_e(s,"--modal-width",l[2]+"px"),Pe(()=>l[24].call(s)),d(t,"class","modal svelte-mpifkm"),_e(t,"height",l[1]+"px")},m(G,he){le&&le.m(G,he),O(G,e,he),O(G,t,he),f(t,s),f(s,r),f(s,n),f(s,o),f(o,a),f(s,c),f(s,u),ce&&ce.m(u,null),f(u,_),f(u,m),f(m,v),ie(p,v,null),f(m,k),f(m,y),f(y,V),f(m,I),f(m,E),f(E,z),x[T].m(z,null),f(E,B),f(E,L),f(L,j),X.m(j,null),f(m,U),f(m,A),me[W].m(A,null),Q=rs(s,l[24].bind(s)),te=!0,re||(K=ge(o,"click",l[15]),re=!0)},p(G,he){G[7]?le?(le.p(G,he),he[0]&128&&N(le,1)):(le=Ii(G),le.c(),N(le,1),le.m(e.parentNode,e)):le&&(Ee(),M(le,1,1,()=>{le=null}),ye()),(!te||he[0]&1280&&!je(r.src,i=G[10][`fatepointbook${G[8]?"-half":""}.webp`]))&&d(r,"src",i),G[8]?ce&&(ce.d(1),ce=null):ce?ce.p(G,he):(ce=Di(G),ce.c(),ce.m(u,_));const ke={};he[0]&16&&(ke.mode=G[4]?"counter":"bg"),p.$set(ke),(!te||he[0]&512)&&D!==(D=G[9]("wish.epitomizedPath.selectWeapon")+"")&&J(V,D);let Ie=T;T=ee(G),T===Ie?x[T].p(G,he):(Ee(),M(x[Ie],1,1,()=>{x[Ie]=null}),ye(),R=x[T],R?R.p(G,he):(R=x[T]=se[T](G),R.c()),N(R,1),R.m(z,null)),(!te||he[0]&1)&&_e(z,"--item-width",G[0]+"px"),ze===(ze=de(G))&&X?X.p(G,he):(X.d(1),X=ze(G),X&&(X.c(),X.m(j,null)));let be=W;W=ve(G),W===be?me[W].p(G,he):(Ee(),M(me[be],1,1,()=>{me[be]=null}),ye(),Y=me[W],Y?Y.p(G,he):(Y=me[W]=$[W](G),Y.c()),N(Y,1),Y.m(A,null)),he[0]&16&&pe(m,"counter",G[4]),(!te||he[0]&4)&&_e(s,"--modal-width",G[2]+"px"),(!te||he[0]&2)&&_e(t,"height",G[1]+"px")},i(G){te||(N(le),N(p.$$.fragment,G),N(R),N(Y),Pe(()=>{C||(C=ot(s,lt,{y:40,duration:250},!0)),C.run(1)}),Pe(()=>{q||(q=ot(t,et,{duration:250},!0)),q.run(1)}),te=!0)},o(G){M(le),M(p.$$.fragment,G),M(R),M(Y),C||(C=ot(s,lt,{y:40,duration:250},!1)),C.run(0),q||(q=ot(t,et,{duration:250},!1)),q.run(0),te=!1},d(G){le&&le.d(G),G&&h(e),G&&h(t),ce&&ce.d(),ae(p),x[T].d(),X.d(),me[W].d(),Q(),G&&C&&C.end(),G&&q&&q.end(),re=!1,K()}}}function E1(l,e,t){let s,r,i,n,o,a,c,u,_,m,v;Z(l,is,C=>t(25,i=C)),Z(l,Fs,C=>t(1,n=C)),Z(l,Ft,C=>t(26,o=C)),Z(l,jt,C=>t(27,a=C)),Z(l,or,C=>t(21,c=C)),Z(l,ct,C=>t(9,u=C)),Z(l,wt,C=>t(10,_=C)),Z(l,Aa,C=>t(11,m=C)),Z(l,Qt,C=>t(12,v=C));const p=a[o].featured.map(({name:C})=>Pa(C));let k,y,D,V="",I=-1;Et(()=>{Be("bookflip"),zs(D,{sizeAutoCapable:!1,className:"os-theme-light"}),Qt.subscribe(({selected:C})=>{t(4,V=p[C]?.name),t(5,I=C)})});let E=null;const z=C=>{Be("click2"),t(6,E=C)},T=Re("handleEpitomizedModal"),R=()=>{T(),Be("close"),Be("bookflip")},B=()=>{Be("close"),t(7,L=!1)};let L=!1;const j=()=>{t(7,L=!0),Be()},U=()=>{if(E===null)return;Be("click");const{patch:C,phase:q}=i;fl.init({version:C,phase:q}).set(0,E),Qt.set({selected:E,point:0}),T()},A=()=>{Be();const{patch:C,phase:q}=i;fl.init({version:C,phase:q}).remove(),Qt.set({point:0,selected:null}),t(6,E=null),t(7,L=!1),T()};nt("left,right","epipath",C=>{if(C.preventDefault(),V)return;Be("click2");const[q]=nt.getPressedKeyString(),te=q.toLocaleLowerCase();te==="left"&&t(6,E=E<=0?1:E-1),te==="right"&&t(6,E=E>=1?0:E+1)}),nt("enter","epipath",C=>{C.preventDefault(),E!==null&&U()}),nt("esc,e","epipath",C=>{C.preventDefault(),R()}),nt.setScope("epipath"),Mi(()=>nt.deleteScope("epipath","index"));function W(C){Rt[C?"unshift":"push"](()=>{D=C,t(3,D)})}const Y=C=>z(C);function Q(){y=this.clientWidth,t(2,y)}return l.$$.update=()=>{l.$$.dirty[0]&2097152&&t(8,s=c<500),l.$$.dirty[0]&2&&t(20,r=16.5/100*n),l.$$.dirty[0]&1048577&&(k<150?t(0,k=150):t(0,k=r))},[k,n,y,D,V,I,E,L,s,u,_,m,v,p,z,R,B,j,U,A,r,c,W,Y,Q]}class y1 extends Qe{constructor(e){super(),Je(this,e,E1,k1,He,{},null,[-1,-1])}}function Ti(l){let e,t=l[7]("wish.result.skip")+"",s,r,i,n,o,a;return{c(){e=b("button"),s=H(t),r=P(),i=b("i"),this.h()},l(c){e=g(c,"BUTTON",{class:!0});var u=w(e);s=F(u,t),r=S(u),i=g(u,"I",{class:!0}),w(i).forEach(h),u.forEach(h),this.h()},h(){d(i,"class","gi-caret-up svelte-n0dhm5"),d(e,"class","skip svelte-n0dhm5")},m(c,u){O(c,e,u),f(e,s),f(e,r),f(e,i),o||(a=ge(e,"click",l[9]),o=!0)},p(c,u){u&128&&t!==(t=c[7]("wish.result.skip")+"")&&J(s,t)},i(c){n||Pe(()=>{n=Ke(e,et,{duration:250}),n.start()})},o:we,d(c){c&&h(e),o=!1,a()}}}function I1(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,B,L=l[6]&&Ti(l);return{c(){e=b("div"),t=b("div"),s=b("video"),r=b("track"),n=P(),o=b("video"),a=b("track"),u=P(),_=b("video"),m=b("track"),p=P(),k=b("video"),y=b("track"),V=P(),I=b("video"),E=b("track"),T=P(),L&&L.c(),this.h()},l(j){e=g(j,"DIV",{class:!0});var U=w(e);t=g(U,"DIV",{class:!0});var A=w(t);s=g(A,"VIDEO",{src:!0,type:!0,class:!0});var W=w(s);r=g(W,"TRACK",{kind:!0}),W.forEach(h),n=S(A),o=g(A,"VIDEO",{src:!0,type:!0,class:!0});var Y=w(o);a=g(Y,"TRACK",{kind:!0}),Y.forEach(h),u=S(A),_=g(A,"VIDEO",{src:!0,type:!0,class:!0});var Q=w(_);m=g(Q,"TRACK",{kind:!0}),Q.forEach(h),p=S(A),k=g(A,"VIDEO",{src:!0,type:!0,class:!0});var C=w(k);y=g(C,"TRACK",{kind:!0}),C.forEach(h),V=S(A),I=g(A,"VIDEO",{src:!0,type:!0,class:!0});var q=w(I);E=g(q,"TRACK",{kind:!0}),q.forEach(h),T=S(A),L&&L.l(A),A.forEach(h),U.forEach(h),this.h()},h(){d(r,"kind","captions"),je(s.src,i=l[8]["3star-single.mp4"])||d(s,"src",i),d(s,"type","video/mp4"),d(s,"class","svelte-n0dhm5"),d(a,"kind","captions"),je(o.src,c=l[8]["4star-single.mp4"])||d(o,"src",c),d(o,"type","video/mp4"),d(o,"class","svelte-n0dhm5"),d(m,"kind","captions"),je(_.src,v=l[8]["4star-multi.mp4"])||d(_,"src",v),d(_,"type","video/mp4"),d(_,"class","svelte-n0dhm5"),d(y,"kind","captions"),je(k.src,D=l[8]["5star-single.mp4"])||d(k,"src",D),d(k,"type","video/mp4"),d(k,"class","svelte-n0dhm5"),d(E,"kind","captions"),je(I.src,z=l[8]["5star-multi.mp4"])||d(I,"src",z),d(I,"type","video/mp4"),d(I,"class","svelte-n0dhm5"),d(t,"class","video svelte-n0dhm5"),d(e,"class","meteor-wrapper svelte-n0dhm5"),pe(e,"show",l[0])},m(j,U){O(j,e,U),f(e,t),f(t,s),f(s,r),l[12](s),f(t,n),f(t,o),f(o,a),l[13](o),f(t,u),f(t,_),f(_,m),l[14](_),f(t,p),f(t,k),f(k,y),l[15](k),f(t,V),f(t,I),f(I,E),l[16](I),f(t,T),L&&L.m(t,null),R||(B=ge(e,"mousedown",l[17]),R=!0)},p(j,[U]){U&256&&!je(s.src,i=j[8]["3star-single.mp4"])&&d(s,"src",i),U&256&&!je(o.src,c=j[8]["4star-single.mp4"])&&d(o,"src",c),U&256&&!je(_.src,v=j[8]["4star-multi.mp4"])&&d(_,"src",v),U&256&&!je(k.src,D=j[8]["5star-single.mp4"])&&d(k,"src",D),U&256&&!je(I.src,z=j[8]["5star-multi.mp4"])&&d(I,"src",z),j[6]?L?(L.p(j,U),U&64&&N(L,1)):(L=Ti(j),L.c(),N(L,1),L.m(t,null)):L&&(L.d(1),L=null),U&1&&pe(e,"show",j[0])},i(j){N(L)},o:we,d(j){j&&h(e),l[12](null),l[13](null),l[14](null),l[15](null),l[16](null),L&&L.d(),R=!1,B()}}}function D1(l,e,t){let s,r;Z(l,ct,B=>t(7,s=B)),Z(l,wt,B=>t(8,r=B));let{rarity:i=3}=e,{show:n=!1}=e,{isSingle:o=!1}=e,a,c,u,_,m,v=!1;const p=Re("showSplashArt"),k=({skip:B=!1}={})=>{p({skip:B}),t(6,v=!1)},y=()=>{Be();const B=[a,c,u,_,m];k({skip:!0}),B.forEach(L=>{L.load(),L.style.display="none"})};Et(()=>{[a,c,u,_,m].forEach(L=>{L.addEventListener("ended",()=>{L.style.display="none",L.load(),k()})})});const D=async(B,L=!0)=>{const j=Lt.get("muted");let U=a;if(L&&B!==3&&(U=B===5?_:c),!L&&B!==3&&(U=B===5?m:u),!U||U.error||isNaN(U.duration)){const A=s("wish.result.meteorFailed");return Jt({message:A}),console.error("Can't play Meteor Animation because it cannot be loaded",U.error),k()}U.style.display="unset",U.muted=!!j,await U.play()};nt("esc","index",B=>{!n||(B.preventDefault(),y())}),nt("enter","index",B=>{if(!!n){if(B.preventDefault(),v)return y();t(6,v=!0)}});function V(B){Rt[B?"unshift":"push"](()=>{a=B,t(1,a)})}function I(B){Rt[B?"unshift":"push"](()=>{c=B,t(2,c)})}function E(B){Rt[B?"unshift":"push"](()=>{u=B,t(3,u)})}function z(B){Rt[B?"unshift":"push"](()=>{_=B,t(4,_)})}function T(B){Rt[B?"unshift":"push"](()=>{m=B,t(5,m)})}const R=()=>t(6,v=!0);return l.$$set=B=>{"rarity"in B&&t(10,i=B.rarity),"show"in B&&t(0,n=B.show),"isSingle"in B&&t(11,o=B.isSingle)},l.$$.update=()=>{l.$$.dirty&3073&&n&&D(i,o)},[n,a,c,u,_,m,v,s,r,y,i,o,V,I,E,z,T,R]}class z1 extends Qe{constructor(e){super(),Je(this,e,D1,I1,He,{rarity:10,show:0,isSingle:11})}}function Bi(l){let e,t;return e=new wa({props:{list:l[2],skip:l[6],bannerType:l[0]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&4&&(i.list=s[2]),r[0]&64&&(i.skip=s[6]),r[0]&1&&(i.bannerType=s[0]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Ni(l){let e,t;return e=new y1({}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function Pi(l){let e,t;return e=new Oc({props:{isEventBanner:l[1],rollCost:l[4]}}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},p(s,r){const i={};r[0]&2&&(i.isEventBanner=s[1]),r[0]&16&&(i.rollCost=s[4]),e.$set(i)},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function V1(l){let e,t,s,r,i,n,o,a,c,u,_,m,v,p,k,y,D,V,I,E,z,T,R,B;document.title=e=l[11]("title",{default:jr}),o=new z1({props:{show:l[8],isSingle:l[9],rarity:l[10]}});let L=l[7]&&Bi(l);m=new ic({props:{bannerType:l[0]}}),y=new a1({}),I=new Pc({props:{bannerType:l[0]}});let j=l[3]&&Ni(),U=l[5]&&Pi(l);return{c(){t=P(),s=b("div"),i=P(),n=b("div"),ne(o.$$.fragment),a=P(),L&&L.c(),c=P(),u=b("section"),_=b("div"),ne(m.$$.fragment),v=P(),p=b("div"),k=b("div"),ne(y.$$.fragment),D=P(),V=b("div"),ne(I.$$.fragment),z=P(),j&&j.c(),T=P(),U&&U.c(),R=We(),this.h()},l(A){ha('[data-svelte="svelte-kwnc3m"]',document.head).forEach(h),t=S(A),s=g(A,"DIV",{class:!0}),w(s).forEach(h),i=S(A),n=g(A,"DIV",{class:!0});var Y=w(n);fe(o.$$.fragment,Y),a=S(Y),L&&L.l(Y),Y.forEach(h),c=S(A),u=g(A,"SECTION",{style:!0,class:!0});var Q=w(u);_=g(Q,"DIV",{class:!0});var C=w(_);fe(m.$$.fragment,C),C.forEach(h),v=S(Q),p=g(Q,"DIV",{class:!0});var q=w(p);k=g(q,"DIV",{class:!0});var te=w(k);fe(y.$$.fragment,te),te.forEach(h),D=S(q),V=g(q,"DIV",{class:!0});var re=w(V);fe(I.$$.fragment,re),re.forEach(h),q.forEach(h),Q.forEach(h),z=S(A),j&&j.l(A),T=S(A),U&&U.l(A),R=We(),this.h()},h(){d(s,"class","overlay svelte-lltch"),d(n,"class","wish-container svelte-lltch"),pe(n,"show",l[8]||l[7]),d(_,"class","col top svelte-lltch"),d(k,"class","item svelte-lltch"),d(V,"class","col button svelte-lltch"),d(p,"class","col banner svelte-lltch"),_e(u,"background-image","url('"+l[12]["wish-background.webp"]+"')"),d(u,"class","svelte-lltch")},m(A,W){O(A,t,W),O(A,s,W),O(A,i,W),O(A,n,W),ie(o,n,null),f(n,a),L&&L.m(n,null),O(A,c,W),O(A,u,W),f(u,_),ie(m,_,null),f(u,v),f(u,p),f(p,k),ie(y,k,null),f(p,D),f(p,V),ie(I,V,null),O(A,z,W),j&&j.m(A,W),O(A,T,W),U&&U.m(A,W),O(A,R,W),B=!0},p(A,W){(!B||W[0]&2048)&&e!==(e=A[11]("title",{default:jr}))&&(document.title=e);const Y={};W[0]&256&&(Y.show=A[8]),W[0]&512&&(Y.isSingle=A[9]),W[0]&1024&&(Y.rarity=A[10]),o.$set(Y),A[7]?L?(L.p(A,W),W[0]&128&&N(L,1)):(L=Bi(A),L.c(),N(L,1),L.m(n,null)):L&&(Ee(),M(L,1,1,()=>{L=null}),ye()),W[0]&384&&pe(n,"show",A[8]||A[7]);const Q={};W[0]&1&&(Q.bannerType=A[0]),m.$set(Q);const C={};W[0]&1&&(C.bannerType=A[0]),I.$set(C),(!B||W[0]&4096)&&_e(u,"background-image","url('"+A[12]["wish-background.webp"]+"')"),A[3]?j?W[0]&8&&N(j,1):(j=Ni(),j.c(),N(j,1),j.m(T.parentNode,T)):j&&(Ee(),M(j,1,1,()=>{j=null}),ye()),A[5]?U?(U.p(A,W),W[0]&32&&N(U,1)):(U=Pi(A),U.c(),N(U,1),U.m(R.parentNode,R)):U&&(Ee(),M(U,1,1,()=>{U=null}),ye())},i(A){B||(A&&(r||Pe(()=>{r=Ke(s,et,{}),r.start()})),N(o.$$.fragment,A),N(L),N(m.$$.fragment,A),N(y.$$.fragment,A),N(I.$$.fragment,A),E||Pe(()=>{E=Ke(V,lt,{y:20,duration:1e3}),E.start()}),N(j),N(U),B=!0)},o(A){M(o.$$.fragment,A),M(L),M(m.$$.fragment,A),M(y.$$.fragment,A),M(I.$$.fragment,A),M(j),M(U),B=!1},d(A){A&&h(t),A&&h(s),A&&h(i),A&&h(n),ae(o),L&&L.d(),A&&h(c),A&&h(u),ae(m),ae(y),ae(I),A&&h(z),j&&j.d(A),A&&h(T),U&&U.d(A),A&&h(R)}}}function T1(l,e,t){let s,r,i,n,o,a,c,u,_,m,v,p,k;Z(l,jt,X=>t(15,a=X)),Z(l,$s,X=>t(25,c=X)),Z(l,zl,X=>t(16,u=X)),Z(l,ps,X=>t(17,_=X)),Z(l,bs,X=>t(18,m=X)),Z(l,Ft,X=>t(19,v=X)),Z(l,ct,X=>t(11,p=X)),Z(l,wt,X=>t(12,k=X));let y=0,D=[],V,I;const E=async({patch:X,phase:$})=>{!X||!$||(V=await To.init(X,$,c))};Et(()=>is.subscribe(E));const z=()=>a.filter(({type:me})=>me==="character-event").findIndex(({character:me})=>me===s.character);let T=!1;Fe("handleEpitomizedModal",()=>t(3,T=!T));let B=!1,L,j=!1,U=Re("onWish");const A=async(X,$)=>{y=X,B=X>1;const me=[];if(t(4,L=$==="beginner"?8:X),!o&&L>n)return t(5,j=!0);const ve=$==="character-event"?z():0;U.set(!0);for(let G=0;G<X;G++){const he=await Do($,V,ve);me.push(he)}t(2,D=me),ce(),!o&&(Y(),W($))};Fe("doRoll",A);const W=X=>{const $=["beginner","standard","member"].includes(X);($?ps:bs).update(ve=>{const G=ve-(X==="beginner"&&y>1?8:y);return vs.set($?"acquaint":"intertwined",G),G})},Y=()=>{const X=$=>{const me=D.reduce((G,{bonusQty:he,bonusType:ke})=>G+(ke===$?he:0),0);($==="stardust"?Il:Dl).update(G=>{const he=G+me;return vs.set($,he),he})};X("starglitter"),X("stardust")};let Q=!1,C=!1,q=!1,te=!0,re=3;Fe("closeResult",()=>{t(7,C=!1),U.set(!1),ze()});const le=({skip:X=!1}={})=>{t(6,Q=X),t(8,q=!1),t(7,C=!0)};Fe("showSplashArt",le);const ce=()=>{if(Lt.get("autoskip"))return le({skip:!0});if(r==="member")t(10,re=Math.floor(Math.random()*3)+3);else{const $=D.map(({rarity:me})=>me);t(9,te=$.length===1),t(10,re=3),$.includes(4)&&t(10,re=4),$.includes(5)&&t(10,re=5)}t(8,q=!0)};Fe("closeModal",()=>{Be("close"),t(5,j=!1)}),Fe("reroll",X=>{Be(),A(B?r==="beginner"?10:X:1,r),t(5,j=!1)});const ee=X=>D.reduce(($,{bonusType:me,bonusQty:ve})=>$+(me===X?ve:0),0),de=Re("openObtained"),ze=()=>{const X=ee("stardust"),$=ee("starglitter"),me=[{item:"stardust",qty:X},{item:"starglitter",qty:$}];!X&&!$||de(me)};return l.$$.update=()=>{l.$$.dirty[0]&557056&&t(14,s=a[v]||{}),l.$$.dirty[0]&16384&&t(13,{type:I}=s,I),l.$$.dirty[0]&8192&&t(0,r=I||""),l.$$.dirty[0]&1&&t(1,i=r.match("event")),l.$$.dirty[0]&393218&&(n=i?m:_),l.$$.dirty[0]&65536&&(o=u==="unlimited")},[r,i,D,T,L,j,Q,C,q,te,re,p,k,I,s,a,u,_,m,v]}class B1 extends Qe{constructor(e){super(),Je(this,e,T1,V1,He,{},null,[-1,-1])}}function Si(l){let e;return{c(){e=H("error bos")},l(t){e=F(t,"error bos")},m(t,s){O(t,e,s)},d(t){t&&h(e)}}}function Ri(l){let e,t,s,r,i,n;return{c(){e=b("video"),t=b("track"),this.h()},l(o){e=g(o,"VIDEO",{type:!0,src:!0,poster:!0,class:!0});var a=w(e);t=g(a,"TRACK",{kind:!0}),a.forEach(h),this.h()},h(){d(t,"kind","captions"),e.muted=!0,e.loop=!0,e.autoplay=!0,d(e,"type","video/webm"),je(e.src,s=l[16]["bg.webm"])||d(e,"src",s),d(e,"poster",r=l[16]["wish-background.webp"]),d(e,"class","svelte-1r57nh7")},m(o,a){O(o,e,a),f(e,t),n=!0},p(o,a){(!n||a[0]&65536&&!je(e.src,s=o[16]["bg.webm"]))&&d(e,"src",s),(!n||a[0]&65536&&r!==(r=o[16]["wish-background.webp"]))&&d(e,"poster",r)},i(o){n||(o&&Pe(()=>{i||(i=ot(e,et,{duration:2e3},!0)),i.run(1)}),n=!0)},o(o){o&&(i||(i=ot(e,et,{duration:2e3},!1)),i.run(0)),n=!1},d(o){o&&h(e),o&&i&&i.end()}}}function N1(l){let e,t,s;var r=l[9];function i(n){return{}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[9])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function P1(l){let e,t,s;var r=l[8];function i(n){return{}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[8])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function S1(l){let e,t,s;var r=l[7];function i(n){return{props:{page:"history"}}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[7])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function R1(l){let e,t,s;var r=l[7];function i(n){return{props:{page:"details"}}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[7])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function L1(l){let e,t,s;var r=l[6];function i(n){return{}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[6])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function A1(l){let e,t,s,r;e=new B1({});let i=l[5]&&Li(l);return{c(){ne(e.$$.fragment),t=P(),i&&i.c(),s=We()},l(n){fe(e.$$.fragment,n),t=S(n),i&&i.l(n),s=We()},m(n,o){ie(e,n,o),O(n,t,o),i&&i.m(n,o),O(n,s,o),r=!0},p(n,o){n[5]?i?(i.p(n,o),o[0]&32&&N(i,1)):(i=Li(n),i.c(),N(i,1),i.m(s.parentNode,s)):i&&(Ee(),M(i,1,1,()=>{i=null}),ye())},i(n){r||(N(e.$$.fragment,n),N(i),r=!0)},o(n){M(e.$$.fragment,n),M(i),r=!1},d(n){ae(e,n),n&&h(t),i&&i.d(n),n&&h(s)}}}function Li(l){let e,t,s;var r=l[10];function i(n){return{}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[10])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function Ai(l){let e,t,s;var r=l[11];function i(n){return{props:{data:n[14]}}}return r&&(e=new r(i(l))),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){const a={};if(o[0]&16384&&(a.data=n[14]),r!==(r=n[11])){if(e){Ee();const c=e;M(c.$$.fragment,1,0,()=>{ae(c,1)}),ye()}r?(e=new r(i(n)),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}else r&&e.$set(a)},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function Oi(l){let e,t,s;var r=l[12];function i(n){return{}}return r&&(e=new r(i())),{c(){e&&ne(e.$$.fragment),t=We()},l(n){e&&fe(e.$$.fragment,n),t=We()},m(n,o){e&&ie(e,n,o),O(n,t,o),s=!0},p(n,o){if(r!==(r=n[12])){if(e){Ee();const a=e;M(a.$$.fragment,1,0,()=>{ae(a,1)}),ye()}r?(e=new r(i()),ne(e.$$.fragment),N(e.$$.fragment,1),ie(e,t.parentNode,t)):e=null}},i(n){s||(e&&N(e.$$.fragment,n),s=!0)},o(n){e&&M(e.$$.fragment,n),s=!1},d(n){n&&h(t),e&&ae(e,n)}}}function Ci(l){let e,t;return e=new co({}),{c(){ne(e.$$.fragment)},l(s){fe(e.$$.fragment,s)},m(s,r){ie(e,s,r),t=!0},i(s){t||(N(e.$$.fragment,s),t=!0)},o(s){M(e.$$.fragment,s),t=!1},d(s){ae(e,s)}}}function O1(l){let e,t=l[3]&&l[0].match(/(index|detail|history)/)&&!l[1],s,r,i,n,o,a,c,u,_,m=l[2]!=="ok"&&Si(),v=t&&Ri(l);const p=[A1,L1,R1,S1,P1,N1],k=[];function y(E,z){return E[0]==="index"?0:E[0]==="allbanners"?1:E[0]==="details"?2:E[0]==="history"?3:E[0]==="inventory"?4:E[0]==="shop"?5:-1}~(r=y(l))&&(i=k[r]=p[r](l));let D=l[13]&&Ai(l),V=l[15]&&Oi(l),I=l[4]&&Ci();return u=new po({}),{c(){m&&m.c(),e=P(),v&&v.c(),s=P(),i&&i.c(),n=P(),D&&D.c(),o=P(),V&&V.c(),a=P(),I&&I.c(),c=P(),ne(u.$$.fragment)},l(E){m&&m.l(E),e=S(E),v&&v.l(E),s=S(E),i&&i.l(E),n=S(E),D&&D.l(E),o=S(E),V&&V.l(E),a=S(E),I&&I.l(E),c=S(E),fe(u.$$.fragment,E)},m(E,z){m&&m.m(E,z),O(E,e,z),v&&v.m(E,z),O(E,s,z),~r&&k[r].m(E,z),O(E,n,z),D&&D.m(E,z),O(E,o,z),V&&V.m(E,z),O(E,a,z),I&&I.m(E,z),O(E,c,z),ie(u,E,z),_=!0},p(E,z){E[2]!=="ok"?m||(m=Si(),m.c(),m.m(e.parentNode,e)):m&&(m.d(1),m=null),z[0]&11&&(t=E[3]&&E[0].match(/(index|detail|history)/)&&!E[1]),t?v?(v.p(E,z),z[0]&11&&N(v,1)):(v=Ri(E),v.c(),N(v,1),v.m(s.parentNode,s)):v&&(Ee(),M(v,1,1,()=>{v=null}),ye());let T=r;r=y(E),r===T?~r&&k[r].p(E,z):(i&&(Ee(),M(k[T],1,1,()=>{k[T]=null}),ye()),~r?(i=k[r],i?i.p(E,z):(i=k[r]=p[r](E),i.c()),N(i,1),i.m(n.parentNode,n)):i=null),E[13]?D?(D.p(E,z),z[0]&8192&&N(D,1)):(D=Ai(E),D.c(),N(D,1),D.m(o.parentNode,o)):D&&(Ee(),M(D,1,1,()=>{D=null}),ye()),E[15]?V?(V.p(E,z),z[0]&32768&&N(V,1)):(V=Oi(E),V.c(),N(V,1),V.m(a.parentNode,a)):V&&(Ee(),M(V,1,1,()=>{V=null}),ye()),E[4]?I?z[0]&16&&N(I,1):(I=Ci(),I.c(),N(I,1),I.m(c.parentNode,c)):I&&(Ee(),M(I,1,1,()=>{I=null}),ye())},i(E){_||(N(v),N(i),N(D),N(V),N(I),N(u.$$.fragment,E),_=!0)},o(E){M(v),M(i),M(D),M(V),M(I),M(u.$$.fragment,E),_=!1},d(E){m&&m.d(E),E&&h(e),v&&v.d(E),E&&h(s),~r&&k[r].d(E),E&&h(n),D&&D.d(E),E&&h(o),V&&V.d(E),E&&h(a),I&&I.d(E),E&&h(c),ae(u,E)}}}function C1(l,e,t){let s,r,i;Z(l,ma,le=>t(23,s=le)),Z(l,wt,le=>t(16,i=le));let n="",o="index",a=!0,c=Ls(!1),u=Ls(!1);Z(l,u,le=>t(1,r=le)),Fe("onWish",u),Fe("appReady",c),Fe("query",Ls("")),Fe("readyToPull",Ls(!0));let _=Lt.get("animatedBG");const m=()=>t(3,_=Lt.get("animatedBG"));Fe("animateBG",m);const v=()=>a||r||o!=="index"?void 0:document.visibilityState==="visible"?Be("wishBacksound"):Mr("wishBacksound");let p=!1;const k=()=>{const{remaining:le,diff:ce,latestCheckIn:se}=Cl.getData();if(t(4,p=le>0&&le-ce>=0&&ce>0),se)return Cl.checkin()};Fe("closeWelkin",()=>t(4,p=!1)),Fe("startApp",()=>{c.set(!0),nt.setScope("index"),t(18,a=!1),k(),Be()});let D=!1;Fe("handleMenu",le=>{t(5,D=!D),le!=="mute"&&Be(D?"click":"close")});const I=le=>{let ce=o;if(t(0,o=le),t(5,D=!1),nt.setScope(le),ce!==o){if(nt.deleteScope(ce),ce!=="index")return Ur.back();Ur.set(le)}};Fe("navigate",I);let E,z,T,R,B,L,j;const U=async()=>{t(11,L=(await Ve(()=>import("./ObtainedItem-7d64abc9.js"),["./ObtainedItem-7d64abc9.js","./index-c0d078cd.js","./index-123e2351.js","./runtime.esm-4bf604c8.js","./index-0189b6d0.js","./WishResult-901333c5.js","./app-stores-358281e6.js","./audio-460a91c6.js","./outfit-bffb00d9.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","../assets/ObtainedItem-64c93daf.css"],import.meta.url)).default),t(12,j=(await Ve(()=>import("./ModalConvert-3a3233d8.js"),["./ModalConvert-3a3233d8.js","./index-c0d078cd.js","./runtime.esm-4bf604c8.js","./index-0189b6d0.js","./app-stores-358281e6.js","./index-123e2351.js","./audio-460a91c6.js","./WishResult-901333c5.js","./outfit-bffb00d9.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","./_modal-balance-a6913f0e.js","../assets/_modal-balance-4f630c28.css","../assets/ModalConvert-1cf56ccf.css"],import.meta.url)).default),t(10,B=(await Ve(()=>import("./index-47e956e7.js"),["./index-47e956e7.js","./index-c0d078cd.js","./index-123e2351.js","./runtime.esm-4bf604c8.js","./index-0189b6d0.js","./WishResult-901333c5.js","./app-stores-358281e6.js","./audio-460a91c6.js","./outfit-bffb00d9.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","./sync-9a12991b.js","./custom-banner-3b9921d3.js","./i18n-ec7c8da1.js","./preload-helper-176e53da.js","./api-cookie-d587b0da.js","./CheckBox-828e98c0.js","../assets/CheckBox-4ae22161.css","./accessKey-2a3cada9.js","./ButtonModal-7ee3a4a1.js","../assets/ButtonModal-dd0ea437.css","./timeago-17bb7280.js","../assets/index-99507031.css"],import.meta.url)).default),t(7,z=(await Ve(()=>import("./index-ea7fdfd5.js"),["./index-ea7fdfd5.js","./index-c0d078cd.js","./index-123e2351.js","./runtime.esm-4bf604c8.js","./index-0189b6d0.js","./WishResult-901333c5.js","./app-stores-358281e6.js","./audio-460a91c6.js","./outfit-bffb00d9.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","./api-cookie-d587b0da.js","./i18n-ec7c8da1.js","./preload-helper-176e53da.js","./custom-banner-3b9921d3.js","./CheckBox-828e98c0.js","../assets/CheckBox-4ae22161.css","./_pagination-cd90c7ad.js","../assets/_pagination-660172f1.css","../assets/index-db37b75c.css","../assets/Iklan-27674bcf.css"],import.meta.url)).default),t(6,E=(await Ve(()=>import("./index-67d0b527.js"),["./index-67d0b527.js","./preload-helper-176e53da.js","./i18n-ec7c8da1.js","./outfit-bffb00d9.js","./index-123e2351.js","./index-c0d078cd.js","./app-stores-358281e6.js","./index-0189b6d0.js","./runtime.esm-4bf604c8.js","./index-bd4a5be3.js","./WishResult-901333c5.js","./audio-460a91c6.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","./custom-banner-3b9921d3.js","../assets/index-191c38e6.css"],import.meta.url)).default),t(8,T=(await Ve(()=>import("./index-e277ccfa.js"),["./index-e277ccfa.js","./index-c0d078cd.js","./index-123e2351.js","./runtime.esm-4bf604c8.js","./index-0189b6d0.js","./WishResult-901333c5.js","./app-stores-358281e6.js","./audio-460a91c6.js","./outfit-bffb00d9.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","./api-cookie-d587b0da.js","./custom-banner-3b9921d3.js","./CheckBox-828e98c0.js","../assets/CheckBox-4ae22161.css","./index-bd4a5be3.js","./i18n-ec7c8da1.js","./preload-helper-176e53da.js","../assets/index-9dd1fc3f.css"],import.meta.url)).default),t(9,R=(await Ve(()=>import("./index-c33d11af.js"),["./index-c33d11af.js","./index-c0d078cd.js","./index-0189b6d0.js","./index-123e2351.js","./runtime.esm-4bf604c8.js","./WishResult-901333c5.js","./app-stores-358281e6.js","./audio-460a91c6.js","./outfit-bffb00d9.js","./lazyload-05dfa468.js","../assets/lazyload-d703da40.css","./env-f184adc0.js","../assets/WishResult-effb9a08.css","./RandomBackground-34695851.js","../assets/RandomBackground-c01fc64e.css","./_modal-balance-a6913f0e.js","../assets/_modal-balance-4f630c28.css","./api-cookie-d587b0da.js","./CheckBox-828e98c0.js","../assets/CheckBox-4ae22161.css","./ButtonModal-7ee3a4a1.js","../assets/ButtonModal-dd0ea437.css","./i18n-ec7c8da1.js","./preload-helper-176e53da.js","../assets/index-2b8cdfa9.css"],import.meta.url)).default),(await Ve(()=>import("./index-853bb736.js"),["./index-853bb736.js","./index-c0d078cd.js","./app-stores-358281e6.js","./index-0189b6d0.js","./env-f184adc0.js","./index-123e2351.js","../assets/index-f0ee7e4a.css"],import.meta.url)).default},A=Re("bannerLoaded"),W=async le=>{const ce=await Ka(le);t(2,{status:n}=ce||{},n),A()};Et(()=>{Ha(),Ds.subscribe(W),ir.subscribe(Qa),$a(),Za.init(),U(),m(),window.addEventListener("popstate",ce=>{ce.state.page||o!=="index"&&I("index")}),document.addEventListener("visibilitychange",v);const{url:le}=s;le.searchParams.get("banner")});let Y=!1,Q={};const C=le=>{t(14,Q=le),t(13,Y=!0)},q=()=>{t(13,Y=!1),t(14,Q={}),Be("close")};Fe("openObtained",C),Fe("closeObtained",q);let te=!1;Fe("openConvertModal",()=>t(15,te=!0)),Fe("closeConvertModal",()=>t(15,te=!1));let re=!1;const K=()=>{re=!re,Be(re?"shopnav":"close")};return Fe("chatToggle",K),l.$$.update=()=>{l.$$.dirty[0]&262147&&(a||(o!=="index"||r?Mr("wishBacksound"):Be("wishBacksound"))),l.$$.dirty[0]&1&&nt("o",o,K)},[o,r,n,_,p,D,E,z,T,R,B,L,j,Y,Q,te,i,u,a]}class ld extends Qe{constructor(e){super(),Je(this,e,C1,O1,He,{},null,[-1,-1])}}export{Sl as I,Nl as M,hr as N,ld as P,Wf as S,vl as a,td as b,fo as c,t1 as d,ac as e,ed as f,sd as g,fs as h,fr as n,Jt as p,Za as u};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_pagination-cd90c7ad.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_pagination-cd90c7ad.js
deleted file mode 100644
index 06dcb37f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/_pagination-cd90c7ad.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as U,i as D,s as F,k as h,a as C,q as G,l as d,m as g,h as i,c as I,r as H,n as v,N as q,b as P,G as k,H as B,u as V,A as O,C as j,F as z}from"./index-c0d078cd.js";function J(a){let e;return{c(){e=h("i"),this.h()},l(t){e=d(t,"I",{class:!0}),g(e).forEach(i),this.h()},h(){v(e,"class","gi-angle-left")},m(t,l){P(t,e,l)},d(t){t&&i(e)}}}function K(a){let e;return{c(){e=h("span"),this.h()},l(t){e=d(t,"SPAN",{class:!0}),g(e).forEach(i),this.h()},h(){v(e,"class","left arrow svelte-1wguwca")},m(t,l){P(t,e,l)},d(t){t&&i(e)}}}function M(a){let e;return{c(){e=h("i"),this.h()},l(t){e=d(t,"I",{class:!0}),g(e).forEach(i),this.h()},h(){v(e,"class","gi-angle-right")},m(t,l){P(t,e,l)},d(t){t&&i(e)}}}function Q(a){let e;return{c(){e=h("span"),this.h()},l(t){e=d(t,"SPAN",{class:!0}),g(e).forEach(i),this.h()},h(){v(e,"class","right arrow svelte-1wguwca")},m(t,l){P(t,e,l)},d(t){t&&i(e)}}}function R(a){let e,t,l,o,u,b,m,c,w,r,y;function N(s,n){return s[3]?K:J}let p=N(a),f=p(a);function S(s,n){return s[3]?Q:M}let E=S(a),_=E(a);return{c(){e=h("div"),t=h("button"),f.c(),o=C(),u=h("span"),b=G(a[1]),m=C(),c=h("button"),_.c(),this.h()},l(s){e=d(s,"DIV",{class:!0});var n=g(e);t=d(n,"BUTTON",{class:!0});var A=g(t);f.l(A),A.forEach(i),o=I(n),u=d(n,"SPAN",{class:!0});var L=g(u);b=H(L,a[1]),L.forEach(i),m=I(n),c=d(n,"BUTTON",{class:!0});var T=g(c);_.l(T),T.forEach(i),n.forEach(i),this.h()},h(){v(t,"class","prev svelte-1wguwca"),t.disabled=l=a[1]===1,v(u,"class","active svelte-1wguwca"),v(c,"class","next svelte-1wguwca"),c.disabled=w=!(a[0]>a[1]*a[2]),v(e,"class","pagination svelte-1wguwca"),q(e,"v2",a[3])},m(s,n){P(s,e,n),k(e,t),f.m(t,null),k(e,o),k(e,u),k(u,b),k(e,m),k(e,c),_.m(c,null),r||(y=[B(t,"click",a[4]),B(c,"click",a[5])],r=!0)},p(s,[n]){p!==(p=N(s))&&(f.d(1),f=p(s),f&&(f.c(),f.m(t,null))),n&2&&l!==(l=s[1]===1)&&(t.disabled=l),n&2&&V(b,s[1]),E!==(E=S(s))&&(_.d(1),_=E(s),_&&(_.c(),_.m(c,null))),n&7&&w!==(w=!(s[0]>s[1]*s[2]))&&(c.disabled=w),n&8&&q(e,"v2",s[3])},i:O,o:O,d(s){s&&i(e),f.d(),_.d(),r=!1,j(y)}}}function W(a,e,t){let{dataLength:l}=e,{activepage:o}=e,{itemPerPage:u}=e,{v2:b=!1}=e;const m=z("navigation"),c=()=>{o>1&&m(o-1)},w=()=>{l>o*u&&m(o+1)};return a.$$set=r=>{"dataLength"in r&&t(0,l=r.dataLength),"activepage"in r&&t(1,o=r.activepage),"itemPerPage"in r&&t(2,u=r.itemPerPage),"v2"in r&&t(3,b=r.v2)},[l,o,u,b,c,w]}class Y extends U{constructor(e){super(),D(this,e,W,R,F,{dataLength:0,activepage:1,itemPerPage:2,v2:3})}}export{Y as P};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/accessKey-2a3cada9.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/accessKey-2a3cada9.js
deleted file mode 100644
index 231ee0ee..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/accessKey-2a3cada9.js
+++ /dev/null
@@ -1 +0,0 @@
-import"./index-c0d078cd.js";import{c as r}from"./api-cookie-d587b0da.js";const o=async t=>{const e=new TextEncoder().encode(t),s=await crypto.subtle.digest("SHA-256",e);return Array.from(new Uint8Array(s)).map(i=>i.toString(16).padStart(2,"0")).join("")},y=async()=>{const t=new Date().toISOString(),e=await fetch(`https://gist.githubusercontent.com/AguzzTN54/3816708e01827a5c64f4903242ede7b0/raw?date=${t}`),{hash:s,previousKey:a}=await e.json();return{baseKey:s,previousKey:a}},c=async t=>{const{baseKey:e,previousKey:s}=await y(),a=await o(t?.trim()),n=e===a,i=n?"none":s[a]||null;return{isKeyValid:n,expiryDate:i}},u={_set(t){const e=t.trim().split("").reverse().join("");r.set("accessKey",e)},clear(){return r.set("accessKey",null)},async initialLoad(){const t=r.get("accessKey"),e=t?.split("").reverse().join("");try{if(!t)return{validity:!1,storedKey:e,status:"ok"};const{isKeyValid:s,expiryDate:a}=await c(e);return{validity:s,expiryDate:a,storedKey:e,status:"ok"}}catch{return{validity:!1,storedKey:e,status:"offline"}}},async verify(t){try{const{isKeyValid:e,expiryDate:s}=await c(t);return e&&this._set(t),{validity:e,msg:e?"success":s&&s!=="none"?"menu.keyExpired1":"menu.invalidKey"}}catch{return{validity:!1,msg:"connectionFailed"}}}};export{u as a};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/api-cookie-d587b0da.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/api-cookie-d587b0da.js
deleted file mode 100644
index f2d1ebd2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/api-cookie-d587b0da.js
+++ /dev/null
@@ -1 +0,0 @@
-const i=()=>{const t=document.cookie.split("; ").find(o=>o.startsWith("WishSimulator="));return t?JSON.parse(t.split("=")[1]):{}},s=e=>{const t=JSON.stringify(e),o=new Date;o.setTime(o.getTime()+31536e6);let c="expires="+o.toUTCString();document.cookie=`WishSimulator=${t};${c};SameSite=Lax; Secure;path=/`},n={get(e){return i()[e]},set(e,t){const o=i();o[e]=t,s(o)},remove(e){const t=i();delete t[e],s(t)},clean(){const e=new Date;e.setTime(e.getTime()-864e5);let t="expires="+e.toUTCString();document.cookie=`WishSimulator=;${t};SameSite=Lax; Secure;path=/`}};export{n as c};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/app-stores-358281e6.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/app-stores-358281e6.js
deleted file mode 100644
index 58863654..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/app-stores-358281e6.js
+++ /dev/null
@@ -1 +0,0 @@
-import{w as s}from"./index-0189b6d0.js";const a="4.3",t=2,W="4.3.2",E=[1,1.1,1.2,1.3,1.4,1.5,1.6,2,2.1,2.2,2.3,2.4,2.5,2.6,2.7,2.8,3,3.1,3.2,3.3,3.4,3.5,3.6,3.7,3.8,4,4.1,4.2,4.3],o={primogem:1e4,fates:1e4,genesis:1e4,shareReward:1e4},G={primogem:8e3,genesis:32e3},J={"character-event":{baseRate5:.6,max5:90,hard5:74,baseRate4:5.1,max4:10,hard4:9,winRate:50,charRate:50},"weapon-event":{baseRate5:.7,max5:80,hard5:63,baseRate4:6.6,max4:10,hard4:9,winRate:75,charRate:50,selectedRate:50},standard:{baseRate5:.6,max5:90,hard5:74,baseRate4:5.1,max4:10,hard4:9,charRate:50}},{fates:e,genesis:n,primogem:c}=o,i=s({patch:a,phase:t}),r=s({patch:a,phase:t}),l=s([]),m=s(0),d=s(!0),p=s(20),h=s(!1),g=s({selected:null,point:0}),b=s(n),u=s(c),f=s(e),w=s(e),R=s(0),v=s(0),x=s({}),M=s(!1),y=s("default"),A=s(10),B=s(!1),P=s(!1),_=s(!1),j=s(!1),k=s(!1),D=s(0),L=s(0),O=s([]),S=s([]),V=s([]),q=s(!1),z=s(0),C=s({}),F=s(!1),H=s([]),K=Object.freeze(Object.defineProperty({__proto__:null,preloadVersion:i,activeVersion:r,bannerList:l,activeBanner:m,showBeginner:d,beginnerRemaining:p,isFatepointSystem:h,course:g,genesis:b,primogem:u,acquaint:f,intertwined:w,stardust:R,starglitter:v,pricelist:x,autoskip:M,wishAmount:y,multipull:A,proUser:B,showAd:P,mobileMode:_,isMobile:j,isPWA:k,viewportHeight:D,viewportWidth:L,notice:O,assets:S,toastMsg:V,editorMode:q,editID:z,customData:C,isCustomBanner:F,memberList:H},Symbol.toStringTag,{value:"Module"}));export{H as A,o as B,J as C,V as D,O as E,A as F,l as G,h as H,r as I,x as J,G as K,B as L,P as M,K as N,E as O,S as a,k as b,D as c,g as d,p as e,f,w as g,b as h,j as i,R as j,v as k,z as l,_ as m,q as n,C as o,u as p,F as q,W as r,d as s,a as t,i as u,L as v,t as w,m as x,M as y,y as z};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/audio-460a91c6.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/audio-460a91c6.js
deleted file mode 100644
index 5f280443..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/audio-460a91c6.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import{b as D}from"./index-123e2351.js";var R=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Y={};/*!
- *  howler.js v2.2.3
- *  howlerjs.com
- *
- *  (c) 2013-2020, James Simpson of GoldFire Studios
- *  goldfirestudios.com
- *
- *  MIT License
- */(function(B){(function(){var m=function(){this.init()};m.prototype={init:function(){var A=this||g;return A._counter=1e3,A._html5AudioPool=[],A.html5PoolSize=10,A._codecs={},A._howls=[],A._muted=!1,A._volume=1,A._canPlayEvent="canplaythrough",A._navigator=typeof window<"u"&&window.navigator?window.navigator:null,A.masterGain=null,A.noAudio=!1,A.usingWebAudio=!0,A.autoSuspend=!0,A.ctx=null,A.autoUnlock=!0,A._setup(),A},volume:function(A){var I=this||g;if(A=parseFloat(A),I.ctx||s(),typeof A<"u"&&A>=0&&A<=1){if(I._volume=A,I._muted)return I;I.usingWebAudio&&I.masterGain.gain.setValueAtTime(A,g.ctx.currentTime);for(var V=0;V<I._howls.length;V++)if(!I._howls[V]._webAudio)for(var C=I._howls[V]._getSoundIds(),t=0;t<C.length;t++){var a=I._howls[V]._soundById(C[t]);a&&a._node&&(a._node.volume=a._volume*A)}return I}return I._volume},mute:function(A){var I=this||g;I.ctx||s(),I._muted=A,I.usingWebAudio&&I.masterGain.gain.setValueAtTime(A?0:I._volume,g.ctx.currentTime);for(var V=0;V<I._howls.length;V++)if(!I._howls[V]._webAudio)for(var C=I._howls[V]._getSoundIds(),t=0;t<C.length;t++){var a=I._howls[V]._soundById(C[t]);a&&a._node&&(a._node.muted=A?!0:a._muted)}return I},stop:function(){for(var A=this||g,I=0;I<A._howls.length;I++)A._howls[I].stop();return A},unload:function(){for(var A=this||g,I=A._howls.length-1;I>=0;I--)A._howls[I].unload();return A.usingWebAudio&&A.ctx&&typeof A.ctx.close<"u"&&(A.ctx.close(),A.ctx=null,s()),A},codecs:function(A){return(this||g)._codecs[A.replace(/^x-/,"")]},_setup:function(){var A=this||g;if(A.state=A.ctx&&A.ctx.state||"suspended",A._autoSuspend(),!A.usingWebAudio)if(typeof Audio<"u")try{var I=new Audio;typeof I.oncanplaythrough>"u"&&(A._canPlayEvent="canplay")}catch{A.noAudio=!0}else A.noAudio=!0;try{var I=new Audio;I.muted&&(A.noAudio=!0)}catch{}return A.noAudio||A._setupCodecs(),A},_setupCodecs:function(){var A=this||g,I=null;try{I=typeof Audio<"u"?new Audio:null}catch{return A}if(!I||typeof I.canPlayType!="function")return A;var V=I.canPlayType("audio/mpeg;").replace(/^no$/,""),C=A._navigator?A._navigator.userAgent:"",t=C.match(/OPR\/([0-6].)/g),a=t&&parseInt(t[0].split("/")[1],10)<33,e=C.indexOf("Safari")!==-1&&C.indexOf("Chrome")===-1,l=C.match(/Version\/(.*?) /),Q=e&&l&&parseInt(l[1],10)<15;return A._codecs={mp3:!!(!a&&(V||I.canPlayType("audio/mp3;").replace(/^no$/,""))),mpeg:!!V,opus:!!I.canPlayType('audio/ogg; codecs="opus"').replace(/^no$/,""),ogg:!!I.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),oga:!!I.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),wav:!!(I.canPlayType('audio/wav; codecs="1"')||I.canPlayType("audio/wav")).replace(/^no$/,""),aac:!!I.canPlayType("audio/aac;").replace(/^no$/,""),caf:!!I.canPlayType("audio/x-caf;").replace(/^no$/,""),m4a:!!(I.canPlayType("audio/x-m4a;")||I.canPlayType("audio/m4a;")||I.canPlayType("audio/aac;")).replace(/^no$/,""),m4b:!!(I.canPlayType("audio/x-m4b;")||I.canPlayType("audio/m4b;")||I.canPlayType("audio/aac;")).replace(/^no$/,""),mp4:!!(I.canPlayType("audio/x-mp4;")||I.canPlayType("audio/mp4;")||I.canPlayType("audio/aac;")).replace(/^no$/,""),weba:!!(!Q&&I.canPlayType('audio/webm; codecs="vorbis"').replace(/^no$/,"")),webm:!!(!Q&&I.canPlayType('audio/webm; codecs="vorbis"').replace(/^no$/,"")),dolby:!!I.canPlayType('audio/mp4; codecs="ec-3"').replace(/^no$/,""),flac:!!(I.canPlayType("audio/x-flac;")||I.canPlayType("audio/flac;")).replace(/^no$/,"")},A},_unlockAudio:function(){var A=this||g;if(!(A._audioUnlocked||!A.ctx)){A._audioUnlocked=!1,A.autoUnlock=!1,!A._mobileUnloaded&&A.ctx.sampleRate!==44100&&(A._mobileUnloaded=!0,A.unload()),A._scratchBuffer=A.ctx.createBuffer(1,1,22050);var I=function(V){for(;A._html5AudioPool.length<A.html5PoolSize;)try{var C=new Audio;C._unlocked=!0,A._releaseHtml5Audio(C)}catch{A.noAudio=!0;break}for(var t=0;t<A._howls.length;t++)if(!A._howls[t]._webAudio)for(var a=A._howls[t]._getSoundIds(),e=0;e<a.length;e++){var l=A._howls[t]._soundById(a[e]);l&&l._node&&!l._node._unlocked&&(l._node._unlocked=!0,l._node.load())}A._autoResume();var Q=A.ctx.createBufferSource();Q.buffer=A._scratchBuffer,Q.connect(A.ctx.destination),typeof Q.start>"u"?Q.noteOn(0):Q.start(0),typeof A.ctx.resume=="function"&&A.ctx.resume(),Q.onended=function(){Q.disconnect(0),A._audioUnlocked=!0,document.removeEventListener("touchstart",I,!0),document.removeEventListener("touchend",I,!0),document.removeEventListener("click",I,!0),document.removeEventListener("keydown",I,!0);for(var p=0;p<A._howls.length;p++)A._howls[p]._emit("unlock")}};return document.addEventListener("touchstart",I,!0),document.addEventListener("touchend",I,!0),document.addEventListener("click",I,!0),document.addEventListener("keydown",I,!0),A}},_obtainHtml5Audio:function(){var A=this||g;if(A._html5AudioPool.length)return A._html5AudioPool.pop();var I=new Audio().play();return I&&typeof Promise<"u"&&(I instanceof Promise||typeof I.then=="function")&&I.catch(function(){console.warn("HTML5 Audio pool exhausted, returning potentially locked audio object.")}),new Audio},_releaseHtml5Audio:function(A){var I=this||g;return A._unlocked&&I._html5AudioPool.push(A),I},_autoSuspend:function(){var A=this;if(!(!A.autoSuspend||!A.ctx||typeof A.ctx.suspend>"u"||!g.usingWebAudio)){for(var I=0;I<A._howls.length;I++)if(A._howls[I]._webAudio){for(var V=0;V<A._howls[I]._sounds.length;V++)if(!A._howls[I]._sounds[V]._paused)return A}return A._suspendTimer&&clearTimeout(A._suspendTimer),A._suspendTimer=setTimeout(function(){if(!!A.autoSuspend){A._suspendTimer=null,A.state="suspending";var C=function(){A.state="suspended",A._resumeAfterSuspend&&(delete A._resumeAfterSuspend,A._autoResume())};A.ctx.suspend().then(C,C)}},3e4),A}},_autoResume:function(){var A=this;if(!(!A.ctx||typeof A.ctx.resume>"u"||!g.usingWebAudio))return A.state==="running"&&A.ctx.state!=="interrupted"&&A._suspendTimer?(clearTimeout(A._suspendTimer),A._suspendTimer=null):A.state==="suspended"||A.state==="running"&&A.ctx.state==="interrupted"?(A.ctx.resume().then(function(){A.state="running";for(var I=0;I<A._howls.length;I++)A._howls[I]._emit("resume")}),A._suspendTimer&&(clearTimeout(A._suspendTimer),A._suspendTimer=null)):A.state==="suspending"&&(A._resumeAfterSuspend=!0),A}};var g=new m,i=function(A){var I=this;if(!A.src||A.src.length===0){console.error("An array of source files must be passed with any new Howl.");return}I.init(A)};i.prototype={init:function(A){var I=this;return g.ctx||s(),I._autoplay=A.autoplay||!1,I._format=typeof A.format!="string"?A.format:[A.format],I._html5=A.html5||!1,I._muted=A.mute||!1,I._loop=A.loop||!1,I._pool=A.pool||5,I._preload=typeof A.preload=="boolean"||A.preload==="metadata"?A.preload:!0,I._rate=A.rate||1,I._sprite=A.sprite||{},I._src=typeof A.src!="string"?A.src:[A.src],I._volume=A.volume!==void 0?A.volume:1,I._xhr={method:A.xhr&&A.xhr.method?A.xhr.method:"GET",headers:A.xhr&&A.xhr.headers?A.xhr.headers:null,withCredentials:A.xhr&&A.xhr.withCredentials?A.xhr.withCredentials:!1},I._duration=0,I._state="unloaded",I._sounds=[],I._endTimers={},I._queue=[],I._playLock=!1,I._onend=A.onend?[{fn:A.onend}]:[],I._onfade=A.onfade?[{fn:A.onfade}]:[],I._onload=A.onload?[{fn:A.onload}]:[],I._onloaderror=A.onloaderror?[{fn:A.onloaderror}]:[],I._onplayerror=A.onplayerror?[{fn:A.onplayerror}]:[],I._onpause=A.onpause?[{fn:A.onpause}]:[],I._onplay=A.onplay?[{fn:A.onplay}]:[],I._onstop=A.onstop?[{fn:A.onstop}]:[],I._onmute=A.onmute?[{fn:A.onmute}]:[],I._onvolume=A.onvolume?[{fn:A.onvolume}]:[],I._onrate=A.onrate?[{fn:A.onrate}]:[],I._onseek=A.onseek?[{fn:A.onseek}]:[],I._onunlock=A.onunlock?[{fn:A.onunlock}]:[],I._onresume=[],I._webAudio=g.usingWebAudio&&!I._html5,typeof g.ctx<"u"&&g.ctx&&g.autoUnlock&&g._unlockAudio(),g._howls.push(I),I._autoplay&&I._queue.push({event:"play",action:function(){I.play()}}),I._preload&&I._preload!=="none"&&I.load(),I},load:function(){var A=this,I=null;if(g.noAudio){A._emit("loaderror",null,"No audio support.");return}typeof A._src=="string"&&(A._src=[A._src]);for(var V=0;V<A._src.length;V++){var C,t;if(A._format&&A._format[V])C=A._format[V];else{if(t=A._src[V],typeof t!="string"){A._emit("loaderror",null,"Non-string found in selected audio sources - ignoring.");continue}C=/^data:audio\/([^;,]+);/i.exec(t),C||(C=/\.([^.]+)$/.exec(t.split("?",1)[0])),C&&(C=C[1].toLowerCase())}if(C||console.warn('No file extension was found. Consider using the "format" property or specify an extension.'),C&&g.codecs(C)){I=A._src[V];break}}if(!I){A._emit("loaderror",null,"No codec support for selected audio sources.");return}return A._src=I,A._state="loading",window.location.protocol==="https:"&&I.slice(0,5)==="http:"&&(A._html5=!0,A._webAudio=!1),new n(A),A._webAudio&&r(A),A},play:function(A,I){var V=this,C=null;if(typeof A=="number")C=A,A=null;else{if(typeof A=="string"&&V._state==="loaded"&&!V._sprite[A])return null;if(typeof A>"u"&&(A="__default",!V._playLock)){for(var t=0,a=0;a<V._sounds.length;a++)V._sounds[a]._paused&&!V._sounds[a]._ended&&(t++,C=V._sounds[a]._id);t===1?A=null:C=null}}var e=C?V._soundById(C):V._inactiveSound();if(!e)return null;if(C&&!A&&(A=e._sprite||"__default"),V._state!=="loaded"){e._sprite=A,e._ended=!1;var l=e._id;return V._queue.push({event:"play",action:function(){V.play(l)}}),l}if(C&&!e._paused)return I||V._loadQueue("play"),e._id;V._webAudio&&g._autoResume();var Q=Math.max(0,e._seek>0?e._seek:V._sprite[A][0]/1e3),p=Math.max(0,(V._sprite[A][0]+V._sprite[A][1])/1e3-Q),M=p*1e3/Math.abs(e._rate),W=V._sprite[A][0]/1e3,k=(V._sprite[A][0]+V._sprite[A][1])/1e3;e._sprite=A,e._ended=!1;var U=function(){e._paused=!1,e._seek=Q,e._start=W,e._stop=k,e._loop=!!(e._loop||V._sprite[A][2])};if(Q>=k){V._ended(e);return}var c=e._node;if(V._webAudio){var G=function(){V._playLock=!1,U(),V._refreshBuffer(e);var Z=e._muted||V._muted?0:e._volume;c.gain.setValueAtTime(Z,g.ctx.currentTime),e._playStart=g.ctx.currentTime,typeof c.bufferSource.start>"u"?e._loop?c.bufferSource.noteGrainOn(0,Q,86400):c.bufferSource.noteGrainOn(0,Q,p):e._loop?c.bufferSource.start(0,Q,86400):c.bufferSource.start(0,Q,p),M!==1/0&&(V._endTimers[e._id]=setTimeout(V._ended.bind(V,e),M)),I||setTimeout(function(){V._emit("play",e._id),V._loadQueue()},0)};g.state==="running"&&g.ctx.state!=="interrupted"?G():(V._playLock=!0,V.once("resume",G),V._clearTimer(e._id))}else{var J=function(){c.currentTime=Q,c.muted=e._muted||V._muted||g._muted||c.muted,c.volume=e._volume*g.volume(),c.playbackRate=e._rate;try{var Z=c.play();if(Z&&typeof Promise<"u"&&(Z instanceof Promise||typeof Z.then=="function")?(V._playLock=!0,U(),Z.then(function(){V._playLock=!1,c._unlocked=!0,I?V._loadQueue():V._emit("play",e._id)}).catch(function(){V._playLock=!1,V._emit("playerror",e._id,"Playback was unable to start. This is most commonly an issue on mobile devices and Chrome where playback was not within a user interaction."),e._ended=!0,e._paused=!0})):I||(V._playLock=!1,U(),V._emit("play",e._id)),c.playbackRate=e._rate,c.paused){V._emit("playerror",e._id,"Playback was unable to start. This is most commonly an issue on mobile devices and Chrome where playback was not within a user interaction.");return}A!=="__default"||e._loop?V._endTimers[e._id]=setTimeout(V._ended.bind(V,e),M):(V._endTimers[e._id]=function(){V._ended(e),c.removeEventListener("ended",V._endTimers[e._id],!1)},c.addEventListener("ended",V._endTimers[e._id],!1))}catch(T){V._emit("playerror",e._id,T)}};c.src==="data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"&&(c.src=V._src,c.load());var w=window&&window.ejecta||!c.readyState&&g._navigator.isCocoonJS;if(c.readyState>=3||w)J();else{V._playLock=!0,V._state="loading";var h=function(){V._state="loaded",J(),c.removeEventListener(g._canPlayEvent,h,!1)};c.addEventListener(g._canPlayEvent,h,!1),V._clearTimer(e._id)}}return e._id},pause:function(A){var I=this;if(I._state!=="loaded"||I._playLock)return I._queue.push({event:"pause",action:function(){I.pause(A)}}),I;for(var V=I._getSoundIds(A),C=0;C<V.length;C++){I._clearTimer(V[C]);var t=I._soundById(V[C]);if(t&&!t._paused&&(t._seek=I.seek(V[C]),t._rateSeek=0,t._paused=!0,I._stopFade(V[C]),t._node))if(I._webAudio){if(!t._node.bufferSource)continue;typeof t._node.bufferSource.stop>"u"?t._node.bufferSource.noteOff(0):t._node.bufferSource.stop(0),I._cleanBuffer(t._node)}else(!isNaN(t._node.duration)||t._node.duration===1/0)&&t._node.pause();arguments[1]||I._emit("pause",t?t._id:null)}return I},stop:function(A,I){var V=this;if(V._state!=="loaded"||V._playLock)return V._queue.push({event:"stop",action:function(){V.stop(A)}}),V;for(var C=V._getSoundIds(A),t=0;t<C.length;t++){V._clearTimer(C[t]);var a=V._soundById(C[t]);a&&(a._seek=a._start||0,a._rateSeek=0,a._paused=!0,a._ended=!0,V._stopFade(C[t]),a._node&&(V._webAudio?a._node.bufferSource&&(typeof a._node.bufferSource.stop>"u"?a._node.bufferSource.noteOff(0):a._node.bufferSource.stop(0),V._cleanBuffer(a._node)):(!isNaN(a._node.duration)||a._node.duration===1/0)&&(a._node.currentTime=a._start||0,a._node.pause(),a._node.duration===1/0&&V._clearSound(a._node))),I||V._emit("stop",a._id))}return V},mute:function(A,I){var V=this;if(V._state!=="loaded"||V._playLock)return V._queue.push({event:"mute",action:function(){V.mute(A,I)}}),V;if(typeof I>"u")if(typeof A=="boolean")V._muted=A;else return V._muted;for(var C=V._getSoundIds(I),t=0;t<C.length;t++){var a=V._soundById(C[t]);a&&(a._muted=A,a._interval&&V._stopFade(a._id),V._webAudio&&a._node?a._node.gain.setValueAtTime(A?0:a._volume,g.ctx.currentTime):a._node&&(a._node.muted=g._muted?!0:A),V._emit("mute",a._id))}return V},volume:function(){var A=this,I=arguments,V,C;if(I.length===0)return A._volume;if(I.length===1||I.length===2&&typeof I[1]>"u"){var t=A._getSoundIds(),a=t.indexOf(I[0]);a>=0?C=parseInt(I[0],10):V=parseFloat(I[0])}else I.length>=2&&(V=parseFloat(I[0]),C=parseInt(I[1],10));var e;if(typeof V<"u"&&V>=0&&V<=1){if(A._state!=="loaded"||A._playLock)return A._queue.push({event:"volume",action:function(){A.volume.apply(A,I)}}),A;typeof C>"u"&&(A._volume=V),C=A._getSoundIds(C);for(var l=0;l<C.length;l++)e=A._soundById(C[l]),e&&(e._volume=V,I[2]||A._stopFade(C[l]),A._webAudio&&e._node&&!e._muted?e._node.gain.setValueAtTime(V,g.ctx.currentTime):e._node&&!e._muted&&(e._node.volume=V*g.volume()),A._emit("volume",e._id))}else return e=C?A._soundById(C):A._sounds[0],e?e._volume:0;return A},fade:function(A,I,V,C){var t=this;if(t._state!=="loaded"||t._playLock)return t._queue.push({event:"fade",action:function(){t.fade(A,I,V,C)}}),t;A=Math.min(Math.max(0,parseFloat(A)),1),I=Math.min(Math.max(0,parseFloat(I)),1),V=parseFloat(V),t.volume(A,C);for(var a=t._getSoundIds(C),e=0;e<a.length;e++){var l=t._soundById(a[e]);if(l){if(C||t._stopFade(a[e]),t._webAudio&&!l._muted){var Q=g.ctx.currentTime,p=Q+V/1e3;l._volume=A,l._node.gain.setValueAtTime(A,Q),l._node.gain.linearRampToValueAtTime(I,p)}t._startFadeInterval(l,A,I,V,a[e],typeof C>"u")}}return t},_startFadeInterval:function(A,I,V,C,t,a){var e=this,l=I,Q=V-I,p=Math.abs(Q/.01),M=Math.max(4,p>0?C/p:C),W=Date.now();A._fadeTo=V,A._interval=setInterval(function(){var k=(Date.now()-W)/C;W=Date.now(),l+=Q*k,l=Math.round(l*100)/100,Q<0?l=Math.max(V,l):l=Math.min(V,l),e._webAudio?A._volume=l:e.volume(l,A._id,!0),a&&(e._volume=l),(V<I&&l<=V||V>I&&l>=V)&&(clearInterval(A._interval),A._interval=null,A._fadeTo=null,e.volume(V,A._id),e._emit("fade",A._id))},M)},_stopFade:function(A){var I=this,V=I._soundById(A);return V&&V._interval&&(I._webAudio&&V._node.gain.cancelScheduledValues(g.ctx.currentTime),clearInterval(V._interval),V._interval=null,I.volume(V._fadeTo,A),V._fadeTo=null,I._emit("fade",A)),I},loop:function(){var A=this,I=arguments,V,C,t;if(I.length===0)return A._loop;if(I.length===1)if(typeof I[0]=="boolean")V=I[0],A._loop=V;else return t=A._soundById(parseInt(I[0],10)),t?t._loop:!1;else I.length===2&&(V=I[0],C=parseInt(I[1],10));for(var a=A._getSoundIds(C),e=0;e<a.length;e++)t=A._soundById(a[e]),t&&(t._loop=V,A._webAudio&&t._node&&t._node.bufferSource&&(t._node.bufferSource.loop=V,V&&(t._node.bufferSource.loopStart=t._start||0,t._node.bufferSource.loopEnd=t._stop,A.playing(a[e])&&(A.pause(a[e],!0),A.play(a[e],!0)))));return A},rate:function(){var A=this,I=arguments,V,C;if(I.length===0)C=A._sounds[0]._id;else if(I.length===1){var t=A._getSoundIds(),a=t.indexOf(I[0]);a>=0?C=parseInt(I[0],10):V=parseFloat(I[0])}else I.length===2&&(V=parseFloat(I[0]),C=parseInt(I[1],10));var e;if(typeof V=="number"){if(A._state!=="loaded"||A._playLock)return A._queue.push({event:"rate",action:function(){A.rate.apply(A,I)}}),A;typeof C>"u"&&(A._rate=V),C=A._getSoundIds(C);for(var l=0;l<C.length;l++)if(e=A._soundById(C[l]),e){A.playing(C[l])&&(e._rateSeek=A.seek(C[l]),e._playStart=A._webAudio?g.ctx.currentTime:e._playStart),e._rate=V,A._webAudio&&e._node&&e._node.bufferSource?e._node.bufferSource.playbackRate.setValueAtTime(V,g.ctx.currentTime):e._node&&(e._node.playbackRate=V);var Q=A.seek(C[l]),p=(A._sprite[e._sprite][0]+A._sprite[e._sprite][1])/1e3-Q,M=p*1e3/Math.abs(e._rate);(A._endTimers[C[l]]||!e._paused)&&(A._clearTimer(C[l]),A._endTimers[C[l]]=setTimeout(A._ended.bind(A,e),M)),A._emit("rate",e._id)}}else return e=A._soundById(C),e?e._rate:A._rate;return A},seek:function(){var A=this,I=arguments,V,C;if(I.length===0)A._sounds.length&&(C=A._sounds[0]._id);else if(I.length===1){var t=A._getSoundIds(),a=t.indexOf(I[0]);a>=0?C=parseInt(I[0],10):A._sounds.length&&(C=A._sounds[0]._id,V=parseFloat(I[0]))}else I.length===2&&(V=parseFloat(I[0]),C=parseInt(I[1],10));if(typeof C>"u")return 0;if(typeof V=="number"&&(A._state!=="loaded"||A._playLock))return A._queue.push({event:"seek",action:function(){A.seek.apply(A,I)}}),A;var e=A._soundById(C);if(e)if(typeof V=="number"&&V>=0){var l=A.playing(C);l&&A.pause(C,!0),e._seek=V,e._ended=!1,A._clearTimer(C),!A._webAudio&&e._node&&!isNaN(e._node.duration)&&(e._node.currentTime=V);var Q=function(){l&&A.play(C,!0),A._emit("seek",C)};if(l&&!A._webAudio){var p=function(){A._playLock?setTimeout(p,0):Q()};setTimeout(p,0)}else Q()}else if(A._webAudio){var M=A.playing(C)?g.ctx.currentTime-e._playStart:0,W=e._rateSeek?e._rateSeek-e._seek:0;return e._seek+(W+M*Math.abs(e._rate))}else return e._node.currentTime;return A},playing:function(A){var I=this;if(typeof A=="number"){var V=I._soundById(A);return V?!V._paused:!1}for(var C=0;C<I._sounds.length;C++)if(!I._sounds[C]._paused)return!0;return!1},duration:function(A){var I=this,V=I._duration,C=I._soundById(A);return C&&(V=I._sprite[C._sprite][1]/1e3),V},state:function(){return this._state},unload:function(){for(var A=this,I=A._sounds,V=0;V<I.length;V++)I[V]._paused||A.stop(I[V]._id),A._webAudio||(A._clearSound(I[V]._node),I[V]._node.removeEventListener("error",I[V]._errorFn,!1),I[V]._node.removeEventListener(g._canPlayEvent,I[V]._loadFn,!1),I[V]._node.removeEventListener("ended",I[V]._endFn,!1),g._releaseHtml5Audio(I[V]._node)),delete I[V]._node,A._clearTimer(I[V]._id);var C=g._howls.indexOf(A);C>=0&&g._howls.splice(C,1);var t=!0;for(V=0;V<g._howls.length;V++)if(g._howls[V]._src===A._src||A._src.indexOf(g._howls[V]._src)>=0){t=!1;break}return d&&t&&delete d[A._src],g.noAudio=!1,A._state="unloaded",A._sounds=[],A=null,null},on:function(A,I,V,C){var t=this,a=t["_on"+A];return typeof I=="function"&&a.push(C?{id:V,fn:I,once:C}:{id:V,fn:I}),t},off:function(A,I,V){var C=this,t=C["_on"+A],a=0;if(typeof I=="number"&&(V=I,I=null),I||V)for(a=0;a<t.length;a++){var e=V===t[a].id;if(I===t[a].fn&&e||!I&&e){t.splice(a,1);break}}else if(A)C["_on"+A]=[];else{var l=Object.keys(C);for(a=0;a<l.length;a++)l[a].indexOf("_on")===0&&Array.isArray(C[l[a]])&&(C[l[a]]=[])}return C},once:function(A,I,V){var C=this;return C.on(A,I,V,1),C},_emit:function(A,I,V){for(var C=this,t=C["_on"+A],a=t.length-1;a>=0;a--)(!t[a].id||t[a].id===I||A==="load")&&(setTimeout(function(e){e.call(this,I,V)}.bind(C,t[a].fn),0),t[a].once&&C.off(A,t[a].fn,t[a].id));return C._loadQueue(A),C},_loadQueue:function(A){var I=this;if(I._queue.length>0){var V=I._queue[0];V.event===A&&(I._queue.shift(),I._loadQueue()),A||V.action()}return I},_ended:function(A){var I=this,V=A._sprite;if(!I._webAudio&&A._node&&!A._node.paused&&!A._node.ended&&A._node.currentTime<A._stop)return setTimeout(I._ended.bind(I,A),100),I;var C=!!(A._loop||I._sprite[V][2]);if(I._emit("end",A._id),!I._webAudio&&C&&I.stop(A._id,!0).play(A._id),I._webAudio&&C){I._emit("play",A._id),A._seek=A._start||0,A._rateSeek=0,A._playStart=g.ctx.currentTime;var t=(A._stop-A._start)*1e3/Math.abs(A._rate);I._endTimers[A._id]=setTimeout(I._ended.bind(I,A),t)}return I._webAudio&&!C&&(A._paused=!0,A._ended=!0,A._seek=A._start||0,A._rateSeek=0,I._clearTimer(A._id),I._cleanBuffer(A._node),g._autoSuspend()),!I._webAudio&&!C&&I.stop(A._id,!0),I},_clearTimer:function(A){var I=this;if(I._endTimers[A]){if(typeof I._endTimers[A]!="function")clearTimeout(I._endTimers[A]);else{var V=I._soundById(A);V&&V._node&&V._node.removeEventListener("ended",I._endTimers[A],!1)}delete I._endTimers[A]}return I},_soundById:function(A){for(var I=this,V=0;V<I._sounds.length;V++)if(A===I._sounds[V]._id)return I._sounds[V];return null},_inactiveSound:function(){var A=this;A._drain();for(var I=0;I<A._sounds.length;I++)if(A._sounds[I]._ended)return A._sounds[I].reset();return new n(A)},_drain:function(){var A=this,I=A._pool,V=0,C=0;if(!(A._sounds.length<I)){for(C=0;C<A._sounds.length;C++)A._sounds[C]._ended&&V++;for(C=A._sounds.length-1;C>=0;C--){if(V<=I)return;A._sounds[C]._ended&&(A._webAudio&&A._sounds[C]._node&&A._sounds[C]._node.disconnect(0),A._sounds.splice(C,1),V--)}}},_getSoundIds:function(A){var I=this;if(typeof A>"u"){for(var V=[],C=0;C<I._sounds.length;C++)V.push(I._sounds[C]._id);return V}else return[A]},_refreshBuffer:function(A){var I=this;return A._node.bufferSource=g.ctx.createBufferSource(),A._node.bufferSource.buffer=d[I._src],A._panner?A._node.bufferSource.connect(A._panner):A._node.bufferSource.connect(A._node),A._node.bufferSource.loop=A._loop,A._loop&&(A._node.bufferSource.loopStart=A._start||0,A._node.bufferSource.loopEnd=A._stop||0),A._node.bufferSource.playbackRate.setValueAtTime(A._rate,g.ctx.currentTime),I},_cleanBuffer:function(A){var I=this,V=g._navigator&&g._navigator.vendor.indexOf("Apple")>=0;if(g._scratchBuffer&&A.bufferSource&&(A.bufferSource.onended=null,A.bufferSource.disconnect(0),V))try{A.bufferSource.buffer=g._scratchBuffer}catch{}return A.bufferSource=null,I},_clearSound:function(A){var I=/MSIE |Trident\//.test(g._navigator&&g._navigator.userAgent);I||(A.src="data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA")}};var n=function(A){this._parent=A,this.init()};n.prototype={init:function(){var A=this,I=A._parent;return A._muted=I._muted,A._loop=I._loop,A._volume=I._volume,A._rate=I._rate,A._seek=0,A._paused=!0,A._ended=!0,A._sprite="__default",A._id=++g._counter,I._sounds.push(A),A.create(),A},create:function(){var A=this,I=A._parent,V=g._muted||A._muted||A._parent._muted?0:A._volume;return I._webAudio?(A._node=typeof g.ctx.createGain>"u"?g.ctx.createGainNode():g.ctx.createGain(),A._node.gain.setValueAtTime(V,g.ctx.currentTime),A._node.paused=!0,A._node.connect(g.masterGain)):g.noAudio||(A._node=g._obtainHtml5Audio(),A._errorFn=A._errorListener.bind(A),A._node.addEventListener("error",A._errorFn,!1),A._loadFn=A._loadListener.bind(A),A._node.addEventListener(g._canPlayEvent,A._loadFn,!1),A._endFn=A._endListener.bind(A),A._node.addEventListener("ended",A._endFn,!1),A._node.src=I._src,A._node.preload=I._preload===!0?"auto":I._preload,A._node.volume=V*g.volume(),A._node.load()),A},reset:function(){var A=this,I=A._parent;return A._muted=I._muted,A._loop=I._loop,A._volume=I._volume,A._rate=I._rate,A._seek=0,A._rateSeek=0,A._paused=!0,A._ended=!0,A._sprite="__default",A._id=++g._counter,A},_errorListener:function(){var A=this;A._parent._emit("loaderror",A._id,A._node.error?A._node.error.code:0),A._node.removeEventListener("error",A._errorFn,!1)},_loadListener:function(){var A=this,I=A._parent;I._duration=Math.ceil(A._node.duration*10)/10,Object.keys(I._sprite).length===0&&(I._sprite={__default:[0,I._duration*1e3]}),I._state!=="loaded"&&(I._state="loaded",I._emit("load"),I._loadQueue()),A._node.removeEventListener(g._canPlayEvent,A._loadFn,!1)},_endListener:function(){var A=this,I=A._parent;I._duration===1/0&&(I._duration=Math.ceil(A._node.duration*10)/10,I._sprite.__default[1]===1/0&&(I._sprite.__default[1]=I._duration*1e3),I._ended(A)),A._node.removeEventListener("ended",A._endFn,!1)}};var d={},r=function(A){var I=A._src;if(d[I]){A._duration=d[I].duration,o(A);return}if(/^data:[^;]+;base64,/.test(I)){for(var V=atob(I.split(",")[1]),C=new Uint8Array(V.length),t=0;t<V.length;++t)C[t]=V.charCodeAt(t);E(C.buffer,A)}else{var a=new XMLHttpRequest;a.open(A._xhr.method,I,!0),a.withCredentials=A._xhr.withCredentials,a.responseType="arraybuffer",A._xhr.headers&&Object.keys(A._xhr.headers).forEach(function(e){a.setRequestHeader(e,A._xhr.headers[e])}),a.onload=function(){var e=(a.status+"")[0];if(e!=="0"&&e!=="2"&&e!=="3"){A._emit("loaderror",null,"Failed loading audio file with status: "+a.status+".");return}E(a.response,A)},a.onerror=function(){A._webAudio&&(A._html5=!0,A._webAudio=!1,A._sounds=[],delete d[I],A.load())},u(a)}},u=function(A){try{A.send()}catch{A.onerror()}},E=function(A,I){var V=function(){I._emit("loaderror",null,"Decoding audio data failed.")},C=function(t){t&&I._sounds.length>0?(d[I._src]=t,o(I,t)):V()};typeof Promise<"u"&&g.ctx.decodeAudioData.length===1?g.ctx.decodeAudioData(A).then(C).catch(V):g.ctx.decodeAudioData(A,C,V)},o=function(A,I){I&&!A._duration&&(A._duration=I.duration),Object.keys(A._sprite).length===0&&(A._sprite={__default:[0,A._duration*1e3]}),A._state!=="loaded"&&(A._state="loaded",A._emit("load"),A._loadQueue())},s=function(){if(!!g.usingWebAudio){try{typeof AudioContext<"u"?g.ctx=new AudioContext:typeof webkitAudioContext<"u"?g.ctx=new webkitAudioContext:g.usingWebAudio=!1}catch{g.usingWebAudio=!1}g.ctx||(g.usingWebAudio=!1);var A=/iP(hone|od|ad)/.test(g._navigator&&g._navigator.platform),I=g._navigator&&g._navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/),V=I?parseInt(I[1],10):null;if(A&&V&&V<9){var C=/safari/.test(g._navigator&&g._navigator.userAgent.toLowerCase());g._navigator&&!C&&(g.usingWebAudio=!1)}g.usingWebAudio&&(g.masterGain=typeof g.ctx.createGain>"u"?g.ctx.createGainNode():g.ctx.createGain(),g.masterGain.gain.setValueAtTime(g._muted?0:g._volume,g.ctx.currentTime),g.masterGain.connect(g.ctx.destination)),g._setup()}};B.Howler=g,B.Howl=i,typeof R<"u"?(R.HowlerGlobal=m,R.Howler=g,R.Howl=i,R.Sound=n):typeof window<"u"&&(window.HowlerGlobal=m,window.Howler=g,window.Howl=i,window.Sound=n)})();/*!
- *  Spatial Plugin - Adds support for stereo and 3D audio where Web Audio is supported.
- *  
- *  howler.js v2.2.3
- *  howlerjs.com
- *
- *  (c) 2013-2020, James Simpson of GoldFire Studios
- *  goldfirestudios.com
- *
- *  MIT License
- */(function(){HowlerGlobal.prototype._pos=[0,0,0],HowlerGlobal.prototype._orientation=[0,0,-1,0,1,0],HowlerGlobal.prototype.stereo=function(g){var i=this;if(!i.ctx||!i.ctx.listener)return i;for(var n=i._howls.length-1;n>=0;n--)i._howls[n].stereo(g);return i},HowlerGlobal.prototype.pos=function(g,i,n){var d=this;if(!d.ctx||!d.ctx.listener)return d;if(i=typeof i!="number"?d._pos[1]:i,n=typeof n!="number"?d._pos[2]:n,typeof g=="number")d._pos=[g,i,n],typeof d.ctx.listener.positionX<"u"?(d.ctx.listener.positionX.setTargetAtTime(d._pos[0],Howler.ctx.currentTime,.1),d.ctx.listener.positionY.setTargetAtTime(d._pos[1],Howler.ctx.currentTime,.1),d.ctx.listener.positionZ.setTargetAtTime(d._pos[2],Howler.ctx.currentTime,.1)):d.ctx.listener.setPosition(d._pos[0],d._pos[1],d._pos[2]);else return d._pos;return d},HowlerGlobal.prototype.orientation=function(g,i,n,d,r,u){var E=this;if(!E.ctx||!E.ctx.listener)return E;var o=E._orientation;if(i=typeof i!="number"?o[1]:i,n=typeof n!="number"?o[2]:n,d=typeof d!="number"?o[3]:d,r=typeof r!="number"?o[4]:r,u=typeof u!="number"?o[5]:u,typeof g=="number")E._orientation=[g,i,n,d,r,u],typeof E.ctx.listener.forwardX<"u"?(E.ctx.listener.forwardX.setTargetAtTime(g,Howler.ctx.currentTime,.1),E.ctx.listener.forwardY.setTargetAtTime(i,Howler.ctx.currentTime,.1),E.ctx.listener.forwardZ.setTargetAtTime(n,Howler.ctx.currentTime,.1),E.ctx.listener.upX.setTargetAtTime(d,Howler.ctx.currentTime,.1),E.ctx.listener.upY.setTargetAtTime(r,Howler.ctx.currentTime,.1),E.ctx.listener.upZ.setTargetAtTime(u,Howler.ctx.currentTime,.1)):E.ctx.listener.setOrientation(g,i,n,d,r,u);else return o;return E},Howl.prototype.init=function(g){return function(i){var n=this;return n._orientation=i.orientation||[1,0,0],n._stereo=i.stereo||null,n._pos=i.pos||null,n._pannerAttr={coneInnerAngle:typeof i.coneInnerAngle<"u"?i.coneInnerAngle:360,coneOuterAngle:typeof i.coneOuterAngle<"u"?i.coneOuterAngle:360,coneOuterGain:typeof i.coneOuterGain<"u"?i.coneOuterGain:0,distanceModel:typeof i.distanceModel<"u"?i.distanceModel:"inverse",maxDistance:typeof i.maxDistance<"u"?i.maxDistance:1e4,panningModel:typeof i.panningModel<"u"?i.panningModel:"HRTF",refDistance:typeof i.refDistance<"u"?i.refDistance:1,rolloffFactor:typeof i.rolloffFactor<"u"?i.rolloffFactor:1},n._onstereo=i.onstereo?[{fn:i.onstereo}]:[],n._onpos=i.onpos?[{fn:i.onpos}]:[],n._onorientation=i.onorientation?[{fn:i.onorientation}]:[],g.call(this,i)}}(Howl.prototype.init),Howl.prototype.stereo=function(g,i){var n=this;if(!n._webAudio)return n;if(n._state!=="loaded")return n._queue.push({event:"stereo",action:function(){n.stereo(g,i)}}),n;var d=typeof Howler.ctx.createStereoPanner>"u"?"spatial":"stereo";if(typeof i>"u")if(typeof g=="number")n._stereo=g,n._pos=[g,0,0];else return n._stereo;for(var r=n._getSoundIds(i),u=0;u<r.length;u++){var E=n._soundById(r[u]);if(E)if(typeof g=="number")E._stereo=g,E._pos=[g,0,0],E._node&&(E._pannerAttr.panningModel="equalpower",(!E._panner||!E._panner.pan)&&m(E,d),d==="spatial"?typeof E._panner.positionX<"u"?(E._panner.positionX.setValueAtTime(g,Howler.ctx.currentTime),E._panner.positionY.setValueAtTime(0,Howler.ctx.currentTime),E._panner.positionZ.setValueAtTime(0,Howler.ctx.currentTime)):E._panner.setPosition(g,0,0):E._panner.pan.setValueAtTime(g,Howler.ctx.currentTime)),n._emit("stereo",E._id);else return E._stereo}return n},Howl.prototype.pos=function(g,i,n,d){var r=this;if(!r._webAudio)return r;if(r._state!=="loaded")return r._queue.push({event:"pos",action:function(){r.pos(g,i,n,d)}}),r;if(i=typeof i!="number"?0:i,n=typeof n!="number"?-.5:n,typeof d>"u")if(typeof g=="number")r._pos=[g,i,n];else return r._pos;for(var u=r._getSoundIds(d),E=0;E<u.length;E++){var o=r._soundById(u[E]);if(o)if(typeof g=="number")o._pos=[g,i,n],o._node&&((!o._panner||o._panner.pan)&&m(o,"spatial"),typeof o._panner.positionX<"u"?(o._panner.positionX.setValueAtTime(g,Howler.ctx.currentTime),o._panner.positionY.setValueAtTime(i,Howler.ctx.currentTime),o._panner.positionZ.setValueAtTime(n,Howler.ctx.currentTime)):o._panner.setPosition(g,i,n)),r._emit("pos",o._id);else return o._pos}return r},Howl.prototype.orientation=function(g,i,n,d){var r=this;if(!r._webAudio)return r;if(r._state!=="loaded")return r._queue.push({event:"orientation",action:function(){r.orientation(g,i,n,d)}}),r;if(i=typeof i!="number"?r._orientation[1]:i,n=typeof n!="number"?r._orientation[2]:n,typeof d>"u")if(typeof g=="number")r._orientation=[g,i,n];else return r._orientation;for(var u=r._getSoundIds(d),E=0;E<u.length;E++){var o=r._soundById(u[E]);if(o)if(typeof g=="number")o._orientation=[g,i,n],o._node&&(o._panner||(o._pos||(o._pos=r._pos||[0,0,-.5]),m(o,"spatial")),typeof o._panner.orientationX<"u"?(o._panner.orientationX.setValueAtTime(g,Howler.ctx.currentTime),o._panner.orientationY.setValueAtTime(i,Howler.ctx.currentTime),o._panner.orientationZ.setValueAtTime(n,Howler.ctx.currentTime)):o._panner.setOrientation(g,i,n)),r._emit("orientation",o._id);else return o._orientation}return r},Howl.prototype.pannerAttr=function(){var g=this,i=arguments,n,d,r;if(!g._webAudio)return g;if(i.length===0)return g._pannerAttr;if(i.length===1)if(typeof i[0]=="object")n=i[0],typeof d>"u"&&(n.pannerAttr||(n.pannerAttr={coneInnerAngle:n.coneInnerAngle,coneOuterAngle:n.coneOuterAngle,coneOuterGain:n.coneOuterGain,distanceModel:n.distanceModel,maxDistance:n.maxDistance,refDistance:n.refDistance,rolloffFactor:n.rolloffFactor,panningModel:n.panningModel}),g._pannerAttr={coneInnerAngle:typeof n.pannerAttr.coneInnerAngle<"u"?n.pannerAttr.coneInnerAngle:g._coneInnerAngle,coneOuterAngle:typeof n.pannerAttr.coneOuterAngle<"u"?n.pannerAttr.coneOuterAngle:g._coneOuterAngle,coneOuterGain:typeof n.pannerAttr.coneOuterGain<"u"?n.pannerAttr.coneOuterGain:g._coneOuterGain,distanceModel:typeof n.pannerAttr.distanceModel<"u"?n.pannerAttr.distanceModel:g._distanceModel,maxDistance:typeof n.pannerAttr.maxDistance<"u"?n.pannerAttr.maxDistance:g._maxDistance,refDistance:typeof n.pannerAttr.refDistance<"u"?n.pannerAttr.refDistance:g._refDistance,rolloffFactor:typeof n.pannerAttr.rolloffFactor<"u"?n.pannerAttr.rolloffFactor:g._rolloffFactor,panningModel:typeof n.pannerAttr.panningModel<"u"?n.pannerAttr.panningModel:g._panningModel});else return r=g._soundById(parseInt(i[0],10)),r?r._pannerAttr:g._pannerAttr;else i.length===2&&(n=i[0],d=parseInt(i[1],10));for(var u=g._getSoundIds(d),E=0;E<u.length;E++)if(r=g._soundById(u[E]),r){var o=r._pannerAttr;o={coneInnerAngle:typeof n.coneInnerAngle<"u"?n.coneInnerAngle:o.coneInnerAngle,coneOuterAngle:typeof n.coneOuterAngle<"u"?n.coneOuterAngle:o.coneOuterAngle,coneOuterGain:typeof n.coneOuterGain<"u"?n.coneOuterGain:o.coneOuterGain,distanceModel:typeof n.distanceModel<"u"?n.distanceModel:o.distanceModel,maxDistance:typeof n.maxDistance<"u"?n.maxDistance:o.maxDistance,refDistance:typeof n.refDistance<"u"?n.refDistance:o.refDistance,rolloffFactor:typeof n.rolloffFactor<"u"?n.rolloffFactor:o.rolloffFactor,panningModel:typeof n.panningModel<"u"?n.panningModel:o.panningModel};var s=r._panner;s?(s.coneInnerAngle=o.coneInnerAngle,s.coneOuterAngle=o.coneOuterAngle,s.coneOuterGain=o.coneOuterGain,s.distanceModel=o.distanceModel,s.maxDistance=o.maxDistance,s.refDistance=o.refDistance,s.rolloffFactor=o.rolloffFactor,s.panningModel=o.panningModel):(r._pos||(r._pos=g._pos||[0,0,-.5]),m(r,"spatial"))}return g},Sound.prototype.init=function(g){return function(){var i=this,n=i._parent;i._orientation=n._orientation,i._stereo=n._stereo,i._pos=n._pos,i._pannerAttr=n._pannerAttr,g.call(this),i._stereo?n.stereo(i._stereo):i._pos&&n.pos(i._pos[0],i._pos[1],i._pos[2],i._id)}}(Sound.prototype.init),Sound.prototype.reset=function(g){return function(){var i=this,n=i._parent;return i._orientation=n._orientation,i._stereo=n._stereo,i._pos=n._pos,i._pannerAttr=n._pannerAttr,i._stereo?n.stereo(i._stereo):i._pos?n.pos(i._pos[0],i._pos[1],i._pos[2],i._id):i._panner&&(i._panner.disconnect(0),i._panner=void 0,n._refreshBuffer(i)),g.call(this)}}(Sound.prototype.reset);var m=function(g,i){i=i||"spatial",i==="spatial"?(g._panner=Howler.ctx.createPanner(),g._panner.coneInnerAngle=g._pannerAttr.coneInnerAngle,g._panner.coneOuterAngle=g._pannerAttr.coneOuterAngle,g._panner.coneOuterGain=g._pannerAttr.coneOuterGain,g._panner.distanceModel=g._pannerAttr.distanceModel,g._panner.maxDistance=g._pannerAttr.maxDistance,g._panner.refDistance=g._pannerAttr.refDistance,g._panner.rolloffFactor=g._pannerAttr.rolloffFactor,g._panner.panningModel=g._pannerAttr.panningModel,typeof g._panner.positionX<"u"?(g._panner.positionX.setValueAtTime(g._pos[0],Howler.ctx.currentTime),g._panner.positionY.setValueAtTime(g._pos[1],Howler.ctx.currentTime),g._panner.positionZ.setValueAtTime(g._pos[2],Howler.ctx.currentTime)):g._panner.setPosition(g._pos[0],g._pos[1],g._pos[2]),typeof g._panner.orientationX<"u"?(g._panner.orientationX.setValueAtTime(g._orientation[0],Howler.ctx.currentTime),g._panner.orientationY.setValueAtTime(g._orientation[1],Howler.ctx.currentTime),g._panner.orientationZ.setValueAtTime(g._orientation[2],Howler.ctx.currentTime)):g._panner.setOrientation(g._orientation[0],g._orientation[1],g._orientation[2])):(g._panner=Howler.ctx.createStereoPanner(),g._panner.pan.setValueAtTime(g._stereo,Howler.ctx.currentTime)),g._panner.connect(g._node),g._paused||g._parent.pause(g._id,!0).play(g._id,!0)}})()})(Y);const K="data:audio/ogg;base64,T2dnUwACAAAAAAAAAAB/g1YyAAAAALMVrUEBHgF2b3JiaXMAAAAAAoC7AAAAAAAAgLUBAAAAAAC4AU9nZ1MAAAAAAAAAAAAAf4NWMgEAAAAwWxyIEUH///////////////////8HA3ZvcmJpcw0AAABMYXZmNTguNzYuMTAwAQAAACAAAABlbmNvZGVyPUxhdmM1OC4xMzQuMTAwIGxpYnZvcmJpcwEFdm9yYmlzJUJDVgEAQAAAJHMYKkalcxaEEBpCUBnjHELOa+wZQkwRghwyTFvLJXOQIaSgQohbKIHQkFUAAEAAAIdBeBSEikEIIYQlPViSgyc9CCGEiDl4FIRpQQghhBBCCCGEEEIIIYRFOWiSgydBCB2E4zA4DIPlOPgchEU5WBCDJ0HoIIQPQriag6w5CCGEJDVIUIMGOegchMIsKIqCxDC4FoQENSiMguQwyNSDC0KImoNJNfgahGdBeBaEaUEIIYQkQUiQgwZByBiERkFYkoMGObgUhMtBqBqEKjkIH4QgNGQVAJAAAKCiKIqiKAoQGrIKAMgAABBAURTHcRzJkRzJsRwLCA1ZBQAAAQAIAACgSIqkSI7kSJIkWZIlWZIlWZLmiaosy7Isy7IsyzIQGrIKAEgAAFBRDEVxFAcIDVkFAGQAAAigOIqlWIqlaIrniI4IhIasAgCAAAAEAAAQNENTPEeURM9UVde2bdu2bdu2bdu2bdu2bVuWZRkIDVkFAEAAABDSaWapBogwAxkGQkNWAQAIAACAEYowxIDQkFUAAEAAAIAYSg6iCa0535zjoFkOmkqxOR2cSLV5kpuKuTnnnHPOyeacMc4555yinFkMmgmtOeecxKBZCpoJrTnnnCexedCaKq0555xxzulgnBHGOeecJq15kJqNtTnnnAWtaY6aS7E555xIuXlSm0u1Oeecc84555xzzjnnnOrF6RycE84555yovbmWm9DFOeecT8bp3pwQzjnnnHPOOeecc84555wgNGQVAAAEAEAQho1h3CkI0udoIEYRYhoy6UH36DAJGoOcQurR6GiklDoIJZVxUkonCA1ZBQAAAgBACCGFFFJIIYUUUkghhRRiiCGGGHLKKaeggkoqqaiijDLLLLPMMssss8w67KyzDjsMMcQQQyutxFJTbTXWWGvuOeeag7RWWmuttVJKKaWUUgpCQ1YBACAAAARCBhlkkFFIIYUUYogpp5xyCiqogNCQVQAAIACAAAAAAE/yHNERHdERHdERHdERHdHxHM8RJVESJVESLdMyNdNTRVV1ZdeWdVm3fVvYhV33fd33fd34dWFYlmVZlmVZlmVZlmVZlmVZliA0ZBUAAAIAACCEEEJIIYUUUkgpxhhzzDnoJJQQCA1ZBQAAAgAIAAAAcBRHcRzJkRxJsiRL0iTN0ixP8zRPEz1RFEXTNFXRFV1RN21RNmXTNV1TNl1VVm1Xlm1btnXbl2Xb933f933f933f933f931dB0JDVgEAEgAAOpIjKZIiKZLjOI4kSUBoyCoAQAYAQAAAiuIojuM4kiRJkiVpkmd5lqiZmumZniqqQGjIKgAAEABAAAAAAAAAiqZ4iql4iqh4juiIkmiZlqipmivKpuy6ruu6ruu6ruu6ruu6ruu6ruu6ruu6ruu6ruu6ruu6ruu6rguEhqwCACQAAHQkR3IkR1IkRVIkR3KA0JBVAIAMAIAAABzDMSRFcizL0jRP8zRPEz3REz3TU0VXdIHQkFUAACAAgAAAAAAAAAzJsBTL0RxNEiXVUi1VUy3VUkXVU1VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVU3TNE0TCA1ZCQCQAQCQEFMtLcaaCYskYtJqq6BjDFLspbFIKme1t8oxhRi1XhqHlFEQe6kkY4pBzC2k0CkmrdZUQoUUpJhjKhVSDlIgNGSFABCaAeBwHECyLECyLAAAAAAAAACQNA3QPA+wNA8AAAAAAAAAJE0DLE8DNM8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEDSNEDzPEDzPAAAAAAAAADQPA/wPBHwRBEAAAAAAAAALM8DNNEDPFEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEDSNEDzPEDzPAAAAAAAAACwPA/wRBHQPBEAAAAAAAAALM8DPFEEPNEDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAQ4AAAEGAhFBqyIgCIEwBwSBIkCZIEzQNIlgVNg6bBNAGSZUHToGkwTQAAAAAAAAAAAAAkTYOmQdMgigBJ06Bp0DSIIgAAAAAAAAAAAACSpkHToGkQRYCkadA0aBpEEQAAAAAAAAAAAADPNCGKEEWYJsAzTYgiRBGmCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAYcAAACDChDBQasiIAiBMAcDiKZQEAgOM4lgUAAI7jWBYAAFiWJYoAAGBZmigCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAABhwAAAIMKEMFBqyEgCIAgBwKIplAcexLOA4lgUkybIAlgXQPICmAUQRAAgAAChwAAAIsEFTYnGAQkNWAgBRAAAGxbEsTRNFkqRpmieKJEnTPE8UaZrneZ5pwvM8zzQhiqJomhBFUTRNmKZpqiowTVUVAABQ4AAAEGCDpsTiAIWGrAQAQgIAHIpiWZrmeZ4niqapmiRJ0zxPFEXRNE1TVUmSpnmeKIqiaZqmqrIsTfM8URRF01RVVYWmeZ4oiqJpqqrqwvM8TxRF0TRV1XXheZ4niqJomqrquhBFUTRN01RNVXVdIIqmaZqqqqquC0RPFE1TVV3XdYHniaJpqqqrui4QTdNUVVV1XVkGmKZpqqrryjJAVVXVdV1XlgGqqqqu67qyDFBV13VdWZZlAK7rurIsywIAAA4cAAACjKCTjCqLsNGECw9AoSErAoAoAADAGKYUU8owJiGkEBrGJIQUQiYlpdJSqiCkUlIpFYRUSiolo5RSailVEFIpqZQKQiollVIAANiBAwDYgYVQaMhKACAPAIAwRinGGHNOIqQUY845JxFSijHnnJNKMeacc85JKRlzzDnnpJTOOeecc1JK5pxzzjkppXPOOeeclFJK55xzTkopJYTOQSellNI555wTAABU4AAAEGCjyOYEI0GFhqwEAFIBAAyOY1ma5nmiaJqWJGma53meKJqmJkma5nmeJ4qqyfM8TxRF0TRVled5niiKommqKtcVRdM0TVVVXbIsiqZpmqrqujBN01RV13VdmKZpqqrrui5sW1VV1XVlGbatqqrqurIMXNd1ZdmWgSy7ruzasgAA8AQHAKACG1ZHOCkaCyw0ZCUAkAEAQBiDkEIIIWUQQgohhJRSCAkAABhwAAAIMKEMFBqyEgBIBQAAjLHWWmuttdZAZ6211lprrYDMWmuttdZaa6211lprrbXWUmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaay2llFJKKaWUUkoppZRSSimllFJKBQD6VTgA+D/YsDrCSdFYYKEhKwGAcAAAwBilGHMMQimlVAgx5px0VFqLsUKIMeckpNRabMVzzkEoIZXWYiyecw5CKSnFVmNRKYRSUkottliLSqGjklJKrdVYjDGppNZai63GYoxJKbTUWosxFiNsTam12GqrsRhjayottBhjjMUIX2RsLabaag3GCCNbLC3VWmswxhjdW4ultpqLMT742lIsMdZcAAB3gwMARIKNM6wknRWOBhcashIACAkAIBBSijHGGHPOOeekUow55pxzDkIIoVSKMcaccw5CCCGUjDHmnHMQQgghhFJKxpxzEEIIIYSQUuqccxBCCCGEEEopnXMOQgghhBBCKaWDEEIIIYQQSiilpBRCCCGEEEIIqaSUQgghhFJCKCGVlFIIIYQQQiklpJRSCiGEUkIIoYSUUkophRBCCKWUklJKKaUSSgklhBJSKSmlFEoIIZRSSkoppVRKCaGEEkopJaWUUkohhBBKKQUAABw4AAAEGEEnGVUWYaMJFx6AQkNWAgBkAACQopRSKS1FgiKlGKQYS0YVc1BaiqhyDFLNqVLOIOYklogxhJSTVDLmFEIMQuocdUwpBi2VGELGGKTYckuhcw4AAABBAICAkAAAAwQFMwDA4ADhcxB0AgRHGwCAIERmiETDQnB4UAkQEVMBQGKCQi4AVFhcpF1cQJcBLujirgMhBCEIQSwOoIAEHJxwwxNveMINTtApKnUgAAAAAAAMAPAAAJBcABER0cxhZGhscHR4fICEiIyQCAAAAAAAFwB8AAAkJUBERDRzGBkaGxwdHh8gISIjJAEAgAACAAAAACCAAAQEBAAAAAAAAgAAAAQET2dnUwAEgLsAAAAAAAB/g1YyAgAAAIWrFIqDPj4+QD07MCw8PT89PjxCPz9BMTEwMjU+QztCSD0xQDw+QT4//w769Pb/C/8T/xz/LS9EP/8b/yo1NDQyMTBIPDtBRf8c/xn/HP8I/wf/Hf8S/w7/Hv8b/xX/D/8Z/xD/Cf8Y/xT/Ff8a/xH/D/8A/xX/FP8N/w//Av8N/wH/Ef8R/xS00A2E2dh5FAf0B1hoMXBc3YM3Crd/0Srbqk+fbrfbpb2q92makhVu+I+3ut2qTrwQxC9ePEVVVdVKaqwPAqTMYfHKbGKnp12l7QdIonj31IFHQ9YJQ6AQWXSrYxG8rpNL8Ppit+ZpXu0Ylpwrqap6Dm2HH0PIc/WVkRAn3Ep/KovcTn924eLu1P1WSFpBfWln5mqMa7OqvVqm1Lg6KyrVehq1kr8x5c+yAvDTIAxfPLBDoTfLduzQ6wPsSFzmYDfigMUHIKgtYZkJJoj1qvQONcq6U+2iWyel35M4DueKal/+f1t+9bVLFv74aKvatsYe/dtfcUo9X58JzFBSXgBuDgVQSub0fn0+ygwSyfLbuYwVTmd9dRmJnUFPFKy+PtaQ97c1nlbTpJr2teX+D3ETVg9fIDUcB/xU2S+iP1XtJkq3rpaWhNAjm3HgNiCr2/X+7G3VGTVee16X1iiup23F856kmuvfLN/GdT5/C3dF0rYABFFYehE+NGFJQcAHiKA6T+CZJooTMPREnaEdu9LGudAQSbC+njj59svqap6ExlAAFEtILZjhKVtF7K07b4UgyUD3+WLdwL70iAZMryJ4PvusJ0MvTz423AevBQckTX4pkpos+SVM2vrJkKO+k7Yx6hnNcrb6mvWidvO+WFwNdRkjE1onTZN80+M9qKqqpOpXY439F8Ua/AMMTVkXaj88pRa86QdYCJktSHjHPNXmOtWRrWVnLiYntbVy9/bTq6vhOHPjwba2Hb5dPuk+eO+RXdVWLWYBDE0plV4kUWwj/r6u9pqUTcuw++Vm62vP3heyaKnLpcaePdcRy5qdqnp//oikIIz+NfJkZiyeHwl1f8AIlG4AFFMcMRxUVTAx+gCDSt+MgPyhWO+kBpMuV2e5vj8vLo6aV48vjybnljM5vlrX2yRtqv1PKfuuRuRXTWzKNDxTkOJOoyshBKv7Xv3DN4ghi9T5ttaaf7F4aFZf6iKaeVstzupcfBzd2terpoFE2z51mgMRuuTvShKj/TcHRGF4nExfFHl8f2f6aTxiSAYZJZX2ELK4at32C3WcxXns6j1HNc/FX9X5mlA99Wpy2brhi+fL96eSkRUBHFtFzkT0ZWIq0B8g5Q7CX9mBlgyV+s8TeXwXj/f786XJwoTrbNnv3y7s54+kWW14knvgwR0r/PFQ5kMsRznitTRZHFkV9CQsVUWzFy9AQzvh997BhZ/efL2y01Hw4NWtVjz6Vna7bXdwpEDqer/u3idQuDTko/y69m/Qt+6VsyMBXF8gvIjCwHrxAZph68JFwLt2mNb7mkg4/Vm5aoartUt/norauvfjSqqq/al+Rb23+e2rcuLwfB77+78QNVEBXGMeMRlXYzAYqB8gxQV5k8C8h+o0+krpbna/eX98fVh6CdcriE8W+7HX5PaePjAo5q/64vcofQHpzTeG4cDKYBxMZYDM19UYBAbSB8CX7PMBPGxpCa3aPeFn5tWtQqFWl7E+L5X6CDA/7RVfrybxnqIHNFsEDoymLZg10vlD93xn5zIiBRM4e9jmUOya+mgZnAB6FkcWvroqjq5SWPxfvZJzHUTpaJlNp7WflJl9ACKkwOmPANpLp610KTWyUk5a0MRYz0K61SmrVQlZRYrIrzr5D0TnJJ5NqjBvyyYvQAyr71bAMY7ZuZDKiSKxXM2ZndWvbZ3hLjHt/f03tXZVjuPWfNsoTGPPlkajc7wO6g+AQ+p0/YDTT3vXrTJs5/xYXDqvkw+6vkt9IBo5fon2m6atVXjenLaROgZUZysgR5svN9P0CzBkQVeNLdi/5abWgWpnWj05NAhgnezn/UxTy8VITVwv3pNUNT9/aqRK+Bs/eV3RK3HjDTRVVFK6bMUApB+gIcwMunAD1xuVpnFcOu/j2vW0qsaqS38kTCZY4lX6fu4QDo7+tPJ3fkobxAl/vSdS6Jm0QisI3wE8XT6CvLlyAWb+ARrEzPMElN0Ze4lIYbywaN/SuxdPu3a3r2OQlv496Vqlm/Yvrcbhoe69DwtylNKvAQxTUwE3qL1T9gq9xN9/MSYfDGZh2g339Dyr12vQXjIvi95Fb0ucedXWIIFuV6vbSar+vl57triFKR6jJbw/Avb/P+RQWMqhS/GIiiE4TT9Ab+kgfHkG6GwY5wkWGjir39u13UpV3DtfWe4sY8Xv4uDICl5/yIqv1Xj396dpHsWBo9X4hGcmbjL0CBRLiSoCyZN9eHD/rcwCesPQnqS3Zvmj//n90tRQKsnWiqDiJ6iayq7VVj4kSdWX+nIcQlrxZQqp1FQ59wAUTTGLMS2yU4EE+QAxqm8GsDLF8vO9QSl2/rob73idH+syT1tfc7k+m81rWwftgt0AFFngPT6ugDT9ASYjkl/QD+i1Z6uifY524uO3b+ncEq1+f/U1P188fUaKqt5f6feZU+ol8pSkkv1Xiqpk3DIQAxRVvEJ4EcWVRj7AQov6XgC1iTOU1tAn6n/cTtWcKXupctS+PJ1xzu1TiWja5POzClWHV/9e+Uqipo75bxRTsbdsGA9XiBmbqC/AgmT/oA2MaV/80dYFXSiOXDalVDk++WNQz676dttXs6qR9kvq6aQwurzbXllZ/XwINFls4cGfKzYZ+ACTq4OzgJ9HNWjm6xJirHjtXszFpT2z+7GuPfes2f29oVq1vF/s1q+I5J7w8u8/NRajnd7WeQgcVbVoiaKqdprQD9AjXXyXQLn8wUFPshNdtdVb7dvalsenXJjF6kNP69N+uGqrWcrNlOArG0RVJfm3PdQ+MhRTKaw49KSKw5R+gETC6sou4MLrV/NTJHVPe9HpVitkdDha3SOPden7yaj6R5NnZf2q7S/vlUhNlvrhITIOJxoZDQxJDJfHwJhMEEm1PIkOm2UAZu4npz+fnV69OPaiUI5x8IwGYXdGlIXmnFdVVaT+n1GH95475m/b3VyGjp82hua2fhuv1ytWJN5OL6deMWwuqcrqUe3u5UYyT2I8qst6LuofaSrxxPlS2bNCskycH8i5ZSSVxWXrtHFmwVLABJYzplce5cKWICYcAwglTjwMJnY4TjLzirQUVQXzsFzv2V5uy23OOmMF+nKFqQmQk+xB3WF9li4iOCqE5u1btp0KK8Mvko28UvXwvqhUqcA8peilLLgaJUagJr0VB+wW3VO99RprEndhxaelIj1z2Wra2vFJoDfZHbU3w+Okhtw0mBy1vjV82zXtigMAXlqFnoJeHrAGZt9drbJGQa8OWAqT+57d0kk3aGxIqgqpYqKnTiufHJ8K1MWwRvT2immPIccI8ryiipqqp597MbIv0dvKyWS9NZ7FWY95uc3rb297zBif5/IyFufWP4603LwCenMvSAtAlLS0VLiuGQSFR2KmIZK0dAEjiJZyq0OE8vGBaPk1ZRbLCc44C1xWLyHVVGY57tMWKKfU9oOp9Sb25NLx6kmIRLX17F6PPrFp/V9yjA87AluWHciWSy8h/c1/Vqq+JIQUVz81YSD9y7kuhpYbLR+rPG7n7OGy3TBri0zFijlo0dZowJmNkAE+BVDgmpC0sJBxDh5rhckB+QMacF+vMBogfwHg3ujDHplRlEnI5aqqMuDr96VnsSuxROfQVGHEaWVTS2/RikFTb8urTezQnD4YjEJQa0p3M6jVdjH6c9Y8ixoMSfrLV4Zk16X3JGeM4UyWGnna2eBV0HRRJUP12oAzloOSVUC9HmMmQKAFAAOoY7eFnE9CkyiebOcSbjkXIA7583mbr9AYGFCrAUAiiSBJhdhYVmxZ1m0Zg6xQoVz1P82KBAJsbI+8nE+mf64HBczX6DDH0s+6nCLJn7hOgO2qB/IS7qRho4CTKuQGMaBhjACgc8O4EAJB1BGwwy6Cp43hR2xg9VQee2VaxhMxiBhBbJYak0hEA8BZemZmWitWVVW9YjC+UpTQFYuC2ESESVhFJCa97siyXE9TlQxWWK+HUA5TxFjjdmXknqXVYapqIS4/n9e3+dBfvk6WuCQmewXwRMYAaXpAAuRhKbuduYQJaI0YxjLtFMaBgSEtMABeCll2Bm1IaIYuC3WY7aiHxUkuTiAFw9XZMAKnVGakeoNimMWrkokX02lzA1SCWtZT9mkUTYVU6r0m84TL9PSaiyodE5tXms1ZCSurVFYO6n6EUNJEpEEw+2pIaQ72MgKu++viCkdOw2u6TVpfmAvGGStgLCvZ9YZWD97SvjM+23XepSOUF8CotuuSjwvl9ArWLG4B7B4xGhkZGqyqqiFWGptFpW5axRA1gzAVJlI5rbCitjoV2VRu1qc3JucWnk5y1C7z5VNu367vu2Y9NufUdHs74zb3d3dPZ3dSC/M5vUm/uIu42Q+72tDE7e6V6E8C3XjFIxT9jMzT3ufJw1Pf7C/Mj4f+GH1s1x/nIxZNcLtr3nbKkwwFMs6JgIYkCWCYHbC9as7z/jYXzfKZsywbxcYW8GsXQp6nr6bHLw0YPSwWgJVHk3jnP59D+uphzB/R2Enfqk3oh2PjbNJXQDqX0XO0bJi5hYyEuIKjPicGb8pmb0gdO1ahm9XQOdlm7tr4DyBkxGAMAJ5qJVsKAsHEpMCoFRYZMoieRA3rLRLm9B6LOs2MlauqKukzD2lo6GyRoa41cXNJ61o4HEsf18cHaoPH9+5tt5auxHhn9M/zsYs7rvf3w1v6WHTeS970WrmMMT7L7b3+nlknxOwG6poGLm5Hf3WTSUF1hwk16wgPURQUE0kkQG40hznVS+VxWmkpSGFgnVHH9uTl9HpqrPdGs9XlzJcvxR5mZoSTNlVUNT1X0bQTZtqrL21LOgktAklIMlavpte06vSMZVj7ev7e3bAbv171FldMP1lBXkaH1d3plN0JC1TFezc1634NxeCIwaMp7Ixp0GoWOP+M+moFTvRljDmR3yda90xLfx2fVp+evLkYCVxHWGf+aeWqywACwLSaxaMJIQDWCjzaIUCL+rV3FnpkiINVVVWRxL+R1XFpMoNRVabhpsVfNw30pm6T2pNlv3E0vfjz4mmth8HirJ296fPD8230z38Wf37/79O8MWZ6+aCsc8MpWvDldr/9MGZlb2/jJNBrU8kARamUUxknTZPTXC5mhI415/VbZ9F/bV/LXntdQq7pkrMeBoAUflPqZJyx+u3tczXPD/Mht0R6xy01ytrXwXThFEOm7k6ovKnIk7eRZcBC8kLt+x6R6+D0ZyJsDKDHNiihtKD3pTzN5ePYcsWrdohbuOztbZTmo81yed90Z10ze5y+CMMDW2gFUxOYVxa6/Rfyr7LTD6a8qPH7742LwEIvuNFjqxLSDjIDNjkNS0S39rZ1RLjeyGlYHAj5YDUwKb5Pa+qLdp3psePYHIvY65CPvyvPdd08eCloQJsjOw2XYA1Fquo/thlxru7/9Z+Pn/zsXNttRwcb6dPDxmF99/tseetuZ6+6lR0m/ep8cX+9Z9y+Ppxxvp+Tc5vn6307t+8Du/bCGVIddfZzAcBF7Xm/yDlFa+osOSmGnHttOPNx5vG595bug3Ir1ImTYky08DRl0wAAU5eyxK462edh9fvijCSMqopT7ngz08AuE858ZdRdIukuPHkvJJIcWqOBK155ZbVdvudh7WAYiazk1bySQLIBoFdIvR+R2Zo0E1sLLf1gpAeM/CIxGxrmWAzb5H5PDt2gqAcELOt3+aj2b65dNaQA2gwaqn1D/J8znHHZoMaxmQ4DDEvZO6AMS9kvpLtn3YhY3dy8Wh9Ow3vLb/TalLN8dGkTjshES5mBs+U9SE2ZIQgkV2WMhpepGMPD7wM0mGHoGgtYvF8uZbL8vIvn7J2Tg4P/ti/PdZofD6vjlv3b/lpVlaokaf9LJF7tcfzyryTvke/fBxTTloJ3nlwlOqkHYLg4Tzawq3Vpjfv6J4/P5zsRDq/8WC9fG++L1OPt9YkjZuB3U1W9qh6sOvGqOKkvlSofPbr4zBdDjLwAFvbkVI2sW0uKC5LAJ1adiR98ar+qxqE80Jsz7/pwivI+XgGSzqRPqKqqqpqCs9zpjGO7ZIZ0Nd27cfXFanzxdz338Hp+aeSv41uXwnLIp5O8Xbr1DJxNbtOCi6mc//f7+/fvdH2bKc3PgWa34UydbPVle7yqffmxd/mL6e5CPWh9hZfyCGhU5SGdZMekyrjXK3fO7IZuUkkzHWez7GpLOZ2UaLScgTRAzwM9k1szycfu2rWfRm+Uem5Wa5bRAlaIQAve79Pp1MGMxcfjS/qMfz9sF0nbv0bmyjD+ePxkVX/YKtq7RE1dkwAtf57Sd79eBKk35vTa7RQQyTSK2sk7KeRNj7m160ILz+xpsWNCOmJ5Ufb4DL1fg4XoBYBFaMZosHzkBWB/bmZPn3/kVbH7HhlWv+JxbnmM3ZPOPlIJVUNVy7E1Tkm1qqGDNm/8M+r7xunfVw9/dPT7348kf9XO0dpAS93pJTUNjK/n+7j/+fD1692os/fcr4/Gnvt1j/nzx/qvKa3DScif7zTuvKmpXQ2wcT1U1pTyVdpGce7TYmYQLT+q1ZbiDPQ4a50IqjhXk03GTuyIfUWMxRjj8rCst/76jnfUoKKyst1fHDXuZ4+x9+PV0+KM8Yjs55pvY4LwJZCxQcIYHPg2or5eYS729CNMTk7r3yeuJtursK/HAqCZt87x4fwx1oHZmxxG/EbnfW/FOkp2fReinxEkbCweyzL+PhSRKqyIYV1mQOvM5BVD1m7VQ2VBOobcLPzU2YhKxFCFSmbxAXpQgW9YgBHb3TuXTY9VzU+ffpqTydc92plrNETVE95Kkwlv1wyrR3EO/E5Y1nHEcMVVlYIHgAiWfpkAHv8fsNvwzNbFu/SbnGyHPSqlW970yczXV78qAf+C263JGBRPWQ1PLKayIEWyWP2CN6296Q1Us2t0e5M+u2Zbj81L++zvhO/+ZM1IV7aemnVcpGyOwBP8SljqADN8rsZE0xcgUoHvB9zr/Wh03e6Ce/4aUt1Tv37LWXmGpczrdXF46Az0vtEcAhzX7nCL5msoxw9AD6rrJXjQq/mM+tqk4+v99Qhxd+QIenzpSRX8d/1yoXEehxYhUwIU0e4U6TLFMUrP59PL0GgaVuAQnmuavLfsVHG30Xvrp6rWzBqo0JTh2MOlK/bgMJf8VKh0DVi22CLxA7AsceifDTj3/LOUfK412H5zbp/f7m3vgduKfDDd9v3crwdpwdbSZy/C1SybSv3yj8cDgXe1HPhfUnlUMwUsVVyEE22yYgxO6a0zGZLsZVKuR/OttZF0jXnJFQfr53Gpnh07yahp2qtUNfNo+9YkSOW5Uj9WHum7n60UUVyEs9NiqhZD9gOMlHk6QNPh+yyCxSiXxYr1b+L22r3eP/3LC7t3qNcaj94T610d/3Y8tdVvjuyKAiRTvNKAY4qrLO5rHxh97UZLFnKPQ6z49/dlnBcapXpefs8sLVxsKI/3qlPVpH7/8uUpTarKfLInkC/fNPG4M7YCHFVcIhFUZXF6cSfefTj23ViWAtmc+W735+/f7Peq8zCutTCR+27nGmfV6twK9RwSqvlalWo+UpHe1DqCJ/QehIEro5EruigNjVsZZADA5FXxvhspmsUA+EblKzNPPhd99bzUPxu7f9tbP+XqVxlryIsXKJkZJREaqqqqaeC9IZQ1l2ym6+RrXXLGl90bMdHofd+d3fa9s6zIJEaumcX+uccZe3wa38dDT0U3kyvvnP/8VYPLWLj0IacLOJV8qqae7tpF7oI2AB1zZVWmD1B5N5ssDfEmKeKc62dWVQLvM83VAKYoyglEPN3dFfNJLhVnzNrxDKX1cp48uz/tU5CVFJf1eWkBwpYwt7Es6Q5lWeLKW1VZNNGysHZPXgmEDAC7Yutbyejl2zMqMtjxTDTZ4cx+eblfUgezwPscfZHkAhZ6C9cuF1uhhUjIePv4HIEzOVgSYnbYezL6pITFqNMuNH45JYqPUcUFEjEK3eISoyJAwQAebeB/npLYPUvPhjxDVVVVa9c3OA9S91J6wrhzN169Pf+/M/h4tmrsVO42H/zq8j+P3JPaULTjQ56X47bnjz/rfKq9P9/7w318x320eT6vc8exLrWZZ1+Q/qtRSqt52Fkv1ZdpiiUrO6eHs2oT3EV/LkPt5zHuQ50xvnsOl9see/iOTQ4NWXP1nj1u2MrnfkpVZt0uLXg6+zrzPh8//XS4+/PNrXiKFGyfxx17MRNb2nD3I2akUumOgCRbX/aLLMuBbtuWjaRQiEW2hHF5dBJRq0qoLViEXGxeQMHFaVOFFaN8WoZsu+2M8leMRITQysNGGJLbZkddPlL15z5fi11rzpOCUQVeCSVTLDJlEwUD6Jzi6oNQEIDRoxcQ3NSs+4FBZ89uZqiqqrpG47z9dCkz1T9l+++G137sMDXbWW4/jJ3IXNKXU6Mn9IzdpXViZ+OtP4R9ou2d9MffNMeYn+qft9vi9b/+wyf3T/2ft7fZHwUbE2NCqdDNnu7lGmJGDZuoNV3Z71qniZthFHpu6Hek1EMdH85WA0atOEGxeqByho5n8VU9slnHQC+A+kyp8/p2+3kzzz7N17qK2uq6yqwnhw/PY7H7GCwJwMiSLaEbuBUbEHplbISEYtuSQbYNMbZkYRmnui6s7vgb25m1rUK8qAbcJmdt5gAiHtHISif2b65q08wB83ZTs7hdRvy4Qu2ItdZAg1pC4UwHDYnL5ugBPunkSilyBADIvOLikxEAwD39BbtnRnQaYlVVVfrHHsP9t7IrDKRTvflbD6cqVz/98874/b2R1edH29vVT41VSxsste1SOusXrPrx5fGP87pzW+/hrRr92vv7n3N8+kL+EGfr/WWPJgvXBlC9uyfFwI6gbhWNEXVzVRpyoPJogM9CQlcy3UtSdVEZ4jfj1Wk/USY1TJvpxxtQrrWQd38lew7sPvTg4+RM58TUVnfM82g6u9kC3ZYEFoeqqR30LvmfIKRmXio1tUU3NhBW3PXxpOZjodXMRTARxBXqdfxqMCGy74ebGqxh6Yad+F3++qy+P+ftTBR9fJXbF2wvgVbMprvdHE3bRgHeyCSTL0cYAIZKJqgymWD0AsBjOpwAxeLhWDfAklFml3OuqqpG2e+8vZ4a0Um/uVqxdNvEM3N4N+dh//F7OW++tIyPbr6r5Z3V/uBIjrcyN+FM5Tw9VGoh2kLTZTvYfy+X45LqqsO/VLlmTd+H2aoBdneXlSdnqCkyoPYsmVncjiP6rG9/jLbLUjnFqDu+qSszmyGHgU8W3cnkeHBGpwEu4OUD8zX1ear712Hf5JHJKI3Y0Pnf8a5Ek/lS3hKVzKGTk/+wHJktWS2GjFs6Mv48J6a2GKu2NbHWIpa7DbkBo6GxgBB6vNdBWx3jcCqNA2I+2EdOPsi0uSlT6qyDZhPpbtazl8UD/pgESULixwJAphQ2XeTqEgKlGR4nK3C807Or4lxqwJJRZkTgkHNVVWXZvthxv3OTp5WotAmnO91vs/PrNz+WjYerC6s+DYWly/Tltjsbn1zk2h5fF+vz767c6nGcT+Nepnk62zydpuKkeyvUDX/iez2VdQbOO3QJ4JqCHdGaq1OdPcXp/mo2G/2J/nYajgJmkj6Z91OAe6MzIunc8y3Zs+dz9Wa/WQmnkuw3rtN1mD71HtVU1ane/TX0c1Tdt0qmIoOrBJZA/rIDOeHXUiR6WhlfxmBhY7xxU0FZGya1uDB9gKkJZOor/uqjmNCiQV+2MTk5RM9TEjc0DwG+EIN1rgdSXv7ZxoWHSDwuJtTcF+BKIz05kU0wv+KwaQfeyCR8rAkVLAoVMAlFxkWo4gLgsS3AfSwIJzOzN3AGq6qqlpzOL1KsNiK/HCah3B30cX7+1dF9J3dP461lcPmdu86mm2XTNxfLcmf/oN350mcWvRW8mafrq3+nih/dT33o/67pXzI+PkVlNb3Z+0xe2UCe7tw2V+r99S5yw3ziaQr9+UD/c35bXUO3h+oBfi5V8TZPnqwq3PfXOb7X3DHnhio0gP4FzrF9/bHzeI4zvxjxev6wq0k3uQ+mJkrCumRubEmWXwmDsSVA5rtsGSEpd3LNjbeJXvp5p/2quIvovXbMi7Yyul2+RRDZy0PA3efFZnbrwCZ8D0pzkB3r2UXgIkJ/qPPK6dBIcMh574iomW9e2RTFFblQrAB8QnWX1WK4ALg6EEDP7RvN1Z4L6WTPKKIJMa+KVVWNRiyzEcvAQMjBt7dUuky6pOV57Mh7dza33z4evvrr5jtHc55HXpb5fZ3LXEruuUwT+yuhp4Pv1PvjxJ8hf50faAaP9/7wKR5/DD791XPn0+/jEvDWb+adz7k4fy6eGcjDU6Dp6vOfSZ855Jx+V8E6vj72NNlf00yfLKY/b7/qnfrzD9X812lCBwZ/epN958HY5YTw5ycQUqBAEL3kbMVHntEr3zoRTBLSW5wd2V+E8B9FBAifoe0I7IL5ZaqYI/oUEyppaljvKOqw0GKfsDy0GOKDbj4/kw6hP+iKgc4OUwwBGYbGA964JHwKIQBGjDKnuPsYNdAww9V2AvZjE38mRTfv6+zMjLVYQ7Gqqj5hs295z7O93PdUf+HF9P7z7JmWbGc8+Oqep3du7ejT+ig5fp4uDjZ8SZ++tLa4k+cpZ95qtKnd5Jt13t/PnXP77r/pdv5gnsPArsxdX18NnTw+M+IDOdT1P19s2KdOzYadZ/g3UMc9QGZ+/mdv+jNz5tfnzZ0FzfSX0ZCcGWU1bSp9Hr8X5j5PrP+6MZUxjz+/f66ZzDt9Kgfkg1LK6PKIj5IoyTx9fVKPOFOZpnhtWGUL/iABMkV3XPRq8gLTA9qJZRq1Cyzdg+uZxJa3yY4iBDPjr9Xki0npCocfvGG0W6iLv5tLVOVCrgyNl3V2KHkYtql6Cn74JHVNps5gYACPUxhNRpxBAriab0Djcb6/vgbm3d5niXrJJLhcVVVtnojt5pWqvdSBS5k8rveT9jhtTKuOzTvfyNLvfa35yibVHqyzZ+bZfzrLX26ve1mfTewz7kwTN/vzWZvzXfWNefr6VZPV/9rsnZyq3n6X4vi73Jhvp+o+7j/u9bbww/5r7z/n17/9e3WoM2emiq+eUUW6yJdztjF/HNu/3+/jNgDfB6Y3p5Mmk00N88sLzjADTAm+4Lzss+muzVD51aspFhIY4IOIQuDjKrvIN3sRuUyzPkx/uk1lPMxHrxNFz1HJPGScVt04jFNvztsuSnicg6/mMn9qirZRQrDOJtWVdRtwnHFETW0dOJ/Oys0n3UIgA165FLUmIVgBxp1S1lNyHAB49FpA8cHS8y2cHmVmhsyGqqoqa0lnC5O0NnG7IHdduB947xyPd9zZbqtNEr4yRw8/HVA5Oj2aF53w41olnz+Yni5aGRdK/+7J3/dP549P+579Z+Wu7h/zo+A7u2FPQ09n1fyH/Ou0mlfDTM+cZ08D2Xtz+FMFZNFDc2a65gg/nXy19mayDi+VDGymSeYmZfL93g3xqaz+zBwK5X9OwjQcznUOUN9T3JYgBAn5OkS2AzfvlRH4L/QFuJK2kMNp7Dc/DH+QjCF1sOqrkvee9/7YaFxzgM+RyCB853v5xRlh+0ww0XXi51gsIJotOvmoRiR4MmzkwTcI+fdmH9Nyh9xDQQ8HIv4IBaWFMAAgckqjCzLwAODDpCIXdDg2F4ou6iIUMjPKtGMJuapq6ik7a7B4fuU0lxaurCuzaGn7vaKX4/F6b3mU+MdF8+lZc87a/w7P9/r00O45F8fbbXiX5Qn7Oe++X0n6vpjpbE1Vn517Qw13k5xikzT/If1vJin69JUzLwb2oTdJxZMkNWKmCpgs53V2ne97e9SYa3bepCuB5p3Tl3Iqafpvvh+m9pJnzvsseel0D9TUZyf8reJTO9o9pJTii59NFdhClv5YNhfrHVfSbnWIMDk9ECHqSzkEMPAawGSnFgOodAt9OGjbtgHdu9AttJavdiOKorlAOFgeplnrlpsw1AZB8TA7sDO4cNFF6x75ZK0mhYME0Cl1UywTSXkANDxawLgpcCl8xoUloxidhGEYqqqqRPrslKP2pFXtpZOxuxCvwvQ2Qn5Dw0zij67lky5a7sL/Wm9AWvP1yzlv7t8//zrze33/1Oj5bM1zLR/k9dZ63cw1+0vr5N7NLuIsktpCcMySNac9nbOnmIT61v8DWTHpcfzbdpn+UDTV9EL1YYJNmwvmHTrZP+y8hiL6mYOa6WTHnxm99P5MA/WSek6VVf3pTSU9jPYPsiSEEN+Qel72z3V0vFYCCQOW/fxoU2MsfUSIBSPTQQAEwvojM1yEtYutO5hauRk1O5xbVsuYDs1chl0Tj4Vd6O67DeX85kNMcj2hYRW5iqjTPWWpziwNhq7QnwH+5+R0SnLDBUBjE3eXXDgWDRjPBQW8Hhm/AuhklJ1Ou1hVVZ05bF40b2a/UHrb5nTyKl4ppyxte472lbfv/pcPf7x9cpnvvObWRXJZuf+cVWexOHvO+6dtLvLl+3/y90bUH83Vp5mqyX9hfJ7R/Zym6nG7MZQ10XB3RXHniCpr+NWpOhRM7o6yzvhVp4xKqTc912SUVB66mrVTfak6qTTreIHddagcqszsqSWipInF6Sw3XYNWvS5qzXU2v0iFSiJVWBZClm3fR+vlgjB0r3hs7xqJt60I4fG6zll3Uu7DjQOl2vgiRvO6xjjOOpmLRRNaxuGndpXpiBO78FyAR16L7Ev7yq9RZBjOZzcMMmMnfvgkfEmqwKoB9Dk56iPdKRcAt09xKZfMTDpTVVVVo4PLj4Re7zRtXsfI/zpfrwrPv/7W0Mhmu1zW1Pb56YmDd0+LRbJ7/y15dM7j32YBD/yjSf/y0vC17zjp7F39Jol9Lqb2c3UlRXV21zZUQ1auXd2VfMm9415vdiXdFDP7ngRnmio6Z/gnOdXDjzincm9rvF8bPRja3mtm5kDtWewiIUyKjtYspuOtmUeV7yj2BUZgJJDAwhj5FkXS1i1tcq49Ph6Idnhaj7+r+/Xj6IA/PxymkzLcLedgknfWmskCgdxsm4hv5ql1o5NpmJ331P2L2wuNHNrmgWIO4RjMo5EhgzTnbYmetvciXugENdVcXbMIWMQsPmktSRHoFczwoabVN2nl1imRjXVKT2SWzEIoqaqqkt2zVc/z7jMz/aH2bnV36OX/9/gxShwYp0/35AVj72X63u2E0/e9YvZbv6/Te/Ph6tT5dXU/8/mGl/Vfx11fKIY+PzqbucndZJa6mn3kZ543iznZuq76NDn8k0xOnbT84nuRzEWnG0g7z07wZyr7MOcsRWumWIGczt1vjpvv377oQrd+VPswmYNS3i9m3i5z2uXjyAQkCTBShHRc+4W0KqbnanwpFKfvl9xKVX7lB0qhv6vZ052cSXcz7lIrKXvFx5TzuTY4o9qOkYXIx9SQPkKdrUQk4/X2BLWd5txMKHQpnFbPEfo6x6QtMcYZPuhEOiVTY6wAXDrdHJNrggScH00J/keUiti9RJmpnDlUVaQWfcG0Ji6N4yduh5uJXj+9n25PTkYidvZ4OH2Ugfit4A79rD5ubevw1+el18fx+W6M75+Yn/bX+zy3tU/fx23fOM6vM+80c5o/UGVgPqfYeL/f9zj78x7zZgzlzs8M8yaZr695HRvQcs7Q+7/fggZ9mIRDck4Be+fMGs1oyBzaCb02G7Lpmsn3s+e9ko14/rp+qjMPe3CoKTaNzBPG1hOry9N7kWxZx1GYckwXuy67bclgIoMMwGNZgI3MUjtz5zTW3ew1dWs+HqLJjegNGlu8zqH1vl11G85t/KNcPUBnaDiFbGbf/VpxIwZC39GcBAD+1+R8yaAGEtYwGfVTjCGxAvDhZbsPsDHnW3A5Hp+gzSiTDkOJUFVVW1uue3vVvOLOui+7l7vOx35pJweSvrmTi++3xvC+sZonIaQnJ+2/f+15e32Yr/dP4/7dbc/L/ZLv9/Vtfr6dXyeDJtMzT9vUGtVfJO/QSdOOeqaGoqvQbv/Qv6uLU2Qj+q//d/QX05ycr2fDkEmxgc9hzvTUTLpISvUk9DRusjLu+pA4/tl7cCLtfrmA3VXZtPkS2DIWpp2+HAHZGIufrJF7wV9ZKU8nK8fXTnt+/4zBlgDLAvhCIAQwlzjiTn2/x9TSOuduOLD1A4U7xVLD123OA3GGXYBMdspoRGYcwm5s4zT65m/sqH/ebQIeCCXTGFuJTsIEk1DfUhAJGkZw+wqcHsWiTGZCVVVVPcyr1x+nE+/z6t54yZ/v+s7i/0f8v4v3+dTFwcXbnDy2fNokj+486Jdn5xd3beZFe3Bw52xx/jZ1ctsPj/dx37X9Y/rHqf9ver6fA4eB/9AMQ+2erH7W29kvxvZvN7tmXsye+VZlaotnJjxloHTmcCb3p78Giq0+7EP2v2+T7/7GZyedObs38wd2/aDY39mHH9nXPnPxdfopLmWLM5kzc9X6Lh5kSdhCDgJ71SEOQPYfE4KxxsNzarV3xKs/Wl/cx4jUGevEhxyh0Kd67RvscLniGa9YNdKM4ZJ8qVrJnrtM4rPz7w9qDa6o84aS/cDGmHpfcdiJaZmG+v7n5F0PnmAAHEJpSYEEB0PwbNMGq37EoXG7FWChS9LJVVVVIXXNn6QveB9qM+ncXuilk9Yojq//F1I/C5N1qr1k1zgcd/3x0lJE2h6sN//ov2H9KAWezzi/s+hT3m/55u36N52X/1c1aGC+yI9F/em8KvsDf5pNZSWc/KnPc646k/UZf/H26f7pM7e9P396urizzo9+DuyvfU+Nd1VlJe2ozm4mf0w7d/7Ze/ONDd2V5/PfO/8DUN++KCaLXckcas+NjN7z6rToZf9Q83198xc/mn4xylOKEXOx+vB/CRHfRSVcxQmZiLTt/nMySZ19szEuaGS43EYuO5DdnM/Q086XmPaXafuDAEQCaNDutBS7HvgEZgwiQAPoeyLhoyLZNIBnf4BzYHc6k07lYlUUqrobw07vxzeGeiz7gXzH/kBCt3z4p+Nev8P5slSflv/KeW53RZn2L+rjp5/N28/1px/zP/N1ePz309e//rTvt8f5adWY3+HsnSbuuaE+Ov0+nq+HfnfOzqlD5ps1jxLNXZn+Onj/qL537p2LQVCQ9XRNH5wcP7uyL2r/Pj+6gx9SMiUnp8l36kx/Ts78OL1rJkf17t3F8Hzrzekssk7+rfQ8nOsD59O353NsZ943lm6lIjnP1ae3zT4fiKFFIc6xQrlg0jIOd8d2SDjtU9KKHwxWhHkwA4B5AQHo5hxZaI1guuSqy+gP4gy6A2Zhk00D/rekoiQnGQDOg1BmYiBoAHjsQfA6EZyeNB2lGKuqquKXm4eT25l74obS62l6eXB6fFI0Wck9U3bN22MvHsSdhes5VX/upZ+v83g+7O95/6wxdQ7ylxhm/p7fj/vjrfobQFXuM93D96o8+wz10nOyTx+U+U4Pufuj/OcxPbqcvs3ku3NqoCbz+9d7jf5Hx4FDT/8aTu3Kzn7JqqKSrH414/4c43sy/A/Jv4G9+U3ByU5g83fuvz9gqvbIYnBfZmH9/Bm2d+aqvWonmZ+x+BNiYR4eGWHd7owjQ+dSRbqQQuSXoSwqOEc8/cHP3G3nEjbsrQY5tNOZTt5C2JCBYlOGvreEosYSTADnQ6guMZAgAVxNR2ClHzxoAsulC+DaESMzgzFXVVXNuWn5bmEPH5lqLq1O8bwf2+7/++/q9avJabwfxufrYe98YvSa/trq87+3vf5zz3H7VU0we/94Lqnzg+0143H+iXn/OW63eR95oLufqfMC8803P+qhQ/vnS/Ph6CDbZ2zO3l/u54w9Byf3HEg73s0UTfXMy3cSuposcMI3PDl5mN3TCU1/Mvk2mSQ1nZ8DVGW7zizQYGGBbfm2x34kdp6jD1vqC5lLhsgOzV4kSYuXw6H3fOg+72DvronWDES7a4KNtLzPld3WZWBr/6rTXQeOdzCqO/at02hh6cbCjLDC9otZHf8bnwYdCNF1F9dR/rfEsQdPAGj4e1JTgkjQAB4JKH4Ddo+izKzMIQ9VVZXL0Wv7e1XirLfkzw5eTt1NXUni9HJvvHNWpX9f5Zzx15t6X7qSXJfOXT88+F/ubw+3f092//P5/Je/b3+c53H7d/+o+/blwyj709kJ2YakJ3ug5/585P5KakmdS8Xu6uLX9VHN+md8TD/qZJ7ah5Uc7jpw8tR0vYfD97f3kHn3RIev63xOZ8bAGQBMH/a32jkD7kPfSV3dJOCqVH1JRdUr3ltqoE93JzgAQBIfg/nZWEKA7ZgzBosPiMtfI8EWMgLdBr72c5ILXd67jVcdPilcpMNtnEIzVq6yw+EozjHWgggGNjHCNhikz0agDruETGPdWgK+t8S1JddCUJDhR2PgUngTSAA4PwIKjoUKnJ6ZUYZijlVV1ZWzof1Joh6c5clf0mTX/fsef36vsYGB7e3JSfBjPTJ8bW4H++e91lNz7gd9Hv0TuRzl/bYYm/P1x9iVPT+fPx72vn6TmVnduzd7nKeZzwBnw2TcXfRA1WHd884+pcw9PZOdm2rODJzfz+R+uzndJHNnD09+PEORG/Jb5a5TT30NBWnbenZqRo7sGxfwNH1n8erQTcJ8QMgY/5EkYR0nXP8UH6LXyTh77M4uHKAyBNB5UdNvtQwOg5W4YiBsY2KbdnR1i4xU8yqyMaGQONcoYGJ+MZS8hxOflqGQCyEjdTKgoQUDDdPRTCYGXreEYgoeANBkcCliCp5gYMD5mRrgY3CWLDmSE1xVVZWE08uT5gtLqC2575PdBv99NfSw4+wO7EQD/iA6edAfXcV6y2wObm331i/6XJp/t97kS1Rfn/ng/FZ59Px9wXi/n/nhuL6++qFGewPFGdi7DtfZbWo/Q9amc3KfU4d2C11E1+G3/+bPT2Pf7vPkDqoSo0l/clSdlGkq90zm79z229nO46w9fr7OePxyPJbNJ24NLLQu005P1dtNTZc7Pdl9SMjwDSstX668WBagbwCWi7wsZKITvSEKS/EIW7o3veFixWwHVHM3WBlGYGjyq+zh5k7UZYKZHd18E/b6oBrucygFBdQIeWMyEqYJRo4CPrfEcgwicElA49/SVB8jCqsENHl0LxTAyc9xZMkYPcvkXAm5qqqZfz67T9xve/2qrXbKoOamhYcVd87ZffsaX7B249H308+WJpYuHuRf33VgQf9rrYJ59v6Uv3clFAif89amc/DhWxc4OUl/AObQNmRaX/e5vBcOson/mmaVjoadgMjeb1IaJcOsvFg/zcxMO/7840+DKmrYNSy5NZWHeplxCXAlTe8DfQ00w+nvy38YgClnJrfzMRogdHLFu02QYngQS6yHU4zdi+rXDkIYg43wL7uYt4VmwwWCFEMEXeO1FrmQKq5Hv1kDrOHsK8zV4DRHXUaSHNoGAq7hJHdpUQw+t8RyDiQANPlb4tJCFShYaHyUJ2jgLt8CXDQF0DNpamToVFVVlehmkhdiZSXvLFNZZnqj02E29NNNtQ957zrN4gf11+29LOjq5FW7c69f588/3t7cfHqqcbt4vb39ePzvdf78Yzw+1Jx/ZtXe6+/p03PNiOmyRlUf8sn5Dfeh0u2s3RucXZmcz8Bmf9guZvbkw2noo534l7uvk0BmUXdfh++A07bdVG3feFrJzqK/6do5MwxHTbvdbtvhPZKTfgEDBlAsjLHO1yd1rVTHSoQxWIJ3o2hVw7E+EJjzdXaKPHc97Bm79a+LnpLb6bLFmxZFQEiOqxIV1Lj9ETYccFTJRwhI1Mwo3AyETLABvreUZQoRgAGNfUtWeqAAoMlDpyKsBbcfyIjOTnOOsaoiVXG+fUq+caTXXfbdSauVZ7W9+GRbD7tc7gz0e249ufNf2+ZZOO2K6IDObu2/a/u8T/QHKuf7ue/c77NGT9Vc3/E+m18eiq/kq772bjhJcnX22tf3wamaj/f3M32Vnh+ZzJCmqg/aNed3XnInvX9QOfzPkznTfP/jjmPMeYb5hZkNwJ1wTq1Ovw7z7/Jj9gCwD0CGEWUc43esm455Y/vH2sipxZYKXXTWt1MjHYaWb+fK7srv5tdEwoX9ZPMFH04aX6xAyKGTAQr9i0zIacdEwmaNNMxolw2Mg48zgAEXy163pG4OGqAAjXdLnGoQBQrQeM4SxTIjZhJzVVWVCvf+2yn/8XnZ3H5Nvb/cP7b8lcpluPv/7vF52XkvI7OG7N36pL7g7MpRHp+Vt696P/Lz+Z333HRrPM+b2+25la6pL+be+pzP9e/c0PNLmDrAF3kXCd2sI6/f47Nu0vz24WY3eXLD3NotMtNXN2ml9f6qDwg68/RhH5/M37Bhims2nfnOk+dD782tP+f/Pd/eUL/OKuievKudhU+s3v0eNHdvePkBAAQAKswRl/o7VAnC5KPQx6bn7DY9WMVx7Ns115O9cix3XHBnQ/vMgzqUSZIOOxm69RG/xXyHkAjsQiApLbPf0YjoQn8LbHloBqCBI+wNPrekdQoRIGkG1ADvlrj1oAUG0DjnWFNbevbMxIo5q6rqbH+yvrY/0t+ZeD4WloKptIpVP7r94ebZwYu7bh6kzXef/Mlfj5IDlbPa7D//E83+gm9PKEbcfnx/6t1nj3OfY7gbzW8+XfP8i6/MqZNwPsXu2qh6T59kV/9/k+bgjE9f96ezzx2YPMxVnNnVcy6q2RxIDpWki+cz3zdsigHc7Pm1L3rqYp/qb/fZZ6by5K6vi+mCHP92w5zeWTAs40cX08eXX3h6K/Zz6nEgmngXcntvdb2OzpYJneBoCa+/1vGMtPApAMZrEzzmAgkPLQETb/v7uAuEjid0lF5ugNx6m5pbcvDIp+Ba2y1UkFxC9hoetrzctrzUC/iBJl/L5X5wwwu2P6gpznl26nDXCiMz6UxVzlURAABEyXuX89d/RyOv//fX73+G6I3tC6481rdPb+qrNz//0Xt/WszlvDT3j/73j4d/20+vi0+vi4csRn8hiolcke+IO/POdDPdw/nnb/I31/HVznb22/12//v3z9+bvzfPm+fl/Pv8++vfX3+df59/n3+fP2dz9r8P4zj+uzrlqevU59Sna/fZnM3ZfO35nvt7/r/z//X/9L/77efNx/uJt+7RPdeZ68x1/Dm1T+2u3afTTvdxOjnN0KIGWvKqnO5fl/UADIzWaM9o1QW6E2vyGe2Z6QSO08np9PPXqle/ViU2Ow8A2R1yP2BGEm3BAA==",F="data:audio/ogg;base64,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",y="data:audio/ogg;base64,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",N="data:audio/mpeg;base64,SUQzAwAAAAAxJVBSSVYAABCbAABYTVAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuYjBmOGJlOSwgMjAyMS8xMi8wOC0xOToxMToyMiAgICAgICAgIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcERNPSJodHRwOi8vbnMuYWRvYmUuY29tL3htcC8xLjAvRHluYW1pY01lZGlhLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDIzLTA3LTE4VDE4OjExOjM3KzA4OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyMy0wNy0xOFQxODoxMTozNyswODowMCIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MWU0ZmRhYi0wY2MwLTVlNGQtYmRhYS0zMTM0NzlkMjhmN2EiCiAgIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTFlNGZkYWItMGNjMC01ZTRkLWJkYWEtMzEzNDc5ZDI4ZjdhIgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6Nzg1MTkwODMtMGUyYy1iMDQ3LTgxODMtNWMwNDk3M2EyOWNkIgogICBkYzpmb3JtYXQ9ImF1ZGlvL21wZWciPgogICA8eG1wRE06VHJhY2tzPgogICAgPHJkZjpCYWc+CiAgICAgPHJkZjpsaQogICAgICB4bXBETTp0cmFja05hbWU9IkN1ZVBvaW50IE1hcmtlcnMiCiAgICAgIHhtcERNOnRyYWNrVHlwZT0iQ3VlIgogICAgICB4bXBETTpmcmFtZVJhdGU9ImY0ODAwMCIvPgogICAgIDxyZGY6bGkKICAgICAgeG1wRE06dHJhY2tOYW1lPSJDRCBUcmFjayBNYXJrZXJzIgogICAgICB4bXBETTp0cmFja1R5cGU9IlRyYWNrIgogICAgICB4bXBETTpmcmFtZVJhdGU9ImY0ODAwMCIvPgogICAgIDxyZGY6bGkKICAgICAgeG1wRE06dHJhY2tOYW1lPSJTdWJjbGlwIE1hcmtlcnMiCiAgICAgIHhtcERNOnRyYWNrVHlwZT0iSW5PdXQiCiAgICAgIHhtcERNOmZyYW1lUmF0ZT0iZjQ4MDAwIi8+CiAgICA8L3JkZjpCYWc+CiAgIDwveG1wRE06VHJhY2tzPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo3ODUxOTA4My0wZTJjLWIwNDctODE4My01YzA0OTczYTI5Y2QiCiAgICAgIHN0RXZ0OndoZW49IjIwMjMtMDctMThUMTg6MTE6MzcrMDg6MDAiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIEF1ZGl0aW9uIDIzLjMgKFdpbmRvd3MpIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvbWV0YWRhdGEiLz4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6OTFlNGZkYWItMGNjMC01ZTRkLWJkYWEtMzEzNDc5ZDI4ZjdhIgogICAgICBzdEV2dDp3aGVuPSIyMDIzLTA3LTE4VDE4OjExOjM3KzA4OjAwIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBBdWRpdGlvbiAyMy4zIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6Y2hhbmdlZD0iLyIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgIDx4bXBNTTpEZXJpdmVkRnJvbQogICAgc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3ODUxOTA4My0wZTJjLWIwNDctODE4My01YzA0OTczYTI5Y2QiCiAgICBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4NTE5MDgzLTBlMmMtYjA0Ny04MTgzLTVjMDQ5NzNhMjljZCIKICAgIHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3ODUxOTA4My0wZTJjLWIwNDctODE4My01YzA0OTczYTI5Y2QiLz4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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XWakmOEz/70kV//7d1KRbvI8sojmFUJhMRO//t/+v/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////aJu22sttkZYqQOhlQGbGTiUVEQcHKCEogeIBBxg5fyElMgFha+nKNBBzUZws9DQvANvLfjT2almRqLPURwYlEsLgRUT//7tGDAAAncXErrGKNoAAAJcAAAARwNgSus4o2gAAAlwAAABLBwRCgBCU2WFLSoqqpCYkx1SF5QCZuTOA5cOhIoMuCYkBpOGyCokGIMEAMSU+RMEhINyBzB8niYKpgUmZFFQ3RvtKM4F6iQJxiqUjI2NaMoFRIsGpZLZPkqKHC6kDP0QNwAD7DJD6IkViyGCj5xFYnUrpm5eJ16lsOcbf782Ov//9Jr2eyiiNtkjWyaWbGADB8HwwJyAED7kf/3VEiXdtLbtZa4wMSS6IFKACoRiCwMYDhp4hDUB5RsKgM4QuMxIhsaGFAmATW5gKUMaVDBoQXOWdJYA1LxIygRCnnDnn9KhS8KpV2sEDupNglyCAwNQFlqi4Jkml2qdH0vzEga8KqQxTwswGo4IXLQzoFh4bOPJiNAqmB1TKdaJVIlU7nBYR6RPkko9Oo0VFZR01NS8RQqIimAAQRRxRBkx4FaoCmidDFIzMA/ZI7JUWYeZmTHYav+tDnjFL/6/X3UnTzAnkiPZzpkmWiCjlD0XTSkfDJQ+BHjC1Qb/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////JJTbcbkjbQY6apoClCL8YCQSi35HYGEDIAgMbd7hYIibWMLUj47GjEdHDgoQEMA1pI8oul5wIgIEPECLqEM1eJrT6LBswQ6p8IpK5c5J//7tGDAAAmOYslrGKNyAAAJcAAAAR1Bkx2s4o3AAAAlwAAABBYFSl4FMWRkomWoavk/aJg6sBMftRusyJVYUciZGg3obF4Y5SRm5ufM0zc6YE6XGJki5Fw0MUcQHGTJsi5TJ9NPY8bG59EuGxFCmJuCBkFCY7RyE3mIsPQI1kkCuYsjmZfNlf///9MzMy+TZPlQ1IeOeVhzCIjnj4IUaIyY7B7GRGWH8iArUihAj5iXS6al1JIyCoaCqP/9Oj//qCSXJJJJG20UWULphcpBwueDAxs1OcaIaCWzc41kX1REEDl2KqJENBNwkvkP0aUA4yIR3AxnlGhIuEAkeEFY6zEHGJmERxoKgrgt85INExMWUjMDCQW95fFEYxFTJYTyKSDKDIkCLxAiOIMSIygsBNFYhxeQOomiDzYvGpOk6RUc0io8gHYAHw5pigkbGxsfMp5JSa0UjpSMiJgS8GUSZVRPOo3dektmNEvYum/+3f//rRRRRLpeIsXnLqCSZimxh6/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tGDAAAxKXEdrOJNgAAAJcAAAARJZax2sYi2AAAAlwAAABP///////////9JFOSSSRpIgllkDAZhVAGnUIFQCEYZcIILEQQEVSZqYBcSVoSBoxcciWEbQnsZWKWxXeuRNSgZis6oHBd9wFfNJBqHVcpS5p79s5UTIDCML9NDtuzDRGjnDKCeBBcQUGaHomzw+WJpIco1NEjilJUVddWbFIV4trUmp/3QS1VmQxoNKKjX5W9epJL6///////6z6mlJI039KgLxAgyyJfEvKDgrgWGZ+oEhKRWBzCHFyQ6dhtbKdNE0XF9G6mQ5yUqhqpVCNlMAUAUD4bEmHTBso1NNoaw8cg2eac9Dv//85P/q3tqRLt/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tGDAAA/7OUdjDzrQFgAJcAAAAQDIARqAAAAgAAAlwAAABP//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4JAAAAlhKP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tEDAAA/8AEuAAAAIHIAJcAAAAQAAAS4AAAAgAAAlwAAABP///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRBRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",q="data:audio/ogg;base64,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",O="data:audio/ogg;base64,T2dnUwACAAAAAAAAAAA5/OJTAAAAAFSLcjEBHgF2b3JiaXMAAAAAAUSsAAAAAAAAgDgBAAAAAAC4AU9nZ1MAAAAAAAAAAAAAOfziUwEAAAAGt26dDkD///////////////+BA3ZvcmJpcw0AAABMYXZmNTcuNTYuMTAxAQAAAB8AAABlbmNvZGVyPUxhdmM1Ny42NC4xMDEgbGlidm9yYmlzAQV2b3JiaXMiQkNWAQBAAAAkcxgqRqVzFoQQGkJQGeMcQs5r7BlCTBGCHDJMW8slc5AhpKBCiFsogdCQVQAAQAAAh0F4FISKQQghhCU9WJKDJz0IIYSIOXgUhGlBCCGEEEIIIYQQQgghhEU5aJKDJ0EIHYTjMDgMg+U4+ByERTlYEIMnQegghA9CuJqDrDkIIYQkNUhQgwY56ByEwiwoioLEMLgWhAQ1KIyC5DDI1IMLQoiag0k1+BqEZ0F4FoRpQQghhCRBSJCDBkHIGIRGQViSgwY5uBSEy0GoGoQqOQgfhCA0ZBUAkAAAoKIoiqIoChAasgoAyAAAEEBRFMdxHMmRHMmxHAsIDVkFAAABAAgAAKBIiqRIjuRIkiRZkiVZkiVZkuaJqizLsizLsizLMhAasgoASAAAUFEMRXEUBwgNWQUAZAAACKA4iqVYiqVoiueIjgiEhqwCAIAAAAQAABA0Q1M8R5REz1RV17Zt27Zt27Zt27Zt27ZtW5ZlGQgNWQUAQAAAENJpZqkGiDADGQZCQ1YBAAgAAIARijDEgNCQVQAAQAAAgBhKDqIJrTnfnOOgWQ6aSrE5HZxItXmSm4q5Oeecc87J5pwxzjnnnKKcWQyaCa0555zEoFkKmgmtOeecJ7F50JoqrTnnnHHO6WCcEcY555wmrXmQmo21OeecBa1pjppLsTnnnEi5eVKbS7U555xzzjnnnHPOOeec6sXpHJwTzjnnnKi9uZab0MU555xPxunenBDOOeecc84555xzzjnnnCA0ZBUAAAQAQBCGjWHcKQjS52ggRhFiGjLpQffoMAkag5xC6tHoaKSUOggllXFSSicIDVkFAAACAEAIIYUUUkghhRRSSCGFFGKIIYYYcsopp6CCSiqpqKKMMssss8wyyyyzzDrsrLMOOwwxxBBDK63EUlNtNdZYa+4555qDtFZaa621UkoppZRSCkJDVgEAIAAABEIGGWSQUUghhRRiiCmnnHIKKqiA0JBVAAAgAIAAAAAAT/Ic0REd0REd0REd0REd0fEczxElURIlURIt0zI101NFVXVl15Z1Wbd9W9iFXfd93fd93fh1YViWZVmWZVmWZVmWZVmWZVmWIDRkFQAAAgAAIIQQQkghhRRSSCnGGHPMOegklBAIDVkFAAACAAgAAABwFEdxHMmRHEmyJEvSJM3SLE/zNE8TPVEURdM0VdEVXVE3bVE2ZdM1XVM2XVVWbVeWbVu2dduXZdv3fd/3fd/3fd/3fd/3fV0HQkNWAQASAAA6kiMpkiIpkuM4jiRJQGjIKgBABgBAAACK4iiO4ziSJEmSJWmSZ3mWqJma6ZmeKqpAaMgqAAAQAEAAAAAAAACKpniKqXiKqHiO6IiSaJmWqKmaK8qm7Lqu67qu67qu67qu67qu67qu67qu67qu67qu67qu67qu67quC4SGrAIAJAAAdCRHciRHUiRFUiRHcoDQkFUAgAwAgAAAHMMxJEVyLMvSNE/zNE8TPdETPdNTRVd0gdCQVQAAIACAAAAAAAAADMmwFMvRHE0SJdVSLVVTLdVSRdVTVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVTdM0TRMIDVkJAAABANBac8ytl45B6KyXyCikoNdOOeak18wogpznEDFjmMdSMUMMxpZBhJQFQkNWBABRAACAMcgxxBxyzknqJEXOOSodpcY5R6mj1FFKsaZaO0qltlRr45yj1FHKKKVaS6sdpVRrqrEAAIAABwCAAAuh0JAVAUAUAACBDFIKKYWUYs4p55BSyjnmHGKKOaecY845KJ2UyjknnZMSKaWcY84p55yUzknmnJPSSSgAACDAAQAgwEIoNGRFABAnAOBwHE2TNE0UJU0TRU8UXdcTRdWVNM00NVFUVU0UTdVUVVkWTVWWJU0zTU0UVVMTRVUVVVOWTVW1Zc80bdlUVd0WVdW2ZVv2fVeWdd0zTdkWVdW2TVW1dVeWdV22bd2XNM00NVFUVU0UVddUVds2VdW2NVF0XVFVZVlUVVl2XVnXVVfWfU0UVdVTTdkVVVWWVdnVZVWWdV90Vd1WXdnXVVnWfdvWhV/WfcKoqrpuyq6uq7Ks+7Iu+7rt65RJ00xTE0VV1URRVU1XtW1TdW1bE0XXFVXVlkVTdWVVln1fdWXZ10TRdUVVlWVRVWVZlWVdd2VXt0VV1W1Vdn3fdF1dl3VdWGZb94XTdXVdlWXfV2VZ92Vdx9Z13/dM07ZN19V101V139Z15Zlt2/hFVdV1VZaFX5Vl39eF4Xlu3ReeUVV13ZRdX1dlWRduXzfavm48r21j2z6yryMMR76wLF3bNrq+TZh13egbQ+E3hjTTtG3TVXXddF1fl3XdaOu6UFRVXVdl2fdVV/Z9W/eF4fZ93xhV1/dVWRaG1ZadYfd9pe4LlVW2hd/WdeeYbV1YfuPo/L4ydHVbaOu6scy+rjy7cXSGPgIAAAYcAAACTCgDhYasCADiBAAYhJxDTEGIFIMQQkgphJBSxBiEzDkpGXNSQimphVJSixiDkDkmJXNOSiihpVBKS6GE1kIpsYVSWmyt1ZpaizWE0loopbVQSouppRpbazVGjEHInJOSOSellNJaKKW1zDkqnYOUOggppZRaLCnFWDknJYOOSgchpZJKTCWlGEMqsZWUYiwpxdhabLnFmHMopcWSSmwlpVhbTDm2GHOOGIOQOSclc05KKKW1UlJrlXNSOggpZQ5KKinFWEpKMXNOSgchpQ5CSiWlGFNKsYVSYisp1VhKarHFmHNLMdZQUoslpRhLSjG2GHNuseXWQWgtpBJjKCXGFmOurbUaQymxlZRiLCnVFmOtvcWYcyglxpJKjSWlWFuNucYYc06x5ZparLnF2GttufWac9CptVpTTLm2GHOOuQVZc+69g9BaKKXFUEqMrbVaW4w5h1JiKynVWEqKtcWYc2ux9lBKjCWlWEtKNbYYa4419ppaq7XFmGtqseaac+8x5thTazW3GGtOseVac+695tZjAQAAAw4AAAEmlIFCQ1YCAFEAAAQhSjEGoUGIMeekNAgx5pyUijHnIKRSMeYchFIy5yCUklLmHIRSUgqlpJJSa6GUUlJqrQAAgAIHAIAAGzQlFgcoNGQlAJAKAGBwHMvyPFE0Vdl2LMnzRNE0VdW2HcvyPFE0TVW1bcvzRNE0VdV1dd3yPFE0VVV1XV33RFE1VdV1ZVn3PVE0VVV1XVn2fdNUVdV1ZVm2hV80VVd1XVmWZd9YXdV1ZVm2dVsYVtV1XVmWbVs3hlvXdd33hWE5Ordu67rv+8LxO8cAAPAEBwCgAhtWRzgpGgssNGQlAJABAEAYg5BBSCGDEFJIIaUQUkoJAAAYcAAACDChDBQashIAiAIAAAiRUkopjZRSSimlkVJKKaWUEkIIIYQQQgghhBBCCCGEEEIIIYQQQgghhBBCCCGEEEIIBQD4TzgA+D/YoCmxOEChISsBgHAAAMAYpZhyDDoJKTWMOQahlJRSaq1hjDEIpaTUWkuVcxBKSam12GKsnINQUkqtxRpjByGl1lqssdaaOwgppRZrrDnYHEppLcZYc86995BSazHWWnPvvZfWYqw159yDEMK0FGOuufbge+8ptlprzT34IIRQsdVac/BBCCGEizH33IPwPQghXIw55x6E8MEHYQAAd4MDAESCjTOsJJ0VjgYXGrISAAgJACAQYoox55yDEEIIkVKMOecchBBCKCVSijHnnIMOQgglZIw55xyEEEIopZSMMeecgxBCCaWUkjnnHIQQQiillFIy56CDEEIJpZRSSucchBBCCKWUUkrpoIMQQgmllFJKKSGEEEIJpZRSSiklhBBCCaWUUkoppYQQSiillFJKKaWUEEIppZRSSimllBJCKKWUUkoppZSSQimllFJKKaWUUlIopZRSSimllFJKCaWUUkoppZSUUkkFAAAcOAAABBhBJxlVFmGjCRcegEJDVgIAQAAAFMRWU4mdQcwxZ6khCDGoqUJKKYYxQ8ogpilTCiGFIXOKIQKhxVZLxQAAABAEAAgICQAwQFAwAwAMDhA+B0EnQHC0AQAIQmSGSDQsBIcHlQARMRUAJCYo5AJAhcVF2sUFdBnggi7uOhBCEIIQxOIACkjAwQk3PPGGJ9zgBJ2iUgcBAAAAAHAAAA8AAMcFEBHRHEaGxgZHh8cHSEgAAAAAAMgAwAcAwCECREQ0h5GhscHR4fEBEhIAAAAAAAAAAAAEBAQAAAAAAAIAAAAEBE9nZ1MABC9sAAAAAAAAOfziUwIAAAAyQEZaJwEBMRkcGxwdICEtLjAw1MG9tre2uLvCtLG9rq6urKykqayjqamkOgAKNpb876xfugEmAKAYlAAAgAEAAACnBFTeK1EjwxMZGfxvl5GIQkxMmsQnQIuaEACQAHTIyWw5QQgAlM9BDkwj25Zw+svJNVyTewCEyJlOYymAAAAT2bztDCZGGdyvJBkMj6btm9QAfMi5TE8FAQGA3YOsR23n/WvNHn6KZtaK2UoAdMjxbDkjAgBPzvTJicWtL6i4qhq3yZsphZSiBozI6c7ig9MIAQD2prOyMUdk39oRtDdqp6h8rYYFjEbVvfLJXCIEADg020xbXs1Q/Nh5Qvzt369soS1SlQCERM9OhU07KwASAAIAbNSpxgodEVftNCpJ8dk820DwjQC0RLHoHIh5P3wKuigAcFM9f/XvD06Uub9fK4/irJU/PsV1v9Yyo0lR9MkT5gDUQLPJk1VUK0kO8P7rAAXg/MwzS8VD3yg92N0hqjuy7oL0butwrO9rFmXzdhcA5MouegmZ7m8n5raOpwxUBSSAcWv8jm1cPZ8eU82xQuz6nOKwVWcq89Jz/htxzfwCtE5VY41tf+WmixjgAyABgENXfbob24H9vCp48c2n0lBpP1nXp3XuESRfsw8xzOoG2tbMerzlviCY1CXQtwIA3Nhk5QJZCmhA9vEIEKd2fikAQJpCTwCAyWBsvphJJL6+vLlnX0NAroiXi3XWkc9KrzQ/jzTf5oooTYkm/TyNuIIrxFubfFf2oSvDs1ObfpStJ+18HlV7ftJYMTrM3Q5Xu8jnU2n0Eie24zfuB6iDFnb8rKfYyGGrA4HB5e9mUhPwtOpmwiHtDdoERA6McNdrm8VLs3mb7NRjv4SVLTCHR4a68ooHhDtUJCLIlwp4ZZ+pwPBa2+KKYB8+jdEYICFlSMDdKwHeBrUADSzoQiGhlMq3irKWq9Wh7iMICKL1UUAdAABO7ecfTJcAIJ2CSQAgGaxm/P1vY3xjp/msu/zrpIWR/0rsVwB0AKGOwwAggIgTWwBAAM0n5aI09tweglUkx94U9fxNDee2cEeghF/9Kiq0rk4FzQh2RjyNQwwpzAzJBgOdET21SWAgBQiLDIBT3ocpAA0AnFaAHf2T1Hzr9wUzc5tqsvnkJoBYUBpYB3mQ7VIY71p7Db+Cys0cswAaAADBPKkCvpYMNAwkqJolQ0q9m8fQZh3z7tYtwYYN9DYDAMjDKQAAejgBnNr7+wAAhxOYAYAEUjDDma9d81m6F2MzSa6Q/yWNx6liPMUbDtoa1Ndcm+Ig8QegoNB39fPFNl9cv5mrNY8lgCISOhQA0HukK6N11miC3h2j/Yj2QKr5J0QaJQlMS8h68cFuGOrzrVHjSTH0jksBMMb73LXk1l4EqsINBbRBcoLszSxmkgDxdwKSdGQTtsimOgDgAgAA8JUAfma0DQ4RoOuLrZPZf4d5boKIMbtZIVemhWZ7AIB4GAkaAPS/gTXzCgAEcQI3AEAiWNKF2bIqI9n3WJ6oDuPmfWHN86bVMyhBoFA2Cc0MVXr7AQUAwL8rgMu6BNAOCADELxYAAPlFoHhQanV12Jo1614dtu0SjYU8h11ZvSbTC2fHjtxC9snqUJyuukfMAkskXeCbEwUWD7ebsmO6pDPaa51EPf/5CQvo8ABaw1qYT2wAAADQBw8+ZswwGHRB3zUCKK172D6OkZMr6mj1wlMDQNctgOfOGniK2wAgaoLdAAARTJJ51+XLTybpVmc5BYAClAIEYpuHpqlRcasJrgAASvluRAEH4D089ZVu3J+inbnNrE6iZa6SHtXY6dMi8pIVtp7WsAnVLqBYjTFAOTx/2lcRlpFVtWi+n7o8o6sAwNtkWwNXDzL99ok2h90SK3pYA3feb2SKtdLcpiLSLMBf2EVjMVmkxrM5qAKAMwD+ZlQiLRBrQG1kRmn+SwfEIJtjFrYWAejbVgMA6uMZ0AIAeBPgKXG/AMBwAjMAkAi8dla7765qfEnGMufk+IPvJMSymiTMAUKEUI67ogNpsy2lAABAfa+B6nI8/9WlOgAO+GIVegHFLWzePlBNqmTLIsNDSZXPMUEZiNInDuCsJoGs/0Q8Ts3VQYCFbGJ3IlDyDw9LRVLBF0CdybHF1/MjHCBVia/4AsXohG5OcgJog3wDAAAAAH5n5CoNwkEXC8Waquc3NiJbAjLGppABxOsZAAABIB4PAACozwCe0nc2AAgnkABAIrDWtjZoEkXv6UV+zRdz9qji5d7krQKA00r6ExMQEaYEXBrSKgEq3HA6AADierJqU6KfXy5AAQHg5YAAoPCcfN+HVpqau9B0NeZ/G1nxqnzrlZf07fVtc8a+PYxXxGNgMWH/lIkqNpIJd0/f97fdv877zVJcZUp3f0WBA4JmcYynAwDz1wIAAAC+ZgwYTVelEWuxDqTpfh9FkIh5oM4+BUCAYw8AAHh/ncBTugwAiDiBBwAIUrB4/N+dOVlV2tdS8UBX5Uph1fEYmKdVV09VAQAB79+Q5kV0w2roeKA6Uq4t2uYACvzu9Vv/dx//ums19Tw+RcyizfVoOPCsuzhkyG4zvbldoZ8aUpCg7n3TQn8fW8G1BiFWkdg7abMAZfW7e7d+NFEZF3eVjqrogpEiv6Jm+2Y3JxS2ERAk0IEHHQAAAMA23mZUDA0yQJ8LiUIp71+pIecu54wWHRpYG31Ujz0HAIC8gKbYAgAcT+A9AEAisKyXc92S5Lds0//1HNRf35JjTsZMxasOhXHvBgSgRFtIjjPE5lF+o29qc3UFEC/PjgIAfXNbd6W89mGlFVi4eImkjOfnMjIwWMxTVvJHpF3YaDD7Up1fe8SFMiI1RXfNM08Dbf8pyK3FXFtMrTWduM0mv7H+mnnJ2J06yGwvJ/nam02ZvlNmO2KlnuWA5XaKlQAAAACeZ0QTDQjociIQ2TW/E5rMY3XoHrONdAQS/SQAWNAA4rFzAADgpQzACa8DAEIkDUcAAEYE22+/OGuEZdhRy5n4yzZg0qXm8KPj7loAikDu4r359YhS0ILWXFKcGD8BAAQVWUPDlX5NLwXcKQGgkQIAwPnks0ZzDzBfnMcWK4enAm7glvs9U1SQXzSi1C4JoV5BKagrH/sztPlh2UNq+7kJ1q3rvB5KvIUMAAmA6XUCAAAAeADeZuSNDB6gdsFcIqW07p3JPrY1ZB9TADzg2AIAALvzAqEOYhWJYKGbkKTLJHfz/ceBapegjocvOOVap+2Cxl2gAFricQ5dY4Svu8PD8600fWtOo/NMjU1JALNqPiXf51TmA+f+aUIAQB3Pw+0+pXaKd2xX5BPQ5GNlzAQne5q+f4HbLRLxTtrqAbmQfCQhd9vAaR/M0vqMGaKNBoAbgNsfbAJgABoAChrA4/8UAAAAAAHeZiSrDj7B0hdbyWkfE2C3M2MmtwUA6mMbSAAwfwE6JTcAgDWBmwQAiaBaE/mTqu3bP9WSKlsqFIgKDVySLIi3TwoAaNqxTNuDxPgOmiAOCkiBp6bFwgElmw3fjNmOJNH4/lD96j+0f4pMNKcotcpp56fgpOYUUZmshGJAZK/Ict91RUZl8Jy05mPMNuiL9LC9i588QpyIgRdzroHcU6dYchsSd4ZW0njZeXNOlIbJQ5nwDR+RAAAAAOCNkQbeZqSTjDUHnY+uEErJ8J0OOnsRuyFWIEHe1gAgwQKYANDgcIAdANAjkchViydwDwAkAKEPRJOT/4g3/N+MyzT8QvIRWFF+cQAIFDIwEIqaAgUlfhVEux5GPOBuTCnV/QcAaK3xr0v2bSB6jB0AALwh249Vqij6217l7XkSzvXodvWvdTG3aAIQmkcDdMRGH6CLMXhscSOvyvYW7FhodZMbWUHRgQYdYAICtjo5AQC+lVS9j/IDnYYQezQ2Yiaz21jYCgDoPHoSaw4AIBJsC+EEOgFAAqiSHsIImvpVya608AsOgit4yoxmuMR5nrkBFAAV8uyQKEg2SQNwgOslRvOfXw5HRd/WUTkedGh3ocnV3Z+1kciCZIB5LZ7rJeNmdwA7k/nzp/FeANQjAL2u+fTCwZa8GXiTjX3aJKAeVIz1KVDiCpQaUtcI70WcUR1QFVK8rgZF+i4NAAAAVQLeZeRdytSP9PJYjieDKVH4VoCN7dIiISVYuQkAEDe8GUhoLAtaiICf8sTcaPcpaz5C0H3kNmw4505rEUIV4FCdHougrFqleKJAXsaTHmu08XP8mnsjRx1vJKN5zFsHQuaQD8dZx36XuwWpn1cDDIjyDE/db1TgpZKwSiwdGP6ea1A2zoxnIPYLpfIM7CbMVstUJ5qe/WJpyJnveYjO/zyKAJgT51lpomXDr4Ib0gN+lgStXEL8KKzrO/R+Ua3rXZFshmGzM7EB0OLWAQCqM/ZOIKEwSkLAZQc0JEc8z+X8y8SWzNnSw1Zuyzk5EVQQF3DHFSNKaagG8F03fBLFfjIpt8n3TjadN1Cm12fAwsbDeUpS9+fIs6fLgM0WSDNKIFXBkWibFSDtPn87QB519SBlkkyzfhixDVBm2QeNTHsICUijX/T1sptT9mVdWGtbISJeeUGA/DDFapgAPpYEvQ3kZ+CqX0/GK+8TEEcf86a0EQCNHPWMzUADoWVBRgSGLdfW03h38GWuL51nPWlZlvoUq9qTnsbKt2UR8GlQIjz2WqjXXIQbe2Ix5XA6UyQ5hULJpatfj952IEk0mWQBRXZb3syaabkDPTUxqL5/TGxT22Zh8/t/EJl4LNgcmUfcjNbh1zmigcqqzGuNOHJjunR7JLuVY5NXpPs8Q9/IOlVG8umoaUBnAj6WFFPaMU/Do/+j1Oz6vgFRb+wIqSUdaMxx1HVtWdASAv8XKO//ebbVbEn023iuv8zxiDe6VZzyF0Q3T4GkiZufwfRz6dyZXBpykWS/yh/XPmeyMhghZtwr+d4lyLJdJd3X/RJ3fnU3AkCQp6oY+okGZPLsLExaG8HDMaFDhjMF6RW2rYHOLGWxtLE/S2SMdRfVvD0uC82HMPatE1RuiocJEpgAHpYEfbqHuGBZnrZFiVxvDhC5ESG2ewBA3yQAqM7YSiBhoOUgIzBS291Dm7Le88V2nPePte+BWQh2MgsUAEKW6OiZWCHtmAjMe3tWrZg97Fn4CoJ0+O8PMcr8SVa7hILBAmjlbKJ137pgwu7qGh0z4HCAMF/CdAIJ8jwFyai7grx1hRRnit2+Ntivt1DDREDPyKkWwrZebIbgamLLP9701MHxbNZ4sjIBBZ6WlPv0RjxwXe9Qt+XNHKydQ8s6t9WRJCBckADAmvEkkDCYxYhg8UvVZ7jb3stNh351ZqO1dsv0KJDVRTxC1KhFrMUVkk4DOB5CYMB+urSPBHpqArW5tuqkb0xT6LYCr5MYOCAAnh+70iEzaz1yRPd6MmAyAgBglflTDJBuBZEEX1pnbOPZVZFuyja0cYe20i5vbML8Rf2ZKHndojTXIyD0FyMVJJMfSqASBAAeltRLv5AXXP0PKt+GpcHQ9YzDskvTqzOe20ECGmZoIQKLrPqzTznW2XZqmqftkq6sT3y5QAtfihrjEZwz42Cm0qc0qbti8S7DtKX67DjBiTpbAxUrJM7nA5zqwgOHJrFTg1fYEDMGEP92gKyYzulw+rNWmIuIzDvv5oLmeH+Ctvwl9cHPPgzZzrYQmydyjmt3hELW2GA4uzVuMm6jKJ0uBaABfpaMRzsz8wyd5XqHlrnyzQH1qsmmRwkAuQkAUJ2hAIDN7BgRLH4W6qV7PWqV0yz/aOfSQoOzFkcuCKq4KyVC0dIhzUgMAJBA8zHoC+TNZXSih2jRN05QXn5nRAjJWDC1PNMdFV1bV52D6rJOtVK0LBjPAbg4q1eifxX8KUbQ4yz1ZnrWaSvhAOW6rEVlR8H+nZAOwvstf8VsfRvQJ7z93qxscI2pATqgAD6WdOf4Iw7oHz9GmSw9oFNS56hzbgRA6cEJGgAKB2UhggXTqippIWwd3etfelcj+iWlRxoXFD8NCKcUcKPKS+2H2ff/ugoGjKLjkHHGGBlYRVNmqFbYv6jnkdhObnd9WiNCrjPgjD5s9to8bMQuoMMA7jB6ggbqdwLqG5RLUWG+A6ET43yH428t4J/RTVjkI5/E/cipMo6V2+hJtvIFaF0bABsIpsbUKQA+lkzX5YtYsFw/1rkqPsDONrSczRrImZHBpkGmQgR2ZWNl24T1qHt1aT057B+eO4mKfx2tPCsnofdzMWcGZK6yut7jTYQO56VJkpJazSPHQxTUS9vmz7N/eSaFM3cE/BaS1flnDAsAwJ49mT0UAKWplUDL4dDD1ShnJjdsvb1gstsLZ8lF2LVpt3/zvY/fB/pQS9PmnGHowmZS8kjqNR40fHiABj6W/OeZvpSAxY0GCBMESAEAAAAAAABYG1655k+pDzA31Ncq+FSP21iJeXOj1mj9yzCqV/zNT9CYBAA=",x="data:audio/ogg;base64,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AABQ4AAAEGCDpsTiAIWGrAQAQgIAHIpiWZrmeZ4niqapmiRJ0zxPFEXRNE1TVUmSpnmeKIqiaZqmqrIsTfM8URRF01RVVYWmeZ4oiqJpqqrqwvM8TxRF0TRV1XXheZ4niqJomqrquhBFUTRN01RNVXVdIIqmaZqqqqquC0RPFE1TVV3XdYHniaJpqqqrui4QTdNUVVV1XVkGmKZpqqrryjJAVVXVdV1XlgGqqqqu67qyDFBV13VdWZZlAK7rurIsywIAAA4cAAACjKCTjCqLsNGECw9AoSErAoAoAADAGKYUU8owJiGkEBrGJIQUQiYlpdJSqiCkUlIpFYRUSiolo5RSailVEFIpqZQKQiollVIAANiBAwDYgYVQaMhKACAPAIAwRinGGHNOIqQUY845JxFSijHnnJNKMeacc85JKRlzzDnnpJTOOeecc1JK5pxzzjkppXPOOeeclFJK55xzTkopJYTOQSellNI555wTAABU4AAAEGCjyOYEI0GFhqwEAFIBAAyOY1ma5nmiaJqWJGma53meKJqmJkma5nmeJ4qqyfM8TxRF0TRVled5niiKommqKtcVRdM0TVVVXbIsiqZpmqrqujBN01RV13VdmKZpqqrrui5sW1VV1XVlGbatqqrqurIMXNd1ZdmWgSy7ruzasgAA8AQHAKACG1ZHOCkaCyw0ZCUAkAEAQBiDkEIIIWUQQgohhJRSCAkAABhwAAAIMKEMFBqyEgBIBQAAjLHWWmuttdZAZ6211lprrYDMWmuttdZaa6211lprrbXWUmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaay2llFJKKaWUUkoppZRSSimllFJKBQD6VTgA+D/YsDrCSdFYYKEhKwGAcAAAwBilGHMMQimlVAgx5px0VFqLsUKIMeckpNRabMVzzkEoIZXWYiyecw5CKSnFVmNRKYRSUkottliLSqGjklJKrdVYjDGppNZai63GYoxJKbTUWosxFiNsTam12GqrsRhjayottBhjjMUIX2RsLabaag3GCCNbLC3VWmswxhjdW4ultpqLMT742lIsMdZcAAB3gwMARIKNM6wknRWOBhcashIACAkAIBBSijHGGHPOOeekUow55pxzDkIIoVSKMcaccw5CCCGUjDHmnHMQQgghhFJKxpxz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",v="data:audio/ogg;base64,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AABQ4AAAEGCDpsTiAIWGrAQAQgIAHIpiWZrmeZ4niqapmiRJ0zxPFEXRNE1TVUmSpnmeKIqiaZqmqrIsTfM8URRF01RVVYWmeZ4oiqJpqqrqwvM8TxRF0TRV1XXheZ4niqJomqrquhBFUTRN01RNVXVdIIqmaZqqqqquC0RPFE1TVV3XdYHniaJpqqqrui4QTdNUVVV1XVkGmKZpqqrryjJAVVXVdV1XlgGqqqqu67qyDFBV13VdWZZlAK7rurIsywIAAA4cAAACjKCTjCqLsNGECw9AoSErAoAoAADAGKYUU8owJiGkEBrGJIQUQiYlpdJSqiCkUlIpFYRUSiolo5RSailVEFIpqZQKQiollVIAANiBAwDYgYVQaMhKACAPAIAwRinGGHNOIqQUY845JxFSijHnnJNKMeacc85JKRlzzDnnpJTOOeecc1JK5pxzzjkppXPOOeeclFJK55xzTkopJYTOQSellNI555wTAABU4AAAEGCjyOYEI0GFhqwEAFIBAAyOY1ma5nmiaJqWJGma53meKJqmJkma5nmeJ4qqyfM8TxRF0TRVled5niiKommqKtcVRdM0TVVVXbIsiqZpmqrqujBN01RV13VdmKZpqqrrui5sW1VV1XVlGbatqqrqurIMXNd1ZdmWgSy7ruzasgAA8AQHAKACG1ZHOCkaCyw0ZCUAkAEAQBiDkEIIIWUQQgohhJRSCAkAABhwAAAIMKEMFBqyEgBIBQAAjLHWWmuttdZAZ6211lprrYDMWmuttdZaa6211lprrbXWUmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaa6211lprrbXWWmuttdZaay2llFJKKaWUUkoppZRSSimllFJKBQD6VTgA+D/YsDrCSdFYYKEhKwGAcAAAwBilGHMMQimlVAgx5px0VFqLsUKIMeckpNRabMVzzkEoIZXWYiyecw5CKSnFVmNRKYRSUkottliLSqGjklJKrdVYjDGppNZai63GYoxJKbTUWosxFiNsTam12GqrsRhjayottBhjjMUIX2RsLabaag3GCCNbLC3VWmswxhjdW4ultpqLMT742lIsMdZcAAB3gwMARIKNM6wknRWOBhcashIACAkAIBBSijHGGHPOOeekUow55pxzDkIIoVSKMcaccw5CCCGUjDHmnHMQQgghhFJKxpxzEEIIIYSQUuqccxBCCCGEEEopnXMOQgghhBBCKaWDEEIIIYQQSiilpBRCCCGEEEIIqaSUQgghhFJCKCGVlFIIIYQQQiklpJRSCiGEUkIIoYSUUkophRBCCKWUklJKKaUSSgklhBJSKSmlFEoIIZRSSkoppVRKCaGEEkopJaWUUkohhBBKKQUAABw4AAAEGEEnGVUWYaMJFx6AQkNWAgBkAACQopRSKS1FgiKlGKQYS0YVc1BaiqhyDFLNqVLOIOYklogxhJSTVDLmFEIMQuocdUwpBi2VGELGGKTYckuhcw4AAABBAICAkAAAAwQFMwDA4ADhcxB0AgRHGwCAIERmiETDQnB4UAkQEVMBQGKCQi4AVFhcpF1cQJcBLujirgMhBCEIQSwOoIAEHJxwwxNveMINTtApKnUgAAAAAAAMAPAAAJBcABER0cxhZGhscHR4fICEiIyQCAAAAAAAFwB8AAAkJUBERDRzGBkaGxwdHh8gISIjJAEAgAACAAAAACCAAAQEBAAAAAAAAgAAAAQET2dnUwAEVCsAAAAAAADsoZSAAgAAADvRumEVLy/FLSomJicqMy7bysa/x7rAwq8BhM5TPBWXUULnKZ6KyyjtCAUg1VTPnm3XKBIXFwkC1fbs2dWkSnZ/tT3jt7w35xjM0MdYm26GPsbadPE8VCDRhAlDghgt9A3V7XbqTypVbTWdHk2PUsjgheaEYyE7AFJHzWRf96uHkXCg9qSOmsm+7lcPI+FA7cnVZmx/IipRrVsiiGCS5bKY5XJVFSsCptXRwFSbo8Vqt4IhqBUEo6JqjQntaCgnjCcSCQIp5Ubq/G86OjppM3uJmu/7uzqjefJ04NRbhEhqelJrWKTaoeVSfGtsSKtain9d3F5Y1EYj1vK6H4c2r19Ni4XX2yeyrVPiQixurC5+E1pDGtXqn2+CO+QmJyF6bNUPxiwyzYrGTBWiAAbNOefGF0Cz8HNjiKG2qgAGPOMFtlGX5p/xAtuoS/OrCTVE6BgCgdYYtYo1OxpGEkajYbhLLZreW+Rjwm0cLOOZbYomv4xntima/GqyqEtUM04FCIBRRVTwYxZKFIxK6DD8lppddFEAJOHBujNgKAkP1p0BQyv0YBUALGIRu9rGjrxQ138vPIuOy6hzbAAc4XsLlZc7wvcWKi+3QFkAwtj4RGNF0ClSUkcrsbxNKu8I0ZyHABRjv+0qxy/GfttVjr+AoALghInEx1t0u4qq2LuIB1B6H7TuGNYYbRTjwXZq8s0X48F2avLNL1QFmCAmQTTREJpOm1RywfYLS7RPNGKrZZ/JGRzf++ydxR3f++ydxd2oycgAwCSz1mKNVWnT6XR6dNLPd1q/JU0jPRtM3N3Iu9WWTm7pAAzj+8s/9TC+v/xTr1dBSrNgnAVi1IiKUdSwWDFJfH4hCBxvt7xgft5azb11DgDaVt2UzJcyWIJ/ts+HmklbdVMyX8pgCf7ZPh9qJh+EyKyt1mZUSr1+H5NNXLksZgdXVVUBIhZrxAhiVUQdxIpFRcS0Y7VpjxZtNGmSTnU89ov3o7P/O3lL9DoobfQorU5biZo2rL9rIH8lth+9C9VC73zppPwmtsYiBy0qyzWaoCH9BgJ9saJ2VFUlaXRL00baajVJRafaclT51dOiLRzFVQWXC77mx8NYcOcrss4U1239BcphrG+iMoBQ6TSO/q9wLEQShqHTzLH5prAqbbJzsW7zqKOFsAXYCgA++BxQPxWBiRBuyA1ENdPB54D6qQhMhHBDbiCqmd4QQ5PllTfxwCpWVUVgqqgVR1W12FRipESDRMLYhLHxGAht2h7dTs9O27TyKXtQnXPGzKtXxwhUvxr4pTwzoPct3RCoVCws+K9Df0qtaA9nl4qGbkRB00ToTeeYpS69OrSiTdOVklbTjWoqFZWAy8fuQwi35zZsWZwzUskdmGYbOmUflxSPIcA8tkFZyRlyS20Npamo4zQ0pcvmsETIdbxm7wgcQdpz2a43swKgPseMGzSDbly/Ycqy1JTMMeMGzaAb12+Ysiw1JRcgWlOW5SxnuSyrqqoIU20YVtNiN61WR7up0zOdpnR66tGtpgkTJh6Lw6gjMhGHd389oO8rKYzBcBBCmlMe28gKTAS6FM7VPpI/iyzTjB5FvumvrnG9rfN0435ndUT8khZx2eu3OJ3oVkUTFxfxYgATUalF0z4IFlAb8QW5aTtm6sblsggo++OEgNoNDtKVxqFaA21ioTnBlrJJ7ktRm40cEDpirsEAJSgA3rb0g7Vfxyx+XAZardi29IO1X8csflwGWq14jpyzcsxilauqEAiFViTRGAcxYSIJiYsmSmyMjOQwtGMSjSOUbGErEoTxsQZEaCBupD7Q1vY/yDk4RnqG45lCL4q23q+XKq3SuLsVLVtGfkhD/H3rnZGjliGVJ7ZBHa+KK6JXFcjIX1r/yquSOJoE00yiP/vgR3rOMuS2NtAoAO2al6sJOKVgwyrjuxab3pxkqkDaEQifL8HXmvUmCR2AXJMBwAA+thQb1CfLgtF7GBHGMKgxGVuKDeqTZcHoPYwIYxjUmBymmGVZjDkrVlVVCClhDKAA4uMiiRITQyQ2kXgiYWx8NEzkjA7tfYYVRqKR+FACsMLoX0sQ2CeIVlXrupfHlKUPqZoJS+xcE2/N2tIhqtYhgydBQstARFwCsYoLIUx8E/NQyDlXFT26iNPxwXAhVT9Nh2EI7AfiCQLV4RAVXCGr0jlQTA64/A40dR8fwZzC6NHK8qKbk66jmWZBOGeGaprPMLoBaBAAnrUMB7f3q254YkCtmLUMB7f3q254YkCtOJctNrSYc26TlZVzVRUCalrEYhp2UwyboxUARaKJRmNsyZYS3Z6VpkiV7Jj4SCgDAOfB18HidufFG20r1+xjKerEKrV19SqfQunM1E3FqHl8sBiwKyVouhREJWwZuZxNQU/o4hl4ykk4DgSO4KDBIwO/7Pq5UASMERVQDJ7k32SWtiMBINiQbR3JOLjFaWDXOx2YsxVP/0CJbRsMopEF5zYAXraU/P4ZOqHY7vCzQ9SGZUvJ75+hE4rtDj87RG14mliWc1ksVlVVANE4QiFDgMJIwgSJBkSJJmIpUUKqKU23063qNN2mxFZe6mUnzC/1cs/E6YBd1tUrI4hzKCl+iX2oP420Z96PvfJL1V88vGRvaiNenqPvxKGqcZk42HzOUdvdr44hJ4FD/yjkqyHlmdAJId8PYVIkOOOoJAUavHjvsiJJ1pCQcgPGZiA2aEkIQPBkVwwhHEyIUIBdCIbmgC0AXrZc1Jk/9EdRPEOtUBuWLRd15g/9URTPUCvUhg+gB5iVtAFYlmPMWVZVVREAMFTsalpNG4bVhmlTQTAM1G6KOFpVRUURFRXzVaivbn2PQuHhvtzXOZRtTxv/kULFpwS/XG+Fjqaj5alIqGaXOkDv9GX63Vhj4tFNUC/fTM/tyq4PT61M6ZgyLQHCw/A3mEoIO9f2y0Yy4LQ+S6vkkUpEaZQ75Uey/ewScARjElgm2bBEZNqfmw1UkF0m58hOb/sMDgC+tXyAmecVt7XAG2rGreUDzDyvuK0F3lAzno05xyxn5Ui5qhAAAAojsQkSjQsBy5FEE5MwMEE0IAxCx8VH7MCADEgl3U6btqm0KW+6Ex2G6fkVHHo4ntOn66H8i8fTRVLT7TlU8UsLlj4mdc8MrlWKS6+W7QVT/oWZV2IBXpbM3BUCeTzSHneZIlGWixspYXssAQgdCpIFhZfyuZMkwe3NveQpZbNbJwozS2CnUAAEDg==",z="data:audio/ogg;base64,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",X="data:audio/ogg;base64,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",b="data:audio/ogg;base64,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",H="data:audio/ogg;base64,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",j="data:audio/mpeg;base64,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ElyS/kAp9Bb5S66OALgAAKJBnEAQOasGQHElN1QhRZmkMDcT4kZdzhISYJTQFEybYVJFDDkG7BbGvNdFqw0hDuLUzvy5VpAMx1ijkjTCwKokfEBSNZeVKlFBqLJUcWYGSnRDxXWlGDkO1PH+qlEjlID/+zDE/gBJVH8r7CRvYQ+OpXWGJWTxEqh0jbBttSuu4mZIycRIvEGwMqpVyjbkbRFgAABVMghgIeEhzTLSbWMutLcuw7BlFuHIL4vxnD+Uh+ryUc+q5cnHOQLvSYzSlro7oQigq+t44Dhtpjo+e03cSEwJQLRGQFrk7SEKqYKWgYhBDFsJ6dIVyLJc7AogIXEmJl7yVMMaxiWXGVz/+zDE+gBIFGUt7BkwqQyOZXWGHeTTIiINt3LjE5E+pfrPpbYQ6AAAVQJJjAhqSj5e8SS2gH8RMOF+jl2PWfq6IM0Ob0xAsumCAiRyZZzca1i6/6aElE0RsVv6PXfbnIhQEngKF2Cc71gwacpQkvqwFTBibS67FW/kMHPnepeI3QSBIOoG6emufG06NhDB6h+uiZ6quss2tiGAAAD/+zDE+4BIRHMp7DEPKPeMZXWHpRWSOsto5jGMAHQD6JWnjbJ8DQUJkGmfpCRnKVhVkQ82QwQrsx66y5KPV939AgEoxnQ7QOabjkbKYR51rq50dUZxCVp7QnLYFVQ1aawccAiBWxitoEmHNk01cqepIUMPk0KaQZRi7BSYXU42kkVGAAYOo5wyhcQFEHCYIyx/qVPHJVEhhuZo0oL/+yDE/wBIGGMprD0qaPYMJHWHpRhkyNSJWF6TvCJ4GV505jbEWtMW6Td20oRSUsuyHyOIE2UpNPnFwesFQzPPjvOMbskhs5SywIkdepVMQU1FMy4xMDBVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVWmHqaAAPTmhLWARcPzUKatUy5qP//swxPYASChlH6w9iMDpDCR1h6UQ2K2VqgLxZ6lMQU1FMy4xMDBVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV//sgxPuAR2hfIaw9JwDfjKP1gzIZVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVf/7IMT4AEdQZx2nvScI1IvisYYliVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVX/+xDE9oBGVGERh6TMCJKLYmQmGC1VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVf/7EMTkA8N4XRUjDEVgAAA/wAAABFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV",L="data:audio/mpeg;base64,SUQzAwAAAAA5RFBSSVYAABS6AABYTVAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuNGQyZjU5NywgMjAyMS8wOS8wMS0yMDo1MToyMiAgICAgICAgIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcERNPSJodHRwOi8vbnMuYWRvYmUuY29tL3htcC8xLjAvRHluYW1pY01lZGlhLyIKICAgIHhtbG5zOmJleHQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20vYndmL2JleHQvMS4wLyIKICAgIHhtbG5zOmlYTUw9Imh0dHA6Ly9ucy5hZG9iZS5jb20vaXhtbC8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgIHhtcERNOnByb2plY3ROYW1lPSJ1aV9idXR0b25fY29tbW9uX2NsaWNrIgogICBiZXh0Om9yaWdpbmF0aW9uRGF0ZT0iMjAxOS0wMi0yNyIKICAgYmV4dDpvcmlnaW5hdGlvblRpbWU9IjIxOjI1OjUzIgogICBiZXh0OnVtaWQ9IjgwQjVDRkM2RDg1MTQ1MTRBNkFERTZDNUU0Njk0RjUyIgogICBiZXh0OnRpbWVSZWZlcmVuY2U9IjQ5Mzc3NiIKICAgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMi0xMS0xMFQxOTozMTowNSswODowMCIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjItMTEtMTBUMTk6MzE6MDUrMDg6MDAiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Njg3ZjFlNTEtMDljZC0yZDQyLWIxMDUtMWRlM2JkNDdiNDQ3IgogICB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA1Yjk0MDQwLTJmYTItZWQ0Zi05Njc0LWJlZWNlMjhjNDRjMSIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmEwYTI2ZTdlLWM2YmYtZmM0NS1hYTNiLTMzMGI2NTNjN2U5MSIKICAgZGM6Zm9ybWF0PSJhdWRpby9tcGVnIj4KICAgPHhtcERNOlRyYWNrcz4KICAgIDxyZGY6QmFnPgogICAgIDxyZGY6bGkKICAgICAgeG1wRE06dHJhY2tOYW1lPSJDdWVQb2ludCBNYXJrZXJzIgogICAgICB4bXBETTp0cmFja1R5cGU9IkN1ZSIKICAgICAgeG1wRE06ZnJhbWVSYXRlPSJmNDgwMDAiLz4KICAgICA8cmRmOmxpCiAgICAgIHhtcERNOnRyYWNrTmFtZT0iQ0QgVHJhY2sgTWFya2VycyIKICAgICAgeG1wRE06dHJhY2tUeXBlPSJUcmFjayIKICAgICAgeG1wRE06ZnJhbWVSYXRlPSJmNDgwMDAiLz4KICAgICA8cmRmOmxpCiAgICAgIHhtcERNOnRyYWNrTmFtZT0iU3ViY2xpcCBNYXJrZXJzIgogICAgICB4bXBETTp0cmFja1R5cGU9IkluT3V0IgogICAgICB4bXBETTpmcmFtZVJhdGU9ImY0ODAwMCIvPgogICAgPC9yZGY6QmFnPgogICA8L3htcERNOlRyYWNrcz4KICAgPGlYTUw6dHJhY2tMaXN0PgogICAgPHJkZjpCYWc+CiAgICAgPHJkZjpsaQogICAgICBpWE1MOmNoYW5uZWxJbmRleD0iMSIKICAgICAgaVhNTDppbnRlcmxlYXZlSW5kZXg9IjEiCiAgICAgIGlYTUw6ZnVuY3Rpb249IkwtTUlYIi8+CiAgICAgPHJkZjpsaQogICAgICBpWE1MOmNoYW5uZWxJbmRleD0iMiIKICAgICAgaVhNTDppbnRlcmxlYXZlSW5kZXg9IjIiCiAgICAgIGlYTUw6ZnVuY3Rpb249IlItTUlYIi8+CiAgICA8L3JkZjpCYWc+CiAgIDwvaVhNTDp0cmFja0xpc3Q+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmEwYTI2ZTdlLWM2YmYtZmM0NS1hYTNiLTMzMGI2NTNjN2U5MSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMi0xMS0xMFQxOToyOToxNCswODowMCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgQXVkaXRpb24gMjIuMSAoV2luZG93cykiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii9tZXRhZGF0YSIvPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDowNWI5NDA0MC0yZmEyLWVkNGYtOTY3NC1iZWVjZTI4YzQ0YzEiCiAgICAgIHN0RXZ0OndoZW49IjIwMjItMTEtMTBUMTk6Mjk6MTQrMDg6MDAiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIEF1ZGl0aW9uIDIyLjEgKFdpbmRvd3MpIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIi8+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmYzZGYwYTlhLWEwYzQtZDU0YS05MzM3LWM2NWY1NDhlZmM3NyIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMi0xMS0xMFQxOTozMTowNSswODowMCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgQXVkaXRpb24gMjIuMSAoV2luZG93cykiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii9tZXRhZGF0YSIvPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo2ODdmMWU1MS0wOWNkLTJkNDItYjEwNS0xZGUzYmQ0N2I0NDciCiAgICAgIHN0RXZ0OndoZW49IjIwMjItMTEtMTBUMTk6MzE6MDUrMDg6MDAiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIEF1ZGl0aW9uIDIyLjEgKFdpbmRvd3MpIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIi8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICAgPHhtcE1NOkRlcml2ZWRGcm9tCiAgICBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmEwYTI2ZTdlLWM2YmYtZmM0NS1hYTNiLTMzMGI2NTNjN2U5MSIKICAgIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6YTBhMjZlN2UtYzZiZi1mYzQ1LWFhM2ItMzMwYjY1M2M3ZTkxIgogICAgc3RSZWY6b3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmEwYTI2ZTdlLWM2YmYtZmM0NS1hYTNiLTMzMGI2NTNjN2U5MSIvPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//u0QAAAAhcTy3npYcxHonlfPS85jJhdI433iQnDDOPxrnEgeGdRESEQAABJTpNcORTOBbz4SAkLqKk4UVNw8IT/WHRLKRRJkL83Kg8jMD5UdX//////yk+GTn9TqTgRCzv6nUnKky7IYCAiIAAAEpyBtp4sBvnGiFl4xiMHAiBtTP6hnqdMHiS8/4ysrtjOwvpDxMz8cQO9n///////zj/t31FxATCxMMB85QTchzRzOZ8gAG19kQmZQuHvdx8VMZMGAYAdRd5foHBIYYsmd/02CnKlisa+0HEbDBQEDBwbjTyCDhRNjHNETBo/Nejky6EDFgLLACMCAIAAYFARBcLGI6hjDbIJX8y3KHGlphyqxoHTiRiUTQAA7Cwg4LNq5As4+14mGRZlq7VGgIBTG2AO5AAwiVhkCyR9F7LCITTIYRNXUo6YhDT7XMyoA9hfANCjD4OLsvqpWo0huKl461kDvopBQSHgoKgcYFwQeTQ7JNYlVW4u41stwtympBPDCv//lLQEsQAAFQoAAFqpOwtkAuiQARQqARQCpIJLoQAI2kOZkuTbkyUNxkaZRg7BfCTPSKQE2BMBBgcZIDFLPAKB5DwCCCPLsmOeeKZEwMMgsKC8oFxAph7YnZA1Uo8r3pKSVf/////mJbfy713olTDYAGKExgbqKgaCE29WAyQY0FJqGEoKmojCzBxUCgJz4LBpZNH9L8CwAAXDYGO12K3DL4GGTuFmxZ4GAwoHnTXJiZk+AUFwoIzAnCcIiKTA//u0QFkAAugwzu1qoARtBgpdrdQAkVEhS1j6ABIPo+orMUACyoHg2wLHBQgYwE4HkV7JU69f////+UiRQ/GFUFTWqkdoDYA4hmCb5JYQt8PWzELYzN0SLYstTgNApDhUB1AkeBSUHZJ0CWIkCDA4koxFCjEOjpExJUoiqOmlsMwGQwbxnGLIFXoDG8knoeAYUAzwIDhKAFhoGZAgZsSSgGFNg0FkcBljABUf9Aly+KUI8idIZInReAZAAerf+3////T/yYHMZX9VVVUlCKx34SACPJq4smgJdMCsph1uD2tJMwMQaXRIDMlQKGzMPlNwIEgFF5EimCkdI8BKEorhg0TEGgIdItoQDCYIiEIwESk6+GFS4XFwveBRIBKAeP/h7YX3AyIETcHSCdDMAQUAUCRAwYECQT9zRBN9ZOudP9v6f9/1f/pq/lAVYGVGeFdSSQksYClHEI3BcR3uyxKu0MpHjMIISQGavM6SGb6MyaC3Q4hCYAFYOoLQgssEbl1Bg8hPJFEBQYAoNFwl1A6GoAYIKHImpmMoBgCwzxBknmPrRNTEqgDMieNkkjIiwhMBkQZeJ5J+klUQICpEZUiKLf////9IyNi6Bh0YeqTprG7s7U2QAhQIkgFdpGornfdCzMuSDhQsOsR9jgTLehBrawETpqFvxYDkgDFUDcgBgBBcMDgaOaSxOiEpEkibBCFDNFRkQIPaBEJiBGzCzgag8gJOotT+pImieAaDJqiyKJiagSCBqi3/Kj//////1JkO//u0QHqABB1BVH9igAR2aBpt7NQAzP0FU+xma5HToGo9nNFzAcDw8+ZmVnlWhEkJLGAqII4MBpSxhQZCqRF5U2UVkObPDiRnd609KpgsG4zXRntIGFGGGvbHLtHYzggQiRfLHvw8JXRatIDTVNul+tIXQEwE6kutASMDCBA8/9A6EBjf/////9aimeAyDDSzzqqNEPDEkpKg4EqL1NLLsh5kZIiZotwBjWYFQsw+ETw55QFgSTsCvcXt67pzhlGqJQgIRpp4KlTPKP5SOiojWaa7Sg0gohcmgOsAE0glzT+sSMCSccRVSWopg0CAQCpkuz/zodM3/////9IjRZoGQfAWNE6E9GRGaGdzNskoUCXChpcWhGVv+XSnWYoXIMBiR1gw6C9VFTu1YgBBuDI2VlCW8hGkGpfnuls4SUDBwNe/dxhIkRS0RqgaCASauXf0zQOTAwZUvI9w4kBq6RMnUv7sHDKj//////0SNBqeEbA3////////////////////////////////qytDqyCURJQoD0oWrJVTPpR1BbVmQ0JBOkszsUAm7POBhRwmlkif9AwsyUFlL6Lqavhan2dWMK5ihUv1/8bGUI7dIRiBop5Tdqi/+gUxKASLEz7B0QEoxIl5H/WKVb/////9SZQJ8DBjBJB2su92UcAUGAckCiGUoNtkgcFILsoRxZuAk0tHAOMGL0xaC5VBDd2QyCPECpezXgEbXtIpb8e+4xsSAqenb9ibSMDlsRuRgGDRlRPp//u0QJ0ABBlAUnsZouZriAo/Y1RczukFQ6zqi5G/IGi1rNFzf0xwgEhhbzXUUwaAACSYtBCnn2WpIoiEQXMCBy07f////9SZGCxA40Cwg+20u92TaJUGAghCQjieVkgsrMiJPtjURj6PSgp/Il6Yed2Fv01kZNsOEAOCiJ1EEqMf3bLw81wSGhX/vRUBLecRQIUDQyBpI8w/WwjoDECScKyKSzAEIMAUAQ0ln/onAGAxu3/////8pDlAgSgoJNhYjm2dzThKgoHUmSGADCBQhcjES0oQC7qABKcgIPCGBpbQSqGqJiinC5DxHQtl5UEkW9dgnm4YBRi9ZPeymSqkRFs8mo7wME2HWaJtNfqWRgtwGOEgsBNtZQFnAAGBsmX91i6Dpx6X/////+yRYEFRYf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////jculqjIKgoGCUdYbYXFWKRFvp2kR0mWnjlge63aPxjsKgMYD4wA55C2iX5goIInLhzKkv3HxMwPv95m7JNDCTYvBqIADUYB9F5D/0iNGiGWgvcikikZgkRFyCNh2pfrOEaDgpEUP/////1JkVE8kVQWje2UqThKggFsISMfMvCEBuGhsnUvFFhEdAajscIkijNitnXRcbNPCTMYrlUWcx1//u0QMAABvxAT+s5ouRxSBndYzRczMkBO6zmi5GToCc1jVFym9XNt2AR0il1XK8IRCYdmKjMqgmjEaFtnY2/uJtAsiKh56jMTYAEhHEm39RTAeCX//////5Nno3bXKmkUoIBkjitNDdWUvaJRXeODTyQYZyhOAZOD4rhjXiQwDzvI8C0F8wQHZrdiXMv+sQhIH7vVCQAjGBY0iTIhMBqIQbUVXxyF/kyM8HADeS2hfkBRSfKqv7nBY7f/////8oOVquVpFSNuKLqKkkxCT+gsyhZWdCG3LMvxM2pycl8MOmnoBpKUyiSLFiURhplMcjskh7nccqFjACM6b1R5mLCGbwifpK+Gt63lvKq0ZIV7KGpMzUMiMgkZ+p2/Yt2JfSSunlEBsRnaarWxs5WbVm/ev2MAwMDAymmCEhQtVVWIGBhaummmCDKqqqLJC1VNNNIULVVVWWDKq6f//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9tJtOAwFy2SpUrx4nEfB5pRbVC4Y26Kg0DA14MLaMkckaj01lTIGRGqq+a7lvLGXUUPvwwORYU8xH1tJrVoLYyWFA9SCrOndh6Wve60JkVFR3rVt/EJLMHTgiDYKjs2hJicSiMqlMqjMunYrPRW/RW//u0QMAACIAyS1H4wtKlhymNPxhaRFCTFwGgSUkPDqMkkb0h5ynpKSnpK9SvUu3K1WtVrY5WbVq9fvX7AYHgYHTTlGBhaiyyy0Ommmiq//rSyy7qaaaqv/WlFRWCAMDS9YKCBOnyxIwY8TClCCGBILp9E+qf///ymKFhiemqmrlAADB9ReE4WsWDgAsYUAghYoKCcjurQpYk8WM9Yly2tkOBmz1PF1KE7E+rGNsa10vr7BHiLBNv2DVS/2mi//yk//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////u0QMAAD/wAS4AAAAgcgAlwAAABAAABLgAAACAAACXAAAAE////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVEFHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",P="data:audio/mpeg;base64,SUQzAwAAAAA5PlBSSVYAABS0AABYTVAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuNGQyZjU5NywgMjAyMS8wOS8wMS0yMDo1MToyMiAgICAgICAgIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcERNPSJodHRwOi8vbnMuYWRvYmUuY29tL3htcC8xLjAvRHluYW1pY01lZGlhLyIKICAgIHhtbG5zOmJleHQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20vYndmL2JleHQvMS4wLyIKICAgIHhtbG5zOmlYTUw9Imh0dHA6Ly9ucy5hZG9iZS5jb20vaXhtbC8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgIHhtcERNOnByb2plY3ROYW1lPSJ1aV9tZW51X2JhZ3BhZ2UiCiAgIGJleHQ6b3JpZ2luYXRpb25EYXRlPSIyMDE5LTAzLTEzIgogICBiZXh0Om9yaWdpbmF0aW9uVGltZT0iMTI6MTQ6MTQiCiAgIGJleHQ6dW1pZD0iMkQ4NzQzM0MzNEMxNERGRkJCNURBNTZFNkU1RjVFQjYiCiAgIGJleHQ6dGltZVJlZmVyZW5jZT0iMTA1Nzc3NiIKICAgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMi0xMS0xMFQxOTozMjo1NyswODowMCIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjItMTEtMTBUMTk6MzI6NTcrMDg6MDAiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTUzZjM3YTMtODA1Yi05NzQ0LWI4NjQtZDAwZTM0NTY2YjU5IgogICB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA1OGM1NzU1LWQxYjAtNTc0MS1iMWQ4LTdkZjNiNjkyOWYzMSIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjMzMmJjNTJkLTJkZDctZGE0MS05YmFiLTNkZmRjNzFjNGE3ZCIKICAgZGM6Zm9ybWF0PSJhdWRpby9tcGVnIj4KICAgPHhtcERNOlRyYWNrcz4KICAgIDxyZGY6QmFnPgogICAgIDxyZGY6bGkKICAgICAgeG1wRE06dHJhY2tOYW1lPSJDdWVQb2ludCBNYXJrZXJzIgogICAgICB4bXBETTp0cmFja1R5cGU9IkN1ZSIKICAgICAgeG1wRE06ZnJhbWVSYXRlPSJmNDgwMDAiLz4KICAgICA8cmRmOmxpCiAgICAgIHhtcERNOnRyYWNrTmFtZT0iQ0QgVHJhY2sgTWFya2VycyIKICAgICAgeG1wRE06dHJhY2tUeXBlPSJUcmFjayIKICAgICAgeG1wRE06ZnJhbWVSYXRlPSJmNDgwMDAiLz4KICAgICA8cmRmOmxpCiAgICAgIHhtcERNOnRyYWNrTmFtZT0iU3ViY2xpcCBNYXJrZXJzIgogICAgICB4bXBETTp0cmFja1R5cGU9IkluT3V0IgogICAgICB4bXBETTpmcmFtZVJhdGU9ImY0ODAwMCIvPgogICAgPC9yZGY6QmFnPgogICA8L3htcERNOlRyYWNrcz4KICAgPGlYTUw6dHJhY2tMaXN0PgogICAgPHJkZjpCYWc+CiAgICAgPHJkZjpsaQogICAgICBpWE1MOmNoYW5uZWxJbmRleD0iMSIKICAgICAgaVhNTDppbnRlcmxlYXZlSW5kZXg9IjEiCiAgICAgIGlYTUw6ZnVuY3Rpb249IkwtTUlYIi8+CiAgICAgPHJkZjpsaQogICAgICBpWE1MOmNoYW5uZWxJbmRleD0iMiIKICAgICAgaVhNTDppbnRlcmxlYXZlSW5kZXg9IjIiCiAgICAgIGlYTUw6ZnVuY3Rpb249IlItTUlYIi8+CiAgICA8L3JkZjpCYWc+CiAgIDwvaVhNTDp0cmFja0xpc3Q+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzMmJjNTJkLTJkZDctZGE0MS05YmFiLTNkZmRjNzFjNGE3ZCIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMi0xMS0xMFQxOToyOTo1NSswODowMCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgQXVkaXRpb24gMjIuMSAoV2luZG93cykiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii9tZXRhZGF0YSIvPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDowNThjNTc1NS1kMWIwLTU3NDEtYjFkOC03ZGYzYjY5MjlmMzEiCiAgICAgIHN0RXZ0OndoZW49IjIwMjItMTEtMTBUMTk6Mjk6NTUrMDg6MDAiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIEF1ZGl0aW9uIDIyLjEgKFdpbmRvd3MpIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIi8+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjljYzQxM2YzLTk0ZDQtMDQ0My1hMmU2LWY0N2RlMjVjNjQyNyIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMi0xMS0xMFQxOTozMjo1NyswODowMCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgQXVkaXRpb24gMjIuMSAoV2luZG93cykiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii9tZXRhZGF0YSIvPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTNmMzdhMy04MDViLTk3NDQtYjg2NC1kMDBlMzQ1NjZiNTkiCiAgICAgIHN0RXZ0OndoZW49IjIwMjItMTEtMTBUMTk6MzI6NTcrMDg6MDAiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIEF1ZGl0aW9uIDIyLjEgKFdpbmRvd3MpIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIi8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICAgPHhtcE1NOkRlcml2ZWRGcm9tCiAgICBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzMmJjNTJkLTJkZDctZGE0MS05YmFiLTNkZmRjNzFjNGE3ZCIKICAgIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzMyYmM1MmQtMmRkNy1kYTQxLTliYWItM2RmZGM3MWM0YTdkIgogICAgc3RSZWY6b3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjMzMmJjNTJkLTJkZDctZGE0MS05YmFiLTNkZmRjNzFjNGE3ZCIvPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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2ljBmGYN0r18ZyPPFPtUb5hz0ZKoOUSU//u0YJKABnhgy8sZy3g2SilSAjJsGcWBLaw/LYjxqGacCEm0eoOZRH8tyKtt3Vr0fq5VJeUIAUAPYXAuxilvOQQdEnKyQxyiwJY+9yKJ4Q03GoVRSYx6gcTCpBTSrKgtRarO14zKYzO0W7VNaaM7z/RqPNygWrV5Vx1nnZ5yrVq2asCZWssssrlNfq41ccatXGltU0atRpDss7VqrjzDX/q92KZ/t+Ydp4rA0eemGqB9ip0HLfOwK1+7OyHU7Lf12p/5WLMl3uxGeVumAJX7dZ07YCG3GgAV//+yKiHiewrlZJ0i8kPtmWyT0mdMxUs1BNAXs2WmOcfqs3+r/Mj//////////6l6nuZnmM/+XEU7I251yAs0U0EMBEY1izBUxPRaemoq0yMNRS6f9YB2p5ZMHad9t4Jg16cH/h6P5xNsg6tkjAoo/0ahclRWXrPRrOVyeDmqKvXg8THE1X+2lqJtlCJ0DO/bntTFTmM1nZ5vHWrnJuklvKlfU5z9cw3Xr7z7h/d6pcsv/Pvdd33XP7/473+9KpT2GGdffc8LH3q9Xk7aiUukceoIMl8FRllgN+ncHriVenjVeny1lnVpcanNVLeVu/cr2YMAo8Ssyz6L8AgECRyMBL+/9//9SCRqOQBZCrF4epxM2TH503d6qk0zdNNIvATIvsVTR2a1rf/1lk//////////9qnqesss7/8oAm2403ZGk5ESDZCMqQcU6lQ05VczRoTEcyYyxl3XpVGr+NbsRf2XZ47xyrV4//u0YJiABhZgyuM4y3pBKhl6BbJsF+mBJafjDYi5ECRYALEgdFAmhYCSgBTFWKxFnLWX+p4Zf1rKpWI0VqtGn2d6ncFUsJ7Knah61l+su/lTU1Nayyyx/eP/rLv/+OP/vHL8ef//rn///z9Y44/l+su/vHGlsRqey1lWprWVbuOX6y3Swy1ldrWmHMutwCW5VAYTF6nZiDEnKcprzvU1rmsqa1ll3VWlpaW9TOkmM+b/Q9figoKAn7UE+L/zOWs9a3l0Gp2AKFLvW1a7MzOWta1azlisFRdEV5pVH/Kv/////drDQP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////u0QK2AD7gAS4AAAAgAAAlwAAABAAABLgAAACAAACXAAAAE////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVEFHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",_="data:audio/mpeg;base64,SUQzBAAAAAAAI1RTU0UAAAAPAAADTGF2ZjU4LjY1LjEwMQAAAAAAAAAAAAAA//tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASW5mbwAAAA8AAAA9AAA/RAAIDAwQFBQYGBwhISUlKS0tMTE1OTk9QkJGRkpOTlJSVlpaXl5jZ2drb29zc3d7e4CAhIiIjIyQlJSYmJyhoaWpqa2tsbW1ubm9wsLGxsrOztLW1tra3uPj5+fr7+/z8/f7+/8AAAAATGF2YzU4LjExAAAAAAAAAAAAAAAAJAXAAAAAAAAAP0S8fql/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//tgZAAP8AAAaQAAAAgAAA0gAAABAAABpAAAACAAADSAAAAETEFNRTMuMTAwVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVTEFNRTMuMTAwVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV//tiZHCP8AAAaQAAAAgAAA0gAAABAAABpAAAACAAADSAAAAEVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVTEFNRTMuMTAwVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVf/7YGSPD/AAAGkAAAAIAAANIAAAAQAAAaQAAAAgAAA0gAAABFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV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NK8v8tV4kSvHeLB1ebqsPh2fKvVzpWHC6Pp01u1Zz6ON33XVjU1uVKCzzN1HkNlKkkmIoCV6NbYq7ZZlVBH5TKBV4rCAYNFmXFqTAuDouhwEMhRoAWiEmGcClEGAckQCmK5UpkFKMWsitOVUCTFibkKJ6mlILku1wttBbkKXaFEhMU5gSJo16RXCcJqBosTCpGeNAKGTgIh4XBEESf/7YmToAPOPOsHLLxVQAAANIAAAAQ3wwP4MafIAAAA0gAAABGmhZZum+llMQU1FMy4xMDBVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUCARMgAACCFjMrWRyaw1aOg7KIUiIHQdEBOYHI/rWGRkf/kygo6GRrLfzVrIZGTLAdEoiVW0xBTUUzLjEwMFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVX/+2Bk6A/zuzE+Axt8gAAADSAAAAEPrMD2DT00yAAANIAAAARVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVX/+2BkqY/xqCk2OGkcEgAADSAAAAEAAAGkAAAAIAAANIAAAARVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVU=",$="data:audio/mpeg;base64,SUQzAwAAAAAxJVBSSVYAABCbAABYTVAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuYjBmOGJlOSwgMjAyMS8xMi8wOC0xOToxMToyMiAgICAgICAgIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcERNPSJodHRwOi8vbnMuYWRvYmUuY29tL3htcC8xLjAvRHluYW1pY01lZGlhLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDIzLTA3LTE4VDE5OjQ2OjUxKzA4OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyMy0wNy0xOFQxOTo0Njo1MSswODowMCIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpiYTc3NjlkYy1jYjkxLWJkNDgtYjRkMy0zYzk0MmM1NDg1OGQiCiAgIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6YmE3NzY5ZGMtY2I5MS1iZDQ4LWI0ZDMtM2M5NDJjNTQ4NThkIgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6NDk0OGI3YmItZmY1YS0yODRkLTgwY2YtMjFkMTJjZjExY2RiIgogICBkYzpmb3JtYXQ9ImF1ZGlvL21wZWciPgogICA8eG1wRE06VHJhY2tzPgogICAgPHJkZjpCYWc+CiAgICAgPHJkZjpsaQogICAgICB4bXBETTp0cmFja05hbWU9IkN1ZVBvaW50IE1hcmtlcnMiCiAgICAgIHhtcERNOnRyYWNrVHlwZT0iQ3VlIgogICAgICB4bXBETTpmcmFtZVJhdGU9ImY0ODAwMCIvPgogICAgIDxyZGY6bGkKICAgICAgeG1wRE06dHJhY2tOYW1lPSJDRCBUcmFjayBNYXJrZXJzIgogICAgICB4bXBETTp0cmFja1R5cGU9IlRyYWNrIgogICAgICB4bXBETTpmcmFtZVJhdGU9ImY0ODAwMCIvPgogICAgIDxyZGY6bGkKICAgICAgeG1wRE06dHJhY2tOYW1lPSJTdWJjbGlwIE1hcmtlcnMiCiAgICAgIHhtcERNOnRyYWNrVHlwZT0iSW5PdXQiCiAgICAgIHhtcERNOmZyYW1lUmF0ZT0iZjQ4MDAwIi8+CiAgICA8L3JkZjpCYWc+CiAgIDwveG1wRE06VHJhY2tzPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo0OTQ4YjdiYi1mZjVhLTI4NGQtODBjZi0yMWQxMmNmMTFjZGIiCiAgICAgIHN0RXZ0OndoZW49IjIwMjMtMDctMThUMTk6NDY6NTErMDg6MDAiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIEF1ZGl0aW9uIDIzLjMgKFdpbmRvd3MpIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvbWV0YWRhdGEiLz4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YmE3NzY5ZGMtY2I5MS1iZDQ4LWI0ZDMtM2M5NDJjNTQ4NThkIgogICAgICBzdEV2dDp3aGVuPSIyMDIzLTA3LTE4VDE5OjQ2OjUxKzA4OjAwIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBBdWRpdGlvbiAyMy4zIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6Y2hhbmdlZD0iLyIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgIDx4bXBNTTpEZXJpdmVkRnJvbQogICAgc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0OTQ4YjdiYi1mZjVhLTI4NGQtODBjZi0yMWQxMmNmMTFjZGIiCiAgICBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjQ5NDhiN2JiLWZmNWEtMjg0ZC04MGNmLTIxZDEyY2YxMWNkYiIKICAgIHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0OTQ4YjdiYi1mZjVhLTI4NGQtODBjZi0yMWQxMmNmMTFjZGIiLz4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7tGAAAAWeUjzjGGNgAAAJcAAAARZBSRsnve2IAAAlwAAABHI3JG3/XSu+mQXJAYzFALDSiU83y4wMARjS6MQB1I041EVTR8YyuJpk+/Ct7Ml6LkhDhtPZA2ZncqpYy19ujeMPhqDpdIXkd90IBeZxHDgpAJiHH3rCuVh8BoUzcwQ1RMTn6dWsrA6I4oH0GAllxaTy4ag3aEtcDQeQZiAtP2Hon1hXLxNIw+Ewzapt8prjbxgnecvTKbfHG43LU38mZn6b9NzffpM7lbdFc4KqQFr+KgQkOqZVWVZUmSCwJIytqHp4mgCQoYTxcGQShZXBY12Zafcl801XOtqybQwwB2I2EACCQnhPDwT8aXdmdvOtuLYqEMix0+o9t5b0e8YIs23At7SyXVkSjW562uw1Zrsj8/wj4YZ5m4oTTZls5HBgOi5+Kh+pzTVbU4s7+SkZ05px4cixDjw1fCmY1w6f3y/xSksfDxnYHT+BLZWOGt63q8OPi8eBV/JNfcOPIfwSIHiP6WEHsli0BLEAAI8RAABgWWEREREpr/89ygG4jj9J+p0tKuFaqlItwTTViGKNRq/bOf51kvbi5lAHQnGVRohOI2S0U//WNSNn3Ux0HIqHhyMR0K/rtVeRcpRgJweDYf75saz8cYbMQQTQTQ/QBOCsP8TwYhgEsTpIFQc4masKAeCcEkOk/gv0EMASQWA6GSzwsjUeoexk7Ot4f5wMavLephZCGMb5bNBDHGA1qRWH4j513eMnFY3oeqKXOf/7tGBWAAaUYE3x73tiAAAJcAAAAR6lf0Hn4w2AAAAlwAAABBQIYdEqvVF0/GNBtUbetq+m76Y38Z45QYeo8Cmrz53PW+raxqP1qKcRAiEBKbSScLEPsvRMS3JipvLkI+qjgAJwFAuDlCAxsIgPfeB5bFLlO1t7mGMMlNy++T7N5J33bAylY793qjdAEASHMKDuc3qt4GPEIeUHZOnwhOLWAgS/G0Ym8crl8biUgf965nF259YjKJxE9/lXqcLzTjLsJtqBtGSWDENNehrbLoZZE1xJFVzGkgUG2yPlMw0qSWxt2Yk68EP/B2b71JBORvOfoYTKpRDl2p8qiV3O5SRuUMrkcEQdEI7NUEpldelrtbcG9Xo6bO3aiFa3FJ6nh+nxed7JfY7HpTnYpJZdpsM43J8sLGBw+J3xxCQofIdAqJRBEAIlWRc8CQoUQMzjJbDuWWdPt+1UmlG0m+1m2p08mVhxJmmz+eHDlDT/VKUNM7zHVul5XwkBBRD84zQW0a2GU0C8JEBjJkdZNWM92ljRRBEIOhKjvwHGggQg0i8DZCXkvwXWMeqnLeOstgdA7k+N9BsCTV6oOtifFxU6wrzQZ3zbQ7GR40vjSh0NBmY4EKM9nUq1AeLpfjoyVcoJyfGgh7Yq1Vp/lNRICuViaguDajpFG9e4fxotp3TM86vmkZJoLArYagYW9fhXW2FdavTED3oa5eqacyEhAiSSSclWiBibmQXNU4TR0p9D3NwQ9yNMvK4fl1PwO44S5AtFW//7tGCAAAa4YNPx73t4AAAJcAAAAR3pgU/nvw2IAAAlwAAABFpMvRCW41jLMc7EYrjLIWBHISUA3ClRQRsM8F+AthqgNVCxY7yyDjN3m7jq1nqDsbk8EsmpFcKvU0iLUFgJGoZeZQ6bO4CZw0NcsIam5DfyKleqdpGUK2w7KmsUzxVmgQ0+rfyuLN7czlDZ2Y2YTDcug+D4qyiFSikh1/HMeKheqLVmuPPL5WwBhEOv/Bthmssi75zOMv5O5xN1NOlchyksUUxdpZbKLNJZmYfyz3O2cZzCmtw/KtQLUjeNeE435dPd5Xl14gCXdBIxESZJTkubRXCXmgfKFJVOHG1EQLYfpPyfIcfpel9PWxxy4OdJlrnINRyQInJaAgiKDOQia/3KpKlGm4XcTofKmcvbIZC/LNioYvAlq1CB2VNGW00tHOJN/K0iHleJYSHZZAbO2tPQ/9ZTmpMqXMAbo0d02Gg4cqfRnL2S1fy/ZY06LsiaE4jWIXXgSKu3amIfnsog8TpNBc3UjsUcch9z5uR184hLH/V288WV3NRZjE/BjFKz7unHV/vq7jSqr+2XfiEMyqA5I6EghUOSGWapaPlJVuRixUnZmLuDalkUjuMD2bndRm/nGrcwYM7i5XSaJJKSbUjkcjbUcjkCKZuk3d9GCoPgmpdEQMZg3A85GnKFF/ayy1A1C2wl3X1a4iQREYXDiwCs+BAemWMhsAmZCwQ5jBIaYaoCzBQRLRAVHRZgONqTeSMzURMyTDFC00M+Mv/7tGCqgAeLYFT9PwAAAAAJcKAAAS1J6VW5jYAAAAAlwwAAAGITXnkxVmFRQwkGTGEQKVR1BAIxYwRaNmChIhEAwa+QG/vhgY2aAEhgsnsIQsoCRoCEjUHCZQAmNIxgwEQFRWJAYAEAYYwPDgYLDZaJIMGlxggOCgVXhVCC8Q8AKrNiXyEAAcFzLswqVw6j2+MYgu/Sue2KH4H1Km9gi9COmFhIcPF+CIRXY+ZdwvAjWn8+7gq+T6jbtQwyJlKgLlu87D8vtSw7J9SsOEDCwdH9e6/Vzq7RMLYL0gd/IEYzXdFgLdmJMOsQ016M2aaITM/H5Rfn/tWe3/qUmFSGIpF8rFPbz3T27G7cssfUpLFvv////6rRKreyqy2l/Grl3HK1lqtTYuEp3oi4mEMRERESSSpJUKIETo2VaUcVKqijGpRwsCdPVkJybh4KhzhrkyDwV4sDkaikOZgLCb5jlxQ0uJvD0pBnBqjBD0hpOpUyLgXEcgLRPmeaKiHrXCFANKFFIrCkEiJgdykLEnD3Jghx/tcRQOJgFRCKtDRwpoiEu9mOYuSuLtAULUX85ls1kKH+OJXuJyps6DheGCi7v2hFD6OxjL0it1MhcwDfeUwpzpYzpXC4UT1YTSdVzUkE64oamoKrxGZJGCS2oGqwnFmft8WVsRc7VHTy/qk0b2h41Su86nt0VBIiESSSnLSWi3LogrEW1UnSxLtD25Pt57o+qmibbcnWIx+G6zR39fCVuZTuy5LwKMs/UTUya7KYnf/7tGCKgAbMYFT/PeAAAAAJcOAAAR2Je1Hn4w2IAAAlwAAABCXlmNJgFbLcyoNrrQYAZCSEThXqwdY7bN1g+LM0f55m0fFERrF1/YRTz9JC2QpgyGUt7G4AeNDKVN41erNNbaBYdmYceWNfeuCHrZBIbLAm7Q5MRrdNIKGB4OfmKNwZW6MARh3IrGIpYbrD0pXUzWGHJk76w877yw3KJC97K2UPvRsgmaZ9pUteGKaQx+XRydlE7DDZX6gKOUsMxaFQ7KZQ7Wpul+e7S28ZZyrSW+MU6KllMjIhIokElQDIFAIBQIoERxIIfh8PYkmQlCGzBrcMNHUxRTjWbdkcYEqsso2xMsp3YWNBimy8FSo7sYTQIjKYF4mHMwnnZgJqDgS9l6ZEyIUJ+PEeJ2lwRZ1KQbIpZYCwD+do4b0R02NME5kohLE1r5woaizHFKJ2ZBCTpH4cphi/Q82C4lxQbkoEcdZbUPRiMaTVHkgD8OByO2iKElKMtiBFvhkOGUpiBEmMB8U6V0fJ5px4qh+i+RrirDBOdaTh5t75dwmqZvVyhjtB2IWxu5kOKM0zFONygpZQ3b2ZubXBU2eP8vKQ21630f/X////////////////////////////////////9WmiSSSUnLT/H6uB2KIsaMXwYrfAjtZ4MiOPUzw5yWIBFigJ6EiA0mEuxMD/LCPSdAuBYVWi1lFEDQgvRGQqScF5dm22DQC+LFLaR3W+q5tW9iDN4LYlDhahTYeY67Cm4v/7tGC1gAhPYFR5mHtoAAAJcAAAAR+ZgUmnvw2AAAAlwAAABNbTMpqVjdeHW5O+9SgryS1Xad4QFqc7GW7r2fZhCq7op0sOZmowpq6zY3dWozKtdhxtYESpdmTPq51lhtdv37U6JgQm03ONPS9zxs/ijOlyyldUqb+xLWoPQzhDaKqoQ24dt556M0N6DaleQptSdncOONE1sN8+qw1d040pVK5TOwO/cDUOdM78Ve6TRS3V3nOU11a6jdAi3MtVWLq00SUkkk5aTAdaGj6by/qk8z4B8pAbhYlYAbMKsHKPUPBYEMNxVrRK3iSNU0TPOYQpRBhj0keImQw5xMVS5A0BfGgURDzHJgpj+DHh0hCzR4F4L3fZGp+2qI1S0ZGiqsRijTIIgGhaUrl3Jprz/Q1crqVPM10Qgijlvo0CYhMqs2qaQQ02BvYEabQuuoQ0psTD3fi8vdV5VgqZtmGP6y2BXljCiiCZueL+MMd2bUZeOI00YfeHIlW3TOinTTu81du1CyNrcSgtuMDwy9N9atIxB7KNP2GoFc5flmSwdHY1DDixbT3PhSVJXKIhDlJQcr7pKes9SUC9sxpR1f////////////////////////////////////////////////fEiSSQUSnLkLLInJ8tBdZ00rl80LKhzFkLYSkv4kzCBWOgcqHCrURWIw9S9zMhOw7nxfRmC4CcEbRiBG4jC5hUCuEgOpYL+okE/6goVI7rW9rFTVbrgtcaGrbYhqsp9f/7tGDAAAkDYFHp78NgAAAJcAAAAR91gUenvw2AAAAlwAAABCt7pdOyeG30gFJVe6MsggpRxrTCVH39XvLH0bO11r04wiGWDTSka8nfmD4o/dBNtkvUylbupFULSXAjELjTYYQsmagZiLxxnJlUscaUQ5CL6m821CYciYXVJGZvVHW7OzGWLxCAIGu5PVcfegdSTtbl9d0oYduB41AEbdCH4KxgdrDXo5ylpnje2bt2LEmfRmbnFQslx0wiiZahC79ESSSSCU5aURbTxFyTZip1FEyZqptfZyoOQfA7CDCvAckwOAmB/BkH8X4uyvLAVRoGWgzfFryBJhWBkGiSUBXBhMFJUVDdiZIAGSW42juLyfCIQo1CRp1CgRRfSGKwfrdLCVMFpUzwZ4+TpJwjTpSJ0gxidnEhI5jTR6mV4pQlglivJwdCbY1kuItyOQsxDhblGzBIFFOHdCXcaEWARUs1tXKZWpE6FH3xejmPc6zfKNWktZxynEYalSBBkLQ84GWqIWWRtLNWrZ0DhLGiaqZwXDyAztMHUFWqU8I7SpVlkU7i3Ob+sVNyy7Ik2Wb+6zP5em1//////////////////////////////////////////////////IkSSQCASk5ThJkihcECcKfOZBSHU3GklkUiFDK/2ZMOYin4mXAEqqNHmmfs2ZSwth6c8OqUxeThBX+dGkS8RTVhfuQOGqyVRFSDjrpYXD6AyiTgYGhg1uCxANy1LoRL05X+ajIFlP/7tGDAAAjNYFFp73tiAAAJcAAAASBJgUGn4w2IAAAlwAAABOtAqlzel+X3UaaPDDiKZwOnNdSyky+GtK1TLYI23BwGZzLVG7yl/YcjbXn2sN61WUq8iS92KrncZ3lVHYbtDcENWXRI3VeaQXnboaaCI2vuKOPLGIwFJ2btwciKO9NKYV6KUuFBsueCld5mMOzUonom87ApDNTjsNbU6j7YmtyqF0FHHYg5cQj0FRGtNvbVjepODSn/X5KZ37hMVnWyASQAAU3KO4wSXkIU5c+f5yJRDC8JEmZ5mkMYMopH5dDSNAtpbhORimoFebh3RhMCEHIqwjBekkdR2j2FJLGS88i7h1FzJ1cJMebkjhwCjEbEMQI4DKDhK4cKEgpAuX6fJeGkYAVIP0NWtkyCPDcIcCiLkPoHwK+O5jDlSq6NE1CVljUhBR1kmYo4mhiLpPAFwz0a3rDAdiSLgQkdJ8uBbyXIc9NzaChwY6IZj9VinTh2HQWwg7Y3q5PHu2HoWx6TMdjcjWKRkNeCwGgdw+4TDizkWBOHOqUUjo5pq1L5YmuZcNz46zpiIuIuVQ3Oo4cKVvSixDtH///////////////////////////////////////////////9sZTJKBICUtYBXEmNwnrGXwWcvTKaYEJEsKsWs+kCRlaD/s3XgsxOBQ9obL2HM7VE7stY6qiytMoBEEAFSF1AQhHUHbfVVJXylZfyNJ1LTW+8jImwo12nEHBNrMOaqAICgvHWtP/7tGDAAAjdYE/p73tgAAAJcAAAASANgUGn4w2AAAAlwAAABOrC40+dWB3LkrDpMv5hS8H8hqVQhINy1iP64k07riOokannJmNNcftlbxv23OMTr9OI4LW2nIHv0ozLGuV2Iputnf2kf53oBlzX4627lNBm3HkDUYEcZ6n7V+1Feb/LtonhlbMWyQhed+FPU3Zszc4wviMyeGHqdmA2lNZc9+mvtbcqei9C/T30McnbliapI/OWIzLvlsYbQmpTK3USGSSAAS5JF1O2EMSajIWhLAl7l1ZuayYLDZkvhfkXVvnKSVNbWgxFPtHpiC0VQu82eMPQzZM5Bx02GPmCCjoCyqLDztuulrhNJKxQdm6fj1srXCqsyhwXHkz4JiovEgQZgICWjh1O9rzU4hG2kNSVIrIyN9k0nncRQRCFbMftWYZhyfdl1pHAzS3Ia7DkkcrJiKTdA6ziJAQAv9zGd7Z27zpqBu6ps8DjKEvG+pZdPtQgiGX8Tdo1MAMNWMEhVw+ziFzKlJEGtpyMhcRmbNoIZg2jKaeO3HkYOwy41CX1oYZA1uvem/fCSPsv2RRHdXkOTmEZl+NjPKxK43S5AgbDLGM6//////////////////////////////////////1GyCSQAAU3KSAyDLHwTV8ZDCB1OE025DSTmQO0t42y5ilnKXAu6eX0dRxJ4PZAHUJuQwUC5DkEhIWaKQJecRCAqC2CTCei+PIeBcy/mKQFaELQkwxrLaOHKGoKMRQACv/7tGDAAAkGYNFrGMNwAAAJcAAAAR9lgUunve2AAAAlwAAABATgwAyE+LG0hIS4jFNAszTIYXhFEFHaTMwBPSfoUXhmLGPWmzHLCM8VaBJmjyEE/KNFJ1XD/JgOIlpO2EghPgw20lZ/F/TShSpwkJgmYOnCvWkgo1yU8Ak8Q2CwRB1IedBIz2Uq3Yc4wEAojqOwc86nU5OjtVCeXSEohWHugGppX1w8nWJYCsiM87czzyxoatboD4QExHgO2c77khISSSQCSU26GhFA+BQBQhEsp2HkWGJ8KQ9LRRnCf5eeLWPWSUupKh1lQwmmynIzHkZYRkKogx+kMIMWxZATRMH5chNRdQgpcCmXDtsGbkRSaeu9gaJjNXkUfgGabdTp9W6SN6i7MKZA8b7KLy5y1V18Qt65Q1ZhboMfY8pmpirE+kcaUnI3jEGbsGWu/K38U92xM6kUBMnZ67DYVpu7qHYfVWdKdU7eN6H1VgU7Youp4IQwFeq+FysKZU4S+VD+sOcqYmH9dlBC0lRaX7iMabrSu9K5dYpLFyxTstcG7Kc7s9uWy6ApyPYxu0+l3GB52SW3gjLzNWoqTJPpc+xP///////////////////////////////////////////////////P22kSSkkm5S/F2FjNIfqhSJ+EIOV1FYXyN0n2iMdi2MQ5TmOYIykDmVY+xDxbwzzkEUL4dgvTxDCH4bJeRgEHJcHMZR8IBFF5HwrENL8RCjBCJwUsdaVHpC5ai//7tGDAAAkhYFLpj8NgAAAJcAAAAR79gU+nve2AAAAlwAAABMnWd5fGQfBrE3Q4zzlEkTijLsUzAfyQF0OUXJ63EFIQHWzI0Q895A4OPkhbChZ/BLlkl5D2EuamL6XYZipJwbS0DQUhPkGqF8lCpPg6Yzs5DcThKyEGyQAiBZwb5kByjvPt8boJ9JHhCZUENQ/jpQ9SWa1clIiwt6YlQyHacyimcGLtrNh+kGRucYpbIsON26IGQkxQgILvacvb62h0IiIiEkpJuXk0RRGi/k+S1l2k3JTItQnE4t5fElVHlgZ1tZNkYKHBKhvF6PhmMgnY+H5nhXN4URCi3owHwTs4SFl1FKawrzujExH39j8qe6DXqiyykyWYuylWXrT3QDu84CGj8N0YYmgxSBWbw3ANNEF1vE0qKrraOulorpQSmE8wgIFgl/F7JIt8yWE1XpeVwYZiDizyjTdn3bJAbNmvMOd6AIbg7G3AkAQZZbSIuY5zYHNVwzluKgbcHBsQtzGbxmVuesDNtdcCmh6gp3Rhqu4cONcdOTO+qdobEV1rCXIWyt8JLGNSiFsShMbcRpUppKCjd+WgYEihhQUi2UNsTpU5yP/////////////////////////////////5inYjIhIlJJuQt45VKU5djsOhljKiAyPFYolFGbHI54jSmDjYDTXTafg4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cMAAABxBfU+5h4AAAAAlwwAAAAn5iJBQF/AFQdIcAJ5qJaH0ElLuGeQwcp8H6hLJADcH6mVWZxPyGpwcelUdCrTyENI/iQoJ0EeXLkS2UnzmwqhiUxouyTPFpC0iXVibU+epokJdLMzezxHpJEe9PpuZU++LkcDEujYW08xwaSF7XRbmt61vXKPVka3KGbrdWtHp1H8ji7QnOloVsQmM8GVliRo2szZhMbHmmcwdzwLW13vWVABBVmSSTbcckltWtHHaSklieKtQ8BagiAhzLiF1QwUnMjyCSpsbZQCZCBgC7xd6FhzXSULHAgIgQQrIkoKRplqBNfUPSUelmKk2Q1Wusfo1dIICYErh5MWWp0N82KdeB/mvQMtlIuNTyaLEYmyyiQTJdJ1r3ZGslKibcRSSHZ7muKCKpS+oy9e8dit1oi1GoP67zlSVYJNJsDDmbl+H3adR0rYmnQiKOwrweApWsslb+sMUBTUpWlRtlTuwuBXLlDmsYh+IvKzl7JjcUbIxiJV5XI43I6ddDRX8X9nE4MkcUlc/OUii0n7AkVgiMU1iXxCGYrB7T4dhmE1r9HI8q9DQf//////////////////////////////////////////////////////////////////9bIAABK6a1UmuiwCZqqzSIPUxXIthYySMOhYhdp12JFxFhi8TfIQtZYy/DM1ToZuGrgvdxJXOVRoEjTrZYodJIioo9DqOov/7tGC9gAmlXtJWa0AEAAAJcMAAABxJgVOdjAAwAAAlw4AABAQRMcllDTIFfFYaNS6KpDrXZg4jBWoz1+PyvK9qia+6kBu00BdiCjoJFyyWwK/jvt1tQuHWJtMaBKo9GH9YfLHQhTT5HGb9Pnbi0YnJuNxB4JAvBjr60EuimTw3m6S6jjkdi3OyVtobjlFQ35Xdqc52G3/j0YgFr8XpKGflEOTl61YnLf/T9t63Ld549pb+diMWr+rt+bqw3P4Vut4kySUpLJLvADCm0ZxAzxNeUVCCrEjbS2KLKUCSrh4dK2ZBtiy9ZQIBsPWLDiv4EcV02ro1PFaetp0CQlrEbTtchrkBOKriDnJUrTjdl7ygG+PolBWxXFClEaJwbiplRsSsKEk54F9FEPtXFehpzNjAwQTgLuOQup6lI5q9InYnh6CVBPIcplae6IQiOn1S4NqLVDChR+ulW5pllPRsui371LIZVQq5hYdPZpH7FRWpdzi6Mgc7kjj/J7FP5D1LIpmdD25WMUNEQGNXrTJDbGGJmFCXemKaBvDDjDkwMLlLPL////////////////////////////////////////////////////////////////////////////////////////////////////////////////////WNkluSWSXdvKU/CZKwv5oog+i2D1CDDLDqEZEaFdAuA4CIGKN4eJigbBCBfJtDCdBJl2TMv8VROKHk3Qsut3o/1wjC3K4JEf/7tGDAAAm/YFTrGHtoAAAJcAAAARx9eVWnve2oAAAlwAAABPxuq1hOkLx6iAlBdUwoC3ooV84jp2nA0CXn7CQwnovwBQHSZY3BYBfjhUouA/QjZFqZEoQdwGA4U8XCguZfDpRp0ocoGE/0uYZrxEg9XShdnOYCjaUNT6UfuJbDdJuZrmWw9xSxNDwankPLtJm0aRqoW5lgVzCcarRq7tEXTQq1G3vkgrEZHjKzeZoG7NUe7BGZW+rvNrwtT5jPpNo0iQEmkm3c0p83caHG2AzTSi0z+JfSIHSOh4LcFliZRNQcpYT3GKmAgokxG0OOxBjdENVw3jdH0ZRRpwvIxSeoaAjG2QczjqX25Nk9DqMEH2XARoXElT1ghNRomSO8oBfC3EPHCAFAzhjHiVZOB1GgMZBAuhYx6BSjkAEyfMIcR+F6P8vJ7A5g6iCsSQSx0sSJQkzxaQ6jShHNDZS/ObFv0La/c4zCkFtVk5YCQjsPs9jyJ6u04zNrgwsDmbBwn8cTVo/nOCyKWEuWhvooj1PGEi1DRqcm1ZfMqdZYNC/HFGxR9tufabnLI3//////////////////////////////////////////////////////////////////////////////////////////6lWVFGk02245JJJJYtyEs1UqAwPUMMUg8wUHDKwYMdjkw+U2TJ7HM7SaDHRm0imtkikO2h6SZnx4cHMEETgZa7LDgQMXAhJari7zRWxvq3ZkbP/7tGDAAAlyXtJtYeAKAAAJcKAAAR2xbUdZzQAYAAAlwwAAAAFPqKKGQQ4Si6xxxGmEjis1kLsKnbpBE4xtcsgfFbbbtkeeNpSNtI4drQ49cRZ84rkRCJsUl0Sg6Yr4ODVpVSzkqa5CJFPQupKn+dx75RUa5Kb0vjNSUyhfk3MvfYkFA+rxQuRrRZPZq23ZonbikjaLLr9PLs5/4fp5E8++UNXGZm5TO5bqVta/KxybsSuxVw7+7muWdVIvlabkqI2SACmpLbI43EVGBVMfSrUg+5f0OCsG/5YC1BAQcxJhAUCzgEaKOUwkWDVLygLqXjpxZHpFJZK+GRrcVuMgyUsmXogjFg5v6gKUIfxE5PpYaH4JUNGwsNXAzFikRa8/0Vjk+zN1gQFbbRkvlKla0T2voJWoPKlyvxU8XXCv5sKlDYYWvVRWQv9AsNO3hEnksRq7KuQ5GYZiq8YpKX4j0rZzAr+vbFnxu0FeJPu6DS3RrZP66LyvDlumqX63LNWZvVd5Y2d61q1h9rL8cM8sdVjvM1xCNTPiQ/o////////////////////////////////////////////////8Af/////////////trvW2poP2/b/5v93vkakiSU25LI2nAwwAuSqg2QLoBQwqhuAol0QdUnIXOPpAaBCpNJR0s4EGNJHwMoE+2qJ0x0WC1lp6CgcF940shmxfQyAVGhPU84AwRH5kJbtPMII11mawSdJbo1JT3T2KSo2oD3QgVt1mKf/7tGDAAAfuUtPvYwAOGUAY4eAAABxNZUOsYw24iYAjRAAAAMo8SxRV+YcQzTRVvVMnA6LKl8TaV8UcZnT+uC+TeNAV27cRfamfCYfSCYq5byVYefy7TuEw54WfQFPvDRWY9JYPg2DZqAH3fuklMO5w/NTENx6VVJFlG5HnlSct/d3l93uXLuG9dy/mWWv5n+Gfcv/Du+1GUYyoBuEAD/////////////9BXaBHoU2koU00obsO+Oa1UUaW7b8sZMmkSnbv/tJIhzVnQDKOqamVidRf0gG/ocEGiBXoGTLa6DEkREeyIr3IBYYWsGCQWAwlLaZ0yE8oYEXyRQXck6vBlzOxkKbq1Awy6W5KmAg2fONLIbwEWFskLGRkihDUAgleHINsrCqRKqQknA7RXQakJsMVnO0V0tqbOQ22My8VXBms6yXE4HURxYmyI57iNmENdSM1KMHzJB+2KB4cVxpWdzvTC+8zuTD6WDJbEPevF8HVtwr4xGjU1FzvOM1xj/W9f7997v59OiBv////////////////////////////////////////////////////////////////////////////////gqrX///v7trttv9Nv1k6Z7j6Pubc8uK6WWsYtGzQju/0txxkuWNtIAF4QMeREmkEIgVMVnJZmncEgsHAwLCC6hkmEKGQkhAVZLhuKqAqIOUChPsgKYKo4jU0UFBh80HaA4yyYC27c1KY1dkEEQuAoZfmNXp1rirhaf/7tGDAAAg5XUzrGHtqIQAZAgAAABf5eyOs4e2g0ABj2AAAAJjCMd+VTTAX2VQsg9Uc/VCW4posBHzJ5hTs7qO9esKlftUXs0WPCww61j4xbXq71eBfVKUf/dqWte/rf5vaFnMCSsGK916wt6pp9emaxNXpvOPTOcZ+9b3jy1zf63nGcZvIAf/2d3/QAEVFap//9q3Ud1p3/mu9vMoYdq0sOtsTX0xEZDweeaYAmhkKHkJCwu+8ss2HN/R///3/Ii7JbLZJJG23PmIKkINFNEMMIYCUfbKRLJ5CgBr5moEJfCEyTQhAmaEBgpc6sTeQRA1FA8sksOP9HpuOy6HYceWLQPDXa1Fajc3BVuds1GyUkTAxMyaXjhaJ7p6JCPTkvDSlI6AjZhZ1ZG9HWbNKW03/VDd60Ddqy5dU269LstWU9Vnqaxq1rM3mLX7qUh7J6/1t7ef/vfu5OT2OTWtI8rlqLuzp6uWpkzNdluRNR/b//9f////////////////////////////////////////////////////////////////////////////////////////////+CkEv/6yEP8MhAxUp5NMJKOCzEVqboH7+j3WlHmqlTxVyFGTUg6reOUm3Sp5EWe4Nq2ilaWm1YVUUav7GZv+7vUMJccbTXVKqDoIpYkRGAus4RZ5AtNlQRDA9DkJojQV5vrDnBP7KtLfN3rKry/qOBCgEpkboj3b9vXIfibDkVQ8bKkMLA2EYFP/7tGDAAAe/X8hrOGNgQWAI6AAAABMdFRuMPQuBJwAjoAAAAJIcuPPPFzVLGEKUUI2tnxS6SsLw7jup4ddGnunba53tIl5pVcxU6q5i2KaFzR9jxcFhRA1AbJAFZdh99Tgm8UE40sI0TQSVKVtLGShjbbRfZZSBUq3/8Sh8G3TYrWkgHBlJPtU0c5zRwYU9rnxqWrY9Sq79JZkXZrbc8cGEqodWaPDQqVcs+rSwTnyqbXPYAPY11LLRd+P/69VKUlGm22lVSqk011LnBiYQ7fIZUIZpEVhmTyZo5nEeQk5T9a6xaIU8cnrI4Q4j5scdyulK1qF7SConq7iOES2IKMImDogxg+LgCESODGAwUHhEEMIkDkejIyoKlHIyOpUJUyGWiM6Gu1ogxU0kZHfs5Cs7HXMizbo9movvqqOW7TVEpgidDrF1KJIt0tNmYv5nSu1bFcW//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////FmomVVVsWIGBg2NDcoSGDoShNND+9q7Vy1Ub0qULPQhSeMi61xZaksQJ2jcTUuO2Et4acI0BM/ehwqXI2apdh5k3R223JmGE991Nfz/SyqqBaQFEd5E176bG0AlL+Bo0AwZg8hraORWox6fcsZ7m0CNNtT94/V0KWEzb15pxAsgypJVsf/7tGDAAAfeWkbjDytgS2AI6QAAABFc7RksPMuJJwBjpBAAAObx4zkxF2ZrPClTpzOhC5r2m6kOVGcpt8UnF48zr213q56EsFELWhkrA96NXNQOZf3mG//XfQa6Qvaj76TL/Xrjrmc36Kv/bv/tnfpb+mOkf1YhCSlVZWKnSnCrs6LB0Ovc5xlVyx2XlRcJVIL3EkhastSxji5EGD5UUB8gEGPUV9mxW/eDyYg36twUbFD1jd3sT2S7FX7OpMYgXPqquaqlUAZAFWtLy41AErAzzPE/IQYFgCEqWZacAdgC8hxK2k5xb0eRgQw6CWKNQUtNXMF/BaMkHLuTst5lp9YhKBSIxWL6HsasbM0YFY6PwbgOcscyvc47nhsVbGf6fV7Gzv4dVGdb830ezyOFZICkLgdBoKBOKN+/t4t9TR4d93jw38OI8gRMYpfFL5x6Z9MYprFdb3ild/Ga/GM5/1jW9ZrfXxnOt414vAaVvNh1nxaxjXPmqduKjiW2u8v/////////////////////////////////////////////////////gHVVWf+5MGKZpVfeSKtrQSaiqi8666+pQydSbQe8pmGLZcfDl7zYtQ1BhL7hhW7dih5uxNnR9D936tultslRt3dUrqwiXKnB0VOjCZH4lI7iqwFEc2GcwKUZWFY0Va0AuKqWcgalZS0mXT7qQ9jS2aGGndZSkKzlgrOYdh2gwprMqxazJrS6UsVsfKIyhXgJ4AfCaumM0VSyyP/7tGDAAAcxWcbLD3tgO6AY9gAAABcdIxuMYe2BBABjoBAAAN8H3gyuN3sRqePHymNIuSizv+E+YocJmfV1m8z1x3ivtGy9Q1Wsto18ZvqJPbH3BrqNCzFe1rTL2LYDLSBRxGBlMS8sAUvPoYGyoDSmqylBHZWrs31qe6lq8ASgCr/7OPZ4aYNeoPsjpd0jcB40a+cknJSkL0rJqGqp1NZ2NcxR4/1dDRWtEtdRoWnCosSUzcKJ6L8uzIJ3xv/vQKqqVShKGc9JoaLcRTQppJFYBAcoRnC7FyXyrY2IrnroCqqXfVjP8/K1fVRkO0NDOEqnmf99obfwiTN5Iy6RVHgUHzLjJygw9thsnlTzQCZYoWfuuqShDRVtDqSDVsk9cEBooEBAhqFvxYl///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qwor/6nvEdw3OrUbFE6lDlJN+4LE/ZctF0BVlySZ5BFxQgSUw+9Cj8VFQqeFtKSihfTnTAq6y9Dw5LHgs3u1VuyrGxUw6tL+1nW4kSgQVjtulUYrg4Gf/7tGDAAAlNOMZB6BrQSgAI6AAAAAu4HxiMGGKBKQBjpAAAAMAqwmAQIU4VF2tC4AMvQOD62KW449uQEtYTwhQftS8cQap5xbxiVivFi5YQ2rrPizgzHulDlF8sAi1umu1g/YdMoLuWcXrPoEp95A9FpG5+40MsqqsqqgiRaUCnWLHmix3fS+1yInEhVgYJOtQ4luS84YYpjBXHLQ4dlWpeg4YZu1vfQp4481Sj5FpsuhyECD9V9AmUpy3sp07vUPm5lVZVRDRKRQs57YKAs4xnuSqX9353vq/lrNavXRlIhjXcahYgakwWcLtYwe7wiypDBVa1mat9aL2MvRQZodU0c9xFHTtfrt0aWLrrqZZjkK////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+gAAsZSL8y6FXUc1ShfzvnhdkaidLtd5LbdtPoSjpK3rfrVOv2V3Xrru/VW66/Rbp2uh2R1Zyo9VYp3IMGgo9zdbdQUv/7tGDAAAngJMdJZRJQTcuYxQQibAlACx0npAABH4AjEAAAAG84OmL91RfdKj/VolWVVWsfsQrWXAZfDpJK+YdGMKFzBMMpacMpw6SYKG3tW8VU2pLUPcoo4cvRhYhDj0EaHDALU7Vcxh59wOT6hlDpD0+raQ81oAAJAJFC4nE5Q0kqDJd2cboDtrospLYD30uFnvTtveT6pVq5R3l0DWpZVMh9bmtFDrLvciyoUQ1ukahq6nTaNLVgdLsvZcuWQEiQCCAIBMRB4ICOQGEDpUaWk1QKbn20wu72WceglkTU+56rFvPIusFo9KU2ubTNRlr3MZHruYzzA5DFuHvXCDpdJx3dexO9rklsshq///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9/8sqtfRMvQPSg5aXBsSOUsYoNBmsOKKFwHVXUo0jSlRfFtDw2fulCT0S/LJGIJIfiOypRYMNMFgbLA2KA4P/7tGDAAAoQAsYhKQgASgAY5gAAAAjMCx0BjAABJgBjFAAAAEYps3OZ/8yq78JSCKFWG/9hmC6XIDRytoUGHnm0dC5LtW0ieKUtPteKdhl+QIrWcMTr9iQgVjzNbAk54RMmVzGj0BoIJiR7/6610FOq7ep/r7kEggCacKFw1yK2sFWCI+1u4wu17o1KBsZvU9bUKKn0rIMVFhtJbOCbRR6Bdll5mtBZeQeOZXYY23pk3PAb1sFdeWD7KtR8PGhbKKFlZf+igTCkcIalLMn338q+0lWpw+rY5RlWV6MllqyQvrK2kaVLyik8qgmeCu68MvSIE36C2RX216Laej3CX/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////YAgf/7tGDAAAvsAcdAYgAAOUAY6AQAAAdwCR0BDAAApgAjlAAAAH/4gPdYO9Y8OrW20dzw9viF4b9Tbk9cC2pvViO6xJ1/W4RpF6OpbG1tvcmjtq330fvVsW5zFaalISf+MGUIoRBB9WXNkOKKoXSxLeT5NFfxame21sU1mGUR9UXxiEEV0jlKTEDlOBK5hF7XO+x3pZ//+n7//ovuvWl7E6NKxRuKGJJfYjk3U25xzf6N9qPnRw1Pde1Fc+lYaSoloJVVE38GmPXWiR0t3cat//NG0FWtWR1U7xbfHU5d+973x9ijOmlPQ7Psu+r////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tGDAAA4EAEdAAAAAJuAI0QAAAAPkAR0AAAAAVYBjoBAAAP/////////////////////////////////////////////////////////////////////////////////////yh/2fqv/ah3zNqx5wt/rudVX//1UfR63ah2NrvsZ2N0fX0V1dTGUKkgC5qG4R/2u7FP1MuEH///UktatW2q2pP//+XV9YxVkJWEabCzOXTan/ezZ/////+99bEAAAQAB6Tv/////ofu9FH9Pfp//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tGDAAA+yAMagAAAAEsAY5QQAAAJcARqAAAAAAAAlwAAABP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////sEER4Q/1///0adH////91NqHqBAAAAF///////f1///////6KVgAACAB+j//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tGDAAA/8AMcgAAAIHGAI5AAAAQAAAS4AAAAgAAAlwAAABP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wAAACB/0f/////////////////////////////v/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tEDAAA/8AEuAAAAIHIAJcAAAAQAAAS4AAAAgAAAlwAAABP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tEDAAA/8AEuAAAAIHIAJcAAAAQAAAS4AAAAgAAAlwAAABP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tEDAAA/8AEuAAAAIHIAJcAAAAQAAAS4AAAAgAAAlwAAABP/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7tEDAAA/8AEuAAAAIHIAJcAAAAQAAAS4AAAAgAAAlwAAABP///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRBRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",f={bookflip:$,changebanner:F,close:q,click:y,click2:N,collectionitem:P,exchange:O,modal:X,obtain:z,roll:b,inventory:x,history:v,camera:K,shopopen:H,shopnav:j,shopsubnav:L,prevbanner:_,wishBacksound:"/sfx/wish-backsound.ogg",resultList:"/sfx/result-list.ogg",reveal3Star:"/sfx/reveal-3star.ogg",reveal4Star:"/sfx/reveal-4star.ogg",reveal5Star:"/sfx/reveal-5star.ogg"},S={},AA=()=>{Object.keys(f).forEach(B=>{S[B]=new Y.Howl({src:[f[B]],loop:B==="wishBacksound"})})};AA();const VA=(B="click")=>{if(!D.get("muted"))try{if(!S[B])throw new Error("No Sound effect for "+B);return B==="wishBacksound"&&S[B].playing()?void 0:S[B].play()}catch(m){console.error("Unable to Play Sfx : ",m.message)}},gA=B=>{if(!D.get("muted"))try{if(B.includes("reveal"))return S[B].stop();S[B].pause();return}catch{console.log("error to pause sfx")}};export{gA as a,R as c,VA as p};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/custom-banner-3b9921d3.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/custom-banner-3b9921d3.js
deleted file mode 100644
index 90b7d540..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/custom-banner-3b9921d3.js
+++ /dev/null
@@ -1 +0,0 @@
-import{a as d,H as S}from"./env-f184adc0.js";const E=(s,e)=>e.some(t=>s instanceof t);let k,I;function C(){return k||(k=[IDBDatabase,IDBObjectStore,IDBIndex,IDBCursor,IDBTransaction])}function A(){return I||(I=[IDBCursor.prototype.advance,IDBCursor.prototype.continue,IDBCursor.prototype.continuePrimaryKey])}const j=new WeakMap,L=new WeakMap,q=new WeakMap,f=new WeakMap,U=new WeakMap;function M(s){const e=new Promise((t,r)=>{const o=()=>{s.removeEventListener("success",a),s.removeEventListener("error",n)},a=()=>{t(p(s.result)),o()},n=()=>{r(s.error),o()};s.addEventListener("success",a),s.addEventListener("error",n)});return e.then(t=>{t instanceof IDBCursor&&j.set(t,s)}).catch(()=>{}),U.set(e,s),e}function O(s){if(L.has(s))return;const e=new Promise((t,r)=>{const o=()=>{s.removeEventListener("complete",a),s.removeEventListener("error",n),s.removeEventListener("abort",n)},a=()=>{t(),o()},n=()=>{r(s.error||new DOMException("AbortError","AbortError")),o()};s.addEventListener("complete",a),s.addEventListener("error",n),s.addEventListener("abort",n)});L.set(s,e)}let R={get(s,e,t){if(s instanceof IDBTransaction){if(e==="done")return L.get(s);if(e==="objectStoreNames")return s.objectStoreNames||q.get(s);if(e==="store")return t.objectStoreNames[1]?void 0:t.objectStore(t.objectStoreNames[0])}return p(s[e])},set(s,e,t){return s[e]=t,!0},has(s,e){return s instanceof IDBTransaction&&(e==="done"||e==="store")?!0:e in s}};function T(s){R=s(R)}function P(s){return s===IDBDatabase.prototype.transaction&&!("objectStoreNames"in IDBTransaction.prototype)?function(e,...t){const r=s.call($(this),e,...t);return q.set(r,e.sort?e.sort():[e]),p(r)}:A().includes(s)?function(...e){return s.apply($(this),e),p(j.get(this))}:function(...e){return p(s.apply($(this),e))}}function N(s){return typeof s=="function"?P(s):(s instanceof IDBTransaction&&O(s),E(s,C())?new Proxy(s,R):s)}function p(s){if(s instanceof IDBRequest)return M(s);if(f.has(s))return f.get(s);const e=N(s);return e!==s&&(f.set(s,e),U.set(e,s)),e}const $=s=>U.get(s);function H(s,e,{blocked:t,upgrade:r,blocking:o,terminated:a}={}){const n=indexedDB.open(s,e),m=p(n);return r&&n.addEventListener("upgradeneeded",c=>{r(p(n.result),c.oldVersion,c.newVersion,p(n.transaction))}),t&&n.addEventListener("blocked",()=>t()),m.then(c=>{a&&c.addEventListener("close",()=>a()),o&&c.addEventListener("versionchange",()=>o())}).catch(()=>{}),m}const F=["get","getKey","getAll","getAllKeys","count"],W=["put","add","delete","clear"],v=new Map;function D(s,e){if(!(s instanceof IDBDatabase&&!(e in s)&&typeof e=="string"))return;if(v.get(e))return v.get(e);const t=e.replace(/FromIndex$/,""),r=e!==t,o=W.includes(t);if(!(t in(r?IDBIndex:IDBObjectStore).prototype)||!(o||F.includes(t)))return;const a=async function(n,...m){const c=this.transaction(n,o?"readwrite":"readonly");let i=c.store;return r&&(i=i.index(m.shift())),(await Promise.all([i[t](...m),o&&c.done]))[0]};return v.set(e,a),a}T(s=>({...s,get:(e,t,r)=>D(e,t)||s.get(e,t,r),has:(e,t)=>!!D(e,t)||s.has(e,t)}));const V=3,K="WishSimulator";let b;b=H(K,V,{async upgrade(s,e,t,r){if(s.objectStoreNames.contains("history")){const o=r.objectStore("history");o.indexNames.contains("itemID")||o.createIndex("itemID","itemID",{unique:!1})}else{const o=s.createObjectStore("history",{keyPath:"id",autoIncrement:!0});o.createIndex("banner","banner",{unique:!1}),o.createIndex("itemID","itemID",{unique:!1})}s.objectStoreNames.contains("assets")||s.createObjectStore("assets",{keyPath:"key",autoIncrement:!1}),s.objectStoreNames.contains("custombanner")||s.createObjectStore("custombanner",{keyPath:"itemID",autoIncrement:!1}).createIndex("status","status",{unique:!1})}});const h=()=>{const s=new Event("storageUpdate");document.dispatchEvent(s)},Gz={async historyCount(){return(await b).count("history")},async getListByBanner(s){return(await b).getAllFromIndex("history","banner",s)},async countItem(s){return(await b).countFromIndex("history","name",s)},async getByID(s){return(await b).getAllFromIndex("history","itemID",s)},async clearHistory(s){try{const e=await b,t=await e.getAllKeysFromIndex("history","banner",s);for(let r=0;r<t.length;r++)await e.delete("history",t[r]);return"success"}catch{return"failed"}},async clearIDB(){const e=await(await b).clear("history");return h(),e},async getAllHistories(){return(await b).getAll("history")},async addHistory(s){return s.hasOwnProperty("banner")?await(await b).put("history",s):void 0},async delete(s){return s?await(await b).delete("history",s):void 0}},Qz={async put(s){if(!!s.hasOwnProperty("key"))return(await b).put("assets",s)},async get(s){return s?(await b).get("assets",s):null},async delete(s){if(!!s)return(await b).delete("assets",s)}},J={async getAll(){return(await b).getAll("custombanner")},async put(s={}){if(!("itemID"in s))return;const e=new Date().toISOString(),r=await(await b).put("custombanner",{lastModified:e,...s});return h(),r},async get(s){return s?(await b).get("custombanner",s):null},async getListByStatus(s){return(await b).getAllFromIndex("custombanner","status",s)},async delete(s){if(!s)return;const t=(await b).delete("custombanner",s);return h(),t},async clear(){const e=(await b).clear("custombanner");return h(),e}},G={},Q={src:""+new URL("../assets/bg1-712c47b2.webp",import.meta.url).href,w:300,h:169},X={sources:G,img:Q},Y={},Z={src:""+new URL("../assets/bg10-e9ffb1e8.webp",import.meta.url).href,w:250,h:125},ss={sources:Y,img:Z},es={},ts={src:""+new URL("../assets/bg11-ff306cf9.webp",import.meta.url).href,w:250,h:120},rs={sources:es,img:ts},os={},cs={src:""+new URL("../assets/bg12-5fa4fb34.webp",import.meta.url).href,w:250,h:141},as={sources:os,img:cs},ns={},is={src:""+new URL("../assets/bg13-09b8fc49.webp",import.meta.url).href,w:250,h:141},ms={sources:ns,img:is},bs={},_s={src:""+new URL("../assets/bg14-21741df9.webp",import.meta.url).href,w:250,h:139},gs={sources:bs,img:_s},ws={},us={src:""+new URL("../assets/bg15-cf0f23c5.webp",import.meta.url).href,w:250,h:125},ps={sources:ws,img:us},ls={},hs={src:""+new URL("../assets/bg16-921e463d.webp",import.meta.url).href,w:250,h:125},fs={sources:ls,img:hs},$s={},vs={src:""+new URL("../assets/bg17-c65ca53f.webp",import.meta.url).href,w:250,h:125},ds={sources:$s,img:vs},Ls={},Rs={src:""+new URL("../assets/bg18-cddfc572.webp",import.meta.url).href,w:250,h:125},Us={sources:Ls,img:Rs},ys={},ks={src:""+new URL("../assets/bg19-1a5a4d18.webp",import.meta.url).href,w:250,h:125},Is={sources:ys,img:ks},Ds={},zs={src:""+new URL("../assets/bg2-fb97dde3.webp",import.meta.url).href,w:300,h:169},xs={sources:Ds,img:zs},js={},qs={src:""+new URL("../assets/bg20-31544bff.webp",import.meta.url).href,w:250,h:125},Bs={sources:js,img:qs},Ss={},Es={src:""+new URL("../assets/bg3-6b567d8b.webp",import.meta.url).href,w:250,h:141},Cs={sources:Ss,img:Es},As={},Ms={src:""+new URL("../assets/bg4-410de4d4.webp",import.meta.url).href,w:300,h:169},Os={sources:As,img:Ms},Ts={},Ps={src:""+new URL("../assets/bg5-a6423348.webp",import.meta.url).href,w:300,h:176},Ns={sources:Ts,img:Ps},Hs={},Fs={src:""+new URL("../assets/bg6-eadd753a.webp",import.meta.url).href,w:250,h:141},Ws={sources:Hs,img:Fs},Vs={},Ks={src:""+new URL("../assets/bg7-d6e1e259.webp",import.meta.url).href,w:250,h:141},Js={sources:Vs,img:Ks},Gs={},Qs={src:""+new URL("../assets/bg8-b22a75ba.webp",import.meta.url).href,w:250,h:125},Xs={sources:Gs,img:Qs},Ys={},Zs={src:""+new URL("../assets/bg9-d62bd2b9.webp",import.meta.url).href,w:250,h:141},se={sources:Ys,img:Zs},ee={},te={src:""+new URL("../assets/constellation-ea52ebf9.webp",import.meta.url).href,w:1280,h:720},re={sources:ee,img:te},oe={},ce={src:""+new URL("../assets/detailbg-27b1098a.webp",import.meta.url).href,w:1141,h:628},ae={sources:oe,img:ce},ne={},ie={src:""+new URL("../assets/element-anemo-bg-384d7943.webp",import.meta.url).href,w:1920,h:1080},me={sources:ne,img:ie},be={},_e={src:""+new URL("../assets/element-cryo-bg-bbd31977.webp",import.meta.url).href,w:1920,h:1080},ge={sources:be,img:_e},we={},ue={src:""+new URL("../assets/element-dendro-bg-b1d73449.webp",import.meta.url).href,w:1920,h:1080},pe={sources:we,img:ue},le={},he={src:""+new URL("../assets/element-electro-bg-f07ba0fb.webp",import.meta.url).href,w:1920,h:1080},fe={sources:le,img:he},$e={},ve={src:""+new URL("../assets/element-geo-bg-8a0eabf5.webp",import.meta.url).href,w:1920,h:1080},de={sources:$e,img:ve},Le={},Re={src:""+new URL("../assets/element-hydro-bg-3db0a4b4.webp",import.meta.url).href,w:1920,h:1080},Ue={sources:Le,img:Re},ye={},ke={src:""+new URL("../assets/element-pyro-bg-0eca9517.webp",import.meta.url).href,w:1920,h:1080},Ie={sources:ye,img:ke},De={},ze={src:""+new URL("../assets/outfit-background-50096967.webp",import.meta.url).href,w:1920,h:934},xe={sources:De,img:ze},je={},qe={src:""+new URL("../assets/splash-background-49b61db1.webp",import.meta.url).href,w:1920,h:1080},Be={sources:je,img:qe},Se={},Ee={src:""+new URL("../assets/wish-background-bc054754.webp",import.meta.url).href,w:1796,h:986},Ce={sources:Se,img:Ee},Ae={},Me={src:""+new URL("../assets/beginner-f111b92d.webp",import.meta.url).href,w:1e3,h:519},Oe={sources:Ae,img:Me},Te={},Pe={src:""+new URL("../assets/anemo-7866d23d.webp",import.meta.url).href,w:1368,h:675},Ne={sources:Te,img:Pe},He={},Fe={src:""+new URL("../assets/cryo-dae55f12.webp",import.meta.url).href,w:1368,h:675},We={sources:He,img:Fe},Ve={},Ke={src:""+new URL("../assets/dendro-680e5876.webp",import.meta.url).href,w:1368,h:675},Je={sources:Ve,img:Ke},Ge={},Qe={src:""+new URL("../assets/electro-c98388b4.webp",import.meta.url).href,w:1368,h:675},Xe={sources:Ge,img:Qe},Ye={},Ze={src:""+new URL("../assets/geo-2ebe8a1a.webp",import.meta.url).href,w:1368,h:675},st={sources:Ye,img:Ze},et={},tt={src:""+new URL("../assets/hydro-ff726371.webp",import.meta.url).href,w:1368,h:675},rt={sources:et,img:tt},ot={},ct={src:""+new URL("../assets/pyro-971cc66f.webp",import.meta.url).href,w:1368,h:675},at={sources:ot,img:ct},nt={},it={src:""+new URL("../assets/adrift-in-the-harbor-1-c7582503.webp",import.meta.url).href,w:1080,h:533},mt={sources:nt,img:it},bt={},_t={src:""+new URL("../assets/adrift-in-the-harbor-2-2170370d.webp",import.meta.url).href,w:1080,h:533},gt={sources:bt,img:_t},wt={},ut={src:""+new URL("../assets/adrift-in-the-harbor-3-f6ec9e0a.webp",import.meta.url).href,w:1080,h:533},pt={sources:wt,img:ut},lt={},ht={src:""+new URL("../assets/adrift-in-the-harbor-4-f0fdb034.webp",import.meta.url).href,w:1368,h:675},ft={sources:lt,img:ht},$t={},vt={src:""+new URL("../assets/auric-blaze-1-b3fdef2c.webp",import.meta.url).href,w:1080,h:533},dt={sources:$t,img:vt},Lt={},Rt={src:""+new URL("../assets/azure-excursion-1-a2ef904b.webp",import.meta.url).href,w:1080,h:533},Ut={sources:Lt,img:Rt},yt={},kt={src:""+new URL("../assets/azure-excursion-2-f3e750ed.webp",import.meta.url).href,w:1080,h:533},It={sources:yt,img:kt},Dt={},zt={src:""+new URL("../assets/azure-excursion-3-8682d540.webp",import.meta.url).href,w:1368,h:675},xt={sources:Dt,img:zt},jt={},qt={src:""+new URL("../assets/ballad-in-goblets-1-81ade8c4.webp",import.meta.url).href,w:1200,h:621},Bt={sources:jt,img:qt},St={},Et={src:""+new URL("../assets/ballad-in-goblets-2-0ee67e16.webp",import.meta.url).href,w:1080,h:533},Ct={sources:St,img:Et},At={},Mt={src:""+new URL("../assets/ballad-in-goblets-3-7433b4bd.webp",import.meta.url).href,w:1080,h:533},Ot={sources:At,img:Mt},Tt={},Pt={src:""+new URL("../assets/ballad-in-goblets-4-265c2c38.webp",import.meta.url).href,w:1080,h:533},Nt={sources:Tt,img:Pt},Ht={},Ft={src:""+new URL("../assets/ballad-in-goblets-5-507a8d75.webp",import.meta.url).href,w:1081,h:533},Wt={sources:Ht,img:Ft},Vt={},Kt={src:""+new URL("../assets/born-of-ocean-swell-1-5c351d0d.webp",import.meta.url).href,w:1080,h:533},Jt={sources:Vt,img:Kt},Gt={},Qt={src:""+new URL("../assets/born-of-ocean-swell-2-1740fcf3.webp",import.meta.url).href,w:1080,h:533},Xt={sources:Gt,img:Qt},Yt={},Zt={src:""+new URL("../assets/born-of-ocean-swell-3-03ae3988.webp",import.meta.url).href,w:1368,h:675},sr={sources:Yt,img:Zt},er={},tr={src:""+new URL("../assets/caution-in-confidence-1-ba335ae3.webp",import.meta.url).href,w:1080,h:533},rr={sources:er,img:tr},or={},cr={src:""+new URL("../assets/caution-in-confidence-2-abc0c3ce.webp",import.meta.url).href,w:1368,h:675},ar={sources:or,img:cr},nr={},ir={src:""+new URL("../assets/chanson-of-many-waters-1-812cf393.webp",import.meta.url).href,w:1368,h:675},mr={sources:nr,img:ir},br={},_r={src:""+new URL("../assets/conjuring-chiaroscuro-1-43f3db38.webp",import.meta.url).href,w:1368,h:675},gr={sources:br,img:_r},wr={},ur={src:""+new URL("../assets/dance-of-lantern-1-daae80f7.webp",import.meta.url).href,w:1080,h:533},pr={sources:wr,img:ur},lr={},hr={src:""+new URL("../assets/decree-of-the-deeps-1-a0986d4f.webp",import.meta.url).href,w:1368,h:675},fr={sources:lr,img:hr},$r={},vr={src:""+new URL("../assets/discerner-of-enigmas-1-5158dab8.webp",import.meta.url).href,w:1080,h:533},dr={sources:$r,img:vr},Lr={},Rr={src:""+new URL("../assets/discerner-of-enigmas-2-96fe0dd4.webp",import.meta.url).href,w:1080,h:533},Ur={sources:Lr,img:Rr},yr={},kr={src:""+new URL("../assets/discerner-of-enigmas-3-b922fc5d.webp",import.meta.url).href,w:1368,h:675},Ir={sources:yr,img:kr},Dr={},zr={src:""+new URL("../assets/drifting-luminescence-1-3bf55adf.webp",import.meta.url).href,w:1080,h:533},xr={sources:Dr,img:zr},jr={},qr={src:""+new URL("../assets/drifting-luminescence-2-53dac3bc.webp",import.meta.url).href,w:1080,h:533},Br={sources:jr,img:qr},Sr={},Er={src:""+new URL("../assets/drifting-luminescence-3-68897598.webp",import.meta.url).href,w:1080,h:533},Cr={sources:Sr,img:Er},Ar={},Mr={src:""+new URL("../assets/drifting-luminescence-4-376fa0d7.webp",import.meta.url).href,w:1368,h:675},Or={sources:Ar,img:Mr},Tr={},Pr={src:""+new URL("../assets/everbloom-violet-1-892371bd.webp",import.meta.url).href,w:1080,h:533},Nr={sources:Tr,img:Pr},Hr={},Fr={src:""+new URL("../assets/everbloom-violet-2-70fc7a50.webp",import.meta.url).href,w:1080,h:533},Wr={sources:Hr,img:Fr},Vr={},Kr={src:""+new URL("../assets/everbloom-violet-3-2c6b56f5.webp",import.meta.url).href,w:1080,h:533},Jr={sources:Vr,img:Kr},Gr={},Qr={src:""+new URL("../assets/farewell-of-snezhnaya-1-504b4c44.webp",import.meta.url).href,w:917,h:453},Xr={sources:Gr,img:Qr},Yr={},Zr={src:""+new URL("../assets/farewell-of-snezhnaya-2-b621b043.webp",import.meta.url).href,w:1080,h:533},so={sources:Yr,img:Zr},eo={},to={src:""+new URL("../assets/farewell-of-snezhnaya-3-c963d52e.webp",import.meta.url).href,w:1080,h:533},ro={sources:eo,img:to},oo={},co={src:""+new URL("../assets/farewell-of-snezhnaya-4-19a402fb.webp",import.meta.url).href,w:1080,h:533},ao={sources:oo,img:co},no={},io={src:""+new URL("../assets/farewell-of-snezhnaya-5-fad87c00.webp",import.meta.url).href,w:1368,h:675},mo={sources:no,img:io},bo={},_o={src:""+new URL("../assets/from-ashes-reborn-1-081caac4.webp",import.meta.url).href,w:1080,h:533},go={sources:bo,img:_o},wo={},uo={src:""+new URL("../assets/from-ashes-reborn-2-215ac956.webp",import.meta.url).href,w:1368,h:675},po={sources:wo,img:uo},lo={},ho={src:""+new URL("../assets/gentry-of-hermitage-1-1d5d9d33.webp",import.meta.url).href,w:1080,h:533},fo={sources:lo,img:ho},$o={},vo={src:""+new URL("../assets/gentry-of-hermitage-2-6d7ff03e.webp",import.meta.url).href,w:1080,h:533},Lo={sources:$o,img:vo},Ro={},Uo={src:""+new URL("../assets/gentry-of-hermitage-3-59454dd9.webp",import.meta.url).href,w:1080,h:533},yo={sources:Ro,img:Uo},ko={},Io={src:""+new URL("../assets/gentry-of-hermitage-4-c9d19d43.webp",import.meta.url).href,w:1080,h:533},Do={sources:ko,img:Io},zo={},xo={src:""+new URL("../assets/gentry-of-hermitage-5-58100344.webp",import.meta.url).href,w:1368,h:675},jo={sources:zo,img:xo},qo={},Bo={src:""+new URL("../assets/immaculate-pulse-1-231c442f.webp",import.meta.url).href,w:1368,h:675},So={sources:qo,img:Bo},Eo={},Co={src:""+new URL("../assets/immaculate-pulse-2-fe64e91a.webp",import.meta.url).href,w:1368,h:675},Ao={sources:Eo,img:Co},Mo={},Oo={src:""+new URL("../assets/in-the-name-of-the-rosula-1-f39d4c0e.webp",import.meta.url).href,w:1368,h:675},To={sources:Mo,img:Oo},Po={},No={src:""+new URL("../assets/invitation-to-mundane-life-1-a2038289.webp",import.meta.url).href,w:1080,h:533},Ho={sources:Po,img:No},Fo={},Wo={src:""+new URL("../assets/invitation-to-mundane-life-2-38182309.webp",import.meta.url).href,w:1080,h:533},Vo={sources:Fo,img:Wo},Ko={},Jo={src:""+new URL("../assets/invitation-to-mundane-life-3-3964311f.webp",import.meta.url).href,w:1080,h:533},Go={sources:Ko,img:Jo},Qo={},Xo={src:""+new URL("../assets/invitation-to-mundane-life-4-157420b1.webp",import.meta.url).href,w:1080,h:533},Yo={sources:Qo,img:Xo},Zo={},sc={src:""+new URL("../assets/leaves-in-the-wind-1-47b5098e.webp",import.meta.url).href,w:1080,h:533},ec={sources:Zo,img:sc},tc={},rc={src:""+new URL("../assets/leaves-in-the-wind-2-bed80036.webp",import.meta.url).href,w:1080,h:533},oc={sources:tc,img:rc},cc={},ac={src:""+new URL("../assets/leaves-in-the-wind-3-808ecaf3.webp",import.meta.url).href,w:1368,h:675},nc={sources:cc,img:ac},ic={},mc={src:""+new URL("../assets/moment-of-bloom-1-3ec812c6.webp",import.meta.url).href,w:1080,h:533},bc={sources:ic,img:mc},_c={},gc={src:""+new URL("../assets/moment-of-bloom-2-ebb93ab8.webp",import.meta.url).href,w:1080,h:533},wc={sources:_c,img:gc},uc={},pc={src:""+new URL("../assets/moment-of-bloom-3-8f672b6c.webp",import.meta.url).href,w:1080,h:533},lc={sources:uc,img:pc},hc={},fc={src:""+new URL("../assets/moment-of-bloom-4-4b2c7059.webp",import.meta.url).href,w:1368,h:675},$c={sources:hc,img:fc},vc={},dc={src:""+new URL("../assets/oni_s-royale-1-1cb96177.webp",import.meta.url).href,w:1080,h:533},Lc={sources:vc,img:dc},Rc={},Uc={src:""+new URL("../assets/oni_s-royale-2-6f859568.webp",import.meta.url).href,w:1080,h:533},yc={sources:Rc,img:Uc},kc={},Ic={src:""+new URL("../assets/oni_s-royale-3-ba1cbf7d.webp",import.meta.url).href,w:1080,h:533},Dc={sources:kc,img:Ic},zc={},xc={src:""+new URL("../assets/reign-of-serenity-1-4725e678.webp",import.meta.url).href,w:1080,h:533},jc={sources:zc,img:xc},qc={},Bc={src:""+new URL("../assets/reign-of-serenity-2-e24fd12e.webp",import.meta.url).href,w:1080,h:533},Sc={sources:qc,img:Bc},Ec={},Cc={src:""+new URL("../assets/reign-of-serenity-3-d511b483.webp",import.meta.url).href,w:1080,h:533},Ac={sources:Ec,img:Cc},Mc={},Oc={src:""+new URL("../assets/reign-of-serenity-4-6991f176.webp",import.meta.url).href,w:1368,h:675},Tc={sources:Mc,img:Oc},Pc={},Nc={src:""+new URL("../assets/secretum-secretorum-1-d706166d.webp",import.meta.url).href,w:900,h:444},Hc={sources:Pc,img:Nc},Fc={},Wc={src:""+new URL("../assets/secretum-secretorum-2-fa9a2c0a.webp",import.meta.url).href,w:1080,h:533},Vc={sources:Fc,img:Wc},Kc={},Jc={src:""+new URL("../assets/secretum-secretorum-3-440d59f0.webp",import.meta.url).href,w:1080,h:533},Gc={sources:Kc,img:Jc},Qc={},Xc={src:""+new URL("../assets/sparkling-steps-1-5fcf4d7c.webp",import.meta.url).href,w:1080,h:533},Yc={sources:Qc,img:Xc},Zc={},sa={src:""+new URL("../assets/sparkling-steps-2-de30c5bd.webp",import.meta.url).href,w:1080,h:533},ea={sources:Zc,img:sa},ta={},ra={src:""+new URL("../assets/sparkling-steps-3-0f187e1e.webp",import.meta.url).href,w:1080,h:533},oa={sources:ta,img:ra},ca={},aa={src:""+new URL("../assets/sparkling-steps-4-c7ac4ee8.webp",import.meta.url).href,w:1368,h:675},na={sources:ca,img:aa},ia={},ma={src:""+new URL("../assets/tapestry-of-golden-flames-1-5df70956.webp",import.meta.url).href,w:1080,h:533},ba={sources:ia,img:ma},_a={},ga={src:""+new URL("../assets/tapestry-of-golden-flames-2-071126fb.webp",import.meta.url).href,w:1080,h:533},wa={sources:_a,img:ga},ua={},pa={src:""+new URL("../assets/tapestry-of-golden-flames-3-6eb06c78.webp",import.meta.url).href,w:1080,h:533},la={sources:ua,img:pa},ha={},fa={src:""+new URL("../assets/tapestry-of-golden-flames-4-0c57997a.webp",import.meta.url).href,w:1080,h:533},$a={sources:ha,img:fa},va={},da={src:""+new URL("../assets/tapestry-of-golden-flames-5-ed9de042.webp",import.meta.url).href,w:1368,h:675},La={sources:va,img:da},Ra={},Ua={src:""+new URL("../assets/tempestuous-destiny-1-75164658.webp",import.meta.url).href,w:1080,h:533},ya={sources:Ra,img:Ua},ka={},Ia={src:""+new URL("../assets/the-heron_s-court-1-155171f4.webp",import.meta.url).href,w:1080,h:533},Da={sources:ka,img:Ia},za={},xa={src:""+new URL("../assets/the-heron_s-court-2-258bec66.webp",import.meta.url).href,w:1080,h:533},ja={sources:za,img:xa},qa={},Ba={src:""+new URL("../assets/the-heron_s-court-3-c8c67ae7.webp",import.meta.url).href,w:1080,h:533},Sa={sources:qa,img:Ba},Ea={},Ca={src:""+new URL("../assets/the-heron_s-court-4-2177edba.webp",import.meta.url).href,w:1368,h:675},Aa={sources:Ea,img:Ca},Ma={},Oa={src:""+new URL("../assets/the-moongrass-enlightenment-1-69dbb41f.webp",import.meta.url).href,w:1080,h:533},Ta={sources:Ma,img:Oa},Pa={},Na={src:""+new URL("../assets/the-moongrass-enlightenment-2-c80cbb50.webp",import.meta.url).href,w:1368,h:675},Ha={sources:Pa,img:Na},Fa={},Wa={src:""+new URL("../assets/the-transcendent-one-returns-1-36bb84b0.webp",import.meta.url).href,w:1080,h:533},Va={sources:Fa,img:Wa},Ka={},Ja={src:""+new URL("../assets/the-transcendent-one-returns-2-630d5506.webp",import.meta.url).href,w:1080,h:533},Ga={sources:Ka,img:Ja},Qa={},Xa={src:""+new URL("../assets/twilight-arbiter-1-99173f34.webp",import.meta.url).href,w:1080,h:533},Ya={sources:Qa,img:Xa},Za={},sn={src:""+new URL("../assets/twilight-arbiter-2-39cccf25.webp",import.meta.url).href,w:1080,h:533},en={sources:Za,img:sn},tn={},rn={src:""+new URL("../assets/twilight-arbiter-3-25615a9c.webp",import.meta.url).href,w:1368,h:675},on={sources:tn,img:rn},cn={},an={src:""+new URL("../assets/twirling-lotus-1-65762d63.webp",import.meta.url).href,w:1080,h:533},nn={sources:cn,img:an},mn={},bn={src:""+new URL("../assets/twirling-lotus-2-5c67f629.webp",import.meta.url).href,w:1368,h:675},_n={sources:mn,img:bn},gn={},wn={src:""+new URL("../assets/viridescent-vigil-1-83525b2e.webp",import.meta.url).href,w:1080,h:533},un={sources:gn,img:wn},pn={},ln={src:""+new URL("../assets/wanderlust-invocation-1-22dc18af.webp",import.meta.url).href,w:1e3,h:519},hn={sources:pn,img:ln},fn={},$n={src:""+new URL("../assets/wanderlust-invocation-1-22dc18af.webp",import.meta.url).href,w:1e3,h:519},vn={sources:fn,img:$n},dn={},Ln={src:""+new URL("../assets/wanderlust-invocation-2-2abc5b03.webp",import.meta.url).href,w:1e3,h:574},Rn={sources:dn,img:Ln},Un={},yn={src:""+new URL("../assets/adrift-in-the-harbor-1-12cf464c.webp",import.meta.url).href,w:200,h:99},kn={sources:Un,img:yn},In={},Dn={src:""+new URL("../assets/adrift-in-the-harbor-2-2a70c24a.webp",import.meta.url).href,w:200,h:99},zn={sources:In,img:Dn},xn={},jn={src:""+new URL("../assets/adrift-in-the-harbor-3-7e83f5cd.webp",import.meta.url).href,w:200,h:99},qn={sources:xn,img:jn},Bn={},Sn={src:""+new URL("../assets/adrift-in-the-harbor-4-431ae196.webp",import.meta.url).href,w:200,h:113},En={sources:Bn,img:Sn},Cn={},An={src:""+new URL("../assets/auric-blaze-1-cd345231.webp",import.meta.url).href,w:200,h:99},Mn={sources:Cn,img:An},On={},Tn={src:""+new URL("../assets/azure-excursion-1-4ac068c5.webp",import.meta.url).href,w:200,h:99},Pn={sources:On,img:Tn},Nn={},Hn={src:""+new URL("../assets/azure-excursion-2-952f05c2.webp",import.meta.url).href,w:200,h:99},Fn={sources:Nn,img:Hn},Wn={},Vn={src:""+new URL("../assets/azure-excursion-3-ddb4c949.webp",import.meta.url).href,w:200,h:113},Kn={sources:Wn,img:Vn},Jn={},Gn={src:""+new URL("../assets/ballad-in-goblets-1-1b721844.webp",import.meta.url).href,w:200,h:104},Qn={sources:Jn,img:Gn},Xn={},Yn={src:""+new URL("../assets/ballad-in-goblets-2-040f9018.webp",import.meta.url).href,w:200,h:99},Zn={sources:Xn,img:Yn},si={},ei={src:""+new URL("../assets/ballad-in-goblets-3-cc29943e.webp",import.meta.url).href,w:200,h:99},ti={sources:si,img:ei},ri={},oi={src:""+new URL("../assets/ballad-in-goblets-4-b3663da8.webp",import.meta.url).href,w:200,h:99},ci={sources:ri,img:oi},ai={},ni={src:""+new URL("../assets/ballad-in-goblets-5-aef55b6f.webp",import.meta.url).href,w:200,h:99},ii={sources:ai,img:ni},mi={},bi={src:""+new URL("../assets/born-of-ocean-swell-1-ae305d80.webp",import.meta.url).href,w:200,h:99},_i={sources:mi,img:bi},gi={},wi={src:""+new URL("../assets/born-of-ocean-swell-2-497c1f88.webp",import.meta.url).href,w:200,h:99},ui={sources:gi,img:wi},pi={},li={src:""+new URL("../assets/born-of-ocean-swell-3-ddcc8d0c.webp",import.meta.url).href,w:200,h:113},hi={sources:pi,img:li},fi={},$i={src:""+new URL("../assets/caution-in-confidence-1-05f13192.webp",import.meta.url).href,w:200,h:99},vi={sources:fi,img:$i},di={},Li={src:""+new URL("../assets/caution-in-confidence-2-4a130a79.webp",import.meta.url).href,w:200,h:113},Ri={sources:di,img:Li},Ui={},yi={src:""+new URL("../assets/chanson-of-many-waters-1-bd911350.webp",import.meta.url).href,w:200,h:113},ki={sources:Ui,img:yi},Ii={},Di={src:""+new URL("../assets/conjuring-chiaroscuro-1-72030f1d.webp",import.meta.url).href,w:200,h:113},zi={sources:Ii,img:Di},xi={},ji={src:""+new URL("../assets/dance-of-lantern-1-f463694e.webp",import.meta.url).href,w:200,h:99},qi={sources:xi,img:ji},Bi={},Si={src:""+new URL("../assets/decree-of-the-deeps-1-0b924149.webp",import.meta.url).href,w:200,h:113},Ei={sources:Bi,img:Si},Ci={},Ai={src:""+new URL("../assets/discerner-of-enigmas-1-43bf7f01.webp",import.meta.url).href,w:200,h:99},Mi={sources:Ci,img:Ai},Oi={},Ti={src:""+new URL("../assets/discerner-of-enigmas-2-d463d9e8.webp",import.meta.url).href,w:200,h:99},Pi={sources:Oi,img:Ti},Ni={},Hi={src:""+new URL("../assets/discerner-of-enigmas-3-c1cb6447.webp",import.meta.url).href,w:200,h:113},Fi={sources:Ni,img:Hi},Wi={},Vi={src:""+new URL("../assets/drifting-luminescence-1-6ac3522b.webp",import.meta.url).href,w:200,h:99},Ki={sources:Wi,img:Vi},Ji={},Gi={src:""+new URL("../assets/drifting-luminescence-2-694877ec.webp",import.meta.url).href,w:200,h:99},Qi={sources:Ji,img:Gi},Xi={},Yi={src:""+new URL("../assets/drifting-luminescence-3-1252df73.webp",import.meta.url).href,w:200,h:99},Zi={sources:Xi,img:Yi},sm={},em={src:""+new URL("../assets/drifting-luminescence-4-5d942deb.webp",import.meta.url).href,w:200,h:113},tm={sources:sm,img:em},rm={},om={src:""+new URL("../assets/epitome-invocation-1-f0c7e1df.webp",import.meta.url).href,w:200,h:99},cm={sources:rm,img:om},am={},nm={src:""+new URL("../assets/epitome-invocation-10-dbb799e0.webp",import.meta.url).href,w:200,h:99},im={sources:am,img:nm},mm={},bm={src:""+new URL("../assets/epitome-invocation-11-b3405031.webp",import.meta.url).href,w:200,h:99},_m={sources:mm,img:bm},gm={},wm={src:""+new URL("../assets/epitome-invocation-12-443c1f37.webp",import.meta.url).href,w:200,h:99},um={sources:gm,img:wm},pm={},lm={src:""+new URL("../assets/epitome-invocation-13-ed56f67b.webp",import.meta.url).href,w:200,h:99},hm={sources:pm,img:lm},fm={},$m={src:""+new URL("../assets/epitome-invocation-14-3171daa6.webp",import.meta.url).href,w:200,h:99},vm={sources:fm,img:$m},dm={},Lm={src:""+new URL("../assets/epitome-invocation-15-b0b5c79e.webp",import.meta.url).href,w:200,h:99},Rm={sources:dm,img:Lm},Um={},ym={src:""+new URL("../assets/epitome-invocation-16-c8a82f6b.webp",import.meta.url).href,w:200,h:99},km={sources:Um,img:ym},Im={},Dm={src:""+new URL("../assets/epitome-invocation-17-6c1afe6c.webp",import.meta.url).href,w:200,h:99},zm={sources:Im,img:Dm},xm={},jm={src:""+new URL("../assets/epitome-invocation-18-35eee84c.webp",import.meta.url).href,w:200,h:99},qm={sources:xm,img:jm},Bm={},Sm={src:""+new URL("../assets/epitome-invocation-19-eeed922e.webp",import.meta.url).href,w:200,h:99},Em={sources:Bm,img:Sm},Cm={},Am={src:""+new URL("../assets/epitome-invocation-2-8d47edc0.webp",import.meta.url).href,w:200,h:99},Mm={sources:Cm,img:Am},Om={},Tm={src:""+new URL("../assets/epitome-invocation-20-a3fbe0bd.webp",import.meta.url).href,w:200,h:99},Pm={sources:Om,img:Tm},Nm={},Hm={src:""+new URL("../assets/epitome-invocation-21-217a0060.webp",import.meta.url).href,w:200,h:99},Fm={sources:Nm,img:Hm},Wm={},Vm={src:""+new URL("../assets/epitome-invocation-22-3228c0f9.webp",import.meta.url).href,w:200,h:99},Km={sources:Wm,img:Vm},Jm={},Gm={src:""+new URL("../assets/epitome-invocation-23-5d2d1512.webp",import.meta.url).href,w:200,h:99},Qm={sources:Jm,img:Gm},Xm={},Ym={src:""+new URL("../assets/epitome-invocation-24-e9cf4f58.webp",import.meta.url).href,w:200,h:99},Zm={sources:Xm,img:Ym},sb={},eb={src:""+new URL("../assets/epitome-invocation-25-0fb95445.webp",import.meta.url).href,w:200,h:99},tb={sources:sb,img:eb},rb={},ob={src:""+new URL("../assets/epitome-invocation-26-5efbd74b.webp",import.meta.url).href,w:200,h:99},cb={sources:rb,img:ob},ab={},nb={src:""+new URL("../assets/epitome-invocation-27-df2469b1.webp",import.meta.url).href,w:200,h:99},ib={sources:ab,img:nb},mb={},bb={src:""+new URL("../assets/epitome-invocation-28-3eb79526.webp",import.meta.url).href,w:200,h:99},_b={sources:mb,img:bb},gb={},wb={src:""+new URL("../assets/epitome-invocation-29-a1cab21d.webp",import.meta.url).href,w:200,h:99},ub={sources:gb,img:wb},pb={},lb={src:""+new URL("../assets/epitome-invocation-3-03016c9b.webp",import.meta.url).href,w:200,h:99},hb={sources:pb,img:lb},fb={},$b={src:""+new URL("../assets/epitome-invocation-30-d284c17e.webp",import.meta.url).href,w:200,h:99},vb={sources:fb,img:$b},db={},Lb={src:""+new URL("../assets/epitome-invocation-31-d5a12212.webp",import.meta.url).href,w:200,h:99},Rb={sources:db,img:Lb},Ub={},yb={src:""+new URL("../assets/epitome-invocation-32-4c552718.webp",import.meta.url).href,w:200,h:99},kb={sources:Ub,img:yb},Ib={},Db={src:""+new URL("../assets/epitome-invocation-33-38ddb639.webp",import.meta.url).href,w:200,h:99},zb={sources:Ib,img:Db},xb={},jb={src:""+new URL("../assets/epitome-invocation-34-da3f0eb6.webp",import.meta.url).href,w:200,h:99},qb={sources:xb,img:jb},Bb={},Sb={src:""+new URL("../assets/epitome-invocation-35-235ff674.webp",import.meta.url).href,w:200,h:99},Eb={sources:Bb,img:Sb},Cb={},Ab={src:""+new URL("../assets/epitome-invocation-36-6603723e.webp",import.meta.url).href,w:200,h:99},Mb={sources:Cb,img:Ab},Ob={},Tb={src:""+new URL("../assets/epitome-invocation-37-6abf0877.webp",import.meta.url).href,w:200,h:99},Pb={sources:Ob,img:Tb},Nb={},Hb={src:""+new URL("../assets/epitome-invocation-38-96f7108c.webp",import.meta.url).href,w:200,h:99},Fb={sources:Nb,img:Hb},Wb={},Vb={src:""+new URL("../assets/epitome-invocation-39-578d25ac.webp",import.meta.url).href,w:200,h:113},Kb={sources:Wb,img:Vb},Jb={},Gb={src:""+new URL("../assets/epitome-invocation-4-487c7dd2.webp",import.meta.url).href,w:200,h:99},Qb={sources:Jb,img:Gb},Xb={},Yb={src:""+new URL("../assets/epitome-invocation-40-2363bd29.webp",import.meta.url).href,w:200,h:99},Zb={sources:Xb,img:Yb},s_={},e_={src:""+new URL("../assets/epitome-invocation-41-ce1af924.webp",import.meta.url).href,w:200,h:99},t_={sources:s_,img:e_},r_={},o_={src:""+new URL("../assets/epitome-invocation-42-5a656170.webp",import.meta.url).href,w:200,h:99},c_={sources:r_,img:o_},a_={},n_={src:""+new URL("../assets/epitome-invocation-43-96a18174.webp",import.meta.url).href,w:200,h:99},i_={sources:a_,img:n_},m_={},b_={src:""+new URL("../assets/epitome-invocation-44-78f45642.webp",import.meta.url).href,w:203,h:100},__={sources:m_,img:b_},g_={},w_={src:""+new URL("../assets/epitome-invocation-45-e5a38794.webp",import.meta.url).href,w:178,h:100},u_={sources:g_,img:w_},p_={},l_={src:""+new URL("../assets/epitome-invocation-46-14f43e34.webp",import.meta.url).href,w:200,h:113},h_={sources:p_,img:l_},f_={},$_={src:""+new URL("../assets/epitome-invocation-47-408b7cf6.webp",import.meta.url).href,w:200,h:99},v_={sources:f_,img:$_},d_={},L_={src:""+new URL("../assets/epitome-invocation-48-0d98ddc0.webp",import.meta.url).href,w:200,h:113},R_={sources:d_,img:L_},U_={},y_={src:""+new URL("../assets/epitome-invocation-49-62bf8151.webp",import.meta.url).href,w:200,h:113},k_={sources:U_,img:y_},I_={},D_={src:""+new URL("../assets/epitome-invocation-5-ccdb7b1a.webp",import.meta.url).href,w:200,h:99},z_={sources:I_,img:D_},x_={},j_={src:""+new URL("../assets/epitome-invocation-50-b1fee88e.webp",import.meta.url).href,w:200,h:113},q_={sources:x_,img:j_},B_={},S_={src:""+new URL("../assets/epitome-invocation-51-7f22fab6.webp",import.meta.url).href,w:200,h:113},E_={sources:B_,img:S_},C_={},A_={src:""+new URL("../assets/epitome-invocation-52-da79635b.webp",import.meta.url).href,w:200,h:113},M_={sources:C_,img:A_},O_={},T_={src:""+new URL("../assets/epitome-invocation-53-13bee977.webp",import.meta.url).href,w:200,h:113},P_={sources:O_,img:T_},N_={},H_={src:""+new URL("../assets/epitome-invocation-54-cdac28d2.webp",import.meta.url).href,w:200,h:99},F_={sources:N_,img:H_},W_={},V_={src:""+new URL("../assets/epitome-invocation-55-373a90d6.webp",import.meta.url).href,w:200,h:113},K_={sources:W_,img:V_},J_={},G_={src:""+new URL("../assets/epitome-invocation-56-053aaeb2.webp",import.meta.url).href,w:200,h:113},Q_={sources:J_,img:G_},X_={},Y_={src:""+new URL("../assets/epitome-invocation-57-d999ab85.webp",import.meta.url).href,w:200,h:113},Z_={sources:X_,img:Y_},sg={},eg={src:""+new URL("../assets/epitome-invocation-58-7682ae63.webp",import.meta.url).href,w:200,h:113},tg={sources:sg,img:eg},rg={},og={src:""+new URL("../assets/epitome-invocation-6-86f6fca7.webp",import.meta.url).href,w:200,h:99},cg={sources:rg,img:og},ag={},ng={src:""+new URL("../assets/epitome-invocation-7-a19a8f6c.webp",import.meta.url).href,w:200,h:99},ig={sources:ag,img:ng},mg={},bg={src:""+new URL("../assets/epitome-invocation-8-4b7ba21f.webp",import.meta.url).href,w:200,h:99},_g={sources:mg,img:bg},gg={},wg={src:""+new URL("../assets/epitome-invocation-9-d83afe5e.webp",import.meta.url).href,w:200,h:99},ug={sources:gg,img:wg},pg={},lg={src:""+new URL("../assets/everbloom-violet-1-07751188.webp",import.meta.url).href,w:200,h:99},hg={sources:pg,img:lg},fg={},$g={src:""+new URL("../assets/everbloom-violet-2-a0e10b82.webp",import.meta.url).href,w:200,h:99},vg={sources:fg,img:$g},dg={},Lg={src:""+new URL("../assets/everbloom-violet-3-6b50dfaf.webp",import.meta.url).href,w:200,h:99},Rg={sources:dg,img:Lg},Ug={},yg={src:""+new URL("../assets/farewell-of-snezhnaya-1-dff759c0.webp",import.meta.url).href,w:200,h:99},kg={sources:Ug,img:yg},Ig={},Dg={src:""+new URL("../assets/farewell-of-snezhnaya-2-ea196522.webp",import.meta.url).href,w:200,h:99},zg={sources:Ig,img:Dg},xg={},jg={src:""+new URL("../assets/farewell-of-snezhnaya-3-81a14e49.webp",import.meta.url).href,w:200,h:99},qg={sources:xg,img:jg},Bg={},Sg={src:""+new URL("../assets/farewell-of-snezhnaya-4-9d26ce6b.webp",import.meta.url).href,w:200,h:99},Eg={sources:Bg,img:Sg},Cg={},Ag={src:""+new URL("../assets/farewell-of-snezhnaya-5-dfaad745.webp",import.meta.url).href,w:200,h:113},Mg={sources:Cg,img:Ag},Og={},Tg={src:""+new URL("../assets/from-ashes-reborn-1-0b5606ab.webp",import.meta.url).href,w:200,h:113},Pg={sources:Og,img:Tg},Ng={},Hg={src:""+new URL("../assets/from-ashes-reborn-2-5919da44.webp",import.meta.url).href,w:200,h:113},Fg={sources:Ng,img:Hg},Wg={},Vg={src:""+new URL("../assets/gentry-of-hermitage-1-e26cbcba.webp",import.meta.url).href,w:200,h:99},Kg={sources:Wg,img:Vg},Jg={},Gg={src:""+new URL("../assets/gentry-of-hermitage-2-45b839d7.webp",import.meta.url).href,w:200,h:99},Qg={sources:Jg,img:Gg},Xg={},Yg={src:""+new URL("../assets/gentry-of-hermitage-3-4b3b75aa.webp",import.meta.url).href,w:200,h:99},Zg={sources:Xg,img:Yg},sw={},ew={src:""+new URL("../assets/gentry-of-hermitage-4-9f5d4145.webp",import.meta.url).href,w:200,h:99},tw={sources:sw,img:ew},rw={},ow={src:""+new URL("../assets/gentry-of-hermitage-5-4bc8c8c0.webp",import.meta.url).href,w:200,h:113},cw={sources:rw,img:ow},aw={},nw={src:""+new URL("../assets/immaculate-pulse-1-60979827.webp",import.meta.url).href,w:200,h:113},iw={sources:aw,img:nw},mw={},bw={src:""+new URL("../assets/immaculate-pulse-2-aa9feb12.webp",import.meta.url).href,w:200,h:113},_w={sources:mw,img:bw},gw={},ww={src:""+new URL("../assets/in-the-name-of-the-rosula-1-a0b8fb35.webp",import.meta.url).href,w:200,h:113},uw={sources:gw,img:ww},pw={},lw={src:""+new URL("../assets/invitation-to-mundane-life-1-46104f7a.webp",import.meta.url).href,w:200,h:99},hw={sources:pw,img:lw},fw={},$w={src:""+new URL("../assets/invitation-to-mundane-life-2-2a737af5.webp",import.meta.url).href,w:200,h:99},vw={sources:fw,img:$w},dw={},Lw={src:""+new URL("../assets/invitation-to-mundane-life-3-23e2857b.webp",import.meta.url).href,w:200,h:99},Rw={sources:dw,img:Lw},Uw={},yw={src:""+new URL("../assets/invitation-to-mundane-life-4-adca74b4.webp",import.meta.url).href,w:200,h:99},kw={sources:Uw,img:yw},Iw={},Dw={src:""+new URL("../assets/leaves-in-the-wind-1-40942e11.webp",import.meta.url).href,w:200,h:99},zw={sources:Iw,img:Dw},xw={},jw={src:""+new URL("../assets/leaves-in-the-wind-2-8bb418c3.webp",import.meta.url).href,w:250,h:123},qw={sources:xw,img:jw},Bw={},Sw={src:""+new URL("../assets/leaves-in-the-wind-3-6d6dea40.webp",import.meta.url).href,w:200,h:113},Ew={sources:Bw,img:Sw},Cw={},Aw={src:""+new URL("../assets/moment-of-bloom-1-ea705724.webp",import.meta.url).href,w:200,h:99},Mw={sources:Cw,img:Aw},Ow={},Tw={src:""+new URL("../assets/moment-of-bloom-2-a5e9c685.webp",import.meta.url).href,w:200,h:99},Pw={sources:Ow,img:Tw},Nw={},Hw={src:""+new URL("../assets/moment-of-bloom-3-e95a1bd0.webp",import.meta.url).href,w:200,h:99},Fw={sources:Nw,img:Hw},Ww={},Vw={src:""+new URL("../assets/moment-of-bloom-4-4a85f1eb.webp",import.meta.url).href,w:200,h:113},Kw={sources:Ww,img:Vw},Jw={},Gw={src:""+new URL("../assets/oni_s-royale-1-a971ba7c.webp",import.meta.url).href,w:200,h:99},Qw={sources:Jw,img:Gw},Xw={},Yw={src:""+new URL("../assets/oni_s-royale-2-6a07fede.webp",import.meta.url).href,w:200,h:99},Zw={sources:Xw,img:Yw},su={},eu={src:""+new URL("../assets/oni_s-royale-3-7e1ad290.webp",import.meta.url).href,w:200,h:113},tu={sources:su,img:eu},ru={},ou={src:""+new URL("../assets/reign-of-serenity-1-baf31a2d.webp",import.meta.url).href,w:200,h:99},cu={sources:ru,img:ou},au={},nu={src:""+new URL("../assets/reign-of-serenity-2-ccb25bcc.webp",import.meta.url).href,w:200,h:99},iu={sources:au,img:nu},mu={},bu={src:""+new URL("../assets/reign-of-serenity-3-11ff0135.webp",import.meta.url).href,w:200,h:99},_u={sources:mu,img:bu},gu={},wu={src:""+new URL("../assets/reign-of-serenity-4-e1acf995.webp",import.meta.url).href,w:200,h:113},uu={sources:gu,img:wu},pu={},lu={src:""+new URL("../assets/secretum-secretorum-1-d741a395.webp",import.meta.url).href,w:200,h:99},hu={sources:pu,img:lu},fu={},$u={src:""+new URL("../assets/secretum-secretorum-2-ad2eb58c.webp",import.meta.url).href,w:200,h:99},vu={sources:fu,img:$u},du={},Lu={src:""+new URL("../assets/secretum-secretorum-3-5d91d63f.webp",import.meta.url).href,w:200,h:99},Ru={sources:du,img:Lu},Uu={},yu={src:""+new URL("../assets/sparkling-steps-1-55a29809.webp",import.meta.url).href,w:200,h:99},ku={sources:Uu,img:yu},Iu={},Du={src:""+new URL("../assets/sparkling-steps-2-77c60abf.webp",import.meta.url).href,w:200,h:99},zu={sources:Iu,img:Du},xu={},ju={src:""+new URL("../assets/sparkling-steps-3-67471cc1.webp",import.meta.url).href,w:250,h:123},qu={sources:xu,img:ju},Bu={},Su={src:""+new URL("../assets/sparkling-steps-4-b7b62efc.webp",import.meta.url).href,w:200,h:113},Eu={sources:Bu,img:Su},Cu={},Au={src:""+new URL("../assets/tapestry-of-golden-flames-1-3c64537c.webp",import.meta.url).href,w:200,h:99},Mu={sources:Cu,img:Au},Ou={},Tu={src:""+new URL("../assets/tapestry-of-golden-flames-2-e1418a2c.webp",import.meta.url).href,w:200,h:99},Pu={sources:Ou,img:Tu},Nu={},Hu={src:""+new URL("../assets/tapestry-of-golden-flames-3-623663e7.webp",import.meta.url).href,w:200,h:99},Fu={sources:Nu,img:Hu},Wu={},Vu={src:""+new URL("../assets/tapestry-of-golden-flames-4-8b74dd09.webp",import.meta.url).href,w:200,h:99},Ku={sources:Wu,img:Vu},Ju={},Gu={src:""+new URL("../assets/tapestry-of-golden-flames-5-c058ea72.webp",import.meta.url).href,w:200,h:113},Qu={sources:Ju,img:Gu},Xu={},Yu={src:""+new URL("../assets/tempestuous-destiny-1-0decb86e.webp",import.meta.url).href,w:200,h:99},Zu={sources:Xu,img:Yu},sp={},ep={src:""+new URL("../assets/the-heron_s-court-1-b787b834.webp",import.meta.url).href,w:200,h:99},tp={sources:sp,img:ep},rp={},op={src:""+new URL("../assets/the-heron_s-court-2-671dc5c7.webp",import.meta.url).href,w:200,h:99},cp={sources:rp,img:op},ap={},np={src:""+new URL("../assets/the-heron_s-court-3-d816d878.webp",import.meta.url).href,w:200,h:99},ip={sources:ap,img:np},mp={},bp={src:""+new URL("../assets/the-heron_s-court-4-5a3f75d6.webp",import.meta.url).href,w:200,h:113},_p={sources:mp,img:bp},gp={},wp={src:""+new URL("../assets/the-moongrass-enlightenment-1-57f4d12f.webp",import.meta.url).href,w:200,h:99},up={sources:gp,img:wp},pp={},lp={src:""+new URL("../assets/the-moongrass-enlightenment-2-1b1a0926.webp",import.meta.url).href,w:178,h:100},hp={sources:pp,img:lp},fp={},$p={src:""+new URL("../assets/the-transcendent-one-returns-1-44bcf6c3.webp",import.meta.url).href,w:200,h:99},vp={sources:fp,img:$p},dp={},Lp={src:""+new URL("../assets/the-transcendent-one-returns-2-9a28233c.webp",import.meta.url).href,w:200,h:113},Rp={sources:dp,img:Lp},Up={},yp={src:""+new URL("../assets/twilight-arbiter-1-b95da829.webp",import.meta.url).href,w:200,h:99},kp={sources:Up,img:yp},Ip={},Dp={src:""+new URL("../assets/twilight-arbiter-2-9cd1e3a6.webp",import.meta.url).href,w:200,h:99},zp={sources:Ip,img:Dp},xp={},jp={src:""+new URL("../assets/twilight-arbiter-3-953321df.webp",import.meta.url).href,w:200,h:113},qp={sources:xp,img:jp},Bp={},Sp={src:""+new URL("../assets/twirling-lotus-1-911c7533.webp",import.meta.url).href,w:200,h:99},Ep={sources:Bp,img:Sp},Cp={},Ap={src:""+new URL("../assets/twirling-lotus-2-3cf0120a.webp",import.meta.url).href,w:178,h:100},Mp={sources:Cp,img:Ap},Op={},Tp={src:""+new URL("../assets/viridescent-vigil-1-4f62b8ed.webp",import.meta.url).href,w:200,h:99},Pp={sources:Op,img:Tp},Np={},Hp={src:""+new URL("../assets/epitome-invocation-1-eb670d86.webp",import.meta.url).href,w:1080,h:533},Fp={sources:Np,img:Hp},Wp={},Vp={src:""+new URL("../assets/epitome-invocation-10-3fc22ca3.webp",import.meta.url).href,w:1080,h:533},Kp={sources:Wp,img:Vp},Jp={},Gp={src:""+new URL("../assets/epitome-invocation-11-aec71a51.webp",import.meta.url).href,w:1080,h:533},Qp={sources:Jp,img:Gp},Xp={},Yp={src:""+new URL("../assets/epitome-invocation-12-574eceea.webp",import.meta.url).href,w:1080,h:533},Zp={sources:Xp,img:Yp},sl={},el={src:""+new URL("../assets/epitome-invocation-13-a3d71d43.webp",import.meta.url).href,w:1080,h:533},tl={sources:sl,img:el},rl={},ol={src:""+new URL("../assets/epitome-invocation-14-c10ac33b.webp",import.meta.url).href,w:1080,h:533},cl={sources:rl,img:ol},al={},nl={src:""+new URL("../assets/epitome-invocation-15-b409e4d0.webp",import.meta.url).href,w:1080,h:533},il={sources:al,img:nl},ml={},bl={src:""+new URL("../assets/epitome-invocation-16-7ffbeb95.webp",import.meta.url).href,w:1080,h:533},_l={sources:ml,img:bl},gl={},wl={src:""+new URL("../assets/epitome-invocation-17-5f3047f2.webp",import.meta.url).href,w:1080,h:533},ul={sources:gl,img:wl},pl={},ll={src:""+new URL("../assets/epitome-invocation-18-489ef503.webp",import.meta.url).href,w:1080,h:533},hl={sources:pl,img:ll},fl={},$l={src:""+new URL("../assets/epitome-invocation-19-0cdc967f.webp",import.meta.url).href,w:1080,h:533},vl={sources:fl,img:$l},dl={},Ll={src:""+new URL("../assets/epitome-invocation-2-41b5c6a7.webp",import.meta.url).href,w:1080,h:533},Rl={sources:dl,img:Ll},Ul={},yl={src:""+new URL("../assets/epitome-invocation-20-5410f2bf.webp",import.meta.url).href,w:1080,h:533},kl={sources:Ul,img:yl},Il={},Dl={src:""+new URL("../assets/epitome-invocation-21-82a9624f.webp",import.meta.url).href,w:1080,h:533},zl={sources:Il,img:Dl},xl={},jl={src:""+new URL("../assets/epitome-invocation-22-792399e2.webp",import.meta.url).href,w:1080,h:533},ql={sources:xl,img:jl},Bl={},Sl={src:""+new URL("../assets/epitome-invocation-23-7120a2a9.webp",import.meta.url).href,w:1080,h:533},El={sources:Bl,img:Sl},Cl={},Al={src:""+new URL("../assets/epitome-invocation-24-6d6a2f59.webp",import.meta.url).href,w:1080,h:533},Ml={sources:Cl,img:Al},Ol={},Tl={src:""+new URL("../assets/epitome-invocation-25-8e151cab.webp",import.meta.url).href,w:1080,h:533},Pl={sources:Ol,img:Tl},Nl={},Hl={src:""+new URL("../assets/epitome-invocation-26-5b53582c.webp",import.meta.url).href,w:1080,h:533},Fl={sources:Nl,img:Hl},Wl={},Vl={src:""+new URL("../assets/epitome-invocation-27-e5e53653.webp",import.meta.url).href,w:1080,h:533},Kl={sources:Wl,img:Vl},Jl={},Gl={src:""+new URL("../assets/epitome-invocation-28-38212807.webp",import.meta.url).href,w:1080,h:533},Ql={sources:Jl,img:Gl},Xl={},Yl={src:""+new URL("../assets/epitome-invocation-29-ed54ee28.webp",import.meta.url).href,w:1080,h:533},Zl={sources:Xl,img:Yl},sh={},eh={src:""+new URL("../assets/epitome-invocation-3-4e3b5dc1.webp",import.meta.url).href,w:917,h:453},th={sources:sh,img:eh},rh={},oh={src:""+new URL("../assets/epitome-invocation-30-7f69070f.webp",import.meta.url).href,w:1080,h:533},ch={sources:rh,img:oh},ah={},nh={src:""+new URL("../assets/epitome-invocation-31-f2deea2c.webp",import.meta.url).href,w:1080,h:533},ih={sources:ah,img:nh},mh={},bh={src:""+new URL("../assets/epitome-invocation-32-6d08f2a9.webp",import.meta.url).href,w:1080,h:533},_h={sources:mh,img:bh},gh={},wh={src:""+new URL("../assets/epitome-invocation-33-11f4c788.webp",import.meta.url).href,w:1080,h:533},uh={sources:gh,img:wh},ph={},lh={src:""+new URL("../assets/epitome-invocation-34-867549f2.webp",import.meta.url).href,w:1080,h:533},hh={sources:ph,img:lh},fh={},$h={src:""+new URL("../assets/epitome-invocation-35-bbfc84a1.webp",import.meta.url).href,w:1080,h:533},vh={sources:fh,img:$h},dh={},Lh={src:""+new URL("../assets/epitome-invocation-36-9e525db9.webp",import.meta.url).href,w:1080,h:533},Rh={sources:dh,img:Lh},Uh={},yh={src:""+new URL("../assets/epitome-invocation-37-a42f3023.webp",import.meta.url).href,w:1080,h:533},kh={sources:Uh,img:yh},Ih={},Dh={src:""+new URL("../assets/epitome-invocation-38-581a89ba.webp",import.meta.url).href,w:1080,h:533},zh={sources:Ih,img:Dh},xh={},jh={src:""+new URL("../assets/epitome-invocation-39-7f46a024.webp",import.meta.url).href,w:1366,h:674},qh={sources:xh,img:jh},Bh={},Sh={src:""+new URL("../assets/epitome-invocation-4-9d6d7832.webp",import.meta.url).href,w:1080,h:533},Eh={sources:Bh,img:Sh},Ch={},Ah={src:""+new URL("../assets/epitome-invocation-40-748cac52.webp",import.meta.url).href,w:1080,h:533},Mh={sources:Ch,img:Ah},Oh={},Th={src:""+new URL("../assets/epitome-invocation-41-54b657dc.webp",import.meta.url).href,w:1080,h:533},Ph={sources:Oh,img:Th},Nh={},Hh={src:""+new URL("../assets/epitome-invocation-42-f766c738.webp",import.meta.url).href,w:1080,h:533},Fh={sources:Nh,img:Hh},Wh={},Vh={src:""+new URL("../assets/epitome-invocation-43-716aea11.webp",import.meta.url).href,w:1080,h:533},Kh={sources:Wh,img:Vh},Jh={},Gh={src:""+new URL("../assets/epitome-invocation-44-bd4f9697.webp",import.meta.url).href,w:1080,h:533},Qh={sources:Jh,img:Gh},Xh={},Yh={src:""+new URL("../assets/epitome-invocation-45-7c30c469.webp",import.meta.url).href,w:1368,h:675},Zh={sources:Xh,img:Yh},s0={},e0={src:""+new URL("../assets/epitome-invocation-46-e9a2324e.webp",import.meta.url).href,w:1368,h:675},t0={sources:s0,img:e0},r0={},o0={src:""+new URL("../assets/epitome-invocation-47-6a4b7fc9.webp",import.meta.url).href,w:1080,h:533},c0={sources:r0,img:o0},a0={},n0={src:""+new URL("../assets/epitome-invocation-48-6f466a99.webp",import.meta.url).href,w:1368,h:675},i0={sources:a0,img:n0},m0={},b0={src:""+new URL("../assets/epitome-invocation-49-63edf049.webp",import.meta.url).href,w:1368,h:675},_0={sources:m0,img:b0},g0={},w0={src:""+new URL("../assets/epitome-invocation-5-2bbefad1.webp",import.meta.url).href,w:1080,h:533},u0={sources:g0,img:w0},p0={},l0={src:""+new URL("../assets/epitome-invocation-50-18ea40b3.webp",import.meta.url).href,w:1368,h:675},h0={sources:p0,img:l0},f0={},$0={src:""+new URL("../assets/epitome-invocation-51-ad87a00e.webp",import.meta.url).href,w:1368,h:675},v0={sources:f0,img:$0},d0={},L0={src:""+new URL("../assets/epitome-invocation-52-20476d34.webp",import.meta.url).href,w:1368,h:675},R0={sources:d0,img:L0},U0={},y0={src:""+new URL("../assets/epitome-invocation-53-38e488a0.webp",import.meta.url).href,w:1368,h:675},k0={sources:U0,img:y0},I0={},D0={src:""+new URL("../assets/epitome-invocation-54-e608a30e.webp",import.meta.url).href,w:1080,h:533},z0={sources:I0,img:D0},x0={},j0={src:""+new URL("../assets/epitome-invocation-55-e5875cd3.webp",import.meta.url).href,w:1368,h:675},q0={sources:x0,img:j0},B0={},S0={src:""+new URL("../assets/epitome-invocation-56-0bd0a0ae.webp",import.meta.url).href,w:1368,h:675},E0={sources:B0,img:S0},C0={},A0={src:""+new URL("../assets/epitome-invocation-57-eeb37f22.webp",import.meta.url).href,w:1368,h:675},M0={sources:C0,img:A0},O0={},T0={src:""+new URL("../assets/epitome-invocation-58-6828ac1d.webp",import.meta.url).href,w:1368,h:675},P0={sources:O0,img:T0},N0={},H0={src:""+new URL("../assets/epitome-invocation-6-aa995dfa.webp",import.meta.url).href,w:1080,h:533},F0={sources:N0,img:H0},W0={},V0={src:""+new URL("../assets/epitome-invocation-7-f863dff6.webp",import.meta.url).href,w:1080,h:533},K0={sources:W0,img:V0},J0={},G0={src:""+new URL("../assets/epitome-invocation-8-aa8fba89.webp",import.meta.url).href,w:1080,h:533},Q0={sources:J0,img:G0},X0={},Y0={src:""+new URL("../assets/epitome-invocation-9-6ee83cf2.webp",import.meta.url).href,w:1080,h:533},Z0={sources:X0,img:Y0},s1={},e1={src:""+new URL("../assets/albedo-eeb4ddfd.webp",import.meta.url).href,w:250,h:152},t1={sources:s1,img:e1},r1={},o1={src:""+new URL("../assets/alhaitham-3309c925.webp",import.meta.url).href,w:250,h:187},c1={sources:r1,img:o1},a1={},n1={src:""+new URL("../assets/arataki-itto-9db1c47b.webp",import.meta.url).href,w:250,h:152},i1={sources:a1,img:n1},m1={},b1={src:""+new URL("../assets/baizhu-09c1d81d.webp",import.meta.url).href,w:200,h:133},_1={sources:m1,img:b1},g1={},w1={src:""+new URL("../assets/cyno-016ed971.webp",import.meta.url).href,w:619,h:293},u1={sources:g1,img:w1},p1={},l1={src:""+new URL("../assets/dehya-2088c690.webp",import.meta.url).href,w:250,h:141},h1={sources:p1,img:l1},f1={},$1={src:""+new URL("../assets/eula-02a08e5a.webp",import.meta.url).href,w:250,h:153},v1={sources:f1,img:$1},d1={},L1={src:""+new URL("../assets/furina-74469077.webp",import.meta.url).href,w:250,h:140},R1={sources:d1,img:L1},U1={},y1={src:""+new URL("../assets/ganyu-4e889cee.webp",import.meta.url).href,w:250,h:125},k1={sources:U1,img:y1},I1={},D1={src:""+new URL("../assets/hu-tao-6dd9d54b.webp",import.meta.url).href,w:250,h:154},z1={sources:I1,img:D1},x1={},j1={src:""+new URL("../assets/jean-0b9694de.webp",import.meta.url).href,w:250,h:224},q1={sources:x1,img:j1},B1={},S1={src:""+new URL("../assets/kaedehara-kazuha-687f3033.webp",import.meta.url).href,w:250,h:181},E1={sources:B1,img:S1},C1={},A1={src:""+new URL("../assets/kamisato-ayaka-f6465f0f.webp",import.meta.url).href,w:250,h:190},M1={sources:C1,img:A1},O1={},T1={src:""+new URL("../assets/kamisato-ayato-dc5807e6.webp",import.meta.url).href,w:250,h:136},P1={sources:O1,img:T1},N1={},H1={src:""+new URL("../assets/keqing-e17aafe9.webp",import.meta.url).href,w:250,h:141},F1={sources:N1,img:H1},W1={},V1={src:""+new URL("../assets/klee-10e7a03a.webp",import.meta.url).href,w:250,h:200},K1={sources:W1,img:V1},J1={},G1={src:""+new URL("../assets/lyney-a3e75c4b.webp",import.meta.url).href,w:200,h:137},Q1={sources:J1,img:G1},X1={},Y1={src:""+new URL("../assets/nahida-0bba8001.webp",import.meta.url).href,w:200,h:112},Z1={sources:X1,img:Y1},sf={},ef={src:""+new URL("../assets/navia-23d105d1.webp",import.meta.url).href,w:250,h:127},tf={sources:sf,img:ef},rf={},of={src:""+new URL("../assets/neuvillette-43e94c55.webp",import.meta.url).href,w:250,h:197},cf={sources:rf,img:of},af={},nf={src:""+new URL("../assets/nilou-4f53188c.webp",import.meta.url).href,w:250,h:145},mf={sources:af,img:nf},bf={},_f={src:""+new URL("../assets/noelle-e18a9713.webp",import.meta.url).href,w:200,h:138},gf={sources:bf,img:_f},wf={},uf={src:""+new URL("../assets/qiqi-5cb14a15.webp",import.meta.url).href,w:200,h:159},pf={sources:wf,img:uf},lf={},hf={src:""+new URL("../assets/raiden-shogun-d489472a.webp",import.meta.url).href,w:200,h:113},ff={sources:lf,img:hf},$f={},vf={src:""+new URL("../assets/sangonomiya-kokomi-847d863a.webp",import.meta.url).href,w:303,h:130},df={sources:$f,img:vf},Lf={},Rf={src:""+new URL("../assets/shenhe-2a275ea1.webp",import.meta.url).href,w:250,h:182},Uf={sources:Lf,img:Rf},yf={},kf={src:""+new URL("../assets/tartaglia-c7fed325.webp",import.meta.url).href,w:250,h:155},If={sources:yf,img:kf},Df={},zf={src:""+new URL("../assets/tighnari-b7f80264.webp",import.meta.url).href,w:278,h:219},xf={sources:Df,img:zf},jf={},qf={src:""+new URL("../assets/venti-400d3bc0.webp",import.meta.url).href,w:250,h:130},Bf={sources:jf,img:qf},Sf={},Ef={src:""+new URL("../assets/wanderer-821029a2.webp",import.meta.url).href,w:250,h:141},Cf={sources:Sf,img:Ef},Af={},Mf={src:""+new URL("../assets/wriothesley-4cd21289.webp",import.meta.url).href,w:250,h:141},Of={sources:Af,img:Mf},Tf={},Pf={src:""+new URL("../assets/xiao-80ccfa0f.webp",import.meta.url).href,w:250,h:196},Nf={sources:Tf,img:Pf},Hf={},Ff={src:""+new URL("../assets/yae-miko-3c2a217b.webp",import.meta.url).href,w:250,h:141},Wf={sources:Hf,img:Ff},Vf={},Kf={src:""+new URL("../assets/yelan-101c5019.webp",import.meta.url).href,w:250,h:191},Jf={sources:Vf,img:Kf},Gf={},Qf={src:""+new URL("../assets/yoimiya-1cb483cd.webp",import.meta.url).href,w:200,h:126},Xf={sources:Gf,img:Qf},Yf={},Zf={src:""+new URL("../assets/zhongli-5a51dd17.webp",import.meta.url).href,w:250,h:206},s2={sources:Yf,img:Zf},e2={},t2={src:""+new URL("../assets/amber-d0b1400c.webp",import.meta.url).href,w:256,h:256},r2={sources:e2,img:t2},o2={},c2={src:""+new URL("../assets/barbara-8fdf01b9.webp",import.meta.url).href,w:256,h:256},a2={sources:o2,img:c2},n2={},i2={src:""+new URL("../assets/beidou-14b39f56.webp",import.meta.url).href,w:256,h:256},m2={sources:n2,img:i2},b2={},_2={src:""+new URL("../assets/bennett-5202eecd.webp",import.meta.url).href,w:256,h:256},g2={sources:b2,img:_2},w2={},u2={src:""+new URL("../assets/candace-b6a3df39.webp",import.meta.url).href,w:232,h:256},p2={sources:w2,img:u2},l2={},h2={src:""+new URL("../assets/charlotte-ce6f28f1.webp",import.meta.url).href,w:256,h:256},f2={sources:l2,img:h2},$2={},v2={src:""+new URL("../assets/chevreuse-9f7e1325.webp",import.meta.url).href,w:256,h:256},d2={sources:$2,img:v2},L2={},R2={src:""+new URL("../assets/chongyun-1a43cddd.webp",import.meta.url).href,w:256,h:256},U2={sources:L2,img:R2},y2={},k2={src:""+new URL("../assets/collei-7edcd0f6.webp",import.meta.url).href,w:233,h:256},I2={sources:y2,img:k2},D2={},z2={src:""+new URL("../assets/diona-49e255ab.webp",import.meta.url).href,w:256,h:256},x2={sources:D2,img:z2},j2={},q2={src:""+new URL("../assets/dori-525ef2a3.webp",import.meta.url).href,w:246,h:256},B2={sources:j2,img:q2},S2={},E2={src:""+new URL("../assets/faruzan-c31e94d3.webp",import.meta.url).href,w:256,h:251},C2={sources:S2,img:E2},A2={},M2={src:""+new URL("../assets/fischl-80d20522.webp",import.meta.url).href,w:256,h:256},O2={sources:A2,img:M2},T2={},P2={src:""+new URL("../assets/freminet-bc38fa75.webp",import.meta.url).href,w:255,h:256},N2={sources:T2,img:P2},H2={},F2={src:""+new URL("../assets/gorou-8d259071.webp",import.meta.url).href,w:239,h:256},W2={sources:H2,img:F2},V2={},K2={src:""+new URL("../assets/kaeya-373b9b8b.webp",import.meta.url).href,w:256,h:256},J2={sources:V2,img:K2},G2={},Q2={src:""+new URL("../assets/kaveh-3184710d.webp",import.meta.url).href,w:256,h:256},X2={sources:G2,img:Q2},Y2={},Z2={src:""+new URL("../assets/kirara-1b958aba.webp",import.meta.url).href,w:256,h:256},s5={sources:Y2,img:Z2},e5={},t5={src:""+new URL("../assets/kujou-sara-76512dae.webp",import.meta.url).href,w:256,h:256},r5={sources:e5,img:t5},o5={},c5={src:""+new URL("../assets/kuki-shinobu-7834969f.webp",import.meta.url).href,w:233,h:256},a5={sources:o5,img:c5},n5={},i5={src:""+new URL("../assets/layla-c633d4b2.webp",import.meta.url).href,w:239,h:254},m5={sources:n5,img:i5},b5={},_5={src:""+new URL("../assets/lisa-43a478da.webp",import.meta.url).href,w:256,h:256},g5={sources:b5,img:_5},w5={},u5={src:""+new URL("../assets/lynette-bf7f7085.webp",import.meta.url).href,w:244,h:254},p5={sources:w5,img:u5},l5={},h5={src:""+new URL("../assets/mika-e99bdd06.webp",import.meta.url).href,w:243,h:256},f5={sources:l5,img:h5},$5={},v5={src:""+new URL("../assets/ningguang-e586cf26.webp",import.meta.url).href,w:256,h:256},d5={sources:$5,img:v5},L5={},R5={src:""+new URL("../assets/noelle-80e21a94.webp",import.meta.url).href,w:256,h:256},U5={sources:L5,img:R5},y5={},k5={src:""+new URL("../assets/razor-ff675e51.webp",import.meta.url).href,w:256,h:256},I5={sources:y5,img:k5},D5={},z5={src:""+new URL("../assets/rosaria-8cc1803b.webp",import.meta.url).href,w:256,h:256},x5={sources:D5,img:z5},j5={},q5={src:""+new URL("../assets/sayu-b6fef00e.webp",import.meta.url).href,w:256,h:256},B5={sources:j5,img:q5},S5={},E5={src:""+new URL("../assets/shikanoin-heizou-99b61c8e.webp",import.meta.url).href,w:228,h:256},C5={sources:S5,img:E5},A5={},M5={src:""+new URL("../assets/sucrose-cb315c3b.webp",import.meta.url).href,w:256,h:256},O5={sources:A5,img:M5},T5={},P5={src:""+new URL("../assets/thoma-5d4c3f43.webp",import.meta.url).href,w:256,h:256},N5={sources:T5,img:P5},H5={},F5={src:""+new URL("../assets/xiangling-4bfd469a.webp",import.meta.url).href,w:256,h:256},W5={sources:H5,img:F5},V5={},K5={src:""+new URL("../assets/xingqiu-91fefb37.webp",import.meta.url).href,w:256,h:256},J5={sources:V5,img:K5},G5={},Q5={src:""+new URL("../assets/xinyan-f274b69d.webp",import.meta.url).href,w:256,h:256},X5={sources:G5,img:Q5},Y5={},Z5={src:""+new URL("../assets/yanfei-e7df772a.webp",import.meta.url).href,w:256,h:256},s$={sources:Y5,img:Z5},e$={},t$={src:""+new URL("../assets/yaoyao-0934a08b.webp",import.meta.url).href,w:239,h:256},r$={sources:e$,img:t$},o$={},c$={src:""+new URL("../assets/yun-jin-87967c46.webp",import.meta.url).href,w:227,h:256},a$={sources:o$,img:c$},n$={},i$={src:""+new URL("../assets/albedo-60d5a68f.webp",import.meta.url).href,w:237,h:256},m$={sources:n$,img:i$},b$={},_$={src:""+new URL("../assets/alhaitham-60ae51e6.webp",import.meta.url).href,w:256,h:256},g$={sources:b$,img:_$},w$={},u$={src:""+new URL("../assets/arataki-itto-f054a7f6.webp",import.meta.url).href,w:256,h:256},p$={sources:w$,img:u$},l$={},h$={src:""+new URL("../assets/baizhu-ed20303f.webp",import.meta.url).href,w:256,h:256},f$={sources:l$,img:h$},$$={},v$={src:""+new URL("../assets/cyno-e50a3679.webp",import.meta.url).href,w:232,h:256},d$={sources:$$,img:v$},L$={},R$={src:""+new URL("../assets/dehya-804f4fe1.webp",import.meta.url).href,w:256,h:256},U$={sources:L$,img:R$},y$={},k$={src:""+new URL("../assets/diluc-b100ee3c.webp",import.meta.url).href,w:256,h:256},I$={sources:y$,img:k$},D$={},z$={src:""+new URL("../assets/eula-4b0cfa79.webp",import.meta.url).href,w:256,h:255},x$={sources:D$,img:z$},j$={},q$={src:""+new URL("../assets/furina-93628576.webp",import.meta.url).href,w:226,h:256},B$={sources:j$,img:q$},S$={},E$={src:""+new URL("../assets/ganyu-ad96fd46.webp",import.meta.url).href,w:215,h:256},C$={sources:S$,img:E$},A$={},M$={src:""+new URL("../assets/hu-tao-5e3cfb48.webp",import.meta.url).href,w:256,h:256},O$={sources:A$,img:M$},T$={},P$={src:""+new URL("../assets/jean-992fd232.webp",import.meta.url).href,w:231,h:256},N$={sources:T$,img:P$},H$={},F$={src:""+new URL("../assets/kaedehara-kazuha-fff6ce60.webp",import.meta.url).href,w:245,h:256},W$={sources:H$,img:F$},V$={},K$={src:""+new URL("../assets/kamisato-ayaka-1f2c6658.webp",import.meta.url).href,w:216,h:256},J$={sources:V$,img:K$},G$={},Q$={src:""+new URL("../assets/kamisato-ayato-8d89e2ab.webp",import.meta.url).href,w:256,h:251},X$={sources:G$,img:Q$},Y$={},Z$={src:""+new URL("../assets/keqing-757a37d7.webp",import.meta.url).href,w:256,h:256},s3={sources:Y$,img:Z$},e3={},t3={src:""+new URL("../assets/klee-bd3f3429.webp",import.meta.url).href,w:256,h:256},r3={sources:e3,img:t3},o3={},c3={src:""+new URL("../assets/lyney-c1983368.webp",import.meta.url).href,w:241,h:256},a3={sources:o3,img:c3},n3={},i3={src:""+new URL("../assets/mona-1e03787b.webp",import.meta.url).href,w:256,h:256},m3={sources:n3,img:i3},b3={},_3={src:""+new URL("../assets/nahida-1d65f53b.webp",import.meta.url).href,w:253,h:256},g3={sources:b3,img:_3},w3={},u3={src:""+new URL("../assets/navia-79c19c66.webp",import.meta.url).href,w:256,h:256},p3={sources:w3,img:u3},l3={},h3={src:""+new URL("../assets/neuvillette-79d4bd76.webp",import.meta.url).href,w:256,h:256},f3={sources:l3,img:h3},$3={},v3={src:""+new URL("../assets/nilou-27c9c858.webp",import.meta.url).href,w:232,h:256},d3={sources:$3,img:v3},L3={},R3={src:""+new URL("../assets/qiqi-9e70acac.webp",import.meta.url).href,w:256,h:256},U3={sources:L3,img:R3},y3={},k3={src:""+new URL("../assets/raiden-shogun-f0b9ec80.webp",import.meta.url).href,w:256,h:256},I3={sources:y3,img:k3},D3={},z3={src:""+new URL("../assets/sangonomiya-kokomi-b29ffa83.webp",import.meta.url).href,w:242,h:256},x3={sources:D3,img:z3},j3={},q3={src:""+new URL("../assets/shenhe-05add9f7.webp",import.meta.url).href,w:251,h:256},B3={sources:j3,img:q3},S3={},E3={src:""+new URL("../assets/tartaglia-718397d5.webp",import.meta.url).href,w:256,h:256},C3={sources:S3,img:E3},A3={},M3={src:""+new URL("../assets/tighnari-3c13c66b.webp",import.meta.url).href,w:253,h:256},O3={sources:A3,img:M3},T3={},P3={src:""+new URL("../assets/venti-f0812ee7.webp",import.meta.url).href,w:255,h:256},N3={sources:T3,img:P3},H3={},F3={src:""+new URL("../assets/wanderer-0c008fe4.webp",import.meta.url).href,w:256,h:256},W3={sources:H3,img:F3},V3={},K3={src:""+new URL("../assets/wriothesley-d3cb8f1a.webp",import.meta.url).href,w:256,h:256},J3={sources:V3,img:K3},G3={},Q3={src:""+new URL("../assets/xiao-ac588d17.webp",import.meta.url).href,w:232,h:256},X3={sources:G3,img:Q3},Y3={},Z3={src:""+new URL("../assets/yae-miko-7e7f31fc.webp",import.meta.url).href,w:239,h:256},sv={sources:Y3,img:Z3},ev={},tv={src:""+new URL("../assets/yelan-a4bcee59.webp",import.meta.url).href,w:235,h:251},rv={sources:ev,img:tv},ov={},cv={src:""+new URL("../assets/yoimiya-bba37004.webp",import.meta.url).href,w:256,h:256},av={sources:ov,img:cv},nv={},iv={src:""+new URL("../assets/zhongli-c37b17d7.webp",import.meta.url).href,w:256,h:256},mv={sources:nv,img:iv},bv={},_v={src:""+new URL("../assets/amber-8d6b1122.webp",import.meta.url).href,w:1528,h:1283},gv={sources:bv,img:_v},wv={},uv={src:""+new URL("../assets/barbara-736db26f.webp",import.meta.url).href,w:1528,h:1283},pv={sources:wv,img:uv},lv={},hv={src:""+new URL("../assets/beidou-9ec3fc7f.webp",import.meta.url).href,w:1528,h:1283},fv={sources:lv,img:hv},$v={},vv={src:""+new URL("../assets/bennett-b59af56a.webp",import.meta.url).href,w:2e3,h:1834},dv={sources:$v,img:vv},Lv={},Rv={src:""+new URL("../assets/candace-ca326db9.webp",import.meta.url).href,w:1200,h:1200},Uv={sources:Lv,img:Rv},yv={},kv={src:""+new URL("../assets/charlotte-d9a13b65.webp",import.meta.url).href,w:982,h:986},Iv={sources:yv,img:kv},Dv={},zv={src:""+new URL("../assets/chevreuse-9fd0391d.webp",import.meta.url).href,w:906,h:906},xv={sources:Dv,img:zv},jv={},qv={src:""+new URL("../assets/chongyun-c98d13e9.webp",import.meta.url).href,w:1528,h:1283},Bv={sources:jv,img:qv},Sv={},Ev={src:""+new URL("../assets/collei-5e546560.webp",import.meta.url).href,w:1294,h:1293},Cv={sources:Sv,img:Ev},Av={},Mv={src:""+new URL("../assets/diona-d7f26fc1.webp",import.meta.url).href,w:1189,h:1207},Ov={sources:Av,img:Mv},Tv={},Pv={src:""+new URL("../assets/dori-13726e34.webp",import.meta.url).href,w:1200,h:1200},Nv={sources:Tv,img:Pv},Hv={},Fv={src:""+new URL("../assets/faruzan-0fa37bd5.webp",import.meta.url).href,w:1200,h:1200},Wv={sources:Hv,img:Fv},Vv={},Kv={src:""+new URL("../assets/fischl-8a20cb83.webp",import.meta.url).href,w:1340,h:1607},Jv={sources:Vv,img:Kv},Gv={},Qv={src:""+new URL("../assets/freminet-e6b6afa1.webp",import.meta.url).href,w:1280,h:1280},Xv={sources:Gv,img:Qv},Yv={},Zv={src:""+new URL("../assets/gorou-f814f487.webp",import.meta.url).href,w:1496,h:1426},s4={sources:Yv,img:Zv},e4={},t4={src:""+new URL("../assets/kaeya-7a59dafb.webp",import.meta.url).href,w:1404,h:1113},r4={sources:e4,img:t4},o4={},c4={src:""+new URL("../assets/kaveh-d3f2939c.webp",import.meta.url).href,w:1200,h:1200},a4={sources:o4,img:c4},n4={},i4={src:""+new URL("../assets/kirara-1acab856.webp",import.meta.url).href,w:1200,h:1200},m4={sources:n4,img:i4},b4={},_4={src:""+new URL("../assets/kujou-sara-37ebafce.webp",import.meta.url).href,w:1638,h:1379},g4={sources:b4,img:_4},w4={},u4={src:""+new URL("../assets/kuki-shinobu-c0d9adab.webp",import.meta.url).href,w:1200,h:1200},p4={sources:w4,img:u4},l4={},h4={src:""+new URL("../assets/layla-352b3a84.webp",import.meta.url).href,w:1200,h:1200},f4={sources:l4,img:h4},$4={},v4={src:""+new URL("../assets/lisa-d0372795.webp",import.meta.url).href,w:1201,h:1245},d4={sources:$4,img:v4},L4={},R4={src:""+new URL("../assets/lynette-0a89f3d8.webp",import.meta.url).href,w:1280,h:1280},U4={sources:L4,img:R4},y4={},k4={src:""+new URL("../assets/mika-575487fe.webp",import.meta.url).href,w:1200,h:1200},I4={sources:y4,img:k4},D4={},z4={src:""+new URL("../assets/ningguang-ff415f51.webp",import.meta.url).href,w:1420,h:992},x4={sources:D4,img:z4},j4={},q4={src:""+new URL("../assets/noelle-7ed70a55.webp",import.meta.url).href,w:1255,h:1175},B4={sources:j4,img:q4},S4={},E4={src:""+new URL("../assets/razor-a07e2542.webp",import.meta.url).href,w:1680,h:1569},C4={sources:S4,img:E4},A4={},M4={src:""+new URL("../assets/rosaria-9bea7c0f.webp",import.meta.url).href,w:1019,h:907},O4={sources:A4,img:M4},T4={},P4={src:""+new URL("../assets/sayu-026af768.webp",import.meta.url).href,w:1804,h:1343},N4={sources:T4,img:P4},H4={},F4={src:""+new URL("../assets/shikanoin-heizou-bf2a6b53.webp",import.meta.url).href,w:1e3,h:1e3},W4={sources:H4,img:F4},V4={},K4={src:""+new URL("../assets/sucrose-a093157e.webp",import.meta.url).href,w:1533,h:1404},J4={sources:V4,img:K4},G4={},Q4={src:""+new URL("../assets/thoma-b561a276.webp",import.meta.url).href,w:1488,h:1285},X4={sources:G4,img:Q4},Y4={},Z4={src:""+new URL("../assets/xiangling-a45a1cbd.webp",import.meta.url).href,w:2e3,h:1340},sd={sources:Y4,img:Z4},ed={},td={src:""+new URL("../assets/xingqiu-dea04473.webp",import.meta.url).href,w:1412,h:1411},rd={sources:ed,img:td},od={},cd={src:""+new URL("../assets/xinyan-27a455bb.webp",import.meta.url).href,w:1680,h:1680},ad={sources:od,img:cd},nd={},id={src:""+new URL("../assets/yanfei-dd299e68.webp",import.meta.url).href,w:2198,h:1550},md={sources:nd,img:id},bd={},_d={src:""+new URL("../assets/yaoyao-a9826073.webp",import.meta.url).href,w:1200,h:1200},gd={sources:bd,img:_d},wd={},ud={src:""+new URL("../assets/yun-jin-90f9157f.webp",import.meta.url).href,w:1473,h:1651},pd={sources:wd,img:ud},ld={},hd={src:""+new URL("../assets/albedo-d06f2edc.webp",import.meta.url).href,w:1901,h:1996},fd={sources:ld,img:hd},$d={},vd={src:""+new URL("../assets/alhaitham-2ad85c61.webp",import.meta.url).href,w:1200,h:1151},dd={sources:$d,img:vd},Ld={},Rd={src:""+new URL("../assets/arataki-itto-fc55a6f7.webp",import.meta.url).href,w:1576,h:1286},Ud={sources:Ld,img:Rd},yd={},kd={src:""+new URL("../assets/baizhu-315fb021.webp",import.meta.url).href,w:1200,h:1200},Id={sources:yd,img:kd},Dd={},zd={src:""+new URL("../assets/cyno-df3b585d.webp",import.meta.url).href,w:1200,h:1200},xd={sources:Dd,img:zd},jd={},qd={src:""+new URL("../assets/dehya-5fc2272c.webp",import.meta.url).href,w:1200,h:1e3},Bd={sources:jd,img:qd},Sd={},Ed={src:""+new URL("../assets/diluc-a7ffe513.webp",import.meta.url).href,w:1252,h:1471},Cd={sources:Sd,img:Ed},Ad={},Md={src:""+new URL("../assets/eula-0cd3dac3.webp",import.meta.url).href,w:1680,h:1680},Od={sources:Ad,img:Md},Td={},Pd={src:""+new URL("../assets/furina-f1e8b7a5.webp",import.meta.url).href,w:2001,h:1900},Nd={sources:Td,img:Pd},Hd={},Fd={src:""+new URL("../assets/ganyu-06c60991.webp",import.meta.url).href,w:1560,h:1560},Wd={sources:Hd,img:Fd},Vd={},Kd={src:""+new URL("../assets/hu-tao-20ba2977.webp",import.meta.url).href,w:2153,h:1772},Jd={sources:Vd,img:Kd},Gd={},Qd={src:""+new URL("../assets/jean-6a10dee5.webp",import.meta.url).href,w:1182,h:1024},Xd={sources:Gd,img:Qd},Yd={},Zd={src:""+new URL("../assets/kaedehara-kazuha-73760375.webp",import.meta.url).href,w:2073,h:1519},s6={sources:Yd,img:Zd},e6={},t6={src:""+new URL("../assets/kamisato-ayaka-82504de0.webp",import.meta.url).href,w:1919,h:1576},r6={sources:e6,img:t6},o6={},c6={src:""+new URL("../assets/kamisato-ayato-f89c11e1.webp",import.meta.url).href,w:1680,h:1680},a6={sources:o6,img:c6},n6={},i6={src:""+new URL("../assets/keqing-db0736af.webp",import.meta.url).href,w:1516,h:1376},m6={sources:n6,img:i6},b6={},_6={src:""+new URL("../assets/klee-705fc1d3.webp",import.meta.url).href,w:1069,h:1245},g6={sources:b6,img:_6},w6={},u6={src:""+new URL("../assets/lyney-1f92f5e8.webp",import.meta.url).href,w:1280,h:1280},p6={sources:w6,img:u6},l6={},h6={src:""+new URL("../assets/mona-60e007bf.webp",import.meta.url).href,w:1560,h:1560},f6={sources:l6,img:h6},$6={},v6={src:""+new URL("../assets/nahida-87bafb60.webp",import.meta.url).href,w:1291,h:1200},d6={sources:$6,img:v6},L6={},R6={src:""+new URL("../assets/navia-54d2351b.webp",import.meta.url).href,w:1146,h:1014},U6={sources:L6,img:R6},y6={},k6={src:""+new URL("../assets/neuvillette-0918afa7.webp",import.meta.url).href,w:1280,h:1280},I6={sources:y6,img:k6},D6={},z6={src:""+new URL("../assets/nilou-084ac81e.webp",import.meta.url).href,w:1200,h:1200},x6={sources:D6,img:z6},j6={},q6={src:""+new URL("../assets/qiqi-3323ce2a.webp",import.meta.url).href,w:1560,h:1476},B6={sources:j6,img:q6},S6={},E6={src:""+new URL("../assets/raiden-shogun-030b7bf4.webp",import.meta.url).href,w:1604,h:1494},C6={sources:S6,img:E6},A6={},M6={src:""+new URL("../assets/sangonomiya-kokomi-3c386419.webp",import.meta.url).href,w:1568,h:1553},O6={sources:A6,img:M6},T6={},P6={src:""+new URL("../assets/shenhe-7fe122a5.webp",import.meta.url).href,w:1968,h:1920},N6={sources:T6,img:P6},H6={},F6={src:""+new URL("../assets/tartaglia-3a835bfd.webp",import.meta.url).href,w:1692,h:1666},W6={sources:H6,img:F6},V6={},K6={src:""+new URL("../assets/tighnari-b69cf5d2.webp",import.meta.url).href,w:1200,h:1200},J6={sources:V6,img:K6},G6={},Q6={src:""+new URL("../assets/venti-7973125a.webp",import.meta.url).href,w:2e3,h:2e3},X6={sources:G6,img:Q6},Y6={},Z6={src:""+new URL("../assets/wanderer-082f333a.webp",import.meta.url).href,w:1298,h:1200},s9={sources:Y6,img:Z6},e9={},t9={src:""+new URL("../assets/wriothesley-505582d3.webp",import.meta.url).href,w:1280,h:1280},r9={sources:e9,img:t9},o9={},c9={src:""+new URL("../assets/xiao-1e55957d.webp",import.meta.url).href,w:1680,h:1680},a9={sources:o9,img:c9},n9={},i9={src:""+new URL("../assets/yae-miko-7874f338.webp",import.meta.url).href,w:1381,h:1283},m9={sources:n9,img:i9},b9={},_9={src:""+new URL("../assets/yelan-d425f83a.webp",import.meta.url).href,w:1200,h:1200},g9={sources:b9,img:_9},w9={},u9={src:""+new URL("../assets/yoimiya-1dbf97e8.webp",import.meta.url).href,w:1875,h:1683},p9={sources:w9,img:u9},l9={},h9={src:""+new URL("../assets/zhongli-003d705f.webp",import.meta.url).href,w:1222,h:1542},f9={sources:l9,img:h9},$9={},v9={src:""+new URL("../assets/5-star-outrider-cba01d40.webp",import.meta.url).href,w:256,h:256},d9={sources:$9,img:v9},L9={},R9={src:""+new URL("../assets/a-sobriquet-under-shade-c317fc47.webp",import.meta.url).href,w:230,h:256},U9={sources:L9,img:R9},y9={},k9={src:""+new URL("../assets/blossoming-starlight-34d62d3c.webp",import.meta.url).href,w:256,h:256},I9={sources:y9,img:k9},D9={},z9={src:""+new URL("../assets/ein-immernachtstraum-0b70b906.webp",import.meta.url).href,w:224,h:256},x9={sources:D9,img:z9},j9={},q9={src:""+new URL("../assets/executor_s-thorns-3d5b9868.webp",import.meta.url).href,w:256,h:256},B9={sources:j9,img:q9},S9={},E9={src:""+new URL("../assets/favonian-fevotion-83ebffaf.webp",import.meta.url).href,w:256,h:256},C9={sources:S9,img:E9},A9={},M9={src:""+new URL("../assets/flowing-fate-3565e7c4.webp",import.meta.url).href,w:256,h:256},O9={sources:A9,img:M9},T9={},P9={src:""+new URL("../assets/opulent-splendor-963525f3.webp",import.meta.url).href,w:256,h:252},N9={sources:T9,img:P9},H9={},F9={src:""+new URL("../assets/orchid_s-evening-gown-485e9770.webp",import.meta.url).href,w:256,h:256},W9={sources:H9,img:F9},V9={},K9={src:""+new URL("../assets/red-dead-of-night-e240e0d3.webp",import.meta.url).href,w:256,h:256},J9={sources:V9,img:K9},G9={},Q9={src:""+new URL("../assets/sailwind-shadow-f3b29e08.webp",import.meta.url).href,w:256,h:256},X9={sources:G9,img:Q9},Y9={},Z9={src:""+new URL("../assets/sea-breeze-dandelion-0bca9349.webp",import.meta.url).href,w:253,h:256},s8={sources:Y9,img:Z9},e8={},t8={src:""+new URL("../assets/springbloom-missive-8e524270.webp",import.meta.url).href,w:208,h:256},r8={sources:e8,img:t8},o8={},c8={src:""+new URL("../assets/summertime-sparkle-ef9bad4d.webp",import.meta.url).href,w:243,h:256},a8={sources:o8,img:c8},n8={},i8={src:""+new URL("../assets/5-star-outrider-a1974a67.webp",import.meta.url).href,w:1528,h:1283},m8={sources:n8,img:i8},b8={},_8={src:""+new URL("../assets/a-sobriquet-under-shade-695f3ba9.webp",import.meta.url).href,w:1200,h:1200},g8={sources:b8,img:_8},w8={},u8={src:""+new URL("../assets/blossoming-starlight-e407bd19.webp",import.meta.url).href,w:1200,h:1200},p8={sources:w8,img:u8},l8={},h8={src:""+new URL("../assets/ein-immernachtstraum-67a2ea8b.webp",import.meta.url).href,w:1e3,h:1e3},f8={sources:l8,img:h8},$8={},v8={src:""+new URL("../assets/executor_s-thorns-7ebaa9b6.webp",import.meta.url).href,w:1019,h:907},d8={sources:$8,img:v8},L8={},R8={src:""+new URL("../assets/favonian-fevotion-05bc6eb1.webp",import.meta.url).href,w:1181,h:1024},U8={sources:L8,img:R8},y8={},k8={src:""+new URL("../assets/flowing-fate-7ad16287.webp",import.meta.url).href,w:1560,h:1560},I8={sources:y8,img:k8},D8={},z8={src:""+new URL("../assets/opulent-splendor-62c8cea5.webp",import.meta.url).href,w:1251,h:1370},x8={sources:D8,img:z8},j8={},q8={src:""+new URL("../assets/orchid_s-evening-gown-9185bde9.webp",import.meta.url).href,w:1150,h:1492},B8={sources:j8,img:q8},S8={},E8={src:""+new URL("../assets/red-dead-of-night-1641003e.webp",import.meta.url).href,w:1e3,h:1e3},C8={sources:S8,img:E8},A8={},M8={src:""+new URL("../assets/sailwind-shadow-3a136972.webp",import.meta.url).href,w:1200,h:1200},O8={sources:A8,img:M8},T8={},P8={src:""+new URL("../assets/sea-breeze-dandelion-a6819cf8.webp",import.meta.url).href,w:2116,h:2154},N8={sources:T8,img:P8},H8={},F8={src:""+new URL("../assets/springbloom-missive-b4955e07.webp",import.meta.url).href,w:1200,h:1200},W8={sources:H8,img:F8},V8={},K8={src:""+new URL("../assets/summertime-sparkle-0059652c.webp",import.meta.url).href,w:1528,h:1283},J8={sources:V8,img:K8},G8={},Q8={src:""+new URL("../assets/a-sobriquet-under-shade-c3227780.webp",import.meta.url).href,w:196,h:248},X8={sources:G8,img:Q8},Y8={},Z8={src:""+new URL("../assets/blossoming-starlight-8662f044.webp",import.meta.url).href,w:196,h:248},s7={sources:Y8,img:Z8},e7={},t7={src:""+new URL("../assets/ein-immernachtstraum-ca0240ec.webp",import.meta.url).href,w:205,h:256},r7={sources:e7,img:t7},o7={},c7={src:""+new URL("../assets/opulent-splendor-de0c0d11.webp",import.meta.url).href,w:206,h:256},a7={sources:o7,img:c7},n7={},i7={src:""+new URL("../assets/orchid_s-evening-gown-ed9f51bd.webp",import.meta.url).href,w:206,h:256},m7={sources:n7,img:i7},b7={},_7={src:""+new URL("../assets/red-dead-of-night-37d9e5b9.webp",import.meta.url).href,w:205,h:256},g7={sources:b7,img:_7},w7={},u7={src:""+new URL("../assets/sailwind-shadow-a0858111.webp",import.meta.url).href,w:196,h:248},p7={sources:w7,img:u7},l7={},h7={src:""+new URL("../assets/sea-breeze-dandelion-4ae97901.webp",import.meta.url).href,w:196,h:248},f7={sources:l7,img:h7},$7={},v7={src:""+new URL("../assets/springbloom-missive-6c15963c.webp",import.meta.url).href,w:206,h:256},d7={sources:$7,img:v7},L7={},R7={src:""+new URL("../assets/summertime-sparkle-a2d86509.webp",import.meta.url).href,w:196,h:248},U7={sources:L7,img:R7},y7={},k7={src:""+new URL("../assets/3star-bg-e32ae4e6.webp",import.meta.url).href,w:256,h:256},I7={sources:y7,img:k7},D7={},z7={src:""+new URL("../assets/4star-bg-fe0ec4b8.webp",import.meta.url).href,w:256,h:256},x7={sources:D7,img:z7},j7={},q7={src:""+new URL("../assets/5star-bg-7e695b0e.webp",import.meta.url).href,w:256,h:256},B7={sources:j7,img:q7},S7={},E7={src:""+new URL("../assets/5star-special-6fe89819.webp",import.meta.url).href,w:256,h:256},C7={sources:S7,img:E7},A7={},M7={src:""+new URL("../assets/acquaint-fate-eeae8a91.webp",import.meta.url).href,w:187,h:187},O7={sources:A7,img:M7},T7={},P7={src:""+new URL("../assets/admin-5c96b75a.webp",import.meta.url).href,w:300,h:300},N7={sources:T7,img:P7},H7={},F7={src:""+new URL("../assets/alipay-d3f2fb36.png",import.meta.url).href,w:1182,h:1772},W7={sources:H7,img:F7},V7={},K7={src:""+new URL("../assets/bg-bonus-a06911c7.webp",import.meta.url).href,w:200,h:200},J7={sources:V7,img:K7},G7={},Q7={src:""+new URL("../assets/bg-bow-ee8a252c.webp",import.meta.url).href,w:1080,h:1080},X7={sources:G7,img:Q7},Y7={},Z7={src:""+new URL("../assets/bg-catalyst-5f3e1a93.webp",import.meta.url).href,w:1054,h:1054},sL={sources:Y7,img:Z7},eL={},tL={src:""+new URL("../assets/bg-claymore-45e9294d.webp",import.meta.url).href,w:1079,h:1079},rL={sources:eL,img:tL},oL={},cL={src:""+new URL("../assets/bg-polearm-8bc23798.webp",import.meta.url).href,w:1079,h:1079},aL={sources:oL,img:cL},nL={},iL={src:""+new URL("../assets/bg-sword-230f75cd.webp",import.meta.url).href,w:1080,h:1080},mL={sources:nL,img:iL},bL={},_L={src:""+new URL("../assets/book-select-bg-9a2e0c9b.webp",import.meta.url).href,w:1600,h:80},gL={sources:bL,img:_L},wL={},uL={src:""+new URL("../assets/book-d6fb8ca7.webp",import.meta.url).href,w:1948,h:1028},pL={sources:wL,img:uL},lL={},hL={src:""+new URL("../assets/brand-d7e2d962.png",import.meta.url).href,w:52,h:50},fL={sources:lL,img:hL},$L={},vL={src:""+new URL("../assets/button-4401ab60.webp",import.meta.url).href,w:355,h:88},dL={sources:$L,img:vL},LL={},RL={src:""+new URL("../assets/donate-bnb-4ed23dae.png",import.meta.url).href,w:50,h:50},UL={sources:LL,img:RL},yL={},kL={src:""+new URL("../assets/donate-btc-cc1f4e65.png",import.meta.url).href,w:50,h:50},IL={sources:yL,img:kL},DL={},zL={src:""+new URL("../assets/donate-dana-003f18fc.png",import.meta.url).href,w:175,h:50},xL={sources:DL,img:zL},jL={},qL={src:""+new URL("../assets/donate-ethereum-efafab8a.png",import.meta.url).href,w:50,h:50},BL={sources:jL,img:qL},SL={},EL={src:""+new URL("../assets/donate-gopay-9da376a4.png",import.meta.url).href,w:138,h:50},CL={sources:SL,img:EL},AL={},ML={src:""+new URL("../assets/donate-kofi-8b3dfa0b.png",import.meta.url).href,w:50,h:50},OL={sources:AL,img:ML},TL={},PL={src:""+new URL("../assets/donate-linkaja-0baddcfa.png",import.meta.url).href,w:100,h:50},NL={sources:TL,img:PL},HL={},FL={src:""+new URL("../assets/donate-ovo-182f1658.png",import.meta.url).href,w:107,h:50},WL={sources:HL,img:FL},VL={},KL={src:""+new URL("../assets/donate-saweria-1b68205a.webp",import.meta.url).href,w:50,h:50},JL={sources:VL,img:KL},GL={},QL={src:""+new URL("../assets/donate-shopeepay-47a167b9.png",import.meta.url).href,w:95,h:50},XL={sources:GL,img:QL},YL={},ZL={src:""+new URL("../assets/donate-solana-1cdd7f9d.png",import.meta.url).href,w:50,h:50},sR={sources:YL,img:ZL},eR={},tR={src:""+new URL("../assets/face-placeholder-2b7eee97.webp",import.meta.url).href,w:256,h:256},rR={sources:eR,img:tR},oR={},cR={src:""+new URL("../assets/fatepointbook-half-41f531cd.webp",import.meta.url).href,w:599,h:719},aR={sources:oR,img:cR},nR={},iR={src:""+new URL("../assets/fatepointbook-30a10105.webp",import.meta.url).href,w:1200,h:718},mR={sources:nR,img:iR},bR={},_R={src:""+new URL("../assets/genesis-1980-1b32f531.webp",import.meta.url).href,w:150,h:150},gR={sources:bR,img:_R},wR={},uR={src:""+new URL("../assets/genesis-300-f41d116a.webp",import.meta.url).href,w:150,h:150},pR={sources:wR,img:uR},lR={},hR={src:""+new URL("../assets/genesis-3280-bbb37b16.webp",import.meta.url).href,w:150,h:150},fR={sources:lR,img:hR},$R={},vR={src:""+new URL("../assets/genesis-60-16cb4b74.webp",import.meta.url).href,w:150,h:150},dR={sources:$R,img:vR},LR={},RR={src:""+new URL("../assets/genesis-6480-e88d15f4.webp",import.meta.url).href,w:150,h:150},UR={sources:LR,img:RR},yR={},kR={src:""+new URL("../assets/genesis-980-ac57ec7b.webp",import.meta.url).href,w:150,h:150},IR={sources:yR,img:kR},DR={},zR={src:""+new URL("../assets/genesis-bg-5a82b308.webp",import.meta.url).href,w:401,h:401},xR={sources:DR,img:zR},jR={},qR={src:""+new URL("../assets/genesis-77e1510a.webp",import.meta.url).href,w:100,h:100},BR={sources:jR,img:qR},SR={},ER={src:""+new URL("../assets/genshin-logo-cn-99097c50.webp",import.meta.url).href,w:250,h:203},CR={sources:SR,img:ER},AR={},MR={src:""+new URL("../assets/genshin-logo-b0f0111b.webp",import.meta.url).href,w:250,h:151},OR={sources:AR,img:MR},TR={},PR={src:""+new URL("../assets/history-select-bg-9e24dca9.webp",import.meta.url).href,w:1608,h:88},NR={sources:TR,img:PR},HR={},FR={src:""+new URL("../assets/imbroke-6820f50d.webp",import.meta.url).href,w:256,h:256},WR={sources:HR,img:FR},VR={},KR={src:""+new URL("../assets/intertwined-fate-0f290cba.webp",import.meta.url).href,w:187,h:187},JR={sources:VR,img:KR},GR={},QR={src:""+new URL("../assets/masterless-stardust-c473e744.webp",import.meta.url).href,w:80,h:80},XR={sources:GR,img:QR},YR={},ZR={src:""+new URL("../assets/masterless-starglitter-3991da8a.webp",import.meta.url).href,w:80,h:80},sU={sources:YR,img:ZR},eU={},tU={src:""+new URL("../assets/modal-bg-icon-939867c4.png",import.meta.url).href,w:268,h:248},rU={sources:eU,img:tU},oU={},cU={src:""+new URL("../assets/payment-childe-1521fa67.webp",import.meta.url).href,w:75,h:75},aU={sources:oU,img:cU},nU={},iU={src:""+new URL("../assets/payment-tears-c593f4a7.webp",import.meta.url).href,w:75,h:75},mU={sources:nU,img:iU},bU={},_U={src:""+new URL("../assets/payment-wakaranai-eeb427d2.webp",import.meta.url).href,w:75,h:75},gU={sources:bU,img:_U},wU={},uU={src:""+new URL("../assets/paypal-ea9fd7c5.png",import.meta.url).href,w:124,h:33},pU={sources:wU,img:uU},lU={},hU={src:""+new URL("../assets/playstore-button-44ec43b9.webp",import.meta.url).href,w:150,h:52},fU={sources:lU,img:hU},$U={},vU={src:""+new URL("../assets/primogem-f512384c.webp",import.meta.url).href,w:100,h:100},dU={sources:$U,img:vU},LU=""+new URL("../assets/resultcard-bg-c725655d.svg?as=picture",import.meta.url).href,RU={},UU={src:""+new URL("../assets/resultcard-bg-aaaa01fb.webp",import.meta.url).href,w:175,h:757},yU={sources:RU,img:UU},kU={},IU={src:""+new URL("../assets/shop-nav-bg-ba2a97b6.webp",import.meta.url).href,w:669,h:122},DU={sources:kU,img:IU},zU={},xU={src:""+new URL("../assets/stella-fortuna-4star-3746dfcc.webp",import.meta.url).href,w:100,h:100},jU={sources:zU,img:xU},qU={},BU={src:""+new URL("../assets/stella-fortuna-5star-7187149a.webp",import.meta.url).href,w:100,h:100},SU={sources:qU,img:BU},EU={},CU={src:""+new URL("../assets/wechatpay-e72d337c.jpeg",import.meta.url).href,w:828,h:1124},AU={sources:EU,img:CU},MU={},OU={src:""+new URL("../assets/welkin-card-965cc4e8.webp",import.meta.url).href,w:1e3,h:561},TU={sources:MU,img:OU},PU={},NU={src:""+new URL("../assets/welkin-moon-girl-67797b1b.webp",import.meta.url).href,w:500,h:542},HU={sources:PU,img:NU},FU={},WU={src:""+new URL("../assets/welkin-224d0a2e.webp",import.meta.url).href,w:500,h:500},VU={sources:FU,img:WU},KU={},JU={src:""+new URL("../assets/raven-bow-238edd42.webp",import.meta.url).href,w:512,h:1024},GU={sources:KU,img:JU},QU={},XU={src:""+new URL("../assets/sharpshooter_s-oath-2eee30f9.webp",import.meta.url).href,w:512,h:1024},YU={sources:QU,img:XU},ZU={},sy={src:""+new URL("../assets/slingshot-332093b2.webp",import.meta.url).href,w:512,h:1024},ey={sources:ZU,img:sy},ty={},ry={src:""+new URL("../assets/alley-hunter-2ee44b03.webp",import.meta.url).href,w:512,h:1024},oy={sources:ty,img:ry},cy={},ay={src:""+new URL("../assets/favonius-warbow-953fca29.webp",import.meta.url).href,w:512,h:1024},ny={sources:cy,img:ay},iy={},my={src:""+new URL("../assets/mitternachts-waltz-098ec0ec.webp",import.meta.url).href,w:512,h:1024},by={sources:iy,img:my},_y={},gy={src:""+new URL("../assets/mouun_s-moon-538c16eb.webp",import.meta.url).href,w:512,h:1024},wy={sources:_y,img:gy},uy={},py={src:""+new URL("../assets/range-gauge-f6126513.webp",import.meta.url).href,w:512,h:1024},ly={sources:uy,img:py},hy={},fy={src:""+new URL("../assets/rust-890b0edc.webp",import.meta.url).href,w:512,h:1024},$y={sources:hy,img:fy},vy={},dy={src:""+new URL("../assets/sacrificial-bow-b0504242.webp",import.meta.url).href,w:512,h:1024},Ly={sources:vy,img:dy},Ry={},Uy={src:""+new URL("../assets/the-stringless-6f4531d6.webp",import.meta.url).href,w:512,h:1024},yy={sources:Ry,img:Uy},ky={},Iy={src:""+new URL("../assets/amos-bow-dac33d6a.webp",import.meta.url).href,w:512,h:1024},Dy={sources:ky,img:Iy},zy={},xy={src:""+new URL("../assets/aqua-simulacra-51a222f5.webp",import.meta.url).href,w:512,h:1024},jy={sources:zy,img:xy},qy={},By={src:""+new URL("../assets/elegy-for-the-end-4e026f0a.webp",import.meta.url).href,w:512,h:1024},Sy={sources:qy,img:By},Ey={},Cy={src:""+new URL("../assets/hunter_s-path-56b53549.webp",import.meta.url).href,w:512,h:1024},Ay={sources:Ey,img:Cy},My={},Oy={src:""+new URL("../assets/polar-star-b325f492.webp",import.meta.url).href,w:512,h:1024},Ty={sources:My,img:Oy},Py={},Ny={src:""+new URL("../assets/skyward-harp-6e549534.webp",import.meta.url).href,w:512,h:1024},Hy={sources:Py,img:Ny},Fy={},Wy={src:""+new URL("../assets/the-first-great-magic-8e2ee2de.webp",import.meta.url).href,w:512,h:1024},Vy={sources:Fy,img:Wy},Ky={},Jy={src:""+new URL("../assets/thundering-pulse-40945c30.webp",import.meta.url).href,w:512,h:1024},Gy={sources:Ky,img:Jy},Qy={},Xy={src:""+new URL("../assets/emerald-orb-0cbdfa0f.webp",import.meta.url).href,w:256,h:256},Yy={sources:Qy,img:Xy},Zy={},sk={src:""+new URL("../assets/magic-guide-e169fa66.webp",import.meta.url).href,w:417,h:417},ek={sources:Zy,img:sk},tk={},rk={src:""+new URL("../assets/thrilling-tales-of-dragon-slayers-4114d83b.webp",import.meta.url).href,w:417,h:417},ok={sources:tk,img:rk},ck={},ak={src:""+new URL("../assets/eye-of-perception-213b75a3.webp",import.meta.url).href,w:256,h:256},nk={sources:ck,img:ak},ik={},mk={src:""+new URL("../assets/favonius-codex-51626bee.webp",import.meta.url).href,w:417,h:417},bk={sources:ik,img:mk},_k={},gk={src:""+new URL("../assets/sacrificial-fragments-156c8aea.webp",import.meta.url).href,w:417,h:417},wk={sources:_k,img:gk},uk={},pk={src:""+new URL("../assets/the-widsith-b0e54964.webp",import.meta.url).href,w:417,h:417},lk={sources:uk,img:pk},hk={},fk={src:""+new URL("../assets/wandering-evenstar-251d6d71.webp",import.meta.url).href,w:417,h:417},$k={sources:hk,img:fk},vk={},dk={src:""+new URL("../assets/wine-and-song-9cc88270.webp",import.meta.url).href,w:417,h:417},Lk={sources:vk,img:dk},Rk={},Uk={src:""+new URL("../assets/a-thousand-floating-dreams-4151553c.webp",import.meta.url).href,w:417,h:417},yk={sources:Rk,img:Uk},kk={},Ik={src:""+new URL("../assets/cashflow-supervision-7051bdf8.webp",import.meta.url).href,w:417,h:417},Dk={sources:kk,img:Ik},zk={},xk={src:""+new URL("../assets/everlasting-moonglow-767fc202.webp",import.meta.url).href,w:256,h:256},jk={sources:zk,img:xk},qk={},Bk={src:""+new URL("../assets/jadefall-splendor-91f0f47b.webp",import.meta.url).href,w:417,h:417},Sk={sources:qk,img:Bk},Ek={},Ck={src:""+new URL("../assets/kagura_s-verity-03b2b505.webp",import.meta.url).href,w:417,h:417},Ak={sources:Ek,img:Ck},Mk={},Ok={src:""+new URL("../assets/lost-prayer-to-the-sacred-winds-30e564fe.webp",import.meta.url).href,w:500,h:500},Tk={sources:Mk,img:Ok},Pk={},Nk={src:""+new URL("../assets/memory-of-dust-2a9d8caa.webp",import.meta.url).href,w:512,h:512},Hk={sources:Pk,img:Nk},Fk={},Wk={src:""+new URL("../assets/skyward-atlas-02b9dce2.webp",import.meta.url).href,w:421,h:417},Vk={sources:Fk,img:Wk},Kk={},Jk={src:""+new URL("../assets/tome-of-the-eternal-flow-1f8af63c.webp",import.meta.url).href,w:417,h:417},Gk={sources:Kk,img:Jk},Qk={},Xk={src:""+new URL("../assets/tulaytullah_s-remembrance-3598fcfc.webp",import.meta.url).href,w:417,h:417},Yk={sources:Qk,img:Xk},Zk={},sI={src:""+new URL("../assets/bloodtained-greatsword-5f184595.webp",import.meta.url).href,w:512,h:1024},eI={sources:Zk,img:sI},tI={},rI={src:""+new URL("../assets/debate-club-5be7672b.webp",import.meta.url).href,w:512,h:1024},oI={sources:tI,img:rI},cI={},aI={src:""+new URL("../assets/ferrous-shadow-801c5564.webp",import.meta.url).href,w:512,h:1024},nI={sources:cI,img:aI},iI={},mI={src:""+new URL("../assets/akuoumaru-7428a9bd.webp",import.meta.url).href,w:512,h:1024},bI={sources:iI,img:mI},_I={},gI={src:""+new URL("../assets/favonius-greatsword-aa0a3e7a.webp",import.meta.url).href,w:512,h:1024},wI={sources:_I,img:gI},uI={},pI={src:""+new URL("../assets/lithic-blade-4c02dfbf.webp",import.meta.url).href,w:512,h:1024},lI={sources:uI,img:pI},hI={},fI={src:""+new URL("../assets/makhaira-aquamarine-76bd38a5.webp",import.meta.url).href,w:512,h:1024},$I={sources:hI,img:fI},vI={},dI={src:""+new URL("../assets/portable-power-saw-699e418a.webp",import.meta.url).href,w:512,h:1024},LI={sources:vI,img:dI},RI={},UI={src:""+new URL("../assets/rainslasher-bbc97a3f.webp",import.meta.url).href,w:512,h:1024},yI={sources:RI,img:UI},kI={},II={src:""+new URL("../assets/sacrificial-greatsword-435d0c28.webp",import.meta.url).href,w:512,h:1024},DI={sources:kI,img:II},zI={},xI={src:""+new URL("../assets/the-bell-b73418d9.webp",import.meta.url).href,w:512,h:1024},jI={sources:zI,img:xI},qI={},BI={src:""+new URL("../assets/beacon-of-the-reed-sea-f08aea79.webp",import.meta.url).href,w:512,h:1024},SI={sources:qI,img:BI},EI={},CI={src:""+new URL("../assets/redhorn-stonethresher-4a5fe56f.webp",import.meta.url).href,w:512,h:1024},AI={sources:EI,img:CI},MI={},OI={src:""+new URL("../assets/skyward-pride-61774f53.webp",import.meta.url).href,w:512,h:1024},TI={sources:MI,img:OI},PI={},NI={src:""+new URL("../assets/song-of-broken-pines-44010dc3.webp",import.meta.url).href,w:512,h:1024},HI={sources:PI,img:NI},FI={},WI={src:""+new URL("../assets/the-unforged-07781e68.webp",import.meta.url).href,w:512,h:1024},VI={sources:FI,img:WI},KI={},JI={src:""+new URL("../assets/verdict-84e0e4b4.webp",import.meta.url).href,w:512,h:1024},GI={sources:KI,img:JI},QI={},XI={src:""+new URL("../assets/wolf_s-gravestone-d3e2d84f.webp",import.meta.url).href,w:512,h:1024},YI={sources:QI,img:XI},ZI={},sD={src:""+new URL("../assets/black-tassel-3160907a.webp",import.meta.url).href,w:512,h:1024},eD={sources:ZI,img:sD},tD={},rD={src:""+new URL("../assets/dragon_s-bane-d4ae86c7.webp",import.meta.url).href,w:512,h:1024},oD={sources:tD,img:rD},cD={},aD={src:""+new URL("../assets/favonius-lance-eb4a71db.webp",import.meta.url).href,w:512,h:1024},nD={sources:cD,img:aD},iD={},mD={src:""+new URL("../assets/lithic-spear-dbf28c65.webp",import.meta.url).href,w:512,h:1024},bD={sources:iD,img:mD},_D={},gD={src:""+new URL("../assets/prospector-drill-b35653b0.webp",import.meta.url).href,w:512,h:1024},wD={sources:_D,img:gD},uD={},pD={src:""+new URL("../assets/wavebreaker_s-fin-674af509.webp",import.meta.url).href,w:512,h:1024},lD={sources:uD,img:pD},hD={},fD={src:""+new URL("../assets/calamity-queller-be1a7765.webp",import.meta.url).href,w:512,h:1024},$D={sources:hD,img:fD},vD={},dD={src:""+new URL("../assets/engulfing-lightning-089ffa76.webp",import.meta.url).href,w:512,h:1024},LD={sources:vD,img:dD},RD={},UD={src:""+new URL("../assets/primordial-jade-winged-spear-871377eb.webp",import.meta.url).href,w:512,h:1024},yD={sources:RD,img:UD},kD={},ID={src:""+new URL("../assets/skyward-spine-0f2c6ecc.webp",import.meta.url).href,w:512,h:1024},DD={sources:kD,img:ID},zD={},xD={src:""+new URL("../assets/staff-of-homa-e3b059ef.webp",import.meta.url).href,w:512,h:1024},jD={sources:zD,img:xD},qD={},BD={src:""+new URL("../assets/staff-of-the-scarlet-sands-a3688b78.webp",import.meta.url).href,w:512,h:1024},SD={sources:qD,img:BD},ED={},CD={src:""+new URL("../assets/vortex-vanquisher-3f236add.webp",import.meta.url).href,w:512,h:1024},AD={sources:ED,img:CD},MD={},OD={src:""+new URL("../assets/cool-steel-1f2cbfee.webp",import.meta.url).href,w:512,h:1024},TD={sources:MD,img:OD},PD={},ND={src:""+new URL("../assets/harbinger-of-dawn-bb7e138c.webp",import.meta.url).href,w:512,h:1024},HD={sources:PD,img:ND},FD={},WD={src:""+new URL("../assets/skyrider-sword-b586802c.webp",import.meta.url).href,w:512,h:1024},VD={sources:FD,img:WD},KD={},JD={src:""+new URL("../assets/favonius-sword-45b13707.webp",import.meta.url).href,w:512,h:1024},GD={sources:KD,img:JD},QD={},XD={src:""+new URL("../assets/lion_s-roar-949c66e0.webp",import.meta.url).href,w:512,h:1024},YD={sources:QD,img:XD},ZD={},sz={src:""+new URL("../assets/sacrificial-sword-1dd3b6b7.webp",import.meta.url).href,w:512,h:1024},ez={sources:ZD,img:sz},tz={},rz={src:""+new URL("../assets/the-alley-flash-b59eb081.webp",import.meta.url).href,w:512,h:1024},oz={sources:tz,img:rz},cz={},az={src:""+new URL("../assets/the-dockhands-assistant-a0469742.webp",import.meta.url).href,w:512,h:1024},nz={sources:cz,img:az},iz={},mz={src:""+new URL("../assets/the-flute-e44fd714.webp",import.meta.url).href,w:512,h:1024},bz={sources:iz,img:mz},_z={},gz={src:""+new URL("../assets/xiphos-moonlight-c1ea3b4f.webp",import.meta.url).href,w:512,h:1024},wz={sources:_z,img:gz},uz={},pz={src:""+new URL("../assets/aquila-favonia-89b0d8e6.webp",import.meta.url).href,w:512,h:1024},lz={sources:uz,img:pz},hz={},fz={src:""+new URL("../assets/freedom-sworn-59d9777c.webp",import.meta.url).href,w:512,h:1024},$z={sources:hz,img:fz},vz={},dz={src:""+new URL("../assets/haran-geppaku-futsu-6128630c.webp",import.meta.url).href,w:512,h:1024},Lz={sources:vz,img:dz},Rz={},Uz={src:""+new URL("../assets/key-of-khaj-nisut-a2306150.webp",import.meta.url).href,w:512,h:1024},yz={sources:Rz,img:Uz},kz={},Iz={src:""+new URL("../assets/light-of-foliar-incision-5361cffe.webp",import.meta.url).href,w:512,h:1024},Dz={sources:kz,img:Iz},zz={},xz={src:""+new URL("../assets/mistsplitter-reforged-8d6ba853.webp",import.meta.url).href,w:512,h:1024},jz={sources:zz,img:xz},qz={},Bz={src:""+new URL("../assets/primordial-jade-cutter-b641118a.webp",import.meta.url).href,w:512,h:1024},Sz={sources:qz,img:Bz},Ez={},Cz={src:""+new URL("../assets/skyward-blade-2a775854.webp",import.meta.url).href,w:512,h:1024},Az={sources:Ez,img:Cz},Mz={},Oz={src:""+new URL("../assets/splendor-of-tranquil-waters-131e35be.webp",import.meta.url).href,w:512,h:1024},Tz={sources:Mz,img:Oz},Pz={},Nz={src:""+new URL("../assets/summit-shaper-a4b99930.webp",import.meta.url).href,w:512,h:1024},Hz={sources:Pz,img:Nz},z=Object.assign({"/src/images/background/bg1.webp":X,"/src/images/background/bg10.webp":ss,"/src/images/background/bg11.webp":rs,"/src/images/background/bg12.webp":as,"/src/images/background/bg13.webp":ms,"/src/images/background/bg14.webp":gs,"/src/images/background/bg15.webp":ps,"/src/images/background/bg16.webp":fs,"/src/images/background/bg17.webp":ds,"/src/images/background/bg18.webp":Us,"/src/images/background/bg19.webp":Is,"/src/images/background/bg2.webp":xs,"/src/images/background/bg20.webp":Bs,"/src/images/background/bg3.webp":Cs,"/src/images/background/bg4.webp":Os,"/src/images/background/bg5.webp":Ns,"/src/images/background/bg6.webp":Ws,"/src/images/background/bg7.webp":Js,"/src/images/background/bg8.webp":Xs,"/src/images/background/bg9.webp":se,"/src/images/background/constellation.webp":re,"/src/images/background/detailbg.webp":ae,"/src/images/background/element-anemo-bg.webp":me,"/src/images/background/element-cryo-bg.webp":ge,"/src/images/background/element-dendro-bg.webp":pe,"/src/images/background/element-electro-bg.webp":fe,"/src/images/background/element-geo-bg.webp":de,"/src/images/background/element-hydro-bg.webp":Ue,"/src/images/background/element-pyro-bg.webp":Ie,"/src/images/background/outfit-background.webp":xe,"/src/images/background/splash-background.webp":Be,"/src/images/background/wish-background.webp":Ce,"/src/images/banner/beginner/beginner.webp":Oe,"/src/images/banner/blank/anemo.webp":Ne,"/src/images/banner/blank/cryo.webp":We,"/src/images/banner/blank/dendro.webp":Je,"/src/images/banner/blank/electro.webp":Xe,"/src/images/banner/blank/geo.webp":st,"/src/images/banner/blank/hydro.webp":rt,"/src/images/banner/blank/pyro.webp":at,"/src/images/banner/character-events/adrift-in-the-harbor-1.webp":mt,"/src/images/banner/character-events/adrift-in-the-harbor-2.webp":gt,"/src/images/banner/character-events/adrift-in-the-harbor-3.webp":pt,"/src/images/banner/character-events/adrift-in-the-harbor-4.webp":ft,"/src/images/banner/character-events/auric-blaze-1.webp":dt,"/src/images/banner/character-events/azure-excursion-1.webp":Ut,"/src/images/banner/character-events/azure-excursion-2.webp":It,"/src/images/banner/character-events/azure-excursion-3.webp":xt,"/src/images/banner/character-events/ballad-in-goblets-1.webp":Bt,"/src/images/banner/character-events/ballad-in-goblets-2.webp":Ct,"/src/images/banner/character-events/ballad-in-goblets-3.webp":Ot,"/src/images/banner/character-events/ballad-in-goblets-4.webp":Nt,"/src/images/banner/character-events/ballad-in-goblets-5.webp":Wt,"/src/images/banner/character-events/born-of-ocean-swell-1.webp":Jt,"/src/images/banner/character-events/born-of-ocean-swell-2.webp":Xt,"/src/images/banner/character-events/born-of-ocean-swell-3.webp":sr,"/src/images/banner/character-events/caution-in-confidence-1.webp":rr,"/src/images/banner/character-events/caution-in-confidence-2.webp":ar,"/src/images/banner/character-events/chanson-of-many-waters-1.webp":mr,"/src/images/banner/character-events/conjuring-chiaroscuro-1.webp":gr,"/src/images/banner/character-events/dance-of-lantern-1.webp":pr,"/src/images/banner/character-events/decree-of-the-deeps-1.webp":fr,"/src/images/banner/character-events/discerner-of-enigmas-1.webp":dr,"/src/images/banner/character-events/discerner-of-enigmas-2.webp":Ur,"/src/images/banner/character-events/discerner-of-enigmas-3.webp":Ir,"/src/images/banner/character-events/drifting-luminescence-1.webp":xr,"/src/images/banner/character-events/drifting-luminescence-2.webp":Br,"/src/images/banner/character-events/drifting-luminescence-3.webp":Cr,"/src/images/banner/character-events/drifting-luminescence-4.webp":Or,"/src/images/banner/character-events/everbloom-violet-1.webp":Nr,"/src/images/banner/character-events/everbloom-violet-2.webp":Wr,"/src/images/banner/character-events/everbloom-violet-3.webp":Jr,"/src/images/banner/character-events/farewell-of-snezhnaya-1.webp":Xr,"/src/images/banner/character-events/farewell-of-snezhnaya-2.webp":so,"/src/images/banner/character-events/farewell-of-snezhnaya-3.webp":ro,"/src/images/banner/character-events/farewell-of-snezhnaya-4.webp":ao,"/src/images/banner/character-events/farewell-of-snezhnaya-5.webp":mo,"/src/images/banner/character-events/from-ashes-reborn-1.webp":go,"/src/images/banner/character-events/from-ashes-reborn-2.webp":po,"/src/images/banner/character-events/gentry-of-hermitage-1.webp":fo,"/src/images/banner/character-events/gentry-of-hermitage-2.webp":Lo,"/src/images/banner/character-events/gentry-of-hermitage-3.webp":yo,"/src/images/banner/character-events/gentry-of-hermitage-4.webp":Do,"/src/images/banner/character-events/gentry-of-hermitage-5.webp":jo,"/src/images/banner/character-events/immaculate-pulse-1.webp":So,"/src/images/banner/character-events/immaculate-pulse-2.webp":Ao,"/src/images/banner/character-events/in-the-name-of-the-rosula-1.webp":To,"/src/images/banner/character-events/invitation-to-mundane-life-1.webp":Ho,"/src/images/banner/character-events/invitation-to-mundane-life-2.webp":Vo,"/src/images/banner/character-events/invitation-to-mundane-life-3.webp":Go,"/src/images/banner/character-events/invitation-to-mundane-life-4.webp":Yo,"/src/images/banner/character-events/leaves-in-the-wind-1.webp":ec,"/src/images/banner/character-events/leaves-in-the-wind-2.webp":oc,"/src/images/banner/character-events/leaves-in-the-wind-3.webp":nc,"/src/images/banner/character-events/moment-of-bloom-1.webp":bc,"/src/images/banner/character-events/moment-of-bloom-2.webp":wc,"/src/images/banner/character-events/moment-of-bloom-3.webp":lc,"/src/images/banner/character-events/moment-of-bloom-4.webp":$c,"/src/images/banner/character-events/oni_s-royale-1.webp":Lc,"/src/images/banner/character-events/oni_s-royale-2.webp":yc,"/src/images/banner/character-events/oni_s-royale-3.webp":Dc,"/src/images/banner/character-events/reign-of-serenity-1.webp":jc,"/src/images/banner/character-events/reign-of-serenity-2.webp":Sc,"/src/images/banner/character-events/reign-of-serenity-3.webp":Ac,"/src/images/banner/character-events/reign-of-serenity-4.webp":Tc,"/src/images/banner/character-events/secretum-secretorum-1.webp":Hc,"/src/images/banner/character-events/secretum-secretorum-2.webp":Vc,"/src/images/banner/character-events/secretum-secretorum-3.webp":Gc,"/src/images/banner/character-events/sparkling-steps-1.webp":Yc,"/src/images/banner/character-events/sparkling-steps-2.webp":ea,"/src/images/banner/character-events/sparkling-steps-3.webp":oa,"/src/images/banner/character-events/sparkling-steps-4.webp":na,"/src/images/banner/character-events/tapestry-of-golden-flames-1.webp":ba,"/src/images/banner/character-events/tapestry-of-golden-flames-2.webp":wa,"/src/images/banner/character-events/tapestry-of-golden-flames-3.webp":la,"/src/images/banner/character-events/tapestry-of-golden-flames-4.webp":$a,"/src/images/banner/character-events/tapestry-of-golden-flames-5.webp":La,"/src/images/banner/character-events/tempestuous-destiny-1.webp":ya,"/src/images/banner/character-events/the-heron_s-court-1.webp":Da,"/src/images/banner/character-events/the-heron_s-court-2.webp":ja,"/src/images/banner/character-events/the-heron_s-court-3.webp":Sa,"/src/images/banner/character-events/the-heron_s-court-4.webp":Aa,"/src/images/banner/character-events/the-moongrass-enlightenment-1.webp":Ta,"/src/images/banner/character-events/the-moongrass-enlightenment-2.webp":Ha,"/src/images/banner/character-events/the-transcendent-one-returns-1.webp":Va,"/src/images/banner/character-events/the-transcendent-one-returns-2.webp":Ga,"/src/images/banner/character-events/twilight-arbiter-1.webp":Ya,"/src/images/banner/character-events/twilight-arbiter-2.webp":en,"/src/images/banner/character-events/twilight-arbiter-3.webp":on,"/src/images/banner/character-events/twirling-lotus-1.webp":nn,"/src/images/banner/character-events/twirling-lotus-2.webp":_n,"/src/images/banner/character-events/viridescent-vigil-1.webp":un,"/src/images/banner/member/wanderlust-invocation-1.webp":hn,"/src/images/banner/standard/wanderlust-invocation-1.webp":vn,"/src/images/banner/standard/wanderlust-invocation-2.webp":Rn,"/src/images/banner/thumbnail/adrift-in-the-harbor-1.webp":kn,"/src/images/banner/thumbnail/adrift-in-the-harbor-2.webp":zn,"/src/images/banner/thumbnail/adrift-in-the-harbor-3.webp":qn,"/src/images/banner/thumbnail/adrift-in-the-harbor-4.webp":En,"/src/images/banner/thumbnail/auric-blaze-1.webp":Mn,"/src/images/banner/thumbnail/azure-excursion-1.webp":Pn,"/src/images/banner/thumbnail/azure-excursion-2.webp":Fn,"/src/images/banner/thumbnail/azure-excursion-3.webp":Kn,"/src/images/banner/thumbnail/ballad-in-goblets-1.webp":Qn,"/src/images/banner/thumbnail/ballad-in-goblets-2.webp":Zn,"/src/images/banner/thumbnail/ballad-in-goblets-3.webp":ti,"/src/images/banner/thumbnail/ballad-in-goblets-4.webp":ci,"/src/images/banner/thumbnail/ballad-in-goblets-5.webp":ii,"/src/images/banner/thumbnail/born-of-ocean-swell-1.webp":_i,"/src/images/banner/thumbnail/born-of-ocean-swell-2.webp":ui,"/src/images/banner/thumbnail/born-of-ocean-swell-3.webp":hi,"/src/images/banner/thumbnail/caution-in-confidence-1.webp":vi,"/src/images/banner/thumbnail/caution-in-confidence-2.webp":Ri,"/src/images/banner/thumbnail/chanson-of-many-waters-1.webp":ki,"/src/images/banner/thumbnail/conjuring-chiaroscuro-1.webp":zi,"/src/images/banner/thumbnail/dance-of-lantern-1.webp":qi,"/src/images/banner/thumbnail/decree-of-the-deeps-1.webp":Ei,"/src/images/banner/thumbnail/discerner-of-enigmas-1.webp":Mi,"/src/images/banner/thumbnail/discerner-of-enigmas-2.webp":Pi,"/src/images/banner/thumbnail/discerner-of-enigmas-3.webp":Fi,"/src/images/banner/thumbnail/drifting-luminescence-1.webp":Ki,"/src/images/banner/thumbnail/drifting-luminescence-2.webp":Qi,"/src/images/banner/thumbnail/drifting-luminescence-3.webp":Zi,"/src/images/banner/thumbnail/drifting-luminescence-4.webp":tm,"/src/images/banner/thumbnail/epitome-invocation-1.webp":cm,"/src/images/banner/thumbnail/epitome-invocation-10.webp":im,"/src/images/banner/thumbnail/epitome-invocation-11.webp":_m,"/src/images/banner/thumbnail/epitome-invocation-12.webp":um,"/src/images/banner/thumbnail/epitome-invocation-13.webp":hm,"/src/images/banner/thumbnail/epitome-invocation-14.webp":vm,"/src/images/banner/thumbnail/epitome-invocation-15.webp":Rm,"/src/images/banner/thumbnail/epitome-invocation-16.webp":km,"/src/images/banner/thumbnail/epitome-invocation-17.webp":zm,"/src/images/banner/thumbnail/epitome-invocation-18.webp":qm,"/src/images/banner/thumbnail/epitome-invocation-19.webp":Em,"/src/images/banner/thumbnail/epitome-invocation-2.webp":Mm,"/src/images/banner/thumbnail/epitome-invocation-20.webp":Pm,"/src/images/banner/thumbnail/epitome-invocation-21.webp":Fm,"/src/images/banner/thumbnail/epitome-invocation-22.webp":Km,"/src/images/banner/thumbnail/epitome-invocation-23.webp":Qm,"/src/images/banner/thumbnail/epitome-invocation-24.webp":Zm,"/src/images/banner/thumbnail/epitome-invocation-25.webp":tb,"/src/images/banner/thumbnail/epitome-invocation-26.webp":cb,"/src/images/banner/thumbnail/epitome-invocation-27.webp":ib,"/src/images/banner/thumbnail/epitome-invocation-28.webp":_b,"/src/images/banner/thumbnail/epitome-invocation-29.webp":ub,"/src/images/banner/thumbnail/epitome-invocation-3.webp":hb,"/src/images/banner/thumbnail/epitome-invocation-30.webp":vb,"/src/images/banner/thumbnail/epitome-invocation-31.webp":Rb,"/src/images/banner/thumbnail/epitome-invocation-32.webp":kb,"/src/images/banner/thumbnail/epitome-invocation-33.webp":zb,"/src/images/banner/thumbnail/epitome-invocation-34.webp":qb,"/src/images/banner/thumbnail/epitome-invocation-35.webp":Eb,"/src/images/banner/thumbnail/epitome-invocation-36.webp":Mb,"/src/images/banner/thumbnail/epitome-invocation-37.webp":Pb,"/src/images/banner/thumbnail/epitome-invocation-38.webp":Fb,"/src/images/banner/thumbnail/epitome-invocation-39.webp":Kb,"/src/images/banner/thumbnail/epitome-invocation-4.webp":Qb,"/src/images/banner/thumbnail/epitome-invocation-40.webp":Zb,"/src/images/banner/thumbnail/epitome-invocation-41.webp":t_,"/src/images/banner/thumbnail/epitome-invocation-42.webp":c_,"/src/images/banner/thumbnail/epitome-invocation-43.webp":i_,"/src/images/banner/thumbnail/epitome-invocation-44.webp":__,"/src/images/banner/thumbnail/epitome-invocation-45.webp":u_,"/src/images/banner/thumbnail/epitome-invocation-46.webp":h_,"/src/images/banner/thumbnail/epitome-invocation-47.webp":v_,"/src/images/banner/thumbnail/epitome-invocation-48.webp":R_,"/src/images/banner/thumbnail/epitome-invocation-49.webp":k_,"/src/images/banner/thumbnail/epitome-invocation-5.webp":z_,"/src/images/banner/thumbnail/epitome-invocation-50.webp":q_,"/src/images/banner/thumbnail/epitome-invocation-51.webp":E_,"/src/images/banner/thumbnail/epitome-invocation-52.webp":M_,"/src/images/banner/thumbnail/epitome-invocation-53.webp":P_,"/src/images/banner/thumbnail/epitome-invocation-54.webp":F_,"/src/images/banner/thumbnail/epitome-invocation-55.webp":K_,"/src/images/banner/thumbnail/epitome-invocation-56.webp":Q_,"/src/images/banner/thumbnail/epitome-invocation-57.webp":Z_,"/src/images/banner/thumbnail/epitome-invocation-58.webp":tg,"/src/images/banner/thumbnail/epitome-invocation-6.webp":cg,"/src/images/banner/thumbnail/epitome-invocation-7.webp":ig,"/src/images/banner/thumbnail/epitome-invocation-8.webp":_g,"/src/images/banner/thumbnail/epitome-invocation-9.webp":ug,"/src/images/banner/thumbnail/everbloom-violet-1.webp":hg,"/src/images/banner/thumbnail/everbloom-violet-2.webp":vg,"/src/images/banner/thumbnail/everbloom-violet-3.webp":Rg,"/src/images/banner/thumbnail/farewell-of-snezhnaya-1.webp":kg,"/src/images/banner/thumbnail/farewell-of-snezhnaya-2.webp":zg,"/src/images/banner/thumbnail/farewell-of-snezhnaya-3.webp":qg,"/src/images/banner/thumbnail/farewell-of-snezhnaya-4.webp":Eg,"/src/images/banner/thumbnail/farewell-of-snezhnaya-5.webp":Mg,"/src/images/banner/thumbnail/from-ashes-reborn-1.webp":Pg,"/src/images/banner/thumbnail/from-ashes-reborn-2.webp":Fg,"/src/images/banner/thumbnail/gentry-of-hermitage-1.webp":Kg,"/src/images/banner/thumbnail/gentry-of-hermitage-2.webp":Qg,"/src/images/banner/thumbnail/gentry-of-hermitage-3.webp":Zg,"/src/images/banner/thumbnail/gentry-of-hermitage-4.webp":tw,"/src/images/banner/thumbnail/gentry-of-hermitage-5.webp":cw,"/src/images/banner/thumbnail/immaculate-pulse-1.webp":iw,"/src/images/banner/thumbnail/immaculate-pulse-2.webp":_w,"/src/images/banner/thumbnail/in-the-name-of-the-rosula-1.webp":uw,"/src/images/banner/thumbnail/invitation-to-mundane-life-1.webp":hw,"/src/images/banner/thumbnail/invitation-to-mundane-life-2.webp":vw,"/src/images/banner/thumbnail/invitation-to-mundane-life-3.webp":Rw,"/src/images/banner/thumbnail/invitation-to-mundane-life-4.webp":kw,"/src/images/banner/thumbnail/leaves-in-the-wind-1.webp":zw,"/src/images/banner/thumbnail/leaves-in-the-wind-2.webp":qw,"/src/images/banner/thumbnail/leaves-in-the-wind-3.webp":Ew,"/src/images/banner/thumbnail/moment-of-bloom-1.webp":Mw,"/src/images/banner/thumbnail/moment-of-bloom-2.webp":Pw,"/src/images/banner/thumbnail/moment-of-bloom-3.webp":Fw,"/src/images/banner/thumbnail/moment-of-bloom-4.webp":Kw,"/src/images/banner/thumbnail/oni_s-royale-1.webp":Qw,"/src/images/banner/thumbnail/oni_s-royale-2.webp":Zw,"/src/images/banner/thumbnail/oni_s-royale-3.webp":tu,"/src/images/banner/thumbnail/reign-of-serenity-1.webp":cu,"/src/images/banner/thumbnail/reign-of-serenity-2.webp":iu,"/src/images/banner/thumbnail/reign-of-serenity-3.webp":_u,"/src/images/banner/thumbnail/reign-of-serenity-4.webp":uu,"/src/images/banner/thumbnail/secretum-secretorum-1.webp":hu,"/src/images/banner/thumbnail/secretum-secretorum-2.webp":vu,"/src/images/banner/thumbnail/secretum-secretorum-3.webp":Ru,"/src/images/banner/thumbnail/sparkling-steps-1.webp":ku,"/src/images/banner/thumbnail/sparkling-steps-2.webp":zu,"/src/images/banner/thumbnail/sparkling-steps-3.webp":qu,"/src/images/banner/thumbnail/sparkling-steps-4.webp":Eu,"/src/images/banner/thumbnail/tapestry-of-golden-flames-1.webp":Mu,"/src/images/banner/thumbnail/tapestry-of-golden-flames-2.webp":Pu,"/src/images/banner/thumbnail/tapestry-of-golden-flames-3.webp":Fu,"/src/images/banner/thumbnail/tapestry-of-golden-flames-4.webp":Ku,"/src/images/banner/thumbnail/tapestry-of-golden-flames-5.webp":Qu,"/src/images/banner/thumbnail/tempestuous-destiny-1.webp":Zu,"/src/images/banner/thumbnail/the-heron_s-court-1.webp":tp,"/src/images/banner/thumbnail/the-heron_s-court-2.webp":cp,"/src/images/banner/thumbnail/the-heron_s-court-3.webp":ip,"/src/images/banner/thumbnail/the-heron_s-court-4.webp":_p,"/src/images/banner/thumbnail/the-moongrass-enlightenment-1.webp":up,"/src/images/banner/thumbnail/the-moongrass-enlightenment-2.webp":hp,"/src/images/banner/thumbnail/the-transcendent-one-returns-1.webp":vp,"/src/images/banner/thumbnail/the-transcendent-one-returns-2.webp":Rp,"/src/images/banner/thumbnail/twilight-arbiter-1.webp":kp,"/src/images/banner/thumbnail/twilight-arbiter-2.webp":zp,"/src/images/banner/thumbnail/twilight-arbiter-3.webp":qp,"/src/images/banner/thumbnail/twirling-lotus-1.webp":Ep,"/src/images/banner/thumbnail/twirling-lotus-2.webp":Mp,"/src/images/banner/thumbnail/viridescent-vigil-1.webp":Pp,"/src/images/banner/weapons/epitome-invocation-1.webp":Fp,"/src/images/banner/weapons/epitome-invocation-10.webp":Kp,"/src/images/banner/weapons/epitome-invocation-11.webp":Qp,"/src/images/banner/weapons/epitome-invocation-12.webp":Zp,"/src/images/banner/weapons/epitome-invocation-13.webp":tl,"/src/images/banner/weapons/epitome-invocation-14.webp":cl,"/src/images/banner/weapons/epitome-invocation-15.webp":il,"/src/images/banner/weapons/epitome-invocation-16.webp":_l,"/src/images/banner/weapons/epitome-invocation-17.webp":ul,"/src/images/banner/weapons/epitome-invocation-18.webp":hl,"/src/images/banner/weapons/epitome-invocation-19.webp":vl,"/src/images/banner/weapons/epitome-invocation-2.webp":Rl,"/src/images/banner/weapons/epitome-invocation-20.webp":kl,"/src/images/banner/weapons/epitome-invocation-21.webp":zl,"/src/images/banner/weapons/epitome-invocation-22.webp":ql,"/src/images/banner/weapons/epitome-invocation-23.webp":El,"/src/images/banner/weapons/epitome-invocation-24.webp":Ml,"/src/images/banner/weapons/epitome-invocation-25.webp":Pl,"/src/images/banner/weapons/epitome-invocation-26.webp":Fl,"/src/images/banner/weapons/epitome-invocation-27.webp":Kl,"/src/images/banner/weapons/epitome-invocation-28.webp":Ql,"/src/images/banner/weapons/epitome-invocation-29.webp":Zl,"/src/images/banner/weapons/epitome-invocation-3.webp":th,"/src/images/banner/weapons/epitome-invocation-30.webp":ch,"/src/images/banner/weapons/epitome-invocation-31.webp":ih,"/src/images/banner/weapons/epitome-invocation-32.webp":_h,"/src/images/banner/weapons/epitome-invocation-33.webp":uh,"/src/images/banner/weapons/epitome-invocation-34.webp":hh,"/src/images/banner/weapons/epitome-invocation-35.webp":vh,"/src/images/banner/weapons/epitome-invocation-36.webp":Rh,"/src/images/banner/weapons/epitome-invocation-37.webp":kh,"/src/images/banner/weapons/epitome-invocation-38.webp":zh,"/src/images/banner/weapons/epitome-invocation-39.webp":qh,"/src/images/banner/weapons/epitome-invocation-4.webp":Eh,"/src/images/banner/weapons/epitome-invocation-40.webp":Mh,"/src/images/banner/weapons/epitome-invocation-41.webp":Ph,"/src/images/banner/weapons/epitome-invocation-42.webp":Fh,"/src/images/banner/weapons/epitome-invocation-43.webp":Kh,"/src/images/banner/weapons/epitome-invocation-44.webp":Qh,"/src/images/banner/weapons/epitome-invocation-45.webp":Zh,"/src/images/banner/weapons/epitome-invocation-46.webp":t0,"/src/images/banner/weapons/epitome-invocation-47.webp":c0,"/src/images/banner/weapons/epitome-invocation-48.webp":i0,"/src/images/banner/weapons/epitome-invocation-49.webp":_0,"/src/images/banner/weapons/epitome-invocation-5.webp":u0,"/src/images/banner/weapons/epitome-invocation-50.webp":h0,"/src/images/banner/weapons/epitome-invocation-51.webp":v0,"/src/images/banner/weapons/epitome-invocation-52.webp":R0,"/src/images/banner/weapons/epitome-invocation-53.webp":k0,"/src/images/banner/weapons/epitome-invocation-54.webp":z0,"/src/images/banner/weapons/epitome-invocation-55.webp":q0,"/src/images/banner/weapons/epitome-invocation-56.webp":E0,"/src/images/banner/weapons/epitome-invocation-57.webp":M0,"/src/images/banner/weapons/epitome-invocation-58.webp":P0,"/src/images/banner/weapons/epitome-invocation-6.webp":F0,"/src/images/banner/weapons/epitome-invocation-7.webp":K0,"/src/images/banner/weapons/epitome-invocation-8.webp":Q0,"/src/images/banner/weapons/epitome-invocation-9.webp":Z0,"/src/images/characters/banner-button/albedo.webp":t1,"/src/images/characters/banner-button/alhaitham.webp":c1,"/src/images/characters/banner-button/arataki-itto.webp":i1,"/src/images/characters/banner-button/baizhu.webp":_1,"/src/images/characters/banner-button/cyno.webp":u1,"/src/images/characters/banner-button/dehya.webp":h1,"/src/images/characters/banner-button/eula.webp":v1,"/src/images/characters/banner-button/furina.webp":R1,"/src/images/characters/banner-button/ganyu.webp":k1,"/src/images/characters/banner-button/hu-tao.webp":z1,"/src/images/characters/banner-button/jean.webp":q1,"/src/images/characters/banner-button/kaedehara-kazuha.webp":E1,"/src/images/characters/banner-button/kamisato-ayaka.webp":M1,"/src/images/characters/banner-button/kamisato-ayato.webp":P1,"/src/images/characters/banner-button/keqing.webp":F1,"/src/images/characters/banner-button/klee.webp":K1,"/src/images/characters/banner-button/lyney.webp":Q1,"/src/images/characters/banner-button/nahida.webp":Z1,"/src/images/characters/banner-button/navia.webp":tf,"/src/images/characters/banner-button/neuvillette.webp":cf,"/src/images/characters/banner-button/nilou.webp":mf,"/src/images/characters/banner-button/noelle.webp":gf,"/src/images/characters/banner-button/qiqi.webp":pf,"/src/images/characters/banner-button/raiden-shogun.webp":ff,"/src/images/characters/banner-button/sangonomiya-kokomi.webp":df,"/src/images/characters/banner-button/shenhe.webp":Uf,"/src/images/characters/banner-button/tartaglia.webp":If,"/src/images/characters/banner-button/tighnari.webp":xf,"/src/images/characters/banner-button/venti.webp":Bf,"/src/images/characters/banner-button/wanderer.webp":Cf,"/src/images/characters/banner-button/wriothesley.webp":Of,"/src/images/characters/banner-button/xiao.webp":Nf,"/src/images/characters/banner-button/yae-miko.webp":Wf,"/src/images/characters/banner-button/yelan.webp":Jf,"/src/images/characters/banner-button/yoimiya.webp":Xf,"/src/images/characters/banner-button/zhongli.webp":s2,"/src/images/characters/face/4star/amber.webp":r2,"/src/images/characters/face/4star/barbara.webp":a2,"/src/images/characters/face/4star/beidou.webp":m2,"/src/images/characters/face/4star/bennett.webp":g2,"/src/images/characters/face/4star/candace.webp":p2,"/src/images/characters/face/4star/charlotte.webp":f2,"/src/images/characters/face/4star/chevreuse.webp":d2,"/src/images/characters/face/4star/chongyun.webp":U2,"/src/images/characters/face/4star/collei.webp":I2,"/src/images/characters/face/4star/diona.webp":x2,"/src/images/characters/face/4star/dori.webp":B2,"/src/images/characters/face/4star/faruzan.webp":C2,"/src/images/characters/face/4star/fischl.webp":O2,"/src/images/characters/face/4star/freminet.webp":N2,"/src/images/characters/face/4star/gorou.webp":W2,"/src/images/characters/face/4star/kaeya.webp":J2,"/src/images/characters/face/4star/kaveh.webp":X2,"/src/images/characters/face/4star/kirara.webp":s5,"/src/images/characters/face/4star/kujou-sara.webp":r5,"/src/images/characters/face/4star/kuki-shinobu.webp":a5,"/src/images/characters/face/4star/layla.webp":m5,"/src/images/characters/face/4star/lisa.webp":g5,"/src/images/characters/face/4star/lynette.webp":p5,"/src/images/characters/face/4star/mika.webp":f5,"/src/images/characters/face/4star/ningguang.webp":d5,"/src/images/characters/face/4star/noelle.webp":U5,"/src/images/characters/face/4star/razor.webp":I5,"/src/images/characters/face/4star/rosaria.webp":x5,"/src/images/characters/face/4star/sayu.webp":B5,"/src/images/characters/face/4star/shikanoin-heizou.webp":C5,"/src/images/characters/face/4star/sucrose.webp":O5,"/src/images/characters/face/4star/thoma.webp":N5,"/src/images/characters/face/4star/xiangling.webp":W5,"/src/images/characters/face/4star/xingqiu.webp":J5,"/src/images/characters/face/4star/xinyan.webp":X5,"/src/images/characters/face/4star/yanfei.webp":s$,"/src/images/characters/face/4star/yaoyao.webp":r$,"/src/images/characters/face/4star/yun-jin.webp":a$,"/src/images/characters/face/5star/albedo.webp":m$,"/src/images/characters/face/5star/alhaitham.webp":g$,"/src/images/characters/face/5star/arataki-itto.webp":p$,"/src/images/characters/face/5star/baizhu.webp":f$,"/src/images/characters/face/5star/cyno.webp":d$,"/src/images/characters/face/5star/dehya.webp":U$,"/src/images/characters/face/5star/diluc.webp":I$,"/src/images/characters/face/5star/eula.webp":x$,"/src/images/characters/face/5star/furina.webp":B$,"/src/images/characters/face/5star/ganyu.webp":C$,"/src/images/characters/face/5star/hu-tao.webp":O$,"/src/images/characters/face/5star/jean.webp":N$,"/src/images/characters/face/5star/kaedehara-kazuha.webp":W$,"/src/images/characters/face/5star/kamisato-ayaka.webp":J$,"/src/images/characters/face/5star/kamisato-ayato.webp":X$,"/src/images/characters/face/5star/keqing.webp":s3,"/src/images/characters/face/5star/klee.webp":r3,"/src/images/characters/face/5star/lyney.webp":a3,"/src/images/characters/face/5star/mona.webp":m3,"/src/images/characters/face/5star/nahida.webp":g3,"/src/images/characters/face/5star/navia.webp":p3,"/src/images/characters/face/5star/neuvillette.webp":f3,"/src/images/characters/face/5star/nilou.webp":d3,"/src/images/characters/face/5star/qiqi.webp":U3,"/src/images/characters/face/5star/raiden-shogun.webp":I3,"/src/images/characters/face/5star/sangonomiya-kokomi.webp":x3,"/src/images/characters/face/5star/shenhe.webp":B3,"/src/images/characters/face/5star/tartaglia.webp":C3,"/src/images/characters/face/5star/tighnari.webp":O3,"/src/images/characters/face/5star/venti.webp":N3,"/src/images/characters/face/5star/wanderer.webp":W3,"/src/images/characters/face/5star/wriothesley.webp":J3,"/src/images/characters/face/5star/xiao.webp":X3,"/src/images/characters/face/5star/yae-miko.webp":sv,"/src/images/characters/face/5star/yelan.webp":rv,"/src/images/characters/face/5star/yoimiya.webp":av,"/src/images/characters/face/5star/zhongli.webp":mv,"/src/images/characters/splash-art/4star/amber.webp":gv,"/src/images/characters/splash-art/4star/barbara.webp":pv,"/src/images/characters/splash-art/4star/beidou.webp":fv,"/src/images/characters/splash-art/4star/bennett.webp":dv,"/src/images/characters/splash-art/4star/candace.webp":Uv,"/src/images/characters/splash-art/4star/charlotte.webp":Iv,"/src/images/characters/splash-art/4star/chevreuse.webp":xv,"/src/images/characters/splash-art/4star/chongyun.webp":Bv,"/src/images/characters/splash-art/4star/collei.webp":Cv,"/src/images/characters/splash-art/4star/diona.webp":Ov,"/src/images/characters/splash-art/4star/dori.webp":Nv,"/src/images/characters/splash-art/4star/faruzan.webp":Wv,"/src/images/characters/splash-art/4star/fischl.webp":Jv,"/src/images/characters/splash-art/4star/freminet.webp":Xv,"/src/images/characters/splash-art/4star/gorou.webp":s4,"/src/images/characters/splash-art/4star/kaeya.webp":r4,"/src/images/characters/splash-art/4star/kaveh.webp":a4,"/src/images/characters/splash-art/4star/kirara.webp":m4,"/src/images/characters/splash-art/4star/kujou-sara.webp":g4,"/src/images/characters/splash-art/4star/kuki-shinobu.webp":p4,"/src/images/characters/splash-art/4star/layla.webp":f4,"/src/images/characters/splash-art/4star/lisa.webp":d4,"/src/images/characters/splash-art/4star/lynette.webp":U4,"/src/images/characters/splash-art/4star/mika.webp":I4,"/src/images/characters/splash-art/4star/ningguang.webp":x4,"/src/images/characters/splash-art/4star/noelle.webp":B4,"/src/images/characters/splash-art/4star/razor.webp":C4,"/src/images/characters/splash-art/4star/rosaria.webp":O4,"/src/images/characters/splash-art/4star/sayu.webp":N4,"/src/images/characters/splash-art/4star/shikanoin-heizou.webp":W4,"/src/images/characters/splash-art/4star/sucrose.webp":J4,"/src/images/characters/splash-art/4star/thoma.webp":X4,"/src/images/characters/splash-art/4star/xiangling.webp":sd,"/src/images/characters/splash-art/4star/xingqiu.webp":rd,"/src/images/characters/splash-art/4star/xinyan.webp":ad,"/src/images/characters/splash-art/4star/yanfei.webp":md,"/src/images/characters/splash-art/4star/yaoyao.webp":gd,"/src/images/characters/splash-art/4star/yun-jin.webp":pd,"/src/images/characters/splash-art/5star/albedo.webp":fd,"/src/images/characters/splash-art/5star/alhaitham.webp":dd,"/src/images/characters/splash-art/5star/arataki-itto.webp":Ud,"/src/images/characters/splash-art/5star/baizhu.webp":Id,"/src/images/characters/splash-art/5star/cyno.webp":xd,"/src/images/characters/splash-art/5star/dehya.webp":Bd,"/src/images/characters/splash-art/5star/diluc.webp":Cd,"/src/images/characters/splash-art/5star/eula.webp":Od,"/src/images/characters/splash-art/5star/furina.webp":Nd,"/src/images/characters/splash-art/5star/ganyu.webp":Wd,"/src/images/characters/splash-art/5star/hu-tao.webp":Jd,"/src/images/characters/splash-art/5star/jean.webp":Xd,"/src/images/characters/splash-art/5star/kaedehara-kazuha.webp":s6,"/src/images/characters/splash-art/5star/kamisato-ayaka.webp":r6,"/src/images/characters/splash-art/5star/kamisato-ayato.webp":a6,"/src/images/characters/splash-art/5star/keqing.webp":m6,"/src/images/characters/splash-art/5star/klee.webp":g6,"/src/images/characters/splash-art/5star/lyney.webp":p6,"/src/images/characters/splash-art/5star/mona.webp":f6,"/src/images/characters/splash-art/5star/nahida.webp":d6,"/src/images/characters/splash-art/5star/navia.webp":U6,"/src/images/characters/splash-art/5star/neuvillette.webp":I6,"/src/images/characters/splash-art/5star/nilou.webp":x6,"/src/images/characters/splash-art/5star/qiqi.webp":B6,"/src/images/characters/splash-art/5star/raiden-shogun.webp":C6,"/src/images/characters/splash-art/5star/sangonomiya-kokomi.webp":O6,"/src/images/characters/splash-art/5star/shenhe.webp":N6,"/src/images/characters/splash-art/5star/tartaglia.webp":W6,"/src/images/characters/splash-art/5star/tighnari.webp":J6,"/src/images/characters/splash-art/5star/venti.webp":X6,"/src/images/characters/splash-art/5star/wanderer.webp":s9,"/src/images/characters/splash-art/5star/wriothesley.webp":r9,"/src/images/characters/splash-art/5star/xiao.webp":a9,"/src/images/characters/splash-art/5star/yae-miko.webp":m9,"/src/images/characters/splash-art/5star/yelan.webp":g9,"/src/images/characters/splash-art/5star/yoimiya.webp":p9,"/src/images/characters/splash-art/5star/zhongli.webp":f9,"/src/images/outfits/face/5-star-outrider.webp":d9,"/src/images/outfits/face/a-sobriquet-under-shade.webp":U9,"/src/images/outfits/face/blossoming-starlight.webp":I9,"/src/images/outfits/face/ein-immernachtstraum.webp":x9,"/src/images/outfits/face/executor_s-thorns.webp":B9,"/src/images/outfits/face/favonian-fevotion.webp":C9,"/src/images/outfits/face/flowing-fate.webp":O9,"/src/images/outfits/face/opulent-splendor.webp":N9,"/src/images/outfits/face/orchid_s-evening-gown.webp":W9,"/src/images/outfits/face/red-dead-of-night.webp":J9,"/src/images/outfits/face/sailwind-shadow.webp":X9,"/src/images/outfits/face/sea-breeze-dandelion.webp":s8,"/src/images/outfits/face/springbloom-missive.webp":r8,"/src/images/outfits/face/summertime-sparkle.webp":a8,"/src/images/outfits/splash-art/5-star-outrider.webp":m8,"/src/images/outfits/splash-art/a-sobriquet-under-shade.webp":g8,"/src/images/outfits/splash-art/blossoming-starlight.webp":p8,"/src/images/outfits/splash-art/ein-immernachtstraum.webp":f8,"/src/images/outfits/splash-art/executor_s-thorns.webp":d8,"/src/images/outfits/splash-art/favonian-fevotion.webp":U8,"/src/images/outfits/splash-art/flowing-fate.webp":I8,"/src/images/outfits/splash-art/opulent-splendor.webp":x8,"/src/images/outfits/splash-art/orchid_s-evening-gown.webp":B8,"/src/images/outfits/splash-art/red-dead-of-night.webp":C8,"/src/images/outfits/splash-art/sailwind-shadow.webp":O8,"/src/images/outfits/splash-art/sea-breeze-dandelion.webp":N8,"/src/images/outfits/splash-art/springbloom-missive.webp":W8,"/src/images/outfits/splash-art/summertime-sparkle.webp":J8,"/src/images/outfits/thumbnail/a-sobriquet-under-shade.webp":X8,"/src/images/outfits/thumbnail/blossoming-starlight.webp":s7,"/src/images/outfits/thumbnail/ein-immernachtstraum.webp":r7,"/src/images/outfits/thumbnail/opulent-splendor.webp":a7,"/src/images/outfits/thumbnail/orchid_s-evening-gown.webp":m7,"/src/images/outfits/thumbnail/red-dead-of-night.webp":g7,"/src/images/outfits/thumbnail/sailwind-shadow.webp":p7,"/src/images/outfits/thumbnail/sea-breeze-dandelion.webp":f7,"/src/images/outfits/thumbnail/springbloom-missive.webp":d7,"/src/images/outfits/thumbnail/summertime-sparkle.webp":U7,"/src/images/utility/3star-bg.webp":I7,"/src/images/utility/4star-bg.webp":x7,"/src/images/utility/5star-bg.webp":B7,"/src/images/utility/5star-special.webp":C7,"/src/images/utility/acquaint-fate.webp":O7,"/src/images/utility/admin.webp":N7,"/src/images/utility/alipay.jpg":W7,"/src/images/utility/bg-bonus.webp":J7,"/src/images/utility/bg-bow.webp":X7,"/src/images/utility/bg-catalyst.webp":sL,"/src/images/utility/bg-claymore.webp":rL,"/src/images/utility/bg-polearm.webp":aL,"/src/images/utility/bg-sword.webp":mL,"/src/images/utility/book-select-bg.webp":gL,"/src/images/utility/book.webp":pL,"/src/images/utility/brand.png":fL,"/src/images/utility/button.webp":dL,"/src/images/utility/donate-bnb.png":UL,"/src/images/utility/donate-btc.png":IL,"/src/images/utility/donate-dana.png":xL,"/src/images/utility/donate-ethereum.png":BL,"/src/images/utility/donate-gopay.png":CL,"/src/images/utility/donate-kofi.png":OL,"/src/images/utility/donate-linkaja.png":NL,"/src/images/utility/donate-ovo.png":WL,"/src/images/utility/donate-saweria.webp":JL,"/src/images/utility/donate-shopeepay.png":XL,"/src/images/utility/donate-solana.png":sR,"/src/images/utility/face-placeholder.webp":rR,"/src/images/utility/fatepointbook-half.webp":aR,"/src/images/utility/fatepointbook.webp":mR,"/src/images/utility/genesis-1980.webp":gR,"/src/images/utility/genesis-300.webp":pR,"/src/images/utility/genesis-3280.webp":fR,"/src/images/utility/genesis-60.webp":dR,"/src/images/utility/genesis-6480.webp":UR,"/src/images/utility/genesis-980.webp":IR,"/src/images/utility/genesis-bg.webp":xR,"/src/images/utility/genesis.webp":BR,"/src/images/utility/genshin-logo-cn.webp":CR,"/src/images/utility/genshin-logo.webp":OR,"/src/images/utility/history-select-bg.webp":NR,"/src/images/utility/imbroke.webp":WR,"/src/images/utility/intertwined-fate.webp":JR,"/src/images/utility/masterless-stardust.webp":XR,"/src/images/utility/masterless-starglitter.webp":sU,"/src/images/utility/modal-bg-icon.png":rU,"/src/images/utility/payment-childe.webp":aU,"/src/images/utility/payment-tears.webp":mU,"/src/images/utility/payment-wakaranai.webp":gU,"/src/images/utility/paypal.png":pU,"/src/images/utility/playstore-button.webp":fU,"/src/images/utility/primogem.webp":dU,"/src/images/utility/resultcard-bg.svg":LU,"/src/images/utility/resultcard-bg.webp":yU,"/src/images/utility/shop-nav-bg.webp":DU,"/src/images/utility/stella-fortuna-4star.webp":jU,"/src/images/utility/stella-fortuna-5star.webp":SU,"/src/images/utility/wechatpay.jpg":AU,"/src/images/utility/welkin-card.webp":TU,"/src/images/utility/welkin-moon-girl.webp":HU,"/src/images/utility/welkin.webp":VU,"/src/images/weapons/bow/3star/raven-bow.webp":GU,"/src/images/weapons/bow/3star/sharpshooter_s-oath.webp":YU,"/src/images/weapons/bow/3star/slingshot.webp":ey,"/src/images/weapons/bow/4star/alley-hunter.webp":oy,"/src/images/weapons/bow/4star/favonius-warbow.webp":ny,"/src/images/weapons/bow/4star/mitternachts-waltz.webp":by,"/src/images/weapons/bow/4star/mouun_s-moon.webp":wy,"/src/images/weapons/bow/4star/range-gauge.webp":ly,"/src/images/weapons/bow/4star/rust.webp":$y,"/src/images/weapons/bow/4star/sacrificial-bow.webp":Ly,"/src/images/weapons/bow/4star/the-stringless.webp":yy,"/src/images/weapons/bow/5star/amos-bow.webp":Dy,"/src/images/weapons/bow/5star/aqua-simulacra.webp":jy,"/src/images/weapons/bow/5star/elegy-for-the-end.webp":Sy,"/src/images/weapons/bow/5star/hunter_s-path.webp":Ay,"/src/images/weapons/bow/5star/polar-star.webp":Ty,"/src/images/weapons/bow/5star/skyward-harp.webp":Hy,"/src/images/weapons/bow/5star/the-first-great-magic.webp":Vy,"/src/images/weapons/bow/5star/thundering-pulse.webp":Gy,"/src/images/weapons/catalyst/3star/emerald-orb.webp":Yy,"/src/images/weapons/catalyst/3star/magic-guide.webp":ek,"/src/images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp":ok,"/src/images/weapons/catalyst/4star/eye-of-perception.webp":nk,"/src/images/weapons/catalyst/4star/favonius-codex.webp":bk,"/src/images/weapons/catalyst/4star/sacrificial-fragments.webp":wk,"/src/images/weapons/catalyst/4star/the-widsith.webp":lk,"/src/images/weapons/catalyst/4star/wandering-evenstar.webp":$k,"/src/images/weapons/catalyst/4star/wine-and-song.webp":Lk,"/src/images/weapons/catalyst/5star/a-thousand-floating-dreams.webp":yk,"/src/images/weapons/catalyst/5star/cashflow-supervision.webp":Dk,"/src/images/weapons/catalyst/5star/everlasting-moonglow.webp":jk,"/src/images/weapons/catalyst/5star/jadefall-splendor.webp":Sk,"/src/images/weapons/catalyst/5star/kagura_s-verity.webp":Ak,"/src/images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp":Tk,"/src/images/weapons/catalyst/5star/memory-of-dust.webp":Hk,"/src/images/weapons/catalyst/5star/skyward-atlas.webp":Vk,"/src/images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp":Gk,"/src/images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp":Yk,"/src/images/weapons/claymore/3star/bloodtained-greatsword.webp":eI,"/src/images/weapons/claymore/3star/debate-club.webp":oI,"/src/images/weapons/claymore/3star/ferrous-shadow.webp":nI,"/src/images/weapons/claymore/4star/akuoumaru.webp":bI,"/src/images/weapons/claymore/4star/favonius-greatsword.webp":wI,"/src/images/weapons/claymore/4star/lithic-blade.webp":lI,"/src/images/weapons/claymore/4star/makhaira-aquamarine.webp":$I,"/src/images/weapons/claymore/4star/portable-power-saw.webp":LI,"/src/images/weapons/claymore/4star/rainslasher.webp":yI,"/src/images/weapons/claymore/4star/sacrificial-greatsword.webp":DI,"/src/images/weapons/claymore/4star/the-bell.webp":jI,"/src/images/weapons/claymore/5star/beacon-of-the-reed-sea.webp":SI,"/src/images/weapons/claymore/5star/redhorn-stonethresher.webp":AI,"/src/images/weapons/claymore/5star/skyward-pride.webp":TI,"/src/images/weapons/claymore/5star/song-of-broken-pines.webp":HI,"/src/images/weapons/claymore/5star/the-unforged.webp":VI,"/src/images/weapons/claymore/5star/verdict.webp":GI,"/src/images/weapons/claymore/5star/wolf_s-gravestone.webp":YI,"/src/images/weapons/polearm/3star/black-tassel.webp":eD,"/src/images/weapons/polearm/4star/dragon_s-bane.webp":oD,"/src/images/weapons/polearm/4star/favonius-lance.webp":nD,"/src/images/weapons/polearm/4star/lithic-spear.webp":bD,"/src/images/weapons/polearm/4star/prospector-drill.webp":wD,"/src/images/weapons/polearm/4star/wavebreaker_s-fin.webp":lD,"/src/images/weapons/polearm/5star/calamity-queller.webp":$D,"/src/images/weapons/polearm/5star/engulfing-lightning.webp":LD,"/src/images/weapons/polearm/5star/primordial-jade-winged-spear.webp":yD,"/src/images/weapons/polearm/5star/skyward-spine.webp":DD,"/src/images/weapons/polearm/5star/staff-of-homa.webp":jD,"/src/images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp":SD,"/src/images/weapons/polearm/5star/vortex-vanquisher.webp":AD,"/src/images/weapons/sword/3star/cool-steel.webp":TD,"/src/images/weapons/sword/3star/harbinger-of-dawn.webp":HD,"/src/images/weapons/sword/3star/skyrider-sword.webp":VD,"/src/images/weapons/sword/4star/favonius-sword.webp":GD,"/src/images/weapons/sword/4star/lion_s-roar.webp":YD,"/src/images/weapons/sword/4star/sacrificial-sword.webp":ez,"/src/images/weapons/sword/4star/the-alley-flash.webp":oz,"/src/images/weapons/sword/4star/the-dockhands-assistant.webp":nz,"/src/images/weapons/sword/4star/the-flute.webp":bz,"/src/images/weapons/sword/4star/xiphos-moonlight.webp":wz,"/src/images/weapons/sword/5star/aquila-favonia.webp":lz,"/src/images/weapons/sword/5star/freedom-sworn.webp":$z,"/src/images/weapons/sword/5star/haran-geppaku-futsu.webp":Lz,"/src/images/weapons/sword/5star/key-of-khaj-nisut.webp":yz,"/src/images/weapons/sword/5star/light-of-foliar-incision.webp":Dz,"/src/images/weapons/sword/5star/mistsplitter-reforged.webp":jz,"/src/images/weapons/sword/5star/primordial-jade-cutter.webp":Sz,"/src/images/weapons/sword/5star/skyward-blade.webp":Az,"/src/images/weapons/sword/5star/splendor-of-tranquil-waters.webp":Tz,"/src/images/weapons/sword/5star/summit-shaper.webp":Hz}),Fz=()=>{const s={};return Object.keys(z).map(e=>{const[t]=e.split("/").reverse(),[r]=t.split("."),{img:o={}}=z[e],{src:a=""}=o;e.match(/face\//)?s[`face/${r}`]=a:e.match(/splash-art/)?s[`splash-art/${r}`]=a:e.match(/banner-button/)?s[`button/${r}`]=a:e.match(/thumbnail/)?s[`thumbnail/${r}`]=a:e.match(/blank/)?s[`blank/${r}`]=a:e.match(/(banner|weapons)/)?s[r]=a:s[t]=a}),s},Wz=[{dir:"background",paths:["constellation.webp","detailbg.webp","element-anemo-bg.webp","element-cryo-bg.webp","element-dendro-bg.webp","element-electro-bg.webp","element-geo-bg.webp","element-hydro-bg.webp","element-pyro-bg.webp","wish-background.webp"]},{dir:"utility",paths:["3star-bg.webp","4star-bg.webp","5star-bg.webp","5star-special.webp","acquaint-fate.webp","bg-bonus.webp","book.webp","book-select-bg.webp","brand.png","button.webp","fatepointbook-half.webp","fatepointbook.webp","genesis-60.webp","genesis-300.webp","genesis-980.webp","genesis-1980.webp","genesis-3280.webp","genesis-6480.webp","genesis-bg.webp","genesis.webp","history-select-bg.webp","imbroke.webp","intertwined-fate.webp","modal-bg-icon.png","payment-childe.webp","payment-tears.webp","payment-wakaranai.webp","primogem.webp","shop-nav-bg.webp","welkin-card.webp","welkin-moon-girl.webp","welkin.webp"]}],x=[{dir:"background",paths:["outfit-background.webp","splash-background.webp"]},{dir:"utility",paths:["bg-bow.webp","bg-catalyst.webp","bg-claymore.webp","bg-polearm.webp","bg-sword.webp","face-placeholder.webp","genshin-logo-cn.webp","genshin-logo.webp","masterless-stardust.webp","masterless-starglitter.webp","resultcard-bg.webp","stella-fortuna-4star.webp","stella-fortuna-5star.webp"]}],Vz=()=>{const s=[];for(let e=0;e<10;e++)s.push(`bg${e+1}.webp`);return{dir:"background",paths:s}},Xz=s=>{const e=[],t=Fz(),r=[Vz(),...x,...Wz];return(s==="preview"?x:r).forEach(({paths:a})=>{a.forEach(n=>{const c={path:t[n],asset:n};e.push(c)})}),e},Yz=async s=>{try{const e=await fetch(s);if(e.headers.get("Content-Type")==="text/html")throw new Error("Failed to load Assets");const r=await e.blob();return(window.URL||window.webkitURL).createObjectURL(r)}catch(e){return console.error(e),"error"}},Zz=s=>{const[e,t]=s.split(";base64,"),[,r]=e.split(":"),o=atob(t),a=new Array(o.length);for(let m=0;m<o.length;m++)a[m]=o.charCodeAt(m);const n=new Uint8Array(a);return new Blob([n],{type:r})},Kz=async()=>{if(!document.head.querySelector(".imagecdn"))try{return new Promise((t,r)=>{const o=document.createElement("script");o.crossOrigin="anonymous",o.src=d+"/js/image-cdn",o.classList.add("imagecdn"),document.head.append(o),o.addEventListener("load",()=>t("ok")),o.addEventListener("error",()=>r("cannot use imagecdn"))})}catch(e){console.log(e)}},sx=(s,e=0)=>"getCDNImageURL"in window?window.getCDNImageURL(s,e,S):s,w=J,ex={isComplete:async s=>{const{character:e,images:t,rateup:r=[],bannerName:o}=await w.get(s)||{},{artURL:a}=t||{};return!!a&&!!e&&r.length>0&&!!o},isHostedBanner:async s=>"hostedImages"in await w.get(s),renewImage:async({id:s=0,newData:e={},key:t=""})=>{const{data:r={}}=e,{url:o,delete_url:a}=r,[,,,n,m]=a.split("/"),c=await w.get(s),{hostedImages:i={},imageHash:_={},imgChanged:u={}}=c,g=Object.keys(_).map(l=>_[l].id);return c.hostedImages=i,c.imageHash=_,c.imgChanged=u,g.filter(l=>l===_[t]?.id).length>1||await B.deleteImage(_[t]||{}),c.hostedImages[t]=o,c.imageHash[t]={id:n,hash:m},c.imgChanged[t]=!1,w.put(c)}},B={async _postData({action:s,data:e={},id:t}){const r={app:"genshin",action:s,data:e,id:t},o=new Headers;return o.append("Content-Type","application/json"),await(await fetch(d+"/storage",{method:"POST",body:JSON.stringify(r),headers:o})).json()},async getData(s,e=!1){try{if(!s)throw new Error;const r=await(await fetch(`${d}/storage?app=genshin&id=${s}`)).json()||{},{data:o=[]}=r;return e==="multi"||(r.data={...o[0]}),r}catch(t){return console.log(t),{success:!1,message:"error"}}},async updateData(s){try{if(!s)throw new Error("no ID");const e=new Date().toISOString(),t=await w.get(s),r={...t},{shareID:o=null,images:a,character:n,isChanged:m}=r,{thumbnail:c}=a;if(!m)return{status:"ok",shareID:o,thumbnail:c,character:n};delete r.images,delete r.imgChanged,delete r.status,delete r.isChanged,delete r.shareID,r.lastModified=e;const i=await this._postData({id:o,action:"put",data:r}),{success:_,id:u,message:g}=i;if(!_)throw new Error("Failed to Update");return t.shareID=u,t.lastModified=e,t.isChanged=!1,await w.put(t),{status:"ok",shareID:u,thumbnail:c,message:g,character:n}}catch(e){return console.error(e),{status:"error"}}},async deleteBanner(s){try{const{shareID:e,status:t,imageHash:r={}}=await w.get(s)||{};if(t==="cloud"||!e)return await w.delete(s),{status:"ok"};const o=Object.keys(r);for(let n=0;n<o.length;n++){const m=r[o[n]];await this.deleteImage(m)}const{success:a}=await this._postData({action:"delete",id:e});if(!a)throw new Error("Failed to Remove");return await w.delete(s),{status:"ok"}}catch{return{status:"error"}}},async deleteImage({hash:s,id:e}={}){if(!!(s&&e))try{const t=new FormData;t.append("action","delete"),t.append("delete","image"),t.append("deleting[id]",e),t.append("deleting[hash]",s);const r=await fetch("https://ibb.co/json",{method:"POST",body:t}),{status_code:o}=await r.json();return console.log(e,s,o),o===200}catch(t){return console.error(t),!1}},async block(s){if(!!s)try{const{success:e}=await this._postData({action:"block",id:s});return e}catch(e){return console.error(e),!1}}},tx=async()=>{try{const s=await w.getAll()||[];if(s.length<1)return;await Kz();const e=s.map(({shareID:c})=>c).filter(c=>!!c),t=e.join(","),{success:r,data:o=[]}=await B.getData(t,"multi")||{};if(!r)return;const a=[];for(let c=0;c<o.length;c++){const i=o[c],_=s.find(({shareID:u})=>u===i.id);if(i.blocked&&a.push(i.id),i.status=_.status,i.shareID=i.id,delete i.id,_.status==="cloud"&&(delete i.imageHash,await w.put(i)),_.status==="owned"){const{hostedImages:u={},imageHash:g={},blocked:y=!1}=i,l={..._,hostedImages:u,imageHash:g,blocked:y};await w.put(l)}}const n=o.map(({shareID:c})=>c),m=e.filter(c=>{const i=a.includes(c);return!n.includes(c)||i});for(let c=0;c<m.length;c++){const i=m[c],{itemID:_,status:u}=s.find(({shareID:g})=>g===i);if(u==="cloud"){await w.delete(_);continue}if(u==="owned"){const g=await w.get(_);if(g.shareID)continue;delete g.imgChanged,delete g.shareID,g.isChanged=!0,g.imgChanged={artURL:!0,faceURL:!0,thumbnail:!0},g.lastModified=new Date().toISOString(),await w.put(g)}}}catch(s){console.error("sync custom banner failed",s)}};export{Qz as A,J as B,Gz as H,sx as a,Yz as b,Zz as c,ex as d,Fz as i,Xz as l,B as o,tx as s};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/de-DE-3814d14a.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/de-DE-3814d14a.js
deleted file mode 100644
index 5e4303c0..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/de-DE-3814d14a.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Genshin Impact Gebets-Simulator",n="Charakter",t="Waffe",i="G\xF6ttliches Auge",a="Anemo",r="Kryo",s="Dendro",l="Elektro",h="Hydro",d="Geo",o="Pyro",c="Bogen",u="Katalysator",m="Zweih\xE4nder",g="Schwert",b="Stangenwaffe",p="Extra",f="Erhalten",k="Warten",S="Verbindung fehlgeschlagen!",w="Best\xE4tigen",z="Abbrechen",W="Alle Medien, die auf dieser Seite benutzt wurden, geh\xF6ren miHoYo.",y="Dies ist eine reine Fananwendung, viel Spa\xDF damit!",A="Klicke in den leeren Bereich um fortzufahren!",v="Anleitung zum Installieren auf dem Startbildschirm/Desktop",G="Teilen",B="Foto machen",F="Erfassen",D="Belohnung f\xFCr erstes Mal teilen: {qty}",K="Version",N="Spenden",j={beginner:"Anf\xE4ngergebet",wanderlust:"Wanderlust","epitome-invocation":"G\xF6ttliches Werk","adrift-in-the-harbor":"Fl\xFCchtige Bekanntschaft","auric-blaze":"Sengende Sonne und gl\xFChendes Gold","azure-excursion":"Fluss der blassen Bl\xE4tter","ballad-in-goblets":"Balladen in Bechern","born-of-ocean-swell":"Stunde der Wogen","caution-in-confidence":"Verhaltene Zuversicht","chanson-of-many-waters":"Chanson der Str\xF6me","conjuring-chiaroscuro":"Conjuring Chiaroscuro","dance-of-lantern":"Tanz der Laternen","decree-of-the-deeps":"Gebot \xFCber die Meerestiefen","discerner-of-enigmas":"L\xFCftung himmlischer Geheimnisse","drifting-luminescence":"Treibende Perle","everbloom-violet":"Violette Bl\xFCtenwolken","farewell-of-snezhnaya":"Lebe wohl, winterliche Stadt","from-ashes-reborn":"Aus der Glut wiedergeboren","gentry-of-hermitage":"Abgeschiedener Adel","immaculate-pulse":"Pulsierendes Leben","in-the-name-of-the-rosula":"Im Namen der Rosula","invitation-to-mundane-life":"Bombastische Einladung","leaves-in-the-wind":"Bl\xE4tter im Wind","moment-of-bloom":"Augenblick des Erbl\xFChens","oni_s-royale":"Onibankett","reign-of-serenity":"Im Schatten der Welt","secretum-secretorum":"R\xE4tselhafte Worte","sparkling-steps":"Flammende Schritte","tapestry-of-golden-flames":"Flammengalaxie","tempestuous-destiny":"St\xFCrmisches Schicksal","the-heron_s-court":"Kranichhof","the-moongrass-enlightenment":"Erleuchtung des Mondgrases","the-transcendent-one-returns":"R\xFCckkehr aus der Abgeschiedenheit","twilight-arbiter":"Schiedsspruch der D\xE4mmerung","twirling-lotus":"Wirbelnder Lotos","viridescent-vigil":"Wachgang im Dickicht"},I={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},O={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},E={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},R={wishTitle:"Gebet",rollButton:"Gebet {count}",stellaFortuna:"Stella Fortuna",loadFailed:"Laden des Banners fehlgeschlagen! <br /> Bitte wechsel zu einem anderen Banner oder \xFCberpr\xFCfe deine Internetverbindung, um Fehler zu verhindern!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banner",allBanner:"Alle Banner",previous:"Vorheriger Banner",findBanner:"Finde einen Banner",group:"Gruppe",beginner:"Anf\xE4ngergebet","character-event":"Figurenaktionsgebet","weapon-event":"Waffenaktionsgebet",standard:"Standardgebet",wishDescription:"Alle 10 Ziehungen erh\xE4ltst du sicher Objekte mit mindestens vier Sternen",novice:"Gebet f\xFCr Anf\xE4nger",up:"UP!",beginnerSet:"20% Rabatt auf 10er-Set. Bei erster Zehnerziehung erh\xE4ltst du sicher folgende Figur: {character}.",beginnerNote:'"Ich wei\xDF genau wie man sich als Magd zu verhalten hat"',beginnerChance:"Verbleibende M\xF6glichkeiten: {chances}",standardNote:"Standardgebet haben kein Zeitlimit.",allWeaponTypes:"Alle Waffentypen",etc:"etc.",probIncreased:"H\xF6here Wahrscheinlichkeit!",eventNote:"Die limitierten Figuren mit f\xFCnft Sternen gibt es nur w\xE4hrend des jeweiligen Aktionszeitraums \xFCber das entsprechende Gebet.",viewDetails:"W\xE4hle 'Details', um mehr zu erfahren."},epitomizedPath:{text:"G\xF6ttlicher Kurs",fatePoint:"Schicksalspunkte",cancelPrompt:"Willst du den aktuellen Kurs abbrechen?",cancelDesc:"Nach dem Abbrechen werden deine gesammelten Schicksalspunkte zur\xFCckgesetzt.",selectWeapon:"Gew\xE4hlte Waffe",chartCourseOf:"Kurs zu {target} setzen",cancelCourse:"Kurs abbrechen",chartCourse:"Kurs setzen",courseSetFor:"Aktueller Kurs: {selectedCourse}",description:['"G\xF6ttlicher Kurs" ist ein besonderer Gebetsmechanismus des neusten Aktionsgebets "G\xF6ttliches Werk".',"Sobald du einen Kurs zu deiner gew\xE4hlten Waffe gesetzt hast, erh\xE4ltst du einen Schicksalspunkt, <span> wenn du eine 5-Sterne-Waffe erh\xE4ltst, die nicht von dir gew\xE4hlt ist</span>.",'Sobald du genug Schicksalspunkte gesammelt hast, wird deine n\xE4chste 5-Sterne-Waffe diejenige sein, du die durch "G\xF6ttlicher Kurs" gew\xE4hlt hast.','<span>Deine Schicksalspunkte werden zur\xFCckgesetzt</span>, wenn du eine Waffe von "G\xF6ttlicher Kurs" w\xE4hrend des Aktionsgebets "G\xF6ttliches Werk" erh\xE4ltst.',"Wenn du keine Waffe ausw\xE4hlst, werden deine Gebete keine Schicksalspunkte ansammeln.","Du kannst deine Auswahl \xE4ndern oder abbrechen. Dadurch werden deine gesammelten Schicksalspunkte zur\xFCckgesetzt.",'Wenn das Aktionsgebet "G\xF6ttliches Werk" beendet ist, werden auch deine gesammelten Schicksalspunkte zur\xFCckgesetzt.']},result:{skip:"\xDCberspringen",meteorFailed:"Meteor Animation l\xE4dt nicht",new:"Neu",convertion:"Umgewandelt",title:"Ergebnis des Gebets f\xFCr {item} und andere"}},C={heading:"Figurenzierde",default:"Standart",setOutfit:"Outfit ausw\xE4hlen",owned:"Bereits vorhanden",purchasePrompt:"Du hast die Figur f\xFCr dieses Outfit nicht, bist du sicher das du es kaufen m\xF6chtest?",promptInfo:"Du kannst dieses Outfit verwenden, nachdem du die Figur freigeschaltet hast",obtained:"Neues Outfit erhalten",unlocked:"{character}: Outfit freigeschaltet",item:{"5-star-outrider":{name:"5-Sterne-Kundschafter"},"favonian-fevotion":{name:"Ritterliche Hingabe"},"flowing-fate":{name:"Flie\xDFendes Schicksal"},"executor_s-thorns":{name:"Vollstreckerdornen"},"sea-breeze-dandelion":{name:"Traum von der Meeresbrise",description:"Jeans Sommerkleidung. Leicht und k\xFChl, aber deswegen nicht weniger elegant. Die perfekte Wahl f\xFCr einen Ausflug ans Meer."},"summertime-sparkle":{name:"Gl\xE4nzende Darbietung",description:"Barbaras Strandmode. Dieser h\xFCbsche Rock strotzt vor sommerlicher Lebensfreude und tr\xE4gt eine k\xFChle Meeresbrise mit sich."},"opulent-splendor":{name:"\xDCppige Pracht",description:"Keqings formelle Kleidung. Inmitten der wundersch\xF6nen Morgend\xE4mmerung des Laternenrituals verflechten sich die in tagelanger harter Arbeit gewebten F\xE4den zu einer leichten und doch pr\xE4chtigen Erscheinung."},"orchid_s-evening-gown":{name:"Orchideen-Abendkleid",description:"Ningguangs formelle Kleidung. Der lange t\xFCrkisfarbene Rock umspielt ihre eleganten Kurven, und die Schmetterlingsfl\xFCgel an ihren Kn\xF6cheln verleihen dem Outfit einen Hauch von leichter Anmut."},"ein-immernachtstraum":{name:"Ein Immernachtstraum",description:"Ein festliches Gewand f\xFCr die Prinzessin. M\xF6ge sie, die Edle, f\xFCr immer ihren Mut, ihre Aufrichtigkeit und ihre G\xFCte bewahren, so dass kein \xDCbel sie je \xFCberw\xE4ltigen kann."},"red-dead-of-night":{name:"Blutrote Nacht",description:"Eines der Outfits, die Diluc bei verdeckten Aktionen tr\xE4gt, gleicht einer Flamme, die in den Schatten tanzt. Die purpurroten Spuren, die sie an den R\xE4ndern der Sicht des Feindes hinterl\xE4sst, werden ihn f\xFCr immer in seinen Albtr\xE4umen verfolgen."},"a-sobriquet-under-shade":{name:"Weisheit unter dem Gr\xFCn",description:"Die Kleidung, die Lisa eigens bestellt hat, als sie Sumeru wieder besuchte. Das Kleid ist praktisch, aber auch elegant und hat eine leichte \xC4hnlichkeit mit ihrer Studentenuniform."},"springbloom-missive":{name:"Botschaft der Bl\xFCtezeit",description:"Kamisato Ayakas Kleidung. Das Kleid orientiert sich an der Kleidung der Frauen in Fontaine, welche auf den Illustrationen einer kurzen Erz\xE4hlung zu sehen ist, und gibt einen kurzen Einblick ins Leben der dortigen Adeligen."},"blossoming-starlight":{name:"Bl\xFCtenreines Sternenlicht",description:"Klees exquisites Kost\xFCm, welches sie nur zu den wichtigsten Auff\xFChrungen tr\xE4gt. Mit seinen leuchtenden Farben erinnert es an eine mit cremefarbenen Blumen und roten Kerzen verzierte Torte. Hiermit tr\xE4gt Klee Freude und ein L\xE4cheln in jede Ecke dieser Welt, wohin ihr Abenteuer sie auch f\xFChren mag."},"sailwind-shadow":{name:"Schatten flatternder Segel",description:"Kaeyas Kost\xFCm aus seiner Darbietung als \u201EGro\xDFer R\xE4uber Kurzklinge\u201C. Ein pr\xE4chtiges Kleidungsst\xFCck, das als absoluter \u201EHingucker\u201C entworfen wurde. Das Kost\xFCm selbst ist nicht aufwendig anzuziehen; ganz anders sieht es da allerdings mit den Accessoires und dem Messer aus."}}},P={text:"Detailierte Erl\xE4uterung",promotional:"H\xF6here Wahrscheinlichkeit",itemlist:"Objektliste",increasedRate:"Bessere Wahrscheinlichkeiten!",percentageDrop:"Wahrscheinlichkeit f\xFCr {rarity}-Sterne-Objekte: {percentage}",wishDetails:"Details",probInfo:"Basiswahrscheinlichkeit f\xFCr {rarity}-Sterne-Objekte: {singlePercentage} (Garantie: {avgPercentage})",itemWishFor:"Objekte, die bei den Gebeten zu erhalten sind:",itemType:"Kategorie",itemName:"Name",beginnerInfo:"Kein Zeitlimit (Endet nach 20 Gebeten)",limited:"Zeitlich begrenzte Aktion",permanent:"Permanent",alert:"\u203B Dies ist ein {wishName}. Die Anzahl der W\xFCnsche, die garantiert werden, wird nur innerhalb dieses Ereignisses kumuliert und ist unabh\xE4ngig von der Garantie bei anderen Gebeten.",beginner:["Das Anf\xE4ngergebet hat keine zeitliche Begrenzung und richtet sich an Reisende, die k\xFCrzlich in Teyvat gelandet sind. Nur Nicht-exklusive Figuren und Waffen sind hier erh\xE4ltlich. <br /> In Anf\xE4ngerwunsch kosten 10-Wunsch-Sets <span> 20%</span> weniger Vorbestimmtes Schicksal, und dein erstes 10-W\xFCnsche-Set enth\xE4lt garantiert {character}, und dein zweites 10-W\xFCnsche-Set enth\xE4lt garantiert einen <span> anderen </span> min. 4-Sterne Charakter! <br/> Das Anf\xE4ngergebet endet nach <span> 20 </span> Gebeten. Nachdem es geendet hat, wird das Gebet verschwinden.","\u203BIm Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln."," Regeln ","Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Objekten = <span> 0.600%</span> <br /> Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Objekten = <span> 5.100%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) = <span> 13.000%</span>;"],standard:['Das Standardwgebet "{bannerName}" ist immer verf\xFCgbar. Hier k\xF6nnen Reisende nicht limitierte Figuren und Waffen ziehen.<br/> Alle 10 Ziehungen bei diesem Gebet gibt es <span>auf jeden Fall</span> mindestens 1 Objekt mit 4 oder mehr Sternen.',"\u203BIm Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln.","\u3013Regeln\u3013","Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Objekten = <span>0.600%</span>; Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Figuren = <span>0.300%</span>, und die Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Waffen = <span>0.300%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 5-Sterne Gegenstand = <span>1.600%</span>; Nach h\xF6chstens <span>90</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall ein 5-Sterne-Objekt. <br> Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Objekten = <span>5.100%</span>; Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Figuren = <span>2.550%</span>, und Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Waffen = <span>2.550%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 4-Sterne-Gegenst\xE4nden  = <span>13.000%</span>; Nach h\xF6chstens <span>10</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall ein 4-Sterne-Objekt.; Wahrscheinlichkeit ein 4-Sterne-Objekt durch die Garantie zu erhalten = <span>99.400%</span>, und Wahrscheinlichkeit ein 5-Sterne-Objekt durch die Garantie zu erhalten = <span>0.600%</span>. "],events:['Das Aktionsgebet "{bannerName}" ist jetzt verf\xFCgbar. W\xE4hrend des Aktionszeitraums, steigt die Wahrscheinlichkeit zum Ziehen der <span>limitierten</span> 5-Sterne-Figur {featuredCharacter} sowie der 4-Sterne-Figuren {rateupCharacters} <span>stark an</span>! <br/> <span> \u203B Hinweis: Die limitierten Figuren dieser Aktion werden nicht im Standartgebet "Wanderlust" verf\xFCgbar sein.</span>',"\u203B Im Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln.","\u3013Regeln\u3013","5-Sterne-Objekte",'F\xFCr Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit eine 5-Sterne-Figur zu erhalten = <span> 0.600% </span>; Gesamtwahrscheinlichkeit (inkl. Garantie) = <span>1.600%</span>; e-Figuren = <span>0.300%</span>, und die Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Waffen = <span>0.300%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 5-Sterne Gegenstand = <span>1.600%</span>; Nach h\xF6chstens <span>90</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall ein 5-Sterne-Objekt.<br/> Sobald du bei einem Gebet eine 5-Sterne-Figur ziehst, besteht die Wahrscheinlichkeit von <span> 50.000%</span>, die Aktionsfigur {featuredCharacter} zu erhalten. Wenn du bei diesem Gebet eine 5-Sterne-Figure ziehst, die keine Aktionsfigur ist, bekommst du beim n\xE4chsten Ziehen einer 5-Sterne-Figur <span>auf jeden Fall</span> eine Aktionsfigur.',"4-Sterne-Objekte",'F\xFCr das Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit ein 4-Sterne-Objekt zu erhalten = <span> 5.100%</span>; Basiswahrscheinlichkeit eine 4-Sterne-Figur zu erhalten = <span>2.550%</span>, und Basiswahrscheinlichkeit eine 4-Sterne-Waffe zu erhalten = <span>2.550%</span>; Basiswahrscheinlichkeit einen 4-Sterne-Gegenstand zu erhalten = <span> 13.000%</span>; Nach h\xF6chsten <span>10<span> Gebeten erh\xE4ltst du aufgrund der Garantie mindestens 1 4-Sterne-Objekt.; Wahrscheinlichkeit ein 4-Sterne-Objekt durch die Garantie zu erhalten = <span>99.400%</span>, und Wahrscheinlichkeit ein 5-Sterne-Objekt durch die Garantie zu erhalten = <span>0.600%</span>. <br/> Sobald du bei einem Gebet eine 5-Sterne-Figur ziehst, besteht die Wahrscheinlichkeit von <span>50.000%</span> eine der Aktionsfiguren {rateupCharacters} zu erhalten. Wenn du bei diesem Gebet ein 4-Sterne-Objekt ziehst, das keine Aktionsfigur ist, bekommst du beim n\xE4chsten Ziehen eines 4-Sterne-Objektes <span>auf jeden Fall</span> eine Aktionsfigur. Wenn du beim Gebet ein 4-Sterne-Aktionsobjekt erh\xE4ltst, ist die Wahrscheinlichkeit zum Erhalten aller 4-Sterne-Aktionsfiguren bei diesem Gebet identisch.'],weapons:['Das Aktionsgebet "{bannerName}" ist nun verf\xFCgbar. W\xE4hrend des Aktionszeitraums, steigt die Wahrscheinlichkeit zum Ziehen der <span>limitierten</span> 5-Sterne-Waffen {featuredWeapon1} und {featuredWeapon2} sowie der <span>limitierten</span> 4-Sterne-Waffen {rateupWeapons} <span>stark an</span>! <br/> <span> \u203B Hinweis: Die limitierten Waffen dieser Aktion werden nicht im Standartgebet "Wanderlust" verf\xFCgbar sein.</span>',"\u203B Im Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln."," Regeln ","5-Sterne-Objekte",'F\xFCr Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit eine 5-Sterne-Waffe zu erhalten = <span>0.700%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) = <span>1.850%</span>; Nach h\xF6chstens <span>80</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall eine 5-Sterne-Waffe<br/> Sobald du beim Gebet eine 5-Sterne-Waffe ziehst, besteht die Wahrscheinlichkeit von <span>75.000%</span>, eine der 5-Sterne-Aktionswaffen {featuredWeapon1} oder {featuredWeapon2} zu bekommen. Wenn du eine 5-Sterne-Waffe ziehst die keine Aktionswaffe ist, bekommst du beim n\xE4chsten Ziehen einer 5-Sterne-Waffe <span>auf jeden Fall</span> eine 5-Sterne-Aktionswaffe. Wenn du beim Aktionsgebet "G\xF6ttliches Werk" nach dem Setzen eines Kurses auf eine Waffe mithilfe von "G\xF6ttlicher Kurs" eine 5-Sterne-Waffe erh\xE4ltst, die nicht die ist, auf die du den Kurs gesetzt hast, erh\xE4ltst du 1 Schicksalspunkt. Sobald du die <span>maximale</span> Menge an Schicksalspunkten gesammelt hast, wird die n\xE4chste 5-Sterne-Waffe, die du bei dem Gebet ziehst, <span>auf jeden Fall</span> die Waffe sein, auf die du den Kurs gesetzt hast. Sobald du beim Gebet die Waffe erh\xE4ltst, auf die du den Kurs gesetzt hast, werden alle Schicksalspunkte wieder auf <span>0</span> gesetzt, egal ob du bereits die maximale Menge an Schicksalspunkten erreicht hast oder nicht. Danach kannst du erneut Schicksalspunkte sammeln. Wenn du nicht mithilfe von "G\xF6ttlicher Kurs" auf eine bestimmte Waffe setzt, sammelst du auch <span>keine</span> Schicksalspunkte an.<br/> Die Waffe, auf die du den Kurs gesetzt hast, kannst du wechseln oder komplett zur\xFCcksetzen. Bei beiden Vorg\xE4ngen werden die bisher gesammelten Schicksalspunkte auf <span>0</span> zur\xFCckgesetzt. Danach kannst du erneut Schicksalspunkte sammeln.<br/> \u203B Hinweis: Die Schicksalspunkte dieses Gebets sind nur f\xFCr das aktuelle Aktionsgebet "G\xF6ttliches Werk" g\xFCltig. Sobald das Gebet endet, werden die Schicksalspunkte wieder auf <span>0</span> gesetzt und du kannst sie erneut sammeln.',"4-Sterne-Objekte",'F\xFCr Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit ein 4-Sterne-Objekt zu erhalten = <span>6.000%</span>; Basiswahrscheinlichkeit ein 4-Sterne-Charakter zu erhalten = <span>3.000%</span>, und Basiswahrscheinlichkeit eine 4-Sterne-Waffe zu erhalten = <span>3.000%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 4-Sterne Gegenstand = <span>14.500%</span>; Nach h\xF6chsten <span>10<span> Gebeten erh\xE4ltst du aufgrund der Garantie mindestens 1 4-Sterne-Objekt.; Wahrscheinlichkeit ein 4-Sterne-Objekt durch die Garantie zu erhalten = <span>99.300%</span>, und Wahrscheinlichkeit ein 5-Sterne-Objekt durch die Garantie zu erhalten = <span>0.700%</span>. <br/> Sobald du bei einem Gebet ein 4-Sterne-Gegenstand ziehst, besteht die Wahrscheinlichkeit von <span>75.000%</span> eine der Aktionswaffen {rateupWeapons} zu erhalten. Wenn du bei diesem Gebet ein 4-Sterne-Objekt ziehst, das keine Aktionswaffe ist, bekommst du beim n\xE4chsten Ziehen eines 4-Sterne-Objektes <span>auf jeden Fall</span> eine Aktionswaffe. Wenn du beim Gebet eine 4-Sterne-Aktionswaffe erh\xE4ltst, ist die Wahrscheinlichkeit zum Erhalten aller 4-Sterne-Aktionswaffen bei diesem Gebet identisch.'],convertion:{fiveStar:"Wenn du 5-Sterne-Waffen bei diesem Gebet erh\xE4ltst, bekommst du zus\xE4tzlich {starglitter} x10;",fourStar:"Wenn du 4-Sterne-Waffen bei diesem Gebet erh\xE4ltst, bekommst du zus\xE4tzlich {starglitter} x2;",threeStar:"Wenn du 3-Sterne-Waffen bei diesem Gebet erh\xE4ltst, bekommst du zus\xE4tzlich {stardust} x15."},duplicate:{heading:" Vorhandene Characters\u3013",text:"Sobald du eine {rarity}-Sterne Figur das zweite bis siebte Mal, auf welche Weise auch immer, erh\xE4ltst, wird diese Figur in je 1 {stellaFortuna} der jeweiligen Figur und {starglitter} {constBonus} umgewandelt; Beim achten Mal wird die Figur in {starglitter} {fullConstBonus} umgewandelt."}},x={title:"Gebetsverlauf",text:"Verlauf",resetButton:"L\xF6schen",resetPromptTitle:"Verlauf l\xF6schen?",resetPrompt:'Es werden auch alle Figuren und Waffen des "{bannerName}" Banners aus deinem Inventar gel\xF6scht. <br /> Bist du sicher, dass du alles zur\xFCcksetzen m\xF6chtest?',resetSuccess:"Erfolgreich zur\xFCckgesetzt!",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"Gebetskategorie:",disclaimer:"Wir speichern niemals Daten im Cloudspeicher. Alle Daten werden bei IndexedDB gespeichert, das hei\xDFt die Daten werden in deinem Browserspeicher gespeichert. Sie gehen niemals verloren, au\xDFer du l\xF6schst sie manuell durch den L\xF6schen/Zur\xFCcksetzen Knopf oder leerst deinen Browserspeicher.",currentPity:"Aktuelle Pity:",totalPull:"Zuge insgesamt:",totalSpend:"Insgesamt ausgegeben:",filterTxt:"Filter",filter:"{rarity} Sterne",filterAll:"Alle",pity:"Pity",timeReceived:"Erhalten am",waiting:"Warte",noData:"Keine Daten verf\xFCgbar.",untracked:"Kein Verlauf",item:"Item",win:"Gewonnenes 50/50",lose:"Verlorenes 50/50",guaranteed:"Garantiert",selected:"Ausgew\xE4hlte Waffe",olderLayout:"Altes Layout",switchv2:"Wechsel zum neuen Layout"},M={text:"Shop",paimonBargains:"Rares f\xFCr Staub und Glanz",fateNeeded:"{rollQty} {currency} zu wenig.",primoNeeded:"Mit {primoPrice} Urgestein kaufen?",purchaseUpto:"1x erh\xE4ltlich",purchaseConfirm:"Kauf best\xE4tigen",exchangeHeading:"Items umwandeln",purchaseHeading:"Items kaufen",purchaseButton:"Kaufen",pay:"Zahlen",product:"Produkt",consume:"Verbrauchen",selectPayment:"Zahlungsart w\xE4hlen",unrealWallet:"Keine reale W\xE4hrung",convertPrimo:"Automatisch in Urgestein umwandeln?",proceedPayment:"Zahlung abschlie\xDFen",qty:"Anzahl",insufficient:"Unzureichende Zahlmittel",crystalTopup:"Kristalle aufladen",initialBonus:"Inklusive Bonus",bonus:"Bonus",buyGenesisHeading:"Kaufe Sch\xF6pfungskristalle",recomendedHeading:"Empfohlene Waren",paimonHeading:"H\xE4ndler",welkinNote:"Kann mehrmals gekauft werden",limitedOffer:"Zeitlich begrenztes Angebot",noLimitTime:"Keine limitierten Angebote verf\xFCgbar",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"Mondsegen",newOutfit:"Neue Figurenzierde",dayRemaining:"Tage verbleibend: {days}",alreadyClaimed:"Heute bereits gekauft",instantlyGet:"Sofort erh\xE4ltlich",dailyGift:"T\xE4gliches Geschenk",obtainTotal:"Erhalte insgesamt {totalGenesis} Sch\xF6pfungskristalle und {totalPrimo} Urgestein \xFCber 30 Tage verteilt",claimingBlessing:"Klicke um deinen t\xE4glichen Mondsegen abzuholen!",issuedPurchase:"Fehler beim Kauf",collect:"Sammle f\xFCr 30 Tage t\xE4gliche Login-Belohnungen"},exchange:{starglitter:"Mit Sternenglanz kaufen",stardust:"Mit Sternenstaub kaufen",primogem:"Mit Urgestein kaufen"},item:{genesis:"Sch\xF6pfungskristalle",primogem:"Urgestein",intertwined:"Verwobenes Schicksal",acquaint:"Vorbestimmtes Schicksal",starglitter:"Herrenloser Sternenglanz",stardust:"Herrenloser Sternenstaub"},description:{intertwined:"Ein Samen des Schicksals, der Tr\xE4ume verbindet. Sein Glanz kann Schicksale miteinander verflechten und die Tr\xE4ume von Menschen zusammenf\xFChren. Es ist dieser Glanz, der die Sterne Bilder des Herzens formen l\xE4sst.",acquaint:"Ein Samen, des Hoffnung zwischen den Sternen aufblinken l\xE4sst. Egal wie weit Menschen voneinander entfernt sind, so wird dieser Schein den Menschen, die f\xFCreinander bestimmt sind, den Weg weisen, sodass sie sich unter dem Sternenhimmel treffen."}},T={text:"Inventar",unsetOutfit:"Outfit ablegen",setOutfit:"Outfit anlegen",refinement:"Verfeinerung {count}",constellation:"Konstellation {count}",extra:"{count} Zus\xE4tzlich",firstSummon:"Erstmals erhalten am: {date}",notOwned:"Noch nicht erhalten",sort:"Sortieren",rarity:"Seltenheit",name:"Name",quantity:"Menge",element:"Element",release:"Erscheinungsdatum",type:"Typ",owned:"In Besitz",showAllOption:"Zeige alle {item}s"},Z={no:"Nein",yes:"Ja",text:"Men\xFC",feedback:"Feedback",options:"Optionen",updates:"Updateverlauf",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"Sprache",currency:"W\xE4hrung",fates:"Anzahl der Gebete",unlimited:"Unbegrenzt",manual:"Benutzerdefiniert",mute:"Audio & Soundeffekte stummschalten",switchBanner:"Banner wechseln",showAllitems:"Alle Gegenst\xE4nde im Inventar zeigen",autoskip:"Splash Art automatisch \xFCberspringen",animatedbg:"Animierter Hintergrund",multiRoll:"Number per multi-roll",factoryReset:"Daten l\xF6schen und Startzustand herstellen",resetTitle:"Auf Werkseinstellungen zur\xFCcksetzen",rotate:"Drehen f\xFCr ein besseres Erlebnis",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Zwischenspeicher leeren ( {size} )? <small>Zwischengespeicherten Dateien werden danach erneut heruntergeladen! </small>",resetButton:"Jetzt Zur\xFCcksetzen",resetPrompt:"Bist du dir sicher dass du <strong> alle Daten </strong> l\xF6schen willst and zu den Standarteinstellungen zur\xFCckkehren m\xF6chtest?",resetSuccess:"Erfolgreich zur\xFCckgesetzt!",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Neuen Schl\xFCssel hier erhalten!",noKey:"Du hast keinen Schl\xFCssel?",verifyFail:"Verifizierung des AdKeys fehlgeschlagen, \xDCberpr\xFCfe deine Verbindung!",invalidKey:"Dein Schl\xFCssel ist ung\xFCltig",keyExpired1:"Schl\xFCssel abgelaufen!",keyExpired2:'Dein Schl\xFCssel: "{key}" ist seit dem {date} abgelaufen!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Schl\xFCssel eingeben",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* Ich entschuldige mich f\xFCr die Werbung. Eigentlich m\xF6chte ich dir dein Wunscherlebnis nicht verderben, aber ich habe kein Team oder Sponsor, um diese App am Leben zu erhalten. Wenn ihr nichts ausgeben wollt, k\xF6nnt ihr immer noch den Werbeblocker einschalten oder einfach eine benutzerdefinierte DNS verwenden, ich werde es euch nicht verbieten."},L={title:e,character:n,weapon:t,vision:i,anemo:a,cryo:r,dendro:s,electro:l,hydro:h,geo:d,pyro:o,bow:c,catalyst:u,claymore:m,sword:g,polearm:b,extra:p,obtained:f,waiting:k,connectionFailed:S,confirmButton:w,cancelButton:z,disclaimer:W,fanmade:y,pressToContinue:A,installInstruction:v,share:G,screenshot:B,capturing:F,rewardFirstShare:D,version:K,donate:N,banner:j,editor:I,customBanner:O,backupRestore:E,wish:R,outfit:C,details:P,history:x,shop:M,inventory:T,menu:Z};export{a as anemo,E as backupRestore,j as banner,c as bow,z as cancelButton,F as capturing,u as catalyst,n as character,m as claymore,w as confirmButton,S as connectionFailed,r as cryo,O as customBanner,L as default,s as dendro,P as details,W as disclaimer,N as donate,I as editor,l as electro,p as extra,y as fanmade,d as geo,x as history,h as hydro,v as installInstruction,T as inventory,Z as menu,f as obtained,C as outfit,b as polearm,A as pressToContinue,o as pyro,D as rewardFirstShare,B as screenshot,G as share,M as shop,g as sword,e as title,K as version,i as vision,k as waiting,t as weapon,R as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/en-US-633c48a0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/en-US-633c48a0.js
deleted file mode 100644
index 35466a9f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/en-US-633c48a0.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Akuoumaru",a="Rainslasher",n="Rust",t="Slingshot",i="Verdict",o={name:"Albedo",title:"Kreideprinz"},r={name:"Alhaitham",title:"Admonishing Instruction"},l={name:"Amber",title:"Outrider Knights of Favonius"},s={name:"Baizhu",title:"Beyond Mortality"},c={name:"Barbara",title:"Knight of Favonius Deaconess"},u={name:"Beidou",title:"Uncrowned Lord of Ocean"},h={name:"Bennett",title:"Trial by Fire"},m={name:"Candace",title:"Golden Vow"},d={name:"Charlotte",title:"Lens of Verity"},g={name:"Chevreuse",title:"Executor of Justice"},f={name:"Chongyun",title:"Frozen Ardor"},y={name:"Collei",title:"Sprout of Rebirth"},k={name:"Cyno",title:"Judicator of Secrets"},w={name:"Dehya",title:"Flame-Mane"},S={name:"Diluc",title:"The Dark Side of Dawn"},v={name:"Diona",title:"K\xE4tzlein Cocktail"},b={name:"Dori",title:"Treasure of Dream Garden"},p={name:"Eula",title:"The Sprindrift Knight"},F={name:"Faruzan",title:"Enigmatic Machinist"},T={name:"Fischl",title:"Prinzessin der Verurteilung"},q={name:"Freminet",title:"Yearning for Unseen Depths"},z={name:"Furina",title:"Endless Solo of Solitude"},A={name:"Ganyu",title:"Plenilune Gaze"},K={name:"Gorou",title:"Canine Warrior"},P={name:"Jean",title:"Dandelion Knight"},B={name:"Kaeya",title:"Knight of Favonius Quarter Master"},D={name:"Kaveh",title:"Empyrean Reflection"},E={name:"Keqing",title:"Driving Thunder"},C={name:"Kirara",title:"Cat Upon the Eaves"},M={name:"Klee",title:"Fleeing Sunlight"},L={name:"Layla",title:"Fantastical Evening Star"},R={name:"Lisa",title:"Knight of Favonius Librarian"},W={name:"Lynette",title:"Elegance in the Shadows"},x={name:"Lyney",title:"Spectacle of Phantasmagoria"},G={name:"Mika",title:"Coordinates of Clear Frost"},H={name:"Mona",title:"Astral Reflection"},j={name:"Nahida",title:"Physic of Purity"},V={name:"Navia",title:"Helm of the Radiant Rose"},J={name:"Neuvillette",title:"Ordainer of Inexorable Judgment"},_={name:"Nilou",title:"Dance of Lotuslight"},N={name:"Ningguang",title:"Eclipsing Star"},Y={name:"Noelle",title:"Chivalric Blossom"},I={name:"Qiqi",title:"Icy Resurrection"},O={name:"Razor",title:"Legend of Wolvendom"},U={name:"Rosaria",title:"Thorny Benevolence"},X={name:"Sayu",title:"Mujina Ninja"},Q={name:"Shenhe",title:"Lonesome Transcendence"},Z={name:"Sucrose",title:"Harmless Sweetie"},$={name:"Tartaglia",title:"Childe"},ee={name:"Thoma",title:"Protector From Afar"},ae={name:"Tighnari",title:"Verdant Strider"},ne={name:"Venti",title:"Windborne Bard"},te={name:"Wanderer",title:"Eons Adrift"},ie={name:"Wriothesley",title:"Emissary of Solitary Iniquity"},oe={name:"Xiangling",title:"Exquisite Delicacy"},re={name:"Xiao",title:"Vigilant Yaksha"},le={name:"Xingqiu",title:"Juvenile Galant"},se={name:"Xinyan",title:"Blazing Riff"},ce={name:"Yanfei",title:"Wise Innocence"},ue={name:"Yaoyao",title:"Burgeoning Grace"},he={name:"Yelan",title:"Valley Orchid"},me={name:"Yoimiya",title:"Frolicking Flames"},de={name:"Zhongli",title:"Vago Mundo"},ge={"a-thousand-floating-dreams":"A Thousand Floating Dreams",akuoumaru:e,"alley-hunter":"Alley Hunter","amos-bow":"Amos' Bow","aqua-simulacra":"Aqua Simulacra","aquila-favonia":"Aquila Favonia","beacon-of-the-reed-sea":"Beacon of the Reed Sea","black-tassel":"Black Tassel","bloodtained-greatsword":"Bloodtained Greatsword","calamity-queller":"Calamity Queller","cashflow-supervision":"Cashflow Supervision","cool-steel":"Cool Steel","debate-club":"Debate Club","dragon_s-bane":"Dragon's Bane","elegy-for-the-end":"Elegy for the End","emerald-orb":"Emerald Orb","engulfing-lightning":"Engulfing Lightning","everlasting-moonglow":"Everlasting Moonglow","eye-of-perception":"Eye of Perception","favonius-codex":"Favonius Codex","favonius-greatsword":"Favonius Greatsword","favonius-lance":"Favonius Lance","favonius-sword":"Favonius Sword","favonius-warbow":"Favonius Warbow","ferrous-shadow":"Ferrous Shadow","freedom-sworn":"Freedom-Sworn","haran-geppaku-futsu":"Haran Geppaku Futsu","harbinger-of-dawn":"Harbinger of Dawn","hunter_s-path":"Hunter's Path","jadefall-splendor":"Jadefall's Splendor","kagura_s-verity":"Kagura's Verity","key-of-khaj-nisut":"Key of Khaj-Nisut","light-of-foliar-incision":"Light of Foliar Incision","lion_s-roar":"Lion's Roar","lithic-blade":"Lithic Blade","lithic-spear":"Lithic Spear","lost-prayer-to-the-sacred-winds":"Lost Prayer to the Sacred Winds","magic-guide":"Magic Guide","makhaira-aquamarine":"Makhaira Aquamarine","memory-of-dust":"Memory of Dust","mistsplitter-reforged":"Mistsplitter Reforged","mitternachts-waltz":"Mitternachts Waltz","mouun_s-moon":"Mouun's Moon","polar-star":"Polar Star","portable-power-saw":"Portable Power Saw","primordial-jade-cutter":"Primordial Jade Cutter","primordial-jade-winged-spear":"Primordial Jade Winged-Spear","prospector-drill":"Prospector's Drill",rainslasher:a,"range-gauge":"Range Gauge","raven-bow":"Raven Bow","redhorn-stonethresher":"Redhorn Stonethresher",rust:n,"sacrificial-bow":"Sacrificial Bow","sacrificial-fragments":"Sacrificial Fragments","sacrificial-greatsword":"Sacrificial Greatsword","sacrificial-sword":"Sacrificial Sword","sharpshooter_s-oath":"Sharpshooter's Oath","skyrider-sword":"Skyrider Sword","skyward-atlas":"Skyward Atlas","skyward-blade":"Skyward Blade","skyward-harp":"Skyward Harp","skyward-pride":"Skyward Pride","skyward-spine":"Skyward Spine",slingshot:t,"song-of-broken-pines":"Song of Broken Pines","splendor-of-tranquil-waters":"Splendor of Tranquil Waters","staff-of-homa":"Staff of Homa","staff-of-the-scarlet-sands":"Staff of the Scarlet Sands","summit-shaper":"Summit Shaper","the-alley-flash":"The Alley Flash","the-bell":"The Bell","the-dockhands-assistant":"The Dockhand's Assistant","the-first-great-magic":"The First Great Magic","the-flute":"The Flute","the-stringless":"The Stringless","the-unforged":"The Unforged","the-widsith":"The Widsith","thrilling-tales-of-dragon-slayers":"Thrilling Tales of Dragon Slayers","thundering-pulse":"Thundering Pulse","tome-of-the-eternal-flow":"Tome of the Eternal Flow","tulaytullah_s-remembrance":"Tulaytullah's Remembrance",verdict:i,"vortex-vanquisher":"Vortex Vanquisher","wavebreaker_s-fin":"Wavebreaker's Fin","wine-and-song":"Wine and Song","wandering-evenstar":"Wandering Evenstar","wolf_s-gravestone":"Wolf's Gravestone","xiphos-moonlight":"Xiphos' Moonlight",albedo:o,alhaitham:r,amber:l,"arataki-itto":{name:"Arataki Itto",title:"Hanamizaka Heroics"},baizhu:s,barbara:c,beidou:u,bennett:h,candace:m,charlotte:d,chevreuse:g,chongyun:f,collei:y,cyno:k,dehya:w,diluc:S,diona:v,dori:b,eula:p,faruzan:F,fischl:T,freminet:q,furina:z,ganyu:A,gorou:K,"hu-tao":{name:"Hu Tao",title:"Fragrance in Thaw"},jean:P,"kaedehara-kazuha":{name:"Kaedehara Kazuha",title:"Scarlet Leaves Pursue Wild Waves"},kaeya:B,"kamisato-ayaka":{name:"Kamisato Ayaka",title:"Frostlake Heron"},"kamisato-ayato":{name:"Kamisato Ayato",title:"Pillar of Fortitude"},kaveh:D,keqing:E,kirara:C,klee:M,"kujou-sara":{name:"Kujou Sara",title:"Crowfeather Kaburaya"},"kuki-shinobu":{name:"Kuki Shinobu",title:"Mender of Tribulations"},layla:L,lisa:R,lynette:W,lyney:x,mika:G,mona:H,nahida:j,navia:V,neuvillette:J,nilou:_,ningguang:N,noelle:Y,qiqi:I,"raiden-shogun":{name:"Raiden Shogun",title:"Plane of Euthymia"},razor:O,rosaria:U,"sangonomiya-kokomi":{name:"Sangonomiya Kokomi",title:"Pearl of Wisdom"},sayu:X,shenhe:Q,"shikanoin-heizou":{name:"Shikanoin Heizou",title:"Analytical Harmoni"},sucrose:Z,tartaglia:$,thoma:ee,tighnari:ae,venti:ne,wanderer:te,wriothesley:ie,xiangling:oe,xiao:re,xingqiu:le,xinyan:se,"yae-miko":{name:"Yae Miko",title:"Astute Amusement"},yanfei:ce,yaoyao:ue,yelan:he,yoimiya:me,"yun-jin":{name:"Yun Jin",title:"Stage Lucida"},zhongli:de};export{e as akuoumaru,o as albedo,r as alhaitham,l as amber,s as baizhu,c as barbara,u as beidou,h as bennett,m as candace,d as charlotte,g as chevreuse,f as chongyun,y as collei,k as cyno,ge as default,w as dehya,S as diluc,v as diona,b as dori,p as eula,F as faruzan,T as fischl,q as freminet,z as furina,A as ganyu,K as gorou,P as jean,B as kaeya,D as kaveh,E as keqing,C as kirara,M as klee,L as layla,R as lisa,W as lynette,x as lyney,G as mika,H as mona,j as nahida,V as navia,J as neuvillette,_ as nilou,N as ningguang,Y as noelle,I as qiqi,a as rainslasher,O as razor,U as rosaria,n as rust,X as sayu,Q as shenhe,t as slingshot,Z as sucrose,$ as tartaglia,ee as thoma,ae as tighnari,ne as venti,i as verdict,te as wanderer,ie as wriothesley,oe as xiangling,re as xiao,le as xingqiu,se as xinyan,ce as yanfei,ue as yaoyao,he as yelan,me as yoimiya,de as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/en-US-c052b9ea.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/en-US-c052b9ea.js
deleted file mode 100644
index f9a26e82..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/en-US-c052b9ea.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Genshin Impact Wish Simulator",t="Character",a="Weapon",n="Vision",o="Anemo",i="Cryo",r="Dendro",s="Electro",l="Hydro",c="Geo",h="Pyro",d="Bow",u="Catalyst",p="Claymore",m="Sword",w="Polearm",f="Extra",y="Obtained",g="Waiting",b="Connection Failed!",v="Confirm",S="Cancel",I="All assets used in this site are owned by miHoYo.",C="This is purely a fan made Application, enjoy it !",P="Press anywhere in the blank area to continue",B="Instructions to Install to Home Screen/Desktop",A="Share",T="Take Picture",F="Capturing",W="Reward for first share : {qty}",k="Version",x="Donate",D={beginner:"Beginners' Wish",wanderlust:"Wanderlust Invocation","epitome-invocation":"Epitome Invocation","adrift-in-the-harbor":"Adrift in The Harbor","auric-blaze":"Auric Blaze","azure-excursion":"Azure Excursion","ballad-in-goblets":"Ballad in Goblets","born-of-ocean-swell":"Born of Ocean Swell","caution-in-confidence":"Caution in Confidence","chanson-of-many-waters":"Chanson of Many Waters","conjuring-chiaroscuro":"Conjuring Chiaroscuro","dance-of-lantern":"Dance of Lantern","decree-of-the-deeps":"Decree of the Deeps","discerner-of-enigmas":"Discerner of Enigmas","drifting-luminescence":"Drifting Luminescence","everbloom-violet":"Everbloom Violet","farewell-of-snezhnaya":"Farewell of Snezhnaya","from-ashes-reborn":"From Ashes Reborn","gentry-of-hermitage":"Gentry of Hermitage","immaculate-pulse":"Immaculate Pulse","in-the-name-of-the-rosula":"In the Name of the Rosula","invitation-to-mundane-life":"Invitation to Mundane Life","leaves-in-the-wind":"Leaves in The Wind","moment-of-bloom":"Moment of Bloom","oni_s-royale":"Oni's Royale","reign-of-serenity":"Reign of Serenity","secretum-secretorum":"Secretum Secretorum","sparkling-steps":"Sparkling Steps","tapestry-of-golden-flames":"Tapestry of Golden Flames","tempestuous-destiny":"Tempestuous Destiny","the-heron_s-court":"The Heron's Court","the-moongrass-enlightenment":"The Moongrass' Enlightenment","the-transcendent-one-returns":"The Transcendent One Returns","twilight-arbiter":"Twilight Arbiter","twirling-lotus":"Twirling Lotus","viridescent-vigil":"Viridescent Vigil"},E={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},N={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},R={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},O={wishTitle:"Wish",rollButton:"Wish {count}",stellaFortuna:"Stella Fortuna",loadFailed:"Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banner",allBanner:"All Banners",previous:"Previous Banner",findBanner:"Find a Banner",group:"Group",beginner:"Beginners' Wish","character-event":"Character Event Wish","weapon-event":"Weapons Wish",standard:"Standard Wish",wishDescription:"Every 10 wishes is guaranteed to include at least one 4-star or higher item",novice:"Novice Wishes",up:"UP!",beginnerSet:"10-set 20% off. First 10-set will receive {character}.",beginnerNote:'"As a dutiful maid would."',beginnerChance:"Chances Remaining: {chances}",standardNote:"Standard wishes have no time limit.",allWeaponTypes:"All Weapon Types",etc:"etc.",probIncreased:"Probability increased !",eventNote:"5-Star event-exclusive characters can only be obtained in the specified wish during the specified time period(s).",viewDetails:"View Details for more."},epitomizedPath:{text:"Epitomized Path",fatePoint:"Fate Points",cancelPrompt:"Do you wish to cancel your curent Course ?",cancelDesc:"Cancelation will reset your accumulated Fate Points",selectWeapon:"Select Weapon",chartCourseOf:"Chart Course of {target}",cancelCourse:"Cancel Course",chartCourse:"Chart Course",courseSetFor:"Course Set For: {selectedCourse}",description:['"Epitomized Path" is a wish mechanic in "Epitome Invocation". Travelers can chart a course towards a specific 5-Star promotional weapon they hope to obtain.',"Once you have charted a course towards your chosen weapon, you will obtain 1 Fate Point upon <span> receiving a 5-Star weapon that is not the one that you chose</span>. You can obtain a maximum of 2 Fate Points.",`Once you've reached the maximum amount of Fate Points, the next 5-Star weapon you choose will be the one you have chosen through "Epitomized Path".`,"When you obtain the chosen weapon in Epitome Invocation through Epitomized Path, <span> the accumulated Fate Points will be cleared </span>.","If you do not use Epitomized Path to obtain a weapon, you will not accumulate Fate Points.","The charted course towards a certain weapon can be changed or cancelled. However, after doing so, any current Fate Points will be cleared.","At the end of the current period of Epitome Invocation, any current Fate Points will be cleared."]},result:{skip:"Skip",meteorFailed:"Meteor Animation Failed to Load",new:"New",convertion:"Convert",title:"Wish Result for {item} et al"}},L={heading:"Character Outfits",default:"Default",setOutfit:"Set Outfit",owned:"Already Owned",purchasePrompt:"You don't have a character for this costume yet, are you sure to purchase this costume?",promptInfo:"You still can use this costume after getting the right character",obtained:"New Outfit Obtained",unlocked:"{character}: Outfit Unlocked",item:{"5-star-outrider":{name:"5-Star Outrider"},"favonian-fevotion":{name:"Favonian Devotion"},"flowing-fate":{name:"Flowing Fate"},"executor_s-thorns":{name:"Executor's Thorns"},"sea-breeze-dandelion":{name:"Sea Breeze Dandelion",description:"Jean's summer wear. Light and cool, but no less elegant for it. The perfect choice for a trip to the seaside."},"summertime-sparkle":{name:"Summertime Sparkle",description:"Barbara's beach attire. This pretty skirt brims with summer vitality and carries with it a cool ocean breeze."},"opulent-splendor":{name:"Opulent Splendor",description:"Keqing's formal wear. Amidst the beautiful dawn of the Lantern Rite, the threads weaved by days of hard work intertwine into a light yet magnificent appearance."},"orchid_s-evening-gown":{name:"Orchid's Evening Gown",description:"Ningguang's formal wear. The long cyan skirt traces her elegant curves, and the butterfly wings at her ankles lend the outfit a touch of light grace."},"ein-immernachtstraum":{name:"Ein Immernachtstraum",description:"A ceremonial outfit for the Prinzessin. May she who is noble retain her courage, sincerity, and kindness forever, such that no evil shall ever overcome her."},"red-dead-of-night":{name:"Red Dead of Night",description:"One of the outfits Diluc wears during covert actions, it resembles a flame dancing in the shadows. The crimson red traces it leaves behind at the edges of the enemy's vision will scar their nightmares forever."},"a-sobriquet-under-shade":{name:"A Sobriquet Under Shade",description:"An outfit Lisa had someone commission for her when she revisited Sumeru. A perfect balance between practicality and elegance, the dress bears a resemblance to Lisa\u2019s old uniform from the Akademiya days."},"springbloom-missive":{name:"Springbloom Missive",description:"Ayaka\u2019s travel outfit. Its design is based on the Fontaine dresses depicted in light novel illustrations and seems to reflect the lifestyle of proper ladies who live in that nation."},"blossoming-starlight":{name:"Blossoming Starlight",description:"An exquisite outfit Klee wears only for the most important performances. The colors are brilliant, like a cake adorned with cream flowers and crowned with scarlet candles. With it comes happiness and smiles that will fill your adventures."},"sailwind-shadow":{name:"Sailwind Shadow",description:`Kaeya's outfit from his role as the "Dagger Bandit" in the play. Though flamboyant and designed to be as eye-catching as possible, it isn't difficult to put on, though it does take some time to get all the accessories and daggers sorted.`}}},M={text:"Details",promotional:"Promotional Items",itemlist:"List of Items",increasedRate:"Increased Drop Rates",percentageDrop:"Percentage of {rarity}-Star Item Drops: {percentage}",wishDetails:"Wish Details",probInfo:"Base Probability for {rarity}-Star Item Drops: {singlePercentage} (Incl. guarantee: {avgPercentage})",itemWishFor:"Item to wish for :",itemType:"Item Type",itemName:"Item Name",beginnerInfo:"No time limit (Closes after 20 wishes)",limited:"Limited Time Event",permanent:"Permanent",alert:"\u203B This is a {wishName}. The wish guarantee count is accumulated within this event only and is independent of the guarantee counts of other wishes.",beginner:["Beginners' <span> Wish </span> has no time limit and is aimed at Travelers who have recently landed in Teyvat. Non-promotional characters and weapons are available. <br /> In Beginners' Wish, 10-wish sets cost <span> 20%</span> less Acquaint Fate, and your first 10-wish set is guaranteed to include {character} , and your second 10-wish set is guaranteed to include one <span> other </span> min. 4-Star character! <br/> Beginners' Wish expires after <span> 20 </span> attempts. After the wish expires, the page will disappear.","\u203BIn most cases, the base probability of all characters and weapons is evenly distributed. If there is a boost or guarantee in effect, please refer to the corresponding rules.","\u3013Rules\u3013","Base probability of winning 5-Star character = <span> 0.600%</span> <br /> Base probability of winning 4-Star character = <span> 5.100%</span>; consolidated probability (incl. guarantee) = <span> 13.000%</span>;"],standard:['"{bannerName}" is a standard wish with no time limit. Non-event-exclusive characters and weapons are available.<br/> In this wish, <span>guaranteed</span> to win 4-star or above item at least once per 10 attempts.',"\u203BIn most cases, the base probability of all characters and weapons is evenly distributed. If there is a boost or guarantee in effect, please refer to the corresponding rules.","\u3013Rules\u3013","Base probability of winning 5-star item = <span>0.600%</span>; base probability of winning 5-star character = <span>0.300%</span>, and base probability of winning 5-star weapon = <span>0.300%</span>; consolidated probability (incl. guarantee) of winning 5-star item = <span>1.600%</span>; guaranteed to win 5-star item at least once per <span>90</span> attempts. <br> Base probability of winning 4-star item = <span>5.100%</span>; base probability of winning 4-star character = <span>2.550%</span>, and base probability of winning 4-star weapon = <span>2.550%</span>; consolidated probability (incl. guarantee) of winning 4-star item = <span>13.000%</span>; guaranteed to win 4-star or above item at least once per <span>10</span> attempts; probability of winning 4-star item through the guarantee = <span>99.400%</span>, and probability of winning 5-star item through the guarantee = <span>0.600%</span>. "],events:['Event Wish "{bannerName}" is now available. During this event wish, the  <span>event-exclusive</span> 5-star character {featuredCharacter} as well as 4-star characters {rateupCharacters} will get a <span> huge drop-rate boost</span>! <br/> <span> \u203B Of the above characters, the event-exclusive character will not be available in the standard wish "Wanderlust Invocation."</span>',"\u203B In most cases, drifting base probability of all characters and weapons is evenly distributed. If driftingre is a boost or guarantee in effect, please refer to drifting corresponding rules.","\u3013Rules\u3013","5-Star Items",'For Event Wish "{bannerName}": Base probability of winning 5-star character = <span> 0.600% </span>; consolidated probability (incl. guarantee) = <span>1.600%</span>; guaranteed to win 5-star character at least once per <span> 90</span> attempts.<br/> The first time you win a 5-star item in this event wish, there is a <span> 50.000%</span> chance it will be the promotional character {featuredCharacter}. If the first 5-star character you win in this event wish is not the promotional character, then the next 5-star character you win is <span> guaranteed</span> to be the promotional character.',"4-Star Items",'For Event Wish  "{bannerName}": Base probability of winning 4-star item = <span> 5.100%</span>; base probability of winning 4-star character = <span>2.550%</span>, and base probability of winning 4-star weapon = <span>2.550%</span>; consolidated probability (incl. guarantee) of winning 4-star item = <span> 13.000%</span>; guaranteed to win 4-star or above item at least once per 10 attempts; probability of winning 4-star item through the guarantee = <span>99.400%</span>, and probability of winning 5-star item through the guarantee = <span>0.600%</span>. <br/> The first time you win a 4-star item in this event wish, there is a <span>50.000%</span> chance it will be one of the featured characters {rateupCharacters}. If the first 4-star item you win in this event wish is not one of the featured characters, then the next 4-star item you win is <span>guaranteed</span> to be a featured character. When you win a featured 4-star item, the probability of obtaining each featured 4-star character is equal between all of them.'],weapons:['Event Wish "{bannerName}" is now available. During this event wish, the <span>event-exclusive</span> 5-star weapon {featuredWeapon1} and the 5-star weapon {featuredWeapon2} as well as the <span>event-exclusive</span> 4-star weapon {rateupWeapons}  will get a <span>huge drop-rate boost!</span> <br/> <span> \u203B Of the above weapons, the event-exclusive weapons will not be available in the standard wish "Wanderlust Invocation."</span>',"\u203B In most cases, the base probability of all characters and weapons is evenly distributed. If there is a boost or guarantee in effect, please refer to the corresponding rules.","\u3013Rules\u3013","5-Star Items",'For Event Wish "{bannerName}": Base probability of winning 5-star weapon = <span>0.700%</span>; consolidated probability (incl. guarantee) = <span>1.850%</span>; guaranteed to win 5-star weapon at least once per <span>80</span> attempts.<br/> The first time you win a 5-star weapon in this event wish, there is a <span>75.000%</span> chance it will be one of the promotional weapons {featuredWeapon1} and {featuredWeapon2}. If the first 5-star weapon you win in this event wish is not one of the promotional weapons, then the next 5-star weapon you win is <span>guaranteed</span> to be a promotional weapon. In the event that you obtain a promotional 5-star item through a wish without having maximum Fate Points, the probability of obtaining each promotional 5-star weapon is equal between all of them. <br/> For Event Wish "{bannerName}", you can chart a course towards your chosen promotional 5-star weapon with "Epitomized Path." The choice of weapon will only be valid for this period of Event Wish "{bannerName}". <br/> For Event Wish "{bannerName}", after charting a course towards a chosen weapon with "Epitomized Path," if you obtain a 5-star weapon that was not your chosen weapon, you will receive 1 Fate Point. Once you have reached the <span>maximum amount</span> of Fate Points, the next 5-star weapon will be <span>guaranteed</span> to be your chosen weapon. Once you have obtained the chosen weapon, the number of Fate Points will reset to <span>0</span> whether or not you have reached maximum points, and you will have to accumulate them again. If you do not use the "Epitomized Path" to chart a course towards a chosen weapon, you will <span>not</span> receive Fate Points. <br/> After charting a course towards a chosen weapon, you can change your choice or cancel it altogether, but doing so will reset the Fate Points to <span>0</span> and you will have to accumulate them again. <br/> \u203B The Fate Points for this Wish are only valid for the current period of Event Wish "Epitome Invocation". Once the Wish event is over, the number of Fate Points will reset to <span>0</span>, and you will have to accumulate them again',"4-Star Items",'For Event Wish "{bannerName}": Base probability of winning 4-star item = <span>6.000%</span>; base probability of winning 4-star character = <span>3.000%</span>, and base probability of winning 4-star weapon = <span>3.000%</span>; consolidated probability (incl. guarantee) of winning 4-star item = <span>14.500%</span>; guaranteed to win 4-star or above item at least once per <span>10</span> attempts; probability of winning 4-star item through the guarantee = <span>99.300%</span>, and probability of winning 5-star item through the guarantee = <span>0.700%</span>. <br/> The first time you win a 4-star item in this event wish, there is a <span>75.000%</span> chance it will be one of the featured weapons {rateupWeapons}. If the first 4-star item you win in this event wish is not one of the featured weapons, then the next 4-star item you win is <span>guaranteed</span> to be a featured weapon. When you win a featured 4-star item, the probability of obtaining each featured 4-star weapon is equal between all of them.'],convertion:{fiveStar:"5-Star weapons won in this wish come with {starglitter} \xD710;",fourStar:"4-star weapons won in this wish come with {starglitter} \xD72;",threeStar:"3-star weapons won in this wish come with {stardust} \xD715."},duplicate:{heading:"\u3013Duplicate Characters\u3013",text:"On obtaining a {rarity}-Star character that you already own (whether obtained in a wish, redeemed at the shop, or awarded by the game): The 2nd - 7th time you obtain the character, it will be converted into that character's {stellaFortuna} \xD71 and {starglitter} {constBonus}; from the 8th time onwards it will be converted into {starglitter} {fullConstBonus}."}},z={title:"Wish History",text:"History",resetButton:"Clear",resetPromptTitle:"Clear History ?",resetPrompt:'Are You Sure to Remove the Characters and Weapons related to "{bannerName}" Banner from your Inventory.',resetSuccess:"Reset Successful !",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"Select Wish Type:",disclaimer:"We Never save your data on cloud storage. All data was stored to IndexedDB, it means the data is saved on your browser storage. It will never delete till you delete it manualy through delete/reset button or clear the browser data.",currentPity:"Current Pity :",totalPull:"Total Pulls :",totalSpend:"Total Spent :",filterTxt:"Filter",filter:"{rarity} Star",filterAll:"All",pity:"Pity",timeReceived:"Time Received",waiting:"Waiting",noData:"No data available .",untracked:"Untracked",item:"Item",win:"Win 50/50",lose:"Lose 50/50",guaranteed:"Guaranteed",selected:"Selected Weapon",olderLayout:"Older Layout",switchv2:"Switch to V2"},G={text:"Shop",paimonBargains:"Paimon Bargains",fateNeeded:"An Aditional {rollQty} {currency} are needed.",primoNeeded:"Purchase with {primoPrice} Primogem ?",purchaseUpto:"Purchase Up to 1",purchaseConfirm:"Purchase Confirmation",exchangeHeading:"Item To Exchange",purchaseHeading:"Item To Purchase",purchaseButton:"Purchase",pay:"Pay",product:"Product",consume:"Consume",selectPayment:"Select Payment Type",unrealWallet:"UnReal Wallet",convertPrimo:" Auto convert to primogem ?",proceedPayment:"Proceed Payment",qty:"Qty",insufficient:"Insufficient Funds",crystalTopup:"Crystal Top-Up",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"Buy Genesis Crystal",recomendedHeading:"Recommended Items",paimonHeading:"Paimon's Bargains",welkinNote:"Can be purchased multiple times",limitedOffer:"Limited Time Offer",noLimitTime:"No Limit time items available",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"Blessing of the Welkin Moon",newOutfit:"New Character Outfits",dayRemaining:"Days remaining: {days}",alreadyClaimed:"Already Claimed today",instantlyGet:"Instantly Get",dailyGift:"Daily Gift",obtainTotal:"Obtain a total {totalGenesis} Genesis Crystal and {totalPrimo} Primogems across 30 days",claimingBlessing:"Click to claim your daily Blessing of the Welkin Moon rewards",issuedPurchase:"Issued on purchase",collect:"Collect daily login rewards for 30 days"},exchange:{starglitter:"Starglitter Exchange",stardust:"Stardust Exchange",primogem:"Exchange with Primogems"},item:{genesis:"Genesis Crystal",primogem:"Primogem",intertwined:"Intertwined Fate",acquaint:"Acquaint Fate",starglitter:"Masterless Starglitter",stardust:"Masterless Stardust"},description:{intertwined:"A fateful stone that connects dreams. Its glimmers can entwine fates and connect dreams, just as how its glimmer links stars into the shapes of a heart's desires.",acquaint:"A seed that lights up the night. No matter the distance apart, guided by the stone's glimmer, the fated will meet under the stars."}},H={text:"Inventory",unsetOutfit:"Unset Outfit",setOutfit:"Set Outfit to Character",refinement:"Refinement {count}",constellation:"Constellation {count}",extra:"{count} Extra",firstSummon:"First Summoned at : {date}",notOwned:"Not Owned",sort:"Sort",rarity:"Rarity",name:"Name",quantity:"Quantity",element:"Element",release:"Release Date",type:"Type",owned:"Owned",showAllOption:"Show All {item}s"},K={no:"No",yes:"Yes",text:"Menu",feedback:"Feedback",options:"Options",updates:"Update History",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"Language",currency:"Currency",fates:"Number of Wishes",unlimited:"Unlimited",manual:"Manual Input",mute:"Mute Audio and Sound Effect",switchBanner:"Switch Banner",showAllitems:"Show all items on Inventory",autoskip:"Auto Skip Splash Art",animatedbg:"Animated Background",multiRoll:"Number per multi-roll",factoryReset:"Clear Data and Restore Default",resetTitle:"Factory Reset",rotate:"Rotate for better experience",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Clear Caches ( {size} ) ? <small> You will re-load the cached assets after this action</small>",resetButton:"Reset Now",resetPrompt:"Are You sure to clear <strong> All Data </strong> and restore to default ?",resetSuccess:"Reset Successful",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Get a new one Here!",noKey:"Don't have a key?",verifyFail:"Failed to verifying Access Key, Check your Connection !",invalidKey:"Your key is invalid",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Enter Key",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."},Y={title:e,character:t,weapon:a,vision:n,anemo:o,cryo:i,dendro:r,electro:s,hydro:l,geo:c,pyro:h,bow:d,catalyst:u,claymore:p,sword:m,polearm:w,extra:f,obtained:y,waiting:g,connectionFailed:b,confirmButton:v,cancelButton:S,disclaimer:I,fanmade:C,pressToContinue:P,installInstruction:B,share:A,screenshot:T,capturing:F,rewardFirstShare:W,version:k,donate:x,banner:D,editor:E,customBanner:N,backupRestore:R,wish:O,outfit:L,details:M,history:z,shop:G,inventory:H,menu:K};export{o as anemo,R as backupRestore,D as banner,d as bow,S as cancelButton,F as capturing,u as catalyst,t as character,p as claymore,v as confirmButton,b as connectionFailed,i as cryo,N as customBanner,Y as default,r as dendro,M as details,I as disclaimer,x as donate,E as editor,s as electro,f as extra,C as fanmade,c as geo,z as history,l as hydro,B as installInstruction,H as inventory,K as menu,y as obtained,L as outfit,w as polearm,P as pressToContinue,h as pyro,W as rewardFirstShare,T as screenshot,A as share,G as shop,m as sword,e as title,k as version,n as vision,g as waiting,a as weapon,O as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/env-f184adc0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/env-f184adc0.js
deleted file mode 100644
index 31bb2f04..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/env-f184adc0.js
+++ /dev/null
@@ -1 +0,0 @@
-const s={}.VITE_HOST||"",T=s.replace(/^\/|\/$/g,""),E={}.VITE_APP_TITLE||"Genshin Impact Wish Simulator",t={}.VITE_DESCRIPTION||"",a={}.VITE_KEYWORDS||"",I={}.VITE_API_HOST||"",o=I.replace(/^\/|\/$/g,""),_={}.VITE_IBB_KEY||"";export{E as A,t as D,T as H,_ as I,a as K,o as a};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/fr-FR-79ee7566.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/fr-FR-79ee7566.js
deleted file mode 100644
index 05cf1363..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/fr-FR-79ee7566.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Simulateur de v\u0153ux Genshin Impact",n="Personnage",t="Arme",a="Vision",s="An\xE9mo",o="Cryo",r="Dendro",i="\xC9lectro",u="Hydro",l="G\xE9o",d="Pyro",p="Arc",c="Catalyseur",m="\xC9p\xE9e \xE0 deux mains",b="\xC9p\xE9e \xE0 une main",v="Arme d'hast",g="Extra",h="Obtenu",f="En attente",x="Connexion Echou\xE9e!",y="Confirmer",q="Annuler",w="Tous les \xE9l\xE9ments utilis\xE9s sur ce site sont la propri\xE9t\xE9 de miHoYo.",C="Il s'agit simplement d'une application r\xE9alis\xE9e par un fan, amusez-vous bien !",T="Appuyez n'importe o\xF9 dans la zone vide pour continuer",A="Instructions pour l'installation sur l'\xE9cran d'accueil/le bureau",z="Partager",j="Prendre une photo",P="Enregistrement",S="R\xE9compense pour le premier partage : {qty}",B="Version",L="Faire un don",D={beginner:"V\u0153ux pour les d\xE9butants",wanderlust:"Envie de voyage","epitome-invocation":"Incarnation divine","adrift-in-the-harbor":"Doute passager","auric-blaze":"Brasier aurique","azure-excursion":"Excursion azur\xE9e","ballad-in-goblets":"Ballade en pintes","born-of-ocean-swell":"Flots dansants","caution-in-confidence":"Prudence en toute confidence","chanson-of-many-waters":"Chant de toutes les eaux","conjuring-chiaroscuro":"Conjuring Chiaroscuro","dance-of-lantern":"Danse des lanternes","decree-of-the-deeps":"D\xE9cret des profondeurs","discerner-of-enigmas":"Discerneuse d'\xE9nigmes","drifting-luminescence":"Luminescence \xE0 la d\xE9rive","everbloom-violet":"Infinit\xE9 violette","farewell-of-snezhnaya":"Adieux au Nord","from-ashes-reborn":"Renaissant des cendres","gentry-of-hermitage":"Monts et march\xE9s","immaculate-pulse":"Pouls immacul\xE9","in-the-name-of-the-rosula":"Au nom de la Rosula","invitation-to-mundane-life":"Invitation scintillante","leaves-in-the-wind":"Feuilles dans le vent","moment-of-bloom":"Floraison \xC9carlate","oni_s-royale":"Baroud d'Oni","reign-of-serenity":"R\xE8gne de s\xE9r\xE9nit\xE9","secretum-secretorum":"Nouvelles myst\xE9rieuses","sparkling-steps":"Foul\xE9es \xE9tincelantes","tapestry-of-golden-flames":"Draperie d'\xE9tincelles dor\xE9es","tempestuous-destiny":"Destin tumultueux","the-heron_s-court":"Prestance du h\xE9ron","the-moongrass-enlightenment":"Dessillement de l'herbe lunaire","the-transcendent-one-returns":"Retour de la sublim\xE9e","twilight-arbiter":"Arbitre du cr\xE9puscule","twirling-lotus":"Lotus tournoyant","viridescent-vigil":"Veill\xE9e \xE9cologique"},R={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},k={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},N={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},I={wishTitle:"V\u0153ux",rollButton:"Faire {count} v\u0153u(x)",stellaFortuna:"Stella Fortuna du personnage correspondant",loadFailed:"\xC9chec du chargement de la banni\xE8re ! <br /> Veuillez passer \xE0 une autre banni\xE8re ou vous reconnecter \xE0 l'internet pour \xE9viter les erreurs !",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banni\xE8re",allBanner:"Toutes les banni\xE8res",previous:"Banni\xE8res pr\xE9c\xE9dentes",findBanner:"Trouver une banni\xE8re",group:"Groupe",beginner:"V\u0153ux\u2008pour les d\xE9butants","character-event":"V\u0153ux \xE9v\xE9nements de personnage","weapon-event":"V\u0153ux \xE9v\xE9nements d'arme",standard:"V\u0153ux permanents",wishDescription:"Garantie d'obtention d'un personnage 4* ou plus tous les 10 v\u0153ux",novice:"V\u0153ux des d\xE9butants",up:"UP!",beginnerSet:"-20% sur 10 v\u0153ux cons\xE9cutifs. Garantie d'obtention de {character} dans la premi\xE8re s\xE9rie de 10 v\u0153ux.",beginnerNote:"Comme doit l'\xEAtre une servante.",beginnerChance:"Tentatives restantes: {chances}",standardNote:"Standard whises have no time limit.",allWeaponTypes:"Tous types d'arme",etc:"etc.",probIncreased:"Chance d'obtention augment\xE9e !",eventNote:"Les personnages 5* exclusifs de l'\xE9v\xE9nement ne peuvent qu'\xEAtre obtenus pendant une p\xE9riode limit\xE9e par le biais de v\u0153ux sp\xE9cifiques. Pour en savoir plus, rendez-vous dans les d\xE9tails de l'\xE9v\xE9nement.",viewDetails:"Pour en savoir plus, rendez-vous dans les d\xE9tails de l'\xE9v\xE9nement."},epitomizedPath:{text:"Chemin divin",fatePoint:"Points de destin",cancelPrompt:"Souhaitez-vous annuler la s\xE9lection actuelle ?",cancelDesc:"Vos points de destin seront r\xE9initialis\xE9s apr\xE8s l'annulation",selectWeapon:"Choisir une arme",chartCourseOf:"Vous obtiendez : {target}",cancelCourse:"R\xE9initialiser",chartCourse:"Choisir",courseSetFor:"Chemin d\xE9fini pour: {selectedCourse}",description:["Le Chemin divin est un nouveau m\xE9canisme inclus dans les v\u0153ux Incarnation divine:","Une fois que vous choisissez une arme 5*, vous recevez 1 point de destin <span>si l'arme 5* que vous obtenez via les v\u0153ux n'est pas celle souhait\xE9e</span>.","Une fois suffisamment de points de destin accumul\xE9s, la prochaine arme 5* que vous obtiendrez via les v\u0153ux Incarnation divine sera celle choisie dans le Chemin divin.","Vos points de destin <span>se r\xE9initialisent lorsque vous obtenez une arme du Chemin divin</span> pendant ces v\u0153ux Incarnation divine.","Vous ne cumulez pas de points de destin si vous n'avez pas choisi d'arme vers laquelle vous frayer un chemin.","Vous pouvez modifier ou annuler votre s\xE9lection, <span>mais cela r\xE9initialisera vos points de destin d\xE9j\xE0 accumul\xE9s</span>.","<span>Les points de destin acccumul\xE9s lors de ces v\u0153ux Incarnation divine disparaissent lorsque ces v\u0153ux \xE9v\xE9nements prennent fin</span>."]},result:{skip:"Passer",meteorFailed:"L'animation Meteor n'a pas pu \xEAtre charg\xE9e",new:"Nouv.",convertion:"Conversion",title:"R\xE9sultat des v\u0153ux pour {item}"}},F={heading:"Skins",default:"Default",setOutfit:"Appliquer le skin",owned:"D\xE9j\xE0 poss\xE9d\xE9",purchasePrompt:"Vous n'avez pas encore de personnage pour ce skin, \xEAtes-vous s\xFBr de vouloir acheter ce skin ?",promptInfo:"Vous pouvez toujours utiliser ce skin apr\xE8s avoir obtenu le bon personnage.",obtained:"Nouveau skin obtenu",unlocked:"Skin d\xE9bloqu\xE9: {character}",item:{"5-star-outrider":{name:"5-Star Outrider"},"favonian-fevotion":{name:"Favonian Devotion"},"flowing-fate":{name:"Flowing Fate"},"executor_s-thorns":{name:"Executor's Thorns"},"sea-breeze-dandelion":{name:"R\xEAve de la brise marine",description:"Tenue d'\xE9t\xE9 de Jean. L\xE9g\xE8re et d\xE9contract\xE9e, mais pas moins \xE9l\xE9gante pour autant. Elle est parfaire pour un voyage \xE0 la mer."},"summertime-sparkle":{name:"\xC9t\xE9 radieux",description:"Tenue de plage de Barbara. La jolie mini-jupe d\xE9borde de vitalit\xE9 estivale et porte la fra\xEEcheur de l'oc\xE9an."},"opulent-splendor":{name:"Splendeur opulente",description:"Tenue formelle de Keqing. Dans la splendeur du Festival des lanternes, des fils ont \xE9t\xE9 tiss\xE9s pendant des jours de labeur pour assembler cette tenue du soir pleine de l\xE9g\xE8ret\xE9 et d'\xE9l\xE9gance."},"orchid_s-evening-gown":{name:"Robe de soir\xE9e d'orchid\xE9es",description:"Tenue formelle de Ningguang. La longue jupe bleue \xE9pouse ses formes \xE9l\xE9gantes et les ailes de papillons \xE0 ses chevilles ajoutent une touche a\xE9rienne."},"ein-immernachtstraum":{name:"Songe de la nuit \xE9ternelle",description:"Tenue c\xE9r\xE9moniale de Fischl. Que celle qui est noble conserve pour toujours son courage, sa sinc\xE9rit\xE9 et sa bont\xE9, de telle sorte qu'aucun mal ne puisse jamais l'atteindre."},"red-dead-of-night":{name:"Nuit \xE9carlate",description:"Une tenue que Diluc porte lorsqu'il part en mission secr\xE8te. Elle ressemble \xE0 une flamme dansante dans l'ombre dont les traces \xE9carlates hanteront les nuits des ennemis pour le restant de leurs jours."},"a-sobriquet-under-shade":{name:"Sobriquet \xE0 l'ombre",description:"Tenue que Lisa avait command\xE9e lors d'une nouvelle visite \xE0 Sumeru. D'un \xE9quilibre parfait entre praticit\xE9 et \xE9l\xE9gance, cette robe ressemble \xE0 l'uniforme qu'elle portait lorsqu'elle \xE9tudiait \xE0 l'Acad\xE9mie."},"springbloom-missive":{name:"Missive de floraison printani\xE8re",description:"Tenue de voyage d'Ayaka. Sa conception est bas\xE9e sur les robes fontainoises repr\xE9sent\xE9es dans les romans l\xE9gers et semble refl\xE9ter le style de vie des dames respectables qui r\xE9sident dans cette nation."},"blossoming-starlight":{name:"Lumi\xE8re stellaire en fleurs",description:"Une tenue exquise que Klee ne porte que pour les performances les plus importantes. Les couleurs sont brillantes, comme un g\xE2teau \xE0 la cr\xE8me d\xE9cor\xE9 de fleurs et couronn\xE9 de bougies \xE9carlates. Avec cette tenue, bonheur et sourires combleront vos aventures !"},"sailwind-shadow":{name:"Ombre nautique",description:"La tenue que Kaeya porte en jouant le Bandit au poignard. Bien qu'il s'agisse d'une tenue flamboyante con\xE7ue pour \xEAtre aussi accrocheuse que possible, elle n'est pas difficile \xE0 enfiler, bien qu'il faille un certain temps pour arranger tous les accessoires et son poignard."}}},E={text:"D\xE9tails",promotional:"Objets boost\xE9s",itemlist:"Liste des objets",increasedRate:"Taux d'obtention augment\xE9s !",percentageDrop:"Taux d'obtention lors du tirage d'un objet {rarity}* : {percentage}",wishDetails:"D\xE9tails",probInfo:"Taux d'obtention de base d'un objet {rarity}* : {singlePercentage} (Garantie incluse : {avgPercentage})",itemWishFor:"Liste d'objets disponibles par le biais des v\u0153ux :",itemType:"Type",itemName:"Nom",beginnerInfo:"Pas de limtie de temps (Disparait apr\xE8s 20 v\u0153ux)",limited:"Ev\xE9nement \xE0 dur\xE9e limit\xE9e",permanent:"Permanent",alert:"\u203B Ces v\u0153ux sont des {wishName}. Les v\u0153ux effectu\xE9s lors des {wishName}, ils ne sont pas cumulables avec les v\u0153ux effectu\xE9s lors d'autres types de v\u0153ux \xE9v\xE9nements.",beginner:["Les v\u0153ux <span>pour les d\xE9butants</span> n'ont pas de limite de temps et sont disponibles pour les Voyageurs r\xE9cemment arriv\xE9s en Teyvat. Aucune personnage et aucune arme \xE9v\xE9nement ne sont disponibles. <br /> Dans cette banni\xE8re un lot de 10 v\u0153ux co\xFBte <span>20%</span> de pierres en moins, Et {character} et automatiquement inclus dans votre premier lot de 10 v\u0153ux , et votre second lot de 10 v\u0153ux vous garanti un <span>autre</span> personnage 4*! <br/> La banni\xE8re expire apr\xE8s <span>20</span> v\u0153ux effectu\xE9s. Apr\xE8s l'expiration de la banni\xE8re, la page disparait.","\u203B Dans les circonstances habituelles, les taux d'obention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.","\u3013 R\xE8gles \u3013","Taux d'obtention de base d'un objet 4* :<span> 0.600%</span> <br /> Base probability of winning 4-Star character = <span> 5.100%</span>; consolidated probability (incl. guarantee) = <span> 13.000%</span>;"],standard:[`Les v\u0153ux permanents "{bannerName}" sont disponibles de mani\xE8re illimit\xE9e dans le temps et vous permettent d'obtenir armes et personnages non exclusifs.<br/> Chaque s\xE9rie de 10 v\u0153ux vous <span>garantit</span> l'obtention d'au moins un objet 4* ou plus.`,"\u203B Dans les circonstances habituelles, les taux d'obention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.","\u3013 R\xE8gles \u3013","Taux d'obtention de base d'un objet 5* : <span>0.600%</span>. Taux d'obtention de base d'un personnage 5* : <span>0.300%</span>. Taux d'obtention d'une arme 5* : <span>0.300%</span>. Taux d'obtention total d'un objet 5* (obtention garantie incluse) : <span>1.600%</span>. L'obtention d'un objet 5* est garantie au moins une fois tous les <span>90</span> v\u0153ux. <br> Taux d'obtention d'un objet 4* : <span>5.100%</span>. Taux d'obtention de base d'un personnage 4* :  <span>2.550%</span>. Taux d'obtention de base d'une arme 4* : <span>2.550%</span>. Taux d'obention total d'un objet 4* (obtention garantie incluse) : <span>13.000%</span>. L'obtention d'un objet 4* ou plus est garantie au moins une fois tous les <span>10</span> v\u0153ux effectu\xE9s. Le taux d'obtention d'un objet 4* gr\xE2ce \xE0 la garantie d'obtention est de <span>99.400%</span> et le taux d'obtention d'un objet 5* gr\xE2ce \xE0 la garantie d'obtention est de <span>0.600%</span>. "],events:[`Les V\u0153ux \xE9v\xE9nements "{bannerName}" sont d\xE9sormais disponibles! Les taux d'obtention du personnage 5* suivant : {featuredCharacter} et des personnages 4* suivants :  {rateupCharacters} sont <span>fortement augment\xE9s</span>, alors tentez votre chance !`,"\u203B Dans les circonstances habituelles, les taux d'obention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.","\u3013 R\xE8gles \u3013","[Objets 5*]","Taux d'obtention d'un personnage 5* : <span>0.600%</span>. Taux d'obtention total (obtention garantie incluse) : <span>1.600%</span>. L'obtention d'un personnage 5* est garantie au moins une fois tous les <span>90</span> v\u0153ux.<br/> Lorsque vous tirez un personnage 5* pour la premi\xE8re fois, il y a <span>50.000%</span> de chance qu'il s'agisse de {featuredCharacter}. Si ce n'est pas le cas, le personnage sera donc <span>garanti</span> lors de votre prochain tirage d'un personnage 5*.","Objets 4*","Taux d'obtention d'un objet 4* : <span>5.100%</span>. Taux d'obtention de base d'un personnage 4* : <span>2.550%</span>, Taux d'obtention de base d'une arme 4* : <span>2.550%</span>; Taux d'obtention total d'un objet 4* (obtention garantie incluse) : <span>13.000%</span>. L'obtention d'un objet 4* ou plus est garantie au moins une fois tous les <span>10</span> v\u0153ux effectu\xE9s. Le taux d'obtention d'un objet 4* gr\xE2ce \xE0 la garantie d'obtention est de <span>99.400%</span> et le taux d'obtention d'un objet 5* gr\xE2ce \xE0 la garantie d'obtention est de <span>0.600%</span>.<br/> Lorsque vous tirez un objet 4* pour la premi\xE8re fois, il y a <span>50.000%</span> de chance qu'il s'agisse de {rateupCharacters}. Si ce n'est pas le cas, l'un de ces personnages sera donc <span>garanti</span> lors de votre prochain tirage d'un objet 4*. Si vous obtenez un objet 4* par le biais d'un v\u0153u, la probabilt\xE9 d'obtention de chaque personnage 4* \xE0 la une est \xE9gale."],weapons:[`Les v\u0153ux \xE9v\xE9nements "{bannerName}" sont d\xE9sormais disponibles! Les taux d'obtention des armes 5* <span>exclusives</span> suivantes :{featuredWeapon1} et {featuredWeapon2}, des armes 4* <span>exclusives</span> suivantes {rateupWeapons} sont <span>fortement augment\xE9s</span>, alors tentez votre chance! <br/> <span> \u203B Les armes exclusives cit\xE9es ci-dessus ne seront pas disponibles  dans les v\u0153ux permanents "Envie de voyage."</span>`,"\u203B Dans les circonstances habituelles, les taux d'obtention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.","\u3013 R\xE8gles \u3013","[Objets 5*]",`Taux d'obtention d'une arme 5* :  <span>0.700%</span>. Taux d'obtention total (obtention garantie incluse) :  <span>1.850%</span>. L'obtention d'une arme 5* est garantie au moins une fois tous les <span>80</span> v\u0153ux.<br/> Lorsque vous tirez une arme 5* pour la premi\xE8re fois, il y a <span>75.000%</span> de chance qu'il s'agisse de {featuredWeapon1} ou {featuredWeapon2}. Si ce n'est pas le cas, l'une de ces armes sera donc <span>garantie</span> lors de votre prochain tirage d'une arme 5*. Si vous obtenez une arme 5* par le biais d'un v\u0153u sans avoir atteint le nombre de points de destin max, la probabilit\xE9 d'obtention de chaque arme 5* \xE0 la une est \xE9gale.<br/> Au cours de ces V\u0153ux \xE9v\xE9nements "{bannerName}", vous pouvez vous frayer une voie vers l'arme 5* \xE0 la une que vous souhaitez obtenir avec le m\xE9canisme de  "Chemin divin.". Le choix de l'arme ne sera valide que pendant la dur\xE9e de ces V\u0153ux \xE9v\xE9nements "{bannerName}". <br/> Au cours de ces V\u0153ux \xE9v\xE9nements "{bannerName}", lorsque vous obtenez une arme 5* apr\xE8s avoir utilsi\xE9 le "Chemin divin" et que cette arme 5* obtenue n'est pas votre arme choisie, 1 point de destin vous sera accord\xE9. Une fois le <span>nombre maximum</span> de points de destin atteint, l'arme 5* que vous avez pr\xE9c\xE9demment choisie sera donc <span>garantie</span> lors de votre prochain tirage d'une arme 5*. Apr\xE8s avoir obtenu l'arme choisie, le nombre de points de destin max sera r\xE9initialis\xE9 \xE0 <span>0</span>, que vous ayez atteint ou non le nombre de points de destin max, et vous devrez les accumuler de nouveau. Si vous n'utilisez pas le "Chemin divin" pour vous frayer une voie vers une arme de votre choix, <span>aucun</span> point de destin ne vous sera accord\xE9. <br/> Il est possible de modifier ou d'annuler votre choix d'arme. Une fois modifi\xE9 ou annul\xE9, vos points de destin seront <span>r\xE9initialis\xE9s</span> par ces actions et vous devrez en cumuler \xE0 nouveau. <br/> \u203B Les points de destin obtenus au cours de ces v\u0153ux ne seront valables que pendant cette p\xE9riode de V\u0153ux \xE9v\xE9n\xE9ments "Incarnation divine". Apr\xE8s la fin de ces v\u0153ux, les points de destin seront r\xE9initialis\xE9s et vous devrez en cumuler \xE0 nouveau.`,"[Objets 4*]","Taux d'obtention de base d'un objet 4* : <span>6.000%</span>. Taux d'obtention de base d'un personnage 4* : <span>3.000%</span>. Taux d'obtention de base d'une arme 4* : <span>3.000%</span>. Taux d'obtention total d'un objet 4* (obtention garantie incluse) :  <span>14.500%</span>. L'obtention d'un objet 4* ou plus est garantie au moins une fois tous les <span>10</span> v\u0153ux effectu\xE9s. Le taux d'obtention d'un objet 4* gr\xE2ce \xE0 la garantie d'obtention est de <span>99.300%</span> et le taux d'obtention d'un objet 5* gr\xE2ce \xE0 la garantie d'obtention est de <span>0.700%</span>. <br/> Lorsque vous tirez un objet 4* pour la premi\xE8re fois, il y a <span>75.000%</span> de chance qu'il s'agisse de {rateupWeapons}. Si ce n'est pas le cas, l'une de ces armes sera donc <span>garantie</span> lors de votre prochain tirage d'un objet 4*. Si vous obtenez une arme 4* par le biais d'un v\u0153u , la probabilit\xE9 de chaque arme 4* \xE0 la une est \xE9gale."],convertion:{fiveStar:"Les armes 5* obtenues par le biais de ces v\u0153ux s'accompagnent de 10 {starglitter}.",fourStar:"Les armes 4* en double vous rapportent 2 {starglitter},",threeStar:" et les armes 3*, 15 {stardust}."},duplicate:{heading:"\u3013 Personnages en double \u3013",text:"Lorsque vous obtenez un personnage {rarity}* que vous poss\xE9dez d\xE9j\xE0 (par le biais de v\u0153ux, d'achat en boutique, en r\xE9compense ou par d'autres moyens): De la 2e \xE0 la 7e obtention, vous obtenez 1 {stellaFortuna} et {constBonus} {starglitter}, puis \xE0 partir de la 8e obtention, le personnage sera converti en {fullConstBonus} {starglitter}."}},V={title:"Historique des v\u0153ux",text:"Historique",resetButton:"Effacer",resetPromptTitle:"Effacer l'historique ?",resetPrompt:'Cela va aussi supprimer tous les personnages et toutes les armes li\xE9es \xE0 la banni\xE8re "{bannerName}" de votre inventaire. <br /> Voulez-vous vraiment r\xE9initialiser ?',resetSuccess:"R\xE9initialisation r\xE9ussie !",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"S\xE9lectionner le type de v\u0153u :",disclaimer:"Nous ne sauvegardons jamais vos donn\xE9es en ligne. Toutes les donn\xE9es sont stock\xE9es dans IndexedDB, ce qui veut dire que les donn\xE9es sont sauvegard\xE9es dans votre navigateur. Elle ne seront pas supprimm\xE9es tant que vous n'utilisez pas le bouton de suppression/r\xE9initialisation ou tant que vous ne videz pas le cache de votre navigateur.",currentPity:"Current Pity :",totalPull:"Total Pull :",totalSpend:"Total d\xE9pens\xE9 :",filterTxt:"Filtrer",filter:"{rarity} Etoiles",filterAll:"All",pity:"Pity",timeReceived:"Time Received",waiting:"En attente",noData:"Aucune donn\xE9e disponible.",untracked:"Non suivi",item:"Item",win:"50/50 gagn\xE9",lose:"50/50 perdu",guaranteed:"Garanti",selected:"Arme s\xE9lectionn\xE9e",olderLayout:"Ancienne mise en page",switchv2:"Changer pour la V2"},O={text:"Boutique",paimonBargains:"\xC9change astral",fateNeeded:"Il manque {rollQty} {currency} requis.",primoNeeded:"Acheter avec {primoPrice} primo-gemmes ?",purchaseUpto:"1 disponible(s)",purchaseConfirm:"Confirmation d'achat",exchangeHeading:"Echange contre objet",purchaseHeading:"Objet",purchaseButton:"Acheter",pay:"Payer",product:"Produit",consume:"Consommer",selectPayment:"S\xE9lectionnez le moyen de paiement",unrealWallet:"Portefeuille irr\xE9el",convertPrimo:" Convertir automatiquement en primo-gemmes ?",proceedPayment:"Payer",qty:"Quantit\xE9",insufficient:"Vous n'avez pas assez de ressources.",crystalTopup:"Recharge cristaux",initialBonus:"Bonus d'achat initial",bonus:"Bonus",buyGenesisHeading:"Acheter des Cristaux primaires",recomendedHeading:"Produits recommand\xE9s",paimonHeading:"Echange astral",welkinNote:"Peut \xEAtre achet\xE9 plusieurs fois",limitedOffer:"Offre \xE0 dur\xE9e limit\xE9e",noLimitTime:"Aucun objet \xE0 dur\xE9e limit\xE9e disponible",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"Faveur de l'astre de la nuit",newOutfit:"Nouveaux skins",dayRemaining:"Jours restants: {days}",alreadyClaimed:"(R\xE9cup\xE9r\xE9 aujourd'hui)",instantlyGet:"Inclus avec l'achat",dailyGift:"et chaque jour :",obtainTotal:"* Valide pendant 30 jours!<br> Obtenez un total de {totalGenesis} cristaux primaires et {totalPrimo} primo-gemmes!",claimingBlessing:"Cliquez pour r\xE9cup\xE9rer votre r\xE9compense journali\xE8re de Faveur de l'astre de la nuit",issuedPurchase:"Re\xE7us lors de l'achat",collect:"R\xE9cup\xE9rez votre r\xE9compense journali\xE8re pendant 30 jours"},exchange:{starglitter:"Echange Ast\xE9ries",stardust:"Echange Astrions",primogem:"Echange primo-gemmes"},item:{genesis:"Cristaux primaires",primogem:"Primo-gemme",intertwined:"Pierre de la fatalit\xE9",acquaint:"Pierre de la destin\xE9e",starglitter:"ast\xE9ries libres",stardust:"astrion libres"},description:{intertwined:"Une graine du destin qui relie les r\xEAves. La lueur de la pierre de la fatalit\xE9 peut faire s'entrelacer les sorts qui ne devraient pas se croiser. C'est gr\xE2ce \xE0 cette lueur que les \xE9toiles peuvent former l'image de vote c\u0153ur.",acquaint:"Une graine d'espoir qui illumine le ciel \xE9toil\xE9. Peu importe la distance qui les s\xE9pare l'un de l'autre, ceux qui sont destin\xE9s \xE0 se rencontrer seront guid\xE9s par la lueur de la pierre de la fatalit\xE9 et se retrouveront enfin sous le ciel \xE9toil\xE9."}},W={text:"Inventaire",unsetOutfit:"Retirer un skin",setOutfit:"Appliquer un skin sur un personnage",refinement:"Raffinement {count}",constellation:"Constellation {count}",extra:"{count} Extra",firstSummon:"Premi\xE8re invocation le : {date}",notOwned:"Non poss\xE9d\xE9",sort:"Trier",rarity:"Raret\xE9",name:"Nom",quantity:"Quantit\xE9",element:"El\xE9ment",release:"Date de sortie",type:"Type",owned:"Poss\xE9d\xE9",showAllOption:"Afficher tous/toutes les {item}s"},M={no:"Non",yes:"Oui",text:"Menu",feedback:"Feedback",options:"Options",updates:"Historique des mises \xE0 jour",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"Langue",currency:"Monnaie",fates:"Nombre de V\u0153ux",unlimited:"Illimit\xE9",manual:"Saisie manuelle",mute:"D\xE9sactiver la musique et les effets sonores",switchBanner:"Changer de banni\xE8re",showAllitems:"Afficher tous les objets dans l'inventaire",autoskip:"Passer automatiquement le Splash Art",animatedbg:"Arri\xE8re-plan anim\xE9",multiRoll:"Number per multi-roll",factoryReset:"Effacer les donn\xE9es et restaurer les valeurs par d\xE9faut",resetTitle:"R\xE9initialisation d'usine",rotate:"Tourner pour une meilleure exp\xE9rience",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Nettoyer le cache ( {size} ) ? <small> Vous devrez re-t\xE9l\xE9charger toutes les ressources en cache apr\xE8s cette ation! </small>",resetButton:"R\xE9initialier maintenant",resetPrompt:"Voulez-vous vraiment supprimer <strong> Toutes les Donn\xE9es </strong> et restaurer l'\xE9tat par d\xE9faut?",resetSuccess:"R\xE9initialisation r\xE9ussie",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Obtenez-en une nouvelle ici !",noKey:"Vous n'avez pas de cl\xE9 ?",verifyFail:"V\xE9rification de l'AdKey \xE9chou\xE9e, V\xE9rifieez votre connexion !",invalidKey:"Votre cl\xE9 est invalide",keyExpired1:"Cl\xE9 expir\xE9e !",keyExpired2:'Votre cl\xE9: "{key}" est expir\xE9e depuis le {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Entrez la cl\xE9",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* Je suis d\xE9sol\xE9 pour les publicit\xE9s. En fait, je ne veux pas g\xE2cher votre exp\xE9rience de navigation, mais je n'ai pas d'\xE9quipe ou de sponsor pour maintenir cette application en vie. Si vous ne voulez rien d\xE9penser, vous pouvez toujours activer le bloqueur de publicit\xE9 ou simplement utiliser des DNS personnalis\xE9s, je ne vous l'interdirai pas."},K={title:e,character:n,weapon:t,vision:a,anemo:s,cryo:o,dendro:r,electro:i,hydro:u,geo:l,pyro:d,bow:p,catalyst:c,claymore:m,sword:b,polearm:v,extra:g,obtained:h,waiting:f,connectionFailed:x,confirmButton:y,cancelButton:q,disclaimer:w,fanmade:C,pressToContinue:T,installInstruction:A,share:z,screenshot:j,capturing:P,rewardFirstShare:S,version:B,donate:L,banner:D,editor:R,customBanner:k,backupRestore:N,wish:I,outfit:F,details:E,history:V,shop:O,inventory:W,menu:M};export{s as anemo,N as backupRestore,D as banner,p as bow,q as cancelButton,P as capturing,c as catalyst,n as character,m as claymore,y as confirmButton,x as connectionFailed,o as cryo,k as customBanner,K as default,r as dendro,E as details,w as disclaimer,L as donate,R as editor,i as electro,g as extra,C as fanmade,l as geo,V as history,u as hydro,A as installInstruction,W as inventory,M as menu,h as obtained,F as outfit,v as polearm,T as pressToContinue,d as pyro,S as rewardFirstShare,j as screenshot,z as share,O as shop,b as sword,e as title,B as version,a as vision,f as waiting,t as weapon,I as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/i18n-ec7c8da1.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/i18n-ec7c8da1.js
deleted file mode 100644
index a90ecb3d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/i18n-ec7c8da1.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import{d as T,a as j,o as D}from"./outfit-bffb00d9.js";import{A as y,C as b}from"./app-stores-358281e6.js";import{c as O,d as g,g as P,b as q}from"./index-123e2351.js";import{_ as s}from"./preload-helper-176e53da.js";import{y as L,$ as x,F as V}from"./runtime.esm-4bf604c8.js";const S=new RegExp(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i),C=new RegExp(/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i),z=e=>S.test(e)||C.test(e.substr(0,4)),N="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.54",F=()=>{const e=screen.orientation?.angle;return!(e===90||e===270)&&window.matchMedia("screen and (max-width: 760px)").matches},Q=()=>{const e=navigator.userAgent||navigator.vendor||window.opera||N;return navigator?.userAgentData?.mobile||z(e)||F()},X=()=>{const e=window.navigator,t=e.userAgent;if(t.match("CriOS"))return{isSupported:!0,ios:!0};const o=window.chrome,i=e.vendor,c=typeof window.opr<"u",a=t.indexOf("Edg")>-1,n=t.indexOf("Firefox")>-1;return o!==null&&typeof o<"u"||i==="Google Inc."||c||a||n?{isSupported:!0}:{isSupported:!1}},Y=()=>{const e=window.navigator?.userAgent?.toLowerCase(),t=window.chrome,r=e?.indexOf("chrome");return e?.match("safari")&&!r&&!t},B=[{version:1,characters:["qiqi","keqing","diluc","mona","jean"],featured:{bannerName:"wanderlust-invocation-1",character:"jean"}},{version:2,characters:["qiqi","keqing","diluc","mona","jean"],featured:{bannerName:"wanderlust-invocation-2",character:"qiqi"}},{version:3,characters:["qiqi","keqing","diluc","mona","jean","tighnari"],featured:{bannerName:"wanderlust-invocation-2",character:"qiqi"}},{version:4,characters:["qiqi","keqing","diluc","mona","jean","tighnari","dehya"],featured:{bannerName:"wanderlust-invocation-2",character:"qiqi"}}];let v=[];y.subscribe(e=>{v=e});const Z=e=>{let t=new FileReader;for(t.onload=r=>{let o=r.target.result,i=[];console.log(o),o.split(`
-`).forEach((a,n)=>{if(a.trim()!==""){let l=a.split(" ");i.push({name:`n-${n}`,chineseChar:l.length==2?l[1].trim():a.trim(),rarity:l.length==2?parseInt(l[0]):3})}}),console.log(i),v=i,O.set(i),alert("\u4E0A\u4F20\u6210\u529F")},t.readAsText(e,"UTF-8");!t.readyState===FileReader.DONE;);},ee=({currentPity:e=0,maxPity:t=90,baseRate:r=.6,rateIncreasedAt:o=74}={})=>{if(r<=0&&e<t)return 0;if(e<o)return r;if(e>=t)return 100;const i=(100-r)/(t+1-o);return(e+1-o)*i+r},w=e=>{let t=[];for(let i=0;i<e.length;i++)t[i]=e[i].chance+(t[i-1]||0);const r=Math.random()*t[t.length-1];return e[t.findIndex(i=>i>r)]},_=(e,t)=>{if(e==="beginner")return b["character-event"][t];const r=b[e],o=g.get(e);if(!(o[t]||o[t]>=0))return r[t];const i=parseFloat(o[t]);return isNaN(i)?o[t]:i},te=(e,t,r)=>{const o=g.get(e);if(typeof r=="boolean")o[t]=r;else{const i=parseFloat(r);isNaN(i)?o[t]=r:o[t]=i}g.set(e,o)},u=e=>E(e).filter(({limited:t})=>!t),M=(e,t=null,r=null)=>e.filter(({release:o})=>{if(!o)return!0;const[i,c]=o.split("-");return!(parseFloat(t)<parseFloat(i)||parseFloat(t)===parseFloat(i)&&r<=parseInt(c))}),re=e=>Array.isArray(e)?e.length<2?e[0]:e[Math.floor(Math.random()*e.length)]:e,oe=(e=1,t=9)=>Math.floor(Math.random()*(t-e+1)+e),f=e=>T.filter(({rarity:t})=>t===e).map(t=>(t.type="character",t)),E=e=>j.filter(({rarity:t})=>t===e).map(t=>(t.type="weapon",t)),ie=()=>v.map(e=>(e.type="member",e.weaponType="catalyst",e)),ae=e=>e?T.find(({name:r})=>e===r)||{}:{},se=e=>e?j.find(({name:r})=>r===e)||{}:{},h=e=>e==="standard"?f(4):f(4).filter(({name:t})=>!D.includes(t)),ne=()=>u(3),ce=({banner:e="standard",version:t=null,phase:r=null,type:o=null,useRateup:i=!1,rateupNamelist:c=[]}={})=>{if(i)return(e==="character-event"||e==="beginner"?f(4):E(4)).filter(({name:I})=>c.includes(I));if(e==="beginner")return h(e).filter(({release:d})=>d==="1.0-0");let a;if(o=="all")a=[...h(e),...u(4)];else if(o==="character")a=h(e);else if(o==="weapon")a=u(4);else{const m=_(e,"charRate"),{itemType:d}=w([{itemType:"char",chance:m},{itemType:"wp",chance:100-m}]);a=d==="wp"?u(4):h(e)}return M(a,t,r).filter(({name:m})=>!c.includes(m))},p=(e=1)=>{const{characters:t}=B.find(({version:o})=>o===e);return f(5).filter(({name:o})=>t.includes(o))},le=({banner:e="standard",stdver:t=1,type:r=null,useRateup:o=!1,rateupItem:i=[],customData:c={}}={})=>{if(o&&e==="character-event"){if(Object.keys(c).length>0){const{vision:n,character:l,artPosition:m,itemID:d}=c;return{vision:n,itemID:d,name:l,offset:m||{},type:"character",rarity:5,custom:!0}}return f(5).find(({name:n})=>n===i[0])}if(o&&e==="weapon-event")return E(5).filter(({name:n})=>i.includes(n));if(e==="weapon-event")return u(5).filter(({name:n})=>!i.includes(n));if(e==="beginner")return p(1);if(e==="standard"||!e){let a;if(r==="all")a=[...p(t),...u(5)];else if(r==="character")a=p(t);else if(r==="weapon")a=u(5);else{const n=_(e,"charRate"),{itemType:l}=w([{itemType:"char",chance:n},{itemType:"wp",chance:100-n}]);a=l==="wp"?u(5):p(t)}return a}return p(t).filter(({name:a})=>!i.includes(a))},me=e=>{const t=_(e,"winRate"),{item:r}=w([{item:"rateup",chance:t},{item:"std",chance:100-t}]);return r==="rateup"},ue=(e,t)=>{const r=P.get(`${e}-${t}star`),o=_(e,"guaranteed");return{status:r,never:o==="never",always:o==="always"}},R=(e,t)=>{const r=e[t];return r?typeof r=="function"?r():Promise.resolve(r):new Promise((o,i)=>{(typeof queueMicrotask=="function"?queueMicrotask:setTimeout)(i.bind(null,new Error("Unknown variable dynamic import: "+t)))})},k=["zh-CN","zh-TW","de-DE","en-US","fr-FR","id-ID","it-IT","ja-JP","pt-BR","ru-RU","th-TH","vi-VN"],U=["zh-CN","zh-TW","en-US","it-IT","ja-JP","pt-BR","ru-RU","vi-VN"],W=()=>{const t=q.get("locale")||V();return k.find(o=>o.includes(t))||"en-US"},de=()=>{k.forEach(t=>{L(t,()=>R(Object.assign({"../../locales/de-DE.json":()=>s(()=>import("./de-DE-3814d14a.js"),[],import.meta.url),"../../locales/en-US.json":()=>s(()=>import("./en-US-c052b9ea.js"),[],import.meta.url),"../../locales/fr-FR.json":()=>s(()=>import("./fr-FR-79ee7566.js"),[],import.meta.url),"../../locales/id-ID.json":()=>s(()=>import("./id-ID-e1da9308.js"),[],import.meta.url),"../../locales/it-IT.json":()=>s(()=>import("./it-IT-298ecc6e.js"),[],import.meta.url),"../../locales/ja-JP.json":()=>s(()=>import("./ja-JP-76868286.js"),[],import.meta.url),"../../locales/pt-BR.json":()=>s(()=>import("./pt-BR-ed487c6b.js"),[],import.meta.url),"../../locales/ru-RU.json":()=>s(()=>import("./ru-RU-dec1a909.js"),[],import.meta.url),"../../locales/th-TH.json":()=>s(()=>import("./th-TH-4b2a93d4.js"),[],import.meta.url),"../../locales/vi-VN.json":()=>s(()=>import("./vi-VN-32e2d47a.js"),[],import.meta.url),"../../locales/zh-CN.json":()=>s(()=>import("./zh-CN-0fc291e6.js"),[],import.meta.url),"../../locales/zh-TW.json":()=>s(()=>import("./zh-TW-f14f9f89.js"),[],import.meta.url)}),`../../locales/${t}.json`))}),U.forEach(t=>{L(t,()=>R(Object.assign({"../../locales/items/en-US.json":()=>s(()=>import("./en-US-633c48a0.js"),[],import.meta.url),"../../locales/items/it-IT.json":()=>s(()=>import("./it-IT-d4ace31e.js"),[],import.meta.url),"../../locales/items/ja-JP.json":()=>s(()=>import("./ja-JP-9a116936.js"),[],import.meta.url),"../../locales/items/pt-BR.json":()=>s(()=>import("./pt-BR-ef6f28e8.js"),[],import.meta.url),"../../locales/items/ru-RU.json":()=>s(()=>import("./ru-RU-cce9fb85.js"),[],import.meta.url),"../../locales/items/vi-VN.json":()=>s(()=>import("./vi-VN-5f277aef.js"),[],import.meta.url),"../../locales/items/zh-CN.json":()=>s(()=>import("./zh-CN-682e266a.js"),[],import.meta.url),"../../locales/items/zh-TW.json":()=>s(()=>import("./zh-TW-2597c741.js"),[],import.meta.url)}),`../../locales/items/${t}.json`))});const e=W();x({fallbackLocale:"en-US",initialLocale:e})};export{R as _,Q as a,X as b,W as c,re as d,ue as e,me as f,ne as g,ce as h,Y as i,le as j,ie as k,_ as l,de as m,ee as n,v as o,w as p,ae as q,oe as r,B as s,te as t,se as u,Z as v};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/id-ID-e1da9308.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/id-ID-e1da9308.js
deleted file mode 100644
index 6d81cde5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/id-ID-e1da9308.js
+++ /dev/null
@@ -1 +0,0 @@
-const a="Simulator Permohonan Genshin Impact",n="Karakter",e="Senjata",t="Vision",i="Anemo",r="Cryo",s="Dendro",m="Electro",o="Hydro",u="Geo",k="Pyro",d="Bow",l="Catalyst",p="Claymore",h="Sword",g="Polearm",c="Extra",b="Mendapatkan",y="Tunggu",P="Koneksi Gagal!",S="OK",j="Batalkan",f="Semua aset yang digunakan di situs ini adalah milik Mihoyo.",K="Aplikasi ini murni buatan Fan, enjoy aja!",B="Tekan di area kosong untuk melanjutkan",v="Cara menginstall ke beranda Smartphone/Desktop",w="Bagikan",T="Ambil Gambar",A="Memproses",D="Hadiah membagikan pertama kali : {qty}",I="Versi",E="Donasi",R={beginner:"Permohonan Pemula",wanderlust:"Wanderlust Invocation","epitome-invocation":"Epitome Invocation","adrift-in-the-harbor":"Misteri Keabadian","auric-blaze":"Kilauan Bara Api Surya","azure-excursion":"Ketenangan Riak Air","ballad-in-goblets":"Syair Dalam Piala","born-of-ocean-swell":"Tarian Gulungan Ombak","caution-in-confidence":"Perintah dan Siasat","chanson-of-many-waters":"Kidung Semesta Perairan","conjuring-chiaroscuro":"Muslihat Bayang dan Terang","dance-of-lantern":"Tarian Lentera","decree-of-the-deeps":"Titah di Kedalaman Lautan","discerner-of-enigmas":"Sang Pengungkap Misteri","drifting-luminescence":"Mutiara di Atas Laut","everbloom-violet":"Lembayung Sakura","farewell-of-snezhnaya":"Sampai Jumpa Snezhnaya","from-ashes-reborn":"Inkarnasi Sisa Bara Api","gentry-of-hermitage":"Bangsawan dan Pertapa","immaculate-pulse":"Hati Semurni Mutiara","in-the-name-of-the-rosula":"Ikrar Sekuntum Mawar","invitation-to-mundane-life":"Panggilan Cahaya","leaves-in-the-wind":"Dedaunan di Tengah Angin","moment-of-bloom":"Bunga Bersemi","oni_s-royale":"Perjamuan Oni","reign-of-serenity":"Sang Penguasa Tunggal","secretum-secretorum":"Enigma Kehidupan","sparkling-steps":"Percikan Langkah Api","tapestry-of-golden-flames":"Pijar Api di Angkasa","tempestuous-destiny":"Lilitan Takdir Menggelora","the-heron_s-court":"Pelataran Bangau Putih","the-moongrass-enlightenment":"Anugerah Kebijaksanaan Rumput Rembulan","the-transcendent-one-returns":"Kembali ke Dunia Fana","twilight-arbiter":"Hakim Senja","twirling-lotus":"Tarian Limbai Teratai","viridescent-vigil":"Langkah Suaka Rimba"},M={bannerConfig:"Konfigurasi {banner}",baseRate:"Probabilitas Dasar {rarity}\u2605:",maxPity:"Piti Maksimal {rarity}\u2605:",hardPity:"Tingkatkan probabilitas {rarity}\u2605 pada piti:",currentPity:"Pity {rarity}\u2605 saat ini",winRate:"Probabilitas mendapat item RateUP:",charRate:"Probabilitas mendapat Karakter dibanding Senjata",nonRateup:"(Item 4\u2605 saat kalah)",selectedRate:"Probabilitas mendapat senjata terpilih:",guaranteedSystem:"Sistem Jaminan",backToDefault:"Pengaturan Default",resetPrompt:'Apakah kamu yakin akan mereset pengaturan probabilitas untuk <b>"{banner}"</b>?',default:"Aktif",never:"NonAktif",always:"Selalu"},U={title:"Buat Bannermu Sendiri",deletePrompt:"Kamu yakin untuk menghapus banner ini ?",ownerDeleteNote:"Jika kamu telah membagikan banner ini secara publik, Traveler tidak akan dapat mengakses banner ini lagi",userDeleteNote:"Riwayat permohonan tidak akan dihapus dengan aksi ini, tetapi kamu tidak akan bisa melakukan permohonan pada banner ini lagi",retry:"Ulangi",findBanner:"Mencari Banner",networkError:"Jaringan Eror, Cek Koneksi kamu!",bannerNotFound:"Banner tidak ditemukan, <u>Banner ID</u> salah atau mungkin telah dihapus.",invalidBanner:"Invalid Banner ID",identifying:"Mengidentifikasi Banner",loadOwnedBanner:'Kamu adalah kreator dari banner "{ownedBanner}", data banner yang tersimpan pada perangkatmu akan digunakan untuk setiap permohonan yang kamu lakukan',loadReady:'"{banner}" susah siap',uploading:"Sedang mengunggah {item}",uploadFailed:"Gagal mengunggah, silahkan coba beberapa saat lagi!",close:"Tutup",almostDone:"Hampir Selesai",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Atur Koordinat",next:"Selanjutnya",move:"Ubah Posisi",changeSplashArt:"Ubah Splash Art",adjustSplashArt:"Sesuaikan Splash Art",dropHere:"Drop di sini!",preview:"Preview Banner",generateImage:"Buat Gambar Preview",notAnImage:"Content harus berupa Gambar",imageTooLarge:"Ukuran gambar terlalu besar, maksimal: {maxSize}",faceIcon:"Gambar Wajah",addBanner:"Tambah Banner",delete:"Hapus",deleteFailed:"Gagal Menghapus",bannerRemoved:"Banner Berhasil Dihapus",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Informasi Banner",bannerName:"Nama Banner",charName:"Nama Karakter",charTitle:"Gelar Karakter",watermark:"Watermark",completeAllField:"Isi semua kolom yang tersedia!",finishAndWish:"Finish & Wish",publish:"Publish Banner",updateAndShare:"Update & Bagi",rateupChar:"Karakter Rate Up",yourBanners:"Banner Milikmu",createBanner:"Buat Bannermu Sendiri",limitation:"Kamu bukan Member, Hapus beberapa banner untuk mengaktifkan fitur Edit",memberToUnlock:"Jadilah Member untuk menambah lebih banyak Banner",incomplete:"Incomplete",inappropriate:"Konten Tidak Pantas!"},N={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} akan diimport ke dalam aplikasi, silahkan pilih aksi yang ingin kamu terapkan!",mergeAction:"Gabung Data <small>Otomatis menghapus item duplikat dan menyisipkan item baru</small>",replaceAction:"Ganti Data <small> Hapus dan ganti seluruh data saat ini. </small>",dropFiles:"Drop berkas di sini",autoExport:"Auto Export",destination:"Target",lastExport:"Export Terakhir",desNotFound:"Tidak dapat menemukan Target Export, silahkan menekan tombol export kembali!"},x={wishTitle:"Permohonan",rollButton:"Mohon {count}",stellaFortuna:"Stella Fortuna",loadFailed:"Gagal Memuat Banner! <br /> Silahkan ganti banner atau hubungkan kembali ke internet untuk menghindari error!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banner",allBanner:"Semua Banner",previous:"Banner Terdahulu",findBanner:"Cari Banner",group:"Grup",beginner:"Permohonan Pemula","character-event":"Event Permohonan Karakter","weapon-event":"Permohonan Senjata",standard:"Permohonan Standar",novice:"Permohonan Pemula",wishDescription:"Setiap 10 kali Permohonan pasti mendapatkan item 4\u2605 ke atas",up:"UP!",beginnerSet:"10-set diskon 20%. 10-set pertama pasti mendapatkan {character}.",beginnerNote:'"Aku akan selalu ingat etika seorang pelayan."',beginnerChance:"Sisa Kesempatan: {chances}",standardNote:"Permohonan Standar tidak memiliki batas waktu.",allWeaponTypes:"Semua tipe senjata",etc:"dll.",probIncreased:"Kesempatan untuk memperoleh ditingkatkan !",eventNote:"Karakter 5\u2605 Eksklusif hanya dapat diperoleh di Event Permohonan tertentu selama periode event.",viewDetails:"Tekan Rincian untuk info lebih lanjut."},epitomizedPath:{text:"Epitomized Path",fatePoint:"Poin Takdir",cancelPrompt:"Apakah kamu ingin membatalkan pilihanmu saat ini ?",cancelDesc:"Pembatalan akan me-reset akumulasi poin takdir",selectWeapon:"Senjata yang Dipilih",chartCourseOf:"Pilih {target}",cancelCourse:"Batalkan Pilihan",chartCourse:"Pilih",courseSetFor:"Pilihan Ditentukan untuk: {selectedCourse}",description:['"Epitomized Path" adalah sistem yang termasuk dalam "Epitome Invocation" ini:',"Setelah kamu menentukan senjata pilihanmu, jika kamu <span> menerima senjata bintang 5 yang bukan pilihanmu</span>, kamu akan mendapatkan 1 poin takdir.",'Setelah kamu mengumpulkan Poin Takdir yang cukup, senjata bintang 5 berikutnya akan menjadi senjata yang kamu pilih melalui "Epitomized Path"','Point Takdir kamu <span> akan di-reset setelah mendapatkan senjata "Epitomized Path"</span> dalam "Epitome Invocation" ini.',"Jika kamu tidak memilih senjata, Poin Takdir tidak akan terkumpul dari Permohonanmu","Kamu dapat mengubah atau membatalkan pilihanmu, tetapi tindakan ini <span> akan me-reset Poin Takdir yang telah terkumpul. </span>",'<span>Saat "Epitome Invocation" ini berakhir, Poin Takdir yang terkumpul juga akan di-reset</span>.']},result:{skip:"Lewati",meteorFailed:"Animasi meteor gagal dimuat",new:"Baru",convertion:"Konversi",title:"Hasil Permohonan untuk {item} et al"}},C={heading:"Kostum Karakter",default:"Default",setOutfit:"Atur Kostum",owned:"Sudah Dimiliki",purchasePrompt:"Kamu belum memiliki karakter untuk kostum ini, apakah kamu yakin ingin membeli kostum ini?",promptInfo:"Kamu masih bisa menggunakan kostum ini setelah mendapatkan karakter yang sesuai.",obtained:"Mendapatkan Kostum Baru",unlocked:"Berhasil membuka kostum untuk {character}!",item:{"5-star-outrider":{name:"5-Star Outrider"},"favonian-fevotion":{name:"Favonian Devotion"},"flowing-fate":{name:"Flowing Fate"},"executor_s-thorns":{name:"Executor's Thorns"},"sea-breeze-dandelion":{name:"Sea Breeze Dandelion",description:"Pakaian yang dikenakan Jean saat musim panas. Terlihat nyaman dan santai, namun tetap elegan, sangat cocok dikenakan saat bepergian ke pantai."},"summertime-sparkle":{name:"Summertime Sparkle",description:"Pakaian pantai Barbara. Rok pendek yang indah penuh dengan vitalitas musim panas dan seolah membawa suasana udara segar dari laut."},"opulent-splendor":{name:"Opulent Splendor",description:"Pakaian resmi Keqing. Ia hadir di tengah pagi yang indah pada momen Lantern Rite. Benang yang sudah dirajut begitu lama oleh jerih payah ini, kemudian terjalin menjadi penampilan yang sederhana namun mengesankan."},"orchid_s-evening-gown":{name:"Orchid's Evening Gown",description:"Pakaian formal Ningguang. Rok cyan panjang mengikuti lekuk tubuhnya yang elegan, dan sayap kupu-kupu di pergelangan kakinya menambahkan sentuhan anggun pada pakaian ini."},"ein-immernachtstraum":{name:"Ein Immernachtstraum",description:"Pakaian upacara untuk Prinzessin. Semoga dia yang hatinya mulia selalu mempunyai keberanian, ketulusan dan kebaikan selamanya di dalam hatinya, dan agar tidak ada kejahatan yang bisa mengalahkannya."},"red-dead-of-night":{name:"Red Dead of Night",description:"Salah satu pakaian Diluc yang dia pakai saat beroperasi dalam rahasia, bagaikan kobaran api dalam gelapnya bayangan. Bekas luka berwarna merah merona di ujung penglihatan para musuh adalah mimpi buruk di sisa hidup mereka."},"a-sobriquet-under-shade":{name:"A Sobriquet Under Shade",description:"Kostum Lisa yang dipesankan oleh seseorang saat dirinya berkunjung kembali ke Sumeru. Keseimbangan sempurna antara kepraktisan dan keanggunan, modelnya lumayan mirip dengan seragam lamanya ketika masih belajar di Akademiya dulu."},"springbloom-missive":{name:"Springbloom Missive",description:"Kostum perjalanan Kamisato Ayaka. Gaun yang dirancang mengikuti model gaun para wanita Fontaine dalam ilustrasi novel ringan, yang menunjukkan sekilas gaya hidup para wanita terhormat di sana."},"blossoming-starlight":{name:"Blossoming Starlight",description:"Kostum yang dikenakan Klee hanya untuk pertunjukan penting. Warnanya sangat indah, seperti kue yang dihiasi dengan bunga-bunga krim dan lilin merah yang menawan. Dengan mengenakannya, dapat membawa kebahagiaan dan senyuman dalam petualangannya ke seluruh penjuru."},"sailwind-shadow":{name:"Sailwind Shadow",description:'Kostum Kaeya yang dikenakan saat memerankan "Bandit Belati". Desain kostum ini sengaja dibuat agar terlihat sangat mencolok. Tapi mengenakannya pun tidak sulit, malahan aksesoris lain dan belatinya yang lebih memakan waktu saat dikenakan.'}}},F={text:"Rincian",promotional:"Item UP",itemlist:"Daftar Item",increasedRate:"Persentase Perolehan Meningkat",percentageDrop:"Kemungkinan dari Persentase Perolehan {rarity}\u2605: {percentage}",wishDetails:"Rincian Permohonan",probInfo:"Persentase Dasar Perolehan Item {rarity}\u2605: {singlePercentage} (Termasuk Jaminan: {avgPercentage})",itemWishFor:"Daftar Item Permohonan :",itemType:"Jenis Item",itemName:"Nama Item",beginnerInfo:"Tanpa Batas Waktu (Berakhir setelah 20 Permohonan)",limited:"Event Terbatas",permanent:"Permanen",alert:"\u203B Permohonan ini termasuk {wishName}. Hitungan jaminan Permohonan pada event ini hanya diakumulasi untuk kategori {wishName} dan terpisah dari hitungan jaminan Permohonan lainnya",beginner:["Permohonan <span> Pemula </span> tidak memiliki batas waktu dan ditujukan untuk pengembara baru yang baru saja mendarat di Teyvat. Menyediakan karakter dan senjata Non-promosi. <br /> pada Permohonan Pemula, permohonan \xD710 mendapat pengurangan biaya <span> 20%</span> lebih rendah menggunakan Acquaint Fate, dan \xD710 permohonan pertama termasuk jaminan {character}, dan \xD710 permohonan kedua termasuk min. character 4\u2605 <span>lainnya</span>! Permohonan Pemula akan berakhir setelah <span> 20 </span> percobaan. Setelah permohonan berakhir, halaman ini akan berhenti ditampilkan","\u203B Dalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.","\u3013Ketentuan\u3013","Persentase dasar untuk mendapatkan item 5\u2605: <span>0,600%</span>; Persentase dasar untuk mendapatkan item 4\u2605: <span>5,100%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan): <span>13,000%</span>;"],standard:['"{bannerName}" adalah Permohonan Standar tanpa batas waktu di mana Karakter dan Senjata non-eksklusif tersedia. <br/>Pada Permohonan ini, setiap 10 kali Permohonan, <span>dijamin</span> akan memberikan sebuah item 4\u2605 ke atas.',"\u203B Dalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.","\u3013Ketentuan\u3013","Persentase dasar untuk mendapatkan item 5\u2605: <span>0,600%</span>; persentase dasar untuk mendapatkan Karakter 5\u2605: <span>0,300%</span>, persentase dasar untuk mendapatkan Senjata 5\u2605: <span>0,300%</span>; persentase keseluruhan untuk mendapatkan item 5\u2605 (termasuk jaminan): <span>1,600%</span>. Dijamin mendapatkan item 5\u2605 setidaknya satu kali setiap <span>90</span> kali Permohonan. <br/> Persentase dasar untuk mendapatkan item 4\u2605: <span>5,100%</span>; persentase dasar untuk mendapatkan Karakter 4\u2605: <span>2,550%</span>, persentase dasar untuk mendapatkan Senjata 4\u2605: <span>2,550%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan): <span>13,000%</span>. Dijamin mendapatkan item 4\u2605 ke atas setidaknya satu kali setiap <span>10</span> kali Permohonan. Persentase perolehan item 4\u2605 dari jaminan adalah <span>99,400%</span>, persentase perolehan item 5\u2605 dari jaminan adalah <span>0,600%</span>"],events:['Event Permohonan - {bannerName} telah dimulai. Selama Event Permohonan, persentase perolehan Karakter 5\u2605 {featuredCharacter},Karakter 4\u2605 {rateupCharacters} <span> meningkat drastis! </span> <br /> <span> \u203BKarakter Eksklusif di atas tidak akan masuk ke Permohonan Standar "Wanderlust Invocation". </span>',"\u203BDalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.","\u3013Ketentuan\u3013","[Item 5\u2605]","Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan Karakter 5\u2605: <span>0,600%</span>; persentase keseluruhan (termasuk jaminan): <span>1,600%</span>. Dijamin mendapatkan Karakter 5\u2605 setidaknya satu kali setiap <span>90</span> kali Permohonan. Saat kamu mendapatkan Karakter 5\u2605 dari Permohonan, ada <span>50,000%</span> kemungkinan Karakter tersebut adalah Karakter UP event ini: {featuredCharacter}. Jika Karakter 5\u2605 pertama yang kamu dapatkan dari event ini bukan Karakter UP, Karakter 5\u2605 yang kamu peroleh selanjutnya dijamin adalah Karakter UP.","[Item 4\u2605]","Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan item 4\u2605: <span>5,100%</span>; persentase dasar untuk mendapatkan Karakter 4\u2605: <span>2,550%</span>, persentase dasar untuk mendapatkan Senjata 4\u2605: <span>2,550%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan): <span>13,000%</span>. Dijamin mendapatkan item 4\u2605 ke atas setidaknya satu kali setiap <span>10</span> kali Permohonan; persentase perolehan item 4\u2605 dari jaminan adalah <span>99,400%</span>, persentase perolehan item 5\u2605 dari jaminan adalah <span>0,600%</span>. Saat kamu mendapatkan item 4\u2605 dari Permohonan, ada <span>50,000%</span> kemungkinan item tersebut adalah Karakter UP event ini: {rateupCharacters} . Jika item 4\u2605 pertama yang kamu dapatkan dari event ini bukan Karakter UP, maka item 4\u2605 yang kamu peroleh selanjutnya dijamin adalah Karakter 4\u2605 UP dari periode ini. Saat kamu mendapatkan item 4\u2605 UP dari Permohonan, persentase perolehan setiap Karakter 4\u2605 UP di event permohonan ini adalah sama rata."],weapons:['Event Permohonan - {bannerName} dimulai. Selama event Permohonan ini, persentase perolehan Senjata 5\u2605 Eksklusif {featuredWeapon1} , persentase perolehan Senjata 5\u2605 {featuredWeapon2}, persentase perolehan Senjata 4\u2605 Eksklusif {rateupWeapons} meningkat drastis! <br /> <span> \u203B  Senjata Eksklusif di atas tidak akan masuk ke Permohonan Standar "Wanderlust Invocation".</span>',"\u203BDalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.","\u3013Ketentuan\u3013","[Item 5\u2605]",'Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan Senjata 5\u2605: <span>0,700%</span>; persentase keseluruhan (termasuk jaminan perolehan): <span>1,850%</span>. Dijamin mendapatkan Senjata 5\u2605 setidaknya satu kali setiap <span>80</span> kali Permohonan. <br/> Saat kamu mendapatkan Senjata 5\u2605 dari Permohonan, ada <span>75,000%</span> kemungkinan Senjata tersebut adalah Senjata UP event ini: {featuredWeapon1} dan {featuredWeapon2}. Jika Senjata 5\u2605 yang kamu dapatkan kali ini bukan Senjata UP, maka Senjata 5\u2605 yang kamu peroleh selanjutnya dijamin adalah Senjata UP. Jika kamu tidak memilih untuk mendapatkan Senjata tertentu dengan mengumpulkan Poin Takdir hingga maksimum, maka saat kamu mendapatkan item 5\u2605 UP, persentase perolehan semua Senjata 5\u2605 UP adalah sama rata. <br/> Dalam Event Permohonan - {bannerName}, Traveler dapat menggunakan sistem "Epitomized Path" untuk memilih Senjata 5\u2605 yang ingin didapatkan, pemilihan Senjata ini hanya berlaku selama Event Permohonan - {bannerName} berlangsung. <br/> Dalam Event Permohonan Event Permohonan - {bannerName}, setelah kamu menentukan senjata pilihanmu, jika kamu menerima Senjata 5\u2605 yang bukan pilihanmu, kamu akan mendapatkan 1 Poin Takdir. Setelah kamu mengumpulkan Poin Takdir hingga <span>maksimum</span>, maka Senjata 5\u2605 yang kamu dapatkan berikutnya pasti adalah senjata yang kamu pilih melalui "Epitomized Path". Jika kamu mendapatkan senjata pilihanmu, maka semua Poin Takdir yang kamu miliki akan kembali menjadi <span>0</span> dan dihitung ulang, terlepas apakah Poin Takdir-mu sudah maksimum atau belum. <br/>Jika kamu tidak memilih senjata dengan "Epitomized Path", maka Poin Takdir <span>tidak akan</span> terkumpul. Kamu bisa mengubah atau membatalkan pilihan senjatamu. Mengubah atau membatalkan pilihan senjatamu akan membuat semua Poin Takdir yang kamu miliki kembali menjadi <span>0</span> dan dihitung ulang. <br/> \u203B Poin Takdir di Event Permohonan ini hanya berlaku selama Event Permohonan - {bannerName} berlangsung. Setelah Event Permohonan berakhir, semua Poin Takdir yang kamu miliki akan kembali menjadi <span>0</span> dan dihitung ulang.',"[Item 4\u2605]","Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan item 4\u2605: <span>6,000%</span>; persentase dasar untuk mendapatkan Karakter 4\u2605: 3,000%, persentase dasar untuk mendapatkan Senjata 4\u2605: <span>3,000%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan perolehan): <span>14,500%</span>. Dijamin mendapatkan item 4\u2605 ke atas setidaknya satu kali setiap <span>10</span> kali Permohonan. Persentase perolehan item 4\u2605 dari jaminan adalah <span>99,300%</span>, persentase perolehan item 5\u2605 dari jaminan adalah <span>0,700%</span>. Saat kamu mendapatkan item 4\u2605 dari Permohonan, ada <span>75,000%</span> kemungkinan Senjata tersebut adalah Senjata UP event ini: {rateupWeapons}. Jika item 4\u2605 yang kamu dapatkan kali ini bukan Senjata 4\u2605 UP, maka item 4\u2605 yang kamu peroleh selanjutnya dijamin adalah Senjata 4\u2605 UP pada periode kali ini. Saat kamu mendapatkan item 4\u2605 UP dari Permohonan, persentase perolehan setiap Senjata 4\u2605 UP di event permohonan ini adalah sama rata."],convertion:{fiveStar:"Senjata 5\u2605 yang diperoleh dari permohonan ini juga akan memberikan {starglitter} \xD710;",fourStar:"Senjata 4\u2605 yang diperoleh dari permohonan ini juga akan memberikan {starglitter} \xD72;",threeStar:"Senjata 3\u2605 yang diperoleh dari permohonan ini juga akan memberikan {stardust} \xD715."},duplicate:{heading:"\u3013Karakter Duplikat\u3013",text:"Saat kamu mendapat Karakter {rarity}\u2605 yang sudah dimiliki untuk ke 2-7 kalinya, tak peduli diperoleh dari mana (seperti Permohonan, ditukar di Toko, atau diberikan oleh game), Karakter duplikat tersebut akan diubah menjadi {stellaFortuna} Karakter tersebut \xD71 dan {starglitter} {constBonus}; untuk ke-8 kali dan seterusnya, Karakter duplikat tersebut akan diubah menjadi {starglitter} {fullConstBonus}."}},G={title:"Riwayat Permohonan",text:"Riwayat",resetButton:"Reset",resetPromptTitle:"Reset Riwayat ?",resetPrompt:'Tindakan ini akan menghapus semua Karakter dan Senjata dimiliki yang berasal dari banner "{bannerName}". <br /> Yakin untuk me-Reset ?',resetSuccess:"Berhasil me-Reset",keepPity:"Jangan reset Piti dan status jaminan",selectWish:"Jenis Permohonan ",disclaimer:"Data kamu tidak akan pernah disimpan secara online, semua data akan disimpan ke IndexedDB yang artinya data akan disimpan pada browser, data ini tidak akan dihapus selama kamu tidak menghapusnya secara manual melalui tombol reset atau selama tidak menghapus data browser",currentPity:"Pity saat ini :",totalPull:"Total Permohonan :",totalSpend:"Total Pengeluaran :",filterTxt:"Filter",filter:"Bintang {rarity}",filterAll:"Semua",pity:"Pity",timeReceived:"Waktu Perolehan",waiting:"Tunggu",noData:"Tidak ada data .",untracked:"Tidak Terlacak",item:"Item",win:"Menang 50/50",lose:"Kalah 50/50",guaranteed:"Item Jaminan",selected:"Item Pilihan",olderLayout:"Layout Lama",switchv2:"Ganti ke V2"},W={text:"Toko",paimonBargains:"Penukaran Paimon",fateNeeded:"Tambahan {rollQty} {currency} diperlukan.",primoNeeded:"Beli dengan menggunakan {primoPrice} Primogem ?",purchaseUpto:"Batas Pembelian 1",purchaseConfirm:"Konfirmasi Pembelian",exchangeHeading:"Redeem Item",purchaseHeading:"Beli Item",purchaseButton:"Beli",pay:"Bayar",product:"Produk",consume:"Mengkonsumsi",selectPayment:"Pilih Jenis Pembayaran",unrealWallet:"UnReal Wallet",convertPrimo:"Otomatis Konversi ke Primogem?",proceedPayment:"Proses Pembayaran",qty:"Qty",insufficient:"Saldo Tidak Cukup",crystalTopup:"Top Up Crystal",initialBonus:"Bonus Topup Perdana",bonus:"Bonus",buyGenesisHeading:"Beli Genesis Crystal",recomendedHeading:"Item Rekomendasi",paimonHeading:"Penukaran Paimon",welkinNote:"Bisa dibeli beberapa kali",limitedOffer:"Penawaran Terbatas",noLimitTime:"Item tersedia tanpa batas waktu",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{blessing:"Blessing of the Welkin Moon",newOutfit:"Kostum Karakter Baru",dayRemaining:"Tersisa {days} hari",alreadyClaimed:"Telah diperoleh hari ini",instantlyGet:"Beli dan Peroleh",dailyGift:"Bonus Harian",obtainTotal:"*Berlaku 30 hari memberikan total {totalGenesis} Genesis Crystal dan {totalPrimo} Primogems",claimingBlessing:"Tekan untuk mengklaim hadiah harian Blessing of the Welkin Moon",issuedPurchase:"Pendapatan saat Pembelian",collect:"Dapatkan Bonus Harian Selama 30 Hari"},exchange:{starglitter:"Penukaran Starglitter",stardust:"Penukaran Stardust",primogem:"Penukaran Primogem"},item:{genesis:"Genesis Crystal",primogem:"Primogem",intertwined:"Intertwined Fate",acquaint:"Acquaint Fate",starglitter:"Masterless Starglitter",stardust:"Masterless Stardust"},description:{intertwined:"Benih takdir yang menghubungkan mimpi.Batu menyala yang dapat menghubungkan takdir dan mimpi satu sama lain, seperti kecerahan yang menghubungkan bintang-bintang dan membentuk hati.",acquaint:"Benih yang menyinari malam, Tidak peduli seberapa jauh, yang ditakdirkan akan bertemu di bawah bintang, dipandu oleh sinar batunya."}},J={text:"Inventaris",unsetOutfit:"Lepaskan Kostum",setOutfit:"Atur Kostum pada Karakter",refinement:"Refinement {count}",constellation:"Konstelasi {count}",extra:"{count} Extra",firstSummon:"Pertama kali dimiliki pada : {date}",notOwned:"Tidak Dimiliki",sort:"Urutkan",rarity:"Rarity",name:"Nama",quantity:"Quantity",element:"Element",release:"Tgl Rilis",type:"Jenis",owned:"Dimiliki",showAllOption:"Tampilkan Semua {item}"},L={no:"Tidak",yes:"Ya",text:"Menu",feedback:"Feedback",options:"Opsi",updates:"Riwayat Pembaruan",customBanner:"Banner Kustom",backupRestore:"Backup & Restore",language:"Bahasa",currency:"Mata Uang",fates:"Saldo",unlimited:"Unlimited",manual:"Manual Input",mute:"Matikan Audio dan Musik",switchBanner:"Ganti Banner",showAllitems:"Tampilkan Semua Item pada Inventaris",autoskip:"Auto Skip Splash Art",animatedbg:"Animasi Background",multiRoll:"Jumlah permohonan dalam sekali klik",factoryReset:"Bersihkan Data dan Kembalikan Seperti Semula",resetTitle:"Factory Reset",rotate:"Putar untuk pengalaman yang lebih baik",keepSetting:"Jangan ubah pengaturan? <small> Pity, Saldo, dan pengaturan tidak akan direset</small>",clearCache:"Hapus Cache ( {size} )? <small> Asset dalam cache akan dimuat ulang setelah tindakan ini!</small>",resetButton:"Reset Sekarang",resetPrompt:"Apakah kamu yakin untuk menghapus <strong> Semua Data </strong> dan mengembalikan aplikasi seperti semula?",resetSuccess:"Berhasil me-Reset",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Dapatkan Access Key baru di sini!",noKey:"Belum memiliki Access Key?",verifyFail:"Gagal terhubung untuk memverifikasi Access Key!",invalidKey:"Access Key tidak valid",keyExpired1:"Access Key Kadaluarsa!",keyExpired2:'Access Key "{key}" sudah kadaluarsa sejak {date}!',adFreeUser:"Kamu sudah memiliki akses Pro!",inputKeyPlaceholder:"Masukkan Access Key",inputKeyTxt:"Masukkan Access Key untuk mendapatkan Akses Pro!",checkingKey:"Sedang memverifikasi Access Key Tersimpan",authorNotes:"* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."},H={title:a,character:n,weapon:e,vision:t,anemo:i,cryo:r,dendro:s,electro:m,hydro:o,geo:u,pyro:k,bow:d,catalyst:l,claymore:p,sword:h,polearm:g,extra:c,obtained:b,waiting:y,connectionFailed:P,confirmButton:S,cancelButton:j,disclaimer:f,fanmade:K,pressToContinue:B,installInstruction:v,share:w,screenshot:T,capturing:A,rewardFirstShare:D,version:I,donate:E,banner:R,editor:M,customBanner:U,backupRestore:N,wish:x,outfit:C,details:F,history:G,shop:W,inventory:J,menu:L};export{i as anemo,N as backupRestore,R as banner,d as bow,j as cancelButton,A as capturing,l as catalyst,n as character,p as claymore,S as confirmButton,P as connectionFailed,r as cryo,U as customBanner,H as default,s as dendro,F as details,f as disclaimer,E as donate,M as editor,m as electro,c as extra,K as fanmade,u as geo,G as history,o as hydro,v as installInstruction,J as inventory,L as menu,b as obtained,C as outfit,g as polearm,B as pressToContinue,k as pyro,D as rewardFirstShare,T as screenshot,w as share,W as shop,h as sword,a as title,I as version,t as vision,y as waiting,e as weapon,x as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-0189b6d0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-0189b6d0.js
deleted file mode 100644
index 3a75a68e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-0189b6d0.js
+++ /dev/null
@@ -1 +0,0 @@
-import{A as b,B as y,C as m,s as q,D as A}from"./index-c0d078cd.js";const o=[];function w(n,i){return{subscribe:z(n,i).subscribe}}function z(n,i=b){let u;const t=new Set;function f(e){if(q(n,e)&&(n=e,u)){const r=!o.length;for(const s of t)s[1](),o.push(s,n);if(r){for(let s=0;s<o.length;s+=2)o[s][0](o[s+1]);o.length=0}}}function l(e){f(e(n))}function a(e,r=b){const s=[e,r];return t.add(s),t.size===1&&(u=i(f)||b),e(n),()=>{t.delete(s),t.size===0&&(u(),u=null)}}return{set:f,update:l,subscribe:a}}function B(n,i,u){const t=!Array.isArray(n),f=t?[n]:n,l=i.length<2;return w(u,a=>{let e=!1;const r=[];let s=0,d=b;const g=()=>{if(s)return;d();const c=i(t?r[0]:r,a);l?a(c):d=A(c)?c:b},_=f.map((c,p)=>y(c,h=>{r[p]=h,s&=~(1<<p),e&&g()},()=>{s|=1<<p}));return e=!0,g(),function(){m(_),d()}})}export{B as d,z as w};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-123e2351.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-123e2351.js
deleted file mode 100644
index c902ce19..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-123e2351.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import{W as C,D as x,X as O}from"./index-c0d078cd.js";const o={getData(){const t=localStorage.getItem("WishSimulator.App");return t?JSON.parse(t):{data:{}}},get(t){const{data:e}=this.getData();return e[t]||{}},set(t,e){const{data:n}=this.getData();n[t]=e,localStorage.setItem("WishSimulator.App",JSON.stringify({data:n}))},initEvent(){const t=localStorage.setItem;localStorage.setItem=function(e){if(e==="WishSimulator.App"){const n=new Event("storageUpdate");document.dispatchEvent(n)}t.apply(this,arguments)}}},M={get(){return o.get("members")},set(t){o.set("members",t)}},j={get(t){return o.get("pity")[t]||0},set(t,e){const n=o.get("pity");n[t]=e,o.set("pity",n)}},R={all(){return o.get("balance")},get(t){return o.get("balance")[t]||0},set(t,e){const n=o.get("balance");n[t]=e,o.set("balance",n)}},P={get(t){return o.get("rollCounter")[t]||0},set(t,e){if(!t)return;const n=o.get("rollCounter");n[t]=e,o.set("rollCounter",n)},put(t){if(!t)return;const e=o.get("rollCounter"),n=e[t]||0;e[t]=n+1,o.set("rollCounter",e)}},W={get(t){return o.get("guaranteedStatus")[t]||!1},set(t,e){const n=o.get("guaranteedStatus");n[t]=e,o.set("guaranteedStatus",n)}},B={get(t){const e=o.get("config");return e[t]!==null?e[t]:null},set(t,e){const n=o.get("config");n[t]=e,o.set("config",n)}},E={getAll(){return o.get("ownedItem")},get(t){const n=this.getAll()[t];if(!n)return{qty:0,itemID:t};const{manual:s,wish:a}=n;return{itemID:t,qty:s+a}},put({itemID:t,source:e="wish",qty:n=1}){const s=o.get("ownedItem"),{manual:a=0,wish:r=0}=s[t]||{};return s[t]={manual:e==="wish"?a:n+a,wish:e==="wish"?n+r:r},o.set("ownedItem",s),s[t]}},V={getAll(){const t=o.get("fatepoint");return Array.isArray(t)?t:[]},restore(t){const e=this.getAll();e.push(t),o.set("fatepoint",e)},init({version:t,phase:e}={}){this._version=t,this._phase=e;const n=o.get("fatepoint");return this._db=Array.isArray(n)?n:[],this._recordIndex=this._db.findIndex(s=>s.phase===e&&s.version===t),this},set(t,e){const{_recordIndex:n,_version:s,_phase:a,_db:r}=this,u={version:s,phase:a,point:t,selected:e};n<0?r.push(u):r[n]=u,o.set("fatepoint",r)},getInfo(){const{_recordIndex:t,_db:e}=this;if(t<0)return{selected:null,point:null};const{selected:n,point:s}=e[t];return{selected:n,point:s}},remove(){const{_recordIndex:t,_db:e}=this,n=e.filter((s,a)=>a!==t);o.set("fatepoint",n)}},q={getData(){const t=o.get("welkin");if(!t)return{remaining:0,diff:0};const e=new Date().getTime()-3*3600*1e3,n=new Date(e).toDateString(),s=Math.abs(new Date(n)-new Date(t.latestCheckIn));return t.diff=Math.ceil(s/(1e3*60*60*24)),t},checkin(t="checkin"){let{remaining:e,latestCheckIn:n}=this.getData();const s=new Date().getTime()-3*3600*1e3,a=new Date(s).toDateString();if(!n&&t!=="checkin"){const i={remaining:29,latestCheckIn:a};return o.set("welkin",i),i}if(t!=="checkin"){const g={remaining:(e<1?29:30)+e,latestCheckIn:a};return o.set("welkin",g),g}const r=Math.abs(new Date(a)-new Date(n)),u=Math.ceil(r/(1e3*60*60*24));e=e-u,e=e<0?0:e,n=a;const c={remaining:e,latestCheckIn:n};return o.set("welkin",c),c}},J={getAll(){const t=o.get("ownedOutfits");return Array.isArray(t)?t:[]},get(t){return this.getAll().find(({name:n})=>n===t)},getByChar(t){return this.getAll().filter(({characterName:n})=>n===t)},set({outfitName:t,isSet:e=!0,characterName:n=null}={}){const s=this.getAll().map(a=>(a.characterName!==n||(a.isSet=!1),a));if(this.get(t)){const a=s.findIndex(({name:r})=>r===t);s[a].isSet=e}else s.push({name:t,characterName:n,isSet:e});o.set("ownedOutfits",s)}},L={get(t){const e=o.get("probabilityRates");return e[t]&&e[t]!==null&&e[t]!==void 0?e[t]:{}},set(t,e){const n=o.get("probabilityRates");n[t]=e,o.set("probabilityRates",n)},reset(t){const e=o.get("probabilityRates");delete e[t],o.set("probabilityRates",e)}};function w(t){const e=t-1;return e*e*e+1}/*! *****************************************************************************
-Copyright (c) Microsoft Corporation.
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-***************************************************************************** */function v(t,e){var n={};for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&e.indexOf(s)<0&&(n[s]=t[s]);if(t!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,s=Object.getOwnPropertySymbols(t);a<s.length;a++)e.indexOf(s[a])<0&&Object.prototype.propertyIsEnumerable.call(t,s[a])&&(n[s[a]]=t[s[a]]);return n}function T(t,{delay:e=0,duration:n=400,easing:s=O}={}){const a=+getComputedStyle(t).opacity;return{delay:e,duration:n,easing:s,css:r=>`opacity: ${r*a}`}}function U(t,{delay:e=0,duration:n=400,easing:s=w,x:a=0,y:r=0,opacity:u=0}={}){const c=getComputedStyle(t),i=+c.opacity,g=c.transform==="none"?"":c.transform,d=i*(1-u);return{delay:e,duration:n,easing:s,css:(l,f)=>`
-			transform: ${g} translate(${(1-l)*a}px, ${(1-l)*r}px);
-			opacity: ${i-d*f}`}}function X(t,{delay:e=0,duration:n=400,easing:s=w,start:a=0,opacity:r=0}={}){const u=getComputedStyle(t),c=+u.opacity,i=u.transform==="none"?"":u.transform,g=1-a,d=c*(1-r);return{delay:e,duration:n,easing:s,css:(l,f)=>`
-			transform: ${i} scale(${1-g*f});
-			opacity: ${c-d*f}
-		`}}function z(t){var{fallback:e}=t,n=v(t,["fallback"]);const s=new Map,a=new Map;function r(c,i,g){const{delay:d=0,duration:l=p=>Math.sqrt(p)*30,easing:f=w}=C(C({},n),g),h=i.getBoundingClientRect(),y=c.left-h.left,b=c.top-h.top,_=c.width/h.width,k=c.height/h.height,A=Math.sqrt(y*y+b*b),m=getComputedStyle(i),D=m.transform==="none"?"":m.transform,I=+m.opacity;return{delay:d,duration:x(l)?l(A):l,easing:f,css:(p,S)=>`
-				opacity: ${p*I};
-				transform-origin: top left;
-				transform: ${D} translate(${S*y}px,${S*b}px) scale(${p+(1-p)*_}, ${p+(1-p)*k});
-			`}}function u(c,i,g){return(d,l)=>(c.set(l.key,{rect:d.getBoundingClientRect()}),()=>{if(i.has(l.key)){const{rect:f}=i.get(l.key);return i.delete(l.key),r(f,d,l)}return c.delete(l.key),e&&e(d,l,g)})}return[u(a,s,!1),u(s,a,!0)]}export{R as a,B as b,M as c,L as d,J as e,T as f,W as g,U as h,q as i,V as j,z as k,j as l,w as m,X as n,E as o,P as r,o as s};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-47e956e7.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-47e956e7.js
deleted file mode 100644
index 008697c3..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-47e956e7.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import{S as ge,i as _e,s as ve,R as un,k as v,a as T,l as A,m as k,h as f,c as M,n as g,N as oe,b as G,G as p,T as dn,U as fn,V as pn,f as S,t as W,E as le,F as he,$ as Lt,A as te,B as mn,q as U,r as Z,p as ne,H as se,ag as we,u as V,C as Ue,Y as Ee,J as ie,K as fe,a6 as Ze,v as Q,w as K,x as q,g as pe,d as me,y as x,P as Ge,o as Ye,e as be,a1 as Ct,a7 as hn,a8 as bn,I as gn,ae as _n,af as vn,ah as Pt,aj as rt,O as Xt,D as Ht,a5 as ot,L as Se,a0 as Qt}from"./index-c0d078cd.js";import{b as Ie,h as Te,a as Ke,f as de,s as nt,o as An,r as kn,j as it,e as ct}from"./index-123e2351.js";import{D as Ve,f as wn,Y as Ae}from"./runtime.esm-4bf604c8.js";import{O as Kt,I as Pe,h as Xe}from"./WishResult-901333c5.js";import{I as qt,p as Nn,g as In,f as En,k as Dn,j as yn,q as Rn,F as qe,y as xe,z as xt,a as lt,L as en,M as Bn,n as et,v as Gn,l as Sn,u as Tn,N as ze,B as ut,e as Mn,s as Un,i as Zn,m as Yn}from"./app-stores-358281e6.js";import{p as re,a as jn}from"./audio-460a91c6.js";import{b as Je,f as Jn,d as Wn,i as dt,r as On,a as He,e as tn,g as nn,h as zn,j as Fn,u as Vn,k as ln,v as sn,F as $n,l as Ln,m as Cn}from"./sync-9a12991b.js";import{u as Qe,b as ft,M as st,c as Pn,p as Me,d as Xn}from"./_page-87ee6ee5.js";import{C as $e}from"./CheckBox-828e98c0.js";import{c as an}from"./api-cookie-d587b0da.js";import{v as Hn,r as Qn}from"./i18n-ec7c8da1.js";import{a as Fe}from"./accessKey-2a3cada9.js";import{B as We}from"./ButtonModal-7ee3a4a1.js";import{B as rn,o as Kn,H as qn}from"./custom-banner-3b9921d3.js";import{t as xn}from"./timeago-17bb7280.js";import{B as el}from"./lazyload-05dfa468.js";const tl=[{date:"01-Sep-2021",description:["<strong> Raiden Shogun and Kujou Sara </strong> Banner was here !","<strong> Engulfing Lightning </strong> Weapon Banner has been added"]},{date:"10-Sep-2021",description:["Now you can <strong>wishing on previous banner</strong> by clicking <strong>(x)</strong> button on the top right of the page","Now you can <strong>create screenshot and link to share</strong> when wishing"]},{date:"21-Sep-2021",description:["<strong> Sangonomia Kokomi </strong> is ready to pull !","<strong> Everlasting Moonglow </strong> Weapon Banner has been added"]},{date:"30-Sep-2021",description:["Add more previous banner, <strong> Eula, Zhongli, Tartaglia/Childe, Albedo, Ganyu, Xiao, Hu Tao, Venti </strong> is ready to pull ! <br/> Click <strong>(x)</strong> button on the top right of the page to change the banner"]},{date:"13-Oct-2021",description:["<strong> Tartaglia </strong> is ready to pull !","<strong> Polar Star </strong> Weapon Banner has been added"]},{date:"2-Nov-2021",description:["<strong> Hu Tao </strong> Character Banner has been added !","<strong> Thoma </strong> is ready to pull !","<strong> Staff of Homma </strong> & <strong>Elegy for The End</strong> Weapon Banner has been added"]},{date:"24-Nov-2021",description:["<strong> Albedo </strong> Banner was here !","<strong> Eula </strong> Banner also here !","<strong> Freedom Sworn & Song of Broken Pines </strong> Weapon Banner has been added"]},{date:"08-Des-2021",description:["<strong>Fixing Bugs</strong> of History.",'if you find any error, follow this steps to reset browser cache specialy only for WIsh Simulator Site . Open Inpect ELement ( CTRL + Shift i ) -> Application -> Storage -> Click on "Clear Site Data" Button',"Ignore the steps above if this is the first time you visit this site or if you already do reset"]},{date:"14-Des-2021",description:["<strong> Arrataki Itto </strong> character Banner is ready to pull","<strong> Redhorn Stonethresher </strong> Weapon Banner has been added !"]},{date:"29-Des-2021",description:["Implement Epitomized Path System to Weapon Banner for patch 2.0 and above"]},{date:"05-Jan-2022",description:["Now you can pull <strong> Shenhe </strong> and <strong>Yunjin</strong> the Best Waifu!","<strong>Calamity Queller</strong> Weapon Banner was added"]},{date:"25-Jan-2022",description:["<strong>Gong Xi Fa Cai</strong>. Wish you luck on Lantern Rite event","<strong> Zhongli and Ganyu Rerun Banner </strong> Already out here !","<strong> Vortex and Amos </strong> Weapon Rerun Banner is ready to pull too !"]},{date:"11-Feb-2022",description:["Now you can pull without worry about running out of fate, just activate the <b>Unlimited Fates Option</b> in Menu by clicking the <b>(?)</b> button on top of the page"]},{date:"16-Feb-2022",description:["Event Banner Updated, Now you can pull <strong> Yae Miko </strong> here !","Yae Miko signature Weapon, <strong>Kagura's Verity</strong> is ready to pull too !","Inventory Updated, Now You can show all Characters and Weapons both you already got or not"]},{date:"08-Mar-2022",description:["<strong> Raiden Shogun Rerun </strong> Banner was here !","<strong> Sangonomia Kokomi </strong> is ready to pull too!","Weapon Banner Updated, <b> Engulfing Lightning </b> and <b>Everlasting Moonglow</b> already added"]},{date:"23-Mar-2022",featured:!0,description:["<strong>Due to high number of visitors</strong>, Our monthly bandwidth also increased. We need to upgrade the hosting plan to keep this site alive. So <strong>We'll show some ads </strong> on this site. <br/> We're sorry to you, actually we don't want to ruin your wishing experience. If you feel annoyed with ads, feel free to use Ad blocker, we will not forbit you",'Or for other solution, you can <strong> <a href="https://ko-fi.com/post/AdFree-Wish-Simulator-Enjoy-Simulator-Without-Ads-G2G2DQ57O" target="_blank"> join membership here</a></strong> to get opportunity to use <strong>Simulator without ads</strong>!']},{date:"28-Mar-2022",description:["<strong> Kamisato Ayato </strong> Banner was here !","<strong> Venti </strong> is ready to pull too!","Weapon Banner Updated, <b> Haran Geppaku Futsu </b> and <b>Elegy for the End</b> already added"]},{date:"17-Apr-2022",description:["<strong> Kamisato Ayaka Rerun </strong> Banner already out !","Weapon Banner Updated, <b> Mistsplitter Reforged </b> and <b>The Unforged</b> was here too!"]},{date:"20-Apr-2022",description:["We recently had to <strong>migrate our server </strong> for other reasons, so the old wishing histories isn't being tracked on the new server, We apologize for the inconvenience. We hope it doesn't happen again in the future, so you can enjoy the simulator peacefully"]},{date:"29-May-2022",description:["<strong> Yelan </strong> Banner already out !","<strong> Xiao 3rd Rerun </strong> Banner was here !","Weapon Banner Updated, <b> Aqua Simulacra </b> and <b>Primordial Jade Winged Spear</b> are ready to pull !"]},{date:"16-Jun-2022",description:["<strong> Arataki Itto Rerun </strong> Banner was here !","Weapon Banner Updated, <b> Redhorn Stonesthresher </b> and <b>Memory of Dust</b> are ready to pull too!"]},{date:"8-Jul-2022",description:["<strong> New!!! </strong> Now you can purchase <strong> Character's Outfit </strong> in the shop. You also can set the costume splash art as result of your wish if you want :D","<strong> New!!! </strong> Now Blessing of the Welkin Moon is available to purchase"]},{date:"12-Jul-2022",description:["<strong>Kazuha 2nd Rerun </strong> and <strong>Klee 3rd Rerun </strong> Banner was here !","Weapon Banner Updated, <b> Freedom Sworn </b> and <b>Lost Prayers to the Sacred Winds</b> are ready to pull too!","New Outfit released! <strong>Red Dead of Night</strong> for Diluc and <strong>Ein Immernachtstraum</strong> for Fischl, purchasable on shop."]},{date:"21-Jul-2022",description:['<strong>Translation Features</strong> is live now, But  only <strong>EN</strong>, <b>RU</b> <strong>CN-Simplified</strong> and <strong>ID</strong> are available for now, if You want to contribute to add more translation, please go to <u><a href="https://github.com/AguzzTN54/Genshin-Impact-Wish-Simulator" target="_blank">Github Repository </a></u>']},{date:"28-Jul-2022",description:["<strong> Yoimiya 2nd Rerun </strong> Banner already out !","Weapon Banner Updated, <b> Thundering Pulse </b> and <b>Summit Shaper</b> are ready to pull too !"]},{date:"22-Agu-2022",description:["<strong> WELCOME to SUMERU !!</strong>",'<strong> Tighnari </strong> Banner already out, with new 4\u2605 Character "<b>Collei</b>"',"Weapon Banner Updated, <b> Hunter's Path </b> and <b>Vortex Vanquisher</b> are ready to pull too !"]},{date:"08-Sep-2022",description:["<strong> Kokomi 3rd Rerun </strong> and <strong> Ganyu 3rd Rerun </strong> Banner already out !","Weapon Banner Updated, <b> Amos Bow </b> and <b>Everlasting Moonglow</b> are ready to pull too !"]},{date:"26-Sep-2022",description:['<strong> Cyno </strong> and <strong> Venti 4th Rerun </strong> Banners already out, with new 4\u2605 Character "<b>Candace</b>"',"Weapon Banner Updated, <b> Staff of the Scarlet Sands </b> and <b>Elegy for The End</b> are ready to pull too !","Now you can obtain Tighnari when you lose 50:50 or when you pull Standard Banner starts from version 3.1"]},{date:"11-Oct-2022",description:["<strong> Nilou </strong> and <strong> Albedo 3rd Rerun </strong> Banners already out","Weapon Banner Updated, <b> Key of Khaj-Nisut </b> and <b>Primordial Jade Cutter</b> are ready to pull too !","New 4\u2605 Sumeru Weapon Series: <strong>Xiphos' Moonlight</strong> and <strong>Wandering Evenstar</strong>"]},{date:"31-Oct-2022",description:["New Character <strong> Nahida </strong> and <strong> Yoimiya 3rd Rerun </strong> Banners already out","Weapon Banner Updated, <b> A Thousand Floating Dreams </b> and <b>Thundering Pulse</b> are ready to pull too !"]},{date:"15-Nov-2022",description:["<strong> Yae Miko 2nd Rerun</strong> and <strong> Tartaglia 3rd Rerun </strong> Banners are ready","New Character <strong> Layla </strong>","Weapon Banner Updated, <b> Kagura's Verity </b> and <b>Polar Star</b> are ready to pull too !"]},{date:"18-Nov-2022",featured:!0,description:[`I'm happy to announce that <b> WishSimulator.App already listed on Google Play Store</b>!!! You can get it <a href="https://play.google.com/store/apps/details?id=twa.wishsimulator.app" target="_blank"><b>here</b> </a> <br/> But actually I still prefer to use and install directly from this web. It's literally use the same technology. I'm not sure You'll feel the difference`]},{date:"5-Dec-2022",description:["Add <strong> Itto 3rd Rerun </strong> Banners","Add New Character: <strong> Wanderer ( 5\u2605 ) </strong>","Add New Character: <strong> Faruzan ( 4\u2605 )</strong>","Update Weapon Banner: <b> Tulaytullah's Remembrance </b> and <b>Redhorn Stonethresher</b>"]},{date:"23-Dec-2022",description:["<strong> \u{1202D}*\u{1202E} \u0E56\u06E3\u06DCH\u{1D41A}\u{1D491}\u{1D491}\u0263 \u1262\u0113\u2D13 \u0263\u0113\u{1D41A}\u1E5B 2023 \u{1202E}*\u{1202D} </strong>","Add <strong> Raiden Shogun</strong> and <strong> Ayato</strong> rerun banners","Update Weapon Banner: <b> Engulfing Lightning </b> and <b>Haran Geppaku Futsu</b>"]},{date:"17-Jan-2023",description:["Add <strong> Xiao 3rd Rerun </strong> Banner","Add New Character: <strong> Alhaitham ( 5\u2605 )</strong>","Add New Character: <strong> Yaoyao ( 4\u2605 )</strong>","Update Weapon Banner: <b> Light of Foliar Incision </b> and <b>Primordial Jade Winged-Spear</b>","Add New Character Outfits: <b>Springbloom Missive</b> for Ayaka and <b>A Sobriquet Under Shade </b> for Lisa."]},{date:"1-Feb-2023",description:["Add <strong> Hu Tao 2nd rerun </strong> & <strong> Yelan 1st rerun</strong>","Add Weapon Banner: <b> Staff of Homa </b> and <b>Aqua Simulacra</b>"]},{date:"27-Feb-2023",description:["Add <b>Cyno 1st Rerun</b> Banner","Add New Character: <b>Dehya ( 5\u2605 )</b>","Add New Weapon: <b> Beacon of The Reed Sea ( 5\u2605 )</b>"]},{date:"16-Mar-2023",description:["Add <b>Shenhe 1st Rerun</b> Banner","Add <b>Ayaka 2nd Rerun</b> Banner","Add New Character: <b>Mika ( 4\u2605 )</b>","Update Weapon Banner: <b> Mistsplitter Reforged </b> and <b>Qalamity Queller</b>"]},{date:"11-Apr-2023",description:["Add <b>Nahida 1st Rerun</b> Banner","Add <b>Nilou 1st Rerun</b> Banner","Update Weapon Banner: <b> Key of Khaj-Nisut </b> and <b>A Thousand Floating Dreams</b>"]},{date:"1-May-2023",description:["Add New Character: <b>Baizhu ( 5\u2605 )</b>","Add New Weapon: <b> Jadefall's Splendor ( 5\u2605 )</b>","Add <b>Ganyu 3rd Rerun</b> Banner"]},{date:"22-May-2023",description:["Add New Character: <b>Kirara ( 4\u2605 )</b>","Add <b>Yoimiya 3rd Rerun</b> Banner","Add <b>Yae Miko 2nd Rerun</b> Banner"]},{date:"23-May-2023",featured:!0,description:["<b>LIVE NOW!!!</b> <br/>Gacha Simulator for Honkai: Star Rail \u{1F449} <b><a href='https://hsr.wishsimulator.app' target='_blank'>HSR.WishSimulator.App </a></b> <br/> <img src='https://hsr.wishsimulator.app/meta-picture.jpg' style='width:90%; margin: .5rem 0' alt='HSR Wish Simulator' />"]},{date:"09-Jun-2023",description:["Add <b>Alhaitam 1st Rerun</b> Banner","Add <b>Kazuha 3rd Rerun</b> Banner","Update Weapon Banner: <b> Light in Foliar </b> and <b>Freedom-Sworn</b>"]},{date:"04-Jul-2023",description:["Add <b>Eula 2nd Rerun</b> Banner","Add <b>Klee 3rd Rerun</b> Banner","Update Weapon Banner: <b> Song of Broken Pines </b> and <b>Lost Prayers to the Sacred Winds</b>","New Character Outfits: <b>Blossoming Starlight</b> for Klee and <b>Sailwind Shadow </b> for Kaeya."]},{date:"20-Jul-2023",description:["Add <b>Sangonomiya Kokomi 3rd Rerun</b> Banner","Add <b>Wanderer 1st Rerun</b> Banner","Update Weapon Banner: <b>Tulaytullah's Remembrance </b> and <b>Everlasting Moonglow</b>"]},{date:"14-Aug-2023",description:["<b>WELCOME TO FONTAINE!</b>","New Character: <b>Lyney ( 5\u2605 )</b> & <b>Lynette ( 4\u2605 )</b>","New Weapon: <b>The First Great Magic  ( 5\u2605 ) </b>","Add Yelan's 2nd Rerun","<b>New Feature:</b> Now you can <b>Customize the Probabilities</b> and Control how <b>many roll in one multi</b>",'<b>New Feature:</b> Hotkeys/Shortcut have been added, Try to press <b>[ENTER]</b> to "<u>Wish</u>" or "<u>Confirm</u>" and <b>[ESC]</b> to "<u>Skip</u>", "<u>Cancel</u>" or "<u>Close</u>". More Hotkeys will be added in the future']},{date:"31-Aug-2023",description:["New Character: <b>Freminet ( 4\u2605 )</b>","Add <b>Zhongli</b> & <b>Tartaglia</b> <b>4rd Rerun</b> Banner"]},{date:"25-Sep-2023",description:["New Character: <b>Neuvillette ( 5\u2605 )</b>","Add <b>Hu Tao 4rd Rerun</b> Banner","Top-Up reset Bonus"]},{date:"12-Oct-2023",description:["New Character: <b>Wriothesley ( 5\u2605 )</b>","Add <b>Venti 5th Rerun</b> Banner"]},{date:"06-Nov-2023",description:["New Character: <b>Furina ( 5\u2605 )</b>","New Character: <b>Charlotte ( 4\u2605 )</b>","New Weapon: <b>Splendor of Tranquil Waters (Sword 5\u2605)</b>","Add <b>Baizhu 1st Rerun</b> Banner"]},{date:"23-Nov-2023",description:["Add <b>Cyno 3th Rerun</b> Banner","Add <b>Ayato 3th Rerun</b> Banner","Update Weapon Banner: <b> Haran Geppaku Futsu </b> and <b>Staff of The Scarlet Sands</b>"]},{featured:!0,date:"02-Dec-2023",description:["<b>New Features:</b>","- Custom Banner Editor, Share your Own Banner!","- Backup & Restore, Cloud Sync will be available soon"]},{date:"18-Dec-2023",description:["New Character: <b>Navia ( 5\u2605 )</b>","New Weapon: <b>Verdict (Claymore 5\u2605)</b>","Add <b>Ayaka's 4th Rerun</b> Banner"]},{featured:!0,date:"5-Jan-2024",description:["New Character: <b>Chevreuse ( 4\u2605 )</b>","Add <b>Raiden Shogun's 4th Rerun</b> Banner","Add <b>Yoimiya's 5th Rerun</b> Banner"]}],pt={data:tl},Le={"zh-CN":"\u7B80\u4F53\u4E2D\u6587 (CHS)","zh-TW":"\u7E41\u9AD4\u4E2D\u6587 (CHT)","de-DE":"Deutsch (DE)","en-US":"English (EN)","fr-FR":"Fran\xE7ais (FR)","id-ID":"Indonesia (ID)","it-IT":"Italiano (IT)","ja-JP":"\u65E5\u672C\u8A9E (JA)","pt-BR":"Portugu\xEAs (PT)","ru-RU":"\u0420\u0443\u0441\u0441\u043A\u0438\u0439 (RU)","th-TH":"\u0E20\u0E32\u0E29\u0E32\u0E44\u0E17\u0E22 (TH)","vi-VN":"Ti\u1EBFng Vi\u1EC7t (VI)"},Ce={"de-DE":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAIAAAAVyRqTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RjU5RkIzOTE3N0ExMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RjU5RkIzQTE3N0ExMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjZGNTlGQjM3MTc3QTExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjZGNTlGQjM4MTc3QTExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+aBEH3AAAAChJREFUeNpiYBgFo2CAAOMNmhnNxDBq9KjReBPf/3OjATJqNB4AEGAA+2UCvgLMJf0AAAAASUVORK5CYII=","en-US":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMjExNEYyMDE3OEExMUUyQTcxNDlDNEFCRkNENzc2NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBMjExNEYyMTE3OEExMUUyQTcxNDlDNEFCRkNENzc2NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkEyMTE0RjFFMTc4QTExRTJBNzE0OUM0QUJGQ0Q3NzY2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkEyMTE0RjFGMTc4QTExRTJBNzE0OUM0QUJGQ0Q3NzY2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EXnauAAABW1JREFUeNrEVm1QVGUUfu7dXZBYvuRj1yATNT5FxCClTNLUFNBJrfxRZjOKkVLqGA2okGGDhA44ToqT1pigA9qAhkho4kiCqRhgCKwBg5IiLCDs8rEid0/vvVfWGD/K/nR27u7Ofc85z/Oe9znnXi52S4Eh49sy9DS1AE6OgJsdYDYDhOFWr8fi+Ej8kByBuoDX0FOtA6dUwVrrignNlxG1vQT7Yg8B492Gx3HsUvBAmxHoNEAdFoyYqDAoUzeF2322djbS0k9h53el6NXdAEY6Aa6PIfBvTQTkGaBeBOxmgCFYFz0Dy5z0GJe7FbzxdAlc1CokJ4SjoSoRsQkLoXawAXTNLKhHZss9JaAY085idbdgN9EbcQfWo2JTIJLOpoCbOw0VR8+BvzUrDFe8X4Th5Blo7K2RmjQfjZWJiE9aBHtnW5lAe69IH9wTCMhrDLCD+epuwiHIFwmHGGCcH5LPpYCfHYrKY2VwPJyHoNYGoKXwNAlvRVItK2qVTzAZi0toyNqNAxT7eT6px2xkBQ+nsI+OSPdrJ4TRJWipXPkc/e4xWbq3OKGI+USSOmwPxX1fQ01nLhB9+AHVs7y/uXpSR3auJa+JXYB/Gi1LKaXiXTlUExRKvzDHinGB1L430+LYqjfS8k8yacmmEyQMCg8BCwN3KSqthN5dtZ+u7s4iYekS+kPMM8qL2nPyLHkq6jto6apDBJuPCVOXHSSvyH0UnVVPOrbYf7Gc6uYtpLqIt6kzt4AeZdV+IrCGyhUeVOkeRGbpw6zpGvVGR1PtjHl0p/DnYTFX20y08ouT5D13D730/kHiSNo2s/4+GE1m2DmpLec2qO8Ap1KxtlGAFwWj4iEYTagJjcTdaw1SOyldRsL31+Ow0joDBna+Ls6WeBIEUL9J+t9nuge1rTVgYyNromb8VBqSI+MNQSBwCgXTCSe3khhMw3vK3Nsnt9p9VfG2z7Af5q9UyqoW/QeFYZ2oUDA/jsdQfyp7G5ufukWVjg7si5dzMJB7f7Y8RO6fjMf/ZEqbMR4PGpGxFszDmXPi9JGalKTyihuTSi08KLXKYxT+3uTc0NSCnJNYHM+OjruPIflYxMUSm7qMsGJCkhZUSnDW1g8YiGAsl8BEUsvEZRoSlysTV1k+E5eLRMZsloFEwrza1hJ+19gHazsrca/yjhfFF+B2UycCfLWIWfkqArQjLM791XW4uXUbnNlIdYpbC3j6QGEjKYXxNMsCEzU1ij0YrKyGnV33ybPQ7z8gbg2jN3wKvb8f0nOv43xeKVw1avB5KbkYYerFmzPHW0CNpRdRHTwDTQG+eL6tAb0+gVifcRkrvipmIjdLupIQWekUolJZ0dZ8XYaYuBx0G+X2cZg1BXYhITCeKcWlCf4whM7E67fK4f6CB37MY3OyubXH0uTGkjK6Mmka1bBUg/PfoJajJyg9V0djlxxmx7GQQpdnP3ZkLogvZD7zyNk7kRKTC6mzX7Dk7TpeRJWeE6VpZn7vHbp+oph4Dzdb9F24jOrJ03F9+svwfXYE3PILsSc6A1Myu7Bu0Q405rNBCi3cNXaPValGfKBgDDpuG5C04TDGTtyML7efgmGA4BAxB4GNVXA5Voiqs9Uwhc8ELwI2TQ2G32hbaAqKsGvFboRkGRATsQ03fjoPeLkC7k6S+J7Uq/IaO3M3e8B7NLraepAQmw3PgM1gFUD3gBmOC+Zi0o2r0OQXQemjscKd3HxkWPkjPfMSGrLT2FhTyYBSrqd8ExAJsOknvclo7NHZasCWjUew+8AFrF3xCtasmQ2HyDlQ7lr9jXFnVjkac1IZIJO6l9t/A3wUAbpPQGuPjpZuqQI79p7D6qhp+EuAAQB9e+n65ZcRTgAAAABJRU5ErkJggg==","fr-FR":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAIAAAAVyRqTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMjUyMkUxODE3NzkxMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDQjc4RjdFMDE3NzkxMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkEyNTIyRTE2MTc3OTExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkEyNTIyRTE3MTc3OTExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NYcTvAAAADBJREFUeNpiZFCYz4Ab/L+fgEf2q7YTHlkmBpqBUaNHjR41etToUaNHjaad0QABBgAMOgSHJZqdhAAAAABJRU5ErkJggg==","id-ID":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMEUwNDkxMDE3N0QxMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMEUwNDkxMTE3N0QxMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAwRTA0OTBFMTc3RDExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAwRTA0OTBGMTc3RDExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+D76wCAAAAG9JREFUeNpiPCeo9pSBgUEKiD8z0AfwAvEzFiiDAYmmi+VMDAMERi0etZhmgOXP+w8DYzGbtOQ/KPsfHUP5H+Of9x/fAxkCQPyXThYzA/EHFmYBPmYkAXoB5tHsNGrxqMXUK7mgTR5eOjd9PgMEGACLNBM7Kx9mIgAAAABJRU5ErkJggg==","it-IT":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMzVCNDMyMDE3ODAxMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBMzVCNDMyMTE3ODAxMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkEzNUI0MzFFMTc4MDExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkEzNUI0MzFGMTc4MDExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+oQE2+QAAAJNJREFUeNpiZJjk9pSBgUEKiD8zYAM/PjHy8Ir9fZK47D8/OzcLUOQ/A3bA+O/nz79Xnf0Yftx7wMwiJIhLHS8QP2OBMhiQaGzgH5RmYsAP/kMxIXW8hBSgG0oNNUT5gGZg1OJRi0ctHrV41OJRi4e2xYxUUgMGLNAmDy/Opg/EsL/QSh5v0weqDgSY8agD2wUQYAAUKyFbP8LJRAAAAABJRU5ErkJggg==","ja-JP":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCREQ2NTU2QjE3ODAxMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCREQ2NTU2QzE3ODAxMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkJERDY1NTY5MTc4MDExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJERDY1NTZBMTc4MDExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+sXSjEQAAAbhJREFUeNrklt8rg1EYx79n3k2WrWGY363EkgtJSVntgguJi5UbbuTSrf/CHTeukDulUVJKCRciGVIYiYvNhqZmm9H2eo/nfWlcbW9sk5zT89TpfTqf59c552Wc8xsAlSQR5GYYSPyMwOGPRS5H5O+BeUKUNZhWmxtwYHqBxIWn00vicugbrbAMO1E1OpgdsBR9wYFjCF73IuQYtSghzZDAAwlHVVMPWrfmIZiNmQXvdfbBt72CIjTQSiO78vGFKTqEc1haHOg43FAF1qix8k7Nwp+E4gtUqbYiJjTi9mgT1+OTqnKtCny3sAyBImNpzHVkdb+0mhnw6/MTYsfXtKmZ4pJS9TnVvRgvF36IsejPwVyenCdrmf6cJdXPwEJBIfTNdYgjmMZc7vAQ8ustEPSGzNS4zNkLUUkzT4Fl5Fwcpf3dqhKj+jjttHXh1r1OnW1T0v/pBFNmCB6Ybe3oPNlVE476cywGw9i3D8DvWUM+de97s0G5QOKky2vtaNt2QVddmvkrk0sSfBNzCMy4EDu7oqaToG+wooKuzJqxETAhL/uPhPgYlT2BYDLiGyPyP9/jX/n1eRNgAFs4yk+Ai07FAAAAAElFTkSuQmCC","pt-BR":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCRDhGOEMxMTE3NzIxMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCRDhGOEMxMjE3NzIxMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkJEOEY4QzBGMTc3MjExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJEOEY4QzEwMTc3MjExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+TFbakQAABKdJREFUeNq8ll1sU2UYx3+n7en6uZVa1oGDwtYxnCw0EhiCxjgjH14oiV6Ampj4GRONRpQ4ZZEYvTAhwSxGjRFilO2GDy8gZuEGTAS2xUHmBvuAuVG70U0o++ranq6tz2mHc8YB48KTnL7pec/7/p////k/z3kV6h4ZAJz8v9e4SX4Wz3uZkoGEFWQgL343wE6Djj4vwJTEOpHPA64/qXIPw6Qj90yfmwdjw529N72pDjJlYufybloD52gKnOfDkk55ZpQ55+x3b8dBcjx2yxzrTJJmiFtYt2CIH9adY0VJCq5PY3ggeEXhueY1/HK9SKRPgFnujHJLxnMD64D6YmFpMCX4pOQSNRuvQKeRfYeqaOv2kpa4K/3DvPd0CwQ09p1ZQs3lMhJJG1gnwJCeK4A5gLPmsWSZbiocoK60i/LKGCe/9/HMru1Eki5MJNG3TGLGbR6j/tMjbHmpm76OPN7qXcmxcDGoU6JA7L/Ax41sXVaje3OGpeQr6qTAEqOu7AKf+3vw+KY4edBF9c7XUdIKRWoILX0VG2N4raPEkk72n6ii2tdD4OEIO8xDlNjHOT1ewGS0AEzJHHv+DkCbYayDxkWitIEdi4LsW96F1y4Ri2K4TRxsq+NseDXL3EFsihOTptLRc4X2kyEutPZzjWKqK4Y40XAAY1L2kvgjk0Z29pfz3eDSHKg1epP9DGNFSmKVbYKvy9rZXdKPQ0mTEJWMLujtdPPlkScYutjDxeYQkXCUPNWE11/A5h2VrKpeQrhjkKZujSfX9LO4YpK4mM9pzrCtSMrOHuGikBrWLGRydaSZssOUSrGq0bT6LPYFZB0bE2UMEpySD6FwHocOt4mBY7icZnpbhvkx+SsWye8Kv5fHX72f3Q1bqf8mTGjwOGt0frI2Jua2agi3CJtdzfhbH6JPwHXpc8DGKa6mjGzqWEvtkl62FEawSlrisghpTIWuKL4FThxWG+lUFNVqodCejyqsB4IR9u5qJFDp5/nabWzwecgMhciI2lapQomNU0EXe4KlhISgjqVfhpummjKmODPiYetvVbzSeR/jkmuL9AvxD+WrR6RsBgjd8OB2W9CSKWFkkFvBas9j+T0uLrRbOFa7n4X2ThTJr742LuBvdpXzaNt6fr5RSFI32HSHm+lcmenkSwP49o9Syls30jDozXrCKMO7LzQyGosRDOfjcJjErfHsnZ9vImNeKkG4eefln6BA9BUdj4YXslL2+KJ/hbDWcnv/45pdTjqKHpGAT4gZjg4V0x6zUpUeIfDYCGvdA9QfLyU46mE8qnJtTCUkKtnUNF99cICnXuxhsE/lte4Kai9XMJoSne0T0yxn1bJ2684lchNziIMn2VvWwxsPSu7OW/i4YT0dl4qkYyqU+8LUbG/CsSHG/pZFvN21komEHWzC0JCaZ+f6dwCaCJLIo9ozSP36cxRJUyI83asXwY2r8OzZAI3D94qsydyn8q579Rx9WzoHe3yX+cjfl5367Hcf7/eXSe+UMrHpsqZvBzoP4FlfKjV7CNjoDaHK/1Pig+zXSPrAHQDOOoHc+bFH39gkdaiOcfq6N2cYneXNuXmcQP4SYAD5sNLFPECeSAAAAABJRU5ErkJggg==","ru-RU":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozQTJGMDNGQjE3ODYxMUUyQTcxNDlDNEFCRkNENzc2NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozQTJGMDNGQzE3ODYxMUUyQTcxNDlDNEFCRkNENzc2NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjNBMkYwM0Y5MTc4NjExRTJBNzE0OUM0QUJGQ0Q3NzY2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjNBMkYwM0ZBMTc4NjExRTJBNzE0OUM0QUJGQ0Q3NzY2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+I9CATwAAAEhJREFUeNpi/P///1MGBgYpIP7MQB/AC8TPWKAMBiSaLpYzMQwQGLWYboCRgeH//9GgHrV41GKqZCdgXhrNTqMWj1pMFQAQYAD5egotBoZoiQAAAABJRU5ErkJggg==","th-TH":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAIAAAAVyRqTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFQUIyQzc1NTE3ODgxMUUyQTcxNDlDNEFCRkNENzc2NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFQUIyQzc1NjE3ODgxMUUyQTcxNDlDNEFCRkNENzc2NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkVBQjJDNzUzMTc4ODExRTJBNzE0OUM0QUJGQ0Q3NzY2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkVBQjJDNzU0MTc4ODExRTJBNzE0OUM0QUJGQ0Q3NzY2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+MpuROAAAADdJREFUeNpivMcrykAbwMRAMzA0jWb8////aIAgBwiDSu1ogIwaPZpliAYs9/nERgOEPkYDBBgAYAkIxbRv61QAAAAASUVORK5CYII=","vi-VN":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAIAAAAVyRqTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3ODRDOUJGRDE3OEIxMUUyQTcxNDlDNEFCRkNENzc2NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3ODRDOUJGRTE3OEIxMUUyQTcxNDlDNEFCRkNENzc2NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc4NEM5QkZCMTc4QjExRTJBNzE0OUM0QUJGQ0Q3NzY2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc4NEM5QkZDMTc4QjExRTJBNzE0OUM0QUJGQ0Q3NzY2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+MKjEOwAAAg1JREFUeNrMVTtrFVEQnvPae3fvPryPRLmInQn2WkhMIYggGEHs0gqC2FhraSE2grW9VgF/hZWPQmMqCZFAQhTxZu8jZ3fPjLPXRiSsm5iAU83Oznz7zTdzzop37Tk4HpNwbFYXWkjATKAVojYZXTPPTYSZRXbyHSkbdHSsBWRj2b1lZ5YtO/x4dNAlXUgu5+2rVgBB8S+C8BcLKHZLHOZYkGh2XDDnZIj+aTfa1Ebgr1c6phIDa7OmDKRPyaXcn3deH7m2s5TJHkJI7GggDvpnkRNki8geiDWK4ocIL9j+wzGMIVvXqoO4JZlp/97k5LL1zjhIcPtJkL4xzH3aXT3Wokmc/uVpsH47IgPeYianrWBWFngLOYS4cTfaeNxiTO7vIGNEkAE1Ytx65b+f76YvmqLLIRAK2BmueBzcfOmbCFWL9hW6ckOwVCtoF+lA735gj9QsqlPITrpm0m+6lThhgPBwy8drloq4k8/csBDT6K0ZvTYQY++ajXpFMdxX4dp7nRcyvpJ5F+3gub96Pfl4M/n+LDDn7Yklm7m/nJ0qaG5WAbUX851H4eqdhIGkorX7yfaDqL2QG4mUVx7hiku1hA5JJ5R+MiZwKiglwj2wIxWdy3EoioHgwR7meuIyHInJV+nxxJi/mwYb0NRu77NSAQkNFXLr6jGyCOV6wW8QVKr4Z/A//RUcwn4KMAD6MNV+pBmzeAAAAABJRU5ErkJggg==","zh-CN":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAIAAAAVyRqTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1NDUwRENDQzE3NzQxMUUyODY3Q0FBOTFCQzlGNjlDRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1NDUwRENDRDE3NzQxMUUyODY3Q0FBOTFCQzlGNjlDRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU0NTBEQ0NBMTc3NDExRTI4NjdDQUE5MUJDOUY2OUNGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU0NTBEQ0NCMTc3NDExRTI4NjdDQUE5MUJDOUY2OUNGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+63sBgQAAAXhJREFUeNrslL1OwzAQx322k+ZDpaFSVSQqOsCChGBl5wkY4AGYeQF2NkYQAxI7ElM3nqE7TAgJtkKaUtQPkto+zgUxwZCgMvUmW5Z+/t0/OcPDesRmU/x7BZKZIZgB0IIh0wmv7KbR3rtOgJnCaGCYQfYkvA3lbarsUdCW6OAhhKhioRIODuZFkyFDxZxlbfqwsJ9yn43b0mlo1eXxWWB6UD8aIsfkIhCRIYl8aApBRLhy1Xe3NLXRvNbxqZ/eC8siqkAQrEAmFi0qOLhxxZKp7wxp+9oqvbVK7pq9xqmb55OQZL1VhcqmlA9ty0OiDC5c1ExWDQRoezdsEvPa4Qgcllz6RQIhF6dhRm3ZPfdxAsF25jZt/5MO1zHnAfWFDAsF8umS3kpBvsDSO8nLqHu8ejAWIXaOQ16xPdHXzo+eihPu638sW0dKhpfsOXFllJtrhX+bRhoc9QJoQNaMTaNgID8VaYrFKdL8edBn+IbM0XP0P6M/BBgAWIia6c9dDfMAAAAASUVORK5CYII=","zh-TW":"iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAYAAACaq43EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDRjMyNzg5NDE3ODgxMUUyQTcxNDlDNEFCRkNENzc2NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDRjMyNzg5NTE3ODgxMUUyQTcxNDlDNEFCRkNENzc2NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkNGMzI3ODkyMTc4ODExRTJBNzE0OUM0QUJGQ0Q3NzY2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkNGMzI3ODkzMTc4ODExRTJBNzE0OUM0QUJGQ0Q3NzY2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+yLbMqgAAAZxJREFUeNrsVstKAlEY/maawNtgmQtvRC0ENy7Etbhz68KH6SV8gV5CFy7b5EJxUZCIuBBMvJTS4G2svMyl32nCaValhhB+8HH+c85wvv92hsMA110APqIIDQxR/jShEFndPiKquu0ADwFdXNE4wy/BE5843cB6lGG3c1DVOTyeEwjCBIpyjOlUMjixNXju+3wV7RzRqBvBoBudjohE4hy1Wh/5/CoxNkPU28EkPEMg4EIk4kMqdYlw2IVyeYBslkO7vUCjIdA3ll0Lq1rEoZALyeQFYjGvthqPe8FShuv1EQkP9LpvD9YsLEmKRiNkWcVyqe6yxsaTWK2xGo0xcrkWisU+NRhQKPSQyTTRbI5pX9K7e+c1tqDVGqFS6WE+l5BOP8Dvd6Ba7VOqv+q7s+aywyxeul+gdPcIj9eJm9sXSvXKP6chWgfxTb8FGwpbMTRdKAZLUdaOfK4PqZUYbdVGoqoe7TsWsGK0VfSMAPvE8BP5EVRyhCWXTskFZjNxkTvDK/YBFnvCQfgg/P+EOf3Jw6+fPn8OTetDgAEAPv6K9CaVVcEAAAAASUVORK5CYII="};function mt(l,e,t){const n=l.slice();return n[43]=e[t],n}function ht(l,e,t){const n=l.slice();return n[40]=e[t].currency,n}function bt(l,e,t){const n=l.slice();return n[37]=e[t],n}function nl(l){let e,t,n=(l[5]?l[11]("menu.yes"):l[11]("menu.no"))+"",s,a,r,o,c,u,i,d=l[0]&&gt(l);return{c(){e=v("div"),t=v("button"),s=U(n),a=T(),r=v("i"),c=T(),d&&d.c(),this.h()},l(m){e=A(m,"DIV",{class:!0});var h=k(e);t=A(h,"BUTTON",{class:!0,style:!0});var b=k(t);s=Z(b,n),b.forEach(f),a=M(h),r=A(h,"I",{class:!0}),k(r).forEach(f),c=M(h),d&&d.l(h),h.forEach(f),this.h()},h(){g(t,"class","selected svelte-1d3b5am"),ne(t,"width","100%"),ne(t,"height","100%"),g(r,"class",o="gi-caret-"+(l[0]?"up":"down")+" svelte-1d3b5am"),g(e,"class","option-select svelte-1d3b5am")},m(m,h){G(m,e,h),p(e,t),p(t,s),p(e,a),p(e,r),p(e,c),d&&d.m(e,null),u||(i=se(t,"click",we(l[15])),u=!0)},p(m,h){h[0]&2080&&n!==(n=(m[5]?m[11]("menu.yes"):m[11]("menu.no"))+"")&&V(s,n),h[0]&1&&o!==(o="gi-caret-"+(m[0]?"up":"down")+" svelte-1d3b5am")&&g(r,"class",o),m[0]?d?(d.p(m,h),h[0]&1&&S(d,1)):(d=gt(m),d.c(),S(d,1),d.m(e,null)):d&&(d.d(1),d=null)},i(m){S(d)},o:te,d(m){m&&f(e),d&&d.d(),u=!1,i()}}}function ll(l){let e,t,n,s,a,r;return{c(){e=v("input"),t=T(),n=v("button"),s=U("\u4E0A\u4F20"),this.h()},l(o){e=A(o,"INPUT",{class:!0,type:!0,id:!0,accept:!0}),t=M(o),n=A(o,"BUTTON",{class:!0});var c=k(n);s=Z(c,"\u4E0A\u4F20"),c.forEach(f),this.h()},h(){g(e,"class","option-select-square svelte-1d3b5am"),g(e,"type","file"),g(e,"id","fileInput"),g(e,"accept",".txt"),g(n,"class","option-select svelte-1d3b5am")},m(o,c){G(o,e,c),G(o,t,c),G(o,n,c),p(n,s),a||(r=[se(e,"change",l[28]),se(n,"click",l[21])],a=!0)},p:te,i:te,o:te,d(o){o&&f(e),o&&f(t),o&&f(n),a=!1,Ue(r)}}}function sl(l){let e,t,n,s=l[11]("menu.resetButton")+"",a,r,o;return{c(){e=v("button"),t=v("i"),n=T(),a=U(s),this.h()},l(c){e=A(c,"BUTTON",{class:!0});var u=k(e);t=A(u,"I",{class:!0,style:!0}),k(t).forEach(f),n=M(u),a=Z(u,s),u.forEach(f),this.h()},h(){g(t,"class","gi-delete svelte-1d3b5am"),ne(t,"vertical-align","bottom"),ne(t,"line-height","0"),ne(t,"margin-right",".2rem"),g(e,"class","option-select svelte-1d3b5am")},m(c,u){G(c,e,u),p(e,t),p(e,n),p(e,a),r||(o=se(e,"click",l[13]),r=!0)},p(c,u){u[0]&2048&&s!==(s=c[11]("menu.resetButton")+"")&&V(a,s)},i:te,o:te,d(c){c&&f(e),r=!1,o()}}}function al(l){let e,t,n,s=l[12].patch+"",a,r,o=l[12].phase+"",c,u,i;return{c(){e=v("button"),t=v("i"),n=T(),a=U(s),r=U(" - "),c=U(o),this.h()},l(d){e=A(d,"BUTTON",{class:!0});var m=k(e);t=A(m,"I",{class:!0}),k(t).forEach(f),n=M(m),a=Z(m,s),r=Z(m," - "),c=Z(m,o),m.forEach(f),this.h()},h(){g(t,"class","gi-caret-down svelte-1d3b5am"),g(e,"class","option-select svelte-1d3b5am")},m(d,m){G(d,e,m),p(e,t),p(e,n),p(e,a),p(e,r),p(e,c),u||(i=se(e,"click",l[16]),u=!0)},p(d,m){m[0]&4096&&s!==(s=d[12].patch+"")&&V(a,s),m[0]&4096&&o!==(o=d[12].phase+"")&&V(c,o)},i:te,o:te,d(d){d&&f(e),u=!1,i()}}}function rl(l){let e,t,n=(l[5]==="default"?l[11]("outfit.default"):l[11](`menu.${l[5]}`))+"",s,a,r,o,c,u,i,d=l[0]&&_t(l);return{c(){e=v("div"),t=v("button"),s=U(n),a=T(),r=v("i"),c=T(),d&&d.c(),this.h()},l(m){e=A(m,"DIV",{class:!0});var h=k(e);t=A(h,"BUTTON",{class:!0,style:!0});var b=k(t);s=Z(b,n),b.forEach(f),a=M(h),r=A(h,"I",{class:!0}),k(r).forEach(f),c=M(h),d&&d.l(h),h.forEach(f),this.h()},h(){g(t,"class","selected svelte-1d3b5am"),ne(t,"width","100%"),ne(t,"height","100%"),g(r,"class",o="gi-caret-"+(l[0]?"up":"down")+" svelte-1d3b5am"),g(e,"class","option-select wishAmount svelte-1d3b5am")},m(m,h){G(m,e,h),p(e,t),p(t,s),p(e,a),p(e,r),p(e,c),d&&d.m(e,null),u||(i=se(t,"click",we(l[15])),u=!0)},p(m,h){h[0]&2080&&n!==(n=(m[5]==="default"?m[11]("outfit.default"):m[11](`menu.${m[5]}`))+"")&&V(s,n),h[0]&1&&o!==(o="gi-caret-"+(m[0]?"up":"down")+" svelte-1d3b5am")&&g(r,"class",o),m[0]?d?(d.p(m,h),h[0]&1&&S(d,1)):(d=_t(m),d.c(),S(d,1),d.m(e,null)):d&&(d.d(1),d=null)},i(m){S(d)},o:te,d(m){m&&f(e),d&&d.d(),u=!1,i()}}}function ol(l){let e,t,n,s,a,r,o,c,u,i=l[0]&&At(l);return{c(){e=v("div"),t=v("button"),n=U(l[8]),s=T(),a=v("i"),o=T(),i&&i.c(),this.h()},l(d){e=A(d,"DIV",{class:!0});var m=k(e);t=A(m,"BUTTON",{class:!0,style:!0});var h=k(t);n=Z(h,l[8]),h.forEach(f),s=M(m),a=A(m,"I",{class:!0}),k(a).forEach(f),o=M(m),i&&i.l(m),m.forEach(f),this.h()},h(){g(t,"class","selected svelte-1d3b5am"),ne(t,"width","100%"),ne(t,"height","100%"),g(a,"class",r="gi-caret-"+(l[0]?"up":"down")+" svelte-1d3b5am"),g(e,"class","option-select locale svelte-1d3b5am")},m(d,m){G(d,e,m),p(e,t),p(t,n),p(e,s),p(e,a),p(e,o),i&&i.m(e,null),c||(u=se(t,"click",we(l[15])),c=!0)},p(d,m){m[0]&256&&V(n,d[8]),m[0]&1&&r!==(r="gi-caret-"+(d[0]?"up":"down")+" svelte-1d3b5am")&&g(a,"class",r),d[0]?i?(i.p(d,m),m[0]&1&&S(i,1)):(i=At(d),i.c(),S(i,1),i.m(e,null)):i&&(i.d(1),i=null)},i(d){S(i)},o:te,d(d){d&&f(e),i&&i.d(),c=!1,u()}}}function il(l){let e,t,n,s,a,r=Le[l[5]]+"",o,c,u,i,d,m,h,b=l[0]&&wt(l);return{c(){e=v("div"),t=v("button"),n=v("img"),a=T(),o=U(r),c=T(),u=v("i"),d=T(),b&&b.c(),this.h()},l(D){e=A(D,"DIV",{class:!0});var _=k(e);t=A(_,"BUTTON",{class:!0,style:!0});var E=k(t);n=A(E,"IMG",{src:!0,alt:!0,class:!0}),a=M(E),o=Z(E,r),E.forEach(f),c=M(_),u=A(_,"I",{class:!0}),k(u).forEach(f),d=M(_),b&&b.l(_),_.forEach(f),this.h()},h(){Ee(n.src,s="data:image/png;base64,"+Ce[l[5]])||g(n,"src",s),g(n,"alt","flag"),g(n,"class","flag svelte-1d3b5am"),g(t,"class","selected svelte-1d3b5am"),ne(t,"width","100%"),ne(t,"height","100%"),g(u,"class",i="gi-caret-"+(l[0]?"up":"down")+" svelte-1d3b5am"),g(e,"class","option-select locale svelte-1d3b5am")},m(D,_){G(D,e,_),p(e,t),p(t,n),p(t,a),p(t,o),p(e,c),p(e,u),p(e,d),b&&b.m(e,null),m||(h=se(t,"click",we(l[15])),m=!0)},p(D,_){_[0]&32&&!Ee(n.src,s="data:image/png;base64,"+Ce[D[5]])&&g(n,"src",s),_[0]&32&&r!==(r=Le[D[5]]+"")&&V(o,r),_[0]&1&&i!==(i="gi-caret-"+(D[0]?"up":"down")+" svelte-1d3b5am")&&g(u,"class",i),D[0]?b?(b.p(D,_),_[0]&1&&S(b,1)):(b=wt(D),b.c(),S(b,1),b.m(e,null)):b&&(b.d(1),b=null)},i(D){S(b)},o:te,d(D){D&&f(e),b&&b.d(),m=!1,h()}}}function cl(l){let e,t,n,s;return{c(){e=v("input"),this.h()},l(a){e=A(a,"INPUT",{min:!0,type:!0,class:!0}),this.h()},h(){g(e,"min","0"),g(e,"type","number"),g(e,"class","option-select svelte-1d3b5am"),e.value=t=l[1]==="currencyItem"?l[9]:l[3]},m(a,r){G(a,e,r),n||(s=se(e,"input",l[20]),n=!0)},p(a,r){r[0]&522&&t!==(t=a[1]==="currencyItem"?a[9]:a[3])&&e.value!==t&&(e.value=t)},i:te,o:te,d(a){a&&f(e),n=!1,s()}}}function gt(l){let e,t,n=l[11]("menu.no")+"",s,a,r,o=l[11]("menu.yes")+"",c,u,i,d;return{c(){e=v("div"),t=v("button"),s=U(n),a=T(),r=v("button"),c=U(o),this.h()},l(m){e=A(m,"DIV",{class:!0});var h=k(e);t=A(h,"BUTTON",{class:!0});var b=k(t);s=Z(b,n),b.forEach(f),a=M(h),r=A(h,"BUTTON",{class:!0});var D=k(r);c=Z(D,o),D.forEach(f),h.forEach(f),this.h()},h(){g(t,"class","svelte-1d3b5am"),oe(t,"selected",!l[5]),g(r,"class","svelte-1d3b5am"),oe(r,"selected",l[5]),g(e,"class","select svelte-1d3b5am")},m(m,h){G(m,e,h),p(e,t),p(t,s),p(e,a),p(e,r),p(r,c),i||(d=[se(t,"click",we(l[29])),se(r,"click",we(l[30]))],i=!0)},p(m,h){h[0]&2048&&n!==(n=m[11]("menu.no")+"")&&V(s,n),h[0]&32&&oe(t,"selected",!m[5]),h[0]&2048&&o!==(o=m[11]("menu.yes")+"")&&V(c,o),h[0]&32&&oe(r,"selected",m[5])},i(m){u||ie(()=>{u=fe(e,Te,{duration:200,y:-10}),u.start()})},o:te,d(m){m&&f(e),i=!1,Ue(d)}}}function _t(l){let e,t,n=["default","unlimited","manual"],s=[];for(let a=0;a<3;a+=1)s[a]=vt(mt(l,n,a));return{c(){e=v("div");for(let a=0;a<3;a+=1)s[a].c();this.h()},l(a){e=A(a,"DIV",{class:!0});var r=k(e);for(let o=0;o<3;o+=1)s[o].l(r);r.forEach(f),this.h()},h(){g(e,"class","select svelte-1d3b5am")},m(a,r){G(a,e,r);for(let o=0;o<3;o+=1)s[o].m(e,null)},p(a,r){if(r[0]&526368){n=["default","unlimited","manual"];let o;for(o=0;o<3;o+=1){const c=mt(a,n,o);s[o]?s[o].p(c,r):(s[o]=vt(c),s[o].c(),s[o].m(e,null))}for(;o<3;o+=1)s[o].d(1)}},i(a){t||ie(()=>{t=fe(e,Te,{duration:200,y:-10}),t.start()})},o:te,d(a){a&&f(e),Ze(s,a)}}}function vt(l){let e,t,n=(l[43]==="default"?l[11]("outfit.default"):l[11](`menu.${l[43]}`))+"",s,a,r,o;function c(){return l[27](l[43])}return{c(){e=v("button"),t=v("span"),s=U(n),a=T(),this.h()},l(u){e=A(u,"BUTTON",{class:!0});var i=k(e);t=A(i,"SPAN",{style:!0});var d=k(t);s=Z(d,n),d.forEach(f),a=M(i),i.forEach(f),this.h()},h(){ne(t,"text-align","center"),ne(t,"width","100%"),ne(t,"padding","3%"),g(e,"class","svelte-1d3b5am"),oe(e,"selected",l[5]===l[43])},m(u,i){G(u,e,i),p(e,t),p(t,s),p(e,a),r||(o=se(e,"click",c),r=!0)},p(u,i){l=u,i[0]&2048&&n!==(n=(l[43]==="default"?l[11]("outfit.default"):l[11](`menu.${l[43]}`))+"")&&V(s,n),i[0]&32&&oe(e,"selected",l[5]===l[43])},d(u){u&&f(e),r=!1,o()}}}function At(l){let e,t,n=ft,s=[];for(let a=0;a<n.length;a+=1)s[a]=kt(ht(l,n,a));return{c(){e=v("div");for(let a=0;a<s.length;a+=1)s[a].c();this.h()},l(a){e=A(a,"DIV",{class:!0});var r=k(e);for(let o=0;o<s.length;o+=1)s[o].l(r);r.forEach(f),this.h()},h(){g(e,"class","select svelte-1d3b5am")},m(a,r){G(a,e,r);for(let o=0;o<s.length;o+=1)s[o].m(e,null)},p(a,r){if(r[0]&262400){n=ft;let o;for(o=0;o<n.length;o+=1){const c=ht(a,n,o);s[o]?s[o].p(c,r):(s[o]=kt(c),s[o].c(),s[o].m(e,null))}for(;o<s.length;o+=1)s[o].d(1);s.length=n.length}},i(a){t||ie(()=>{t=fe(e,Te,{duration:200,y:-10}),t.start()})},o:te,d(a){a&&f(e),Ze(s,a)}}}function kt(l){let e,t,n=l[40]+"",s,a,r,o;function c(){return l[26](l[40])}return{c(){e=v("button"),t=v("span"),s=U(n),a=T(),this.h()},l(u){e=A(u,"BUTTON",{class:!0});var i=k(e);t=A(i,"SPAN",{style:!0});var d=k(t);s=Z(d,n),d.forEach(f),a=M(i),i.forEach(f),this.h()},h(){ne(t,"text-align","center"),ne(t,"width","100%"),ne(t,"padding","3%"),g(e,"class","svelte-1d3b5am"),oe(e,"selected",l[8]===l[40])},m(u,i){G(u,e,i),p(e,t),p(t,s),p(e,a),r||(o=se(e,"click",we(c)),r=!0)},p(u,i){l=u,i[0]&256&&oe(e,"selected",l[8]===l[40])},d(u){u&&f(e),r=!1,o()}}}function wt(l){let e,t,n=l[10],s=[];for(let a=0;a<n.length;a+=1)s[a]=Nt(bt(l,n,a));return{c(){e=v("div");for(let a=0;a<s.length;a+=1)s[a].c();this.h()},l(a){e=A(a,"DIV",{class:!0});var r=k(e);for(let o=0;o<s.length;o+=1)s[o].l(r);r.forEach(f),this.h()},h(){g(e,"class","select svelte-1d3b5am")},m(a,r){G(a,e,r);for(let o=0;o<s.length;o+=1)s[o].m(e,null)},p(a,r){if(r[0]&132128){n=a[10];let o;for(o=0;o<n.length;o+=1){const c=bt(a,n,o);s[o]?s[o].p(c,r):(s[o]=Nt(c),s[o].c(),s[o].m(e,null))}for(;o<s.length;o+=1)s[o].d(1);s.length=n.length}},i(a){t||ie(()=>{t=fe(e,Te,{duration:200,y:-10}),t.start()})},o:te,d(a){a&&f(e),Ze(s,a)}}}function Nt(l){let e,t,n,s,a,r,o=Le[l[37]]+"",c,u,i,d;function m(){return l[25](l[37])}return{c(){e=v("button"),t=v("span"),n=v("img"),a=T(),r=v("span"),c=U(o),u=T(),this.h()},l(h){e=A(h,"BUTTON",{class:!0});var b=k(e);t=A(b,"SPAN",{style:!0});var D=k(t);n=A(D,"IMG",{src:!0,alt:!0,class:!0}),D.forEach(f),a=M(b),r=A(b,"SPAN",{style:!0});var _=k(r);c=Z(_,o),_.forEach(f),u=M(b),b.forEach(f),this.h()},h(){Ee(n.src,s="data:image/png;base64,"+Ce[l[37]])||g(n,"src",s),g(n,"alt","flag"),g(n,"class","flag svelte-1d3b5am"),ne(t,"text-align","right"),ne(t,"padding-right","1rem"),ne(t,"width","50%"),ne(r,"text-align","left"),ne(r,"width","100%"),g(e,"class","svelte-1d3b5am"),oe(e,"selected",l[5]===l[37])},m(h,b){G(h,e,b),p(e,t),p(t,n),p(e,a),p(e,r),p(r,c),p(e,u),i||(d=se(e,"click",we(m)),i=!0)},p(h,b){l=h,b[0]&1024&&!Ee(n.src,s="data:image/png;base64,"+Ce[l[37]])&&g(n,"src",s),b[0]&1024&&o!==(o=Le[l[37]]+"")&&V(c,o),b[0]&1056&&oe(e,"selected",l[5]===l[37])},d(h){h&&f(e),i=!1,d()}}}function ul(l){let e,t,n,s;const a=l[24].default,r=un(a,l,l[23],null);function o(i,d){return i[2]?cl:i[1]==="locale"?il:i[1]==="currency"?ol:i[1]==="wishAmount"?rl:i[1]==="switchBanner"?al:i[1]==="reset"?sl:i[1]==="upload"?ll:nl}let c=o(l),u=c(l);return{c(){e=v("div"),t=v("div"),r&&r.c(),n=T(),u.c(),this.h()},l(i){e=A(i,"DIV",{class:!0});var d=k(e);t=A(d,"DIV",{class:!0});var m=k(t);r&&r.l(m),m.forEach(f),n=M(d),u.l(d),d.forEach(f),this.h()},h(){g(t,"class","option-name svelte-1d3b5am"),g(e,"class","option svelte-1d3b5am"),oe(e,"sub",l[4])},m(i,d){G(i,e,d),p(e,t),r&&r.m(t,null),p(e,n),u.m(e,null),s=!0},p(i,d){r&&r.p&&(!s||d[0]&8388608)&&dn(r,a,i,i[23],s?pn(a,i[23],d,null):fn(i[23]),null),c===(c=o(i))&&u?u.p(i,d):(u.d(1),u=c(i),u&&(u.c(),S(u,1),u.m(e,null))),d[0]&16&&oe(e,"sub",i[4])},i(i){s||(S(r,i),S(u),s=!0)},o(i){W(r,i),s=!1},d(i){i&&f(e),r&&r.d(i),u.d()}}}function dl(l,e,t){let n,s,a,r,o=te,c=()=>(o(),o=mn(s,F=>t(9,r=F)),s),u,i,d;le(l,Ve,F=>t(22,a=F)),le(l,wn,F=>t(10,u=F)),le(l,Ae,F=>t(11,i=F)),le(l,qt,F=>t(12,d=F)),l.$$.on_destroy.push(()=>o());let{$$slots:m={},$$scope:h}=e,{name:b}=e,{useInput:D=!1}=e,{inputValue:_=""}=e,{sub:E=!1}=e,{activeIndicator:B=null}=e,{showOption:J=!1}=e;const y=he("handleOption"),N=he("factoryReset"),Y=Lt();let R=F=>{re(),t(0,J=!J),F&&(Y("select",{selected:F}),y(""))};const $=()=>{if(re(),J)return y("");y(b)},j=he("navigate"),L=()=>{re("prevbanner"),j("allbanners")},I=F=>{re(),Ve.set(F),Ie.set("locale",F),y(""),Qe.init()},w=F=>{re(),an.set("currency",F),t(8,n=F),Qe.init(F),y("")},O=F=>{re(),y(""),Y("select",F)},P={primogem:Nn,intertwined:In,acquaint:En,starglitter:Dn,stardust:yn},z=he("setMultiPull"),ee=F=>{P[_]?.set(F),Ke.set(_,F)},X=F=>{const Oe=F.target.value.substring(0,9),je=parseInt(Oe,10),Re=b==="multi"?1:0,Be=isNaN(je)?Re:je;if(F.target.value=Be,b==="currencyItem")return ee(Be);if(b==="multi")return z(Be)};let H;const C=()=>{H&&Hn(H[0])},ue=F=>I(F),ce=F=>w(F),ae=F=>O(F);function Ne(){H=this.files,t(6,H)}const De=()=>R("no"),ye=()=>R("yes");return l.$$set=F=>{"name"in F&&t(1,b=F.name),"useInput"in F&&t(2,D=F.useInput),"inputValue"in F&&t(3,_=F.inputValue),"sub"in F&&t(4,E=F.sub),"activeIndicator"in F&&t(5,B=F.activeIndicator),"showOption"in F&&t(0,J=F.showOption),"$$scope"in F&&t(23,h=F.$$scope)},l.$$.update=()=>{l.$$.dirty[0]&4194304&&t(8,n=a?Qe.checkUsedCurrency().currency:""),l.$$.dirty[0]&8&&c(t(7,s=P[_]))},[J,b,D,_,E,B,H,s,n,r,u,i,d,N,R,$,L,I,w,O,X,C,a,h,m,ue,ce,ae,Ne,De,ye]}class ke extends ge{constructor(e){super(),_e(this,e,dl,ul,ve,{name:1,useInput:2,inputValue:3,sub:4,activeIndicator:5,showOption:0},null,[-1,-1])}}function It(l,e,t){const n=l.slice();return n[28]=e[t],n[30]=t,n}function Et(l){let e,t;return e=new st({props:{title:l[8]("menu.resetTitle"),$$slots:{default:[gl]},$$scope:{ctx:l}}}),e.$on("confirm",l[17]),e.$on("cancel",l[18]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s[0]&256&&(a.title=n[8]("menu.resetTitle")),s[0]&352|s[1]&2&&(a.$$scope={dirty:s,ctx:n}),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function fl(l){let e,t=l[8]("menu.keepSetting")+"";return{c(){e=v("span")},l(n){e=A(n,"SPAN",{});var s=k(e);s.forEach(f)},m(n,s){G(n,e,s),e.innerHTML=t},p(n,s){s[0]&256&&t!==(t=n[8]("menu.keepSetting")+"")&&(e.innerHTML=t)},d(n){n&&f(e)}}}function pl(l){return{c:te,l:te,m:te,p:te,d:te}}function ml(l){let e,t=l[8]("menu.clearCache",{values:{size:l[31]}})+"";return{c(){e=v("span")},l(n){e=A(n,"SPAN",{});var s=k(e);s.forEach(f)},m(n,s){G(n,e,s),e.innerHTML=t},p(n,s){s[0]&256&&t!==(t=n[8]("menu.clearCache",{values:{size:n[31]}})+"")&&(e.innerHTML=t)},d(n){n&&f(e)}}}function hl(l){let e,t;return{c(){e=v("span"),t=U("..B")},l(n){e=A(n,"SPAN",{});var s=k(e);t=Z(s,"..B"),s.forEach(f)},m(n,s){G(n,e,s),p(e,t)},p:te,d(n){n&&f(e)}}}function bl(l){let e,t={ctx:l,current:null,token:null,hasCatch:!1,pending:hl,then:ml,catch:pl,value:31};return hn(l[16](),t),{c(){e=be(),t.block.c()},l(n){e=be(),t.block.l(n)},m(n,s){G(n,e,s),t.block.m(n,t.anchor=s),t.mount=()=>e.parentNode,t.anchor=e},p(n,s){l=n,bn(t,l,s)},d(n){n&&f(e),t.block.d(n),t.token=null,t=null}}}function gl(l){let e,t,n=l[8]("menu.resetPrompt")+"",s,a,r,o,c,u;return r=new $e({props:{id:"_setting",checked:l[5],$$slots:{default:[fl]},$$scope:{ctx:l}}}),r.$on("change",l[19]),c=new $e({props:{id:"_cache",checked:l[6],$$slots:{default:[bl]},$$scope:{ctx:l}}}),c.$on("change",l[20]),{c(){e=v("div"),t=v("caption"),s=T(),a=v("div"),Q(r.$$.fragment),o=T(),Q(c.$$.fragment),this.h()},l(i){e=A(i,"DIV",{class:!0});var d=k(e);t=A(d,"CAPTION",{});var m=k(t);m.forEach(f),s=M(d),a=A(d,"DIV",{class:!0});var h=k(a);K(r.$$.fragment,h),o=M(h),K(c.$$.fragment,h),h.forEach(f),d.forEach(f),this.h()},h(){g(a,"class","delete-option svelte-15fxbq0"),g(e,"class","confirmation svelte-15fxbq0")},m(i,d){G(i,e,d),p(e,t),t.innerHTML=n,p(e,s),p(e,a),q(r,a,null),p(a,o),q(c,a,null),u=!0},p(i,d){(!u||d[0]&256)&&n!==(n=i[8]("menu.resetPrompt")+"")&&(t.innerHTML=n);const m={};d[0]&32&&(m.checked=i[5]),d[0]&256|d[1]&2&&(m.$$scope={dirty:d,ctx:i}),r.$set(m);const h={};d[0]&64&&(h.checked=i[6]),d[0]&256|d[1]&2&&(h.$$scope={dirty:d,ctx:i}),c.$set(h)},i(i){u||(S(r.$$.fragment,i),S(c.$$.fragment,i),u=!0)},o(i){W(r.$$.fragment,i),W(c.$$.fragment,i),u=!1},d(i){i&&f(e),x(r),x(c)}}}function _l(l){let e=l[8]("menu.language")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.language")+"")&&V(t,e)},d(n){n&&f(t)}}}function vl(l){let e=l[8]("menu.currency")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.currency")+"")&&V(t,e)},d(n){n&&f(t)}}}function Al(l){let e=l[8]("menu.fates")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.fates")+"")&&V(t,e)},d(n){n&&f(t)}}}function Dt(l){let e,t,n,s,a;return t=new ke({props:{useInput:!0,sub:!0,inputValue:l[28],name:"currencyItem",$$slots:{default:[kl]},$$scope:{ctx:l}}}),{c(){e=v("div"),Q(t.$$.fragment)},l(r){e=A(r,"DIV",{});var o=k(e);K(t.$$.fragment,o),o.forEach(f)},m(r,o){G(r,e,o),q(t,e,null),a=!0},p(r,o){l=r;const c={};o[0]&256|o[1]&2&&(c.$$scope={dirty:o,ctx:l}),t.$set(c)},i(r){a||(S(t.$$.fragment,r),r&&ie(()=>{s&&s.end(1),n=fe(e,Te,{y:-10,delay:Math.sqrt(l[30]*1e4)}),n.start()}),a=!0)},o(r){W(t.$$.fragment,r),n&&n.invalidate(),r&&(s=gn(e,Te,{y:-10})),a=!1},d(r){r&&f(e),x(t),r&&s&&s.end()}}}function kl(l){let e,t,n=l[8](`shop.item.${l[28]}`)+"",s,a;return e=new Pe({props:{type:l[28],style:"margin: -1% 2% -1% 0"}}),{c(){Q(e.$$.fragment),t=T(),s=U(n)},l(r){K(e.$$.fragment,r),t=M(r),s=Z(r,n)},m(r,o){q(e,r,o),G(r,t,o),G(r,s,o),a=!0},p(r,o){(!a||o[0]&256)&&n!==(n=r[8](`shop.item.${r[28]}`)+"")&&V(s,n)},i(r){a||(S(e.$$.fragment,r),a=!0)},o(r){W(e.$$.fragment,r),a=!1},d(r){x(e,r),r&&f(t),r&&f(s)}}}function yt(l){let e,t,n=l[3]==="manual"&&Dt(l);return{c(){n&&n.c(),e=be()},l(s){n&&n.l(s),e=be()},m(s,a){n&&n.m(s,a),G(s,e,a),t=!0},p(s,a){s[3]==="manual"?n?(n.p(s,a),a[0]&8&&S(n,1)):(n=Dt(s),n.c(),S(n,1),n.m(e.parentNode,e)):n&&(pe(),W(n,1,1,()=>{n=null}),me())},i(s){t||(S(n),t=!0)},o(s){W(n),t=!1},d(s){n&&n.d(s),s&&f(e)}}}function wl(l){let e=l[8]("menu.multiRoll")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.multiRoll")+"")&&V(t,e)},d(n){n&&f(t)}}}function Nl(l){let e=l[8]("menu.mute")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.mute")+"")&&V(t,e)},d(n){n&&f(t)}}}function Il(l){let e=l[8]("menu.autoskip")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.autoskip")+"")&&V(t,e)},d(n){n&&f(t)}}}function El(l){let e=l[8]("menu.animatedbg")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.animatedbg")+"")&&V(t,e)},d(n){n&&f(t)}}}function Dl(l){let e=l[8]("menu.factoryReset")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s[0]&256&&e!==(e=n[8]("menu.factoryReset")+"")&&V(t,e)},d(n){n&&f(t)}}}function yl(l){let e;return{c(){e=U("\u5BFC\u5165\u540D\u5355")},l(t){e=Z(t,"\u5BFC\u5165\u540D\u5355")},m(t,n){G(t,e,n)},d(t){t&&f(e)}}}function Rl(l){let e,t,n,s,a,r,o,c,u,i,d,m,h,b,D,_,E,B,J,y,N,Y,R=l[4]&&Et(l);n=new ke({props:{name:"locale",activeIndicator:l[9],showOption:l[0]==="locale",$$slots:{default:[_l]},$$scope:{ctx:l}}}),a=new ke({props:{name:"currency",showOption:l[0]==="currency",$$slots:{default:[vl]},$$scope:{ctx:l}}}),o=new ke({props:{name:"wishAmount",showOption:l[0]==="wishAmount",activeIndicator:l[3],$$slots:{default:[Al]},$$scope:{ctx:l}}}),o.$on("select",l[15]);let $=["intertwined","acquaint","starglitter","stardust","primogem"],j=[];for(let I=0;I<5;I+=1)j[I]=yt(It(l,$,I));const L=I=>W(j[I],1,1,()=>{j[I]=null});return i=new ke({props:{name:"multi",inputValue:l[10],useInput:!0,$$slots:{default:[wl]},$$scope:{ctx:l}}}),m=new ke({props:{showOption:l[0]==="audio",name:"audio",activeIndicator:l[1],$$slots:{default:[Nl]},$$scope:{ctx:l}}}),m.$on("select",l[12]),b=new ke({props:{showOption:l[0]==="autoskip",name:"autoskip",activeIndicator:l[11],$$slots:{default:[Il]},$$scope:{ctx:l}}}),b.$on("select",l[13]),_=new ke({props:{showOption:l[0]==="animatedbg",name:"animatedbg",activeIndicator:l[2],$$slots:{default:[El]},$$scope:{ctx:l}}}),_.$on("select",l[14]),B=new ke({props:{name:"reset",$$slots:{default:[Dl]},$$scope:{ctx:l}}}),y=new ke({props:{name:"upload",$$slots:{default:[yl]},$$scope:{ctx:l}}}),{c(){R&&R.c(),e=T(),t=v("div"),Q(n.$$.fragment),s=T(),Q(a.$$.fragment),r=T(),Q(o.$$.fragment),c=T();for(let I=0;I<5;I+=1)j[I].c();u=T(),Q(i.$$.fragment),d=T(),Q(m.$$.fragment),h=T(),Q(b.$$.fragment),D=T(),Q(_.$$.fragment),E=T(),Q(B.$$.fragment),J=T(),Q(y.$$.fragment),this.h()},l(I){R&&R.l(I),e=M(I),t=A(I,"DIV",{class:!0});var w=k(t);K(n.$$.fragment,w),s=M(w),K(a.$$.fragment,w),r=M(w),K(o.$$.fragment,w),c=M(w);for(let O=0;O<5;O+=1)j[O].l(w);u=M(w),K(i.$$.fragment,w),d=M(w),K(m.$$.fragment,w),h=M(w),K(b.$$.fragment,w),D=M(w),K(_.$$.fragment,w),E=M(w),K(B.$$.fragment,w),J=M(w),K(y.$$.fragment,w),w.forEach(f),this.h()},h(){g(t,"class","content-container")},m(I,w){R&&R.m(I,w),G(I,e,w),G(I,t,w),q(n,t,null),p(t,s),q(a,t,null),p(t,r),q(o,t,null),p(t,c);for(let O=0;O<5;O+=1)j[O].m(t,null);p(t,u),q(i,t,null),p(t,d),q(m,t,null),p(t,h),q(b,t,null),p(t,D),q(_,t,null),p(t,E),q(B,t,null),p(t,J),q(y,t,null),l[21](t),Y=!0},p(I,w){I[4]?R?(R.p(I,w),w[0]&16&&S(R,1)):(R=Et(I),R.c(),S(R,1),R.m(e.parentNode,e)):R&&(pe(),W(R,1,1,()=>{R=null}),me());const O={};w[0]&512&&(O.activeIndicator=I[9]),w[0]&1&&(O.showOption=I[0]==="locale"),w[0]&256|w[1]&2&&(O.$$scope={dirty:w,ctx:I}),n.$set(O);const P={};w[0]&1&&(P.showOption=I[0]==="currency"),w[0]&256|w[1]&2&&(P.$$scope={dirty:w,ctx:I}),a.$set(P);const z={};if(w[0]&1&&(z.showOption=I[0]==="wishAmount"),w[0]&8&&(z.activeIndicator=I[3]),w[0]&256|w[1]&2&&(z.$$scope={dirty:w,ctx:I}),o.$set(z),w[0]&264){$=["intertwined","acquaint","starglitter","stardust","primogem"];let ae;for(ae=0;ae<5;ae+=1){const Ne=It(I,$,ae);j[ae]?(j[ae].p(Ne,w),S(j[ae],1)):(j[ae]=yt(Ne),j[ae].c(),S(j[ae],1),j[ae].m(t,u))}for(pe(),ae=5;ae<5;ae+=1)L(ae);me()}const ee={};w[0]&1024&&(ee.inputValue=I[10]),w[0]&256|w[1]&2&&(ee.$$scope={dirty:w,ctx:I}),i.$set(ee);const X={};w[0]&1&&(X.showOption=I[0]==="audio"),w[0]&2&&(X.activeIndicator=I[1]),w[0]&256|w[1]&2&&(X.$$scope={dirty:w,ctx:I}),m.$set(X);const H={};w[0]&1&&(H.showOption=I[0]==="autoskip"),w[0]&2048&&(H.activeIndicator=I[11]),w[0]&256|w[1]&2&&(H.$$scope={dirty:w,ctx:I}),b.$set(H);const C={};w[0]&1&&(C.showOption=I[0]==="animatedbg"),w[0]&4&&(C.activeIndicator=I[2]),w[0]&256|w[1]&2&&(C.$$scope={dirty:w,ctx:I}),_.$set(C);const ue={};w[0]&256|w[1]&2&&(ue.$$scope={dirty:w,ctx:I}),B.$set(ue);const ce={};w[1]&2&&(ce.$$scope={dirty:w,ctx:I}),y.$set(ce)},i(I){if(!Y){S(R),S(n.$$.fragment,I),S(a.$$.fragment,I),S(o.$$.fragment,I);for(let w=0;w<5;w+=1)S(j[w]);S(i.$$.fragment,I),S(m.$$.fragment,I),S(b.$$.fragment,I),S(_.$$.fragment,I),S(B.$$.fragment,I),S(y.$$.fragment,I),N||ie(()=>{N=fe(t,de,{duration:200}),N.start()}),Y=!0}},o(I){W(R),W(n.$$.fragment,I),W(a.$$.fragment,I),W(o.$$.fragment,I),j=j.filter(Boolean);for(let w=0;w<5;w+=1)W(j[w]);W(i.$$.fragment,I),W(m.$$.fragment,I),W(b.$$.fragment,I),W(_.$$.fragment,I),W(B.$$.fragment,I),W(y.$$.fragment,I),Y=!1},d(I){R&&R.d(I),I&&f(e),I&&f(t),x(n),x(a),x(o),Ze(j,I),x(i),x(m),x(b),x(_),x(B),x(y),l[21](null)}}}function Bl(l,e,t){let n,s,a,r,o;le(l,Ae,z=>t(8,n=z)),le(l,Rn,z=>t(22,s=z)),le(l,Ve,z=>t(9,a=z)),le(l,qe,z=>t(10,r=z)),le(l,xe,z=>t(11,o=z));let c="";Ge("handleOption",z=>t(0,c=z));let i=Ie.get("muted");const d=({detail:z})=>{const{selected:ee}=z;t(1,i=ee==="yes"),i&&jn("wishBacksound"),Ie.set("muted",i),i||re("wishBacksound")},m=he("readyToPull"),h=async({detail:z})=>{const{selected:ee}=z,X=ee==="yes";if(xe.set(X),Ie.set("autoskip",X),X)return m.set(!0);const H=await Pn();m.set(H)},b=he("animateBG");let D=!!Ie.get("animatedBG");const _=z=>{const{selected:ee}=z.detail;Ie.set("animatedBG",ee==="yes"),t(2,D=ee==="yes"),b()};let E=Ie.get("wishAmount")||"default";const B=({detail:z})=>{t(3,E=z),Ie.set("wishAmount",z),xt.set(z)},J=z=>{Ie.set("multipull",z),qe.set(z)};Ge("setMultiPull",J);let y=!1,N=!1,Y=!1;const R=async()=>{const{usageDetails:z={}}=await navigator.storage.estimate(),{caches:ee=0}=z;return Je(ee)};Ge("factoryReset",()=>{t(4,y=!0),re("modal")});const j=async()=>{re(),t(4,y=!1),await Jn({clearCache:Y,keepSetting:N,isCustom:s}),Me({message:n("menu.resetSuccess"),type:"success"}),!N&&(re("wishBacksound"),b(),t(3,E="default"),J(10))},L=()=>{t(4,y=!1),re("close")};let I;Ye(()=>{Kt(I,{sizeAutoCapable:!1,className:"os-theme-light"})});const w=({detail:z})=>t(5,N=!!z.checked),O=({detail:z})=>t(6,Y=!!z.checked);function P(z){Ct[z?"unshift":"push"](()=>{I=z,t(7,I)})}return[c,i,D,E,y,N,Y,I,n,a,r,o,d,h,_,B,R,j,L,w,O,P]}class Gl extends ge{constructor(e){super(),_e(this,e,Bl,Rl,ve,{},null,[-1,-1])}}function Rt(l,e,t){const n=l.slice();return n[3]=e[t].description,n[4]=e[t].date,n[6]=t,n}function Bt(l,e,t){const n=l.slice();return n[7]=e[t],n}function Sl(l){let e;return{c(){e=U("( Latest Update )")},l(t){e=Z(t,"( Latest Update )")},m(t,n){G(t,e,n)},d(t){t&&f(e)}}}function Gt(l){let e,t=l[7]+"";return{c(){e=v("p"),this.h()},l(n){e=A(n,"P",{class:!0});var s=k(e);s.forEach(f),this.h()},h(){g(e,"class","svelte-zri2gr")},m(n,s){G(n,e,s),e.innerHTML=t},p:te,d(n){n&&f(e)}}}function St(l,e){let t,n,s=e[4]+"",a,r,o,c,u=e[6]===0&&Sl(),i=e[3],d=[];for(let m=0;m<i.length;m+=1)d[m]=Gt(Bt(e,i,m));return{key:l,first:null,c(){t=v("h2"),n=v("i"),a=U(s),r=T(),u&&u.c(),o=T();for(let m=0;m<d.length;m+=1)d[m].c();c=be(),this.h()},l(m){t=A(m,"H2",{class:!0});var h=k(t);n=A(h,"I",{class:!0});var b=k(n);a=Z(b,s),b.forEach(f),r=M(h),u&&u.l(h),h.forEach(f),o=M(m);for(let D=0;D<d.length;D+=1)d[D].l(m);c=be(),this.h()},h(){g(n,"class","tgl svelte-zri2gr"),g(t,"class","svelte-zri2gr"),this.first=t},m(m,h){G(m,t,h),p(t,n),p(n,a),p(t,r),u&&u.m(t,null),G(m,o,h);for(let b=0;b<d.length;b+=1)d[b].m(m,h);G(m,c,h)},p(m,h){if(e=m,h&0){i=e[3];let b;for(b=0;b<i.length;b+=1){const D=Bt(e,i,b);d[b]?d[b].p(D,h):(d[b]=Gt(D),d[b].c(),d[b].m(c.parentNode,c))}for(;b<d.length;b+=1)d[b].d(1);d.length=i.length}},d(m){m&&f(t),u&&u.d(),m&&f(o),Ze(d,m),m&&f(c)}}}function Tl(l){let e,t,n,s,a,r,o,c,u=[],i=new Map,d,m,h,b=[...pt.data].reverse();const D=_=>_[6];for(let _=0;_<b.length;_+=1){let E=Rt(l,b,_),B=D(E);i.set(B,u[_]=St(B,E))}return{c(){e=v("div"),t=v("div"),n=U("You can Check what are changes we made on "),s=v("a"),a=U(`Github Repository
-		`),r=U(". You can submit an issue if you find something wrong !"),o=T(),c=v("div");for(let _=0;_<u.length;_+=1)u[_].c();this.h()},l(_){e=A(_,"DIV",{class:!0});var E=k(e);t=A(E,"DIV",{class:!0});var B=k(t);n=Z(B,"You can Check what are changes we made on "),s=A(B,"A",{href:!0,target:!0,class:!0});var J=k(s);a=Z(J,`Github Repository
-		`),J.forEach(f),r=Z(B,". You can submit an issue if you find something wrong !"),B.forEach(f),o=M(E),c=A(E,"DIV",{class:!0});var y=k(c);for(let N=0;N<u.length;N+=1)u[N].l(y);y.forEach(f),E.forEach(f),this.h()},h(){g(s,"href","https://github.com/AguzzTN54/Genshin-Impact-Wish-Simulator"),g(s,"target","_blank"),g(s,"class","svelte-zri2gr"),g(t,"class","text svelte-zri2gr"),g(c,"class","update-item svelte-zri2gr"),g(e,"class","updates content-container svelte-zri2gr")},m(_,E){G(_,e,E),p(e,t),p(t,n),p(t,s),p(s,a),p(t,r),p(e,o),p(e,c);for(let B=0;B<u.length;B+=1)u[B].m(c,null);l[2](c),m||(h=se(s,"click",we(l[1])),m=!0)},p(_,[E]){E&0&&(b=[...pt.data].reverse(),u=_n(u,E,D,1,_,b,i,c,vn,St,null,Rt))},i(_){d||ie(()=>{d=fe(e,de,{duration:200}),d.start()})},o:te,d(_){_&&f(e);for(let E=0;E<u.length;E+=1)u[E].d();l[2](null),m=!1,h()}}}function Ml(l,e,t){let n;Ye(()=>{Kt(n,{sizeAutoCapable:!1,className:"os-theme-light"})});function s(r){Pt.call(this,l,r)}function a(r){Ct[r?"unshift":"push"](()=>{n=r,t(0,n)})}return[n,s,a]}class Ul extends ge{constructor(e){super(),_e(this,e,Ml,Tl,ve,{})}}function Zl(l){let e,t,n,s,a=l[1]("menu.options")+"",r,o,c;return{c(){e=v("div"),t=v("div"),n=v("div"),s=v("button"),r=U(a),this.h()},l(u){e=A(u,"DIV",{class:!0});var i=k(e);t=A(i,"DIV",{class:!0,style:!0});var d=k(t);n=A(d,"DIV",{class:!0});var m=k(n);s=A(m,"BUTTON",{class:!0});var h=k(s);r=Z(h,a),h.forEach(f),m.forEach(f),d.forEach(f),i.forEach(f),this.h()},h(){g(s,"class","svelte-qd7stm"),g(n,"class","menu-item svelte-qd7stm"),oe(n,"active",l[0]==="options"),g(t,"class","menu-list svelte-qd7stm"),ne(t,"--bg-active","url('/menu-active.png')"),g(e,"class","sidebar svelte-qd7stm")},m(u,i){G(u,e,i),p(e,t),p(t,n),p(n,s),p(s,r),o||(c=se(s,"click",l[3]),o=!0)},p(u,[i]){i&2&&a!==(a=u[1]("menu.options")+"")&&V(r,a),i&1&&oe(n,"active",u[0]==="options")},i:te,o:te,d(u){u&&f(e),o=!1,c()}}}function Yl(l,e,t){let n;le(l,Ae,o=>t(1,n=o));let{activeContent:s}=e;const a=he("selectMenu");he("chatToggle");const r=()=>a("options");return l.$$set=o=>{"activeContent"in o&&t(0,s=o.activeContent)},[s,n,a,r]}class jl extends ge{constructor(e){super(),_e(this,e,Yl,Zl,ve,{activeContent:0})}}function Tt(l){let e,t;return e=new st({props:{title:l[9]("menu.removeKey"),$$slots:{default:[Jl]},$$scope:{ctx:l}}}),e.$on("confirm",l[13]),e.$on("cancel",l[14]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s&512&&(a.title=n[9]("menu.removeKey")),s&1049088&&(a.$$scope={dirty:s,ctx:n}),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Jl(l){let e,t,n=l[9]("menu.removeKeyConfirm")+"",s;return{c(){e=v("div"),t=v("span"),s=U(n),this.h()},l(a){e=A(a,"DIV",{class:!0});var r=k(e);t=A(r,"SPAN",{});var o=k(t);s=Z(o,n),o.forEach(f),r.forEach(f),this.h()},h(){g(e,"class","confirmation svelte-r7zc73")},m(a,r){G(a,e,r),p(e,t),p(t,s)},p(a,r){r&512&&n!==(n=a[9]("menu.removeKeyConfirm")+"")&&V(s,n)},d(a){a&&f(e)}}}function Wl(l){let e,t,n=l[9]("menu.inputKeyTxt")+"",s,a,r,o,c,u,i,d,m,h,b,D,_,E,B,J,y=l[4]&&Mt(l);function N(I,w){return I[7]?Vl:I[6]?Fl:zl}let Y=N(l),R=Y(l);const $=[Xl,Pl],j=[];function L(I,w){return I[4]?0:1}return b=L(l),D=j[b]=$[b](l),{c(){e=v("form"),t=v("label"),s=U(n),a=T(),r=v("div"),o=v("div"),c=v("input"),i=T(),y&&y.c(),d=T(),m=v("div"),R.c(),h=T(),D.c(),this.h()},l(I){e=A(I,"FORM",{class:!0});var w=k(e);t=A(w,"LABEL",{for:!0,class:!0});var O=k(t);s=Z(O,n),O.forEach(f),a=M(w),r=A(w,"DIV",{class:!0});var P=k(r);o=A(P,"DIV",{class:!0,style:!0});var z=k(o);c=A(z,"INPUT",{type:!0,id:!0,placeholder:!0,class:!0}),i=M(z),y&&y.l(z),z.forEach(f),d=M(P),m=A(P,"DIV",{class:!0});var ee=k(m);R.l(ee),ee.forEach(f),h=M(P),D.l(P),P.forEach(f),w.forEach(f),this.h()},h(){g(t,"for","key"),g(t,"class","svelte-r7zc73"),g(c,"type","text"),g(c,"id","key"),g(c,"placeholder",u=l[9]("menu.inputKeyPlaceholder")),c.disabled=l[4],g(c,"class","svelte-r7zc73"),oe(c,"error",l[1]||!l[6]&&l[4]),g(o,"class","field"),ne(o,"position","relative"),g(m,"class","note svelte-r7zc73"),g(r,"class","input svelte-r7zc73"),g(e,"class","row svelte-r7zc73")},m(I,w){G(I,e,w),p(e,t),p(t,s),p(e,a),p(e,r),p(r,o),p(o,c),rt(c,l[0]),p(o,i),y&&y.m(o,null),p(r,d),p(r,m),R.m(m,null),p(r,h),j[b].m(r,null),E=!0,B||(J=[se(c,"input",l[17]),se(e,"submit",Xt(function(){Ht(l[2]?null:l[11])&&(l[2]?null:l[11]).apply(this,arguments)}))],B=!0)},p(I,w){l=I,(!E||w&512)&&n!==(n=l[9]("menu.inputKeyTxt")+"")&&V(s,n),(!E||w&512&&u!==(u=l[9]("menu.inputKeyPlaceholder")))&&g(c,"placeholder",u),(!E||w&16)&&(c.disabled=l[4]),w&1&&c.value!==l[0]&&rt(c,l[0]),w&82&&oe(c,"error",l[1]||!l[6]&&l[4]),l[4]?y?y.p(l,w):(y=Mt(l),y.c(),y.m(o,null)):y&&(y.d(1),y=null),Y===(Y=N(l))&&R?R.p(l,w):(R.d(1),R=Y(l),R&&(R.c(),R.m(m,null)));let O=b;b=L(l),b===O?j[b].p(l,w):(pe(),W(j[O],1,1,()=>{j[O]=null}),me(),D=j[b],D?D.p(l,w):(D=j[b]=$[b](l),D.c()),S(D,1),D.m(r,null))},i(I){E||(S(D),_||ie(()=>{_=fe(e,de,{}),_.start()}),E=!0)},o(I){W(D),E=!1},d(I){I&&f(e),y&&y.d(),R.d(),j[b].d(),B=!1,Ue(J)}}}function Ol(l){let e,t,n,s,a=l[9]("menu.checkingKey")+"",r,o;return t=new Pe({props:{type:"loader"}}),{c(){e=v("div"),Q(t.$$.fragment),n=T(),s=v("span"),r=U(a),this.h()},l(c){e=A(c,"DIV",{class:!0});var u=k(e);K(t.$$.fragment,u),n=M(u),s=A(u,"SPAN",{class:!0});var i=k(s);r=Z(i,a),i.forEach(f),u.forEach(f),this.h()},h(){g(s,"class","svelte-r7zc73"),g(e,"class","row loader svelte-r7zc73")},m(c,u){G(c,e,u),q(t,e,null),p(e,n),p(e,s),p(s,r),o=!0},p(c,u){(!o||u&512)&&a!==(a=c[9]("menu.checkingKey")+"")&&V(r,a)},i(c){o||(S(t.$$.fragment,c),o=!0)},o(c){W(t.$$.fragment,c),o=!1},d(c){c&&f(e),x(t)}}}function Mt(l){let e,t,n,s,a;return{c(){e=v("button"),t=v("i"),this.h()},l(r){e=A(r,"BUTTON",{class:!0});var o=k(e);t=A(o,"I",{class:!0}),k(t).forEach(f),o.forEach(f),this.h()},h(){g(t,"class",n="gi-eye"+(l[0].includes("\u273C")?"-slash":"")),g(e,"class","toggle-visible svelte-r7zc73")},m(r,o){G(r,e,o),p(e,t),s||(a=se(e,"click",Xt(l[12])),s=!0)},p(r,o){o&1&&n!==(n="gi-eye"+(r[0].includes("\u273C")?"-slash":""))&&g(t,"class",n)},d(r){r&&f(e),s=!1,a()}}}function zl(l){let e,t,n=l[9]("menu.getNewKey")+"",s,a,r;function o(i,d){return i[5]&&i[5]!=="none"?Cl:!i[6]&&i[4]?Ll:$l}let c=o(l),u=c(l);return{c(){u.c(),e=T(),t=v("a"),s=U(n),this.h()},l(i){u.l(i),e=M(i),t=A(i,"A",{href:!0,target:!0});var d=k(t);s=Z(d,n),d.forEach(f),this.h()},h(){g(t,"href","https://ko-fi.com/post/AdFree-Wish-Simulator-Enjoy-Simulator-Without-Ads-G2G2DQ57O"),g(t,"target","_blank")},m(i,d){u.m(i,d),G(i,e,d),G(i,t,d),p(t,s),a||(r=se(t,"click",we(l[16])),a=!0)},p(i,d){c===(c=o(i))&&u?u.p(i,d):(u.d(1),u=c(i),u&&(u.c(),u.m(e.parentNode,e))),d&512&&n!==(n=i[9]("menu.getNewKey")+"")&&V(s,n)},d(i){u.d(i),i&&f(e),i&&f(t),a=!1,r()}}}function Fl(l){let e,t=l[9]("menu.adFreeUser")+"",n;return{c(){e=v("span"),n=U(t),this.h()},l(s){e=A(s,"SPAN",{class:!0});var a=k(e);n=Z(a,t),a.forEach(f),this.h()},h(){g(e,"class","keyValid svelte-r7zc73")},m(s,a){G(s,e,a),p(e,n)},p(s,a){a&512&&t!==(t=s[9]("menu.adFreeUser")+"")&&V(n,t)},d(s){s&&f(e)}}}function Vl(l){let e,t=l[9]("menu.verifyFail")+"",n;return{c(){e=v("span"),n=U(t),this.h()},l(s){e=A(s,"SPAN",{class:!0});var a=k(e);n=Z(a,t),a.forEach(f),this.h()},h(){g(e,"class","invalid svelte-r7zc73")},m(s,a){G(s,e,a),p(e,n)},p(s,a){a&512&&t!==(t=s[9]("menu.verifyFail")+"")&&V(n,t)},d(s){s&&f(e)}}}function $l(l){let e,t=l[9]("menu.noKey")+"",n;return{c(){e=v("span"),n=U(t)},l(s){e=A(s,"SPAN",{});var a=k(e);n=Z(a,t),a.forEach(f)},m(s,a){G(s,e,a),p(e,n)},p(s,a){a&512&&t!==(t=s[9]("menu.noKey")+"")&&V(n,t)},d(s){s&&f(e)}}}function Ll(l){let e,t=l[9]("menu.invalidKey")+"",n;return{c(){e=v("span"),n=U(t),this.h()},l(s){e=A(s,"SPAN",{class:!0});var a=k(e);n=Z(a,t),a.forEach(f),this.h()},h(){g(e,"class","invalid svelte-r7zc73")},m(s,a){G(s,e,a),p(e,n)},p(s,a){a&512&&t!==(t=s[9]("menu.invalidKey")+"")&&V(n,t)},d(s){s&&f(e)}}}function Cl(l){let e,t=l[9]("menu.keyExpired1")+"",n;return{c(){e=v("span"),n=U(t),this.h()},l(s){e=A(s,"SPAN",{class:!0});var a=k(e);n=Z(a,t),a.forEach(f),this.h()},h(){g(e,"class","invalid svelte-r7zc73")},m(s,a){G(s,e,a),p(e,n)},p(s,a){a&512&&t!==(t=s[9]("menu.keyExpired1")+"")&&V(n,t)},d(s){s&&f(e)}}}function Pl(l){let e,t;return e=new We({props:{disabled:!l[0]||l[2],$$slots:{default:[Hl]},$$scope:{ctx:l}}}),e.$on("click",l[11]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s&5&&(a.disabled=!n[0]||n[2]),s&1049092&&(a.$$scope={dirty:s,ctx:n}),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Xl(l){let e,t;return e=new We({props:{type:"cancel",$$slots:{default:[Ql]},$$scope:{ctx:l}}}),e.$on("click",l[15]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s&1049088&&(a.$$scope={dirty:s,ctx:n}),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Hl(l){let e=(l[2]?l[9]("waiting"):l[9]("menu.getpro"))+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s&516&&e!==(e=(n[2]?n[9]("waiting"):n[9]("menu.getpro"))+"")&&V(t,e)},d(n){n&&f(t)}}}function Ql(l){let e=l[9]("menu.removeKey")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s&512&&e!==(e=n[9]("menu.removeKey")+"")&&V(t,e)},d(n){n&&f(t)}}}function Kl(l){let e,t,n,s,a,r,o,c,u,i,d,m=l[9]("menu.authorNotes")+"",h,b,D,_=l[8]&&Tt(l);const E=[Ol,Wl],B=[];function J(y,N){return y[3]?0:1}return n=J(l),s=B[n]=E[n](l),{c(){_&&_.c(),e=T(),t=v("div"),s.c(),a=T(),r=v("div"),o=v("picture"),c=v("img"),i=T(),d=v("p"),h=U(m),this.h()},l(y){_&&_.l(y),e=M(y),t=A(y,"DIV",{class:!0,style:!0});var N=k(t);s.l(N),a=M(N),r=A(N,"DIV",{class:!0});var Y=k(r);o=A(Y,"PICTURE",{class:!0});var R=k(o);c=A(R,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),R.forEach(f),i=M(Y),d=A(Y,"P",{class:!0});var $=k(d);h=Z($,m),$.forEach(f),Y.forEach(f),N.forEach(f),this.h()},h(){Ee(c.src,u=l[10]["imbroke.webp"])||g(c,"src",u),g(c,"alt","I'm Broke"),g(c,"crossorigin","anonymous"),g(c,"class","svelte-r7zc73"),g(o,"class","svelte-r7zc73"),g(d,"class","svelte-r7zc73"),g(r,"class","admin-note svelte-r7zc73"),g(t,"class","content-container svelte-r7zc73"),ne(t,"--bg-icon","url('"+l[10]["modal-bg-icon.png"]+"')")},m(y,N){_&&_.m(y,N),G(y,e,N),G(y,t,N),B[n].m(t,null),p(t,a),p(t,r),p(r,o),p(o,c),p(r,i),p(r,d),p(d,h),D=!0},p(y,[N]){y[8]?_?(_.p(y,N),N&256&&S(_,1)):(_=Tt(y),_.c(),S(_,1),_.m(e.parentNode,e)):_&&(pe(),W(_,1,1,()=>{_=null}),me());let Y=n;n=J(y),n===Y?B[n].p(y,N):(pe(),W(B[Y],1,1,()=>{B[Y]=null}),me(),s=B[n],s?s.p(y,N):(s=B[n]=E[n](y),s.c()),S(s,1),s.m(t,a)),(!D||N&1024&&!Ee(c.src,u=y[10]["imbroke.webp"]))&&g(c,"src",u),(!D||N&512)&&m!==(m=y[9]("menu.authorNotes")+"")&&V(h,m),(!D||N&1024)&&ne(t,"--bg-icon","url('"+y[10]["modal-bg-icon.png"]+"')")},i(y){D||(S(_),S(s),b||ie(()=>{b=fe(t,de,{duration:200}),b.start()}),D=!0)},o(y){W(_),W(s),D=!1},d(y){_&&_.d(y),y&&f(e),y&&f(t),B[n].d()}}}function ql(l,e,t){let n,s;le(l,Ae,R=>t(9,n=R)),le(l,lt,R=>t(10,s=R));let a="",r="",o=!1,c=!1;const u=async()=>{re(),t(2,c=!0);const{msg:R,validity:$}=await Fe.verify(a);if($)return window.location.reload();t(1,o=!$),Me({message:R,type:o?"error":""}),t(2,c=!1)};let i=!0,d=!1,m="",h=!1,b=!1;const D=async()=>{const{validity:R,storedKey:$,status:j,expiryDate:L}=await Fe.initialLoad();t(7,b=j==="offline"),r=$,t(4,d=!!$),t(6,h=R),t(5,m=L),d&&t(0,a="\u273C\u273C\u273C\u273C\u273C"),t(3,i=!1)},_=()=>{t(0,a=a.includes("\u273C")?r:"\u273C\u273C\u273C\u273C\u273C")};let E=!1;const B=()=>{re(),Fe.clear(),D(),en.set(!1),Bn.set(!0),t(8,E=!1),t(0,a="")},J=()=>t(8,E=!1),y=()=>{t(8,E=!0),re()};Ye(D);function N(R){Pt.call(this,l,R)}function Y(){a=this.value,t(0,a)}return[a,o,c,i,d,m,h,b,E,n,s,u,_,B,J,y,N,Y]}class xl extends ge{constructor(e){super(),_e(this,e,ql,Kl,ve,{})}}function Ut(l,e,t){const n=l.slice();return n[32]=e[t].itemID,n[33]=e[t].vision,n[34]=e[t].complete,n[35]=e[t].images!==void 0?e[t].images:{},n[36]=e[t].hostedImages,n[37]=e[t].isChanged,n[38]=e[t].blocked,n}function Zt(l){let e,t;return e=new Xn({props:{idToDelete:l[6]}}),e.$on("done",l[17]),e.$on("error",l[16]),e.$on("cancel",l[15]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s[0]&64&&(a.idToDelete=n[6]),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function es(l){let e,t,n=l[8]("customBanner.createBanner")+"",s;return{c(){e=v("h1"),t=v("span"),s=U(n),this.h()},l(a){e=A(a,"H1",{class:!0});var r=k(e);t=A(r,"SPAN",{});var o=k(t);s=Z(o,n),o.forEach(f),r.forEach(f),this.h()},h(){g(e,"class","svelte-mgbfbe")},m(a,r){G(a,e,r),p(e,t),p(t,s)},p(a,r){r[0]&256&&n!==(n=a[8]("customBanner.createBanner")+"")&&V(s,n)},d(a){a&&f(e)}}}function ts(l){let e,t,n=l[8]("customBanner.yourBanners")+"",s,a,r,o,c,u;return{c(){e=v("h1"),t=v("span"),s=U(n),a=T(),r=v("button"),o=U("i"),this.h()},l(i){e=A(i,"H1",{class:!0});var d=k(e);t=A(d,"SPAN",{});var m=k(t);s=Z(m,n),m.forEach(f),a=M(d),r=A(d,"BUTTON",{class:!0});var h=k(r);o=Z(h,"i"),h.forEach(f),d.forEach(f),this.h()},h(){g(r,"class","question svelte-mgbfbe"),g(e,"class","svelte-mgbfbe")},m(i,d){G(i,e,d),p(e,t),p(t,s),p(e,a),p(e,r),p(r,o),c||(u=se(r,"click",l[11]),c=!0)},p(i,d){d[0]&256&&n!==(n=i[8]("customBanner.yourBanners")+"")&&V(s,n)},d(i){i&&f(e),c=!1,u()}}}function Yt(l){let e,t=l[8]("customBanner.limitation")+"",n;return{c(){e=v("div"),n=U(t),this.h()},l(s){e=A(s,"DIV",{class:!0});var a=k(e);n=Z(a,t),a.forEach(f),this.h()},h(){g(e,"class","notice svelte-mgbfbe")},m(s,a){G(s,e,a),p(e,n)},p(s,a){a[0]&256&&t!==(t=s[8]("customBanner.limitation")+"")&&V(n,t)},d(s){s&&f(e)}}}function ns(l){let e,t,n,s;const a=[as,ss],r=[];function o(c,u){return c[3]?0:1}return e=o(l),t=r[e]=a[e](l),{c(){t.c(),n=be()},l(c){t.l(c),n=be()},m(c,u){r[e].m(c,u),G(c,n,u),s=!0},p(c,u){let i=e;e=o(c),e===i?r[e].p(c,u):(pe(),W(r[i],1,1,()=>{r[i]=null}),me(),t=r[e],t?t.p(c,u):(t=r[e]=a[e](c),t.c()),S(t,1),t.m(n.parentNode,n))},i(c){s||(S(t),s=!0)},o(c){W(t),s=!1},d(c){r[e].d(c),c&&f(n)}}}function ls(l){let e,t,n;return t=new Pe({props:{type:"loader"}}),{c(){e=v("div"),Q(t.$$.fragment),this.h()},l(s){e=A(s,"DIV",{class:!0});var a=k(e);K(t.$$.fragment,a),a.forEach(f),this.h()},h(){g(e,"class","row loader svelte-mgbfbe")},m(s,a){G(s,e,a),q(t,e,null),n=!0},p:te,i(s){n||(S(t.$$.fragment,s),n=!0)},o(s){W(t.$$.fragment,s),n=!1},d(s){s&&f(e),x(t)}}}function ss(l){let e,t,n,s,a=l[4].length>0&&jt(l);function r(u,i){return u[10]||u[4].length<3?os:rs}let o=r(l),c=o(l);return{c(){e=v("div"),a&&a.c(),t=T(),c.c(),this.h()},l(u){e=A(u,"DIV",{class:!0});var i=k(e);a&&a.l(i),t=M(i),c.l(i),i.forEach(f),this.h()},h(){g(e,"class","row svelte-mgbfbe")},m(u,i){G(u,e,i),a&&a.m(e,null),p(e,t),c.m(e,null),s=!0},p(u,i){u[4].length>0?a?a.p(u,i):(a=jt(u),a.c(),a.m(e,t)):a&&(a.d(1),a=null),o===(o=r(u))&&c?c.p(u,i):(c.d(1),c=o(u),c&&(c.c(),c.m(e,null)))},i(u){s||(u&&ie(()=>{n||(n=Se(e,de,{duration:250},!0)),n.run(1)}),s=!0)},o(u){u&&(n||(n=Se(e,de,{duration:250},!1)),n.run(0)),s=!1},d(u){u&&f(e),a&&a.d(),c.d(),u&&n&&n.end()}}}function as(l){let e,t,n,s,a,r,o,c,u,i,d,m,h,b,D,_,E,B,J,y,N,Y;return y=new We({props:{width:"200px",$$slots:{default:[is]},$$scope:{ctx:l}}}),y.$on("click",l[11]),{c(){e=v("div"),t=v("article"),n=v("p"),s=U(`I will be monitoring this Feature over the coming period. If this feature is not found
-							to be useful or is misused to share inappropriate content, I may limit or even disable
-							it. I hope you are willing to provide feedback to help improve the quality of this
-							simulator site.`),a=T(),r=v("p"),o=U("Every banner you add is saved in your browser's memory. "),c=v("b"),u=U("WishSimulator.App"),i=U(` does not
-							collect or store your banner data in cloud storage unless you click the Share Button.`),d=T(),m=v("p"),h=v("b"),b=U("WishSimulator.App"),D=U(` does not collect your personal information. So, if an
-							incident occurs on your device and causes your browser to clear your local storage,
-							you will also lose all your data, and you will not be able to edit the banner(s) you
-							have created.
-							`),_=v("u"),E=U("In such a case, what you can do is create a new custom banner"),B=U("."),J=T(),Q(y.$$.fragment),this.h()},l(R){e=A(R,"DIV",{class:!0});var $=k(e);t=A($,"ARTICLE",{class:!0});var j=k(t);n=A(j,"P",{class:!0});var L=k(n);s=Z(L,`I will be monitoring this Feature over the coming period. If this feature is not found
-							to be useful or is misused to share inappropriate content, I may limit or even disable
-							it. I hope you are willing to provide feedback to help improve the quality of this
-							simulator site.`),L.forEach(f),a=M(j),r=A(j,"P",{class:!0});var I=k(r);o=Z(I,"Every banner you add is saved in your browser's memory. "),c=A(I,"B",{});var w=k(c);u=Z(w,"WishSimulator.App"),w.forEach(f),i=Z(I,` does not
-							collect or store your banner data in cloud storage unless you click the Share Button.`),I.forEach(f),d=M(j),m=A(j,"P",{class:!0});var O=k(m);h=A(O,"B",{});var P=k(h);b=Z(P,"WishSimulator.App"),P.forEach(f),D=Z(O,` does not collect your personal information. So, if an
-							incident occurs on your device and causes your browser to clear your local storage,
-							you will also lose all your data, and you will not be able to edit the banner(s) you
-							have created.
-							`),_=A(O,"U",{});var z=k(_);E=Z(z,"In such a case, what you can do is create a new custom banner"),z.forEach(f),B=Z(O,"."),O.forEach(f),j.forEach(f),J=M($),K(y.$$.fragment,$),$.forEach(f),this.h()},h(){g(n,"class","svelte-mgbfbe"),g(r,"class","svelte-mgbfbe"),g(m,"class","svelte-mgbfbe"),g(t,"class","svelte-mgbfbe"),g(e,"class","disclaimer svelte-mgbfbe")},m(R,$){G(R,e,$),p(e,t),p(t,n),p(n,s),p(t,a),p(t,r),p(r,o),p(r,c),p(c,u),p(r,i),p(t,d),p(t,m),p(m,h),p(h,b),p(m,D),p(m,_),p(_,E),p(m,B),p(e,J),q(y,e,null),Y=!0},p(R,$){const j={};$[1]&1024&&(j.$$scope={dirty:$,ctx:R}),y.$set(j)},i(R){Y||(S(y.$$.fragment,R),R&&ie(()=>{N||(N=Se(e,de,{duration:250},!0)),N.run(1)}),Y=!0)},o(R){W(y.$$.fragment,R),R&&(N||(N=Se(e,de,{duration:250},!1)),N.run(0)),Y=!1},d(R){R&&f(e),x(y),R&&N&&N.end()}}}function jt(l){let e,t=l[4],n=[];for(let s=0;s<t.length;s+=1)n[s]=Ot(Ut(l,t,s));return{c(){for(let s=0;s<n.length;s+=1)n[s].c();e=be()},l(s){for(let a=0;a<n.length;a+=1)n[a].l(s);e=be()},m(s,a){for(let r=0;r<n.length;r+=1)n[r].m(s,a);G(s,e,a)},p(s,a){if(a[0]&288528){t=s[4];let r;for(r=0;r<t.length;r+=1){const o=Ut(s,t,r);n[r]?n[r].p(o,a):(n[r]=Ot(o),n[r].c(),n[r].m(e.parentNode,e))}for(;r<n.length;r+=1)n[r].d(1);n.length=t.length}},d(s){Ze(n,s),s&&f(e)}}}function Jt(l){let e,t;return{c(){e=v("i"),this.h()},l(n){e=A(n,"I",{class:!0}),k(e).forEach(f),this.h()},h(){g(e,"class",t="sync gi-"+(l[37]?"cloud-sync":"network")+" svelte-mgbfbe")},m(n,s){G(n,e,s)},p(n,s){s[0]&16&&t!==(t="sync gi-"+(n[37]?"cloud-sync":"network")+" svelte-mgbfbe")&&g(e,"class",t)},d(n){n&&f(e)}}}function Wt(l){let e,t,n,s,a=l[8]("customBanner.edit")+"",r,o,c;function u(){return l[22](l[32])}return{c(){e=v("button"),t=v("i"),n=T(),s=v("span"),r=U(a),this.h()},l(i){e=A(i,"BUTTON",{class:!0});var d=k(e);t=A(d,"I",{class:!0}),k(t).forEach(f),n=M(d),s=A(d,"SPAN",{});var m=k(s);r=Z(m,a),m.forEach(f),d.forEach(f),this.h()},h(){g(t,"class","gi-pen svelte-mgbfbe"),g(e,"class","edit svelte-mgbfbe")},m(i,d){G(i,e,d),p(e,t),p(e,n),p(e,s),p(s,r),o||(c=se(e,"click",u),o=!0)},p(i,d){l=i,d[0]&256&&a!==(a=l[8]("customBanner.edit")+"")&&V(r,a)},d(i){i&&f(e),o=!1,c()}}}function Ot(l){let e,t,n,s,a,r,o,c,u,i,d,m,h,b,D=l[8]("customBanner.delete")+"",_,E,B,J,y,N=l[36]&&Jt(l);function Y(){return l[21](l[32])}let R=!(l[4].length>3&&!l[10])&&!l[38]&&Wt(l);function $(){return l[23](l[32],l[35])}return{c(){e=v("div"),N&&N.c(),t=T(),n=v("button"),s=v("img"),c=T(),u=v("div"),R&&R.c(),i=T(),d=v("button"),m=v("i"),h=T(),b=v("span"),_=U(D),E=T(),this.h()},l(j){e=A(j,"DIV",{class:!0,id:!0});var L=k(e);N&&N.l(L),t=M(L),n=A(L,"BUTTON",{class:!0,"data-text":!0});var I=k(n);s=A(I,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),I.forEach(f),c=M(L),u=A(L,"DIV",{class:!0});var w=k(u);R&&R.l(w),i=M(w),d=A(w,"BUTTON",{class:!0});var O=k(d);m=A(O,"I",{class:!0}),k(m).forEach(f),h=M(O),b=A(O,"SPAN",{});var P=k(b);_=Z(P,D),P.forEach(f),O.forEach(f),w.forEach(f),E=M(L),L.forEach(f),this.h()},h(){Ee(s.src,a=l[35]?.thumbnail||l[9][`blank/${l[33]||"pyro"}`])||g(s,"src",a),g(s,"alt","Custom Banner"),g(s,"crossorigin","anonymous"),g(s,"class","svelte-mgbfbe"),g(n,"class","banner-item svelte-mgbfbe"),n.disabled=r=!l[34]||l[38],g(n,"data-text",o=l[34]?l[8]("customBanner.inappropriate"):l[8]("customBanner.incomplete")),g(m,"class","gi-delete svelte-mgbfbe"),g(d,"class","delete svelte-mgbfbe"),g(u,"class","action svelte-mgbfbe"),g(e,"class","item svelte-mgbfbe"),g(e,"id",B=l[32])},m(j,L){G(j,e,L),N&&N.m(e,null),p(e,t),p(e,n),p(n,s),p(e,c),p(e,u),R&&R.m(u,null),p(u,i),p(u,d),p(d,m),p(d,h),p(d,b),p(b,_),p(e,E),J||(y=[se(n,"click",function(){Ht(l[34]?Y:null)&&(l[34]?Y:null).apply(this,arguments)}),se(d,"click",$)],J=!0)},p(j,L){l=j,l[36]?N?N.p(l,L):(N=Jt(l),N.c(),N.m(e,t)):N&&(N.d(1),N=null),L[0]&528&&!Ee(s.src,a=l[35]?.thumbnail||l[9][`blank/${l[33]||"pyro"}`])&&g(s,"src",a),L[0]&16&&r!==(r=!l[34]||l[38])&&(n.disabled=r),L[0]&272&&o!==(o=l[34]?l[8]("customBanner.inappropriate"):l[8]("customBanner.incomplete"))&&g(n,"data-text",o),!(l[4].length>3&&!l[10])&&!l[38]?R?R.p(l,L):(R=Wt(l),R.c(),R.m(u,i)):R&&(R.d(1),R=null),L[0]&256&&D!==(D=l[8]("customBanner.delete")+"")&&V(_,D),L[0]&16&&B!==(B=l[32])&&g(e,"id",B)},d(j){j&&f(e),N&&N.d(),R&&R.d(),J=!1,Ue(y)}}}function rs(l){let e,t,n,s,a,r=l[8]("customBanner.memberToUnlock")+"",o,c,u;return{c(){e=v("div"),t=v("button"),n=v("i"),s=T(),a=v("span"),o=U(r),this.h()},l(i){e=A(i,"DIV",{class:!0});var d=k(e);t=A(d,"BUTTON",{class:!0});var m=k(t);n=A(m,"I",{class:!0}),k(n).forEach(f),s=M(m),a=A(m,"SPAN",{class:!0});var h=k(a);o=Z(h,r),h.forEach(f),m.forEach(f),d.forEach(f),this.h()},h(){g(n,"class","gi-lock svelte-mgbfbe"),g(a,"class","svelte-mgbfbe"),g(t,"class","add svelte-mgbfbe"),g(e,"class","item blank locked svelte-mgbfbe")},m(i,d){G(i,e,d),p(e,t),p(t,n),p(t,s),p(t,a),p(a,o),c||(u=se(t,"click",l[25]),c=!0)},p(i,d){d[0]&256&&r!==(r=i[8]("customBanner.memberToUnlock")+"")&&V(o,r)},d(i){i&&f(e),c=!1,u()}}}function os(l){let e,t,n,s,a,r=l[8]("customBanner.addBanner")+"",o,c,u;return{c(){e=v("div"),t=v("button"),n=v("i"),s=T(),a=v("span"),o=U(r),this.h()},l(i){e=A(i,"DIV",{class:!0});var d=k(e);t=A(d,"BUTTON",{class:!0});var m=k(t);n=A(m,"I",{class:!0}),k(n).forEach(f),s=M(m),a=A(m,"SPAN",{class:!0});var h=k(a);o=Z(h,r),h.forEach(f),m.forEach(f),d.forEach(f),this.h()},h(){g(n,"class","gi-plus svelte-mgbfbe"),g(a,"class","svelte-mgbfbe"),g(t,"class","add svelte-mgbfbe"),g(e,"class","item blank svelte-mgbfbe")},m(i,d){G(i,e,d),p(e,t),p(t,n),p(t,s),p(t,a),p(a,o),c||(u=se(t,"click",l[24]),c=!0)},p(i,d){d[0]&256&&r!==(r=i[8]("customBanner.addBanner")+"")&&V(o,r)},d(i){i&&f(e),c=!1,u()}}}function is(l){let e;return{c(){e=U("Create Banner")},l(t){e=Z(t,"Create Banner")},m(t,n){G(t,e,n)},d(t){t&&f(e)}}}function cs(l){let e,t,n,s,a,r,o,c,u,i,d,m,h=l[5]&&Zt(l);function b(N,Y){return N[2]&&!N[3]?ts:es}let D=b(l),_=D(l),E=l[4].length>3&&!l[10]&&!l[3]&&Yt(l);const B=[ls,ns],J=[];function y(N,Y){return N[2]?1:0}return c=y(l),u=J[c]=B[c](l),{c(){h&&h.c(),e=T(),t=v("div"),n=v("div"),_.c(),s=T(),E&&E.c(),r=T(),o=v("div"),u.c(),this.h()},l(N){h&&h.l(N),e=M(N),t=A(N,"DIV",{class:!0,style:!0});var Y=k(t);n=A(Y,"DIV",{class:!0});var R=k(n);_.l(R),s=M(R),E&&E.l(R),R.forEach(f),r=M(Y),o=A(Y,"DIV",{class:!0});var $=k(o);u.l($),$.forEach(f),Y.forEach(f),this.h()},h(){g(n,"class","header svelte-mgbfbe"),ie(()=>l[20].call(n)),g(o,"class","wrapper svelte-mgbfbe"),oe(o,"ready",l[2]),g(t,"class","content-container svelte-mgbfbe"),ne(t,"--bg-icon","url('"+l[9]["modal-bg-icon.png"]+"')"),ne(t,"--item-width",l[7]+"px"),ne(t,"--height",l[1]+"px"),ie(()=>l[26].call(t))},m(N,Y){h&&h.m(N,Y),G(N,e,Y),G(N,t,Y),p(t,n),_.m(n,null),p(n,s),E&&E.m(n,null),a=ot(n,l[20].bind(n)),p(t,r),p(t,o),J[c].m(o,null),i=ot(t,l[26].bind(t)),m=!0},p(N,Y){N[5]?h?(h.p(N,Y),Y[0]&32&&S(h,1)):(h=Zt(N),h.c(),S(h,1),h.m(e.parentNode,e)):h&&(pe(),W(h,1,1,()=>{h=null}),me()),D===(D=b(N))&&_?_.p(N,Y):(_.d(1),_=D(N),_&&(_.c(),_.m(n,s))),N[4].length>3&&!N[10]&&!N[3]?E?E.p(N,Y):(E=Yt(N),E.c(),E.m(n,null)):E&&(E.d(1),E=null);let R=c;c=y(N),c===R?J[c].p(N,Y):(pe(),W(J[R],1,1,()=>{J[R]=null}),me(),u=J[c],u?u.p(N,Y):(u=J[c]=B[c](N),u.c()),S(u,1),u.m(o,null)),Y[0]&4&&oe(o,"ready",N[2]),(!m||Y[0]&512)&&ne(t,"--bg-icon","url('"+N[9]["modal-bg-icon.png"]+"')"),(!m||Y[0]&128)&&ne(t,"--item-width",N[7]+"px"),(!m||Y[0]&2)&&ne(t,"--height",N[1]+"px")},i(N){m||(S(h),S(u),d||ie(()=>{d=fe(t,de,{duration:200}),d.start()}),m=!0)},o(N){W(h),W(u),m=!1},d(N){h&&h.d(N),N&&f(e),N&&f(t),_.d(),E&&E.d(),a(),J[c].d(),i()}}}function us(l,e,t){let n,s,a,r,o,c,u;le(l,et,C=>t(27,s=C)),le(l,qt,C=>t(28,a=C)),le(l,Ae,C=>t(8,r=C)),le(l,Gn,C=>t(19,o=C)),le(l,lt,C=>t(9,c=C)),le(l,en,C=>t(10,u=C));let i,d=0,m=!1,h=!1,b=[];const D=()=>{re(),t(3,h=!h)},_=rn;Ye(async()=>{const ue=(await _.getListByStatus("owned")).map(ce=>{const{character:ae,images:Ne,rateup:De=[],bannerName:ye}=ce,{artURL:F}=Ne||{};return ce.complete=!!F&&!!ae&&De.length>0&&!!ye,ce});t(4,b=(ue||[]).sort(({lastModified:ce},{lastModified:ae})=>new Date(ae)-new Date(ce))),t(2,m=!0),t(3,h=b.length<1)});const E=he("selectMenu"),B=he("handleMenu"),J=()=>_.put({status:"owned",itemID:Qn(111111111,999999999),createdAt:new Date().toISOString()}),y=async C=>{re(),B("mute");const ue=C||await J();Sn.set(ue),et.set(!0)};let N=!1,Y=0;const R=C=>{!C||(re("modal"),t(6,Y=C),t(5,N=!0))},$=()=>{t(5,N=!1),t(6,Y=0),re("close")},j=()=>{const C=r("customBanner.deleteFailed");Me({message:C,type:"error"})},L=()=>{t(4,b=b.filter(({itemID:ue})=>ue!=Y));const C=r("customBanner.bannerRemoved");Me({message:C,type:"success"}),t(5,N=!1),t(6,Y=0)},I=C=>{re(),B("mute");const{patch:ue,phase:ce}=a;ue==="Custom"&&ce===C&&!s||Tn.set({patch:"Custom",phase:C})};function w(){i=this.clientHeight,t(1,i)}const O=C=>I(C),P=C=>y(C),z=(C,ue)=>R(C,ue?.thumbnail),ee=()=>y(),X=()=>E("proAccess");function H(){d=this.clientWidth,t(0,d)}return l.$$.update=()=>{l.$$.dirty[0]&524289&&t(7,n=o>640?d/3:d/2)},[d,i,m,h,b,N,Y,n,r,c,u,D,E,y,R,$,j,L,I,o,w,O,P,z,ee,X,H]}class ds extends ge{constructor(e){super(),_e(this,e,us,cs,ve,{},null,[-1,-1])}}function fs(l){let e,t,n,s,a,r,o,c,u,i,d;return{c(){e=v("div"),t=v("caption"),n=U(`You don't actually need to back up your data since there is no critical information required or
-		generated within this simulator. The Backup/Restore feature becomes more useful if you have
-		custom banners to edit on different devices. However, the decision is ultimately yours.`),s=T(),a=v("button"),r=U("Sign in with Google"),o=T(),c=v("small"),u=v("i"),i=U("Cloud Sync is not yet available"),this.h()},l(m){e=A(m,"DIV",{class:!0});var h=k(e);t=A(h,"CAPTION",{class:!0});var b=k(t);n=Z(b,`You don't actually need to back up your data since there is no critical information required or
-		generated within this simulator. The Backup/Restore feature becomes more useful if you have
-		custom banners to edit on different devices. However, the decision is ultimately yours.`),b.forEach(f),s=M(h),a=A(h,"BUTTON",{type:!0,class:!0});var D=k(a);r=Z(D,"Sign in with Google"),D.forEach(f),o=M(h),c=A(h,"SMALL",{style:!0});var _=k(c);u=A(_,"I",{});var E=k(u);i=Z(E,"Cloud Sync is not yet available"),E.forEach(f),_.forEach(f),h.forEach(f),this.h()},h(){g(t,"class","svelte-qi1fu7"),g(a,"type","button"),g(a,"class","google-sign-in-button svelte-qi1fu7"),a.disabled=!0,ne(c,"font-family","'Segoe UI', Tahoma, Geneva, Verdana, sans-serif"),g(e,"class","cloud-sync svelte-qi1fu7")},m(m,h){G(m,e,h),p(e,t),p(t,n),p(e,s),p(e,a),p(a,r),p(e,o),p(e,c),p(c,u),p(u,i)},p:te,i(m){d||ie(()=>{d=fe(e,de,{}),d.start()})},o:te,d(m){m&&f(e)}}}class ps extends ge{constructor(e){super(),_e(this,e,null,fs,ve,{})}}function ms(l){let e,t,n=l[2]("backupRestore.dropFiles")+"",s,a,r,o,c;return{c(){e=v("div"),t=v("span"),s=U(n),a=T(),r=v("input"),this.h()},l(u){e=A(u,"DIV",{class:!0});var i=k(e);t=A(i,"SPAN",{});var d=k(t);s=Z(d,n),d.forEach(f),a=M(i),r=A(i,"INPUT",{class:!0,type:!0,id:!0,accept:!0}),i.forEach(f),this.h()},h(){g(r,"class","inputFile svelte-mbg36e"),g(r,"type","file"),g(r,"id","importInput"),g(r,"accept",Wn),g(e,"class","drop-content svelte-mbg36e"),oe(e,"onDrag",l[0])},m(u,i){G(u,e,i),p(e,t),p(t,s),p(e,a),p(e,r),o||(c=[se(r,"dragleave",l[7]),se(r,"drop",l[4]),se(r,"change",l[5]),se(r,"click",l[8]),se(e,"dragenter",l[3])],o=!0)},p(u,[i]){i&4&&n!==(n=u[2]("backupRestore.dropFiles")+"")&&V(s,n),i&1&&oe(e,"onDrag",u[0])},i:te,o:te,d(u){u&&f(e),o=!1,Ue(c)}}}function hs(l,e,t){let n;le(l,Ae,h=>t(2,n=h));let{legacyFileHandler:s=!1}=e,a=!1,r;const o=he("handleModalImport"),c=()=>{t(0,a=!0),t(1,r="drop")},u=async h=>{try{if(r!=="drop")return;if(t(0,a=!1),s){const D=await dt(h.dataTransfer.files);return o(D)}const b=await On(h.dataTransfer.items);return o(b)}catch(b){const{message:D}=b;Me({message:D,type:"error"}),console.error(b)}},i=async h=>{try{if(r!=="click")return;const b=await dt(h.target.files);return o(b)}catch(b){const{message:D}=b;Me({message:D,type:"error"}),console.error(b)}},d=()=>t(0,a=!1),m=()=>t(1,r="click");return l.$$set=h=>{"legacyFileHandler"in h&&t(6,s=h.legacyFileHandler)},[a,r,n,c,u,i,s,d,m]}class bs extends ge{constructor(e){super(),_e(this,e,hs,ms,ve,{legacyFileHandler:6})}}const gs=async(l,e)=>{e==="replace"&&await ws(l),e==="merge"&&await Ns(l),await _s(l.accessKey)},_s=l=>{if(!an.get("accessKey"))return Fe.verify(l)},{clearIDB:vs,addHistory:on,getAllHistories:As}=qn,{clear:ks,put:tt,get:zt}=rn,ws=async({settings:l,histories:e,banners:t}={})=>{await ks();for(const a of t)await tt(a);await vs();for(const a of e)await on(a);const{date:n}=nt.get("export");l.data.export.date=n;const s=JSON.stringify(l);localStorage.setItem("WishSimulator.App",s),cn(l.data)},Ns=async({settings:l,histories:e,banners:t}={})=>{await Is(t),await Es(e);const n=Ds(l.data);cn(n)},cn=(l={})=>{const{balance:e={},config:t={},rollcounter:n={}}=l;["acquaint","intertwined","genesis","primogem","stardust","starglitter"].forEach(d=>d in e?ze[d].set(e[d]):d.match("primo")?ze[d].set(ut.primogem):d.match(/(acquaint|intertwined)/)?ze[d].set(ut.fates):ze[d].set(0));const{beginner:a=0}=n,r=20-a;Mn.set(r<0?0:r),Un.set(a<20);const{locale:o,autoskip:c,wishAmount:u,multipull:i}=t;Ve.set(o),xe.set(c),xt.set(u),qe.set(i)},Is=async(l=[])=>{const e=[];for(const o of l){const{itemID:c,shareID:u,dateFromImport:i}=o,d=await zt(c),m=new Date(i)>new Date(d?.lastModified);if(u&&!d?.shareID&&e.push({id:u,itemID:c}),!d||m){const h=m?{...o,isChanged:!0}:o;await tt(h);continue}}if(e.length<1)return;const t=e.map(({id:o})=>o).join(","),{success:n,data:s=[]}=await Kn.getData(t,"multi")||{};if(!n)return;const a=s.map(({id:o})=>o),r=e.filter(({id:o})=>!a.includes(o));for(let o=0;o<r.length;o++){const{itemID:c}=r[o]||{},u=await zt(c);delete u.hostedImages,delete u.imageHash,delete u.shareID,u.imgChanged={artURL:!0,faceURL:!0,thumbnail:!0},u.lastModified=new Date().toISOString(),u.isChanged=!0,await tt(u)}},Es=async l=>{const t=(await As()).map(({itemID:n,bannerName:s,pity:a,time:r})=>`${n}/${s}/${a}/${r}`);for(let n=0;n<l.length;n++){const s=l[n],{itemID:a,bannerName:r,pity:o,time:c,banner:u}=s,i=`${a}/${r}/${o}/${c}`;t.includes(i)||(An.put({itemID:a}),await on(s),kn.put(u))}},Ds=(l={})=>{const{balance:e={},fatepoint:t=[],ownedOutfits:n=[]}=l;Object.keys(e).forEach(u=>{const d=Ke.get(u)+e[u];Ke.set(u,d)});const a=it.getAll().map(({version:u,phase:i})=>`${u}-${i}`);for(let u=0;u<t.length;u++){const i=t[u]||{},d=`${i.version}-${i.phase}`;a.includes(d)||it.restore(i)}const o=ct.getAll().map(({name:u})=>u).filter(u=>u);for(let u=0;u<n.length;u++){const i=n[u];o.includes(i.name)||(i.outfitName=i.name,ct.set(i))}const{data:c}=nt.getData();return c};function ys(l){let e,t,n=l[2]("backupRestore.importAction",{values:{fileInfo:`<strong> ${l[3].name} (${Je(l[3].size)}) </strong>`}})+"",s,a,r,o,c,u;return r=new $e({props:{id:"_merge",checked:l[0]==="merge",$$slots:{default:[Bs]},$$scope:{ctx:l}}}),r.$on("change",l[8]),c=new $e({props:{id:"_replace",checked:l[0]==="replace",$$slots:{default:[Gs]},$$scope:{ctx:l}}}),c.$on("change",l[9]),{c(){e=v("div"),t=v("caption"),s=T(),a=v("div"),Q(r.$$.fragment),o=T(),Q(c.$$.fragment),this.h()},l(i){e=A(i,"DIV",{class:!0});var d=k(e);t=A(d,"CAPTION",{class:!0});var m=k(t);m.forEach(f),s=M(d),a=A(d,"DIV",{class:!0});var h=k(a);K(r.$$.fragment,h),o=M(h),K(c.$$.fragment,h),h.forEach(f),d.forEach(f),this.h()},h(){g(t,"class","svelte-1snd1nd"),g(a,"class","import-option svelte-1snd1nd"),g(e,"class","import-content svelte-1snd1nd")},m(i,d){G(i,e,d),p(e,t),t.innerHTML=n,p(e,s),p(e,a),q(r,a,null),p(a,o),q(c,a,null),u=!0},p(i,d){(!u||d&4)&&n!==(n=i[2]("backupRestore.importAction",{values:{fileInfo:`<strong> ${i[3].name} (${Je(i[3].size)}) </strong>`}})+"")&&(t.innerHTML=n);const m={};d&1&&(m.checked=i[0]==="merge"),d&8196&&(m.$$scope={dirty:d,ctx:i}),r.$set(m);const h={};d&1&&(h.checked=i[0]==="replace"),d&8196&&(h.$$scope={dirty:d,ctx:i}),c.$set(h)},i(i){u||(S(r.$$.fragment,i),S(c.$$.fragment,i),u=!0)},o(i){W(r.$$.fragment,i),W(c.$$.fragment,i),u=!1},d(i){i&&f(e),x(r),x(c)}}}function Rs(l){let e,t,n,s,a;return n=new Pe({props:{type:"loader"}}),{c(){e=v("div"),t=v("div"),Q(n.$$.fragment),this.h()},l(r){e=A(r,"DIV",{class:!0});var o=k(e);t=A(o,"DIV",{class:!0});var c=k(t);K(n.$$.fragment,c),c.forEach(f),o.forEach(f),this.h()},h(){g(t,"class","row loader svelte-1snd1nd"),g(e,"class","import-content svelte-1snd1nd")},m(r,o){G(r,e,o),p(e,t),q(n,t,null),a=!0},p:te,i(r){a||(S(n.$$.fragment,r),s||ie(()=>{s=fe(t,de,{}),s.start()}),a=!0)},o(r){W(n.$$.fragment,r),a=!1},d(r){r&&f(e),x(n)}}}function Bs(l){let e,t=l[2]("backupRestore.mergeAction")+"";return{c(){e=v("span")},l(n){e=A(n,"SPAN",{});var s=k(e);s.forEach(f)},m(n,s){G(n,e,s),e.innerHTML=t},p(n,s){s&4&&t!==(t=n[2]("backupRestore.mergeAction")+"")&&(e.innerHTML=t)},d(n){n&&f(e)}}}function Gs(l){let e,t=l[2]("backupRestore.replaceAction")+"";return{c(){e=v("span")},l(n){e=A(n,"SPAN",{});var s=k(e);s.forEach(f)},m(n,s){G(n,e,s),e.innerHTML=t},p(n,s){s&4&&t!==(t=n[2]("backupRestore.replaceAction")+"")&&(e.innerHTML=t)},d(n){n&&f(e)}}}function Ss(l){let e,t,n,s;const a=[Rs,ys],r=[];function o(c,u){return c[1]?0:1}return e=o(l),t=r[e]=a[e](l),{c(){t.c(),n=be()},l(c){t.l(c),n=be()},m(c,u){r[e].m(c,u),G(c,n,u),s=!0},p(c,u){let i=e;e=o(c),e===i?r[e].p(c,u):(pe(),W(r[i],1,1,()=>{r[i]=null}),me(),t=r[e],t?t.p(c,u):(t=r[e]=a[e](c),t.c()),S(t,1),t.m(n.parentNode,n))},i(c){s||(S(t),s=!0)},o(c){W(t),s=!1},d(c){r[e].d(c),c&&f(n)}}}function Ts(l){let e,t;return e=new st({props:{noDimiss:!0,title:"Import Data",disabled:!l[0]||l[1],$$slots:{default:[Ss]},$$scope:{ctx:l}}}),e.$on("cancel",l[4]),e.$on("confirm",l[5]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,[s]){const a={};s&3&&(a.disabled=!n[0]||n[1]),s&8199&&(a.$$scope={dirty:s,ctx:n}),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Ms(l,e,t){let n;le(l,Ae,_=>t(2,n=_));let{importData:s={}}=e;const{file:a,parsedFile:r}=s;let o="",c=!1;const u=he("handleModalImport"),i=Lt(),d=()=>{i("cancel"),re("close")},m=async()=>{re(),t(1,c=!0),await gs(r,o),u(),t(1,c=!1)},h=(_,{detail:E})=>{const{checked:B}=E;if(B)return t(0,o=_);t(0,o="")},b=_=>h("merge",_),D=_=>h("replace",_);return l.$$set=_=>{"importData"in _&&t(7,s=_.importData)},[o,c,n,a,d,m,h,s,b,D]}class Us extends ge{constructor(e){super(),_e(this,e,Ms,Ts,ve,{importData:7})}}function Zs(l){let e,t,n=l[6]("backupRestore.desNotFound")+"",s,a;return{c(){e=v("button"),t=v("span"),s=U(n),this.h()},l(r){e=A(r,"BUTTON",{class:!0});var o=k(e);t=A(o,"SPAN",{});var c=k(t);s=Z(c,n),c.forEach(f),o.forEach(f),this.h()},h(){g(e,"class","savedFile error svelte-msml4r"),e.disabled=!0},m(r,o){G(r,e,o),p(e,t),p(t,s)},p(r,o){o&64&&n!==(n=r[6]("backupRestore.desNotFound")+"")&&V(s,n)},i(r){a||ie(()=>{a=fe(e,de,{}),a.start()})},o:te,d(r){r&&f(e)}}}function Ys(l){let e,t,n,s,a,r,o,c,u=l[6]("backupRestore.destination")+"",i,d,m,h,b,D,_,E,B,J,y,N=Je(l[0].size)+"",Y,R,$,j,L=l[6]("backupRestore.lastExport")+"",I,w,O,P,z,ee;return n=new el({props:{disabled:l[5],$$slots:{default:[Ws]},$$scope:{ctx:l}}}),n.$on("click",l[7]),{c(){e=v("div"),t=v("div"),Q(n.$$.fragment),s=T(),a=v("div"),r=v("table"),o=v("tr"),c=v("td"),i=U(u),d=T(),m=v("td"),h=v("span"),b=U(l[1]),D=T(),_=v("tr"),E=v("td"),B=U("File Size"),J=T(),y=v("td"),Y=U(N),R=T(),$=v("tr"),j=v("td"),I=U(L),w=T(),O=v("td"),P=U(l[3]),this.h()},l(X){e=A(X,"DIV",{class:!0});var H=k(e);t=A(H,"DIV",{class:!0});var C=k(t);K(n.$$.fragment,C),C.forEach(f),s=M(H),a=A(H,"DIV",{class:!0});var ue=k(a);r=A(ue,"TABLE",{class:!0});var ce=k(r);o=A(ce,"TR",{});var ae=k(o);c=A(ae,"TD",{class:!0});var Ne=k(c);i=Z(Ne,u),Ne.forEach(f),d=M(ae),m=A(ae,"TD",{class:!0});var De=k(m);h=A(De,"SPAN",{class:!0});var ye=k(h);b=Z(ye,l[1]),ye.forEach(f),De.forEach(f),ae.forEach(f),D=M(ce),_=A(ce,"TR",{});var F=k(_);E=A(F,"TD",{class:!0});var Oe=k(E);B=Z(Oe,"File Size"),Oe.forEach(f),J=M(F),y=A(F,"TD",{class:!0});var je=k(y);Y=Z(je,N),je.forEach(f),F.forEach(f),R=M(ce),$=A(ce,"TR",{});var Re=k($);j=A(Re,"TD",{class:!0});var Be=k(j);I=Z(Be,L),Be.forEach(f),w=M(Re),O=A(Re,"TD",{class:!0});var at=k(O);P=Z(at,l[3]),at.forEach(f),Re.forEach(f),ce.forEach(f),ue.forEach(f),H.forEach(f),this.h()},h(){g(t,"class","button-export svelte-msml4r"),g(c,"class","svelte-msml4r"),g(h,"class","svelte-msml4r"),g(m,"class","svelte-msml4r"),g(E,"class","svelte-msml4r"),g(y,"class","svelte-msml4r"),g(j,"class","svelte-msml4r"),g(O,"class","svelte-msml4r"),g(r,"class","svelte-msml4r"),g(a,"class","fileName svelte-msml4r"),g(e,"class","savedFile svelte-msml4r"),oe(e,"active",l[4])},m(X,H){G(X,e,H),p(e,t),q(n,t,null),p(e,s),p(e,a),p(a,r),p(r,o),p(o,c),p(c,i),p(o,d),p(o,m),p(m,h),p(h,b),p(r,D),p(r,_),p(_,E),p(E,B),p(_,J),p(_,y),p(y,Y),p(r,R),p(r,$),p($,j),p(j,I),p($,w),p($,O),p(O,P),ee=!0},p(X,H){const C={};H&32&&(C.disabled=X[5]),H&262256&&(C.$$scope={dirty:H,ctx:X}),n.$set(C),(!ee||H&64)&&u!==(u=X[6]("backupRestore.destination")+"")&&V(i,u),(!ee||H&2)&&V(b,X[1]),(!ee||H&1)&&N!==(N=Je(X[0].size)+"")&&V(Y,N),(!ee||H&64)&&L!==(L=X[6]("backupRestore.lastExport")+"")&&V(I,L),(!ee||H&8)&&V(P,X[3]),H&16&&oe(e,"active",X[4])},i(X){ee||(S(n.$$.fragment,X),z||ie(()=>{z=fe(e,de,{}),z.start()}),ee=!0)},o(X){W(n.$$.fragment,X),ee=!1},d(X){X&&f(e),x(n)}}}function js(l){let e,t;return{c(){e=v("i"),this.h()},l(n){e=A(n,"I",{class:!0}),k(e).forEach(f),this.h()},h(){g(e,"class",t="gi-"+(l[4]?"check":"cancel")+" svelte-msml4r")},m(n,s){G(n,e,s)},p(n,s){s&16&&t!==(t="gi-"+(n[4]?"check":"cancel")+" svelte-msml4r")&&g(e,"class",t)},d(n){n&&f(e)}}}function Js(l){let e;return{c(){e=v("i"),this.h()},l(t){e=A(t,"I",{class:!0}),k(e).forEach(f),this.h()},h(){g(e,"class","gi-reset svelte-msml4r")},m(t,n){G(t,e,n)},p:te,d(t){t&&f(e)}}}function Ws(l){let e,t,n,s=l[6]("backupRestore.autoExport")+"",a;function r(u,i){return u[5]?Js:js}let o=r(l),c=o(l);return{c(){e=v("div"),c.c(),t=T(),n=v("span"),a=U(s),this.h()},l(u){e=A(u,"DIV",{class:!0});var i=k(e);c.l(i),t=M(i),n=A(i,"SPAN",{class:!0});var d=k(n);a=Z(d,s),d.forEach(f),i.forEach(f),this.h()},h(){g(n,"class","svelte-msml4r"),g(e,"class","toggle svelte-msml4r")},m(u,i){G(u,e,i),c.m(e,null),p(e,t),p(e,n),p(n,a)},p(u,i){o===(o=r(u))&&c?c.p(u,i):(c.d(1),c=o(u),c&&(c.c(),c.m(e,t))),i&64&&s!==(s=u[6]("backupRestore.autoExport")+"")&&V(a,s)},d(u){u&&f(e),c.d()}}}function Os(l){let e,t,n,s;const a=[Ys,Zs],r=[];function o(c,u){return c[1]?0:c[2]===!1?1:-1}return~(e=o(l))&&(t=r[e]=a[e](l)),{c(){t&&t.c(),n=be()},l(c){t&&t.l(c),n=be()},m(c,u){~e&&r[e].m(c,u),G(c,n,u),s=!0},p(c,[u]){let i=e;e=o(c),e===i?~e&&r[e].p(c,u):(t&&(pe(),W(r[i],1,1,()=>{r[i]=null}),me()),~e?(t=r[e],t?t.p(c,u):(t=r[e]=a[e](c),t.c()),S(t,1),t.m(n.parentNode,n)):t=null)},i(c){s||(S(t),s=!0)},o(c){W(t),s=!1},d(c){~e&&r[e].d(c),c&&f(n)}}}function zs(l,e,t){let n,s,a,r,o,c;le(l,He,N=>t(9,s=N)),le(l,tn,N=>t(11,a=N)),le(l,nn,N=>t(0,r=N)),le(l,zn,N=>t(5,o=N)),le(l,Ae,N=>t(6,c=N));let{hasPermission:u=!1}=e,i,d;const m=he("setPermission"),h=()=>{const{date:N}=nt.get("export")||{};return xn(N)};let b;const D=()=>{clearInterval(b),b=null};let _=h();const E=()=>{b||(b=setInterval(()=>t(3,_=h()),1e3))},B=async()=>{t(2,d=await Fn(a)),await Vn({to:"local"}),He.set(!0)},J=async()=>{if(a||await ln(),!u){const N=await sn(a);if(m(N),!N)throw new Error("Permission Denied")}return B()},y=async()=>(re("click2"),u?s?He.set(!1):B():J());return Ye(E),Qt(D),l.$$set=N=>{"hasPermission"in N&&t(8,u=N.hasPermission)},l.$$.update=()=>{l.$$.dirty&768&&t(4,n=u&&s),l.$$.dirty&1&&t(1,{name:i}=r,i)},[r,i,d,_,n,o,c,y,u,s]}class Fs extends ge{constructor(e){super(),_e(this,e,zs,Os,ve,{hasPermission:8})}}function Ft(l){let e,t;return e=new Us({props:{importData:l[3]}}),e.$on("cancel",l[7]),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s&8&&(a.importData=n[3]),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Vt(l){let e,t;return e=new Fs({props:{hasPermission:l[1]}}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},p(n,s){const a={};s&2&&(a.hasPermission=n[1]),e.$set(a)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Vs(l){let e=l[4]("backupRestore.import")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s&16&&e!==(e=n[4]("backupRestore.import")+"")&&V(t,e)},d(n){n&&f(t)}}}function $s(l){let e=l[4]("backupRestore.export")+"",t;return{c(){t=U(e)},l(n){t=Z(n,e)},m(n,s){G(n,t,s)},p(n,s){s&16&&e!==(e=n[4]("backupRestore.export")+"")&&V(t,e)},d(n){n&&f(t)}}}function Ls(l){let e,t,n,s,a,r,o,c,u,i,d,m,h,b=l[0]&&Ft(l);a=new bs({props:{legacyFileHandler:l[2]}});let D=!l[2]&&Vt(l);return u=new We({props:{icon:"import",$$slots:{default:[Vs]},$$scope:{ctx:l}}}),u.$on("click",l[5]),d=new We({props:{icon:"save",$$slots:{default:[$s]},$$scope:{ctx:l}}}),d.$on("click",l[6]),{c(){b&&b.c(),e=T(),t=v("div"),n=v("div"),s=v("div"),Q(a.$$.fragment),r=T(),D&&D.c(),o=T(),c=v("div"),Q(u.$$.fragment),i=T(),Q(d.$$.fragment),this.h()},l(_){b&&b.l(_),e=M(_),t=A(_,"DIV",{class:!0});var E=k(t);n=A(E,"DIV",{class:!0});var B=k(n);s=A(B,"DIV",{class:!0});var J=k(s);K(a.$$.fragment,J),J.forEach(f),r=M(B),D&&D.l(B),o=M(B),c=A(B,"DIV",{class:!0});var y=k(c);K(u.$$.fragment,y),i=M(y),K(d.$$.fragment,y),y.forEach(f),B.forEach(f),E.forEach(f),this.h()},h(){g(s,"class","drop-area svelte-aszpau"),g(c,"class","button svelte-aszpau"),g(n,"class","local-wrapper svelte-aszpau"),g(t,"class","local-sync svelte-aszpau")},m(_,E){b&&b.m(_,E),G(_,e,E),G(_,t,E),p(t,n),p(n,s),q(a,s,null),p(n,r),D&&D.m(n,null),p(n,o),p(n,c),q(u,c,null),p(c,i),q(d,c,null),h=!0},p(_,[E]){_[0]?b?(b.p(_,E),E&1&&S(b,1)):(b=Ft(_),b.c(),S(b,1),b.m(e.parentNode,e)):b&&(pe(),W(b,1,1,()=>{b=null}),me());const B={};E&4&&(B.legacyFileHandler=_[2]),a.$set(B),_[2]?D&&(pe(),W(D,1,1,()=>{D=null}),me()):D?(D.p(_,E),E&4&&S(D,1)):(D=Vt(_),D.c(),S(D,1),D.m(n,o));const J={};E&2064&&(J.$$scope={dirty:E,ctx:_}),u.$set(J);const y={};E&2064&&(y.$$scope={dirty:E,ctx:_}),d.$set(y)},i(_){h||(S(b),S(a.$$.fragment,_),S(D),S(u.$$.fragment,_),S(d.$$.fragment,_),m||ie(()=>{m=fe(t,de,{}),m.start()}),h=!0)},o(_){W(b),W(a.$$.fragment,_),W(D),W(u.$$.fragment,_),W(d.$$.fragment,_),h=!1},d(_){b&&b.d(_),_&&f(e),_&&f(t),x(a),D&&D.d(),x(u),x(d)}}}function Cs(l,e,t){let n,s,a;le(l,nn,b=>t(8,n=b)),le(l,tn,b=>t(9,s=b)),le(l,Ae,b=>t(4,a=b));let r=!1,o,c,u={};Ge("setPermission",b=>t(1,o=b)),Ge("handleModalImport",(b=null)=>{t(3,u=b),t(0,r=!!b)});const i=async()=>(re(),document.querySelector(".drop-area #importInput").click()),d=async()=>{t(1,o=await sn(s,{checkOnly:!0}))},m=async()=>{if(re(),c)return Ln();await Cn(),await d()};return Ye(async()=>{await d(),t(2,c=!$n()),!n.name&&ln()}),[r,o,c,u,a,i,m,()=>t(0,r=!1)]}class Ps extends ge{constructor(e){super(),_e(this,e,Cs,Ls,ve,{})}}function Xs(l){let e,t;return e=new Ps({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Hs(l){let e,t;return e=new ps({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function Qs(l){let e,t,n,s,a,r,o=l[2]("backupRestore.cloudSync")+"",c,u,i,d,m,h,b=l[2]("backupRestore.localSync")+"",D,_,E,B,J,y,N,Y,R;const $=[Hs,Xs],j=[];function L(I,w){return I[0]==="cloud"?0:1}return B=L(l),J=j[B]=$[B](l),{c(){e=v("div"),t=v("nav"),n=v("button"),s=v("i"),a=T(),r=v("span"),c=U(o),u=T(),i=v("button"),d=v("i"),m=T(),h=v("span"),D=U(b),_=T(),E=v("div"),J.c(),this.h()},l(I){e=A(I,"DIV",{class:!0,style:!0});var w=k(e);t=A(w,"NAV",{class:!0});var O=k(t);n=A(O,"BUTTON",{class:!0});var P=k(n);s=A(P,"I",{class:!0}),k(s).forEach(f),a=M(P),r=A(P,"SPAN",{});var z=k(r);c=Z(z,o),z.forEach(f),P.forEach(f),u=M(O),i=A(O,"BUTTON",{class:!0});var ee=k(i);d=A(ee,"I",{class:!0}),k(d).forEach(f),m=M(ee),h=A(ee,"SPAN",{});var X=k(h);D=Z(X,b),X.forEach(f),ee.forEach(f),O.forEach(f),_=M(w),E=A(w,"DIV",{class:!0});var H=k(E);J.l(H),H.forEach(f),w.forEach(f),this.h()},h(){g(s,"class","gi-drive svelte-15qfmua"),g(n,"class","svelte-15qfmua"),oe(n,"active",l[0]==="cloud"),g(d,"class","gi-local svelte-15qfmua"),g(i,"class","svelte-15qfmua"),oe(i,"active",l[0]==="local"),g(t,"class","svelte-15qfmua"),g(E,"class","content svelte-15qfmua"),g(e,"class","backupRestore content-container svelte-15qfmua"),ne(e,"--bg-icon","url('"+l[1]["modal-bg-icon.png"]+"')")},m(I,w){G(I,e,w),p(e,t),p(t,n),p(n,s),p(n,a),p(n,r),p(r,c),p(t,u),p(t,i),p(i,d),p(i,m),p(i,h),p(h,D),p(e,_),p(e,E),j[B].m(E,null),N=!0,Y||(R=[se(n,"click",l[4]),se(i,"click",l[5])],Y=!0)},p(I,[w]){(!N||w&4)&&o!==(o=I[2]("backupRestore.cloudSync")+"")&&V(c,o),w&1&&oe(n,"active",I[0]==="cloud"),(!N||w&4)&&b!==(b=I[2]("backupRestore.localSync")+"")&&V(D,b),w&1&&oe(i,"active",I[0]==="local");let O=B;B=L(I),B!==O&&(pe(),W(j[O],1,1,()=>{j[O]=null}),me(),J=j[B],J||(J=j[B]=$[B](I),J.c()),S(J,1),J.m(E,null)),(!N||w&2)&&ne(e,"--bg-icon","url('"+I[1]["modal-bg-icon.png"]+"')")},i(I){N||(S(J),y||ie(()=>{y=fe(e,de,{duration:200}),y.start()}),N=!0)},o(I){W(J),N=!1},d(I){I&&f(e),j[B].d(),Y=!1,Ue(R)}}}function Ks(l,e,t){let n,s;le(l,lt,u=>t(1,n=u)),le(l,Ae,u=>t(2,s=u));let a="local";const r=u=>{a!==u&&(t(0,a=u),re("shopnav"))};return[a,n,s,r,()=>r("cloud"),()=>r("local")]}class qs extends ge{constructor(e){super(),_e(this,e,Ks,Qs,ve,{})}}function xs(l){let e,t;return e=new qs({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function ea(l){let e,t;return e=new ds({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function ta(l){let e,t;return e=new xl({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function na(l){let e,t;return e=new Ul({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function la(l){let e,t;return e=new Gl({}),{c(){Q(e.$$.fragment)},l(n){K(e.$$.fragment,n)},m(n,s){q(e,n,s),t=!0},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){W(e.$$.fragment,n),t=!1},d(n){x(e,n)}}}function $t(l){let e,t,n,s,a=l[1]("menu.rotate")+"",r;return{c(){e=v("div"),t=v("i"),n=T(),s=v("span"),r=U(a),this.h()},l(o){e=A(o,"DIV",{class:!0});var c=k(e);t=A(c,"I",{class:!0}),k(t).forEach(f),n=M(c),s=A(c,"SPAN",{});var u=k(s);r=Z(u,a),u.forEach(f),c.forEach(f),this.h()},h(){g(t,"class","gi-rotate-phone svelte-174ea47"),g(e,"class","rotate svelte-174ea47")},m(o,c){G(o,e,c),p(e,t),p(e,n),p(e,s),p(s,r)},p(o,c){c&2&&a!==(a=o[1]("menu.rotate")+"")&&V(r,a)},d(o){o&&f(e)}}}function sa(l){let e,t,n,s=l[1]("menu.text")+"",a,r,o=l[1](`menu.${l[0]}`)+"",c,u,i,d,m,h,b,D,_,E,B,J,y,N,Y,R;b=new jl({props:{activeContent:l[0]}});const $=[la,na,ta,ea,xs],j=[];function L(w,O){return w[0]==="options"?0:w[0]==="updates"?1:w[0]==="proAccess"?2:w[0]==="customBanner"?3:w[0]==="backupRestore"?4:-1}~(E=L(l))&&(B=j[E]=$[E](l));let I=l[2]&&!l[3]&&$t(l);return{c(){e=v("section"),t=v("div"),n=v("h1"),a=U(s),r=U(" / "),c=U(o),u=T(),i=v("button"),d=v("i"),m=T(),h=v("div"),Q(b.$$.fragment),D=T(),_=v("div"),B&&B.c(),J=T(),I&&I.c(),this.h()},l(w){e=A(w,"SECTION",{class:!0});var O=k(e);t=A(O,"DIV",{class:!0});var P=k(t);n=A(P,"H1",{});var z=k(n);a=Z(z,s),r=Z(z," / "),c=Z(z,o),z.forEach(f),u=M(P),i=A(P,"BUTTON",{class:!0});var ee=k(i);d=A(ee,"I",{class:!0}),k(d).forEach(f),ee.forEach(f),P.forEach(f),m=M(O),h=A(O,"DIV",{class:!0});var X=k(h);K(b.$$.fragment,X),D=M(X),_=A(X,"DIV",{class:!0});var H=k(_);B&&B.l(H),J=M(H),I&&I.l(H),H.forEach(f),X.forEach(f),O.forEach(f),this.h()},h(){g(d,"class","gi-close"),g(i,"class","close svelte-174ea47"),g(t,"class","head svelte-174ea47"),g(_,"class","content svelte-174ea47"),g(h,"class","container svelte-174ea47"),g(e,"class","svelte-174ea47")},m(w,O){G(w,e,O),p(e,t),p(t,n),p(n,a),p(n,r),p(n,c),p(t,u),p(t,i),p(i,d),p(e,m),p(e,h),q(b,h,null),p(h,D),p(h,_),~E&&j[E].m(_,null),p(_,J),I&&I.m(_,null),N=!0,Y||(R=se(i,"click",l[4]),Y=!0)},p(w,[O]){(!N||O&2)&&s!==(s=w[1]("menu.text")+"")&&V(a,s),(!N||O&3)&&o!==(o=w[1](`menu.${w[0]}`)+"")&&V(c,o);const P={};O&1&&(P.activeContent=w[0]),b.$set(P);let z=E;E=L(w),E!==z&&(B&&(pe(),W(j[z],1,1,()=>{j[z]=null}),me()),~E?(B=j[E],B||(B=j[E]=$[E](w),B.c()),S(B,1),B.m(_,J)):B=null),w[2]&&!w[3]?I?I.p(w,O):(I=$t(w),I.c(),I.m(_,null)):I&&(I.d(1),I=null)},i(w){N||(S(b.$$.fragment,w),S(B),ie(()=>{y||(y=Se(e,de,{duration:200},!0)),y.run(1)}),N=!0)},o(w){W(b.$$.fragment,w),W(B),y||(y=Se(e,de,{duration:200},!1)),y.run(0),N=!1},d(w){w&&f(e),x(b),~E&&j[E].d(),I&&I.d(),w&&y&&y.end(),Y=!1,R()}}}function aa(l,e,t){let n,s,a,r;le(l,et,i=>t(5,n=i)),le(l,Ae,i=>t(1,s=i)),le(l,Zn,i=>t(2,a=i)),le(l,Yn,i=>t(3,r=i));let o=n?"customBanner":"options";Ge("selectMenu",i=>{o!==i&&(t(0,o=i),re("shopnav"))});const u=he("handleMenu");return Xe("esc,m","menu",i=>{i.preventDefault(),u()}),Xe.setScope("menu"),Qt(()=>Xe.deleteScope("menu","index")),[o,s,a,r,u]}class wa extends ge{constructor(e){super(),_e(this,e,aa,sa,ve,{})}}export{wa as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-67d0b527.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-67d0b527.js
deleted file mode 100644
index a6f34bed..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-67d0b527.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import{_ as q}from"./preload-helper-176e53da.js";import{_ as xe}from"./i18n-ec7c8da1.js";import{S as ge,i as Ee,s as fe,k as g,a as U,e as J,l as E,m as D,h as f,c as W,n as _,b as A,ae as Ye,af as et,f as z,A as F,E as x,F as re,N as ee,G as d,H as le,J as oe,K as ke,a6 as ye,q as Q,r as Y,Y as ie,u as X,ag as tt,g as me,t as Z,d as he,C as rt,o as Je,L as se,ah as lt,a7 as nt,v as Ie,M as st,w as we,p as qe,x as De,a8 as at,y as Ve,P as be,a0 as ot,a1 as it,ak as ct,al as ut,am as _t}from"./index-c0d078cd.js";import{f as ne,h as je}from"./index-123e2351.js";import{Y as Te}from"./runtime.esm-4bf604c8.js";import{f as ft}from"./index-bd4a5be3.js";import{O as mt,h as ht}from"./WishResult-901333c5.js";import{I as pt,a as Xe,u as dt,i as vt,O as bt}from"./app-stores-358281e6.js";import{A as Oe}from"./env-f184adc0.js";import{a as Le,B as gt}from"./custom-banner-3b9921d3.js";import{g as ce,e as Ae}from"./_page-87ee6ee5.js";import{p as ae}from"./audio-460a91c6.js";function Pe(s,e,t){const r=s.slice();return r[12]=e[t].patch,r[13]=e[t].phase,r[14]=e[t].chars,r[15]=e[t].weapons,r[17]=t,r}function Re(s,e,t){const r=s.slice();return r[18]=e[t].character,r[19]=e[t].bannerName,r[20]=e[t].images,r[17]=t,r}function Et(s){let e,t,r;function l(i,n){return i[0]==="version"?wt:i[0]==="weapon"?It:yt}let o=l(s),a=o(s);return{c(){e=g("h2"),a.c(),t=U(),r=g("i"),this.h()},l(i){e=E(i,"H2",{class:!0});var n=D(e);a.l(n),t=W(n),r=E(n,"I",{class:!0}),D(r).forEach(f),n.forEach(f),this.h()},h(){_(r,"class","gi-primo-star svelte-6yqdv"),_(e,"class","svelte-6yqdv")},m(i,n){A(i,e,n),a.m(e,null),d(e,t),d(e,r)},p(i,n){o===(o=l(i))&&a?a.p(i,n):(a.d(1),a=o(i),a&&(a.c(),a.m(e,t)))},d(i){i&&f(e),a.d()}}}function kt(s){let e,t,r;return{c(){e=g("h2"),t=Q("Created by Travelers "),r=g("i"),this.h()},l(l){e=E(l,"H2",{class:!0});var o=D(e);t=Y(o,"Created by Travelers "),r=E(o,"I",{class:!0}),D(r).forEach(f),o.forEach(f),this.h()},h(){_(r,"class","gi-primo-star svelte-6yqdv"),_(e,"class","svelte-6yqdv")},m(l,o){A(l,e,o),d(e,t),d(e,r)},p:F,d(l){l&&f(e)}}}function yt(s){let e=s[3](`${s[1]}.name`)+"",t;return{c(){t=Q(e)},l(r){t=Y(r,e)},m(r,l){A(r,t,l)},p(r,l){l&10&&e!==(e=r[3](`${r[1]}.name`)+"")&&X(t,e)},d(r){r&&f(t)}}}function It(s){let e=s[3](s[1])+"",t;return{c(){t=Q(e)},l(r){t=Y(r,e)},m(r,l){A(r,t,l)},p(r,l){l&10&&e!==(e=r[3](r[1])+"")&&X(t,e)},d(r){r&&f(t)}}}function wt(s){let e=s[3]("version")+"",t,r,l;return{c(){t=Q(e),r=U(),l=Q(s[1])},l(o){t=Y(o,e),r=W(o),l=Y(o,s[1])},m(o,a){A(o,t,a),A(o,r,a),A(o,l,a)},p(o,a){a&8&&e!==(e=o[3]("version")+"")&&X(t,e),a&2&&X(l,o[1])},d(o){o&&f(t),o&&f(r),o&&f(l)}}}function Dt(s){let e=s[19],t,r=Ne(s);return{c(){r.c(),t=J()},l(l){r.l(l),t=J()},m(l,o){r.m(l,o),A(l,t,o)},p(l,o){o&4&&fe(e,e=l[19])?(r.d(1),r=Ne(l),r.c(),r.m(t.parentNode,t)):r.p(l,o)},d(l){l&&f(t),r.d(l)}}}function Vt(s){let e,t,r;return{c(){e=g("img"),this.h()},l(l){e=E(l,"IMG",{src:!0,alt:!0,crossorigin:!0,loading:!0,class:!0}),this.h()},h(){ie(e.src,t=Le(s[20]))||_(e,"src",t),_(e,"alt",r=s[18]),_(e,"crossorigin","anonymous"),_(e,"loading","lazy"),_(e,"class","svelte-6yqdv")},m(l,o){A(l,e,o)},p(l,o){o&4&&!ie(e.src,t=Le(l[20]))&&_(e,"src",t),o&4&&r!==(r=l[18])&&_(e,"alt",r)},d(l){l&&f(e)}}}function Ne(s){let e,t,r;return{c(){e=g("img"),this.h()},l(l){e=E(l,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0,loading:!0}),this.h()},h(){ie(e.src,t=s[4][`thumbnail/${s[19]}`])||_(e,"src",t),_(e,"alt",r=ce(s[18])),_(e,"class","dual"+(s[17]+1)+" svelte-6yqdv"),_(e,"crossorigin","anonymous"),_(e,"loading","lazy")},m(l,o){A(l,e,o)},p(l,o){o&20&&!ie(e.src,t=l[4][`thumbnail/${l[19]}`])&&_(e,"src",t),o&4&&r!==(r=ce(l[18]))&&_(e,"alt",r)},d(l){l&&f(e)}}}function Be(s){let e;function t(o,a){return o[5]?Vt:Dt}let l=t(s)(s);return{c(){l.c(),e=J()},l(o){l.l(o),e=J()},m(o,a){l.m(o,a),A(o,e,a)},p(o,a){l.p(o,a)},d(o){l.d(o),o&&f(e)}}}function Tt(s){let e,t,r,l;return{c(){e=g("div"),t=g("img"),this.h()},l(o){e=E(o,"DIV",{class:!0});var a=D(e);t=E(a,"IMG",{src:!0,alt:!0,crossorigin:!0,loading:!0,class:!0}),a.forEach(f),this.h()},h(){ie(t.src,r=s[4][`thumbnail/${s[15].bannerName}`])||_(t,"src",r),_(t,"alt",l=ce(s[15].bannerName)),_(t,"crossorigin","anonymous"),_(t,"loading","lazy"),_(t,"class","svelte-6yqdv"),_(e,"class","weapon svelte-6yqdv")},m(o,a){A(o,e,a),d(e,t)},p(o,a){a&20&&!ie(t.src,r=o[4][`thumbnail/${o[15].bannerName}`])&&_(t,"src",r),a&4&&l!==(l=ce(o[15].bannerName))&&_(t,"alt",l)},d(o){o&&f(e)}}}function qt(s){let e,t=s[14].map(s[7]).join(", ")+"",r,l,o=s[15].list.map(s[8]).join(", ")+"",a;return{c(){e=g("h3"),r=Q(t),l=Q(`
-				& `),a=Q(o),this.h()},l(i){e=E(i,"H3",{class:!0});var n=D(e);r=Y(n,t),l=Y(n,`
-				& `),a=Y(n,o),n.forEach(f),this.h()},h(){_(e,"class","name svelte-6yqdv")},m(i,n){A(i,e,n),d(e,r),d(e,l),d(e,a)},p(i,n){n&12&&t!==(t=i[14].map(i[7]).join(", ")+"")&&X(r,t),n&12&&o!==(o=i[15].list.map(i[8]).join(", ")+"")&&X(a,o)},d(i){i&&f(e)}}}function jt(s){let e,t=s[14].map(Se).join("")+"",r;return{c(){e=g("h3"),r=Q(t),this.h()},l(l){e=E(l,"H3",{class:!0});var o=D(e);r=Y(o,t),o.forEach(f),this.h()},h(){_(e,"class","name svelte-6yqdv")},m(l,o){A(l,e,o),d(e,r)},p(l,o){o&4&&t!==(t=l[14].map(Se).join("")+"")&&X(r,t)},d(l){l&&f(e)}}}function Ce(s,e){let t,r,l,o,a,i,n,c,v,u,p=e[14],h=[];for(let y=0;y<p.length;y+=1)h[y]=Be(Re(e,p,y));let j=!e[5]&&Tt(e);function b(y,N){return y[5]?jt:qt}let S=b(e)(e);function M(){return e[9](e[12],e[13])}return{key:s,first:null,c(){t=g("a"),r=g("div"),l=g("div");for(let y=0;y<h.length;y+=1)h[y].c();o=U(),j&&j.c(),a=U(),S.c(),i=U(),this.h()},l(y){t=E(y,"A",{href:!0,class:!0,title:!0});var N=D(t);r=E(N,"DIV",{class:!0});var T=D(r);l=E(T,"DIV",{class:!0});var V=D(l);for(let O=0;O<h.length;O+=1)h[O].l(V);V.forEach(f),o=W(T),j&&j.l(T),T.forEach(f),a=W(N),S.l(N),i=W(N),N.forEach(f),this.h()},h(){_(l,"class","svelte-6yqdv"),ee(l,"dual",e[14]?.length>1),_(r,"class","banner svelte-6yqdv"),_(t,"href","/"),_(t,"class","item svelte-6yqdv"),_(t,"title",n=ce(e[14].map(Me).join(", "))),ee(t,"custom",e[5]),this.first=t},m(y,N){A(y,t,N),d(t,r),d(r,l);for(let T=0;T<h.length;T+=1)h[T].m(l,null);d(r,o),j&&j.m(r,null),d(t,a),S.m(t,null),d(t,i),v||(u=le(t,"click",M),v=!0)},p(y,N){if(e=y,N&52){p=e[14];let T;for(T=0;T<p.length;T+=1){const V=Re(e,p,T);h[T]?h[T].p(V,N):(h[T]=Be(V),h[T].c(),h[T].m(l,null))}for(;T<h.length;T+=1)h[T].d(1);h.length=p.length}N&4&&ee(l,"dual",e[14]?.length>1),e[5]||j.p(e,N),S.p(e,N),N&4&&n!==(n=ce(e[14].map(Me).join(", ")))&&_(t,"title",n)},i(y){c||oe(()=>{c=ke(t,ne,{duration:300,delay:Math.sqrt(e[17]*1e4)}),c.start()})},o:F,d(y){y&&f(t),ye(h,y),j&&j.d(),S.d(),v=!1,u()}}}function Ot(s){let e,t,r=[],l=new Map,o;function a(u,p){return u[5]?kt:Et}let n=a(s)(s),c=s[2];const v=u=>u[17];for(let u=0;u<c.length;u+=1){let p=Pe(s,c,u),h=v(p);l.set(h,r[u]=Ce(h,p))}return{c(){e=g("div"),n.c(),t=U();for(let u=0;u<r.length;u+=1)r[u].c();o=J(),this.h()},l(u){e=E(u,"DIV",{class:!0});var p=D(e);n.l(p),p.forEach(f),t=W(u);for(let h=0;h<r.length;h+=1)r[h].l(u);o=J(),this.h()},h(){_(e,"class","group-title")},m(u,p){A(u,e,p),n.m(e,null),A(u,t,p);for(let h=0;h<r.length;h+=1)r[h].m(u,p);A(u,o,p)},p(u,[p]){n.p(u,p),p&124&&(c=u[2],r=Ye(r,p,v,1,u,c,l,o.parentNode,et,Ce,o,Pe))},i(u){for(let p=0;p<c.length;p+=1)z(r[p])},o:F,d(u){u&&f(e),n.d(),u&&f(t);for(let p=0;p<r.length;p+=1)r[p].d(u);u&&f(o)}}}const Se=({character:s})=>s,Me=({character:s})=>s;function Lt(s,e,t){let r,l,o;x(s,pt,b=>t(10,r=b)),x(s,Te,b=>t(3,l=b)),x(s,Xe,b=>t(4,o=b));let{groupby:a="version"}=e,{groupName:i}=e,{data:n}=e;const c=i.toLowerCase()==="custom",v=re("navigate"),u=(b,k)=>{ae();const{patch:S,phase:M}=r;v("index"),!(M===k&&S===b)&&dt.set({patch:b,phase:k})},p=({character:b})=>l(`${b}.name`),h=({name:b})=>l(b),j=(b,k)=>u(b,k);return s.$$set=b=>{"groupby"in b&&t(0,a=b.groupby),"groupName"in b&&t(1,i=b.groupName),"data"in b&&t(2,n=b.data)},[a,i,n,l,o,c,u,p,h,j]}class Ze extends ge{constructor(e){super(),Ee(this,e,Lt,Ot,fe,{groupby:0,groupName:1,data:2})}}function Ge(s,e,t){const r=s.slice();return r[13]=e[t],r}function He(s){let e,t,r,l=["version","character","weapon"],o=[];for(let a=0;a<3;a+=1)o[a]=Ke(Ge(s,l,a));return{c(){e=g("div");for(let a=0;a<3;a+=1)o[a].c();this.h()},l(a){e=E(a,"DIV",{class:!0});var i=D(e);for(let n=0;n<3;n+=1)o[n].l(i);i.forEach(f),this.h()},h(){_(e,"class","option-list below")},m(a,i){A(a,e,i);for(let n=0;n<3;n+=1)o[n].m(e,null);r=!0},p(a,i){if(i&261){l=["version","character","weapon"];let n;for(n=0;n<3;n+=1){const c=Ge(a,l,n);o[n]?o[n].p(c,i):(o[n]=Ke(c),o[n].c(),o[n].m(e,null))}for(;n<3;n+=1)o[n].d(1)}},i(a){r||(oe(()=>{t||(t=se(e,ne,{duration:200},!0)),t.run(1)}),r=!0)},o(a){t||(t=se(e,ne,{duration:200},!1)),t.run(0),r=!1},d(a){a&&f(e),ye(o,a),a&&t&&t.end()}}}function Ke(s){let e,t=s[2](s[13])+"",r,l,o,a;function i(){return s[10](s[13])}return{c(){e=g("button"),r=Q(t),l=U(),this.h()},l(n){e=E(n,"BUTTON",{});var c=D(e);r=Y(c,t),l=W(c),c.forEach(f),this.h()},h(){ee(e,"selected",s[0]==s[13])},m(n,c){A(n,e,c),d(e,r),d(e,l),o||(a=le(e,"click",i),o=!0)},p(n,c){s=n,c&4&&t!==(t=s[2](s[13])+"")&&X(r,t),c&1&&ee(e,"selected",s[0]==s[13])},d(n){n&&f(e),o=!1,a()}}}function At(s){let e,t,r,l,o,a,i,n,c,v,u,p=s[2]("wish.banner.group")+"",h,j,b=(s[0]==="version"?s[2]("version"):s[2](s[0]))+"",k,S,M,y,N,T,V,O,B,K,$,P=s[1]&&He(s);return{c(){e=g("div"),t=g("div"),r=g("div"),l=g("input"),a=U(),i=g("button"),n=g("i"),c=U(),v=g("div"),u=g("div"),h=Q(p),j=Q(" / "),k=Q(b),S=U(),M=g("i"),N=U(),P&&P.c(),T=U(),V=g("button"),O=g("i"),this.h()},l(C){e=E(C,"DIV",{class:!0});var H=D(e);t=E(H,"DIV",{class:!0});var m=D(t);r=E(m,"DIV",{class:!0});var L=D(r);l=E(L,"INPUT",{class:!0,type:!0,name:!0,id:!0,placeholder:!0,title:!0}),a=W(L),i=E(L,"BUTTON",{class:!0});var R=D(i);n=E(R,"I",{class:!0}),D(n).forEach(f),R.forEach(f),L.forEach(f),c=W(m),v=E(m,"DIV",{class:!0});var I=D(v);u=E(I,"DIV",{class:!0});var w=D(u);h=Y(w,p),j=Y(w," / "),k=Y(w,b),S=W(w),M=E(w,"I",{class:!0}),D(M).forEach(f),w.forEach(f),N=W(I),P&&P.l(I),I.forEach(f),T=W(m),V=E(m,"BUTTON",{class:!0,title:!0});var G=D(V);O=E(G,"I",{class:!0}),D(O).forEach(f),G.forEach(f),m.forEach(f),H.forEach(f),this.h()},h(){_(l,"class","wishinput svelte-10b7bat"),_(l,"type","text"),_(l,"name","q"),_(l,"id","q"),_(l,"placeholder",o=s[2]("wish.banner.findBanner")),l.value=s[3],_(l,"title","Find by Character's or Weapon's Name (4star or 5star) or Banner Name"),_(n,"class","gi-search"),_(i,"class","svelte-10b7bat"),_(r,"class","search svelte-10b7bat"),_(M,"class",y="gi-caret-"+(s[1]?"up":"down")),_(u,"class","selected-option"),_(v,"class","selector svelte-10b7bat"),_(O,"class","gi-exchange"),_(V,"class","btn reverse"),_(V,"title","Reverse Group"),_(t,"class","row svelte-10b7bat"),_(e,"class","filter svelte-10b7bat")},m(C,H){A(C,e,H),d(e,t),d(t,r),d(r,l),d(r,a),d(r,i),d(i,n),d(t,c),d(t,v),d(v,u),d(u,h),d(u,j),d(u,k),d(u,S),d(u,M),d(v,N),P&&P.m(v,null),d(t,T),d(t,V),d(V,O),B=!0,K||($=[le(l,"input",s[5]),le(u,"click",s[7]),le(v,"mousedown",tt(s[9])),le(V,"click",s[6])],K=!0)},p(C,[H]){(!B||H&4&&o!==(o=C[2]("wish.banner.findBanner")))&&_(l,"placeholder",o),(!B||H&8&&l.value!==C[3])&&(l.value=C[3]),(!B||H&4)&&p!==(p=C[2]("wish.banner.group")+"")&&X(h,p),(!B||H&5)&&b!==(b=(C[0]==="version"?C[2]("version"):C[2](C[0]))+"")&&X(k,b),(!B||H&2&&y!==(y="gi-caret-"+(C[1]?"up":"down")))&&_(M,"class",y),C[1]?P?(P.p(C,H),H&2&&z(P,1)):(P=He(C),P.c(),z(P,1),P.m(v,null)):P&&(me(),Z(P,1,1,()=>{P=null}),he())},i(C){B||(z(P),B=!0)},o(C){Z(P),B=!1},d(C){C&&f(e),P&&P.d(),K=!1,rt($)}}}function Pt(s,e,t){let r,l;x(s,Te,k=>t(2,r=k));let{groupby:o}=e,a;const i=re("query");x(s,i,k=>t(3,l=k));const n=re("handleSearch"),c=re("selectGroup"),v=re("reverse"),u=()=>{v(),t(1,a=!1)},p=(k=null)=>{t(1,a=!a),k!=="dimiss"&&ae()},h=k=>{c(k),t(1,a=!1)};Je(()=>{document.querySelector("#previous").addEventListener("mousedown",()=>t(1,a=!1))});function j(k){lt.call(this,s,k)}const b=k=>h(k);return s.$$set=k=>{"groupby"in k&&t(0,o=k.groupby)},[o,a,r,l,i,n,u,p,h,j,b]}class Rt extends ge{constructor(e){super(),Ee(this,e,Pt,At,fe,{groupby:0})}}function Fe(s){const e=s[1][1].length<1?s[0]:[s[1],...s[0]];s[28]=e}function Ue(s,e,t){const r=s.slice();return r[29]=e[t][0],r[30]=e[t][1],r[34]=t,r}function We(s,e,t){const r=s.slice();return r[29]=e[t][0],r[30]=e[t][1],r}function Nt(s){return{c:F,l:F,m:F,p:F,i:F,o:F,d:F}}function Bt(s){Fe(s);let e,t,r,l;const o=[St,Ct],a=[];function i(n,c){return n[6]?0:1}return e=i(s),t=a[e]=o[e](s),{c(){t.c(),r=J()},l(n){t.l(n),r=J()},m(n,c){a[e].m(n,c),A(n,r,c),l=!0},p(n,c){Fe(n);let v=e;e=i(n),e===v?a[e].p(n,c):(me(),Z(a[v],1,1,()=>{a[v]=null}),he(),t=a[e],t?t.p(n,c):(t=a[e]=o[e](n),t.c()),z(t,1),t.m(r.parentNode,r))},i(n){l||(z(t),l=!0)},o(n){Z(t),l=!1},d(n){a[e].d(n),n&&f(r)}}}function Ct(s){let e=[],t=new Map,r,l,o=s[28];const a=i=>i[29];for(let i=0;i<o.length;i+=1){let n=Ue(s,o,i),c=a(n);t.set(c,e[i]=ze(c,n))}return{c(){for(let i=0;i<e.length;i+=1)e[i].c();r=J()},l(i){for(let n=0;n<e.length;n+=1)e[n].l(i);r=J()},m(i,n){for(let c=0;c<e.length;c+=1)e[c].m(i,n);A(i,r,n),l=!0},p(i,n){if(n[0]&7){o=i[28],me();for(let c=0;c<e.length;c+=1)e[c].r();e=Ye(e,n,a,1,i,o,t,r.parentNode,_t,ze,r,Ue);for(let c=0;c<e.length;c+=1)e[c].a();he()}},i(i){if(!l){for(let n=0;n<o.length;n+=1)z(e[n]);l=!0}},o(i){for(let n=0;n<e.length;n+=1)Z(e[n]);l=!1},d(i){for(let n=0;n<e.length;n+=1)e[n].d(i);i&&f(r)}}}function St(s){let e,t,r=s[28],l=[];for(let a=0;a<r.length;a+=1)l[a]=Qe(We(s,r,a));const o=a=>Z(l[a],1,1,()=>{l[a]=null});return{c(){for(let a=0;a<l.length;a+=1)l[a].c();e=J()},l(a){for(let i=0;i<l.length;i+=1)l[i].l(a);e=J()},m(a,i){for(let n=0;n<l.length;n+=1)l[n].m(a,i);A(a,e,i),t=!0},p(a,i){if(i[0]&7){r=a[28];let n;for(n=0;n<r.length;n+=1){const c=We(a,r,n);l[n]?(l[n].p(c,i),z(l[n],1)):(l[n]=Qe(c),l[n].c(),z(l[n],1),l[n].m(e.parentNode,e))}for(me(),n=r.length;n<l.length;n+=1)o(n);he()}},i(a){if(!t){for(let i=0;i<r.length;i+=1)z(l[i]);t=!0}},o(a){l=l.filter(Boolean);for(let i=0;i<l.length;i+=1)Z(l[i]);t=!1},d(a){ye(l,a),a&&f(e)}}}function ze(s,e){let t,r,l,o,a,i=F,n;return r=new Ze({props:{data:e[30],groupName:e[29],groupby:e[2]}}),{key:s,first:null,c(){t=g("div"),Ie(r.$$.fragment),l=U(),this.h()},l(c){t=E(c,"DIV",{class:!0});var v=D(t);we(r.$$.fragment,v),l=W(v),v.forEach(f),this.h()},h(){_(t,"class","svelte-lqvliw"),ee(t,"custom",e[29].match(/custom/gi)),this.first=t},m(c,v){A(c,t,v),De(r,t,null),d(t,l),n=!0},p(c,v){e=c;const u={};v[0]&3&&(u.data=e[30]),v[0]&3&&(u.groupName=e[29]),v[0]&4&&(u.groupby=e[2]),r.$set(u),v[0]&3&&ee(t,"custom",e[29].match(/custom/gi))},r(){a=t.getBoundingClientRect()},f(){ct(t),i()},a(){i(),i=ut(t,a,ft,{duration:e[10]})},i(c){n||(z(r.$$.fragment,c),o||oe(()=>{o=ke(t,ne,{duration:300,delay:Math.sqrt(e[34]*2e4)}),o.start()}),n=!0)},o(c){Z(r.$$.fragment,c),n=!1},d(c){c&&f(t),Ve(r)}}}function Qe(s){let e,t,r,l,o;return t=new Ze({props:{data:s[30],groupName:s[29],groupby:s[2]}}),{c(){e=g("div"),Ie(t.$$.fragment),r=U(),this.h()},l(a){e=E(a,"DIV",{class:!0});var i=D(e);we(t.$$.fragment,i),r=W(i),i.forEach(f),this.h()},h(){_(e,"class","svelte-lqvliw"),ee(e,"custom",s[29].match(/custom/gi))},m(a,i){A(a,e,i),De(t,e,null),d(e,r),o=!0},p(a,i){const n={};i[0]&3&&(n.data=a[30]),i[0]&3&&(n.groupName=a[29]),i[0]&4&&(n.groupby=a[2]),t.$set(n),i[0]&3&&ee(e,"custom",a[29].match(/custom/gi))},i(a){o||(z(t.$$.fragment,a),l||oe(()=>{l=ke(e,ne,{duration:300}),l.start()}),o=!0)},o(a){Z(t.$$.fragment,a),o=!1},d(a){a&&f(e),Ve(t)}}}function Mt(s){return{c:F,l:F,m:F,p:F,i:F,o:F,d:F}}function Gt(s){let e,t,r,l,o,a=s[4]("wish.banner.previous")+"",i,n,c,v,u,p,h,j,b,k,S,M,y,N,T;document.title=e=s[4]("wish.banner.allBanner")+" | "+s[4]("title",{default:Oe}),j=new Rt({props:{groupby:s[2]}});let V={ctx:s,current:null,token:null,hasCatch:!1,pending:Mt,then:Bt,catch:Nt,value:27,blocks:[,,,]};return nt(s[8](),V),{c(){t=U(),r=g("section"),l=g("header"),o=g("h1"),i=Q(a),n=U(),c=g("button"),v=g("i"),p=U(),h=g("div"),Ie(j.$$.fragment),b=U(),k=g("div"),S=g("div"),V.block.c(),this.h()},l(O){st('[data-svelte="svelte-slpiel"]',document.head).forEach(f),t=W(O),r=E(O,"SECTION",{id:!0,style:!0,class:!0});var K=D(r);l=E(K,"HEADER",{class:!0});var $=D(l);o=E($,"H1",{class:!0});var P=D(o);i=Y(P,a),P.forEach(f),n=W($),c=E($,"BUTTON",{class:!0});var C=D(c);v=E(C,"I",{class:!0}),D(v).forEach(f),C.forEach(f),$.forEach(f),p=W(K),h=E(K,"DIV",{class:!0});var H=D(h);we(j.$$.fragment,H),b=W(H),k=E(H,"DIV",{class:!0});var m=D(k);S=E(m,"DIV",{id:!0,class:!0});var L=D(S);V.block.l(L),L.forEach(f),m.forEach(f),H.forEach(f),K.forEach(f),this.h()},h(){_(o,"class","svelte-lqvliw"),_(v,"class","gi-close"),_(c,"class","close svelte-lqvliw"),_(l,"class","svelte-lqvliw"),_(S,"id","content"),_(S,"class","svelte-lqvliw"),_(k,"class","content svelte-lqvliw"),_(h,"class","body svelte-lqvliw"),_(r,"id","previous"),qe(r,"background-image","url("+s[5]["constellation.webp"]+")"),_(r,"class","svelte-lqvliw")},m(O,B){A(O,t,B),A(O,r,B),d(r,l),d(l,o),d(o,i),d(l,n),d(l,c),d(c,v),d(r,p),d(r,h),De(j,h,null),d(h,b),d(h,k),d(k,S),V.block.m(S,V.anchor=null),V.mount=()=>S,V.anchor=null,s[11](k),y=!0,N||(T=le(c,"click",s[9]),N=!0)},p(O,B){s=O,(!y||B[0]&16)&&e!==(e=s[4]("wish.banner.allBanner")+" | "+s[4]("title",{default:Oe}))&&(document.title=e),(!y||B[0]&16)&&a!==(a=s[4]("wish.banner.previous")+"")&&X(i,a);const K={};B[0]&4&&(K.groupby=s[2]),j.$set(K),at(V,s,B),(!y||B[0]&32)&&qe(r,"background-image","url("+s[5]["constellation.webp"]+")")},i(O){y||(oe(()=>{u||(u=se(l,je,{y:-20},!0)),u.run(1)}),z(j.$$.fragment,O),z(V.block),oe(()=>{M||(M=se(h,ne,{duration:300},!0)),M.run(1)}),y=!0)},o(O){u||(u=se(l,je,{y:-20},!1)),u.run(0),Z(j.$$.fragment,O);for(let B=0;B<3;B+=1){const K=V.blocks[B];Z(K)}M||(M=se(h,ne,{duration:300},!1)),M.run(0),y=!1},d(O){O&&f(t),O&&f(r),O&&u&&u.end(),Ve(j),V.block.d(),V.token=null,V=null,s[11](null),O&&M&&M.end(),N=!1,T()}}}function Ht(s,e,t){let r,l,o,a;x(s,Te,m=>t(4,l=m)),x(s,Xe,m=>t(5,o=m)),x(s,vt,m=>t(6,a=m));let i=[],n=[],c=[],v="version";const u=re("query");x(s,u,m=>t(13,r=m));const p=m=>m.sort((L,R)=>L[0]>R[0]?1:L[0]<R[0]?-1:0),h=()=>{const m={};i.forEach(L=>{L[1].forEach(R=>{R.chars.forEach(({character:I})=>{m[I]=[...m[I]||[],R]})})}),t(0,n=p(Object.entries(m)))},j=()=>{const m={};i.forEach(L=>{L[1].forEach(R=>{const{weapons:I}=R,w=I.list[0].name,G=I.list[1].name;m[w]=[...m[w]||[],R],m[G]=[...m[G]||[],R]})}),t(0,n=p(Object.entries(m)))},b=m=>{if(m==="version"&&t(0,n=i),m==="character")return h();if(m==="weapon")return j()};be("selectGroup",(m=null)=>{ae(),m&&(t(2,v=m),b(m))}),be("reverse",()=>{ae(),t(0,n=n.reverse())});const M=(m,L)=>{const{number:R}=Ae(m),I=[`${l("wish.banner.name.epitome-invocation")}-${R}`];return L.forEach(({name:w})=>{I.push(l(w)),I.push(w)}),I},y=m=>{const L=[],R=(I,w)=>{const G=Ae(I);L.push(w),L.push(I),L.push(l(`${w}.name`)),L.push(`${l(`wish.banner.name.${G.name}`)}-${G.number}`)};return m.forEach(({bannerName:I,character:w})=>R(I,w)),L},N=(m,L,R)=>{const{events:I,weapons:w}=R,{rateup:G,bannerName:te,featured:ue}=w,_e=G.map(ve=>l(ve)),pe=M(te,ue),de=I.rateup.map(ve=>l(`${ve}.name`)),$e=y(I.featured);return{queryKey:[..._e,...pe,...de,...$e,...I.rateup,...G],rateup:[...I.rateup,...w.rateup],weapons:{bannerName:w.bannerName,list:w.featured},chars:I.featured,patch:m,phase:L}},T=async()=>{const m=[];bt.forEach(I=>{const w=xe(Object.assign({"../../lib/data/banners/events/1.0.json":()=>q(()=>import("./1.0-1c054612.js"),[],import.meta.url),"../../lib/data/banners/events/1.1.json":()=>q(()=>import("./1.1-3cf30f8b.js"),[],import.meta.url),"../../lib/data/banners/events/1.2.json":()=>q(()=>import("./1.2-aaf0e2fb.js"),[],import.meta.url),"../../lib/data/banners/events/1.3.json":()=>q(()=>import("./1.3-6b0b0d5d.js"),[],import.meta.url),"../../lib/data/banners/events/1.4.json":()=>q(()=>import("./1.4-ad0ba199.js"),[],import.meta.url),"../../lib/data/banners/events/1.5.json":()=>q(()=>import("./1.5-d00419ea.js"),[],import.meta.url),"../../lib/data/banners/events/1.6.json":()=>q(()=>import("./1.6-5d274b2f.js"),[],import.meta.url),"../../lib/data/banners/events/2.0.json":()=>q(()=>import("./2.0-d9400515.js"),[],import.meta.url),"../../lib/data/banners/events/2.1.json":()=>q(()=>import("./2.1-b1e02588.js"),[],import.meta.url),"../../lib/data/banners/events/2.2.json":()=>q(()=>import("./2.2-a8d9f452.js"),[],import.meta.url),"../../lib/data/banners/events/2.3.json":()=>q(()=>import("./2.3-63f68053.js"),[],import.meta.url),"../../lib/data/banners/events/2.4.json":()=>q(()=>import("./2.4-36c15b7f.js"),[],import.meta.url),"../../lib/data/banners/events/2.5.json":()=>q(()=>import("./2.5-5d57feac.js"),[],import.meta.url),"../../lib/data/banners/events/2.6.json":()=>q(()=>import("./2.6-0570e3ed.js"),[],import.meta.url),"../../lib/data/banners/events/2.7.json":()=>q(()=>import("./2.7-1162b8cf.js"),[],import.meta.url),"../../lib/data/banners/events/2.8.json":()=>q(()=>import("./2.8-c43df701.js"),[],import.meta.url),"../../lib/data/banners/events/3.0.json":()=>q(()=>import("./3.0-3ac6ff72.js"),[],import.meta.url),"../../lib/data/banners/events/3.1.json":()=>q(()=>import("./3.1-9f559463.js"),[],import.meta.url),"../../lib/data/banners/events/3.2.json":()=>q(()=>import("./3.2-deb84a02.js"),[],import.meta.url),"../../lib/data/banners/events/3.3.json":()=>q(()=>import("./3.3-60e982e0.js"),[],import.meta.url),"../../lib/data/banners/events/3.4.json":()=>q(()=>import("./3.4-0159422c.js"),[],import.meta.url),"../../lib/data/banners/events/3.5.json":()=>q(()=>import("./3.5-0e9eadf4.js"),[],import.meta.url),"../../lib/data/banners/events/3.6.json":()=>q(()=>import("./3.6-2d1ccd10.js"),[],import.meta.url),"../../lib/data/banners/events/3.7.json":()=>q(()=>import("./3.7-dfc781bc.js"),[],import.meta.url),"../../lib/data/banners/events/3.8.json":()=>q(()=>import("./3.8-cab116ac.js"),[],import.meta.url),"../../lib/data/banners/events/4.0.json":()=>q(()=>import("./4.0-b6f7811b.js"),[],import.meta.url),"../../lib/data/banners/events/4.1.json":()=>q(()=>import("./4.1-a7933656.js"),[],import.meta.url),"../../lib/data/banners/events/4.2.json":()=>q(()=>import("./4.2-afc28708.js"),[],import.meta.url),"../../lib/data/banners/events/4.3.json":()=>q(()=>import("./4.3-f9a28ea0.js"),[],import.meta.url)}),`../../lib/data/banners/events/${I.toFixed(1)}.json`);m.push(w)});const R=(await Promise.all(m)).map(({data:I,patch:w})=>(w=w.toFixed(1),I=I.map(({phase:G,banners:te})=>N(w,G,te)),[w.toString(),I]));return i=R.reverse(),r.trim().length>0?V(r):(t(0,n=i),R)},V=m=>{t(2,v="version");const R=(typeof m=="string"?m:m.target.value).toLocaleLowerCase().trim().replace(/'/,"");if(R.length<1)return t(0,n=i);const I=G=>G.toLocaleLowerCase().replace(/_/g,"").replace(/-/g," ").includes(R),w=i.map(([G,te])=>{const ue=te.filter(({queryKey:_e})=>_e.map(de=>I(de)).includes(!0));return[G,ue]});t(0,n=w.filter(([,G])=>G.length>0))};be("handleSearch",V);const O=async()=>{const L=(await gt.getListByStatus("cloud")).map(({bannerName:R,hostedImages:I,character:w,itemID:G,rateup:te})=>{const{thumbnail:ue}=I||{};return{rateup:te,chars:[{bannerName:R,character:w,images:ue}],phase:G,patch:"Custom"}});t(1,c=["Custom",L])},B=async()=>(await T(),await O(),"ok");let K;Je(async()=>{ae("prevbanner"),mt(K,{sizeAutoCapable:!1,className:"os-theme-light"})}),ot(()=>u.set(""));const $=re("navigate"),P=()=>{$("index"),ae("close")};ht("esc","allbanners",m=>{m.preventDefault(),P()});const C=m=>10*Math.sqrt(m);function H(m){it[m?"unshift":"push"](()=>{K=m,t(3,K)})}return[n,c,v,K,l,o,a,u,B,P,C,H]}class rr extends ge{constructor(e){super(),Ee(this,e,Ht,Gt,fe,{},null,[-1,-1])}}export{rr as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-853bb736.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-853bb736.js
deleted file mode 100644
index 20caf276..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-853bb736.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as ee,i as se,s as te,k as u,a as N,l as f,m as h,h as l,c as C,n as o,b as U,G as r,H as O,O as oe,ag as ne,A as ce,J as ae,L as K,C as le,F as ie,ah as Q,q as de,M as ue,r as fe,Y as he,p as X,N as T,a5 as ve,f as B,g as _e,t as W,d as pe,E as Z,v as me,w as ge,x as be,y as ke}from"./index-c0d078cd.js";import{v as Ee,m as we}from"./app-stores-358281e6.js";import{H as Ie}from"./env-f184adc0.js";import{h as $}from"./index-123e2351.js";function ye(t){let e,n,s,i,c,g,a,d,v,m,E,S,w;return{c(){e=u("div"),n=u("div"),s=u("button"),i=u("i"),c=N(),g=u("div"),a=u("a"),d=u("span"),v=u("i"),this.h()},l(b){e=f(b,"DIV",{class:!0});var I=h(e);n=f(I,"DIV",{class:!0});var q=h(n);s=f(q,"BUTTON",{class:!0});var y=h(s);i=f(y,"I",{class:!0}),h(i).forEach(l),y.forEach(l),q.forEach(l),c=C(I),g=f(I,"DIV",{class:!0});var V=h(g);a=f(V,"A",{href:!0,class:!0});var H=h(a);d=f(H,"SPAN",{class:!0});var D=h(d);v=f(D,"I",{class:!0}),h(v).forEach(l),D.forEach(l),H.forEach(l),V.forEach(l),I.forEach(l),this.h()},h(){o(i,"class","gi-reply svelte-194g57p"),o(s,"class","close"),o(n,"class","top svelte-194g57p"),o(v,"class","gi-team svelte-194g57p"),o(d,"class","svelte-194g57p"),o(a,"href","#chat"),o(a,"class","link active svelte-194g57p"),o(g,"class","nav-item svelte-194g57p"),o(e,"class","sidebar svelte-194g57p")},m(b,I){U(b,e,I),r(e,n),r(n,s),r(s,i),r(e,c),r(e,g),r(g,a),r(a,d),r(d,v),E=!0,S||(w=[O(s,"click",t[0]),O(a,"click",oe(t[2])),O(e,"click",ne(t[1]))],S=!0)},p:ce,i(b){E||(ae(()=>{m||(m=K(e,$,{x:-50,duration:100},!0)),m.run(1)}),E=!0)},o(b){m||(m=K(e,$,{x:-50,duration:100},!1)),m.run(0),E=!1},d(b){b&&l(e),b&&m&&m.end(),S=!1,le(w)}}}function De(t){const e=ie("chatToggle");function n(i){Q.call(this,t,i)}function s(i){Q.call(this,t,i)}return[e,n,s]}class Ve extends ee{constructor(e){super(),se(this,e,De,ye,te,{})}}function x(t){let e,n;return e=new Ve({}),{c(){me(e.$$.fragment)},l(s){ge(e.$$.fragment,s)},m(s,i){be(e,s,i),n=!0},i(s){n||(B(e.$$.fragment,s),n=!0)},o(s){W(e.$$.fragment,s),n=!1},d(s){ke(e,s)}}}function Te(t){let e,n,s,i,c,g,a,d,v,m,E,S,w,b,I,q,y,V,H,D,M,F,j,_=(t[2]>640||t[3])&&x();return{c(){e=u("script"),s=N(),i=u("section"),c=u("div"),_&&_.c(),g=N(),a=u("div"),d=u("div"),v=u("div"),m=u("button"),E=u("i"),S=N(),w=u("span"),b=de("Has Anything in Mind?"),q=N(),y=u("div"),V=u("div"),H=N(),D=u("div"),this.h()},l(p){const k=ue('[data-svelte="svelte-13502oz"]',document.head);e=f(k,"SCRIPT",{src:!0,"data-timestamp":!0});var re=h(e);re.forEach(l),k.forEach(l),s=C(p),i=f(p,"SECTION",{class:!0});var G=h(i);c=f(G,"DIV",{class:!0});var A=h(c);_&&_.l(A),g=C(A),a=f(A,"DIV",{class:!0,style:!0});var z=h(a);d=f(z,"DIV",{class:!0});var P=h(d);v=f(P,"DIV",{class:!0});var J=h(v);m=f(J,"BUTTON",{class:!0});var L=h(m);E=f(L,"I",{class:!0}),h(E).forEach(l),L.forEach(l),J.forEach(l),S=C(P),w=f(P,"SPAN",{class:!0});var R=h(w);b=fe(R,"Has Anything in Mind?"),R.forEach(l),P.forEach(l),q=C(z),y=f(z,"DIV",{class:!0});var Y=h(y);V=f(Y,"DIV",{id:!0}),h(V).forEach(l),Y.forEach(l),z.forEach(l),H=C(A),D=f(A,"DIV",{class:!0}),h(D).forEach(l),A.forEach(l),G.forEach(l),this.h()},h(){he(e.src,n="https://gi-wishsim.disqus.com/embed.js")||o(e,"src",n),o(e,"data-timestamp",+new Date),e.async=!0,o(E,"class","gi-reply svelte-1k4512p"),o(m,"class","close dimiss svelte-1k4512p"),o(v,"class","col"),o(w,"class","svelte-1k4512p"),o(d,"class","top svelte-1k4512p"),ae(()=>t[5].call(d)),o(V,"id","disqus_thread"),o(y,"class","chats svelte-1k4512p"),o(a,"class","room transition svelte-1k4512p"),X(a,"--height",t[1]+"px"),T(a,"full",t[2]<=640),T(a,"show",t[0]),o(D,"class","close-div svelte-1k4512p"),o(c,"class","container transition svelte-1k4512p"),T(c,"show",t[0]),o(i,"class","svelte-1k4512p"),T(i,"show",t[0])},m(p,k){r(document.head,e),U(p,s,k),U(p,i,k),r(i,c),_&&_.m(c,null),r(c,g),r(c,a),r(a,d),r(d,v),r(v,m),r(m,E),r(d,S),r(d,w),r(w,b),I=ve(d,t[5].bind(d)),r(a,q),r(a,y),r(y,V),r(c,H),r(c,D),M=!0,F||(j=[O(m,"click",t[4]),O(D,"click",t[4])],F=!0)},p(p,[k]){p[2]>640||p[3]?_?k&12&&B(_,1):(_=x(),_.c(),B(_,1),_.m(c,g)):_&&(_e(),W(_,1,1,()=>{_=null}),pe()),(!M||k&2)&&X(a,"--height",p[1]+"px"),k&4&&T(a,"full",p[2]<=640),k&1&&T(a,"show",p[0]),k&1&&T(c,"show",p[0]),k&1&&T(i,"show",p[0])},i(p){M||(B(_),M=!0)},o(p){W(_),M=!1},d(p){l(e),p&&l(s),p&&l(i),_&&_.d(),I(),F=!1,le(j)}}}function Se(t,e,n){let s,i;Z(t,Ee,v=>n(2,s=v)),Z(t,we,v=>n(3,i=v));let{show:c=!1}=e,g;const a=ie("chatToggle");window.disqus_config=function(){this.page.url=Ie};function d(){g=this.clientHeight,n(1,g)}return t.$$set=v=>{"show"in v&&n(0,c=v.show)},[c,g,s,i,a,d]}class Ce extends ee{constructor(e){super(),se(this,e,Se,Te,te,{show:0})}}export{Ce as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-bd4a5be3.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-bd4a5be3.js
deleted file mode 100644
index b53e517f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-bd4a5be3.js
+++ /dev/null
@@ -1 +0,0 @@
-import{m as $}from"./index-123e2351.js";import{D as w}from"./index-c0d078cd.js";function O(p,{from:t,to:s},d={}){const o=getComputedStyle(p),l=o.transform==="none"?"":o.transform,[c,h]=o.transformOrigin.split(" ").map(parseFloat),r=t.left+t.width*c/s.width-(s.left+c),a=t.top+t.height*h/s.height-(s.top+h),{delay:f=0,duration:e=n=>Math.sqrt(n)*120,easing:g=$}=d;return{delay:f,duration:w(e)?e(Math.sqrt(r*r+a*a)):e,easing:g,css:(n,i)=>{const m=i*r,x=i*a,y=n+i*t.width/s.width,u=n+i*t.height/s.height;return`transform: ${l} translate(${m}px, ${x}px) scale(${y}, ${u});`}}}export{O as f};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-c0d078cd.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-c0d078cd.js
deleted file mode 100644
index dd96b1ae..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-c0d078cd.js
+++ /dev/null
@@ -1,4 +0,0 @@
-function x(){}const K=t=>t;function Ct(t,e){for(const n in e)t[n]=e[n];return t}function St(t){return t&&typeof t=="object"&&typeof t.then=="function"}function _t(t){return t()}function lt(){return Object.create(null)}function C(t){t.forEach(_t)}function H(t){return typeof t=="function"}function ee(t,e){return t!=t?e==e:t!==e||t&&typeof t=="object"||typeof t=="function"}let q;function ne(t,e){return q||(q=document.createElement("a")),q.href=e,t===q.href}function Nt(t){return Object.keys(t).length===0}function Tt(t,...e){if(t==null)return x;const n=t.subscribe(...e);return n.unsubscribe?()=>n.unsubscribe():n}function ie(t,e,n){t.$$.on_destroy.push(Tt(e,n))}function se(t,e,n,i){if(t){const s=ht(t,e,n,i);return t[0](s)}}function ht(t,e,n,i){return t[1]&&i?Ct(n.ctx.slice(),t[1](i(e))):n.ctx}function re(t,e,n,i){if(t[2]&&i){const s=t[2](i(n));if(e.dirty===void 0)return s;if(typeof s=="object"){const c=[],r=Math.max(e.dirty.length,s.length);for(let o=0;o<r;o+=1)c[o]=e.dirty[o]|s[o];return c}return e.dirty|s}return e.dirty}function ce(t,e,n,i,s,c){if(s){const r=ht(e,n,i,c);t.p(r,s)}}function le(t){if(t.ctx.length>32){const e=[],n=t.ctx.length/32;for(let i=0;i<n;i++)e[i]=-1;return e}return-1}function oe(t){const e={};for(const n in t)n[0]!=="$"&&(e[n]=t[n]);return e}function ae(t){const e={};for(const n in t)e[n]=!0;return e}function ue(t){return t??""}function fe(t,e,n){return t.set(n),e}function de(t){return t&&H(t.destroy)?t.destroy:x}const mt=typeof window<"u";let Q=mt?()=>window.performance.now():()=>Date.now(),et=mt?t=>requestAnimationFrame(t):x;const N=new Set;function pt(t){N.forEach(e=>{e.c(t)||(N.delete(e),e.f())}),N.size!==0&&et(pt)}function U(t){let e;return N.size===0&&et(pt),{promise:new Promise(n=>{N.add(e={c:t,f:n})}),abort(){N.delete(e)}}}let V=!1;function Mt(){V=!0}function jt(){V=!1}function Rt(t,e,n,i){for(;t<e;){const s=t+(e-t>>1);n(s)<=i?t=s+1:e=s}return t}function Dt(t){if(t.hydrate_init)return;t.hydrate_init=!0;let e=t.childNodes;if(t.nodeName==="HEAD"){const l=[];for(let a=0;a<e.length;a++){const d=e[a];d.claim_order!==void 0&&l.push(d)}e=l}const n=new Int32Array(e.length+1),i=new Int32Array(e.length);n[0]=-1;let s=0;for(let l=0;l<e.length;l++){const a=e[l].claim_order,d=(s>0&&e[n[s]].claim_order<=a?s+1:Rt(1,s,u=>e[n[u]].claim_order,a))-1;i[l]=n[d]+1;const f=d+1;n[f]=l,s=Math.max(f,s)}const c=[],r=[];let o=e.length-1;for(let l=n[s]+1;l!=0;l=i[l-1]){for(c.push(e[l-1]);o>=l;o--)r.push(e[o]);o--}for(;o>=0;o--)r.push(e[o]);c.reverse(),r.sort((l,a)=>l.claim_order-a.claim_order);for(let l=0,a=0;l<r.length;l++){for(;a<c.length&&r[l].claim_order>=c[a].claim_order;)a++;const d=a<c.length?c[a]:null;t.insertBefore(r[l],d)}}function gt(t,e){t.appendChild(e)}function yt(t){if(!t)return document;const e=t.getRootNode?t.getRootNode():t.ownerDocument;return e&&e.host?e:t.ownerDocument}function zt(t){const e=X("style");return Bt(yt(t),e),e.sheet}function Bt(t,e){gt(t.head||t,e)}function Ht(t,e){if(V){for(Dt(t),(t.actual_end_child===void 0||t.actual_end_child!==null&&t.actual_end_child.parentElement!==t)&&(t.actual_end_child=t.firstChild);t.actual_end_child!==null&&t.actual_end_child.claim_order===void 0;)t.actual_end_child=t.actual_end_child.nextSibling;e!==t.actual_end_child?(e.claim_order!==void 0||e.parentNode!==t)&&t.insertBefore(e,t.actual_end_child):t.actual_end_child=e.nextSibling}else(e.parentNode!==t||e.nextSibling!==null)&&t.appendChild(e)}function Lt(t,e,n){t.insertBefore(e,n||null)}function Pt(t,e,n){V&&!n?Ht(t,e):(e.parentNode!==t||e.nextSibling!=n)&&t.insertBefore(e,n||null)}function R(t){t.parentNode.removeChild(t)}function _e(t,e){for(let n=0;n<t.length;n+=1)t[n]&&t[n].d(e)}function X(t){return document.createElement(t)}function bt(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function nt(t){return document.createTextNode(t)}function he(){return nt(" ")}function me(){return nt("")}function ot(t,e,n,i){return t.addEventListener(e,n,i),()=>t.removeEventListener(e,n,i)}function pe(t){return function(e){return e.preventDefault(),t.call(this,e)}}function ge(t){return function(e){return e.stopPropagation(),t.call(this,e)}}function ye(t){return function(e){e.target===this&&t.call(this,e)}}function be(t,e,n){n==null?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function we(t,e,n){t.setAttributeNS("http://www.w3.org/1999/xlink",e,n)}function qt(t){return Array.from(t.childNodes)}function wt(t){t.claim_info===void 0&&(t.claim_info={last_index:0,total_claimed:0})}function xt(t,e,n,i,s=!1){wt(t);const c=(()=>{for(let r=t.claim_info.last_index;r<t.length;r++){const o=t[r];if(e(o)){const l=n(o);return l===void 0?t.splice(r,1):t[r]=l,s||(t.claim_info.last_index=r),o}}for(let r=t.claim_info.last_index-1;r>=0;r--){const o=t[r];if(e(o)){const l=n(o);return l===void 0?t.splice(r,1):t[r]=l,s?l===void 0&&t.claim_info.last_index--:t.claim_info.last_index=r,o}}return i()})();return c.claim_order=t.claim_info.total_claimed,t.claim_info.total_claimed+=1,c}function kt(t,e,n,i){return xt(t,s=>s.nodeName===e,s=>{const c=[];for(let r=0;r<s.attributes.length;r++){const o=s.attributes[r];n[o.name]||c.push(o.name)}c.forEach(r=>s.removeAttribute(r))},()=>i(e))}function xe(t,e,n){return kt(t,e,n,X)}function ke(t,e,n){return kt(t,e,n,bt)}function Ot(t,e){return xt(t,n=>n.nodeType===3,n=>{const i=""+e;if(n.data.startsWith(i)){if(n.data.length!==i.length)return n.splitText(i.length)}else n.data=i},()=>nt(e),!0)}function $e(t){return Ot(t," ")}function at(t,e,n){for(let i=n;i<t.length;i+=1){const s=t[i];if(s.nodeType===8&&s.textContent.trim()===e)return i}return t.length}function ve(t,e){const n=at(t,"HTML_TAG_START",0),i=at(t,"HTML_TAG_END",n);if(n===i)return new ut(void 0,e);wt(t);const s=t.splice(n,i-n+1);R(s[0]),R(s[s.length-1]);const c=s.slice(1,s.length-1);for(const r of c)r.claim_order=t.claim_info.total_claimed,t.claim_info.total_claimed+=1;return new ut(c,e)}function Ee(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function Ae(t,e){t.value=e??""}function Ce(t,e,n,i){n===null?t.style.removeProperty(e):t.style.setProperty(e,n,i?"important":"")}let O;function Wt(){if(O===void 0){O=!1;try{typeof window<"u"&&window.parent&&window.parent.document}catch{O=!0}}return O}function Se(t,e){getComputedStyle(t).position==="static"&&(t.style.position="relative");const i=X("iframe");i.setAttribute("style","display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;"),i.setAttribute("aria-hidden","true"),i.tabIndex=-1;const s=Wt();let c;return s?(i.src="data:text/html,<script>onresize=function(){parent.postMessage(0,'*')}<\/script>",c=ot(window,"message",r=>{r.source===i.contentWindow&&e()})):(i.src="about:blank",i.onload=()=>{c=ot(i.contentWindow,"resize",e)}),gt(t,i),()=>{(s||c&&i.contentWindow)&&c(),R(i)}}function Ne(t,e,n){t.classList[n?"add":"remove"](e)}function $t(t,e,{bubbles:n=!1,cancelable:i=!1}={}){const s=document.createEvent("CustomEvent");return s.initCustomEvent(t,n,i,e),s}function Te(t,e=document.body){return Array.from(e.querySelectorAll(t))}class Ft{constructor(e=!1){this.is_svg=!1,this.is_svg=e,this.e=this.n=null}c(e){this.h(e)}m(e,n,i=null){this.e||(this.is_svg?this.e=bt(n.nodeName):this.e=X(n.nodeName),this.t=n,this.c(e)),this.i(i)}h(e){this.e.innerHTML=e,this.n=Array.from(this.e.childNodes)}i(e){for(let n=0;n<this.n.length;n+=1)Lt(this.t,this.n[n],e)}p(e){this.d(),this.h(e),this.i(this.a)}d(){this.n.forEach(R)}}class ut extends Ft{constructor(e,n=!1){super(n),this.e=this.n=null,this.l=e}c(e){this.l?this.n=this.l:super.c(e)}i(e){for(let n=0;n<this.n.length;n+=1)Pt(this.t,this.n[n],e)}}const I=new Map;let J=0;function Gt(t){let e=5381,n=t.length;for(;n--;)e=(e<<5)-e^t.charCodeAt(n);return e>>>0}function It(t,e){const n={stylesheet:zt(e),rules:{}};return I.set(t,n),n}function D(t,e,n,i,s,c,r,o=0){const l=16.666/i;let a=`{
-`;for(let m=0;m<=1;m+=l){const y=e+(n-e)*c(m);a+=m*100+`%{${r(y,1-y)}}
-`}const d=a+`100% {${r(n,1-n)}}
-}`,f=`__svelte_${Gt(d)}_${o}`,u=yt(t),{stylesheet:_,rules:h}=I.get(u)||It(u,t);h[f]||(h[f]=!0,_.insertRule(`@keyframes ${f} ${d}`,_.cssRules.length));const p=t.style.animation||"";return t.style.animation=`${p?`${p}, `:""}${f} ${i}ms linear ${s}ms 1 both`,J+=1,f}function z(t,e){const n=(t.style.animation||"").split(", "),i=n.filter(e?c=>c.indexOf(e)<0:c=>c.indexOf("__svelte")===-1),s=n.length-i.length;s&&(t.style.animation=i.join(", "),J-=s,J||Jt())}function Jt(){et(()=>{J||(I.forEach(t=>{const{stylesheet:e}=t;let n=e.cssRules.length;for(;n--;)e.deleteRule(n);t.rules={}}),I.clear())})}function Me(t,e,n,i){if(!e)return x;const s=t.getBoundingClientRect();if(e.left===s.left&&e.right===s.right&&e.top===s.top&&e.bottom===s.bottom)return x;const{delay:c=0,duration:r=300,easing:o=K,start:l=Q()+c,end:a=l+r,tick:d=x,css:f}=n(t,{from:e,to:s},i);let u=!0,_=!1,h;function p(){f&&(h=D(t,0,1,r,c,o,f)),c||(_=!0)}function m(){f&&z(t,h),u=!1}return U(y=>{if(!_&&y>=l&&(_=!0),_&&y>=a&&(d(1,0),m()),!u)return!1;if(_){const b=y-l,w=0+1*o(b/r);d(w,1-w)}return!0}),p(),d(0,1),m}function je(t){const e=getComputedStyle(t);if(e.position!=="absolute"&&e.position!=="fixed"){const{width:n,height:i}=e,s=t.getBoundingClientRect();t.style.position="absolute",t.style.width=n,t.style.height=i,Kt(t,s)}}function Kt(t,e){const n=t.getBoundingClientRect();if(e.left!==n.left||e.top!==n.top){const i=getComputedStyle(t),s=i.transform==="none"?"":i.transform;t.style.transform=`${s} translate(${e.left-n.left}px, ${e.top-n.top}px)`}}let B;function E(t){B=t}function S(){if(!B)throw new Error("Function called outside component initialization");return B}function Re(t){S().$$.on_mount.push(t)}function De(t){S().$$.after_update.push(t)}function ze(t){S().$$.on_destroy.push(t)}function Be(){const t=S();return(e,n,{cancelable:i=!1}={})=>{const s=t.$$.callbacks[e];if(s){const c=$t(e,n,{cancelable:i});return s.slice().forEach(r=>{r.call(t,c)}),!c.defaultPrevented}return!0}}function He(t,e){return S().$$.context.set(t,e),e}function Le(t){return S().$$.context.get(t)}function Pe(t,e){const n=t.$$.callbacks[e.type];n&&n.slice().forEach(i=>i.call(this,e))}const j=[],ft=[],F=[],dt=[],vt=Promise.resolve();let tt=!1;function Et(){tt||(tt=!0,vt.then(it))}function qe(){return Et(),vt}function T(t){F.push(t)}const Z=new Set;let W=0;function it(){const t=B;do{for(;W<j.length;){const e=j[W];W++,E(e),Qt(e.$$)}for(E(null),j.length=0,W=0;ft.length;)ft.pop()();for(let e=0;e<F.length;e+=1){const n=F[e];Z.has(n)||(Z.add(n),n())}F.length=0}while(j.length);for(;dt.length;)dt.pop()();tt=!1,Z.clear(),E(t)}function Qt(t){if(t.fragment!==null){t.update(),C(t.before_update);const e=t.dirty;t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(T)}}let M;function st(){return M||(M=Promise.resolve(),M.then(()=>{M=null})),M}function A(t,e,n){t.dispatchEvent($t(`${e?"intro":"outro"}${n}`))}const G=new Set;let v;function Ut(){v={r:0,c:[],p:v}}function Vt(){v.r||C(v.c),v=v.p}function rt(t,e){t&&t.i&&(G.delete(t),t.i(e))}function At(t,e,n,i){if(t&&t.o){if(G.has(t))return;G.add(t),v.c.push(()=>{G.delete(t),i&&(n&&t.d(1),i())}),t.o(e)}else i&&i()}const ct={duration:0};function Oe(t,e,n){let i=e(t,n),s=!1,c,r,o=0;function l(){c&&z(t,c)}function a(){const{delay:f=0,duration:u=300,easing:_=K,tick:h=x,css:p}=i||ct;p&&(c=D(t,0,1,u,f,_,p,o++)),h(0,1);const m=Q()+f,y=m+u;r&&r.abort(),s=!0,T(()=>A(t,!0,"start")),r=U(b=>{if(s){if(b>=y)return h(1,0),A(t,!0,"end"),l(),s=!1;if(b>=m){const w=_((b-m)/u);h(w,1-w)}}return s})}let d=!1;return{start(){d||(d=!0,z(t),H(i)?(i=i(),st().then(a)):a())},invalidate(){d=!1},end(){s&&(l(),s=!1)}}}function We(t,e,n){let i=e(t,n),s=!0,c;const r=v;r.r+=1;function o(){const{delay:l=0,duration:a=300,easing:d=K,tick:f=x,css:u}=i||ct;u&&(c=D(t,1,0,a,l,d,u));const _=Q()+l,h=_+a;T(()=>A(t,!1,"start")),U(p=>{if(s){if(p>=h)return f(0,1),A(t,!1,"end"),--r.r||C(r.c),!1;if(p>=_){const m=d((p-_)/a);f(1-m,m)}}return s})}return H(i)?st().then(()=>{i=i(),o()}):o(),{end(l){l&&i.tick&&i.tick(1,0),s&&(c&&z(t,c),s=!1)}}}function Fe(t,e,n,i){let s=e(t,n),c=i?0:1,r=null,o=null,l=null;function a(){l&&z(t,l)}function d(u,_){const h=u.b-c;return _*=Math.abs(h),{a:c,b:u.b,d:h,duration:_,start:u.start,end:u.start+_,group:u.group}}function f(u){const{delay:_=0,duration:h=300,easing:p=K,tick:m=x,css:y}=s||ct,b={start:Q()+_,b:u};u||(b.group=v,v.r+=1),r||o?o=b:(y&&(a(),l=D(t,c,u,h,_,p,y)),u&&m(0,1),r=d(b,h),T(()=>A(t,u,"start")),U(w=>{if(o&&w>o.start&&(r=d(o,h),o=null,A(t,r.b,"start"),y&&(a(),l=D(t,c,r.b,r.duration,0,p,s.css))),r){if(w>=r.end)m(c=r.b,1-c),A(t,r.b,"end"),o||(r.b?a():--r.group.r||C(r.group.c)),r=null;else if(w>=r.start){const L=w-r.start;c=r.a+r.d*p(L/r.duration),m(c,1-c)}}return!!(r||o)}))}return{run(u){H(s)?st().then(()=>{s=s(),f(u)}):f(u)},end(){a(),r=o=null}}}function Ge(t,e){const n=e.token={};function i(s,c,r,o){if(e.token!==n)return;e.resolved=o;let l=e.ctx;r!==void 0&&(l=l.slice(),l[r]=o);const a=s&&(e.current=s)(l);let d=!1;e.block&&(e.blocks?e.blocks.forEach((f,u)=>{u!==c&&f&&(Ut(),At(f,1,1,()=>{e.blocks[u]===f&&(e.blocks[u]=null)}),Vt())}):e.block.d(1),a.c(),rt(a,1),a.m(e.mount(),e.anchor),d=!0),e.block=a,e.blocks&&(e.blocks[c]=a),d&&it()}if(St(t)){const s=S();if(t.then(c=>{E(s),i(e.then,1,e.value,c),E(null)},c=>{if(E(s),i(e.catch,2,e.error,c),E(null),!e.hasCatch)throw c}),e.current!==e.pending)return i(e.pending,0),!0}else{if(e.current!==e.then)return i(e.then,1,e.value,t),!0;e.resolved=t}}function Ie(t,e,n){const i=e.slice(),{resolved:s}=t;t.current===t.then&&(i[t.value]=s),t.current===t.catch&&(i[t.error]=s),t.block.p(i,n)}const Je=typeof window<"u"?window:typeof globalThis<"u"?globalThis:global;function Ke(t,e){t.d(1),e.delete(t.key)}function Xt(t,e){At(t,1,1,()=>{e.delete(t.key)})}function Qe(t,e){t.f(),Xt(t,e)}function Ue(t,e,n,i,s,c,r,o,l,a,d,f){let u=t.length,_=c.length,h=u;const p={};for(;h--;)p[t[h].key]=h;const m=[],y=new Map,b=new Map;for(h=_;h--;){const g=f(s,c,h),k=n(g);let $=r.get(k);$?i&&$.p(g,e):($=a(k,g),$.c()),y.set(k,m[h]=$),k in p&&b.set(k,Math.abs(h-p[k]))}const w=new Set,L=new Set;function Y(g){rt(g,1),g.m(o,d),r.set(g.key,g),d=g.first,_--}for(;u&&_;){const g=m[_-1],k=t[u-1],$=g.key,P=k.key;g===k?(d=g.first,u--,_--):y.has(P)?!r.has($)||w.has($)?Y(g):L.has(P)?u--:b.get($)>b.get(P)?(L.add($),Y(g)):(w.add(P),u--):(l(k,r),u--)}for(;u--;){const g=t[u];y.has(g.key)||l(g,r)}for(;_;)Y(m[_-1]);return m}function Ve(t,e){const n={},i={},s={$$scope:1};let c=t.length;for(;c--;){const r=t[c],o=e[c];if(o){for(const l in r)l in o||(i[l]=1);for(const l in o)s[l]||(n[l]=o[l],s[l]=1);t[c]=o}else for(const l in r)s[l]=1}for(const r in i)r in n||(n[r]=void 0);return n}function Xe(t){return typeof t=="object"&&t!==null?t:{}}function Ye(t){t&&t.c()}function Ze(t,e){t&&t.l(e)}function Yt(t,e,n,i){const{fragment:s,on_mount:c,on_destroy:r,after_update:o}=t.$$;s&&s.m(e,n),i||T(()=>{const l=c.map(_t).filter(H);r?r.push(...l):C(l),t.$$.on_mount=[]}),o.forEach(T)}function Zt(t,e){const n=t.$$;n.fragment!==null&&(C(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function te(t,e){t.$$.dirty[0]===-1&&(j.push(t),Et(),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<<e%31}function tn(t,e,n,i,s,c,r,o=[-1]){const l=B;E(t);const a=t.$$={fragment:null,ctx:null,props:c,update:x,not_equal:s,bound:lt(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(e.context||(l?l.$$.context:[])),callbacks:lt(),dirty:o,skip_bound:!1,root:e.target||l.$$.root};r&&r(a.root);let d=!1;if(a.ctx=n?n(t,e.props||{},(f,u,..._)=>{const h=_.length?_[0]:u;return a.ctx&&s(a.ctx[f],a.ctx[f]=h)&&(!a.skip_bound&&a.bound[f]&&a.bound[f](h),d&&te(t,f)),u}):[],a.update(),d=!0,C(a.before_update),a.fragment=i?i(a.ctx):!1,e.target){if(e.hydrate){Mt();const f=qt(e.target);a.fragment&&a.fragment.l(f),f.forEach(R)}else a.fragment&&a.fragment.c();e.intro&&rt(t.$$.fragment),Yt(t,e.target,e.anchor,e.customElement),jt(),it()}E(l)}class en{$destroy(){Zt(this,1),this.$destroy=x}$on(e,n){const i=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return i.push(n),()=>{const s=i.indexOf(n);s!==-1&&i.splice(s,1)}}$set(e){this.$$set&&!Nt(e)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}export{Be as $,x as A,Tt as B,C,H as D,ie as E,Le as F,Ht as G,ot as H,We as I,T as J,Oe as K,Fe as L,Te as M,Ne as N,pe as O,He as P,Je as Q,se as R,en as S,ce as T,le as U,re as V,Ct as W,K as X,ne as Y,ye as Z,ae as _,he as a,ze as a0,ft as a1,ue as a2,bt as a3,ke as a4,Se as a5,_e as a6,Ge as a7,Ie as a8,ut as a9,ve as aa,de as ab,fe as ac,we as ad,Ue as ae,Ke as af,ge as ag,Pe as ah,oe as ai,Ae as aj,je as ak,Me as al,Qe as am,Ve as an,Xe as ao,Pt as b,$e as c,Vt as d,me as e,rt as f,Ut as g,R as h,tn as i,De as j,X as k,xe as l,qt as m,be as n,Re as o,Ce as p,nt as q,Ot as r,ee as s,At as t,Ee as u,Ye as v,Ze as w,Yt as x,Zt as y,qe as z};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-c33d11af.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-c33d11af.js
deleted file mode 100644
index 04025570..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-c33d11af.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as Oe,i as Ae,s as ze,k as h,a as y,l as v,m as $,c as D,h as f,n as u,p as $e,b as M,G as c,H as Be,f as w,g as Pe,t as q,d as Me,J as Ge,L as nt,E as de,F as qe,v as X,w as Z,x,A as be,y as ee,q as j,r as G,u as Y,N as Ne,C as _s,Z as Is,O as ys,P as je,a5 as ht,a6 as Qe,Y as we,R as vt,T as $t,U as gt,V as bt,e as We,K as Ye,$ as Ds,a9 as Vs,aa as qs,M as Ns,I as Ps,W as Ms,an as Ss,ao as Ts}from"./index-c0d078cd.js";import{w as Bs}from"./index-0189b6d0.js";import{h as tt,a as rt,b as Bt,f as Ke,o as ms,i as Ot,e as Os}from"./index-123e2351.js";import{Y as He}from"./runtime.esm-4bf604c8.js";import{I as Re,p as At,h as As,W as zs}from"./WishResult-901333c5.js";import{I as at,m as kt,v as ds,p as Et,h as wt,j as hs,k as vs,a as Je,g as Cs,f as js,J as Dt,K as $s}from"./app-stores-358281e6.js";import{i as gs,e as Gs,g as Us}from"./outfit-bffb00d9.js";import{A as Rs}from"./env-f184adc0.js";import{p as De}from"./audio-460a91c6.js";import{R as Hs}from"./RandomBackground-34695851.js";import{N as Vt,a as ft,n as Ws,M as It,f as Ls,g as dt}from"./_page-87ee6ee5.js";import{M as qt,R as Fs}from"./_modal-balance-a6913f0e.js";import{c as st}from"./api-cookie-d587b0da.js";import{C as Ks}from"./CheckBox-828e98c0.js";import{B as bs}from"./ButtonModal-7ee3a4a1.js";import{q as ks}from"./i18n-ec7c8da1.js";function zt(n){let e,s,t,l,r,o,a=n[8]&&Ys(n);return{c(){e=h("button"),a&&a.c(),s=y(),t=h("span"),this.h()},l(i){e=v(i,"BUTTON",{class:!0});var d=$(e);a&&a.l(d),s=D(d),t=v(d,"SPAN",{class:!0}),$(t).forEach(f),d.forEach(f),this.h()},h(){u(t,"class","svelte-1tza2tz"),u(e,"class","toggle svelte-1tza2tz")},m(i,d){M(i,e,d),a&&a.m(e,null),c(e,s),c(e,t),l=!0,r||(o=Be(e,"click",n[9]),r=!0)},p(i,d){i[8]&&a.p(i,d)},i(i){l||(w(a),l=!0)},o(i){q(a),l=!1},d(i){i&&f(e),a&&a.d(),r=!1,o()}}}function Ys(n){let e,s;return e=new Vt({props:{name:n[7],style:"transform: translateX(70%) translateY(-150%)"}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p:be,i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Js(n){let e,s=n[2]("shop.noLimitTime")+"",t;return{c(){e=h("span"),t=j(s)},l(l){e=v(l,"SPAN",{});var r=$(e);t=G(r,s),r.forEach(f)},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&4&&s!==(s=l[2]("shop.noLimitTime")+"")&&Y(t,s)},d(l){l&&f(e)}}}function Qs(n){let e,s;return{c(){e=h("span"),s=j("\u968F\u4FBF\u7ED9\u70B9\u5427, \u6211\u4E70\u4E1C\u897F\u5403.")},l(t){e=v(t,"SPAN",{});var l=$(e);s=G(l,"\u968F\u4FBF\u7ED9\u70B9\u5427, \u6211\u4E70\u4E1C\u897F\u5403."),l.forEach(f)},m(t,l){M(t,e,l),c(e,s)},p:be,d(t){t&&f(e)}}}function Xs(n){let e,s,t,l,r,o;return e=new ft({props:{type:"stardust",$$slots:{default:[xs]},$$scope:{ctx:n}}}),t=new ft({props:{type:"starglitter",$$slots:{default:[el]},$$scope:{ctx:n}}}),r=new ft({props:{type:"primogem",plusbutton:!0,$$slots:{default:[tl]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment),l=y(),X(r.$$.fragment)},l(a){Z(e.$$.fragment,a),s=D(a),Z(t.$$.fragment,a),l=D(a),Z(r.$$.fragment,a)},m(a,i){x(e,a,i),M(a,s,i),x(t,a,i),M(a,l,i),x(r,a,i),o=!0},p(a,i){const d={};i&65568&&(d.$$scope={dirty:i,ctx:a}),e.$set(d);const m={};i&65600&&(m.$$scope={dirty:i,ctx:a}),t.$set(m);const p={};i&65544&&(p.$$scope={dirty:i,ctx:a}),r.$set(p)},i(a){o||(w(e.$$.fragment,a),w(t.$$.fragment,a),w(r.$$.fragment,a),o=!0)},o(a){q(e.$$.fragment,a),q(t.$$.fragment,a),q(r.$$.fragment,a),o=!1},d(a){ee(e,a),a&&f(s),ee(t,a),a&&f(l),ee(r,a)}}}function Zs(n){let e,s,t,l;return e=new ft({props:{type:"primogem",plusbutton:!0,$$slots:{default:[sl]},$$scope:{ctx:n}}}),t=new ft({props:{type:"genesis",$$slots:{default:[ll]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment)},l(r){Z(e.$$.fragment,r),s=D(r),Z(t.$$.fragment,r)},m(r,o){x(e,r,o),M(r,s,o),x(t,r,o),l=!0},p(r,o){const a={};o&65544&&(a.$$scope={dirty:o,ctx:r}),e.$set(a);const i={};o&65552&&(i.$$scope={dirty:o,ctx:r}),t.$set(i)},i(r){l||(w(e.$$.fragment,r),w(t.$$.fragment,r),l=!0)},o(r){q(e.$$.fragment,r),q(t.$$.fragment,r),l=!1},d(r){ee(e,r),r&&f(s),ee(t,r)}}}function xs(n){let e;return{c(){e=j(n[5])},l(s){e=G(s,n[5])},m(s,t){M(s,e,t)},p(s,t){t&32&&Y(e,s[5])},d(s){s&&f(e)}}}function el(n){let e;return{c(){e=j(n[6])},l(s){e=G(s,n[6])},m(s,t){M(s,e,t)},p(s,t){t&64&&Y(e,s[6])},d(s){s&&f(e)}}}function tl(n){let e;return{c(){e=j(n[3])},l(s){e=G(s,n[3])},m(s,t){M(s,e,t)},p(s,t){t&8&&Y(e,s[3])},d(s){s&&f(e)}}}function sl(n){let e;return{c(){e=j(n[3])},l(s){e=G(s,n[3])},m(s,t){M(s,e,t)},p(s,t){t&8&&Y(e,s[3])},d(s){s&&f(e)}}}function ll(n){let e;return{c(){e=j(n[4])},l(s){e=G(s,n[4])},m(s,t){M(s,e,t)},p(s,t){t&16&&Y(e,s[4])},d(s){s&&f(e)}}}function nl(n){let e,s,t,l,r,o,a,i,d,m,p,_,g,E,I,k=n[1]&&zt(n);function b(B,A){return B[0]==="donate"?Qs:Js}let z=b(n),N=z(n);const O=[Zs,Xs],R=[];function P(B,A){return A&1&&(o=null),o==null&&(o=!!["genesis","outfits","recomended"].includes(B[0])),o?0:B[0]==="paimon-bargains"?1:-1}return~(a=P(n,-1))&&(i=R[a]=O[a](n)),{c(){e=h("div"),s=h("div"),k&&k.c(),t=y(),N.c(),l=y(),r=h("div"),i&&i.c(),d=y(),m=h("button"),p=h("i"),this.h()},l(B){e=v(B,"DIV",{class:!0});var A=$(e);s=v(A,"DIV",{class:!0,style:!0});var V=$(s);k&&k.l(V),t=D(V),N.l(V),V.forEach(f),l=D(A),r=v(A,"DIV",{class:!0});var U=$(r);i&&i.l(U),d=D(U),m=v(U,"BUTTON",{class:!0});var W=$(m);p=v(W,"I",{class:!0}),$(p).forEach(f),W.forEach(f),U.forEach(f),A.forEach(f),this.h()},h(){u(s,"class","info svelte-1tza2tz"),$e(s,"display","flex"),$e(s,"align-items","center"),u(p,"class","gi-close"),u(m,"class","close svelte-1tza2tz"),u(r,"class","fates svelte-1tza2tz"),u(e,"class","item-header svelte-1tza2tz")},m(B,A){M(B,e,A),c(e,s),k&&k.m(s,null),c(s,t),N.m(s,null),c(e,l),c(e,r),~a&&R[a].m(r,null),c(r,d),c(r,m),c(m,p),g=!0,E||(I=Be(m,"click",n[10]),E=!0)},p(B,[A]){B[1]?k?(k.p(B,A),A&2&&w(k,1)):(k=zt(B),k.c(),w(k,1),k.m(s,t)):k&&(Pe(),q(k,1,1,()=>{k=null}),Me()),z===(z=b(B))&&N?N.p(B,A):(N.d(1),N=z(B),N&&(N.c(),N.m(s,null)));let V=a;a=P(B,A),a===V?~a&&R[a].p(B,A):(i&&(Pe(),q(R[V],1,1,()=>{R[V]=null}),Me()),~a?(i=R[a],i?i.p(B,A):(i=R[a]=O[a](B),i.c()),w(i,1),i.m(r,d)):i=null)},i(B){g||(w(k),w(i),Ge(()=>{_||(_=nt(e,tt,{y:-20,duration:250},!0)),_.run(1)}),g=!0)},o(B){q(k),q(i),_||(_=nt(e,tt,{y:-20,duration:250},!1)),_.run(0),g=!1},d(B){B&&f(e),k&&k.d(),N.d(),~a&&R[a].d(),B&&_&&_.end(),E=!1,I()}}}function rl(n,e,s){let t,l,r,o,a,i,d,m,p;de(n,at,N=>s(13,l=N)),de(n,kt,N=>s(11,r=N)),de(n,ds,N=>s(12,o=N)),de(n,He,N=>s(2,a=N)),de(n,Et,N=>s(3,i=N)),de(n,wt,N=>s(4,d=N)),de(n,hs,N=>s(5,m=N)),de(n,vs,N=>s(6,p=N));let{activeShop:_="genesis"}=e;const{patch:g}=l,E=[`outfits-${g}`,`recomended-${g}`],I=gs(g),k=qe("asideToggle"),b=qe("navigate"),z=()=>{De("close"),b("index")};return n.$$set=N=>{"activeShop"in N&&s(0,_=N.activeShop)},n.$$.update=()=>{n.$$.dirty&6144&&s(1,t=o<700&&!r)},[_,t,a,i,d,m,p,E,I,k,z,r,o]}class al extends Oe{constructor(e){super(),Ae(this,e,rl,nl,ze,{activeShop:0})}}function Ct(n){let e,s,t,l,r;return{c(){e=h("div"),this.h()},l(o){e=v(o,"DIV",{class:!0}),$(e).forEach(f),this.h()},h(){u(e,"class","bg svelte-1x9hr9q")},m(o,a){M(o,e,a),t=!0,l||(r=Be(e,"mousedown",Is(n[8])),l=!0)},p:be,i(o){t||(Ge(()=>{s||(s=nt(e,tt,{x:-10,duration:100},!0)),s.run(1)}),t=!0)},o(o){s||(s=nt(e,tt,{x:-10,duration:100},!1)),s.run(0),t=!1},d(o){o&&f(e),o&&s&&s.end(),l=!1,r()}}}function ol(n){let e,s;return e=new Vt({props:{name:"recomended-"+n[5]}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p:be,i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function jt(n){let e,s,t,l,r,o=n[3]("outfit.heading")+"",a,i,d,m,p=n[7]&&il(n);return{c(){e=h("button"),p&&p.c(),s=y(),t=h("span"),l=h("i"),r=y(),a=j(o),this.h()},l(_){e=v(_,"BUTTON",{class:!0});var g=$(e);p&&p.l(g),s=D(g),t=v(g,"SPAN",{class:!0});var E=$(t);l=v(E,"I",{class:!0}),$(l).forEach(f),r=D(E),a=G(E,o),E.forEach(f),g.forEach(f),this.h()},h(){u(l,"class","gi-outfit svelte-1x9hr9q"),u(t,"class","svelte-1x9hr9q"),u(e,"class","link svelte-1x9hr9q"),Ne(e,"active",n[0]==="outfits")},m(_,g){M(_,e,g),p&&p.m(e,null),c(e,s),c(e,t),c(t,l),c(t,r),c(t,a),i=!0,d||(m=Be(e,"click",ys(n[13])),d=!0)},p(_,g){_[7]&&p.p(_,g),(!i||g&8)&&o!==(o=_[3]("outfit.heading")+"")&&Y(a,o),g&1&&Ne(e,"active",_[0]==="outfits")},i(_){i||(w(p),i=!0)},o(_){q(p),i=!1},d(_){_&&f(e),p&&p.d(),d=!1,m()}}}function il(n){let e,s;return e=new Vt({props:{name:"outfits-"+n[5]}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p:be,i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function cl(n){let e,s,t,l=n[3]("shop.text")+"",r,o,a,i,d,m,p,_,g=n[3]("shop.recomendedHeading")+"",E,I,k,b,z,N,O,R=n[3]("shop.paimonHeading")+"",P,B,A,V,U,W,fe=n[3]("shop.crystalTopup")+"",S,le,ne,K,L,he,ue=n[3]("donate")+"",ie,me,pe,Ee,ge,se=n[1]&&n[2]&&Ct(n),re=n[7]&&ol(n),J=n[4].length>0&&jt(n);return{c(){se&&se.c(),e=y(),s=h("aside"),t=h("div"),r=j(l),o=y(),a=h("div"),i=h("button"),re&&re.c(),d=y(),m=h("span"),p=h("i"),_=y(),E=j(g),I=y(),J&&J.c(),k=y(),b=h("button"),z=h("span"),N=h("i"),O=y(),P=j(R),B=y(),A=h("button"),V=h("span"),U=h("i"),W=y(),S=j(fe),le=y(),ne=h("button"),K=h("span"),L=h("i"),he=y(),ie=j(ue),this.h()},l(te){se&&se.l(te),e=D(te),s=v(te,"ASIDE",{class:!0});var ae=$(s);t=v(ae,"DIV",{class:!0});var ye=$(t);r=G(ye,l),ye.forEach(f),o=D(ae),a=v(ae,"DIV",{class:!0});var C=$(a);i=v(C,"BUTTON",{class:!0});var F=$(i);re&&re.l(F),d=D(F),m=v(F,"SPAN",{class:!0});var H=$(m);p=v(H,"I",{class:!0}),$(p).forEach(f),_=D(H),E=G(H,g),H.forEach(f),F.forEach(f),I=D(C),J&&J.l(C),k=D(C),b=v(C,"BUTTON",{class:!0});var _e=$(b);z=v(_e,"SPAN",{class:!0});var T=$(z);N=v(T,"I",{class:!0}),$(N).forEach(f),O=D(T),P=G(T,R),T.forEach(f),_e.forEach(f),B=D(C),A=v(C,"BUTTON",{class:!0});var oe=$(A);V=v(oe,"SPAN",{class:!0});var ce=$(V);U=v(ce,"I",{class:!0}),$(U).forEach(f),W=D(ce),S=G(ce,fe),ce.forEach(f),oe.forEach(f),le=D(C),ne=v(C,"BUTTON",{class:!0});var ve=$(ne);K=v(ve,"SPAN",{class:!0});var Q=$(K);L=v(Q,"I",{class:!0}),$(L).forEach(f),he=D(Q),ie=G(Q,ue),Q.forEach(f),ve.forEach(f),C.forEach(f),ae.forEach(f),this.h()},h(){u(t,"class","top svelte-1x9hr9q"),u(p,"class","gi-recomended svelte-1x9hr9q"),u(m,"class","svelte-1x9hr9q"),u(i,"class","link svelte-1x9hr9q"),Ne(i,"active",n[0]==="recomended"),u(N,"class","gi-paimon-bargains svelte-1x9hr9q"),u(z,"class","svelte-1x9hr9q"),u(b,"class","link svelte-1x9hr9q"),Ne(b,"active",n[0]==="paimon-bargains"),u(U,"class","gi-genesis svelte-1x9hr9q"),u(V,"class","svelte-1x9hr9q"),u(A,"class","link svelte-1x9hr9q"),Ne(A,"active",n[0]==="genesis"),u(L,"class","gi-companion svelte-1x9hr9q"),u(K,"class","svelte-1x9hr9q"),u(ne,"class","link svelte-1x9hr9q"),Ne(ne,"active",n[0]==="donate"),u(a,"class","nav-item svelte-1x9hr9q"),u(s,"class","navbar svelte-1x9hr9q"),Ne(s,"resizeable",n[2]),Ne(s,"show",n[1])},m(te,ae){se&&se.m(te,ae),M(te,e,ae),M(te,s,ae),c(s,t),c(t,r),c(s,o),c(s,a),c(a,i),re&&re.m(i,null),c(i,d),c(i,m),c(m,p),c(m,_),c(m,E),c(a,I),J&&J.m(a,null),c(a,k),c(a,b),c(b,z),c(z,N),c(z,O),c(z,P),c(a,B),c(a,A),c(A,V),c(V,U),c(V,W),c(V,S),c(a,le),c(a,ne),c(ne,K),c(K,L),c(K,he),c(K,ie),pe=!0,Ee||(ge=[Be(i,"click",n[12]),Be(b,"click",n[14]),Be(A,"click",n[15]),Be(ne,"click",n[16])],Ee=!0)},p(te,[ae]){te[1]&&te[2]?se?(se.p(te,ae),ae&6&&w(se,1)):(se=Ct(te),se.c(),w(se,1),se.m(e.parentNode,e)):se&&(Pe(),q(se,1,1,()=>{se=null}),Me()),(!pe||ae&8)&&l!==(l=te[3]("shop.text")+"")&&Y(r,l),te[7]&&re.p(te,ae),(!pe||ae&8)&&g!==(g=te[3]("shop.recomendedHeading")+"")&&Y(E,g),ae&1&&Ne(i,"active",te[0]==="recomended"),te[4].length>0?J?(J.p(te,ae),ae&16&&w(J,1)):(J=jt(te),J.c(),w(J,1),J.m(a,k)):J&&(Pe(),q(J,1,1,()=>{J=null}),Me()),(!pe||ae&8)&&R!==(R=te[3]("shop.paimonHeading")+"")&&Y(P,R),ae&1&&Ne(b,"active",te[0]==="paimon-bargains"),(!pe||ae&8)&&fe!==(fe=te[3]("shop.crystalTopup")+"")&&Y(S,fe),ae&1&&Ne(A,"active",te[0]==="genesis"),(!pe||ae&8)&&ue!==(ue=te[3]("donate")+"")&&Y(ie,ue),ae&1&&Ne(ne,"active",te[0]==="donate"),ae&4&&Ne(s,"resizeable",te[2]),ae&2&&Ne(s,"show",te[1])},i(te){pe||(w(se),w(re),w(J),Ge(()=>{me||(me=nt(s,tt,{x:-100,duration:200},!0)),me.run(1)}),pe=!0)},o(te){q(se),q(re),q(J),me||(me=nt(s,tt,{x:-100,duration:200},!1)),me.run(0),pe=!1},d(te){se&&se.d(te),te&&f(e),te&&f(s),re&&re.d(),J&&J.d(),te&&me&&me.end(),Ee=!1,_s(ge)}}}function fl(n,e,s){let t,l,r,o,a,i;de(n,at,P=>s(17,l=P)),de(n,kt,P=>s(10,r=P)),de(n,ds,P=>s(11,o=P)),de(n,He,P=>s(3,a=P));let{activeShop:d="genesis"}=e,{isOpen:m=!1}=e;const{patch:p}=l,_=qe("outfits");de(n,_,P=>s(4,i=P));const g=gs(p),E=qe("selectShopMenu"),I=qe("asideToggle"),k=P=>{if(s(0,d=P),E(P),["outfits","recomended"].includes(P)&&g)return Ws.openNotice(`${P}-${p}`)},b=()=>k("recomended"),z=()=>k("outfits"),N=()=>k("paimon-bargains"),O=()=>k("genesis"),R=()=>k("donate");return n.$$set=P=>{"activeShop"in P&&s(0,d=P.activeShop),"isOpen"in P&&s(1,m=P.isOpen)},n.$$.update=()=>{n.$$.dirty&3072&&s(2,t=o<700&&!r)},[d,m,t,a,i,p,_,g,I,k,r,o,b,z,N,O,R]}class ul extends Oe{constructor(e){super(),Ae(this,e,fl,cl,ze,{activeShop:0,isOpen:1})}}function pl(n,e,s){const t=n.slice();return t[23]=e[s],t[25]=s,t}function _l(n){let e,s;return e=new Re({props:{type:n[4],width:"70%"}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p:be,i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function ml(n){let e,s,t;return{c(){e=h("img"),this.h()},l(l){e=v(l,"IMG",{src:!0,width:!0,alt:!0}),this.h()},h(){we(e.src,s=n[3][`thumbnail/${n[4]}`])||u(e,"src",s),u(e,"width","75%"),u(e,"alt",t=n[2](`outfit.item.${n[4]}.name`))},m(l,r){M(l,e,r)},p(l,r){r&8&&!we(e.src,s=l[3][`thumbnail/${l[4]}`])&&u(e,"src",s),r&4&&t!==(t=l[2](`outfit.item.${l[4]}.name`))&&u(e,"alt",t)},i:be,o:be,d(l){l&&f(e)}}}function dl(n){let e=n[2](`shop.item.${n[4]}`)+"",s;return{c(){s=j(e)},l(t){s=G(t,e)},m(t,l){M(t,s,l)},p(t,l){l&4&&e!==(e=t[2](`shop.item.${t[4]}`)+"")&&Y(s,e)},d(t){t&&f(s)}}}function hl(n){let e=n[2](`outfit.item.${n[4]}.name`)+"",s;return{c(){s=j(e)},l(t){s=G(t,e)},m(t,l){M(t,s,l)},p(t,l){l&4&&e!==(e=t[2](`outfit.item.${t[4]}.name`)+"")&&Y(s,e)},d(t){t&&f(s)}}}function vl(n){let e;return{c(){e=h("i"),this.h()},l(s){e=v(s,"I",{class:!0}),$(e).forEach(f),this.h()},h(){u(e,"class","gi-star svelte-tdpyek")},m(s,t){M(s,e,t)},p:be,d(s){s&&f(e)}}}function $l(n){let e,s=n[2](`shop.description.${n[4]}`)+"",t;return{c(){e=h("p"),t=j(s),this.h()},l(l){e=v(l,"P",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","svelte-tdpyek")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&4&&s!==(s=l[2](`shop.description.${l[4]}`)+"")&&Y(t,s)},d(l){l&&f(e)}}}function gl(n){let e,s=n[2](`outfit.item.${n[4]}.description`)+"",t;return{c(){e=h("p"),t=j(s),this.h()},l(l){e=v(l,"P",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","svelte-tdpyek")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&4&&s!==(s=l[2](`outfit.item.${l[4]}.description`)+"")&&Y(t,s)},d(l){l&&f(e)}}}function bl(n){let e,s=n[2]("shop.insufficient")+"",t;return{c(){e=h("div"),t=j(s),this.h()},l(l){e=v(l,"DIV",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","error red svelte-tdpyek")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&4&&s!==(s=l[2]("shop.insufficient")+"")&&Y(t,s)},d(l){l&&f(e)}}}function kl(n){let e,s=n[2]("outfit.owned")+"",t;return{c(){e=h("div"),t=j(s),this.h()},l(l){e=v(l,"DIV",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","error red svelte-tdpyek")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&4&&s!==(s=l[2]("outfit.owned")+"")&&Y(t,s)},d(l){l&&f(e)}}}function El(n){let e,s,t,l,r,o,a=n[0]*n[6]+"",i,d,m,p,_,g,E,I,k,b,z,N,O,R,P,B=n[2]("shop.qty")+"",A,V,U,W,fe,S,le,ne,K,L,he;r=new Re({props:{type:n[5],height:"80%",width:"auto",style:"position: absolute; left: 5px;top: 50%; transform: translateY(-50%);"}});const ue=[ml,_l],ie=[];function me(H,_e){return H[8]?0:1}p=me(n),_=ie[p]=ue[p](n);function pe(H,_e){return H[8]?hl:dl}let ge=pe(n)(n),se=Array(n[7]),re=[];for(let H=0;H<se.length;H+=1)re[H]=vl(pl(n,se,H));function J(H,_e){return H[8]?gl:$l}let ae=J(n)(n);ne=new Fs({props:{value:n[0],min:n[12]<1||n[8]?0:1,max:n[8]?1:n[12]||1,disabled:n[12]<1||n[8]}});function ye(H,_e){if(H[9])return kl;if(H[12]<1)return bl}let C=ye(n),F=C&&C(n);return{c(){e=h("div"),s=h("div"),t=h("div"),l=h("span"),X(r.$$.fragment),o=y(),i=j(a),d=y(),m=h("picture"),_.c(),g=y(),E=h("div"),I=h("div"),ge.c(),k=y(),b=h("div");for(let H=0;H<re.length;H+=1)re[H].c();z=y(),ae.c(),N=y(),O=h("div"),R=h("div"),P=h("span"),A=j(B),V=j(" :"),U=y(),W=h("span"),fe=j(n[0]),S=y(),le=h("div"),X(ne.$$.fragment),K=y(),F&&F.c(),this.h()},l(H){e=v(H,"DIV",{class:!0,style:!0});var _e=$(e);s=v(_e,"DIV",{class:!0});var T=$(s);t=v(T,"DIV",{class:!0});var oe=$(t);l=v(oe,"SPAN",{class:!0});var ce=$(l);Z(r.$$.fragment,ce),o=D(ce),i=G(ce,a),ce.forEach(f),oe.forEach(f),d=D(T),m=v(T,"PICTURE",{class:!0});var ve=$(m);_.l(ve),ve.forEach(f),g=D(T),E=v(T,"DIV",{class:!0});var Q=$(E);I=v(Q,"DIV",{class:!0});var ke=$(I);ge.l(ke),ke.forEach(f),k=D(Q),b=v(Q,"DIV",{class:!0});var Se=$(b);for(let Ue=0;Ue<re.length;Ue+=1)re[Ue].l(Se);Se.forEach(f),z=D(Q),ae.l(Q),Q.forEach(f),T.forEach(f),N=D(_e),O=v(_e,"DIV",{class:!0});var Ie=$(O);R=v(Ie,"DIV",{class:!0});var Ve=$(R);P=v(Ve,"SPAN",{});var Te=$(P);A=G(Te,B),V=G(Te," :"),Te.forEach(f),U=D(Ve),W=v(Ve,"SPAN",{style:!0});var Le=$(W);fe=G(Le,n[0]),Le.forEach(f),Ve.forEach(f),S=D(Ie),le=v(Ie,"DIV",{class:!0});var Ce=$(le);Z(ne.$$.fragment,Ce),K=D(Ce),F&&F.l(Ce),Ce.forEach(f),Ie.forEach(f),_e.forEach(f),this.h()},h(){u(l,"class","primogem svelte-tdpyek"),Ne(l,"red",n[12]<1),u(t,"class","primo svelte-tdpyek"),u(m,"class","svelte-tdpyek"),u(I,"class","title svelte-tdpyek"),u(b,"class","star"),u(E,"class","description svelte-tdpyek"),u(s,"class","item star"+n[7]+" svelte-tdpyek"),$e(W,"font-size","larger"),u(R,"class","rangeNumber svelte-tdpyek"),u(le,"class","rangeInput svelte-tdpyek"),u(O,"class","slider svelte-tdpyek"),u(e,"class","content svelte-tdpyek"),$e(e,"--content-height",n[1]+"px"),Ge(()=>n[15].call(e))},m(H,_e){M(H,e,_e),c(e,s),c(s,t),c(t,l),x(r,l,null),c(l,o),c(l,i),c(s,d),c(s,m),ie[p].m(m,null),c(s,g),c(s,E),c(E,I),ge.m(I,null),c(E,k),c(E,b);for(let T=0;T<re.length;T+=1)re[T].m(b,null);c(E,z),ae.m(E,null),c(e,N),c(e,O),c(O,R),c(R,P),c(P,A),c(P,V),c(R,U),c(R,W),c(W,fe),c(O,S),c(O,le),x(ne,le,null),c(le,K),F&&F.m(le,null),L=ht(e,n[15].bind(e)),he=!0},p(H,_e){(!he||_e&1)&&a!==(a=H[0]*H[6]+"")&&Y(i,a),_.p(H,_e),ge.p(H,_e),ae.p(H,_e),(!he||_e&4)&&B!==(B=H[2]("shop.qty")+"")&&Y(A,B),(!he||_e&1)&&Y(fe,H[0]);const T={};_e&1&&(T.value=H[0]),ne.$set(T),F&&F.p(H,_e),(!he||_e&2)&&$e(e,"--content-height",H[1]+"px")},i(H){he||(w(r.$$.fragment,H),w(_),w(ne.$$.fragment,H),he=!0)},o(H){q(r.$$.fragment,H),q(_),q(ne.$$.fragment,H),he=!1},d(H){H&&f(e),ee(r),ie[p].d(),ge.d(),Qe(re,H),ae.d(),ee(ne),F&&F.d(),L()}}}function wl(n){let e,s=n[2]("shop.purchaseButton")+"",t;return{c(){e=h("span"),t=j(s),this.h()},l(l){e=v(l,"SPAN",{slot:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"slot","confirmtext")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&4&&s!==(s=l[2]("shop.purchaseButton")+"")&&Y(t,s)},d(l){l&&f(e)}}}function Il(n){let e,s,t,l;return e=new qt({props:{itemToBuy:n[4]}}),t=new It({props:{title:n[2]("shop.purchaseHeading"),disabled:n[9]||n[12]<1,$$slots:{confirmtext:[wl],default:[El]},$$scope:{ctx:n}}}),t.$on("cancel",n[10]),t.$on("confirm",n[13]),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment)},l(r){Z(e.$$.fragment,r),s=D(r),Z(t.$$.fragment,r)},m(r,o){x(e,r,o),M(r,s,o),x(t,r,o),l=!0},p(r,[o]){const a={};o&4&&(a.title=r[2]("shop.purchaseHeading")),o&67108879&&(a.$$scope={dirty:o,ctx:r}),t.$set(a)},i(r){l||(w(e.$$.fragment,r),w(t.$$.fragment,r),l=!0)},o(r){q(e.$$.fragment,r),q(t.$$.fragment,r),l=!1},d(r){ee(e,r),r&&f(s),ee(t,r)}}}function yl(n,e,s){let t,l,r;de(n,He,U=>s(2,l=U)),de(n,Je,U=>s(3,r=U));let{data:o={}}=e;const{itemToExchange:a,currency:i,price:d,rarity:m,isOutfit:p,isOwned:_}=o,g={starglitter:vs,stardust:hs,primogem:Et,genesis:wt},E=qe("openObtained"),I=qe("closeExchageModal"),k=()=>{De("close"),I()};je("closeModal",k);const b=a==="intertwined"?Cs:js,z=g[i];de(n,z,U=>s(16,t=U));const N=(t-t%d)/d;let O=1;je("setValue",U=>s(0,O=U));const P=qe("buyOutfit"),B=()=>{if(De(),I(),z.update(U=>{const W=U-O*d;return rt.set(i,W),W}),p)return P();b.update(U=>{const W=U+O;return rt.set(a,W),W}),E([{qty:O,item:a}])};let A;function V(){A=this.clientHeight,s(1,A)}return n.$$set=U=>{"data"in U&&s(14,o=U.data)},[O,A,l,r,a,i,d,m,p,_,k,z,N,B,o,V]}class Dl extends Oe{constructor(e){super(),Ae(this,e,yl,Il,ze,{data:14})}}function Vl(n){let e,s,t,l;const r=n[5].default,o=vt(r,n,n[4],null);return{c(){e=h("div"),s=h("div"),o&&o.c(),this.h()},l(a){e=v(a,"DIV",{class:!0});var i=$(e);s=v(i,"DIV",{class:!0,style:!0});var d=$(s);o&&o.l(d),d.forEach(f),i.forEach(f),this.h()},h(){u(s,"class","list-body svelte-pbmdh3"),$e(s,"--column-basis",n[1]+"%"),$e(s,"--column-width",n[2]+"px"),u(e,"class","item-list svelte-pbmdh3"),Ge(()=>n[6].call(e))},m(a,i){M(a,e,i),c(e,s),o&&o.m(s,null),t=ht(e,n[6].bind(e)),l=!0},p(a,[i]){o&&o.p&&(!l||i&16)&&$t(o,r,a,a[4],l?bt(r,a[4],i,null):gt(a[4]),null),(!l||i&2)&&$e(s,"--column-basis",a[1]+"%"),(!l||i&4)&&$e(s,"--column-width",a[2]+"px")},i(a){l||(w(o,a),l=!0)},o(a){q(o,a),l=!1},d(a){a&&f(e),o&&o.d(a),t()}}}function ql(n,e,s){let t;de(n,kt,p=>s(3,t=p));let{$$slots:l={},$$scope:r}=e,o,a=100/2,i;const d=(p,_)=>{if(_){s(1,a=100/4),s(2,i=p/4);return}if(p>=800){s(1,a=100/5),s(2,i=p/5);return}if(p>=650){s(1,a=100/4),s(2,i=p/4);return}if(p>=500){s(1,a=100/3),s(2,i=p/3);return}s(1,a=100/2),s(2,i=p/2)};function m(){o=this.clientWidth,s(0,o)}return n.$$set=p=>{"$$scope"in p&&s(4,r=p.$$scope)},n.$$.update=()=>{n.$$.dirty&9&&d(o,t)},[o,a,i,t,r,l,m]}class ut extends Oe{constructor(e){super(),Ae(this,e,ql,Vl,ze,{})}}function Nl(n){let e,s;const t=n[1].default,l=vt(t,n,n[0],null);return{c(){e=h("div"),l&&l.c(),this.h()},l(r){e=v(r,"DIV",{class:!0});var o=$(e);l&&l.l(o),o.forEach(f),this.h()},h(){u(e,"class","column svelte-1m1hkd6")},m(r,o){M(r,e,o),l&&l.m(e,null),s=!0},p(r,[o]){l&&l.p&&(!s||o&1)&&$t(l,t,r,r[0],s?bt(t,r[0],o,null):gt(r[0]),null)},i(r){s||(w(l,r),s=!0)},o(r){q(l,r),s=!1},d(r){r&&f(e),l&&l.d(r)}}}function Pl(n,e,s){let{$$slots:t={},$$scope:l}=e;return n.$$set=r=>{"$$scope"in r&&s(0,l=r.$$scope)},[l,t]}class lt extends Oe{constructor(e){super(),Ae(this,e,Pl,Nl,ze,{})}}function Gt(n,e,s){const t=n.slice();return t[14]=e[s],t}function Ut(n){let e,s,t,l,r=n[3](`shop.payment${n[14]}`)+"",o,a,i,d;function m(){return n[8](n[14])}return{c(){e=h("button"),s=h("img"),l=y(),o=j(r),a=y(),this.h()},l(p){e=v(p,"BUTTON",{class:!0});var _=$(e);s=v(_,"IMG",{src:!0,alt:!0,class:!0}),l=D(_),o=G(_,r),a=D(_),_.forEach(f),this.h()},h(){we(s.src,t=n[4][`payment-${n[14].toLocaleLowerCase()}.webp`])||u(s,"src",t),u(s,"alt","method"),u(s,"class","svelte-1ujvigb"),u(e,"class","item svelte-1ujvigb"),Ne(e,"selected",n[14]===n[2])},m(p,_){M(p,e,_),c(e,s),c(e,l),c(e,o),c(e,a),i||(d=Be(e,"click",m),i=!0)},p(p,_){n=p,_&16&&!we(s.src,t=n[4][`payment-${n[14].toLocaleLowerCase()}.webp`])&&u(s,"src",t),_&8&&r!==(r=n[3](`shop.payment${n[14]}`)+"")&&Y(o,r),_&4&&Ne(e,"selected",n[14]===n[2])},d(p){p&&f(e),i=!1,d()}}}function Ml(n){let e,s,t,l,r,o,a=n[3]("shop.pay")+"",i,d,m,p,_,g,E=n[3]("shop.product")+"",I,k,b,z,N,O=n[3]("shop.item.genesis")+"",R,P,B=n[0].qty+"",A,V,U,W=n[0].price+"",fe,S,le,ne,K=n[3]("shop.selectPayment")+"",L,he,ue,ie,me,pe,Ee,ge,se=n[3]("shop.convertPrimo")+"",re,J,te,ae,ye=n[3]("shop.proceedPayment")+"",C,F,H,_e;b=new Re({props:{type:"genesis",width:"50%"}});let T=["Childe","Tears","Wakaranai"],oe=[];for(let ce=0;ce<3;ce+=1)oe[ce]=Ut(Gt(n,T,ce));return{c(){e=h("div"),s=h("div"),t=h("button"),l=h("i"),r=y(),o=h("div"),i=j(a),d=y(),m=h("div"),p=h("div"),_=h("picture"),g=h("span"),I=j(E),k=y(),X(b.$$.fragment),z=y(),N=h("span"),R=j(O),P=j(" x"),A=j(B),V=y(),U=h("div"),fe=j(W),S=y(),le=h("div"),ne=h("span"),L=j(K),he=y(),ue=h("div");for(let ce=0;ce<3;ce+=1)oe[ce].c();ie=y(),me=h("div"),pe=h("input"),Ee=y(),ge=h("label"),re=j(se),J=y(),te=h("div"),ae=h("button"),C=j(ye),this.h()},l(ce){e=v(ce,"DIV",{class:!0});var ve=$(e);s=v(ve,"DIV",{class:!0});var Q=$(s);t=v(Q,"BUTTON",{class:!0});var ke=$(t);l=v(ke,"I",{class:!0}),$(l).forEach(f),ke.forEach(f),r=D(Q),o=v(Q,"DIV",{class:!0});var Se=$(o);i=G(Se,a),Se.forEach(f),Q.forEach(f),d=D(ve),m=v(ve,"DIV",{class:!0});var Ie=$(m);p=v(Ie,"DIV",{class:!0});var Ve=$(p);_=v(Ve,"PICTURE",{class:!0});var Te=$(_);g=v(Te,"SPAN",{class:!0});var Le=$(g);I=G(Le,E),Le.forEach(f),k=D(Te),Z(b.$$.fragment,Te),z=D(Te),N=v(Te,"SPAN",{class:!0});var Ce=$(N);R=G(Ce,O),P=G(Ce," x"),A=G(Ce,B),Ce.forEach(f),Te.forEach(f),V=D(Ve),U=v(Ve,"DIV",{class:!0});var Ue=$(U);fe=G(Ue,W),Ue.forEach(f),Ve.forEach(f),S=D(Ie),le=v(Ie,"DIV",{class:!0});var Fe=$(le);ne=v(Fe,"SPAN",{});var ot=$(ne);L=G(ot,K),ot.forEach(f),he=D(Fe),ue=v(Fe,"DIV",{class:!0});var Xe=$(ue);for(let et=0;et<3;et+=1)oe[et].l(Xe);Xe.forEach(f),Fe.forEach(f),ie=D(Ie),me=v(Ie,"DIV",{class:!0});var Ze=$(me);pe=v(Ze,"INPUT",{id:!0,type:!0,style:!0}),Ee=D(Ze),ge=v(Ze,"LABEL",{for:!0});var it=$(ge);re=G(it,se),it.forEach(f),Ze.forEach(f),J=D(Ie),te=v(Ie,"DIV",{class:!0});var xe=$(te);ae=v(xe,"BUTTON",{class:!0});var ct=$(ae);C=G(ct,ye),ct.forEach(f),xe.forEach(f),Ie.forEach(f),ve.forEach(f),this.h()},h(){u(l,"class","gi-angle-left"),u(t,"class","back svelte-1ujvigb"),u(o,"class","title svelte-1ujvigb"),u(s,"class","header svelte-1ujvigb"),u(g,"class","product-text svelte-1ujvigb"),u(N,"class","product-name svelte-1ujvigb"),u(_,"class","svelte-1ujvigb"),u(U,"class","price svelte-1ujvigb"),u(p,"class","detail svelte-1ujvigb"),u(ue,"class","list svelte-1ujvigb"),u(le,"class","payment-type svelte-1ujvigb"),u(pe,"id","convert"),u(pe,"type","checkbox"),$e(pe,"margin-right",".4rem"),u(ge,"for","convert"),u(me,"class","auto-convert svelte-1ujvigb"),u(ae,"class","svelte-1ujvigb"),u(te,"class","button-payment svelte-1ujvigb"),u(m,"class","body svelte-1ujvigb"),u(e,"class","genesis-modal svelte-1ujvigb")},m(ce,ve){M(ce,e,ve),c(e,s),c(s,t),c(t,l),c(s,r),c(s,o),c(o,i),c(e,d),c(e,m),c(m,p),c(p,_),c(_,g),c(g,I),c(_,k),x(b,_,null),c(_,z),c(_,N),c(N,R),c(N,P),c(N,A),c(p,V),c(p,U),c(U,fe),c(m,S),c(m,le),c(le,ne),c(ne,L),c(le,he),c(le,ue);for(let Q=0;Q<3;Q+=1)oe[Q].m(ue,null);c(m,ie),c(m,me),c(me,pe),pe.checked=n[1],c(me,Ee),c(me,ge),c(ge,re),c(m,J),c(m,te),c(te,ae),c(ae,C),F=!0,H||(_e=[Be(t,"click",n[5]),Be(pe,"change",n[9]),Be(pe,"change",n[10]),Be(ae,"click",n[7])],H=!0)},p(ce,ve){if((!F||ve&8)&&a!==(a=ce[3]("shop.pay")+"")&&Y(i,a),(!F||ve&8)&&E!==(E=ce[3]("shop.product")+"")&&Y(I,E),(!F||ve&8)&&O!==(O=ce[3]("shop.item.genesis")+"")&&Y(R,O),(!F||ve&1)&&B!==(B=ce[0].qty+"")&&Y(A,B),(!F||ve&1)&&W!==(W=ce[0].price+"")&&Y(fe,W),(!F||ve&8)&&K!==(K=ce[3]("shop.selectPayment")+"")&&Y(L,K),ve&92){T=["Childe","Tears","Wakaranai"];let Q;for(Q=0;Q<3;Q+=1){const ke=Gt(ce,T,Q);oe[Q]?oe[Q].p(ke,ve):(oe[Q]=Ut(ke),oe[Q].c(),oe[Q].m(ue,null))}for(;Q<3;Q+=1)oe[Q].d(1)}ve&2&&(pe.checked=ce[1]),(!F||ve&8)&&se!==(se=ce[3]("shop.convertPrimo")+"")&&Y(re,se),(!F||ve&8)&&ye!==(ye=ce[3]("shop.proceedPayment")+"")&&Y(C,ye)},i(ce){F||(w(b.$$.fragment,ce),F=!0)},o(ce){q(b.$$.fragment,ce),F=!1},d(ce){ce&&f(e),ee(b),Qe(oe,ce),H=!1,_s(_e)}}}function Sl(n){let e,s,t,l;return e=new qt({props:{itemToBuy:"genesis"}}),t=new It({props:{blank:!0,$$slots:{default:[Ml]},$$scope:{ctx:n}}}),t.$on("cancel",n[5]),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment)},l(r){Z(e.$$.fragment,r),s=D(r),Z(t.$$.fragment,r)},m(r,o){x(e,r,o),M(r,s,o),x(t,r,o),l=!0},p(r,[o]){const a={};o&131103&&(a.$$scope={dirty:o,ctx:r}),t.$set(a)},i(r){l||(w(e.$$.fragment,r),w(t.$$.fragment,r),l=!0)},o(r){q(e.$$.fragment,r),q(t.$$.fragment,r),l=!1},d(r){ee(e,r),r&&f(s),ee(t,r)}}}function Tl(n,e,s){let t,l;de(n,He,b=>s(3,t=b)),de(n,Je,b=>s(4,l=b));let{data:r={qty:0,bonus:0,price:"0"}}=e;const o=qe("closeModal"),a=qe("confirmBuy"),i=qe("openObtained");let d=st.get("autoconvert-genesis"),m=st.get("payment-method")||"wakaranai";const p=b=>{b!==m&&(De(),s(2,m=b),st.set("payment-method",b))},_=()=>{Et.update(b=>{const z=b+r.qty+r.bonus;return rt.set("primogem",z),z})},g=()=>{const b=d?"primogem":"genesis";if(a({qty:r.qty,bonus:r.bonus,item:b}),i([{qty:r.qty+r.bonus,item:b}]),d)return _();wt.update(z=>{const N=z+r.qty+r.bonus;return rt.set("genesis",N),N})},E=b=>p(b);function I(){d=this.checked,s(1,d)}const k=()=>De("click2");return n.$$set=b=>{"data"in b&&s(0,r=b.data)},n.$$.update=()=>{n.$$.dirty&2&&st.set("autoconvert-genesis",d)},[r,d,m,t,l,o,p,g,E,I,k]}class Bl extends Oe{constructor(e){super(),Ae(this,e,Tl,Sl,ze,{data:0})}}function Rt(n,e,s){const t=n.slice();return t[22]=e[s].qty,t[23]=e[s].price,t[24]=e[s].doubleBonus,t[26]=s,t}function Ht(n){let e,s;return e=new Bl({props:{data:n[2]}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&4&&(r.data=t[2]),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Ol(n){let e,s,t,l=n[5]("shop.bonus")+"",r,o,a,i,d,m=n[7][n[22]]+"",p,_;return a=new Re({props:{type:"genesis"}}),{c(){e=h("div"),s=h("div"),t=h("span"),r=j(l),o=y(),X(a.$$.fragment),i=y(),d=h("span"),p=j(m),this.h()},l(g){e=v(g,"DIV",{class:!0});var E=$(e);s=v(E,"DIV",{class:!0});var I=$(s);t=v(I,"SPAN",{});var k=$(t);r=G(k,l),k.forEach(f),o=D(I),Z(a.$$.fragment,I),i=D(I),d=v(I,"SPAN",{});var b=$(d);p=G(b,m),b.forEach(f),I.forEach(f),E.forEach(f),this.h()},h(){u(s,"class","wrap svelte-1fsb0dp"),u(e,"class","topup-bonus bonus svelte-1fsb0dp")},m(g,E){M(g,e,E),c(e,s),c(s,t),c(t,r),c(s,o),x(a,s,null),c(s,i),c(s,d),c(d,p),_=!0},p(g,E){(!_||E&32)&&l!==(l=g[5]("shop.bonus")+"")&&Y(r,l),(!_||E&2)&&m!==(m=g[7][g[22]]+"")&&Y(p,m)},i(g){_||(w(a.$$.fragment,g),_=!0)},o(g){q(a.$$.fragment,g),_=!1},d(g){g&&f(e),ee(a)}}}function Al(n){let e,s,t,l,r,o=n[5]("shop.bonus")+"",a,i,d,m,p,_=n[22]+"",g,E;return t=new Re({props:{type:"genesis",style:"position: absolute; top:-50%;",width:"35%"}}),{c(){e=h("div"),s=h("div"),X(t.$$.fragment),l=y(),r=h("span"),a=j(o),i=j("!"),d=y(),m=h("span"),p=j("+"),g=j(_),this.h()},l(I){e=v(I,"DIV",{class:!0,style:!0});var k=$(e);s=v(k,"DIV",{class:!0});var b=$(s);Z(t.$$.fragment,b),l=D(b),r=v(b,"SPAN",{});var z=$(r);a=G(z,o),i=G(z,"!"),z.forEach(f),d=D(b),m=v(b,"SPAN",{class:!0});var N=$(m);p=G(N,"+"),g=G(N,_),N.forEach(f),b.forEach(f),k.forEach(f),this.h()},h(){u(m,"class","amount svelte-1fsb0dp"),u(s,"class","wrap svelte-1fsb0dp"),u(e,"class","bonus firstBonus svelte-1fsb0dp"),$e(e,"background-image","url("+n[4]["bg-bonus.webp"]+")")},m(I,k){M(I,e,k),c(e,s),x(t,s,null),c(s,l),c(s,r),c(r,a),c(r,i),c(s,d),c(s,m),c(m,p),c(m,g),E=!0},p(I,k){(!E||k&32)&&o!==(o=I[5]("shop.bonus")+"")&&Y(a,o),(!E||k&2)&&_!==(_=I[22]+"")&&Y(g,_),(!E||k&16)&&$e(e,"background-image","url("+I[4]["bg-bonus.webp"]+")")},i(I){E||(w(t.$$.fragment,I),E=!0)},o(I){q(t.$$.fragment,I),E=!1},d(I){I&&f(e),ee(t)}}}function zl(n){let e,s,t,l,r,o,a,i,d,m,p,_,g,E=n[22]+"",I,k,b=n[5]("shop.item.genesis")+"",z,N,O,R=n[23]+"",P,B,A,V,U,W;const fe=[Al,Ol],S=[];function le(K,L){return K[24]&&K[0]?0:K[22]!==60?1:-1}~(s=le(n))&&(t=S[s]=fe[s](n));function ne(){return n[9](n[22],n[23],n[24])}return{c(){e=h("button"),t&&t.c(),l=y(),r=h("div"),o=h("div"),a=h("picture"),i=h("img"),p=y(),_=h("div"),g=h("div"),I=j(E),k=y(),z=j(b),N=y(),O=h("div"),P=j(R),A=y(),this.h()},l(K){e=v(K,"BUTTON",{class:!0});var L=$(e);t&&t.l(L),l=D(L),r=v(L,"DIV",{class:!0,style:!0});var he=$(r);o=v(he,"DIV",{class:!0});var ue=$(o);a=v(ue,"PICTURE",{class:!0});var ie=$(a);i=v(ie,"IMG",{src:!0,alt:!0,class:!0}),ie.forEach(f),ue.forEach(f),p=D(he),_=v(he,"DIV",{class:!0});var me=$(_);g=v(me,"DIV",{class:!0});var pe=$(g);I=G(pe,E),k=D(pe),z=G(pe,b),pe.forEach(f),N=D(me),O=v(me,"DIV",{class:!0});var Ee=$(O);P=G(Ee,R),Ee.forEach(f),me.forEach(f),he.forEach(f),L.forEach(f),A=D(K),this.h()},h(){we(i.src,d=n[4][`genesis-${n[22]}.webp`])||u(i,"src",d),u(i,"alt",m="Genesis Crystal "+n[22]),u(i,"class","svelte-1fsb0dp"),u(a,"class","svelte-1fsb0dp"),u(o,"class","picture svelte-1fsb0dp"),u(g,"class","name svelte-1fsb0dp"),u(O,"class","price svelte-1fsb0dp"),u(_,"class","caption svelte-1fsb0dp"),u(r,"class","content svelte-1fsb0dp"),$e(r,"background-image","url("+n[4]["genesis-bg.webp"]+")"),u(e,"class","svelte-1fsb0dp")},m(K,L){M(K,e,L),~s&&S[s].m(e,null),c(e,l),c(e,r),c(r,o),c(o,a),c(a,i),c(r,p),c(r,_),c(_,g),c(g,I),c(g,k),c(g,z),c(_,N),c(_,O),c(O,P),M(K,A,L),V=!0,U||(W=Be(e,"click",ne),U=!0)},p(K,L){n=K;let he=s;s=le(n),s===he?~s&&S[s].p(n,L):(t&&(Pe(),q(S[he],1,1,()=>{S[he]=null}),Me()),~s?(t=S[s],t?t.p(n,L):(t=S[s]=fe[s](n),t.c()),w(t,1),t.m(e,l)):t=null),(!V||L&18&&!we(i.src,d=n[4][`genesis-${n[22]}.webp`]))&&u(i,"src",d),(!V||L&2&&m!==(m="Genesis Crystal "+n[22]))&&u(i,"alt",m),(!V||L&2)&&E!==(E=n[22]+"")&&Y(I,E),(!V||L&32)&&b!==(b=n[5]("shop.item.genesis")+"")&&Y(z,b),(!V||L&2)&&R!==(R=n[23]+"")&&Y(P,R),(!V||L&16)&&$e(r,"background-image","url("+n[4]["genesis-bg.webp"]+")")},i(K){V||(w(t),B||Ge(()=>{B=Ye(e,Ke,{duration:300,delay:Math.sqrt(n[26]*5e3)}),B.start()}),V=!0)},o(K){q(t),V=!1},d(K){K&&f(e),~s&&S[s].d(),K&&f(A),U=!1,W()}}}function Wt(n){let e,s;return e=new lt({props:{$$slots:{default:[zl]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&134217779&&(r.$$scope={dirty:l,ctx:t}),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Cl(n){let e,s,t=n[1],l=[];for(let o=0;o<t.length;o+=1)l[o]=Wt(Rt(n,t,o));const r=o=>q(l[o],1,1,()=>{l[o]=null});return{c(){for(let o=0;o<l.length;o+=1)l[o].c();e=We()},l(o){for(let a=0;a<l.length;a+=1)l[a].l(o);e=We()},m(o,a){for(let i=0;i<l.length;i+=1)l[i].m(o,a);M(o,e,a),s=!0},p(o,a){if(a&435){t=o[1];let i;for(i=0;i<t.length;i+=1){const d=Rt(o,t,i);l[i]?(l[i].p(d,a),w(l[i],1)):(l[i]=Wt(d),l[i].c(),w(l[i],1),l[i].m(e.parentNode,e))}for(Pe(),i=t.length;i<l.length;i+=1)r(i);Me()}},i(o){if(!s){for(let a=0;a<t.length;a+=1)w(l[a]);s=!0}},o(o){l=l.filter(Boolean);for(let a=0;a<l.length;a+=1)q(l[a]);s=!1},d(o){Qe(l,o),o&&f(e)}}}function jl(n){let e,s=n[5]("shop.initialBonus")+"",t;return{c(){e=h("span"),t=j(s),this.h()},l(l){e=v(l,"SPAN",{style:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){$e(e,"color","var(--tertiary-color)")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&32&&s!==(s=l[5]("shop.initialBonus")+"")&&Y(t,s)},d(l){l&&f(e)}}}function Gl(n){let e,s,t,l,r,o=n[3]&&Ht(n);return s=new ut({props:{$$slots:{default:[Cl]},$$scope:{ctx:n}}}),l=new Ks({props:{checked:n[0],$$slots:{default:[jl]},$$scope:{ctx:n}}}),l.$on("change",n[6]),{c(){o&&o.c(),e=y(),X(s.$$.fragment),t=y(),X(l.$$.fragment)},l(a){o&&o.l(a),e=D(a),Z(s.$$.fragment,a),t=D(a),Z(l.$$.fragment,a)},m(a,i){o&&o.m(a,i),M(a,e,i),x(s,a,i),M(a,t,i),x(l,a,i),r=!0},p(a,[i]){a[3]?o?(o.p(a,i),i&8&&w(o,1)):(o=Ht(a),o.c(),w(o,1),o.m(e.parentNode,e)):o&&(Pe(),q(o,1,1,()=>{o=null}),Me());const d={};i&134217779&&(d.$$scope={dirty:i,ctx:a}),s.$set(d);const m={};i&1&&(m.checked=a[0]),i&134217760&&(m.$$scope={dirty:i,ctx:a}),l.$set(m)},i(a){r||(w(o),w(s.$$.fragment,a),w(l.$$.fragment,a),r=!0)},o(a){q(o),q(s.$$.fragment,a),q(l.$$.fragment,a),r=!1},d(a){o&&o.d(a),a&&f(e),ee(s,a),a&&f(t),ee(l,a)}}}function Ul(n,e,s){let t,l,r,o;de(n,Dt,V=>s(11,t=V)),de(n,at,V=>s(12,l=V)),de(n,Je,V=>s(4,r=V)),de(n,He,V=>s(5,o=V));const a=st.get("initialTopup");let i=a===void 0?!0:a;const d=({detail:V})=>s(0,i=!!V?.checked),{versionReset:m,topupBonus:p}=Ls,_=Bt.get("topupBonus")||{},g=V=>{const{patch:U}=l;return V.filter(W=>W<=parseFloat(U)).sort((W,fe)=>fe-W)[0]||0},E=g(m),I=g(Object.keys(_)),k=E>I?E:I,b=[],z=t.genesis;Object.keys(z).forEach(V=>{const W=!(Array.isArray(_[k])?_[k]:[]).includes(parseFloat(V)),fe={qty:parseInt(V),price:z[V],doubleBonus:W};b.push(fe)});let N={},O=!1;const R=({qty:V,isDoubleBonus:U,price:W})=>{De("exchange"),s(3,O=!0),s(2,N={qty:V,bonus:U&&i?V:p[V]||0,price:W})};je("closeModal",()=>{De("close"),s(3,O=!1)}),je("confirmBuy",({qty:V,bonus:U})=>{if(s(3,O=!1),De(),V===U){_[k]=_[k]||[],_[k].includes(V)||_[k].push(V),Bt.set("topupBonus",_);const W=b.findIndex(fe=>fe.qty===V);s(1,b[W].doubleBonus=!1,b)}});const A=(V,U,W)=>R({qty:V,price:U,isDoubleBonus:W});return n.$$.update=()=>{n.$$.dirty&1&&st.set("initialTopup",i)},[i,b,N,O,r,o,d,p,R,A]}class Rl extends Oe{constructor(e){super(),Ae(this,e,Ul,Gl,ze,{})}}function Hl(n){let e,s;const t=n[1].default,l=vt(t,n,n[0],null);return{c(){e=h("div"),l&&l.c(),this.h()},l(r){e=v(r,"DIV",{class:!0});var o=$(e);l&&l.l(o),o.forEach(f),this.h()},h(){u(e,"class","nav-item-list svelte-kwggo6")},m(r,o){M(r,e,o),l&&l.m(e,null),s=!0},p(r,[o]){l&&l.p&&(!s||o&1)&&$t(l,t,r,r[0],s?bt(t,r[0],o,null):gt(r[0]),null)},i(r){s||(w(l,r),s=!0)},o(r){q(l,r),s=!1},d(r){r&&f(e),l&&l.d(r)}}}function Wl(n,e,s){let{$$slots:t={},$$scope:l}=e;return n.$$set=r=>{"$$scope"in r&&s(0,l=r.$$scope)},[l,t]}class Es extends Oe{constructor(e){super(),Ae(this,e,Wl,Hl,ze,{})}}function Ll(n){let e,s,t,l,r;const o=n[5].default,a=vt(o,n,n[4],null);return{c(){e=h("button"),s=h("div"),a&&a.c(),this.h()},l(i){e=v(i,"BUTTON",{class:!0,style:!0});var d=$(e);s=v(d,"DIV",{class:!0});var m=$(s);a&&a.l(m),m.forEach(f),d.forEach(f),this.h()},h(){u(s,"class","border svelte-1qgesf6"),u(e,"class","nav-link-item svelte-1qgesf6"),$e(e,"--bg-active","url('"+n[1]["shop-nav-bg.webp"]+"')"),Ne(e,"active",n[0])},m(i,d){M(i,e,d),c(e,s),a&&a.m(s,null),t=!0,l||(r=Be(e,"click",n[2]),l=!0)},p(i,[d]){a&&a.p&&(!t||d&16)&&$t(a,o,i,i[4],t?bt(o,i[4],d,null):gt(i[4]),null),(!t||d&2)&&$e(e,"--bg-active","url('"+i[1]["shop-nav-bg.webp"]+"')"),d&1&&Ne(e,"active",i[0])},i(i){t||(w(a,i),t=!0)},o(i){q(a,i),t=!1},d(i){i&&f(e),a&&a.d(i),l=!1,r()}}}function Fl(n,e,s){let t;de(n,Je,m=>s(1,t=m));let{$$slots:l={},$$scope:r}=e,{active:o=!1}=e,{name:a=""}=e;const i=Ds(),d=()=>{i("click",{selected:a})};return n.$$set=m=>{"active"in m&&s(0,o=m.active),"name"in m&&s(3,a=m.name),"$$scope"in m&&s(4,r=m.$$scope)},[o,t,d,a,r,l]}class Nt extends Oe{constructor(e){super(),Ae(this,e,Fl,Ll,ze,{active:0,name:3})}}function Lt(n,e,s){const t=n.slice();return t[8]=e[s],t[10]=s,t}function Ft(n,e,s){const t=n.slice();return t[11]=e[s],t}function Kt(n,e,s){const t=n.slice();return t[14]=e[s],t}function Kl(n){let e=n[1](`shop.exchange.${n[14]}`)+"",s,t;return{c(){s=j(e),t=y()},l(l){s=G(l,e),t=D(l)},m(l,r){M(l,s,r),M(l,t,r)},p(l,r){r&2&&e!==(e=l[1](`shop.exchange.${l[14]}`)+"")&&Y(s,e)},d(l){l&&f(s),l&&f(t)}}}function Yt(n){let e,s;return e=new Nt({props:{name:n[14],active:n[0]===n[14],$$slots:{default:[Kl]},$$scope:{ctx:n}}}),e.$on("click",n[5]),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&1&&(r.active=t[0]===t[14]),l&131074&&(r.$$scope={dirty:l,ctx:t}),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Yl(n){let e,s,t=["starglitter","stardust","primogem"],l=[];for(let o=0;o<3;o+=1)l[o]=Yt(Kt(n,t,o));const r=o=>q(l[o],1,1,()=>{l[o]=null});return{c(){for(let o=0;o<3;o+=1)l[o].c();e=We()},l(o){for(let a=0;a<3;a+=1)l[a].l(o);e=We()},m(o,a){for(let i=0;i<3;i+=1)l[i].m(o,a);M(o,e,a),s=!0},p(o,a){if(a&35){t=["starglitter","stardust","primogem"];let i;for(i=0;i<3;i+=1){const d=Kt(o,t,i);l[i]?(l[i].p(d,a),w(l[i],1)):(l[i]=Yt(d),l[i].c(),w(l[i],1),l[i].m(e.parentNode,e))}for(Pe(),i=3;i<3;i+=1)r(i);Me()}},i(o){if(!s){for(let a=0;a<3;a+=1)w(l[a]);s=!0}},o(o){l=l.filter(Boolean);for(let a=0;a<3;a+=1)q(l[a]);s=!1},d(o){Qe(l,o),o&&f(e)}}}function Jt(n){let e,s,t,l=n[3][n[11]].price+"",r,o;return e=new Re({props:{type:n[11],width:"15%"}}),{c(){X(e.$$.fragment),s=y(),t=h("span"),r=j(l),this.h()},l(a){Z(e.$$.fragment,a),s=D(a),t=v(a,"SPAN",{style:!0,class:!0});var i=$(t);r=G(i,l),i.forEach(f),this.h()},h(){$e(t,"margin-left","5px"),u(t,"class","svelte-5inznb")},m(a,i){x(e,a,i),M(a,s,i),M(a,t,i),c(t,r),o=!0},p:be,i(a){o||(w(e.$$.fragment,a),o=!0)},o(a){q(e.$$.fragment,a),o=!1},d(a){ee(e,a),a&&f(s),a&&f(t)}}}function Qt(n){let e,s,t=n[0]===n[11]&&Jt(n);return{c(){t&&t.c(),e=We()},l(l){t&&t.l(l),e=We()},m(l,r){t&&t.m(l,r),M(l,e,r),s=!0},p(l,r){l[0]===l[11]?t?(t.p(l,r),r&1&&w(t,1)):(t=Jt(l),t.c(),w(t,1),t.m(e.parentNode,e)):t&&(Pe(),q(t,1,1,()=>{t=null}),Me())},i(l){s||(w(t),s=!0)},o(l){q(t),s=!1},d(l){t&&t.d(l),l&&f(e)}}}function Jl(n){let e,s,t,l,r,o,a=n[1](`shop.item.${n[8]}`)+"",i,d,m,p,_,g,E,I;l=new Re({props:{type:n[8],width:"60%"}});let k=Object.keys(n[3]),b=[];for(let O=0;O<k.length;O+=1)b[O]=Qt(Ft(n,k,O));const z=O=>q(b[O],1,1,()=>{b[O]=null});function N(){return n[6](n[8])}return{c(){e=h("button"),s=h("div"),t=h("picture"),X(l.$$.fragment),r=y(),o=h("span"),i=j(a),d=y(),m=h("div");for(let O=0;O<b.length;O+=1)b[O].c();_=y(),this.h()},l(O){e=v(O,"BUTTON",{class:!0});var R=$(e);s=v(R,"DIV",{class:!0});var P=$(s);t=v(P,"PICTURE",{style:!0,class:!0});var B=$(t);Z(l.$$.fragment,B),r=D(B),o=v(B,"SPAN",{class:!0});var A=$(o);i=G(A,a),A.forEach(f),B.forEach(f),d=D(P),m=v(P,"DIV",{class:!0});var V=$(m);for(let U=0;U<b.length;U+=1)b[U].l(V);V.forEach(f),P.forEach(f),R.forEach(f),_=D(O),this.h()},h(){u(o,"class","svelte-5inznb"),$e(t,"background-image","url('"+n[2]["5star-bg.webp"]+"')"),u(t,"class","svelte-5inznb"),u(m,"class","price svelte-5inznb"),u(s,"class","content svelte-5inznb"),u(e,"class","svelte-5inznb")},m(O,R){M(O,e,R),c(e,s),c(s,t),x(l,t,null),c(t,r),c(t,o),c(o,i),c(s,d),c(s,m);for(let P=0;P<b.length;P+=1)b[P].m(m,null);M(O,_,R),g=!0,E||(I=Be(e,"click",N),E=!0)},p(O,R){if(n=O,(!g||R&2)&&a!==(a=n[1](`shop.item.${n[8]}`)+"")&&Y(i,a),(!g||R&4)&&$e(t,"background-image","url('"+n[2]["5star-bg.webp"]+"')"),R&9){k=Object.keys(n[3]);let P;for(P=0;P<k.length;P+=1){const B=Ft(n,k,P);b[P]?(b[P].p(B,R),w(b[P],1)):(b[P]=Qt(B),b[P].c(),w(b[P],1),b[P].m(m,null))}for(Pe(),P=k.length;P<b.length;P+=1)z(P);Me()}},i(O){if(!g){w(l.$$.fragment,O);for(let R=0;R<k.length;R+=1)w(b[R]);p||Ge(()=>{p=Ye(e,Ke,{duration:300,delay:Math.sqrt(n[10]*5e3)}),p.start()}),g=!0}},o(O){q(l.$$.fragment,O),b=b.filter(Boolean);for(let R=0;R<b.length;R+=1)q(b[R]);g=!1},d(O){O&&f(e),ee(l),Qe(b,O),O&&f(_),E=!1,I()}}}function Xt(n){let e,s;return e=new lt({props:{$$slots:{default:[Jl]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&131079&&(r.$$scope={dirty:l,ctx:t}),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Ql(n){let e,s,t=["intertwined","acquaint"],l=[];for(let o=0;o<2;o+=1)l[o]=Xt(Lt(n,t,o));const r=o=>q(l[o],1,1,()=>{l[o]=null});return{c(){for(let o=0;o<2;o+=1)l[o].c();e=We()},l(o){for(let a=0;a<2;a+=1)l[a].l(o);e=We()},m(o,a){for(let i=0;i<2;i+=1)l[i].m(o,a);M(o,e,a),s=!0},p(o,a){if(a&31){t=["intertwined","acquaint"];let i;for(i=0;i<2;i+=1){const d=Lt(o,t,i);l[i]?(l[i].p(d,a),w(l[i],1)):(l[i]=Xt(d),l[i].c(),w(l[i],1),l[i].m(e.parentNode,e))}for(Pe(),i=2;i<2;i+=1)r(i);Me()}},i(o){if(!s){for(let a=0;a<2;a+=1)w(l[a]);s=!0}},o(o){l=l.filter(Boolean);for(let a=0;a<2;a+=1)q(l[a]);s=!1},d(o){Qe(l,o),o&&f(e)}}}function Xl(n){let e,s,t,l;return e=new Es({props:{$$slots:{default:[Yl]},$$scope:{ctx:n}}}),t=new ut({props:{$$slots:{default:[Ql]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment)},l(r){Z(e.$$.fragment,r),s=D(r),Z(t.$$.fragment,r)},m(r,o){x(e,r,o),M(r,s,o),x(t,r,o),l=!0},p(r,[o]){const a={};o&131075&&(a.$$scope={dirty:o,ctx:r}),e.$set(a);const i={};o&131079&&(i.$$scope={dirty:o,ctx:r}),t.$set(i)},i(r){l||(w(e.$$.fragment,r),w(t.$$.fragment,r),l=!0)},o(r){q(e.$$.fragment,r),q(t.$$.fragment,r),l=!1},d(r){ee(e,r),r&&f(s),ee(t,r)}}}function Zl(n,e,s){let t,l;de(n,He,p=>s(1,t=p)),de(n,Je,p=>s(2,l=p));let r="starglitter";const o={starglitter:{price:5,rarity:5},stardust:{price:125,rarity:4},primogem:{price:160,rarity:5}},a=qe("openExchangeModal"),i=p=>{De();const _=r,{price:g,rarity:E}=o[r];a({itemToExchange:p,price:g,rarity:E,currency:_})};return[r,t,l,o,i,({detail:p})=>{r!==p.selected&&(s(0,r=p.selected),De("shopsubnav"))},p=>i(p)]}class xl extends Oe{constructor(e){super(),Ae(this,e,Zl,Xl,ze,{})}}function Zt(n,e,s){const t=n.slice();return t[6]=e[s],t}function xt(n,e,s){const t=n.slice();return t[6]=e[s],t}function en(n){let e,s,t,l,r,o,a,i,d,m,p,_;return{c(){e=h("a"),s=h("div"),t=h("div"),l=h("img"),o=y(),a=h("img"),d=y(),m=h("span"),p=j("Support me on Ko-fi"),this.h()},l(g){e=v(g,"A",{class:!0,href:!0,target:!0});var E=$(e);s=v(E,"DIV",{style:!0});var I=$(s);t=v(I,"DIV",{class:!0});var k=$(t);l=v(k,"IMG",{src:!0,alt:!0,class:!0}),o=D(k),a=v(k,"IMG",{src:!0,alt:!0,class:!0}),k.forEach(f),I.forEach(f),d=D(E),m=v(E,"SPAN",{class:!0});var b=$(m);p=G(b,"Support me on Ko-fi"),b.forEach(f),E.forEach(f),this.h()},h(){we(l.src,r=n[0]["donate-kofi.png"])||u(l,"src",r),u(l,"alt","Ko-fi Icon"),u(l,"class","svelte-127zepx"),we(a.src,i=n[0]["paypal.png"])||u(a,"src",i),u(a,"alt","paypal"),u(a,"class","svelte-127zepx"),u(t,"class","donate-icon svelte-127zepx"),$e(s,"display","flex"),$e(s,"justify-content","center"),$e(s,"align-items","center"),$e(s,"width","100%"),$e(s,"height","100%"),u(m,"class","svelte-127zepx"),u(e,"class","content kofi svelte-127zepx"),u(e,"href","https://ko-fi.com/mantan21"),u(e,"target","_blank")},m(g,E){M(g,e,E),c(e,s),c(s,t),c(t,l),c(t,o),c(t,a),c(e,d),c(e,m),c(m,p)},p(g,E){n=g,E&1&&!we(l.src,r=n[0]["donate-kofi.png"])&&u(l,"src",r),E&1&&!we(a.src,i=n[0]["paypal.png"])&&u(a,"src",i)},i(g){_||Ge(()=>{_=Ye(e,Ke,{duration:300,delay:Math.sqrt(0*5e3)}),_.start()})},o:be,d(g){g&&f(e)}}}function es(n){let e,s;return{c(){e=h("img"),this.h()},l(t){e=v(t,"IMG",{src:!0,alt:!0,class:!0}),this.h()},h(){we(e.src,s=n[0][`donate-${n[6]}.png`])||u(e,"src",s),u(e,"alt",n[6]+" icon"),u(e,"class","svelte-127zepx")},m(t,l){M(t,e,l)},p(t,l){l&1&&!we(e.src,s=t[0][`donate-${t[6]}.png`])&&u(e,"src",s)},d(t){t&&f(e)}}}function tn(n){let e,s,t,l,r,o,a,i=["ovo","dana","linkaja"],d=[];for(let m=0;m<3;m+=1)d[m]=es(xt(n,i,m));return{c(){e=h("a"),s=h("div"),t=h("div");for(let m=0;m<3;m+=1)d[m].c();l=y(),r=h("span"),o=j("Support me on Saweria"),this.h()},l(m){e=v(m,"A",{class:!0,href:!0,target:!0});var p=$(e);s=v(p,"DIV",{style:!0});var _=$(s);t=v(_,"DIV",{class:!0});var g=$(t);for(let I=0;I<3;I+=1)d[I].l(g);g.forEach(f),_.forEach(f),l=D(p),r=v(p,"SPAN",{class:!0});var E=$(r);o=G(E,"Support me on Saweria"),E.forEach(f),p.forEach(f),this.h()},h(){u(t,"class","donate-icon svelte-127zepx"),$e(s,"display","flex"),$e(s,"justify-content","center"),$e(s,"align-items","center"),$e(s,"width","100%"),$e(s,"height","100%"),u(r,"class","svelte-127zepx"),u(e,"class","content Saweria svelte-127zepx"),u(e,"href","https://saweria.co/AguzzTN54"),u(e,"target","_blank")},m(m,p){M(m,e,p),c(e,s),c(s,t);for(let _=0;_<3;_+=1)d[_].m(t,null);c(e,l),c(e,r),c(r,o)},p(m,p){if(n=m,p&1){i=["ovo","dana","linkaja"];let _;for(_=0;_<3;_+=1){const g=xt(n,i,_);d[_]?d[_].p(g,p):(d[_]=es(g),d[_].c(),d[_].m(t,null))}for(;_<3;_+=1)d[_].d(1)}},i(m){a||Ge(()=>{a=Ye(e,Ke,{duration:300,delay:Math.sqrt(1*5e3)}),a.start()})},o:be,d(m){m&&f(e),Qe(d,m)}}}function ts(n){let e,s;return{c(){e=h("img"),this.h()},l(t){e=v(t,"IMG",{src:!0,alt:!0,class:!0}),this.h()},h(){we(e.src,s=n[0][`donate-${n[6]}.png`])||u(e,"src",s),u(e,"alt",n[6]+" icon"),u(e,"class","svelte-127zepx")},m(t,l){M(t,e,l)},p(t,l){l&1&&!we(e.src,s=t[0][`donate-${t[6]}.png`])&&u(e,"src",s)},d(t){t&&f(e)}}}function sn(n){let e,s,t,l,r,o,a,i,d,m=["btc","ethereum","bnb","solana"],p=[];for(let _=0;_<4;_+=1)p[_]=ts(Zt(n,m,_));return{c(){e=h("button"),s=h("div"),t=h("div");for(let _=0;_<4;_+=1)p[_].c();l=y(),r=h("span"),o=j("Support me with Crypto"),this.h()},l(_){e=v(_,"BUTTON",{class:!0});var g=$(e);s=v(g,"DIV",{style:!0});var E=$(s);t=v(E,"DIV",{class:!0});var I=$(t);for(let b=0;b<4;b+=1)p[b].l(I);I.forEach(f),E.forEach(f),l=D(g),r=v(g,"SPAN",{class:!0});var k=$(r);o=G(k,"Support me with Crypto"),k.forEach(f),g.forEach(f),this.h()},h(){u(t,"class","donate-icon svelte-127zepx"),$e(s,"display","flex"),$e(s,"justify-content","center"),$e(s,"align-items","center"),$e(s,"width","100%"),$e(s,"height","100%"),u(r,"class","svelte-127zepx"),u(e,"class","content crypto svelte-127zepx")},m(_,g){M(_,e,g),c(e,s),c(s,t);for(let E=0;E<4;E+=1)p[E].m(t,null);c(e,l),c(e,r),c(r,o),i||(d=Be(e,"click",n[1]),i=!0)},p(_,g){if(n=_,g&1){m=["btc","ethereum","bnb","solana"];let E;for(E=0;E<4;E+=1){const I=Zt(n,m,E);p[E]?p[E].p(I,g):(p[E]=ts(I),p[E].c(),p[E].m(t,null))}for(;E<4;E+=1)p[E].d(1)}},i(_){a||Ge(()=>{a=Ye(e,Ke,{duration:300,delay:Math.sqrt(2*5e3)}),a.start()})},o:be,d(_){_&&f(e),Qe(p,_),i=!1,d()}}}function ln(n){let e,s,t,l,r,o;return e=new lt({props:{$$slots:{default:[en]},$$scope:{ctx:n}}}),t=new lt({props:{$$slots:{default:[tn]},$$scope:{ctx:n}}}),r=new lt({props:{$$slots:{default:[sn]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment),l=y(),X(r.$$.fragment)},l(a){Z(e.$$.fragment,a),s=D(a),Z(t.$$.fragment,a),l=D(a),Z(r.$$.fragment,a)},m(a,i){x(e,a,i),M(a,s,i),x(t,a,i),M(a,l,i),x(r,a,i),o=!0},p(a,i){const d={};i&2049&&(d.$$scope={dirty:i,ctx:a}),e.$set(d);const m={};i&2049&&(m.$$scope={dirty:i,ctx:a}),t.$set(m);const p={};i&2049&&(p.$$scope={dirty:i,ctx:a}),r.$set(p)},i(a){o||(w(e.$$.fragment,a),w(t.$$.fragment,a),w(r.$$.fragment,a),o=!0)},o(a){q(e.$$.fragment,a),q(t.$$.fragment,a),q(r.$$.fragment,a),o=!1},d(a){ee(e,a),a&&f(s),ee(t,a),a&&f(l),ee(r,a)}}}function nn(n){let e,s,t,l,r,o,a,i,d,m;return d=new ut({props:{$$slots:{default:[ln]},$$scope:{ctx:n}}}),{c(){e=h("div"),s=h("img"),l=y(),r=h("img"),a=y(),i=h("div"),X(d.$$.fragment),this.h()},l(p){e=v(p,"DIV",{});var _=$(e);s=v(_,"IMG",{class:!0,src:!0,alt:!0}),l=D(_),r=v(_,"IMG",{class:!0,src:!0,alt:!0}),_.forEach(f),a=D(p),i=v(p,"DIV",{class:!0});var g=$(i);Z(d.$$.fragment,g),g.forEach(f),this.h()},h(){u(s,"class","qr svelte-127zepx"),we(s.src,t=n[0]["alipay.jpg"])||u(s,"src",t),u(s,"alt","alipay"),u(r,"class","qr2 svelte-127zepx"),we(r.src,o=n[0]["wechatpay.jpg"])||u(r,"src",o),u(r,"alt","wechatpay"),u(i,"class","container svelte-127zepx")},m(p,_){M(p,e,_),c(e,s),c(e,l),c(e,r),M(p,a,_),M(p,i,_),x(d,i,null),m=!0},p(p,[_]){(!m||_&1&&!we(s.src,t=p[0]["alipay.jpg"]))&&u(s,"src",t),(!m||_&1&&!we(r.src,o=p[0]["wechatpay.jpg"]))&&u(r,"src",o);const g={};_&2049&&(g.$$scope={dirty:_,ctx:p}),d.$set(g)},i(p){m||(w(d.$$.fragment,p),m=!0)},o(p){q(d.$$.fragment,p),m=!1},d(p){p&&f(e),p&&f(a),p&&f(i),ee(d)}}}function rn(n,e,s){let t;return de(n,Je,r=>s(0,t=r)),[t,()=>{De()}]}class an extends Oe{constructor(e){super(),Ae(this,e,rn,nn,ze,{})}}function on(n){let e,s,t=n[0]("outfit.purchasePrompt")+"",l,r,o,a,i=n[0]("outfit.promptInfo")+"",d;return{c(){e=h("div"),s=h("p"),l=j(t),r=y(),o=h("br"),a=y(),d=j(i),this.h()},l(m){e=v(m,"DIV",{class:!0});var p=$(e);s=v(p,"P",{});var _=$(s);l=G(_,t),r=D(_),o=v(_,"BR",{}),a=D(_),d=G(_,i),_.forEach(f),p.forEach(f),this.h()},h(){u(e,"class","confirmation svelte-u7kf1t")},m(m,p){M(m,e,p),c(e,s),c(s,l),c(s,r),c(s,o),c(s,a),c(s,d)},p(m,p){p&1&&t!==(t=m[0]("outfit.purchasePrompt")+"")&&Y(l,t),p&1&&i!==(i=m[0]("outfit.promptInfo")+"")&&Y(d,i)},d(m){m&&f(e)}}}function cn(n){let e,s;return e=new It({props:{title:n[0]("shop.purchaseConfirm"),$$slots:{default:[on]},$$scope:{ctx:n}}}),e.$on("cancel",n[1]),e.$on("confirm",n[2]),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,[l]){const r={};l&1&&(r.title=t[0]("shop.purchaseConfirm")),l&9&&(r.$$scope={dirty:l,ctx:t}),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function fn(n,e,s){let t;de(n,He,o=>s(0,t=o));const l=qe("cancelConfirm"),r=qe("showDetailModal");return[t,l,r]}class ws extends Oe{constructor(e){super(),Ae(this,e,fn,cn,ze,{})}}function ss(n){let e,s;return e=new ws({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function un(n){let e,s;return e=new bs({props:{text:n[7]("shop.purchaseButton"),type:"confirm"}}),e.$on("click",n[8]),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&128&&(r.text=t[7]("shop.purchaseButton")),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function pn(n){let e,s=n[7]("outfit.owned")+"",t;return{c(){e=h("span"),t=j(s),this.h()},l(l){e=v(l,"SPAN",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","owned svelte-1m6n93")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&128&&s!==(s=l[7]("outfit.owned")+"")&&Y(t,s)},i:be,o:be,d(l){l&&f(e)}}}function _n(n){let e,s,t,l,r,o,a,i=n[7]("shop.limitedOffer")+"",d,m,p,_,g=n[7](`outfit.item.${n[0]}.name`)+"",E,I,k,b,z,N,O,R,P,B,A,V,U,W,fe=n[7]("shop.recomended.newOutfit")+"",S,le,ne,K=n[7](`outfit.item.${n[0]}.name`)+"",L,he,ue,ie=n[7](`outfit.item.${n[0]}.description`)+"",me,pe,Ee,ge,se,re,J=n[5]&&ss();b=new Re({props:{type:"genesis",style:"margin-right:-1%; width: 10%"}});const te=[pn,un],ae=[];function ye(C,F){return C[4]?0:1}return ge=ye(n),se=ae[ge]=te[ge](n),{c(){J&&J.c(),e=y(),s=h("img"),o=y(),a=h("div"),d=j(i),m=y(),p=h("div"),_=h("div"),E=j(g),I=y(),k=h("div"),X(b.$$.fragment),z=y(),N=h("span"),O=j(n[2]),R=y(),P=h("del"),B=j(n[3]),A=y(),V=h("div"),U=h("div"),W=h("div"),S=j(fe),le=y(),ne=h("span"),L=j(K),he=y(),ue=h("p"),me=j(ie),pe=y(),Ee=h("div"),se.c(),this.h()},l(C){J&&J.l(C),e=D(C),s=v(C,"IMG",{class:!0,src:!0,alt:!0,style:!0}),o=D(C),a=v(C,"DIV",{class:!0});var F=$(a);d=G(F,i),F.forEach(f),m=D(C),p=v(C,"DIV",{class:!0});var H=$(p);_=v(H,"DIV",{class:!0});var _e=$(_);E=G(_e,g),_e.forEach(f),I=D(H),k=v(H,"DIV",{class:!0});var T=$(k);Z(b.$$.fragment,T),z=D(T),N=v(T,"SPAN",{class:!0});var oe=$(N);O=G(oe,n[2]),oe.forEach(f),R=D(T),P=v(T,"DEL",{class:!0});var ce=$(P);B=G(ce,n[3]),ce.forEach(f),T.forEach(f),H.forEach(f),A=D(C),V=v(C,"DIV",{class:!0});var ve=$(V);U=v(ve,"DIV",{class:!0});var Q=$(U);W=v(Q,"DIV",{class:!0});var ke=$(W);S=G(ke,fe),ke.forEach(f),le=D(Q),ne=v(Q,"SPAN",{class:!0});var Se=$(ne);L=G(Se,K),Se.forEach(f),he=D(Q),ue=v(Q,"P",{class:!0});var Ie=$(ue);me=G(Ie,ie),Ie.forEach(f),Q.forEach(f),pe=D(ve),Ee=v(ve,"DIV",{class:!0});var Ve=$(Ee);se.l(Ve),Ve.forEach(f),ve.forEach(f),this.h()},h(){u(s,"class","outfit-art svelte-1m6n93"),we(s.src,t=n[6][`splash-art/${n[0]}`])||u(s,"src",t),u(s,"alt",l=dt(n[0])),u(s,"style",r=At(n[1]?.storeCard||{})),u(a,"class","remaining card-stroke svelte-1m6n93"),u(_,"class","name stroke svelte-1m6n93"),u(N,"class","dicount stroke svelte-1m6n93"),u(P,"class","real-price svelte-1m6n93"),u(k,"class","price svelte-1m6n93"),u(p,"class","details svelte-1m6n93"),u(W,"class","title svelte-1m6n93"),u(ne,"class","name svelte-1m6n93"),u(ue,"class","card-stroke svelte-1m6n93"),u(U,"class","description svelte-1m6n93"),u(Ee,"class","purchase-button"),u(V,"class","frame svelte-1m6n93")},m(C,F){J&&J.m(C,F),M(C,e,F),M(C,s,F),M(C,o,F),M(C,a,F),c(a,d),M(C,m,F),M(C,p,F),c(p,_),c(_,E),c(p,I),c(p,k),x(b,k,null),c(k,z),c(k,N),c(N,O),c(k,R),c(k,P),c(P,B),M(C,A,F),M(C,V,F),c(V,U),c(U,W),c(W,S),c(U,le),c(U,ne),c(ne,L),c(U,he),c(U,ue),c(ue,me),c(V,pe),c(V,Ee),ae[ge].m(Ee,null),re=!0},p(C,[F]){C[5]?J?F&32&&w(J,1):(J=ss(),J.c(),w(J,1),J.m(e.parentNode,e)):J&&(Pe(),q(J,1,1,()=>{J=null}),Me()),(!re||F&65&&!we(s.src,t=C[6][`splash-art/${C[0]}`]))&&u(s,"src",t),(!re||F&1&&l!==(l=dt(C[0])))&&u(s,"alt",l),(!re||F&2&&r!==(r=At(C[1]?.storeCard||{})))&&u(s,"style",r),(!re||F&128)&&i!==(i=C[7]("shop.limitedOffer")+"")&&Y(d,i),(!re||F&129)&&g!==(g=C[7](`outfit.item.${C[0]}.name`)+"")&&Y(E,g),(!re||F&4)&&Y(O,C[2]),(!re||F&8)&&Y(B,C[3]),(!re||F&128)&&fe!==(fe=C[7]("shop.recomended.newOutfit")+"")&&Y(S,fe),(!re||F&129)&&K!==(K=C[7](`outfit.item.${C[0]}.name`)+"")&&Y(L,K),(!re||F&129)&&ie!==(ie=C[7](`outfit.item.${C[0]}.description`)+"")&&Y(me,ie);let H=ge;ge=ye(C),ge===H?ae[ge].p(C,F):(Pe(),q(ae[H],1,1,()=>{ae[H]=null}),Me(),se=ae[ge],se?se.p(C,F):(se=ae[ge]=te[ge](C),se.c()),w(se,1),se.m(Ee,null))},i(C){re||(w(J),w(b.$$.fragment,C),w(se),re=!0)},o(C){q(J),q(b.$$.fragment,C),q(se),re=!1},d(C){J&&J.d(C),C&&f(e),C&&f(s),C&&f(o),C&&f(a),C&&f(m),C&&f(p),ee(b),C&&f(A),C&&f(V),ae[ge].d()}}}function mn(n,e,s){let t,l;de(n,Je,N=>s(6,t=N)),de(n,He,N=>s(7,l=N));let{data:r={}}=e,o,a,i,d,m,p,_,g,E=!1;je("cancelConfirm",()=>{s(5,E=!1),De("close")});const k=qe("openExchangeModal"),b=()=>{De(),s(5,E=!1),k({rarity:_,isOutfit:!0,price:i,currency:"genesis",itemToExchange:o})};je("showDetailModal",b);const z=()=>{const{qty:N}=ms.get(g);if(N>0)return b();De(),s(5,E=!0)};return n.$$set=N=>{"data"in N&&s(9,r=N.data)},n.$$.update=()=>{n.$$.dirty&512&&s(0,{name:o,offset:a,promoPrice:i,price:d,isOwned:m,characterName:p,rarity:_}=r,o,(s(1,a),s(9,r)),(s(2,i),s(9,r)),(s(3,d),s(9,r)),(s(4,m),s(9,r)),(s(10,p),s(9,r))),n.$$.dirty&1024&&({itemID:g}=ks(p))},[o,a,i,d,m,E,t,l,z,r,p]}class dn extends Oe{constructor(e){super(),Ae(this,e,mn,_n,ze,{data:9})}}function hn(n){let e,s,t,l,r,o,a,i,d=n[0]("shop.recomended.welkin")+"",m,p,_,g,E,I,k,b,z,N=n[0]("shop.recomended.issuedPurchase")+"",O,R,P,B,A,V,U,W,fe,S=n[0]("shop.item.genesis")+"",le,ne,K,L,he,ue,ie,me,pe=n[0]("shop.recomended.collect")+"",Ee,ge,se,re,J,te,ae,ye,C,F=n[0]("shop.item.primogem")+"",H,_e,T,oe,ce,ve;return V=new Re({props:{type:"genesis",width:n[2]?"20px":"30px"}}),te=new Re({props:{type:"primogem",width:n[2]?"20px":"30px"}}),{c(){e=h("div"),s=h("div"),t=h("div"),l=h("picture"),r=h("img"),a=y(),i=h("caption"),m=j(d),p=y(),_=h("div"),g=h("span"),E=j(n[3]),I=y(),k=h("div"),b=h("div"),z=h("div"),O=j(N),R=y(),P=h("div"),B=h("div"),A=h("span"),X(V.$$.fragment),U=y(),W=h("div"),fe=h("span"),le=j(S),ne=y(),K=h("span"),L=j("x"),he=j(n[4]),ue=y(),ie=h("div"),me=h("div"),Ee=j(pe),ge=y(),se=h("div"),re=h("div"),J=h("span"),X(te.$$.fragment),ae=y(),ye=h("div"),C=h("span"),H=j(F),_e=y(),T=h("span"),oe=j("x"),ce=j(n[5]),this.h()},l(Q){e=v(Q,"DIV",{class:!0});var ke=$(e);s=v(ke,"DIV",{class:!0});var Se=$(s);t=v(Se,"DIV",{class:!0});var Ie=$(t);l=v(Ie,"PICTURE",{class:!0});var Ve=$(l);r=v(Ve,"IMG",{src:!0,alt:!0,class:!0}),a=D(Ve),i=v(Ve,"CAPTION",{class:!0});var Te=$(i);m=G(Te,d),Te.forEach(f),Ve.forEach(f),p=D(Ie),_=v(Ie,"DIV",{class:!0});var Le=$(_);g=v(Le,"SPAN",{});var Ce=$(g);E=G(Ce,n[3]),Ce.forEach(f),Le.forEach(f),Ie.forEach(f),Se.forEach(f),I=D(ke),k=v(ke,"DIV",{class:!0});var Ue=$(k);b=v(Ue,"DIV",{class:!0});var Fe=$(b);z=v(Fe,"DIV",{class:!0});var ot=$(z);O=G(ot,N),ot.forEach(f),R=D(Fe),P=v(Fe,"DIV",{class:!0});var Xe=$(P);B=v(Xe,"DIV",{class:!0});var Ze=$(B);A=v(Ze,"SPAN",{class:!0});var it=$(A);Z(V.$$.fragment,it),it.forEach(f),Ze.forEach(f),U=D(Xe),W=v(Xe,"DIV",{class:!0});var xe=$(W);fe=v(xe,"SPAN",{});var ct=$(fe);le=G(ct,S),ct.forEach(f),ne=D(xe),K=v(xe,"SPAN",{class:!0});var et=$(K);L=G(et,"x"),he=G(et,n[4]),et.forEach(f),xe.forEach(f),Xe.forEach(f),Fe.forEach(f),ue=D(Ue),ie=v(Ue,"DIV",{class:!0,style:!0});var pt=$(ie);me=v(pt,"DIV",{class:!0});var Pt=$(me);Ee=G(Pt,pe),Pt.forEach(f),ge=D(pt),se=v(pt,"DIV",{class:!0});var _t=$(se);re=v(_t,"DIV",{class:!0});var Mt=$(re);J=v(Mt,"SPAN",{class:!0});var St=$(J);Z(te.$$.fragment,St),St.forEach(f),Mt.forEach(f),ae=D(_t),ye=v(_t,"DIV",{class:!0});var mt=$(ye);C=v(mt,"SPAN",{});var Tt=$(C);H=G(Tt,F),Tt.forEach(f),_e=D(mt),T=v(mt,"SPAN",{class:!0});var yt=$(T);oe=G(yt,"x"),ce=G(yt,n[5]),yt.forEach(f),mt.forEach(f),_t.forEach(f),pt.forEach(f),Ue.forEach(f),ke.forEach(f),this.h()},h(){we(r.src,o=n[1]["welkin.webp"])||u(r,"src",o),u(r,"alt","Welkin"),u(r,"class","svelte-13q84mq"),u(i,"class","svelte-13q84mq"),u(l,"class","svelte-13q84mq"),u(_,"class","price svelte-13q84mq"),u(t,"class","thumbnail svelte-13q84mq"),u(s,"class","img-content svelte-13q84mq"),u(z,"class","name svelte-13q84mq"),u(A,"class","svelte-13q84mq"),u(B,"class","icon svelte-13q84mq"),u(K,"class","amount svelte-13q84mq"),u(W,"class","detail"),u(P,"class","content svelte-13q84mq"),u(b,"class","item svelte-13q84mq"),u(me,"class","name svelte-13q84mq"),u(J,"class","svelte-13q84mq"),u(re,"class","icon svelte-13q84mq"),u(T,"class","amount svelte-13q84mq"),u(ye,"class","detail"),u(se,"class","content svelte-13q84mq"),u(ie,"class","item svelte-13q84mq"),$e(ie,"margin-top","1rem "),u(k,"class","description-content svelte-13q84mq"),u(e,"class","content svelte-13q84mq")},m(Q,ke){M(Q,e,ke),c(e,s),c(s,t),c(t,l),c(l,r),c(l,a),c(l,i),c(i,m),c(t,p),c(t,_),c(_,g),c(g,E),c(e,I),c(e,k),c(k,b),c(b,z),c(z,O),c(b,R),c(b,P),c(P,B),c(B,A),x(V,A,null),c(P,U),c(P,W),c(W,fe),c(fe,le),c(W,ne),c(W,K),c(K,L),c(K,he),c(k,ue),c(k,ie),c(ie,me),c(me,Ee),c(ie,ge),c(ie,se),c(se,re),c(re,J),x(te,J,null),c(se,ae),c(se,ye),c(ye,C),c(C,H),c(ye,_e),c(ye,T),c(T,oe),c(T,ce),ve=!0},p(Q,ke){(!ve||ke&2&&!we(r.src,o=Q[1]["welkin.webp"]))&&u(r,"src",o),(!ve||ke&1)&&d!==(d=Q[0]("shop.recomended.welkin")+"")&&Y(m,d),(!ve||ke&1)&&N!==(N=Q[0]("shop.recomended.issuedPurchase")+"")&&Y(O,N);const Se={};ke&4&&(Se.width=Q[2]?"20px":"30px"),V.$set(Se),(!ve||ke&1)&&S!==(S=Q[0]("shop.item.genesis")+"")&&Y(le,S),(!ve||ke&1)&&pe!==(pe=Q[0]("shop.recomended.collect")+"")&&Y(Ee,pe);const Ie={};ke&4&&(Ie.width=Q[2]?"20px":"30px"),te.$set(Ie),(!ve||ke&1)&&F!==(F=Q[0]("shop.item.primogem")+"")&&Y(H,F)},i(Q){ve||(w(V.$$.fragment,Q),w(te.$$.fragment,Q),ve=!0)},o(Q){q(V.$$.fragment,Q),q(te.$$.fragment,Q),ve=!1},d(Q){Q&&f(e),ee(V),ee(te)}}}function vn(n){let e,s=n[0]("shop.purchaseButton")+"",t;return{c(){e=h("span"),t=j(s),this.h()},l(l){e=v(l,"SPAN",{slot:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"slot","confirmtext")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&1&&s!==(s=l[0]("shop.purchaseButton")+"")&&Y(t,s)},d(l){l&&f(e)}}}function $n(n){let e,s,t,l;return e=new qt({}),t=new It({props:{title:n[0]("shop.purchaseHeading"),$$slots:{confirmtext:[vn],default:[hn]},$$scope:{ctx:n}}}),t.$on("confirm",n[7]),t.$on("cancel",n[6]),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment)},l(r){Z(e.$$.fragment,r),s=D(r),Z(t.$$.fragment,r)},m(r,o){x(e,r,o),M(r,s,o),x(t,r,o),l=!0},p(r,[o]){const a={};o&1&&(a.title=r[0]("shop.purchaseHeading")),o&519&&(a.$$scope={dirty:o,ctx:r}),t.$set(a)},i(r){l||(w(e.$$.fragment,r),w(t.$$.fragment,r),l=!0)},o(r){q(e.$$.fragment,r),q(t.$$.fragment,r),l=!1},d(r){ee(e,r),r&&f(s),ee(t,r)}}}function gn(n,e,s){let t,l,r,o;de(n,Dt,_=>s(8,t=_)),de(n,He,_=>s(0,l=_)),de(n,Je,_=>s(1,r=_)),de(n,kt,_=>s(2,o=_));const{welkin:a}=t,{genesis:i,primogem:d}=$s,m=qe("handleModal"),p=qe("buyWelkin");return[l,r,o,a,i,d,m,p]}class bn extends Oe{constructor(e){super(),Ae(this,e,gn,$n,ze,{})}}function ls(n){let e,s;return e=new bn({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function ns(n){let e,s,t=n[3]("shop.recomended.dayRemaining",{values:{days:`<strong>${n[1]}</strong>`}})+"",l,r,o,a=n[3]("shop.recomended.alreadyClaimed")+"",i,d;return{c(){e=h("div"),s=new Vs(!1),l=y(),r=h("span"),o=j("("),i=j(a),d=j(")"),this.h()},l(m){e=v(m,"DIV",{class:!0});var p=$(e);s=qs(p,!1),l=D(p),r=v(p,"SPAN",{class:!0});var _=$(r);o=G(_,"("),i=G(_,a),d=G(_,")"),_.forEach(f),p.forEach(f),this.h()},h(){s.a=l,u(r,"class","svelte-1xqunpt"),u(e,"class","remaining svelte-1xqunpt")},m(m,p){M(m,e,p),s.m(t,e),c(e,l),c(e,r),c(r,o),c(r,i),c(r,d)},p(m,p){p&10&&t!==(t=m[3]("shop.recomended.dayRemaining",{values:{days:`<strong>${m[1]}</strong>`}})+"")&&s.p(t),p&8&&a!==(a=m[3]("shop.recomended.alreadyClaimed")+"")&&Y(i,a)},d(m){m&&f(e)}}}function kn(n){let e=n[3]("shop.purchaseButton")+"",s;return{c(){s=j(e)},l(t){s=G(t,e)},m(t,l){M(t,s,l)},p(t,l){l&8&&e!==(e=t[3]("shop.purchaseButton")+"")&&Y(s,e)},d(t){t&&f(s)}}}function En(n){let e,s,t,l,r,o,a,i,d,m,p=n[3]("shop.recomended.welkin")+"",_,g,E,I,k,b,z,N=n[3]("shop.welkinNote")+"",O,R,P,B,A,V=n[3]("shop.recomended.instantlyGet")+"",U,W,fe,S,le,ne,K,L,he,ue=n[3]("shop.recomended.dailyGift")+"",ie,me,pe,Ee,ge,se,re,J,te,ae=n[3]("shop.recomended.obtainTotal",{values:{totalGenesis:`<strong>${n[6]}</strong>`,totalPrimo:`<strong>${n[7]*30}</strong>`}})+"",ye,C,F,H=n[0]&&ls(),_e=n[1]>0&&ns(n);return ne=new Re({props:{type:"genesis",style:"margin-bottom:-5%; width: 20%"}}),se=new Re({props:{type:"primogem",style:"margin-bottom:-5%; width: 20%"}}),C=new bs({props:{type:"confirm",$$slots:{default:[kn]},$$scope:{ctx:n}}}),C.$on("click",n[4]),{c(){H&&H.c(),e=y(),s=h("img"),l=y(),r=h("div"),o=h("img"),d=y(),m=h("h1"),_=j(p),g=y(),_e&&_e.c(),E=y(),I=h("h2"),k=j(n[5]),b=y(),z=h("div"),O=j(N),R=y(),P=h("div"),B=h("div"),A=h("span"),U=j(V),W=y(),fe=h("span"),S=j(n[6]),le=y(),X(ne.$$.fragment),K=y(),L=h("div"),he=h("span"),ie=j(ue),me=y(),pe=h("span"),Ee=j(n[7]),ge=y(),X(se.$$.fragment),re=y(),J=h("div"),te=h("div"),ye=y(),X(C.$$.fragment),this.h()},l(T){H&&H.l(T),e=D(T),s=v(T,"IMG",{src:!0,alt:!0,class:!0}),l=D(T),r=v(T,"DIV",{class:!0});var oe=$(r);o=v(oe,"IMG",{src:!0,alt:!0,class:!0}),oe.forEach(f),d=D(T),m=v(T,"H1",{class:!0});var ce=$(m);_=G(ce,p),ce.forEach(f),g=D(T),_e&&_e.l(T),E=D(T),I=v(T,"H2",{class:!0});var ve=$(I);k=G(ve,n[5]),ve.forEach(f),b=D(T),z=v(T,"DIV",{class:!0});var Q=$(z);O=G(Q,N),Q.forEach(f),R=D(T),P=v(T,"DIV",{class:!0});var ke=$(P);B=v(ke,"DIV",{class:!0});var Se=$(B);A=v(Se,"SPAN",{class:!0});var Ie=$(A);U=G(Ie,V),Ie.forEach(f),W=D(Se),fe=v(Se,"SPAN",{class:!0});var Ve=$(fe);S=G(Ve,n[6]),le=D(Ve),Z(ne.$$.fragment,Ve),Ve.forEach(f),Se.forEach(f),K=D(ke),L=v(ke,"DIV",{class:!0});var Te=$(L);he=v(Te,"SPAN",{class:!0});var Le=$(he);ie=G(Le,ue),Le.forEach(f),me=D(Te),pe=v(Te,"SPAN",{class:!0});var Ce=$(pe);Ee=G(Ce,n[7]),ge=D(Ce),Z(se.$$.fragment,Ce),Ce.forEach(f),Te.forEach(f),re=D(ke),J=v(ke,"DIV",{class:!0});var Ue=$(J);te=v(Ue,"DIV",{class:!0});var Fe=$(te);Fe.forEach(f),ye=D(Ue),Z(C.$$.fragment,Ue),Ue.forEach(f),ke.forEach(f),this.h()},h(){we(s.src,t=n[2]["welkin-card.webp"])||u(s,"src",t),u(s,"alt","Welkin of the Blessing Moon"),u(s,"class","svelte-1xqunpt"),we(o.src,a=n[2]["welkin.webp"])||u(o,"src",a),u(o,"alt","Welkin Item"),u(o,"class","svelte-1xqunpt"),u(r,"class","welkin-item svelte-1xqunpt"),u(m,"class","svelte-1xqunpt"),u(I,"class","price svelte-1xqunpt"),u(z,"class","note svelte-1xqunpt"),u(A,"class","svelte-1xqunpt"),u(fe,"class","amount svelte-1xqunpt"),u(B,"class","parent-amount svelte-1xqunpt"),u(he,"class","svelte-1xqunpt"),u(pe,"class","amount svelte-1xqunpt"),u(L,"class","parent-amount svelte-1xqunpt"),u(te,"class","caption card-stroke"),u(J,"class","purchase-button svelte-1xqunpt"),u(P,"class","frame")},m(T,oe){H&&H.m(T,oe),M(T,e,oe),M(T,s,oe),M(T,l,oe),M(T,r,oe),c(r,o),M(T,d,oe),M(T,m,oe),c(m,_),M(T,g,oe),_e&&_e.m(T,oe),M(T,E,oe),M(T,I,oe),c(I,k),M(T,b,oe),M(T,z,oe),c(z,O),M(T,R,oe),M(T,P,oe),c(P,B),c(B,A),c(A,U),c(B,W),c(B,fe),c(fe,S),c(fe,le),x(ne,fe,null),c(P,K),c(P,L),c(L,he),c(he,ie),c(L,me),c(L,pe),c(pe,Ee),c(pe,ge),x(se,pe,null),c(P,re),c(P,J),c(J,te),te.innerHTML=ae,c(J,ye),x(C,J,null),F=!0},p(T,[oe]){T[0]?H?oe&1&&w(H,1):(H=ls(),H.c(),w(H,1),H.m(e.parentNode,e)):H&&(Pe(),q(H,1,1,()=>{H=null}),Me()),(!F||oe&4&&!we(s.src,t=T[2]["welkin-card.webp"]))&&u(s,"src",t),(!F||oe&4&&!we(o.src,a=T[2]["welkin.webp"]))&&u(o,"src",a),(!F||oe&8)&&p!==(p=T[3]("shop.recomended.welkin")+"")&&Y(_,p),T[1]>0?_e?_e.p(T,oe):(_e=ns(T),_e.c(),_e.m(E.parentNode,E)):_e&&(_e.d(1),_e=null),(!F||oe&8)&&N!==(N=T[3]("shop.welkinNote")+"")&&Y(O,N),(!F||oe&8)&&V!==(V=T[3]("shop.recomended.instantlyGet")+"")&&Y(U,V),(!F||oe&8)&&ue!==(ue=T[3]("shop.recomended.dailyGift")+"")&&Y(ie,ue),(!F||oe&8)&&ae!==(ae=T[3]("shop.recomended.obtainTotal",{values:{totalGenesis:`<strong>${T[6]}</strong>`,totalPrimo:`<strong>${T[7]*30}</strong>`}})+"")&&(te.innerHTML=ae);const ce={};oe&4104&&(ce.$$scope={dirty:oe,ctx:T}),C.$set(ce)},i(T){F||(w(H),i||Ge(()=>{i=Ye(o,tt,{y:-50,duration:400}),i.start()}),w(ne.$$.fragment,T),w(se.$$.fragment,T),w(C.$$.fragment,T),F=!0)},o(T){q(H),q(ne.$$.fragment,T),q(se.$$.fragment,T),q(C.$$.fragment,T),F=!1},d(T){H&&H.d(T),T&&f(e),T&&f(s),T&&f(l),T&&f(r),T&&f(d),T&&f(m),T&&f(g),_e&&_e.d(T),T&&f(E),T&&f(I),T&&f(b),T&&f(z),T&&f(R),T&&f(P),ee(ne),ee(se),ee(C)}}}function wn(n,e,s){let t,l,r;de(n,Dt,I=>s(8,t=I)),de(n,Je,I=>s(2,l=I)),de(n,He,I=>s(3,r=I));let o=!1;const a=()=>{De(o?"close":"click"),s(0,o=!o)};je("handleModal",a);const{welkin:i}=t,{genesis:d,primogem:m}=$s,{remaining:p}=Ot.getData();let _=p||0;const g=qe("openObtained");return je("buyWelkin",()=>{s(0,o=!1),wt.update(k=>{const b=k+d;return rt.set("genesis",b),b}),Et.update(k=>{const b=k+m;return rt.set("primogem",b),b}),g([{item:"genesis",qty:d}]);const I=Ot.checkin("welkin");s(1,_=I.remaining)}),[o,_,l,r,a,i,d,m]}class In extends Oe{constructor(e){super(),Ae(this,e,wn,En,ze,{})}}function rs(n){let e,s;return e=new Nt({props:{name:"outfit",active:n[2]==="outfit",$$slots:{default:[yn]},$$scope:{ctx:n}}}),e.$on("click",n[5]),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&4&&(r.active=t[2]==="outfit"),l&1032&&(r.$$scope={dirty:l,ctx:t}),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function yn(n){let e=n[3]("outfit.heading")+"",s;return{c(){s=j(e)},l(t){s=G(t,e)},m(t,l){M(t,s,l)},p(t,l){l&8&&e!==(e=t[3]("outfit.heading")+"")&&Y(s,e)},d(t){t&&f(s)}}}function Dn(n){let e=n[3]("shop.recomended.welkin")+"",s;return{c(){s=j(e)},l(t){s=G(t,e)},m(t,l){M(t,s,l)},p(t,l){l&8&&e!==(e=t[3]("shop.recomended.welkin")+"")&&Y(s,e)},d(t){t&&f(s)}}}function Vn(n){let e,s,t,l=n[0]&&rs(n);return s=new Nt({props:{name:"welkin",active:n[2]==="welkin",$$slots:{default:[Dn]},$$scope:{ctx:n}}}),s.$on("click",n[5]),{c(){l&&l.c(),e=y(),X(s.$$.fragment)},l(r){l&&l.l(r),e=D(r),Z(s.$$.fragment,r)},m(r,o){l&&l.m(r,o),M(r,e,o),x(s,r,o),t=!0},p(r,o){r[0]?l?(l.p(r,o),o&1&&w(l,1)):(l=rs(r),l.c(),w(l,1),l.m(e.parentNode,e)):l&&(Pe(),q(l,1,1,()=>{l=null}),Me());const a={};o&4&&(a.active=r[2]==="welkin"),o&1032&&(a.$$scope={dirty:o,ctx:r}),s.$set(a)},i(r){t||(w(l),w(s.$$.fragment,r),t=!0)},o(r){q(l),q(s.$$.fragment,r),t=!1},d(r){l&&l.d(r),r&&f(e),ee(s,r)}}}function qn(n){let e,s,t,l;return s=new In({}),{c(){e=h("div"),X(s.$$.fragment),this.h()},l(r){e=v(r,"DIV",{class:!0});var o=$(e);Z(s.$$.fragment,o),o.forEach(f),this.h()},h(){u(e,"class","card welkin svelte-10lucig")},m(r,o){M(r,e,o),x(s,e,null),l=!0},p:be,i(r){l||(w(s.$$.fragment,r),t||Ge(()=>{t=Ye(e,Ke,{duration:400}),t.start()}),l=!0)},o(r){q(s.$$.fragment,r),l=!1},d(r){r&&f(e),ee(s)}}}function Nn(n){let e,s,t,l;return s=new dn({props:{data:n[0]}}),{c(){e=h("div"),X(s.$$.fragment),this.h()},l(r){e=v(r,"DIV",{class:!0});var o=$(e);Z(s.$$.fragment,o),o.forEach(f),this.h()},h(){u(e,"class","card outfit svelte-10lucig")},m(r,o){M(r,e,o),x(s,e,null),l=!0},p(r,o){const a={};o&1&&(a.data=r[0]),s.$set(a)},i(r){l||(w(s.$$.fragment,r),t||Ge(()=>{t=Ye(e,Ke,{duration:400}),t.start()}),l=!0)},o(r){q(s.$$.fragment,r),l=!1},d(r){r&&f(e),ee(s)}}}function Pn(n){let e,s,t,l,r;const o=[Nn,qn],a=[];function i(d,m){return d[2]==="outfit"?0:1}return s=i(n),t=a[s]=o[s](n),{c(){e=h("div"),t.c(),this.h()},l(d){e=v(d,"DIV",{class:!0,style:!0});var m=$(e);t.l(m),m.forEach(f),this.h()},h(){u(e,"class","content-item svelte-10lucig"),$e(e,"--content-width",n[1]+"px"),Ge(()=>n[7].call(e))},m(d,m){M(d,e,m),a[s].m(e,null),l=ht(e,n[7].bind(e)),r=!0},p(d,m){let p=s;s=i(d),s===p?a[s].p(d,m):(Pe(),q(a[p],1,1,()=>{a[p]=null}),Me(),t=a[s],t?t.p(d,m):(t=a[s]=o[s](d),t.c()),w(t,1),t.m(e,null)),(!r||m&2)&&$e(e,"--content-width",d[1]+"px")},i(d){r||(w(t),r=!0)},o(d){q(t),r=!1},d(d){d&&f(e),a[s].d(),l()}}}function Mn(n){let e,s,t,l;return e=new Es({props:{$$slots:{default:[Vn]},$$scope:{ctx:n}}}),t=new ut({props:{$$slots:{default:[Pn]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment),s=y(),X(t.$$.fragment)},l(r){Z(e.$$.fragment,r),s=D(r),Z(t.$$.fragment,r)},m(r,o){x(e,r,o),M(r,s,o),x(t,r,o),l=!0},p(r,[o]){const a={};o&1037&&(a.$$scope={dirty:o,ctx:r}),e.$set(a);const i={};o&1031&&(i.$$scope={dirty:o,ctx:r}),t.$set(i)},i(r){l||(w(e.$$.fragment,r),w(t.$$.fragment,r),l=!0)},o(r){q(e.$$.fragment,r),q(t.$$.fragment,r),l=!1},d(r){ee(e,r),r&&f(s),ee(t,r)}}}function Sn(n,e,s){let t,l,r,o,a;de(n,at,g=>s(8,o=g)),de(n,He,g=>s(3,a=g));let i;const d=qe("outfits");de(n,d,g=>s(6,r=g));const{patch:m}=o,p=({detail:g})=>{l!==g.selected&&(s(2,l=g.selected),De("shopsubnav"))};function _(){i=this.clientHeight,s(1,i)}return n.$$.update=()=>{n.$$.dirty&64&&s(0,t=r.find(({release:g,promoPrice:E})=>m===`${g}`&&E)),n.$$.dirty&1&&s(2,l=t?"outfit":"welkin")},[t,i,l,a,d,p,r,_]}class Tn extends Oe{constructor(e){super(),Ae(this,e,Sn,Mn,ze,{})}}function as(n,e,s){const t=n.slice();t[13]=e[s],t[21]=s;const l=t[13];return t[14]=l.name,t[15]=l.price,t[16]=l.promoPrice,t[17]=l.isPromo,t[18]=l.isOwned,t[19]=l.rarity,t}function os(n){let e,s;return e=new ws({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function is(n){let e,s;return{c(){e=h("div"),s=j("-20%"),this.h()},l(t){e=v(t,"DIV",{class:!0});var l=$(e);s=G(l,"-20%"),l.forEach(f),this.h()},h(){u(e,"class","discount-percentage svelte-9ce570")},m(t,l){M(t,e,l),c(e,s)},d(t){t&&f(e)}}}function Bn(n){let e,s=n[3]("shop.purchaseUpto")+"",t;return{c(){e=h("span"),t=j(s),this.h()},l(l){e=v(l,"SPAN",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","desc svelte-9ce570")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&8&&s!==(s=l[3]("shop.purchaseUpto")+"")&&Y(t,s)},d(l){l&&f(e)}}}function On(n){let e,s=n[3]("outfit.owned")+"",t;return{c(){e=h("span"),t=j(s),this.h()},l(l){e=v(l,"SPAN",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","owned svelte-9ce570")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&8&&s!==(s=l[3]("outfit.owned")+"")&&Y(t,s)},d(l){l&&f(e)}}}function cs(n){let e,s=n[15]+"",t;return{c(){e=h("del"),t=j(s),this.h()},l(l){e=v(l,"DEL",{class:!0});var r=$(e);t=G(r,s),r.forEach(f),this.h()},h(){u(e,"class","real-price svelte-9ce570")},m(l,r){M(l,e,r),c(e,t)},p(l,r){r&2&&s!==(s=l[15]+"")&&Y(t,s)},d(l){l&&f(e)}}}function An(n){let e,s,t,l,r,o,a,i,d,m,p,_,g=n[3](`outfit.item.${n[14]}.name`)+"",E,I,k,b,z,N,O,R,P=(n[17]?n[16]:n[15])+"",B,A,V,U,W,fe,S=n[17]&&is();function le(ue,ie){return ue[18]?On:Bn}let ne=le(n),K=ne(n);z=new Re({props:{type:"genesis",width:"15%"}});let L=n[17]&&cs(n);function he(){return n[8](n[13])}return{c(){e=h("button"),s=h("div"),S&&S.c(),t=y(),l=h("div"),r=h("picture"),o=h("img"),m=y(),p=h("caption"),_=h("span"),E=j(g),I=y(),K.c(),k=y(),b=h("div"),X(z.$$.fragment),N=y(),L&&L.c(),O=y(),R=h("span"),B=j(P),V=y(),this.h()},l(ue){e=v(ue,"BUTTON",{class:!0});var ie=$(e);s=v(ie,"DIV",{class:!0});var me=$(s);S&&S.l(me),t=D(me),l=v(me,"DIV",{class:!0,style:!0});var pe=$(l);r=v(pe,"PICTURE",{class:!0});var Ee=$(r);o=v(Ee,"IMG",{src:!0,alt:!0,class:!0}),Ee.forEach(f),m=D(pe),p=v(pe,"CAPTION",{class:!0});var ge=$(p);_=v(ge,"SPAN",{class:!0});var se=$(_);E=G(se,g),se.forEach(f),I=D(ge),K.l(ge),ge.forEach(f),pe.forEach(f),k=D(me),b=v(me,"DIV",{class:!0});var re=$(b);Z(z.$$.fragment,re),N=D(re),L&&L.l(re),O=D(re),R=v(re,"SPAN",{style:!0});var J=$(R);B=G(J,P),J.forEach(f),re.forEach(f),me.forEach(f),ie.forEach(f),V=D(ue),this.h()},h(){we(o.src,a=n[2][`thumbnail/${n[14]}`])||u(o,"src",a),u(o,"alt",i=dt(n[14])),u(o,"class","svelte-9ce570"),u(r,"class",d="star"+n[19]+" svelte-9ce570"),u(_,"class","name svelte-9ce570"),u(p,"class","svelte-9ce570"),u(l,"class","thumbnail svelte-9ce570"),$e(l,"background-image","url('"+n[2][`${n[19]}star-bg.webp`]+"')"),$e(R,"margin-left","5px"),u(b,"class","price svelte-9ce570"),u(s,"class","content svelte-9ce570"),u(e,"class","svelte-9ce570"),Ne(e,"discount",n[17])},m(ue,ie){M(ue,e,ie),c(e,s),S&&S.m(s,null),c(s,t),c(s,l),c(l,r),c(r,o),c(l,m),c(l,p),c(p,_),c(_,E),c(p,I),K.m(p,null),c(s,k),c(s,b),x(z,b,null),c(b,N),L&&L.m(b,null),c(b,O),c(b,R),c(R,B),M(ue,V,ie),U=!0,W||(fe=Be(e,"click",he),W=!0)},p(ue,ie){n=ue,n[17]?S||(S=is(),S.c(),S.m(s,t)):S&&(S.d(1),S=null),(!U||ie&6&&!we(o.src,a=n[2][`thumbnail/${n[14]}`]))&&u(o,"src",a),(!U||ie&2&&i!==(i=dt(n[14])))&&u(o,"alt",i),(!U||ie&2&&d!==(d="star"+n[19]+" svelte-9ce570"))&&u(r,"class",d),(!U||ie&10)&&g!==(g=n[3](`outfit.item.${n[14]}.name`)+"")&&Y(E,g),ne===(ne=le(n))&&K?K.p(n,ie):(K.d(1),K=ne(n),K&&(K.c(),K.m(p,null))),(!U||ie&6)&&$e(l,"background-image","url('"+n[2][`${n[19]}star-bg.webp`]+"')"),n[17]?L?L.p(n,ie):(L=cs(n),L.c(),L.m(b,O)):L&&(L.d(1),L=null),(!U||ie&2)&&P!==(P=(n[17]?n[16]:n[15])+"")&&Y(B,P),ie&2&&Ne(e,"discount",n[17])},i(ue){U||(w(z.$$.fragment,ue),A||Ge(()=>{A=Ye(e,Ke,{duration:300,delay:Math.sqrt(n[21]*5e3)}),A.start()}),U=!0)},o(ue){q(z.$$.fragment,ue),U=!1},d(ue){ue&&f(e),S&&S.d(),K.d(),ee(z),L&&L.d(),ue&&f(V),W=!1,fe()}}}function fs(n){let e,s;return e=new lt({props:{$$slots:{default:[An]},$$scope:{ctx:n}}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&4194318&&(r.$$scope={dirty:l,ctx:t}),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function zn(n){let e,s,t=n[1],l=[];for(let o=0;o<t.length;o+=1)l[o]=fs(as(n,t,o));const r=o=>q(l[o],1,1,()=>{l[o]=null});return{c(){for(let o=0;o<l.length;o+=1)l[o].c();e=We()},l(o){for(let a=0;a<l.length;a+=1)l[a].l(o);e=We()},m(o,a){for(let i=0;i<l.length;i+=1)l[i].m(o,a);M(o,e,a),s=!0},p(o,a){if(a&46){t=o[1];let i;for(i=0;i<t.length;i+=1){const d=as(o,t,i);l[i]?(l[i].p(d,a),w(l[i],1)):(l[i]=fs(d),l[i].c(),w(l[i],1),l[i].m(e.parentNode,e))}for(Pe(),i=t.length;i<l.length;i+=1)r(i);Me()}},i(o){if(!s){for(let a=0;a<t.length;a+=1)w(l[a]);s=!0}},o(o){l=l.filter(Boolean);for(let a=0;a<l.length;a+=1)q(l[a]);s=!1},d(o){Qe(l,o),o&&f(e)}}}function Cn(n){let e,s,t,l=n[0]&&os();return s=new ut({props:{$$slots:{default:[zn]},$$scope:{ctx:n}}}),{c(){l&&l.c(),e=y(),X(s.$$.fragment)},l(r){l&&l.l(r),e=D(r),Z(s.$$.fragment,r)},m(r,o){l&&l.m(r,o),M(r,e,o),x(s,r,o),t=!0},p(r,[o]){r[0]?l?o&1&&w(l,1):(l=os(),l.c(),w(l,1),l.m(e.parentNode,e)):l&&(Pe(),q(l,1,1,()=>{l=null}),Me());const a={};o&4194318&&(a.$$scope={dirty:o,ctx:r}),s.$set(a)},i(r){t||(w(l),w(s.$$.fragment,r),t=!0)},o(r){q(l),q(s.$$.fragment,r),t=!1},d(r){l&&l.d(r),r&&f(e),ee(s,r)}}}function jn(n,e,s){let t,l,r,o,a;de(n,at,k=>s(6,l=k)),de(n,Je,k=>s(2,o=k)),de(n,He,k=>s(3,a=k));const i=qe("outfits");de(n,i,k=>s(7,r=k));let d=!1,m={};je("cancelConfirm",()=>{s(0,d=!1),De("close")});const _=qe("openExchangeModal"),g=()=>{De(),s(0,d=!1);const{rarity:k,promoPrice:b,price:z,name:N,isPromo:O,isOwned:R}=m;_({rarity:k,isOwned:R,isOutfit:!0,price:O?b:z,currency:"genesis",itemToExchange:N})};je("showDetailModal",g);const E=k=>{m=k;const{itemID:b}=ks(k.characterName),{qty:z}=ms.get(b);if(z>0||m.isOwned)return g();De(),s(0,d=!0)},I=k=>E(k);return n.$$.update=()=>{n.$$.dirty&192&&s(1,t=[...r].reverse().map(k=>{const{release:b,promoPrice:z,price:N}=k,O=z&&z!==N;return k.isPromo=l.patch===`${b}`&&O,k}))},[d,t,o,a,i,E,l,r,I]}class Gn extends Oe{constructor(e){super(),Ae(this,e,jn,Cn,ze,{})}}function Un(n){return document.title=n[0]("shop.paimonHeading")+" | "+n[8],{c:be,l:be,m:be,d:be}}function Rn(n){return document.title="Donate | "+n[8],{c:be,l:be,m:be,d:be}}function Hn(n){return document.title=n[0]("outfit.heading")+" | "+n[8],{c:be,l:be,m:be,d:be}}function Wn(n){return document.title=n[0]("shop.recomendedHeading")+" | "+n[8],{c:be,l:be,m:be,d:be}}function Ln(n){return document.title=n[0]("shop.buyGenesisHeading")+" | "+n[8],{c:be,l:be,m:be,d:be}}function us(n){let e,s,t;const l=[n[3],{skip:!0}];let r={};for(let o=0;o<l.length;o+=1)r=Ms(r,l[o]);return s=new zs({props:r}),{c(){e=h("div"),X(s.$$.fragment),this.h()},l(o){e=v(o,"DIV",{class:!0});var a=$(e);Z(s.$$.fragment,a),a.forEach(f),this.h()},h(){u(e,"class","wish-container svelte-1jf0zp8")},m(o,a){M(o,e,a),x(s,e,null),t=!0},p(o,a){const i=a&8?Ss(l,[Ts(o[3]),l[1]]):{};s.$set(i)},i(o){t||(w(s.$$.fragment,o),t=!0)},o(o){q(s.$$.fragment,o),t=!1},d(o){o&&f(e),ee(s)}}}function ps(n){let e,s;return e=new Dl({props:{data:n[1]}}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},p(t,l){const r={};l&2&&(r.data=t[1]),e.$set(r)},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Fn(n){let e,s;return e=new xl({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Kn(n){let e,s;return e=new an({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Yn(n){let e,s;return e=new Gn({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Jn(n){let e,s;return e=new Tn({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Qn(n){let e,s;return e=new Rl({}),{c(){X(e.$$.fragment)},l(t){Z(e.$$.fragment,t)},m(t,l){x(e,t,l),s=!0},i(t){s||(w(e.$$.fragment,t),s=!0)},o(t){q(e.$$.fragment,t),s=!1},d(t){ee(e,t)}}}function Xn(n){let e,s,t,l,r,o,a,i,d,m,p,_,g,E,I,k,b,z,N,O;function R(S,le){return S[6]==="genesis"?Ln:S[6]==="recomended"?Wn:S[6]==="outfits"?Hn:S[6]==="donate"?Rn:Un}let P=R(n),B=P(n),A=n[4]&&us(n),V=n[2]&&ps(n);o=new Hs({}),d=new ul({props:{isOpen:n[7]}}),_=new al({props:{activeShop:n[6]}});const U=[Qn,Jn,Yn,Kn,Fn],W=[];function fe(S,le){return S[6]==="genesis"?0:S[6]==="recomended"?1:S[6]==="outfits"?2:S[6]==="donate"?3:S[6]==="paimon-bargains"?4:-1}return~(I=fe(n))&&(k=W[I]=U[I](n)),{c(){B.c(),e=We(),s=y(),A&&A.c(),t=y(),V&&V.c(),l=y(),r=h("section"),X(o.$$.fragment),a=y(),i=h("div"),X(d.$$.fragment),m=y(),p=h("div"),X(_.$$.fragment),g=y(),E=h("div"),k&&k.c(),this.h()},l(S){const le=Ns('[data-svelte="svelte-1jim8ah"]',document.head);B.l(le),e=We(),le.forEach(f),s=D(S),A&&A.l(S),t=D(S),V&&V.l(S),l=D(S),r=v(S,"SECTION",{class:!0});var ne=$(r);Z(o.$$.fragment,ne),a=D(ne),i=v(ne,"DIV",{class:!0});var K=$(i);Z(d.$$.fragment,K),m=D(K),p=v(K,"DIV",{class:!0});var L=$(p);Z(_.$$.fragment,L),g=D(L),E=v(L,"DIV",{class:!0,style:!0});var he=$(E);k&&k.l(he),he.forEach(f),L.forEach(f),K.forEach(f),ne.forEach(f),this.h()},h(){u(E,"class","item-body svelte-1jf0zp8"),$e(E,"--content-height",n[5]+"px"),Ge(()=>n[9].call(E)),u(p,"class","items-container svelte-1jf0zp8"),u(i,"class","container svelte-1jf0zp8"),u(r,"class","svelte-1jf0zp8")},m(S,le){B.m(document.head,null),c(document.head,e),M(S,s,le),A&&A.m(S,le),M(S,t,le),V&&V.m(S,le),M(S,l,le),M(S,r,le),x(o,r,null),c(r,a),c(r,i),x(d,i,null),c(i,m),c(i,p),x(_,p,null),c(p,g),c(p,E),~I&&W[I].m(E,null),b=ht(E,n[9].bind(E)),O=!0},p(S,[le]){P!==(P=R(S))&&(B.d(1),B=P(S),B&&(B.c(),B.m(e.parentNode,e))),S[4]?A?(A.p(S,le),le&16&&w(A,1)):(A=us(S),A.c(),w(A,1),A.m(t.parentNode,t)):A&&(Pe(),q(A,1,1,()=>{A=null}),Me()),S[2]?V?(V.p(S,le),le&4&&w(V,1)):(V=ps(S),V.c(),w(V,1),V.m(l.parentNode,l)):V&&(Pe(),q(V,1,1,()=>{V=null}),Me());const ne={};le&128&&(ne.isOpen=S[7]),d.$set(ne);const K={};le&64&&(K.activeShop=S[6]),_.$set(K);let L=I;I=fe(S),I!==L&&(k&&(Pe(),q(W[L],1,1,()=>{W[L]=null}),Me()),~I?(k=W[I],k||(k=W[I]=U[I](S),k.c()),w(k,1),k.m(E,null)):k=null),(!O||le&32)&&$e(E,"--content-height",S[5]+"px")},i(S){O||(w(A),w(V),w(o.$$.fragment,S),w(d.$$.fragment,S),w(_.$$.fragment,S),w(k),z||Ge(()=>{z=Ye(E,Ke,{duration:300}),z.start()}),N&&N.end(1),O=!0)},o(S){q(A),q(V),q(o.$$.fragment,S),q(d.$$.fragment,S),q(_.$$.fragment,S),q(k),N=Ps(i,Ke,{duration:250}),O=!1},d(S){B.d(S),f(e),S&&f(s),A&&A.d(S),S&&f(t),V&&V.d(S),S&&f(l),S&&f(r),ee(o),ee(d),ee(_),~I&&W[I].d(),b(),S&&N&&N.end()}}}function Zn(n,e,s){let t,l,r;de(n,at,B=>s(10,l=B)),de(n,He,B=>s(0,r=B));let o={},a=!1;je("closeExchageModal",()=>s(2,a=!1)),je("openExchangeModal",B=>{s(1,o=B),s(2,a=!0)});const{patch:d}=l,m=Gs({patch:d}),p=Bs(m);je("outfits",p);let _={},g=!1;je("buyOutfit",()=>{const{itemToExchange:B}=o,A=Us(B);s(3,_={isOutfit:!0,list:[A]}),Os.set({outfitName:B,isSet:!0,characterName:A.name}),p.update(V=>{const U=W=>W.name===B?{...W,isOwned:!0}:W;return V.map(U)}),s(4,g=!0)});const I=()=>{De("close"),s(4,g=!1)};je("closeResult",I);let k,b="genesis",z=!1;je("asideToggle",()=>{De(z?"close":"click"),s(7,z=!z)}),je("selectShopMenu",B=>{b!==B&&(s(6,b=B),s(7,z=!z),De("shopnav"))});const R=qe("navigate");As("esc","shop",B=>{if(B.preventDefault(),g)return I();De("close"),R("index")});function P(){k=this.clientHeight,s(5,k)}return n.$$.update=()=>{n.$$.dirty&1&&s(8,t=r("title",{default:Rs}))},[r,o,a,_,g,k,b,z,t,P]}class dr extends Oe{constructor(e){super(),Ae(this,e,Zn,Xn,ze,{})}}export{dr as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-e277ccfa.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-e277ccfa.js
deleted file mode 100644
index d8c8f276..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-e277ccfa.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as he,i as _e,s as ue,e as te,b as B,f as z,g as ne,d as se,t as S,a6 as Te,h as m,E as Y,a0 as rt,k as N,l as O,Y as qe,n as E,J as re,K as ye,I as dt,q as R,a as C,v as Q,m as D,r as W,c as M,w as J,G as d,x as X,H as ie,u as G,y as Z,F as le,N as ee,A as pe,C as Le,o as ze,L as ke,ag as vt,P as fe,ah as pt,p as $,ae as gt,am as bt,ak as wt,al as yt,a5 as it,ab as at,D as ot,M as kt,W as It,an as Et,ao as Nt,a1 as Ot}from"./index-c0d078cd.js";import{h as ft,f as ce,o as Dt,e as Ue}from"./index-123e2351.js";import{Y as ve}from"./runtime.esm-4bf604c8.js";import{m as Tt,c as Lt,I as Ne,h as Oe,e as zt,O as At}from"./WishResult-901333c5.js";import{w as Ve}from"./index-0189b6d0.js";import{A as Ce}from"./env-f184adc0.js";import{p as me}from"./audio-460a91c6.js";import{a as Be,g as St,f as Bt,p as qt,h as Ut,m as ct,v as Vt,c as ut,i as Ct}from"./app-stores-358281e6.js";import{s as Mt,d as Ht,a as Pt,b as Rt}from"./outfit-bffb00d9.js";import{c as De}from"./api-cookie-d587b0da.js";import{B as Wt,a as Yt,H as Gt}from"./custom-banner-3b9921d3.js";import{C as Ft}from"./CheckBox-828e98c0.js";import{f as Kt}from"./index-bd4a5be3.js";import{I as mt,g as Ae,S as jt}from"./_page-87ee6ee5.js";import{l as ht,B as Qt}from"./lazyload-05dfa468.js";import{q as Jt}from"./i18n-ec7c8da1.js";function Me(n,e,t){const l=n.slice();return l[4]=e[t],l[6]=t,l}function He(n){let e,t,l,s,o;return{c(){e=N("img"),this.h()},l(i){e=O(i,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),this.h()},h(){qe(e.src,t=n[1][`element-${n[4]}-bg.webp`])||E(e,"src",t),E(e,"alt","Background"),E(e,"class","bg svelte-14aq7ze"),E(e,"crossorigin","anonymous")},m(i,r){B(i,e,r),o=!0},p(i,r){(!o||r&2&&!qe(e.src,t=i[1][`element-${i[4]}-bg.webp`]))&&E(e,"src",t)},i(i){o||(re(()=>{s&&s.end(1),l=ye(e,Tt,{key:"morph"}),l.start()}),o=!0)},o(i){l&&l.invalidate(),s=dt(e,Lt,{key:"morph"}),o=!1},d(i){i&&m(e),i&&s&&s.end()}}}function Pe(n){let e,t,l=n[0]===n[6]&&He(n);return{c(){l&&l.c(),e=te()},l(s){l&&l.l(s),e=te()},m(s,o){l&&l.m(s,o),B(s,e,o),t=!0},p(s,o){s[0]===s[6]?l?(l.p(s,o),o&1&&z(l,1)):(l=He(s),l.c(),z(l,1),l.m(e.parentNode,e)):l&&(ne(),S(l,1,1,()=>{l=null}),se())},i(s){t||(z(l),t=!0)},o(s){S(l),t=!1},d(s){l&&l.d(s),s&&m(e)}}}function Xt(n){let e,t,l=n[2],s=[];for(let i=0;i<l.length;i+=1)s[i]=Pe(Me(n,l,i));const o=i=>S(s[i],1,1,()=>{s[i]=null});return{c(){for(let i=0;i<s.length;i+=1)s[i].c();e=te()},l(i){for(let r=0;r<s.length;r+=1)s[r].l(i);e=te()},m(i,r){for(let a=0;a<s.length;a+=1)s[a].m(i,r);B(i,e,r),t=!0},p(i,[r]){if(r&7){l=i[2];let a;for(a=0;a<l.length;a+=1){const f=Me(i,l,a);s[a]?(s[a].p(f,r),z(s[a],1)):(s[a]=Pe(f),s[a].c(),z(s[a],1),s[a].m(e.parentNode,e))}for(ne(),a=l.length;a<s.length;a+=1)o(a);se()}},i(i){if(!t){for(let r=0;r<l.length;r+=1)z(s[r]);t=!0}},o(i){s=s.filter(Boolean);for(let r=0;r<s.length;r+=1)S(s[r]);t=!1},d(i){Te(s,i),i&&m(e)}}}function Zt(n,e,t){let l;Y(n,Be,r=>t(1,l=r));const s=["dendro","anemo","cryo","hydro","electro","pyro","geo"];let o=Math.floor(Math.random()*s.length);const i=setInterval(()=>{const r=o===s.length-1;t(0,o=r?0:o+1)},6500);return rt(()=>clearInterval(i)),[o,l,s]}class $t extends he{constructor(e){super(),_e(this,e,Zt,Xt,ue,{})}}function xt(n){let e,t=n[1]("inventory.text")+"",l,s,o=n[1](n[0])+"",i,r,a,f,c,u,v,I,y,k,g,h,T,L,V,q,w,_,b,A,p,H,P,F,x,j,ge,Ie;return c=new Ne({props:{height:"70%",width:"auto",style:"position: absolute; left: 5px;top: 50%; transform: translateY(-50%);",type:"intertwined"}}),k=new Ne({props:{height:"70%",width:"auto",style:"position: absolute; left: 5px;top: 50%; transform: translateY(-50%);",type:"acquaint"}}),V=new Ne({props:{type:"primogem",height:"80%",width:"auto",style:"position: absolute; left: 5px;top: 50%; transform: translateY(-50%);"}}),A=new Ne({props:{type:"genesis",height:"80%",width:"auto",style:"position: absolute; left: 5px;top: 50%; transform: translateY(-50%);"}}),{c(){e=N("h1"),l=R(t),s=R(" / "),i=R(o),r=C(),a=N("div"),f=N("button"),Q(c.$$.fragment),u=C(),v=R(n[2]),I=C(),y=N("button"),Q(k.$$.fragment),g=C(),h=R(n[3]),T=C(),L=N("button"),Q(V.$$.fragment),q=C(),w=R(n[4]),_=C(),b=N("button"),Q(A.$$.fragment),p=C(),H=R(n[5]),P=C(),F=N("button"),x=N("i"),this.h()},l(U){e=O(U,"H1",{class:!0});var K=D(e);l=W(K,t),s=W(K," / "),i=W(K,o),K.forEach(m),r=M(U),a=O(U,"DIV",{class:!0});var ae=D(a);f=O(ae,"BUTTON",{class:!0});var be=D(f);J(c.$$.fragment,be),u=M(be),v=W(be,n[2]),be.forEach(m),I=M(ae),y=O(ae,"BUTTON",{class:!0});var we=D(y);J(k.$$.fragment,we),g=M(we),h=W(we,n[3]),we.forEach(m),T=M(ae),L=O(ae,"BUTTON",{class:!0});var de=D(L);J(V.$$.fragment,de),q=M(de),w=W(de,n[4]),de.forEach(m),_=M(ae),b=O(ae,"BUTTON",{class:!0});var oe=D(b);J(A.$$.fragment,oe),p=M(oe),H=W(oe,n[5]),oe.forEach(m),ae.forEach(m),P=M(U),F=O(U,"BUTTON",{class:!0});var Ee=D(F);x=O(Ee,"I",{class:!0}),D(x).forEach(m),Ee.forEach(m),this.h()},h(){E(e,"class","title svelte-x5np8h"),E(f,"class","intertwined svelte-x5np8h"),E(y,"class","acquiant svelte-x5np8h"),E(L,"class","primogem svelte-x5np8h"),E(b,"class","genesis svelte-x5np8h"),E(a,"class","budget svelte-x5np8h"),E(x,"class","gi-close"),E(F,"class","close svelte-x5np8h")},m(U,K){B(U,e,K),d(e,l),d(e,s),d(e,i),B(U,r,K),B(U,a,K),d(a,f),X(c,f,null),d(f,u),d(f,v),d(a,I),d(a,y),X(k,y,null),d(y,g),d(y,h),d(a,T),d(a,L),X(V,L,null),d(L,q),d(L,w),d(a,_),d(a,b),X(A,b,null),d(b,p),d(b,H),B(U,P,K),B(U,F,K),d(F,x),j=!0,ge||(Ie=ie(F,"click",n[6]),ge=!0)},p(U,[K]){(!j||K&2)&&t!==(t=U[1]("inventory.text")+"")&&G(l,t),(!j||K&3)&&o!==(o=U[1](U[0])+"")&&G(i,o),(!j||K&4)&&G(v,U[2]),(!j||K&8)&&G(h,U[3]),(!j||K&16)&&G(w,U[4]),(!j||K&32)&&G(H,U[5])},i(U){j||(z(c.$$.fragment,U),z(k.$$.fragment,U),z(V.$$.fragment,U),z(A.$$.fragment,U),j=!0)},o(U){S(c.$$.fragment,U),S(k.$$.fragment,U),S(V.$$.fragment,U),S(A.$$.fragment,U),j=!1},d(U){U&&m(e),U&&m(r),U&&m(a),Z(c),Z(k),Z(V),Z(A),U&&m(P),U&&m(F),ge=!1,Ie()}}}function el(n,e,t){let l,s,o,i,r;Y(n,ve,u=>t(1,l=u)),Y(n,St,u=>t(2,s=u)),Y(n,Bt,u=>t(3,o=u)),Y(n,qt,u=>t(4,i=u)),Y(n,Ut,u=>t(5,r=u));let{activeItem:a=""}=e;const f=le("navigate"),c=()=>{f("index"),me("close")};return Oe("esc","inventory",u=>{u.preventDefault(),c()}),n.$$set=u=>{"activeItem"in u&&t(0,a=u.activeItem)},[a,l,s,o,i,r,c]}class tl extends he{constructor(e){super(),_e(this,e,el,xt,ue,{activeItem:0})}}function ll(n){let e,t,l,s,o,i=(n[1]?"":n[2]("character"))+"",r,a,f,c,u,v=(n[1]?"":n[2]("weapon"))+"",I,y,k,g;return{c(){e=N("div"),t=N("nav"),l=N("button"),s=N("i"),o=C(),r=R(i),a=C(),f=N("button"),c=N("i"),u=C(),I=R(v),this.h()},l(h){e=O(h,"DIV",{class:!0});var T=D(e);t=O(T,"NAV",{class:!0});var L=D(t);l=O(L,"BUTTON",{class:!0});var V=D(l);s=O(V,"I",{class:!0}),D(s).forEach(m),o=M(V),r=W(V,i),V.forEach(m),a=M(L),f=O(L,"BUTTON",{class:!0});var q=D(f);c=O(q,"I",{class:!0}),D(c).forEach(m),u=M(q),I=W(q,v),q.forEach(m),L.forEach(m),T.forEach(m),this.h()},h(){E(s,"class","gi-character svelte-1nfs7vf"),E(l,"class","nav-link svelte-1nfs7vf"),ee(l,"active",n[0]==="character"),E(c,"class","gi-weapon svelte-1nfs7vf"),E(f,"class","nav-link svelte-1nfs7vf"),ee(f,"active",n[0]==="weapon"),E(t,"class","svelte-1nfs7vf"),E(e,"class","navigation svelte-1nfs7vf")},m(h,T){B(h,e,T),d(e,t),d(t,l),d(l,s),d(l,o),d(l,r),d(t,a),d(t,f),d(f,c),d(f,u),d(f,I),k||(g=[ie(l,"click",n[5]),ie(f,"click",n[6])],k=!0)},p(h,[T]){n=h,T&6&&i!==(i=(n[1]?"":n[2]("character"))+"")&&G(r,i),T&1&&ee(l,"active",n[0]==="character"),T&6&&v!==(v=(n[1]?"":n[2]("weapon"))+"")&&G(I,v),T&1&&ee(f,"active",n[0]==="weapon")},i(h){y||re(()=>{y=ye(e,n[4],{mobile:n[1]}),y.start()})},o:pe,d(h){h&&m(e),k=!1,Le(g)}}}function nl(n,e,t){let l,s;Y(n,ct,c=>t(1,l=c)),Y(n,ve,c=>t(2,s=c));let{activeItem:o}=e;const i=le("showItem"),r=(c,u)=>u.mobile?ft(c,{x:-20,duration:400}):ce(c,{duration:400}),a=()=>i("character"),f=()=>i("weapon");return n.$$set=c=>{"activeItem"in c&&t(0,o=c.activeItem)},[o,l,s,i,r,a,f]}class sl extends he{constructor(e){super(),_e(this,e,nl,ll,ue,{activeItem:0})}}function Re(n,e,t){const l=n.slice();return l[14]=e[t],l}function rl(n){let e;return{c(){e=N("i"),this.h()},l(t){e=O(t,"I",{class:!0}),D(e).forEach(m),this.h()},h(){E(e,"class","gi-caret-down")},m(t,l){B(t,e,l)},d(t){t&&m(e)}}}function il(n){let e;return{c(){e=N("i"),this.h()},l(t){e=O(t,"I",{class:!0}),D(e).forEach(m),this.h()},h(){E(e,"class","gi-caret-up")},m(t,l){B(t,e,l)},d(t){t&&m(e)}}}function We(n){let e,t,l,s,o,i=["release","rarity","name","quantity"],r=[];for(let c=0;c<4;c+=1)r[c]=Ye(Re(n,i,c));let a=n[0]==="character"&&Ge(n),f=n[0]==="weapon"&&Fe(n);return{c(){e=N("div");for(let c=0;c<4;c+=1)r[c].c();t=C(),a&&a.c(),l=C(),f&&f.c(),this.h()},l(c){e=O(c,"DIV",{class:!0});var u=D(e);for(let v=0;v<4;v+=1)r[v].l(u);t=M(u),a&&a.l(u),l=M(u),f&&f.l(u),u.forEach(m),this.h()},h(){E(e,"class","option-list above")},m(c,u){B(c,e,u);for(let v=0;v<4;v+=1)r[v].m(e,null);d(e,t),a&&a.m(e,null),d(e,l),f&&f.m(e,null),o=!0},p(c,u){if(u&74){i=["release","rarity","name","quantity"];let v;for(v=0;v<4;v+=1){const I=Re(c,i,v);r[v]?r[v].p(I,u):(r[v]=Ye(I),r[v].c(),r[v].m(e,t))}for(;v<4;v+=1)r[v].d(1)}c[0]==="character"?a?a.p(c,u):(a=Ge(c),a.c(),a.m(e,l)):a&&(a.d(1),a=null),c[0]==="weapon"?f?f.p(c,u):(f=Fe(c),f.c(),f.m(e,null)):f&&(f.d(1),f=null)},i(c){o||(re(()=>{s||(s=ke(e,ce,{duration:200},!0)),s.run(1)}),o=!0)},o(c){s||(s=ke(e,ce,{duration:200},!1)),s.run(0),o=!1},d(c){c&&m(e),Te(r,c),a&&a.d(),f&&f.d(),c&&s&&s.end()}}}function Ye(n){let e,t=n[3](`inventory.${n[14]}`)+"",l,s,o;function i(){return n[8](n[14])}return{c(){e=N("button"),l=R(t),this.h()},l(r){e=O(r,"BUTTON",{class:!0});var a=D(e);l=W(a,t),a.forEach(m),this.h()},h(){E(e,"class","svelte-c3y0zy"),ee(e,"selected",n[1]==n[14])},m(r,a){B(r,e,a),d(e,l),s||(o=ie(e,"click",i),s=!0)},p(r,a){n=r,a&8&&t!==(t=n[3](`inventory.${n[14]}`)+"")&&G(l,t),a&2&&ee(e,"selected",n[1]==n[14])},d(r){r&&m(e),s=!1,o()}}}function Ge(n){let e,t=n[3]("inventory.element")+"",l,s,o;return{c(){e=N("button"),l=R(t),this.h()},l(i){e=O(i,"BUTTON",{class:!0});var r=D(e);l=W(r,t),r.forEach(m),this.h()},h(){E(e,"class","svelte-c3y0zy"),ee(e,"selected",n[1]=="element")},m(i,r){B(i,e,r),d(e,l),s||(o=ie(e,"click",n[9]),s=!0)},p(i,r){r&8&&t!==(t=i[3]("inventory.element")+"")&&G(l,t),r&2&&ee(e,"selected",i[1]=="element")},d(i){i&&m(e),s=!1,o()}}}function Fe(n){let e,t=n[3]("inventory.type")+"",l,s,o;return{c(){e=N("button"),l=R(t),this.h()},l(i){e=O(i,"BUTTON",{class:!0});var r=D(e);l=W(r,t),r.forEach(m),this.h()},h(){E(e,"class","svelte-c3y0zy"),ee(e,"selected",n[1]=="type")},m(i,r){B(i,e,r),d(e,l),s||(o=ie(e,"click",n[10]),s=!0)},p(i,r){r&8&&t!==(t=i[3]("inventory.type")+"")&&G(l,t),r&2&&ee(e,"selected",i[1]=="type")},d(i){i&&m(e),s=!1,o()}}}function al(n){let e,t=n[3]("inventory.sort")+"",l,s,o=n[3](`inventory.${n[1]}`)+"",i,r,a,f,c,u,v;function I(h,T){return h[2]?il:rl}let y=I(n),k=y(n),g=n[2]&&We(n);return{c(){e=N("button"),l=R(t),s=R(" / "),i=R(o),r=C(),k.c(),a=C(),g&&g.c(),f=te(),this.h()},l(h){e=O(h,"BUTTON",{class:!0});var T=D(e);l=W(T,t),s=W(T," / "),i=W(T,o),r=M(T),k.l(T),T.forEach(m),a=M(h),g&&g.l(h),f=te(),this.h()},h(){E(e,"class","selected-option svelte-c3y0zy")},m(h,T){B(h,e,T),d(e,l),d(e,s),d(e,i),d(e,r),k.m(e,null),B(h,a,T),g&&g.m(h,T),B(h,f,T),c=!0,u||(v=ie(e,"click",n[4]),u=!0)},p(h,[T]){(!c||T&8)&&t!==(t=h[3]("inventory.sort")+"")&&G(l,t),(!c||T&10)&&o!==(o=h[3](`inventory.${h[1]}`)+"")&&G(i,o),y!==(y=I(h))&&(k.d(1),k=y(h),k&&(k.c(),k.m(e,null))),h[2]?g?(g.p(h,T),T&4&&z(g,1)):(g=We(h),g.c(),z(g,1),g.m(f.parentNode,f)):g&&(ne(),S(g,1,1,()=>{g=null}),se())},i(h){c||(z(g),c=!0)},o(h){S(g),c=!1},d(h){h&&m(e),k.d(),h&&m(a),g&&g.d(h),h&&m(f),u=!1,v()}}}const Se=(n,e)=>{if(!e||!n||!Array.isArray(n)||e==="release")return n;if(e==="rarity")return n.sort((t,l)=>l.rarity-t.rarity);if(e==="quantity")return n.sort((t,l)=>l.qty-t.qty);if(e==="name")return n.sort((t,l)=>t.localName>l.localName?1:t.localName<l.localName?-1:0);if(e==="element")return n.sort((t,l)=>t.vision>l.vision?1:t.vision<l.vision?-1:0);if(e==="type")return n.sort((t,l)=>t.weaponType>l.weaponType?1:t.weaponType<l.weaponType?-1:0)};function ol(n,e,t){let l,s;Y(n,ve,h=>t(3,s=h));let{activeItem:o="character"}=e,{orderby:i="rarity"}=e,{showAll:r=!1}=e,a=!1;const f=()=>{me(),t(2,a=!a)},c=le("setOrderName"),u=le("loadedList");Y(n,u,h=>t(11,l=h));const v=le("itemList"),I=h=>{const T=r?l:l.filter(({isOwned:V})=>V),L=Se([...T],h);v.set(L),c(h),f()};ze(()=>{document.querySelector("section").addEventListener("mousedown",()=>t(2,a=!1))});const y=h=>I(h),k=()=>I("element"),g=()=>I("type");return n.$$set=h=>{"activeItem"in h&&t(0,o=h.activeItem),"orderby"in h&&t(1,i=h.orderby),"showAll"in h&&t(7,r=h.showAll)},[o,i,a,s,f,u,I,r,y,k,g]}class fl extends he{constructor(e){super(),_e(this,e,ol,al,ue,{activeItem:0,orderby:1,showAll:7})}}function cl(n){let e=n[5]("inventory.showAllOption",{values:{item:n[5](n[0])}})+"",t,l,s,o=n[2][n[0]]+"",i,r,a=n[4].length+"",f;return{c(){t=R(e),l=C(),s=N("span"),i=R(o),r=R("/"),f=R(a)},l(c){t=W(c,e),l=M(c),s=O(c,"SPAN",{});var u=D(s);i=W(u,o),r=W(u,"/"),f=W(u,a),u.forEach(m)},m(c,u){B(c,t,u),B(c,l,u),B(c,s,u),d(s,i),d(s,r),d(s,f)},p(c,u){u&33&&e!==(e=c[5]("inventory.showAllOption",{values:{item:c[5](c[0])}})+"")&&G(t,e),u&5&&o!==(o=c[2][c[0]]+"")&&G(i,o),u&16&&a!==(a=c[4].length+"")&&G(f,a)},d(c){c&&m(t),c&&m(l),c&&m(s)}}}function ul(n){let e,t,l,s,o,i,r,a,f,c,u,v;return r=new fl({props:{activeItem:n[0],orderby:n[3],showAll:n[1]}}),f=new Ft({props:{checked:n[1],$$slots:{default:[cl]},$$scope:{ctx:n}}}),f.$on("change",n[7]),{c(){e=N("div"),t=N("div"),l=N("button"),s=N("i"),o=C(),i=N("div"),Q(r.$$.fragment),a=C(),Q(f.$$.fragment),this.h()},l(I){e=O(I,"DIV",{class:!0});var y=D(e);t=O(y,"DIV",{class:!0});var k=D(t);l=O(k,"BUTTON",{class:!0,title:!0});var g=D(l);s=O(g,"I",{class:!0}),D(s).forEach(m),g.forEach(m),o=M(k),i=O(k,"DIV",{class:!0});var h=D(i);J(r.$$.fragment,h),h.forEach(m),a=M(k),J(f.$$.fragment,k),k.forEach(m),y.forEach(m),this.h()},h(){E(s,"class","gi-exchange"),E(l,"class","btn reverse"),E(l,"title","Reverse Order"),E(i,"class","selector"),E(t,"class","row svelte-1rly4ni"),E(e,"class","filter svelte-1rly4ni")},m(I,y){B(I,e,y),d(e,t),d(t,l),d(l,s),d(t,o),d(t,i),X(r,i,null),d(t,a),X(f,t,null),c=!0,u||(v=[ie(l,"click",n[8]),ie(i,"mousedown",vt(n[9]))],u=!0)},p(I,[y]){const k={};y&1&&(k.activeItem=I[0]),y&8&&(k.orderby=I[3]),y&2&&(k.showAll=I[1]),r.$set(k);const g={};y&2&&(g.checked=I[1]),y&2097205&&(g.$$scope={dirty:y,ctx:I}),f.$set(g)},i(I){c||(z(r.$$.fragment,I),z(f.$$.fragment,I),c=!0)},o(I){S(r.$$.fragment,I),S(f.$$.fragment,I),c=!1},d(I){I&&m(e),Z(r),Z(f),u=!1,Le(v)}}}function ml(n,e,t){let l,s;Y(n,ve,b=>t(5,s=b));let{activeItem:o}=e;const i=le("loaded"),r=le("loadedList");Y(n,r,b=>t(4,l=b));const a=le("itemList");let f=De.get("showAllInventory");const c=({detail:b})=>t(1,f=!!b.checked),u=()=>{me("click2"),a.update(b=>b.reverse())};let v=[],I=[],y=!1,k={weapon:0,character:0},g="rarity";fe("setOrderName",b=>t(3,g=b));const h=(b,A)=>s(A==="weapon"?b:`${b}.name`),T=async()=>(await Wt.getAll()).reverse().map(p=>{const{character:H,status:P,images:F,hostedImages:x,artPosition:j}=p;return p.name=H,p.rarity=5,p.custom=!0,p.images=P!="owned"?Yt(x):F,p.offset=j,p}).filter(({character:p,images:H})=>p&&H&&H?.artURL),L=Dt.getAll(),V=async b=>(b==="character"?[...await T(),...Ht]:Pt).map(P=>{const{name:F,itemID:x,rarity:j,weaponType:ge,vision:Ie,images:U,custom:K,offset:ae}=P,{wish:be=0,manual:we=0}=L[x]||{},de=be+we,oe=ge?"weapon":"character",Ee=K?F:h(F,oe),_t=de>0;return t(2,k[oe]=de>0?k[oe]+1:k[oe],k),{name:F,localName:Ee,rarity:j,type:oe,vision:Ie,weaponType:ge,qty:de,isOwned:_t,images:U,itemID:x,custom:K,offset:ae}}),q=(b,A)=>{if(b){const P=Se([...l],A);a.set(P);return}const p=[...l].filter(({isOwned:P})=>P),H=Se(p,A);a.set(H)},w=(b,A)=>{if(!y)return;const p=b==="character"?v:I;r.set(p),q(A,g)};ze(async()=>{v=(await V("character")).map(b=>Mt(b)),I=await V("weapon"),y=!0,w(o,f),i()});function _(b){pt.call(this,n,b)}return n.$$set=b=>{"activeItem"in b&&t(0,o=b.activeItem)},n.$$.update=()=>{n.$$.dirty&2&&De.set("showAllInventory",f),n.$$.dirty&3&&w(o,f)},[o,f,k,g,l,s,r,c,u,_]}class hl extends he{constructor(e){super(),_e(this,e,ml,ul,ue,{activeItem:0})}}function Ke(n,e,t){const l=n.slice();return l[11]=e[t],l[15]=t,l}function je(n,e,t){const l=n.slice();return l[11]=e[t],l}function _l(n){let e=[],t=new Map,l,s,o=n[3];const i=r=>r[11];for(let r=0;r<o.length;r+=1){let a=Ke(n,o,r),f=i(a);t.set(f,e[r]=Qe(f,a))}return{c(){for(let r=0;r<e.length;r+=1)e[r].c();l=te()},l(r){for(let a=0;a<e.length;a+=1)e[a].l(r);l=te()},m(r,a){for(let f=0;f<e.length;f+=1)e[f].m(r,a);B(r,l,a),s=!0},p(r,a){if(a&8){o=r[3],ne();for(let f=0;f<e.length;f+=1)e[f].r();e=gt(e,a,i,1,r,o,t,l.parentNode,bt,Qe,l,Ke);for(let f=0;f<e.length;f+=1)e[f].a();se()}},i(r){if(!s){for(let a=0;a<o.length;a+=1)z(e[a]);s=!0}},o(r){for(let a=0;a<e.length;a+=1)S(e[a]);s=!1},d(r){for(let a=0;a<e.length;a+=1)e[a].d(r);r&&m(l)}}}function dl(n){let e,t,l=n[3],s=[];for(let i=0;i<l.length;i+=1)s[i]=Xe(je(n,l,i));const o=i=>S(s[i],1,1,()=>{s[i]=null});return{c(){for(let i=0;i<s.length;i+=1)s[i].c();e=te()},l(i){for(let r=0;r<s.length;r+=1)s[r].l(i);e=te()},m(i,r){for(let a=0;a<s.length;a+=1)s[a].m(i,r);B(i,e,r),t=!0},p(i,r){if(r&8){l=i[3];let a;for(a=0;a<l.length;a+=1){const f=je(i,l,a);s[a]?(s[a].p(f,r),z(s[a],1)):(s[a]=Xe(f),s[a].c(),z(s[a],1),s[a].m(e.parentNode,e))}for(ne(),a=l.length;a<s.length;a+=1)o(a);se()}},i(i){if(!t){for(let r=0;r<l.length;r+=1)z(s[r]);t=!0}},o(i){s=s.filter(Boolean);for(let r=0;r<s.length;r+=1)S(s[r]);t=!1},d(i){Te(s,i),i&&m(e)}}}function vl(n){let e,t=n[2]("history.noData")+"",l;return{c(){e=N("span"),l=R(t),this.h()},l(s){e=O(s,"SPAN",{style:!0});var o=D(e);l=W(o,t),o.forEach(m),this.h()},h(){$(e,"color","white"),$(e,"padding","2rem"),$(e,"font-size","1.2rem")},m(s,o){B(s,e,o),d(e,l)},p(s,o){o&4&&t!==(t=s[2]("history.noData")+"")&&G(l,t)},i:pe,o:pe,d(s){s&&m(e)}}}function pl(n){let e,t=n[2]("history.waiting")+"",l;return{c(){e=N("span"),l=R(t),this.h()},l(s){e=O(s,"SPAN",{style:!0});var o=D(e);l=W(o,t),o.forEach(m),this.h()},h(){$(e,"color","white"),$(e,"padding","2rem"),$(e,"font-size","1.2rem")},m(s,o){B(s,e,o),d(e,l)},p(s,o){o&4&&t!==(t=s[2]("history.waiting")+"")&&G(l,t)},i:pe,o:pe,d(s){s&&m(e)}}}function Qe(n,e){let t,l,s,o,i,r=pe,a;return l=new mt({props:{itemdata:e[11]}}),{key:n,first:null,c(){t=N("div"),Q(l.$$.fragment),s=C(),this.h()},l(f){t=O(f,"DIV",{class:!0});var c=D(t);J(l.$$.fragment,c),s=M(c),c.forEach(m),this.h()},h(){E(t,"class","item svelte-wb8xi8"),this.first=t},m(f,c){B(f,t,c),X(l,t,null),d(t,s),a=!0},p(f,c){e=f;const u={};c&8&&(u.itemdata=e[11]),l.$set(u)},r(){i=t.getBoundingClientRect()},f(){wt(t),r()},a(){r(),r=yt(t,i,Kt,{duration:e[8]})},i(f){a||(z(l.$$.fragment,f),o||re(()=>{o=ye(t,ce,{duration:300,delay:Math.sqrt(e[15]*2500)}),o.start()}),a=!0)},o(f){S(l.$$.fragment,f),a=!1},d(f){f&&m(t),Z(l)}}}function Je(n){let e,t;return e=new mt({props:{itemdata:n[11]}}),{c(){Q(e.$$.fragment)},l(l){J(e.$$.fragment,l)},m(l,s){X(e,l,s),t=!0},p(l,s){const o={};s&8&&(o.itemdata=l[11]),e.$set(o)},i(l){t||(z(e.$$.fragment,l),t=!0)},o(l){S(e.$$.fragment,l),t=!1},d(l){Z(e,l)}}}function Xe(n){let e,t=n[11],l,s,o,i=Je(n);return{c(){e=N("div"),i.c(),l=C(),this.h()},l(r){e=O(r,"DIV",{class:!0});var a=D(e);i.l(a),l=M(a),a.forEach(m),this.h()},h(){E(e,"class","item svelte-wb8xi8")},m(r,a){B(r,e,a),i.m(e,null),d(e,l),o=!0},p(r,a){a&8&&ue(t,t=r[11])?(ne(),S(i,1,1,pe),se(),i=Je(r),i.c(),z(i,1),i.m(e,l)):i.p(r,a)},i(r){o||(z(i),s||re(()=>{s=ye(e,ce,{duration:300}),s.start()}),o=!0)},o(r){S(i),o=!1},d(r){r&&m(e),i.d(r)}}}function gl(n){let e,t,l,s;const o=[pl,vl,dl,_l],i=[];function r(a,f){return a[0]?!a[3]||a[3].length<1?1:a[4]?2:3:0}return t=r(n),l=i[t]=o[t](n),{c(){e=N("div"),l.c(),this.h()},l(a){e=O(a,"DIV",{class:!0,style:!0});var f=D(e);l.l(f),f.forEach(m),this.h()},h(){E(e,"class","list-item svelte-wb8xi8"),$(e,"--item-width",n[1]+"px")},m(a,f){B(a,e,f),i[t].m(e,null),s=!0},p(a,[f]){let c=t;t=r(a),t===c?i[t].p(a,f):(ne(),S(i[c],1,1,()=>{i[c]=null}),se(),l=i[t],l?l.p(a,f):(l=i[t]=o[t](a),l.c()),z(l,1),l.m(e,null)),(!s||f&2)&&$(e,"--item-width",a[1]+"px")},i(a){s||(z(l),s=!0)},o(a){S(l),s=!1},d(a){a&&m(e),i[t].d()}}}function bl(n,e,t){let l,s,o,i,r,a;Y(n,ct,y=>t(6,l=y)),Y(n,Vt,y=>t(7,s=y)),Y(n,ut,y=>t(9,o=y)),Y(n,ve,y=>t(2,i=y)),Y(n,Ct,y=>t(4,a=y));let{loaded:f=!1}=e;const c=le("itemList");Y(n,c,y=>t(3,r=y));let u=150;const v=(y,k)=>{if(t(1,u=20/100*y),k){t(1,u=24/100*o);return}if(u<150){t(1,u=130);return}if(u>150){t(1,u=150);return}},I=y=>25*Math.sqrt(y);return n.$$set=y=>{"loaded"in y&&t(0,f=y.loaded)},n.$$.update=()=>{n.$$.dirty&192&&v(s,l)},[f,u,i,r,a,c,l,s,I]}class wl extends he{constructor(e){super(),_e(this,e,bl,gl,ue,{loaded:0})}}function Ze(n,e,t){const l=n.slice();return l[19]=e[t].name,l[20]=e[t].rarity,l[21]=e[t].owned,l[6]=e[t].offset,l}function yl(n){let e,t,l,s,o,i,r,a,f,c,u=n[5]("outfit.default")+"",v,I,y,k,g,h,T,L,V=n[7],q=[];for(let _=0;_<V.length;_+=1)q[_]=$e(Ze(n,V,_));let w=n[2]!==n[3]&&xe(n);return{c(){e=N("div"),t=N("div"),l=N("button"),s=N("picture"),o=N("img"),a=C(),f=N("caption"),c=N("span"),v=R(u),y=C();for(let _=0;_<q.length;_+=1)q[_].c();k=C(),g=N("div"),w&&w.c(),this.h()},l(_){e=O(_,"DIV",{class:!0,style:!0});var b=D(e);t=O(b,"DIV",{class:!0});var A=D(t);l=O(A,"BUTTON",{class:!0});var p=D(l);s=O(p,"PICTURE",{class:!0,style:!0});var H=D(s);o=O(H,"IMG",{alt:!0,crossorigin:!0,class:!0}),H.forEach(m),a=M(p),f=O(p,"CAPTION",{class:!0});var P=D(f);c=O(P,"SPAN",{});var F=D(c);v=W(F,u),F.forEach(m),P.forEach(m),p.forEach(m),A.forEach(m),y=M(b);for(let j=0;j<q.length;j+=1)q[j].l(b);k=M(b),g=O(b,"DIV",{class:!0});var x=D(g);w&&w.l(x),x.forEach(m),b.forEach(m),this.h()},h(){E(o,"alt",i=Ae(n[0])),E(o,"crossorigin","anonymous"),E(o,"class","svelte-ze6nxk"),E(s,"class","star4 svelte-ze6nxk"),$(s,"background-image","url('"+n[4]["4star-bg.webp"]+"')"),E(f,"class","svelte-ze6nxk"),E(l,"class","svelte-ze6nxk"),ee(l,"selected",!n[2]||n[2]==="default"),E(t,"class","column svelte-ze6nxk"),re(()=>n[11].call(t)),E(g,"class","apply svelte-ze6nxk"),E(e,"class","outfit-toggle svelte-ze6nxk"),$(e,"--width",n[1]+"px")},m(_,b){B(_,e,b),d(e,t),d(t,l),d(l,s),d(s,o),d(l,a),d(l,f),d(f,c),d(c,v),I=it(t,n[11].bind(t)),d(e,y);for(let A=0;A<q.length;A+=1)q[A].m(e,null);d(e,k),d(e,g),w&&w.m(g,null),h=!0,T||(L=[at(r=ht.call(null,o,n[4][`face/${n[0]}`])),ie(l,"click",n[10])],T=!0)},p(_,b){if((!h||b&1&&i!==(i=Ae(_[0])))&&E(o,"alt",i),r&&ot(r.update)&&b&17&&r.update.call(null,_[4][`face/${_[0]}`]),(!h||b&16)&&$(s,"background-image","url('"+_[4]["4star-bg.webp"]+"')"),(!h||b&32)&&u!==(u=_[5]("outfit.default")+"")&&G(v,u),b&4&&ee(l,"selected",!_[2]||_[2]==="default"),b&436){V=_[7];let A;for(A=0;A<V.length;A+=1){const p=Ze(_,V,A);q[A]?q[A].p(p,b):(q[A]=$e(p),q[A].c(),q[A].m(e,k))}for(;A<q.length;A+=1)q[A].d(1);q.length=V.length}_[2]!==_[3]?w?(w.p(_,b),b&12&&z(w,1)):(w=xe(_),w.c(),z(w,1),w.m(g,null)):w&&(ne(),S(w,1,1,()=>{w=null}),se()),(!h||b&2)&&$(e,"--width",_[1]+"px")},i(_){h||(z(w),h=!0)},o(_){S(w),h=!1},d(_){_&&m(e),I(),Te(q,_),w&&w.d(),T=!1,Le(L)}}}function $e(n){let e,t,l,s,o,i,r,a,f=n[5](`outfit.item.${n[19]}.name`)+"",c,u,v,I;function y(){return n[12](n[19],n[6])}return{c(){e=N("div"),t=N("button"),l=N("picture"),s=N("img"),i=C(),r=N("caption"),a=N("span"),c=R(f),this.h()},l(k){e=O(k,"DIV",{class:!0,"data-text":!0});var g=D(e);t=O(g,"BUTTON",{class:!0});var h=D(t);l=O(h,"PICTURE",{class:!0,style:!0});var T=D(l);s=O(T,"IMG",{alt:!0,crossorigin:!0,class:!0}),T.forEach(m),i=M(h),r=O(h,"CAPTION",{class:!0});var L=D(r);a=O(L,"SPAN",{});var V=D(a);c=W(V,f),V.forEach(m),L.forEach(m),h.forEach(m),g.forEach(m),this.h()},h(){E(s,"alt",Ae(n[19])),E(s,"crossorigin","anonymous"),E(s,"class","svelte-ze6nxk"),E(l,"class","star"+n[20]+" svelte-ze6nxk"),$(l,"background-image","url('"+n[4][`${n[20]}star-bg.webp`]+"')"),E(r,"class","svelte-ze6nxk"),E(t,"class","svelte-ze6nxk"),ee(t,"selected",n[2]===n[19]),E(e,"class","column svelte-ze6nxk"),E(e,"data-text",u=n[5]("inventory.notOwned")),ee(e,"disabled",!n[21])},m(k,g){B(k,e,g),d(e,t),d(t,l),d(l,s),d(t,i),d(t,r),d(r,a),d(a,c),v||(I=[at(o=ht.call(null,s,n[4][`face/${n[19]}`])),ie(t,"click",y)],v=!0)},p(k,g){n=k,o&&ot(o.update)&&g&16&&o.update.call(null,n[4][`face/${n[19]}`]),g&16&&$(l,"background-image","url('"+n[4][`${n[20]}star-bg.webp`]+"')"),g&32&&f!==(f=n[5](`outfit.item.${n[19]}.name`)+"")&&G(c,f),g&132&&ee(t,"selected",n[2]===n[19]),g&32&&u!==(u=n[5]("inventory.notOwned"))&&E(e,"data-text",u)},d(k){k&&m(e),v=!1,Le(I)}}}function xe(n){let e,t,l,s;return t=new Qt({props:{$$slots:{default:[kl]},$$scope:{ctx:n}}}),t.$on("click",n[9]),{c(){e=N("div"),Q(t.$$.fragment)},l(o){e=O(o,"DIV",{});var i=D(e);J(t.$$.fragment,i),i.forEach(m)},m(o,i){B(o,e,i),X(t,e,null),s=!0},p(o,i){const r={};i&16777248&&(r.$$scope={dirty:i,ctx:o}),t.$set(r)},i(o){s||(z(t.$$.fragment,o),re(()=>{l||(l=ke(e,ce,{duration:200},!0)),l.run(1)}),s=!0)},o(o){S(t.$$.fragment,o),l||(l=ke(e,ce,{duration:200},!1)),l.run(0),s=!1},d(o){o&&m(e),Z(t),o&&l&&l.end()}}}function kl(n){let e=n[5]("outfit.setOutfit")+"",t;return{c(){t=R(e)},l(l){t=W(l,e)},m(l,s){B(l,t,s)},p(l,s){s&32&&e!==(e=l[5]("outfit.setOutfit")+"")&&G(t,e)},d(l){l&&m(t)}}}function Il(n){let e,t,l=n[7].length>0&&yl(n);return{c(){l&&l.c(),e=te()},l(s){l&&l.l(s),e=te()},m(s,o){l&&l.m(s,o),B(s,e,o),t=!0},p(s,[o]){s[7].length>0&&l.p(s,o)},i(s){t||(z(l),t=!0)},o(s){S(l),t=!1},d(s){l&&l.d(s),s&&m(e)}}}function El(n,e,t){let l,s;Y(n,Be,w=>t(4,l=w)),Y(n,ve,w=>t(5,s=w));let{charName:o=""}=e,i,r={};const a=Rt(o),{offset:f={}}=Jt(o);let{name:c="default"}=a.find(({isSet:w})=>w)||{},u=c;const v=le("previewOutfit"),I=(w,_)=>{c!==w&&(me("click2"),t(2,c=w),t(6,r=_||f),v(c,r))},y=()=>{u!=="default"&&Ue.set({outfitName:u,isSet:!1,characterName:o}),c!=="default"&&Ue.set({outfitName:c,isSet:!0,characterName:o}),t(3,u=c),me(),T()},k=le("loadedList"),g=le("itemList"),h=w=>{const _=w.findIndex(({name:b})=>b===o);return w[_].outfitName=u,w[_].offset=r,w[_].useOutfit=u&&u!=="default",w},T=()=>{[g,k].forEach(_=>_.update(h))},L=()=>I("default");function V(){i=this.clientWidth,t(1,i)}const q=(w,_)=>I(w,_);return n.$$set=w=>{"charName"in w&&t(0,o=w.charName)},[o,i,c,u,l,s,r,a,I,y,L,V,q]}class Nl extends he{constructor(e){super(),_e(this,e,El,Il,ue,{charName:0})}}function et(n){let e,t,l,s,o,i,r=n[3]==="character"&&tt(n),a=n[8]>0&&lt(n),f=n[8]>0&&nt();return{c(){e=N("div"),t=N("div"),r&&r.c(),l=C(),a&&a.c(),s=C(),f&&f.c(),this.h()},l(c){e=O(c,"DIV",{class:!0});var u=D(e);t=O(u,"DIV",{class:!0});var v=D(t);r&&r.l(v),l=M(v),a&&a.l(v),s=M(v),f&&f.l(v),v.forEach(m),u.forEach(m),this.h()},h(){E(t,"class","wrapper svelte-ysz1nw"),E(e,"class","handler-container svelte-ysz1nw")},m(c,u){B(c,e,u),d(e,t),r&&r.m(t,null),d(t,l),a&&a.m(t,null),d(t,s),f&&f.m(t,null),i=!0},p(c,u){c[3]==="character"?r?(r.p(c,u),u&8&&z(r,1)):(r=tt(c),r.c(),z(r,1),r.m(t,l)):r&&(ne(),S(r,1,1,()=>{r=null}),se()),c[8]>0?a?a.p(c,u):(a=lt(c),a.c(),a.m(t,s)):a&&(a.d(1),a=null),c[8]>0?f?u&256&&z(f,1):(f=nt(),f.c(),z(f,1),f.m(t,null)):f&&(ne(),S(f,1,1,()=>{f=null}),se())},i(c){i||(z(r),z(f),re(()=>{o||(o=ke(e,ce,{duration:250},!0)),o.run(1)}),i=!0)},o(c){S(r),S(f),o||(o=ke(e,ce,{duration:250},!1)),o.run(0),i=!1},d(c){c&&m(e),r&&r.d(),a&&a.d(),f&&f.d(),c&&o&&o.end()}}}function tt(n){let e,t;return e=new Nl({props:{charName:n[4]}}),{c(){Q(e.$$.fragment)},l(l){J(e.$$.fragment,l)},m(l,s){X(e,l,s),t=!0},p(l,s){const o={};s&16&&(o.charName=l[4]),e.$set(o)},i(l){t||(z(e.$$.fragment,l),t=!0)},o(l){S(e.$$.fragment,l),t=!1},d(l){Z(e,l)}}}function lt(n){let e,t,l=n[15](n[3],n[8])+"",s,o,i,r=n[13]("inventory.firstSummon",{values:{date:n[12]}})+"",a;return{c(){e=N("div"),t=N("span"),s=R(l),o=C(),i=N("small"),a=R(r),this.h()},l(f){e=O(f,"DIV",{class:!0});var c=D(e);t=O(c,"SPAN",{class:!0});var u=D(t);s=W(u,l),u.forEach(m),o=M(c),i=O(c,"SMALL",{class:!0});var v=D(i);a=W(v,r),v.forEach(m),c.forEach(m),this.h()},h(){E(t,"class","qty svelte-ysz1nw"),E(i,"class","svelte-ysz1nw"),E(e,"class","detail svelte-ysz1nw")},m(f,c){B(f,e,c),d(e,t),d(t,s),d(e,o),d(e,i),d(i,a)},p(f,c){c&264&&l!==(l=f[15](f[3],f[8])+"")&&G(s,l),c&12288&&r!==(r=f[13]("inventory.firstSummon",{values:{date:f[12]}})+"")&&G(a,r)},d(f){f&&m(e)}}}function nt(n){let e,t,l;return t=new zt({}),{c(){e=N("div"),Q(t.$$.fragment),this.h()},l(s){e=O(s,"DIV",{class:!0});var o=D(e);J(t.$$.fragment,o),o.forEach(m),this.h()},h(){E(e,"class","share svelte-ysz1nw")},m(s,o){B(s,e,o),X(t,e,null),l=!0},i(s){l||(z(t.$$.fragment,s),l=!0)},o(s){S(t.$$.fragment,s),l=!1},d(s){s&&m(e),Z(t)}}}function Ol(n){let e,t,l,s;e=new jt({props:{character:n[4],artURL:n[16](n[0]),position:n[1],preview:!0,weaponType:n[7],localName:n[5],vision:n[6],onshot:n[11],isOwned:n[9],rarity:n[2],hideInfo:n[10]}}),e.$on("close",n[14]);let o=!n[10]&&et(n);return{c(){Q(e.$$.fragment),t=C(),o&&o.c(),l=te()},l(i){J(e.$$.fragment,i),t=M(i),o&&o.l(i),l=te()},m(i,r){X(e,i,r),B(i,t,r),o&&o.m(i,r),B(i,l,r),s=!0},p(i,[r]){const a={};r&16&&(a.character=i[4]),r&1&&(a.artURL=i[16](i[0])),r&2&&(a.position=i[1]),r&128&&(a.weaponType=i[7]),r&32&&(a.localName=i[5]),r&64&&(a.vision=i[6]),r&2048&&(a.onshot=i[11]),r&512&&(a.isOwned=i[9]),r&4&&(a.rarity=i[2]),r&1024&&(a.hideInfo=i[10]),e.$set(a),i[10]?o&&(ne(),S(o,1,1,()=>{o=null}),se()):o?(o.p(i,r),r&1024&&z(o,1)):(o=et(i),o.c(),z(o,1),o.m(l.parentNode,l))},i(i){s||(z(e.$$.fragment,i),z(o),s=!0)},o(i){S(e.$$.fragment,i),S(o),s=!1},d(i){Z(e,i),i&&m(t),o&&o.d(i),i&&m(l)}}}function Dl(n,e,t){let l,s;Y(n,Be,p=>t(21,l=p)),Y(n,ve,p=>t(13,s=p));let{itemID:o}=e,{useOutfit:i=!1}=e,{outfitName:r=""}=e,{custom:a=!1}=e,{rarity:f=3}=e,{type:c="character"}=e,{name:u=""}=e,{localName:v=""}=e,{vision:I=""}=e,{weaponType:y=""}=e,{qty:k=0}=e,{isOwned:g=!0}=e,{images:h={}}=e,{offset:T={}}=e,L=!1;fe("toggleInfoHide",()=>{t(10,L=!L),me()}),fe("previewOutfit",(p,H)=>{t(0,r=p),t(1,T=H),t(17,i=p!=="default")});let q=!1;const w=le("closeDetail");fe("preview",p=>t(11,q=p));const _=(p,H)=>{if(p==="weapon"){const x=s("inventory.extra",{values:{count:`5 + ${H-5}`}});return s("inventory.refinement",{values:{count:H>5?x:H}})}const P=s("inventory.extra",{values:{count:`6 + ${H-7}`}});return s("inventory.constellation",{values:{count:H>7?P:H-1}})},b=p=>a?h?.artURL:c==="weapon"?l[u]:l[`splash-art/${p&&p!=="default"?p:u}`];let A="";return ze(async()=>{const p=await Gt.getByID(o);t(12,{time:A="UnTracked"}=p[0]||{},A)}),Oe("esc","itemdetail",p=>{p.preventDefault(),w()}),Oe.setScope("itemdetail"),rt(()=>Oe.deleteScope("itemdetail","inventory")),n.$$set=p=>{"itemID"in p&&t(18,o=p.itemID),"useOutfit"in p&&t(17,i=p.useOutfit),"outfitName"in p&&t(0,r=p.outfitName),"custom"in p&&t(19,a=p.custom),"rarity"in p&&t(2,f=p.rarity),"type"in p&&t(3,c=p.type),"name"in p&&t(4,u=p.name),"localName"in p&&t(5,v=p.localName),"vision"in p&&t(6,I=p.vision),"weaponType"in p&&t(7,y=p.weaponType),"qty"in p&&t(8,k=p.qty),"isOwned"in p&&t(9,g=p.isOwned),"images"in p&&t(20,h=p.images),"offset"in p&&t(1,T=p.offset)},[r,T,f,c,u,v,I,y,k,g,L,q,A,s,w,_,b,i,o,a,h]}class Tl extends he{constructor(e){super(),_e(this,e,Dl,Ol,ue,{itemID:18,useOutfit:17,outfitName:0,custom:19,rarity:2,type:3,name:4,localName:5,vision:6,weaponType:7,qty:8,isOwned:9,images:20,offset:1})}}function st(n){let e,t;const l=[n[4]];let s={};for(let o=0;o<l.length;o+=1)s=It(s,l[o]);return e=new Tl({props:s}),{c(){Q(e.$$.fragment)},l(o){J(e.$$.fragment,o)},m(o,i){X(e,o,i),t=!0},p(o,i){const r=i&16?Et(l,[Nt(o[4])]):{};e.$set(r)},i(o){t||(z(e.$$.fragment,o),t=!0)},o(o){S(e.$$.fragment,o),t=!1},d(o){Z(e,o)}}}function Ll(n){let e,t,l,s,o,i,r,a,f,c,u,v,I,y,k,g,h,T,L,V,q;document.title=e=n[6]("inventory.text")+" | "+n[6]("title",{default:Ce});let w=n[5]&&st(n);return o=new $t({}),a=new tl({props:{activeItem:n[0]}}),I=new sl({props:{activeItem:n[0]}}),h=new wl({props:{loaded:n[2]}}),L=new hl({props:{activeItem:n[0]}}),{c(){t=C(),w&&w.c(),l=C(),s=N("section"),Q(o.$$.fragment),i=C(),r=N("div"),Q(a.$$.fragment),u=C(),v=N("div"),Q(I.$$.fragment),y=C(),k=N("div"),g=N("div"),Q(h.$$.fragment),T=C(),Q(L.$$.fragment),this.h()},l(_){kt('[data-svelte="svelte-jona7c"]',document.head).forEach(m),t=M(_),w&&w.l(_),l=M(_),s=O(_,"SECTION",{id:!0,class:!0});var A=D(s);J(o.$$.fragment,A),i=M(A),r=O(A,"DIV",{class:!0});var p=D(r);J(a.$$.fragment,p),p.forEach(m),u=M(A),v=O(A,"DIV",{class:!0});var H=D(v);J(I.$$.fragment,H),y=M(H),k=O(H,"DIV",{class:!0});var P=D(k);g=O(P,"DIV",{class:!0,style:!0});var F=D(g);J(h.$$.fragment,F),F.forEach(m),T=M(P),J(L.$$.fragment,P),P.forEach(m),H.forEach(m),A.forEach(m),this.h()},h(){E(r,"class","header svelte-1qdldct"),re(()=>n[9].call(r)),E(g,"class","container svelte-1qdldct"),$(g,"--headerHeight",n[7]-n[1]+"px"),E(k,"class","body-content svelte-1qdldct"),E(v,"class","body svelte-1qdldct"),E(s,"id","inventory"),E(s,"class","svelte-1qdldct")},m(_,b){B(_,t,b),w&&w.m(_,b),B(_,l,b),B(_,s,b),X(o,s,null),d(s,i),d(s,r),X(a,r,null),f=it(r,n[9].bind(r)),d(s,u),d(s,v),X(I,v,null),d(v,y),d(v,k),d(k,g),X(h,g,null),n[10](g),d(k,T),X(L,k,null),q=!0},p(_,[b]){(!q||b&64)&&e!==(e=_[6]("inventory.text")+" | "+_[6]("title",{default:Ce}))&&(document.title=e),_[5]?w?(w.p(_,b),b&32&&z(w,1)):(w=st(_),w.c(),z(w,1),w.m(l.parentNode,l)):w&&(ne(),S(w,1,1,()=>{w=null}),se());const A={};b&1&&(A.activeItem=_[0]),a.$set(A);const p={};b&1&&(p.activeItem=_[0]),I.$set(p);const H={};b&4&&(H.loaded=_[2]),h.$set(H),(!q||b&130)&&$(g,"--headerHeight",_[7]-_[1]+"px");const P={};b&1&&(P.activeItem=_[0]),L.$set(P)},i(_){q||(z(w),z(o.$$.fragment,_),z(a.$$.fragment,_),c||re(()=>{c=ye(r,ft,{y:-20}),c.start()}),z(I.$$.fragment,_),z(h.$$.fragment,_),z(L.$$.fragment,_),V||re(()=>{V=ye(k,ce,{duration:400}),V.start()}),q=!0)},o(_){S(w),S(o.$$.fragment,_),S(a.$$.fragment,_),S(I.$$.fragment,_),S(h.$$.fragment,_),S(L.$$.fragment,_),q=!1},d(_){_&&m(t),w&&w.d(_),_&&m(l),_&&m(s),Z(o),Z(a),f(),Z(I),Z(h),n[10](null),Z(L)}}}function zl(n,e,t){let l,s,o;Y(n,ve,L=>t(6,s=L)),Y(n,ut,L=>t(7,o=L));let i=0,r=De.get("inventoryTab")||"character",a=!1;const f=Ve([]);Y(n,f,L=>t(11,l=L));const c=Ve([]);fe("loaded",()=>t(2,a=!0)),fe("itemList",f),fe("loadedList",c),fe("showItem",L=>{r!==L&&(me("shopnav"),t(0,r=L))});let v;ze(()=>{At(v,{sizeAutoCapable:!1,className:"os-theme-light"})});let I={},y=!1;fe("showDetail",L=>{me("collectionitem");const V=l.find(({itemID:q})=>L===q);t(4,I=V),t(5,y=!0)}),fe("closeDetail",()=>{me("close"),t(5,y=!1)});function h(){i=this.clientHeight,t(1,i)}function T(L){Ot[L?"unshift":"push"](()=>{v=L,t(3,v)})}return n.$$.update=()=>{n.$$.dirty&1&&De.set("inventoryTab",r)},[r,i,a,v,I,y,s,o,f,h,T]}class jl extends he{constructor(e){super(),_e(this,e,zl,Ll,ue,{})}}export{jl as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-ea7fdfd5.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-ea7fdfd5.js
deleted file mode 100644
index 7fdf6b81..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/index-ea7fdfd5.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import{S as De,i as $e,s as Pe,a as V,e as le,c as D,b as w,A as de,h as c,E as re,o as Js,k as d,l as m,m as g,n as v,p as ce,Y as Se,g as Re,t as ee,d as He,f as Q,F as Le,R as Ks,q as R,r as H,J as Nt,G as _,a5 as ka,H as Ve,u as j,T as Qs,U as Xs,V as Zs,L as st,C as Jt,N as ie,a6 as me,a9 as We,M as xs,aa as je,a2 as Vt,ab as ot,D as ct,v as ue,w as _e,x as he,y as ve,j as Ea,a1 as ea,O as wa,P as qe,K as ya}from"./index-c0d078cd.js";import{h as ta,l as Ft,g as al,r as Ia,o as Na,f as Dt,b as Va}from"./index-123e2351.js";import{Y as Te,o as Da}from"./runtime.esm-4bf604c8.js";import{O as la,I as sa,h as $a}from"./WishResult-901333c5.js";import{M as Pa,b as Ta,i as Sa,a as ft,q as Bt,o as Kt,I as Aa,x as aa,G as ra,s as La,e as Ba}from"./app-stores-358281e6.js";import{c as zl}from"./api-cookie-d587b0da.js";import{p as Lt}from"./audio-460a91c6.js";import{h as at,g as Fe,e as na,M as Ca,p as za,u as Ra}from"./_page-87ee6ee5.js";import{r as ia,g as Ha,h as Ma,u as Rl,q as rl,j as Oa}from"./i18n-ec7c8da1.js";import{A as Yt}from"./env-f184adc0.js";import{l as ut}from"./lazyload-05dfa468.js";/* empty css                                            */import{w as Hl}from"./index-0189b6d0.js";import{H as oa}from"./custom-banner-3b9921d3.js";import{C as Ga}from"./CheckBox-828e98c0.js";import{P as ca}from"./_pagination-cd90c7ad.js";const Ml=!1;function Ol(a){let e,l,t=a[0]==="banner"&&a[6]&&Gl(a),s=a[1]&&!a[0]&&Ul(a);return{c(){t&&t.c(),e=V(),s&&s.c(),l=le()},l(n){t&&t.l(n),e=D(n),s&&s.l(n),l=le()},m(n,r){t&&t.m(n,r),w(n,e,r),s&&s.m(n,r),w(n,l,r)},p(n,r){n[0]==="banner"&&n[6]?t?t.p(n,r):(t=Gl(n),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null),n[1]&&!n[0]?s?s.p(n,r):(s=Ul(n),s.c(),s.m(l.parentNode,l)):s&&(s.d(1),s=null)},d(n){t&&t.d(n),n&&c(e),s&&s.d(n),n&&c(l)}}}function Gl(a){let e,l;return{c(){e=d("ins"),this.h()},l(t){e=m(t,"INS",{"data-ad-slot":!0,class:!0,style:!0,"data-ad-client":!0,"data-ad-format":!0,"data-full-width-responsive":!0}),g(e).forEach(c),this.h()},h(){v(e,"data-ad-slot",l=a[7][a[2]]),v(e,"class","adsbygoogle svelte-sv8va"),ce(e,"display","block"),v(e,"data-ad-client","ca-pub-1874822310102113"),v(e,"data-ad-format","auto"),v(e,"data-full-width-responsive","true")},m(t,s){w(t,e,s)},p(t,s){s&4&&l!==(l=t[7][t[2]])&&v(e,"data-ad-slot",l)},d(t){t&&c(e)}}}function Ul(a){let e,l,t,s,n,r=!(a[4]&&a[5])&&ql(),o=!a[5]&&Wl();return{c(){e=d("script"),t=V(),r&&r.c(),s=V(),o&&o.c(),n=le(),this.h()},l(i){e=m(i,"SCRIPT",{src:!0,crossorigin:!0});var f=g(e);f.forEach(c),t=D(i),r&&r.l(i),s=D(i),o&&o.l(i),n=le(),this.h()},h(){e.async=!0,Se(e.src,l="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1874822310102113")||v(e,"src",l),v(e,"crossorigin","anonymous")},m(i,f){w(i,e,f),w(i,t,f),r&&r.m(i,f),w(i,s,f),o&&o.m(i,f),w(i,n,f)},p(i,f){i[4]&&i[5]?r&&(r.d(1),r=null):r||(r=ql(),r.c(),r.m(s.parentNode,s)),i[5]?o&&(o.d(1),o=null):o?o.p(i,f):(o=Wl(),o.c(),o.m(n.parentNode,n))},d(i){i&&c(e),i&&c(t),r&&r.d(i),i&&c(s),o&&o.d(i),i&&c(n)}}}function ql(a){let e,l;return{c(){e=d("script"),this.h()},l(t){e=m(t,"SCRIPT",{"data-cfasync":!0,type:!0,"data-adel":!0,src:!0,czid:!0});var s=g(e);s.forEach(c),this.h()},h(){v(e,"data-cfasync","false"),v(e,"type","text/javascript"),v(e,"data-adel","atag"),Se(e.src,l="//acacdn.com/script/atg.js")||v(e,"src",l),v(e,"czid","v1xd6wvvpe")},m(t,s){w(t,e,s)},d(t){t&&c(e)}}}function Wl(a){let e=ia(1,2)===1,l,t,s,n=e&&Ua();return{c(){n&&n.c(),l=V(),t=d("script"),this.h()},l(r){n&&n.l(r),l=D(r),t=m(r,"SCRIPT",{type:!0,src:!0});var o=g(t);o.forEach(c),this.h()},h(){v(t,"type","text/javascript"),Se(t.src,s="//pl17419889.profitablecpmgate.com/fb/35/45/fb3545e433a3f40f53c83f80f24037ec.js")||v(t,"src",s)},m(r,o){n&&n.m(r,o),w(r,l,o),w(r,t,o)},p:de,d(r){n&&n.d(r),r&&c(l),r&&c(t)}}}function Ua(a){let e,l;return{c(){e=d("script"),this.h()},l(t){e=m(t,"SCRIPT",{type:!0,src:!0});var s=g(e);s.forEach(c),this.h()},h(){v(e,"type","text/javascript"),Se(e.src,l="//pl17416355.profitablecpmgate.com/3e/70/98/3e7098724a8a6321d737e1bd39d9ffed.js")||v(e,"src",l)},m(t,s){w(t,e,s)},d(t){t&&c(e)}}}function qa(a){let e,l,t=a[3]&&!Ml&&Ol(a);return{c(){e=V(),t&&t.c(),l=le()},l(s){e=D(s),t&&t.l(s),l=le()},m(s,n){w(s,e,n),t&&t.m(s,n),w(s,l,n)},p(s,[n]){s[3]&&!Ml?t?t.p(s,n):(t=Ol(s),t.c(),t.m(l.parentNode,l)):t&&(t.d(1),t=null)},i:de,o:de,d(s){s&&c(e),t&&t.d(s),s&&c(l)}}}function Wa(a,e,l){let t,s,n;re(a,Pa,h=>l(3,t=h)),re(a,Ta,h=>l(4,s=h)),re(a,Sa,h=>l(5,n=h));let{type:r=""}=e,{head:o=!1}=e,{size:i="wide"}=e;const f=ia(1,2)===1,u={square:6247038092,wide:6827309798};return Js(()=>{if(!(r!=="banner"||o||r==="banner"&&!f))try{(window.adsbygoogle=window.adsbygoogle||[]).push({})}catch(h){console.error(h)}}),a.$$set=h=>{"type"in h&&l(0,r=h.type),"head"in h&&l(1,o=h.head),"size"in h&&l(2,i=h.size)},[r,o,i,t,s,n,f,u]}class fa extends De{constructor(e){super(),$e(this,e,Wa,qa,Pe,{type:0,head:1,size:2})}}function ja(a){let e,l,t=a[2]("history.olderLayout")+"",s,n,r,o,i,f,u,h,b,y,E,k;const I=a[8].default,$=Ks(I,a,a[7],null);return{c(){e=d("div"),l=d("button"),s=R(t),n=V(),r=d("div"),o=d("div"),i=d("button"),f=V(),u=d("div"),$&&$.c(),this.h()},l(A){e=m(A,"DIV",{class:!0});var T=g(e);l=m(T,"BUTTON",{class:!0});var S=g(l);s=H(S,t),S.forEach(c),n=D(T),r=m(T,"DIV",{class:!0});var C=g(r);o=m(C,"DIV",{class:!0,style:!0});var p=g(o);i=m(p,"BUTTON",{class:!0}),g(i).forEach(c),f=D(p),u=m(p,"DIV",{class:!0});var B=g(u);$&&$.l(B),B.forEach(c),p.forEach(c),C.forEach(c),T.forEach(c),this.h()},h(){v(l,"class","old svelte-qxewu4"),v(i,"class","tutup svelte-qxewu4"),v(u,"class","book-content svelte-qxewu4"),v(o,"class","book svelte-qxewu4"),ce(o,"--content-width",a[1]+"px"),ce(o,"--bg","url("+a[3]["book.webp"]+")"),Nt(()=>a[10].call(o)),v(r,"class","wrapper svelte-qxewu4"),v(e,"class","content-container svelte-qxewu4")},m(A,T){w(A,e,T),_(e,l),_(l,s),_(e,n),_(e,r),_(r,o),_(o,i),_(o,f),_(o,u),$&&$.m(u,null),h=ka(o,a[10].bind(o)),y=!0,E||(k=[Ve(l,"click",a[9]),Ve(i,"click",a[4])],E=!0)},p(A,T){a=A,(!y||T&4)&&t!==(t=a[2]("history.olderLayout")+"")&&j(s,t),$&&$.p&&(!y||T&128)&&Qs($,I,a,a[7],y?Zs(I,a[7],T,null):Xs(a[7]),null),(!y||T&2)&&ce(o,"--content-width",a[1]+"px"),(!y||T&8)&&ce(o,"--bg","url("+a[3]["book.webp"]+")")},i(A){y||(Q($,A),Nt(()=>{b||(b=st(e,a[6],{y:25,tpl:a[0]},!0)),b.run(1)}),y=!0)},o(A){ee($,A),b||(b=st(e,a[6],{y:25,tpl:a[0]},!1)),b.run(0),y=!1},d(A){A&&c(e),$&&$.d(A),h(),A&&b&&b.end(),E=!1,Jt(k)}}}function Fa(a){let e;const l=a[8].default,t=Ks(l,a,a[7],null);return{c(){t&&t.c()},l(s){t&&t.l(s)},m(s,n){t&&t.m(s,n),e=!0},p(s,n){t&&t.p&&(!e||n&128)&&Qs(t,l,s,s[7],e?Zs(l,s[7],n,null):Xs(s[7]),null)},i(s){e||(Q(t,s),e=!0)},o(s){ee(t,s),e=!1},d(s){t&&t.d(s)}}}function Ya(a){let e,l,t,s;const n=[Fa,ja],r=[];function o(i,f){return i[0]!=="v2"?0:1}return e=o(a),l=r[e]=n[e](a),{c(){l.c(),t=le()},l(i){l.l(i),t=le()},m(i,f){r[e].m(i,f),w(i,t,f),s=!0},p(i,[f]){let u=e;e=o(i),e===u?r[e].p(i,f):(Re(),ee(r[u],1,1,()=>{r[u]=null}),He(),l=r[e],l?l.p(i,f):(l=r[e]=n[e](i),l.c()),Q(l,1),l.m(t.parentNode,t))},i(i){s||(Q(l),s=!0)},o(i){ee(l),s=!1},d(i){r[e].d(i),i&&c(t)}}}function Ja(a,e,l){let t,s;re(a,Te,E=>l(2,t=E)),re(a,ft,E=>l(3,s=E));let{$$slots:n={},$$scope:r}=e,{tplVersion:o}=e,i;const f=Le("close-detail"),u=Le("detail-tpl"),h=(E,k)=>{if(k.tpl==="v2")return ta(E,k)},b=()=>u("v1");function y(){i=this.clientWidth,l(1,i)}return a.$$set=E=>{"tplVersion"in E&&l(0,o=E.tplVersion),"$$scope"in E&&l(7,r=E.$$scope)},[o,i,t,s,f,u,h,r,n,b,y]}class Ka extends De{constructor(e){super(),$e(this,e,Ja,Ya,Pe,{tplVersion:0})}}function jl(a,e,l){const t=a.slice();return t[10]=e[l].name,t[11]=e[l].type,t}function Qa(a,e,l){const t=a.slice();return t[14]=e[l],t[16]=l,t}function Fl(a,e,l){const t=a.slice();return t[10]=e[l].name,t[11]=e[l].type,t[17]=e[l].rateup,t}function Xa(a,e,l){const t=a.slice();return t[20]=e[l],t[16]=l,t}function Yl(a,e,l){const t=a.slice();return t[10]=e[l].name,t[11]=e[l].type,t[17]=e[l].rateup,t}function Za(a,e,l){const t=a.slice();return t[16]=e[l],t}function xa(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-4nnp0e")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function er(a){let e,l=(a[11]==="weapon"?a[7](a[10]):a[7](`${a[10]}.name`))+"",t,s,n,r=a[17]&&Jl();return{c(){e=d("div"),t=R(l),s=V(),r&&r.c(),n=V(),this.h()},l(o){e=m(o,"DIV",{class:!0});var i=g(e);t=H(i,l),s=D(i),r&&r.l(i),n=D(i),i.forEach(c),this.h()},h(){v(e,"class","cell svelte-4nnp0e")},m(o,i){w(o,e,i),_(e,t),_(e,s),r&&r.m(e,null),_(e,n)},p(o,i){i&129&&l!==(l=(o[11]==="weapon"?o[7](o[10]):o[7](`${o[10]}.name`))+"")&&j(t,l),o[17]?r||(r=Jl(),r.c(),r.m(e,n)):r&&(r.d(1),r=null)},d(o){o&&c(e),r&&r.d()}}}function tr(a){let e,l=a[10]+"",t,s,n,r;return{c(){e=d("div"),t=R(l),s=V(),n=d("i"),r=V(),this.h()},l(o){e=m(o,"DIV",{class:!0});var i=g(e);t=H(i,l),s=D(i),n=m(i,"I",{class:!0}),g(n).forEach(c),r=D(i),i.forEach(c),this.h()},h(){v(n,"class","gi-arrow-up svelte-4nnp0e"),v(e,"class","cell svelte-4nnp0e")},m(o,i){w(o,e,i),_(e,t),_(e,s),_(e,n),_(e,r)},p(o,i){i&1&&l!==(l=o[10]+"")&&j(t,l)},d(o){o&&c(e)}}}function Jl(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-arrow-up svelte-4nnp0e")},m(l,t){w(l,e,t)},d(l){l&&c(e)}}}function Kl(a){let e,l=a[7](a[11]||"character")+"",t,s,n;function r(f,u){return f[8]&&f[17]?tr:er}let o=r(a),i=o(a);return{c(){e=d("div"),t=R(l),s=V(),i.c(),n=le(),this.h()},l(f){e=m(f,"DIV",{class:!0});var u=g(e);t=H(u,l),u.forEach(c),s=D(f),i.l(f),n=le(),this.h()},h(){v(e,"class","cell svelte-4nnp0e")},m(f,u){w(f,e,u),_(e,t),w(f,s,u),i.m(f,u),w(f,n,u)},p(f,u){u&129&&l!==(l=f[7](f[11]||"character")+"")&&j(t,l),o===(o=r(f))&&i?i.p(f,u):(i.d(1),i=o(f),i&&(i.c(),i.m(n.parentNode,n)))},d(f){f&&c(e),f&&c(s),i.d(f),f&&c(n)}}}function lr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0,style:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-4nnp0e"),v(e,"style",a[16]>3?"color: transparent":"")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Ql(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-arrow-up svelte-4nnp0e")},m(l,t){w(l,e,t)},d(l){l&&c(e)}}}function Xl(a){let e,l=a[7](a[11])+"",t,s,n,r=(a[11]==="weapon"?a[7](a[10]):a[7](`${a[10]}.name`))+"",o,i,f,u=a[17]&&Ql();return{c(){e=d("div"),t=R(l),s=V(),n=d("div"),o=R(r),i=V(),u&&u.c(),f=V(),this.h()},l(h){e=m(h,"DIV",{class:!0});var b=g(e);t=H(b,l),b.forEach(c),s=D(h),n=m(h,"DIV",{class:!0});var y=g(n);o=H(y,r),i=D(y),u&&u.l(y),f=D(y),y.forEach(c),this.h()},h(){v(e,"class","cell svelte-4nnp0e"),v(n,"class","cell svelte-4nnp0e")},m(h,b){w(h,e,b),_(e,t),w(h,s,b),w(h,n,b),_(n,o),_(n,i),u&&u.m(n,null),_(n,f)},p(h,b){b&130&&l!==(l=h[7](h[11])+"")&&j(t,l),b&130&&r!==(r=(h[11]==="weapon"?h[7](h[10]):h[7](`${h[10]}.name`))+"")&&j(o,r),h[17]?u||(u=Ql(),u.c(),u.m(n,f)):u&&(u.d(1),u=null)},d(h){h&&c(e),h&&c(s),h&&c(n),u&&u.d()}}}function sr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0,style:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-4nnp0e"),v(e,"style",a[16]>2?"color: transparent":"")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Zl(a){let e,l=a[7](a[11])+"",t,s,n,r=(a[11]==="weapon"?a[7](a[10]):a[7](`${a[10]}.name`))+"",o,i;return{c(){e=d("div"),t=R(l),s=V(),n=d("div"),o=R(r),i=V(),this.h()},l(f){e=m(f,"DIV",{class:!0});var u=g(e);t=H(u,l),u.forEach(c),s=D(f),n=m(f,"DIV",{class:!0});var h=g(n);o=H(h,r),i=D(h),h.forEach(c),this.h()},h(){v(e,"class","cell svelte-4nnp0e"),v(n,"class","cell svelte-4nnp0e")},m(f,u){w(f,e,u),_(e,t),w(f,s,u),w(f,n,u),_(n,o),_(n,i)},p(f,u){u&132&&l!==(l=f[7](f[11])+"")&&j(t,l),u&132&&r!==(r=(f[11]==="weapon"?f[7](f[10]):f[7](`${f[10]}.name`))+"")&&j(o,r)},d(f){f&&c(e),f&&c(s),f&&c(n)}}}function ar(a){let e,l,t=a[7]("details.itemWishFor")+"",s,n,r,o,i,f,u=a[7]("details.probInfo",{values:a[4]})+"",h,b,y,E,k,I,$=a[7]("details.itemType")+"",A,T,S,C=a[7]("details.itemName")+"",p,B,N,L=a[7]("details.itemType")+"",U,q,M,F=a[7]("details.itemName")+"",se,Z,x,te,K,z,O,Y,P,X=a[7]("details.probInfo",{values:a[5]})+"",pe,fe,Ee,be,ge,G,oe=a[7]("details.itemType")+"",ae,Ce,Me,Ye=a[7]("details.itemName")+"",rt,ze,Oe,Je=a[7]("details.itemType")+"",Ge,_t,Ue,we=a[7]("details.itemName")+"",Ct,Qt,ht,nt,Xt,Ke,vt,Zt,pt,$t=a[7]("details.probInfo",{values:a[6]})+"",zt,xt,dt,Qe,Be,mt,Pt=a[7]("details.itemType")+"",Rt,el,gt,Tt=a[7]("details.itemName")+"",Ht,tl,bt,St=a[7]("details.itemType")+"",Mt,ll,kt,At=a[7]("details.itemName")+"",Ot,sl,Et,it,nl=Array(5),Xe=[];for(let W=0;W<nl.length;W+=1)Xe[W]=xa(Za(a,nl,W));let wt=a[0],ye=[];for(let W=0;W<wt.length;W+=1)ye[W]=Kl(Yl(a,wt,W));let il=Array(5),Ze=[];for(let W=0;W<il.length;W+=1)Ze[W]=lr(Xa(a,il,W));let yt=a[1],Ie=[];for(let W=0;W<yt.length;W+=1)Ie[W]=Xl(Fl(a,yt,W));let ol=Array(5),xe=[];for(let W=0;W<ol.length;W+=1)xe[W]=sr(Qa(a,ol,W));let It=a[2],Ne=[];for(let W=0;W<It.length;W+=1)Ne[W]=Zl(jl(a,It,W));return{c(){e=d("div"),l=d("h4"),s=R(t),n=V(),r=d("h3"),o=d("div");for(let W=0;W<Xe.length;W+=1)Xe[W].c();i=V(),f=d("span"),h=R(u),b=V(),y=d("div"),E=d("div"),k=d("div"),I=d("div"),A=R($),T=V(),S=d("div"),p=R(C),B=V(),N=d("div"),U=R(L),q=V(),M=d("div"),se=R(F),Z=V(),x=d("div"),te=d("div");for(let W=0;W<ye.length;W+=1)ye[W].c();K=V(),z=d("h3"),O=d("div");for(let W=0;W<Ze.length;W+=1)Ze[W].c();Y=V(),P=d("span"),pe=R(X),fe=V(),Ee=d("div"),be=d("div"),ge=d("div"),G=d("div"),ae=R(oe),Ce=V(),Me=d("div"),rt=R(Ye),ze=V(),Oe=d("div"),Ge=R(Je),_t=V(),Ue=d("div"),Ct=R(we),Qt=V(),ht=d("div"),nt=d("div");for(let W=0;W<Ie.length;W+=1)Ie[W].c();Xt=V(),Ke=d("h3"),vt=d("div");for(let W=0;W<xe.length;W+=1)xe[W].c();Zt=V(),pt=d("span"),zt=R($t),xt=V(),dt=d("div"),Qe=d("div"),Be=d("div"),mt=d("div"),Rt=R(Pt),el=V(),gt=d("div"),Ht=R(Tt),tl=V(),bt=d("div"),Mt=R(St),ll=V(),kt=d("div"),Ot=R(At),sl=V(),Et=d("div"),it=d("div");for(let W=0;W<Ne.length;W+=1)Ne[W].c();this.h()},l(W){e=m(W,"DIV",{class:!0});var ne=g(e);l=m(ne,"H4",{class:!0});var J=g(l);s=H(J,t),J.forEach(c),n=D(ne),r=m(ne,"H3",{class:!0});var Ae=g(r);o=m(Ae,"DIV",{class:!0});var cl=g(o);for(let ke=0;ke<Xe.length;ke+=1)Xe[ke].l(cl);cl.forEach(c),i=D(Ae),f=m(Ae,"SPAN",{class:!0});var fl=g(f);h=H(fl,u),fl.forEach(c),Ae.forEach(c),b=D(ne),y=m(ne,"DIV",{class:!0});var ul=g(y);E=m(ul,"DIV",{class:!0});var Gt=g(E);k=m(Gt,"DIV",{class:!0});var et=g(k);I=m(et,"DIV",{class:!0});var _l=g(I);A=H(_l,$),_l.forEach(c),T=D(et),S=m(et,"DIV",{class:!0});var hl=g(S);p=H(hl,C),hl.forEach(c),B=D(et),N=m(et,"DIV",{class:!0});var vl=g(N);U=H(vl,L),vl.forEach(c),q=D(et),M=m(et,"DIV",{class:!0});var pl=g(M);se=H(pl,F),pl.forEach(c),et.forEach(c),Z=D(Gt),x=m(Gt,"DIV",{class:!0});var dl=g(x);te=m(dl,"DIV",{class:!0});var ml=g(te);for(let ke=0;ke<ye.length;ke+=1)ye[ke].l(ml);ml.forEach(c),dl.forEach(c),Gt.forEach(c),ul.forEach(c),K=D(ne),z=m(ne,"H3",{class:!0});var Ut=g(z);O=m(Ut,"DIV",{class:!0});var gl=g(O);for(let ke=0;ke<Ze.length;ke+=1)Ze[ke].l(gl);gl.forEach(c),Y=D(Ut),P=m(Ut,"SPAN",{class:!0});var bl=g(P);pe=H(bl,X),bl.forEach(c),Ut.forEach(c),fe=D(ne),Ee=m(ne,"DIV",{class:!0});var kl=g(Ee);be=m(kl,"DIV",{class:!0});var qt=g(be);ge=m(qt,"DIV",{class:!0});var tt=g(ge);G=m(tt,"DIV",{class:!0});var El=g(G);ae=H(El,oe),El.forEach(c),Ce=D(tt),Me=m(tt,"DIV",{class:!0});var wl=g(Me);rt=H(wl,Ye),wl.forEach(c),ze=D(tt),Oe=m(tt,"DIV",{class:!0});var yl=g(Oe);Ge=H(yl,Je),yl.forEach(c),_t=D(tt),Ue=m(tt,"DIV",{class:!0});var Il=g(Ue);Ct=H(Il,we),Il.forEach(c),tt.forEach(c),Qt=D(qt),ht=m(qt,"DIV",{class:!0});var Nl=g(ht);nt=m(Nl,"DIV",{class:!0});var Vl=g(nt);for(let ke=0;ke<Ie.length;ke+=1)Ie[ke].l(Vl);Vl.forEach(c),Nl.forEach(c),qt.forEach(c),kl.forEach(c),Xt=D(ne),Ke=m(ne,"H3",{class:!0});var Wt=g(Ke);vt=m(Wt,"DIV",{class:!0});var Dl=g(vt);for(let ke=0;ke<xe.length;ke+=1)xe[ke].l(Dl);Dl.forEach(c),Zt=D(Wt),pt=m(Wt,"SPAN",{class:!0});var $l=g(pt);zt=H($l,$t),$l.forEach(c),Wt.forEach(c),xt=D(ne),dt=m(ne,"DIV",{class:!0});var Pl=g(dt);Qe=m(Pl,"DIV",{class:!0});var jt=g(Qe);Be=m(jt,"DIV",{class:!0});var lt=g(Be);mt=m(lt,"DIV",{class:!0});var Tl=g(mt);Rt=H(Tl,Pt),Tl.forEach(c),el=D(lt),gt=m(lt,"DIV",{class:!0});var Sl=g(gt);Ht=H(Sl,Tt),Sl.forEach(c),tl=D(lt),bt=m(lt,"DIV",{class:!0});var Al=g(bt);Mt=H(Al,St),Al.forEach(c),ll=D(lt),kt=m(lt,"DIV",{class:!0});var Ll=g(kt);Ot=H(Ll,At),Ll.forEach(c),lt.forEach(c),sl=D(jt),Et=m(jt,"DIV",{class:!0});var Bl=g(Et);it=m(Bl,"DIV",{class:!0});var Cl=g(it);for(let ke=0;ke<Ne.length;ke+=1)Ne[ke].l(Cl);Cl.forEach(c),Bl.forEach(c),jt.forEach(c),Pl.forEach(c),ne.forEach(c),this.h()},h(){v(l,"class","svelte-4nnp0e"),v(o,"class","star"),v(f,"class","svelte-4nnp0e"),v(r,"class","star5 svelte-4nnp0e"),v(I,"class","cell svelte-4nnp0e"),v(S,"class","cell svelte-4nnp0e"),v(N,"class","cell svelte-4nnp0e"),v(M,"class","cell svelte-4nnp0e"),v(k,"class","row head svelte-4nnp0e"),v(te,"class","row svelte-4nnp0e"),v(x,"class","body svelte-4nnp0e"),v(E,"class","svelte-4nnp0e"),v(y,"class","table svelte-4nnp0e"),v(O,"class","star"),v(P,"class","svelte-4nnp0e"),v(z,"class","star4 svelte-4nnp0e"),v(G,"class","cell svelte-4nnp0e"),v(Me,"class","cell svelte-4nnp0e"),v(Oe,"class","cell svelte-4nnp0e"),v(Ue,"class","cell svelte-4nnp0e"),v(ge,"class","row head svelte-4nnp0e"),v(nt,"class","row svelte-4nnp0e"),v(ht,"class","body svelte-4nnp0e"),v(be,"class","svelte-4nnp0e"),v(Ee,"class","table svelte-4nnp0e"),v(vt,"class","star"),v(pt,"class","svelte-4nnp0e"),v(Ke,"class","star3 svelte-4nnp0e"),v(mt,"class","cell svelte-4nnp0e"),v(gt,"class","cell svelte-4nnp0e"),v(bt,"class","cell svelte-4nnp0e"),v(kt,"class","cell svelte-4nnp0e"),v(Be,"class","row head svelte-4nnp0e"),v(it,"class","row svelte-4nnp0e"),v(Et,"class","body svelte-4nnp0e"),v(Qe,"class","svelte-4nnp0e"),v(dt,"class","table svelte-4nnp0e"),v(e,"class","list svelte-4nnp0e"),ie(e,"v2",a[3]==="v2")},m(W,ne){w(W,e,ne),_(e,l),_(l,s),_(e,n),_(e,r),_(r,o);for(let J=0;J<Xe.length;J+=1)Xe[J].m(o,null);_(r,i),_(r,f),_(f,h),_(e,b),_(e,y),_(y,E),_(E,k),_(k,I),_(I,A),_(k,T),_(k,S),_(S,p),_(k,B),_(k,N),_(N,U),_(k,q),_(k,M),_(M,se),_(E,Z),_(E,x),_(x,te);for(let J=0;J<ye.length;J+=1)ye[J].m(te,null);_(e,K),_(e,z),_(z,O);for(let J=0;J<Ze.length;J+=1)Ze[J].m(O,null);_(z,Y),_(z,P),_(P,pe),_(e,fe),_(e,Ee),_(Ee,be),_(be,ge),_(ge,G),_(G,ae),_(ge,Ce),_(ge,Me),_(Me,rt),_(ge,ze),_(ge,Oe),_(Oe,Ge),_(ge,_t),_(ge,Ue),_(Ue,Ct),_(be,Qt),_(be,ht),_(ht,nt);for(let J=0;J<Ie.length;J+=1)Ie[J].m(nt,null);_(e,Xt),_(e,Ke),_(Ke,vt);for(let J=0;J<xe.length;J+=1)xe[J].m(vt,null);_(Ke,Zt),_(Ke,pt),_(pt,zt),_(e,xt),_(e,dt),_(dt,Qe),_(Qe,Be),_(Be,mt),_(mt,Rt),_(Be,el),_(Be,gt),_(gt,Ht),_(Be,tl),_(Be,bt),_(bt,Mt),_(Be,ll),_(Be,kt),_(kt,Ot),_(Qe,sl),_(Qe,Et),_(Et,it);for(let J=0;J<Ne.length;J+=1)Ne[J].m(it,null)},p(W,[ne]){if(ne&128&&t!==(t=W[7]("details.itemWishFor")+"")&&j(s,t),ne&144&&u!==(u=W[7]("details.probInfo",{values:W[4]})+"")&&j(h,u),ne&128&&$!==($=W[7]("details.itemType")+"")&&j(A,$),ne&128&&C!==(C=W[7]("details.itemName")+"")&&j(p,C),ne&128&&L!==(L=W[7]("details.itemType")+"")&&j(U,L),ne&128&&F!==(F=W[7]("details.itemName")+"")&&j(se,F),ne&385){wt=W[0];let J;for(J=0;J<wt.length;J+=1){const Ae=Yl(W,wt,J);ye[J]?ye[J].p(Ae,ne):(ye[J]=Kl(Ae),ye[J].c(),ye[J].m(te,null))}for(;J<ye.length;J+=1)ye[J].d(1);ye.length=wt.length}if(ne&160&&X!==(X=W[7]("details.probInfo",{values:W[5]})+"")&&j(pe,X),ne&128&&oe!==(oe=W[7]("details.itemType")+"")&&j(ae,oe),ne&128&&Ye!==(Ye=W[7]("details.itemName")+"")&&j(rt,Ye),ne&128&&Je!==(Je=W[7]("details.itemType")+"")&&j(Ge,Je),ne&128&&we!==(we=W[7]("details.itemName")+"")&&j(Ct,we),ne&130){yt=W[1];let J;for(J=0;J<yt.length;J+=1){const Ae=Fl(W,yt,J);Ie[J]?Ie[J].p(Ae,ne):(Ie[J]=Xl(Ae),Ie[J].c(),Ie[J].m(nt,null))}for(;J<Ie.length;J+=1)Ie[J].d(1);Ie.length=yt.length}if(ne&192&&$t!==($t=W[7]("details.probInfo",{values:W[6]})+"")&&j(zt,$t),ne&128&&Pt!==(Pt=W[7]("details.itemType")+"")&&j(Rt,Pt),ne&128&&Tt!==(Tt=W[7]("details.itemName")+"")&&j(Ht,Tt),ne&128&&St!==(St=W[7]("details.itemType")+"")&&j(Mt,St),ne&128&&At!==(At=W[7]("details.itemName")+"")&&j(Ot,At),ne&132){It=W[2];let J;for(J=0;J<It.length;J+=1){const Ae=jl(W,It,J);Ne[J]?Ne[J].p(Ae,ne):(Ne[J]=Zl(Ae),Ne[J].c(),Ne[J].m(it,null))}for(;J<Ne.length;J+=1)Ne[J].d(1);Ne.length=It.length}ne&8&&ie(e,"v2",W[3]==="v2")},i:de,o:de,d(W){W&&c(e),me(Xe,W),me(ye,W),me(Ze,W),me(Ie,W),me(xe,W),me(Ne,W)}}}function rr(a,e,l){let t,s;re(a,Te,y=>l(7,t=y)),re(a,Bt,y=>l(8,s=y));let{drop5star:n}=e,{drop4star:r}=e,{drop3star:o}=e,{bannerType:i=""}=e,{tplVersion:f="v1"}=e,u,h,b;return i==="weapon-event"?(u={singlePercentage:"0.700%",avgPercentage:"1.850%",rarity:5},h={singlePercentage:"6.000%",avgPercentage:"14.500%",rarity:4},b={singlePercentage:"93.300%",avgPercentage:"83.650%",rarity:4}):(u={singlePercentage:"0.600%",avgPercentage:"1.600%",rarity:5},h={singlePercentage:"5.100%",avgPercentage:"13.000%",rarity:4},b={singlePercentage:"94.300%",avgPercentage:"85.400%",rarity:4}),a.$$set=y=>{"drop5star"in y&&l(0,n=y.drop5star),"drop4star"in y&&l(1,r=y.drop4star),"drop3star"in y&&l(2,o=y.drop3star),"bannerType"in y&&l(9,i=y.bannerType),"tplVersion"in y&&l(3,f=y.tplVersion)},[n,r,o,f,u,h,b,t,s,i]}class ua extends De{constructor(e){super(),$e(this,e,rr,ar,Pe,{drop5star:0,drop4star:1,drop3star:2,bannerType:9,tplVersion:3})}}function xl(a,e,l){const t=a.slice();return t[21]=e[l],t}function es(a,e,l){const t=a.slice();return t[21]=e[l],t}function ts(a,e,l){const t=a.slice();return t[21]=e[l],t}function ls(a,e,l){const t=a.slice();return t[21]=e[l],t}function nr(a){const e=a.slice(),l=e[5];return e[19]=l.name,e[20]=l.vision,e}function ss(a){let e,l,t=a[6]("details.wishDetails")+"",s,n,r;return{c(){e=d("h2"),l=d("span"),s=R(t),n=V(),r=d("span"),this.h()},l(o){e=m(o,"H2",{class:!0});var i=g(e);l=m(i,"SPAN",{});var f=g(l);s=H(f,t),f.forEach(c),n=D(i),r=m(i,"SPAN",{class:!0}),g(r).forEach(c),i.forEach(c),this.h()},h(){v(r,"class","line"),v(e,"class","svelte-1e5rxgv")},m(o,i){w(o,e,i),_(e,l),_(l,s),_(e,n),_(e,r)},p(o,i){i&64&&t!==(t=o[6]("details.wishDetails")+"")&&j(s,t)},d(o){o&&c(e)}}}function ir(a){let e,l=a[6]("details.permanent")+"",t;return{c(){e=d("h3"),t=R(l),this.h()},l(s){e=m(s,"H3",{class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){v(e,"class","svelte-1e5rxgv")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n&64&&l!==(l=s[6]("details.permanent")+"")&&j(t,l)},d(s){s&&c(e)}}}function or(a){let e,l=a[6]("details.limited")+"",t;return{c(){e=d("h3"),t=R(l),this.h()},l(s){e=m(s,"H3",{class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){v(e,"class","svelte-1e5rxgv")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n&64&&l!==(l=s[6]("details.limited")+"")&&j(t,l)},d(s){s&&c(e)}}}function cr(a){let e,l=a[6]("details.beginnerInfo")+"",t;return{c(){e=d("h3"),t=R(l),this.h()},l(s){e=m(s,"H3",{class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){v(e,"class","svelte-1e5rxgv")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n&64&&l!==(l=s[6]("details.beginnerInfo")+"")&&j(t,l)},d(s){s&&c(e)}}}function fr(a){let e,l=a[7]("details.weapons"),t=[];for(let s=0;s<l.length;s+=1)t[s]=rs(xl(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&5340){l=s[7]("details.weapons");let r;for(r=0;r<l.length;r+=1){const o=xl(s,l,r);t[r]?t[r].p(o,n):(t[r]=rs(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function ur(a){let e,l=a[7]("details.events"),t=[];for(let s=0;s<l.length;s+=1)t[s]=ns(es(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&2796){l=s[7]("details.events");let r;for(r=0;r<l.length;r+=1){const o=es(s,l,r);t[r]?t[r].p(o,n):(t[r]=ns(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function _r(a){let e,l=a[7]("details.standard"),t=[];for(let s=0;s<l.length;s+=1)t[s]=is(ts(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&196){l=s[7]("details.standard");let r;for(r=0;r<l.length;r+=1){const o=ts(s,l,r);t[r]?t[r].p(o,n):(t[r]=is(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function as(a){let e,l=a[7]("details.beginner"),t=[];for(let s=0;s<l.length;s+=1)t[s]=os(ls(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&8672){l=s[7]("details.beginner");let r;for(r=0;r<l.length;r+=1){const o=ls(s,l,r);t[r]?t[r].p(o,n):(t[r]=os(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function rs(a){let e,l,t=a[6](a[21],{values:{bannerName:at(a[2],"epitome"),featuredWeapon1:a[10](a[4][0]),featuredWeapon2:a[10](a[4][1]),rateupWeapons:a[12](a[3])}})+"",s;return{c(){e=d("p"),l=new We(!1),s=V(),this.h()},l(n){e=m(n,"P",{class:!0});var r=g(e);l=je(r,!1),s=D(r),r.forEach(c),this.h()},h(){l.a=s,v(e,"class","svelte-1e5rxgv")},m(n,r){w(n,e,r),l.m(t,e),_(e,s)},p(n,r){r&220&&t!==(t=n[6](n[21],{values:{bannerName:at(n[2],"epitome"),featuredWeapon1:n[10](n[4][0]),featuredWeapon2:n[10](n[4][1]),rateupWeapons:n[12](n[3])}})+"")&&l.p(t)},d(n){n&&c(e)}}}function ns(a){let e,l,t=a[6](a[21],{values:{bannerName:at(a[2],a[5].vision),featuredCharacter:a[9](a[5]),rateupCharacters:a[11](a[3])}})+"",s;return{c(){e=d("p"),l=new We(!1),s=V(),this.h()},l(n){e=m(n,"P",{class:!0});var r=g(e);l=je(r,!1),s=D(r),r.forEach(c),this.h()},h(){l.a=s,v(e,"class","svelte-1e5rxgv")},m(n,r){w(n,e,r),l.m(t,e),_(e,s)},p(n,r){r&236&&t!==(t=n[6](n[21],{values:{bannerName:at(n[2],n[5].vision),featuredCharacter:n[9](n[5]),rateupCharacters:n[11](n[3])}})+"")&&l.p(t)},d(n){n&&c(e)}}}function is(a){let e,l,t=a[6](a[21],{values:{bannerName:at(a[2],"standard")}})+"",s;return{c(){e=d("p"),l=new We(!1),s=V(),this.h()},l(n){e=m(n,"P",{class:!0});var r=g(e);l=je(r,!1),s=D(r),r.forEach(c),this.h()},h(){l.a=s,v(e,"class","svelte-1e5rxgv")},m(n,r){w(n,e,r),l.m(t,e),_(e,s)},p(n,r){r&196&&t!==(t=n[6](n[21],{values:{bannerName:at(n[2],"standard")}})+"")&&l.p(t)},d(n){n&&c(e)}}}function os(a){let e,l,t=a[6](a[21],{values:{character:`<span class="custom ${a[20]}-flat">
-              ${a[8](a[19],a[20])}
-            </span> `,...a[13]}})+"",s;return{c(){e=d("p"),l=new We(!1),s=V(),this.h()},l(n){e=m(n,"P",{class:!0});var r=g(e);l=je(r,!1),s=D(r),r.forEach(c),this.h()},h(){l.a=s,v(e,"class","svelte-1e5rxgv")},m(n,r){w(n,e,r),l.m(t,e),_(e,s)},p(n,r){r&224&&t!==(t=n[6](n[21],{values:{character:`<span class="custom ${n[20]}-flat">
-              ${n[8](n[19],n[20])}
-            </span> `,...n[13]}})+"")&&l.p(t)},d(n){n&&c(e)}}}function cs(a){let e,l=a[15]("fiveStar")+"",t;return{c(){e=new We(!1),t=le(),this.h()},l(s){e=je(s,!1),t=le(),this.h()},h(){e.a=t},m(s,n){e.m(l,s,n),w(s,t,n)},p:de,d(s){s&&c(t),s&&e.d()}}}function fs(a){let e,l=a[14](5)+"";return{c(){e=d("p"),this.h()},l(t){e=m(t,"P",{class:!0});var s=g(e);s.forEach(c),this.h()},h(){v(e,"class","svelte-1e5rxgv")},m(t,s){w(t,e,s),e.innerHTML=l},p:de,d(t){t&&c(e)}}}function us(a){let e,l=a[6]("details.alert",{values:{wishName:a[6](`wish.banner.${a[1]}`)}})+"",t;return{c(){e=d("p"),t=R(l),this.h()},l(s){e=m(s,"P",{class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){v(e,"class","svelte-1e5rxgv")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n&66&&l!==(l=s[6]("details.alert",{values:{wishName:s[6](`wish.banner.${s[1]}`)}})+"")&&j(t,l)},d(s){s&&c(e)}}}function hr(a){let e,l,t,s,n,r,o,i,f=a[1].match(/(weapon|standard)/),u,h,b=a[15]("fourStar")+"",y,E,k=a[15]("threeStar")+"",I,$,A=a[6]("details.duplicate.heading")+"",T,S,C,p=a[14](4)+"",B,N=a[1].match("event");document.title=e=`
-		`+a[2]+" | "+a[6]("title",{default:Yt})+`
-	`;let L=a[0]==="v2"&&ss(a);function U(O,Y){return Y&2&&(n=null),O[1]==="beginner"?cr:(n==null&&(n=!!O[1].match("event")),n?or:ir)}let q=U(a,-1),M=q(a);function F(O,Y){if(O[1]==="beginner")return as;if(O[1]==="standard")return _r;if(O[1]==="character-event")return ur;if(O[1]==="weapon-event")return fr}function se(O,Y){return Y===as?nr(O):O}let Z=F(a),x=Z&&Z(se(a,Z)),te=f&&cs(a),K=a[1]!=="weapon-event"&&fs(a),z=N&&us(a);return{c(){l=V(),t=d("div"),L&&L.c(),s=V(),M.c(),r=V(),x&&x.c(),o=V(),i=d("p"),te&&te.c(),u=V(),h=new We(!1),y=V(),E=new We(!1),I=V(),$=d("p"),T=V(),K&&K.c(),S=V(),C=d("p"),B=V(),z&&z.c(),this.h()},l(O){xs('[data-svelte="svelte-dkgjhw"]',document.head).forEach(c),l=D(O),t=m(O,"DIV",{class:!0});var P=g(t);L&&L.l(P),s=D(P),M.l(P),r=D(P),x&&x.l(P),o=D(P),i=m(P,"P",{class:!0});var X=g(i);te&&te.l(X),u=D(X),h=je(X,!1),y=D(X),E=je(X,!1),X.forEach(c),I=D(P),$=m(P,"P",{class:!0});var pe=g($);pe.forEach(c),T=D(P),K&&K.l(P),S=D(P),C=m(P,"P",{class:!0});var fe=g(C);fe.forEach(c),B=D(P),z&&z.l(P),P.forEach(c),this.h()},h(){h.a=y,E.a=null,v(i,"class","svelte-1e5rxgv"),v($,"class","svelte-1e5rxgv"),v(C,"class","svelte-1e5rxgv"),v(t,"class","description svelte-1e5rxgv"),ie(t,"v2",a[0]==="v2")},m(O,Y){w(O,l,Y),w(O,t,Y),L&&L.m(t,null),_(t,s),M.m(t,null),_(t,r),x&&x.m(t,null),_(t,o),_(t,i),te&&te.m(i,null),_(i,u),h.m(b,i),_(i,y),E.m(k,i),_(t,I),_(t,$),$.innerHTML=A,_(t,T),K&&K.m(t,null),_(t,S),_(t,C),C.innerHTML=p,_(t,B),z&&z.m(t,null)},p(O,[Y]){Y&68&&e!==(e=`
-		`+O[2]+" | "+O[6]("title",{default:Yt})+`
-	`)&&(document.title=e),O[0]==="v2"?L?L.p(O,Y):(L=ss(O),L.c(),L.m(t,s)):L&&(L.d(1),L=null),q===(q=U(O,Y))&&M?M.p(O,Y):(M.d(1),M=q(O),M&&(M.c(),M.m(t,r))),Z===(Z=F(O))&&x?x.p(se(O,Z),Y):(x&&x.d(1),x=Z&&Z(se(O,Z)),x&&(x.c(),x.m(t,o))),Y&2&&(f=O[1].match(/(weapon|standard)/)),f?te?te.p(O,Y):(te=cs(O),te.c(),te.m(i,u)):te&&(te.d(1),te=null),Y&64&&A!==(A=O[6]("details.duplicate.heading")+"")&&($.innerHTML=A),O[1]!=="weapon-event"?K?K.p(O,Y):(K=fs(O),K.c(),K.m(t,S)):K&&(K.d(1),K=null),Y&2&&(N=O[1].match("event")),N?z?z.p(O,Y):(z=us(O),z.c(),z.m(t,null)):z&&(z.d(1),z=null),Y&1&&ie(t,"v2",O[0]==="v2")},i:de,o:de,d(O){O&&c(l),O&&c(t),L&&L.d(),M.d(),x&&x.d(),te&&te.d(),K&&K.d(),z&&z.d()}}}function vr(a,e,l){let t,s,n,r;re(a,Te,p=>l(6,t=p)),re(a,Kt,p=>l(16,s=p)),re(a,Bt,p=>l(17,n=p)),re(a,Da,p=>l(7,r=p));let{tplVersion:o="v1"}=e,{bannerType:i}=e,{bannerName:f=""}=e,{rateup:u}=e,{weapons:h}=e,{character:b}=e;const y=(p,B)=>{const N=`(${t(B)})`;return`"${t(`${p}.title`)}" ${t(`${p}.name`)} ${t(N)}`},E=({name:p,vision:B})=>{if(!n)return`<span class="custom ${B}-flat">
-			"${t(`${p}.title`)}" ${t(`${p}.name`)} (${t(B)})
-		</span>`;const{charTitle:N}=s;return`<span class="custom ${B}-flat">
-			"${N}" ${p} (${t(B)})
-		</span>`},k=({name:p,type:B})=>`<span class="weapon"> ${t(p)} (${t(B)})</span>`,I=(p,B)=>B>p.length-2?"":B>p.length-3?"&":",",$=p=>p.map(({name:N,vision:L},U)=>`<span class="custom ${L}-flat"> ${y(N,L)}</span>
-			${I(u,U)}`).join(""),A=p=>p.map(({name:N,type:L},U)=>`<span class="stardust"> ${t(N)} (${t(L)})</span>
-			${I(u,U)} `).join(""),T={starglitter:`<span class="starglitter"> ${t("shop.item.starglitter")}</span>`,stardust:`<span class="stardust"> ${t("shop.item.stardust")}</span>`,stellaFortuna:`<span class="stardust"> ${t("wish.stellaFortuna")}</span>`},S=p=>t("details.duplicate.text",{values:{rarity:p,constBonus:p===5?"\xD710":"\xD72",fullConstBonus:p===5?"\xD725":"\xD75",...T}}),C=p=>t(`details.convertion.${p}`,{values:T});return a.$$set=p=>{"tplVersion"in p&&l(0,o=p.tplVersion),"bannerType"in p&&l(1,i=p.bannerType),"bannerName"in p&&l(2,f=p.bannerName),"rateup"in p&&l(3,u=p.rateup),"weapons"in p&&l(4,h=p.weapons),"character"in p&&l(5,b=p.character)},[o,i,f,u,h,b,t,r,y,E,k,$,A,T,S,C]}class _a extends De{constructor(e){super(),$e(this,e,vr,hr,Pe,{tplVersion:0,bannerType:1,bannerName:2,rateup:3,weapons:4,character:5})}}function _s(a,e,l){const t=a.slice();return t[10]=e[l].name,t[14]=e[l].type,t}function hs(a,e,l){const t=a.slice();return t[10]=e[l].name,t[11]=e[l].vision,t}function pr(a,e,l){const t=a.slice();return t[17]=e[l],t}function vs(a,e,l){const t=a.slice();return t[10]=e[l].name,t[14]=e[l].type,t}function dr(a){const e=a.slice(),l=e[3]||{};return e[20]=l.images!==void 0?l.images:{},e[8]=l.character!==void 0?l.character:"",e}function mr(a,e,l){const t=a.slice();return t[17]=e[l],t}function gr(a){let e,l,t=a[0]("details.increasedRate")+"",s,n,r,o,i,f,u,h,b=a[0]("details.percentageDrop",{values:{rarity:5,percentage:a[7]?"75.000%":"50.000%"}})+"",y,E,k,I,$,A,T,S,C,p,B,N=a[0]("details.percentageDrop",{values:{rarity:4,percentage:a[7]?"75.000%":"50.000%"}})+"",L,U,q,M=Array(5),F=[];for(let P=0;P<M.length;P+=1)F[P]=br(mr(a,M,P));function se(P,X){return P[5]==="character-event"?Er:kr}let x=se(a)(a),te=Array(4),K=[];for(let P=0;P<te.length;P+=1)K[P]=yr(pr(a,te,P));function z(P,X){return P[5]==="character-event"?Nr:Ir}let Y=z(a)(a);return{c(){e=d("h2"),l=d("span"),s=R(t),n=V(),r=d("span"),o=V(),i=d("h3"),f=d("div");for(let P=0;P<F.length;P+=1)F[P].c();u=V(),h=d("span"),y=R(b),E=V(),x.c(),k=V(),I=d("div"),$=V(),A=d("h3"),T=d("div");for(let P=0;P<K.length;P+=1)K[P].c();S=V(),C=d("i"),p=V(),B=d("span"),L=R(N),U=V(),Y.c(),q=le(),this.h()},l(P){e=m(P,"H2",{class:!0});var X=g(e);l=m(X,"SPAN",{class:!0});var pe=g(l);s=H(pe,t),pe.forEach(c),n=D(X),r=m(X,"SPAN",{class:!0}),g(r).forEach(c),X.forEach(c),o=D(P),i=m(P,"H3",{class:!0});var fe=g(i);f=m(fe,"DIV",{class:!0});var Ee=g(f);for(let ae=0;ae<F.length;ae+=1)F[ae].l(Ee);Ee.forEach(c),u=D(fe),h=m(fe,"SPAN",{class:!0});var be=g(h);y=H(be,b),be.forEach(c),fe.forEach(c),E=D(P),x.l(P),k=D(P),I=m(P,"DIV",{style:!0}),g(I).forEach(c),$=D(P),A=m(P,"H3",{class:!0});var ge=g(A);T=m(ge,"DIV",{class:!0});var G=g(T);for(let ae=0;ae<K.length;ae+=1)K[ae].l(G);G.forEach(c),S=D(ge),C=m(ge,"I",{class:!0,style:!0}),g(C).forEach(c),p=D(ge),B=m(ge,"SPAN",{class:!0});var oe=g(B);L=H(oe,N),oe.forEach(c),ge.forEach(c),U=D(P),Y.l(P),q=le(),this.h()},h(){v(l,"class","svelte-1imao0e"),v(r,"class","line svelte-1imao0e"),v(e,"class","svelte-1imao0e"),v(f,"class","star"),v(h,"class","svelte-1imao0e"),v(i,"class","star5 svelte-1imao0e"),ce(I,"margin-top","1rem"),v(T,"class","star"),v(C,"class","gi-star svelte-1imao0e"),ce(C,"color","transparent"),v(B,"class","svelte-1imao0e"),v(A,"class","star4 svelte-1imao0e")},m(P,X){w(P,e,X),_(e,l),_(l,s),_(e,n),_(e,r),w(P,o,X),w(P,i,X),_(i,f);for(let pe=0;pe<F.length;pe+=1)F[pe].m(f,null);_(i,u),_(i,h),_(h,y),w(P,E,X),x.m(P,X),w(P,k,X),w(P,I,X),w(P,$,X),w(P,A,X),_(A,T);for(let pe=0;pe<K.length;pe+=1)K[pe].m(T,null);_(A,S),_(A,C),_(A,p),_(A,B),_(B,L),w(P,U,X),Y.m(P,X),w(P,q,X)},p(P,X){X&1&&t!==(t=P[0]("details.increasedRate")+"")&&j(s,t),X&1&&b!==(b=P[0]("details.percentageDrop",{values:{rarity:5,percentage:P[7]?"75.000%":"50.000%"}})+"")&&j(y,b),x.p(P,X),X&1&&N!==(N=P[0]("details.percentageDrop",{values:{rarity:4,percentage:P[7]?"75.000%":"50.000%"}})+"")&&j(L,N),Y.p(P,X)},d(P){P&&c(e),P&&c(o),P&&c(i),me(F,P),P&&c(E),x.d(P),P&&c(k),P&&c(I),P&&c($),P&&c(A),me(K,P),P&&c(U),Y.d(P),P&&c(q)}}}function br(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-1imao0e")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function kr(a){let e,l=a[4],t=[];for(let s=0;s<l.length;s+=1)t[s]=ps(vs(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&19){l=s[4];let r;for(r=0;r<l.length;r+=1){const o=vs(s,l,r);t[r]?t[r].p(o,n):(t[r]=ps(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function Er(a){let e,l,t,s,n,r,o=a[0](`${a[8].name}.name`)+"",i,f,u;function h(k,I){return k[2]?ds:wr}function b(k,I){return I===ds?dr(k):k}let y=h(a),E=y(b(a,y));return{c(){e=d("div"),l=d("picture"),t=d("i"),s=V(),E.c(),n=V(),r=d("caption"),i=R(o),f=V(),u=d("i"),this.h()},l(k){e=m(k,"DIV",{class:!0});var I=g(e);l=m(I,"PICTURE",{style:!0,class:!0});var $=g(l);t=m($,"I",{class:!0}),g(t).forEach(c),s=D($),E.l($),$.forEach(c),n=D(I),r=m(I,"CAPTION",{class:!0});var A=g(r);i=H(A,o),A.forEach(c),f=D(I),u=m(I,"I",{class:!0}),g(u).forEach(c),I.forEach(c),this.h()},h(){v(t,"class","gi-"+a[8].vision+" "+a[8].vision+" icon-gradient filter-drop svelte-1imao0e"),ce(l,"background-image","url('"+a[1]["5star-bg.webp"]+"')"),v(l,"class","svelte-1imao0e"),v(r,"class","name svelte-1imao0e"),v(u,"class","gi-"+a[8].vision+" element svelte-1imao0e"),v(e,"class","character-card star5 svelte-1imao0e")},m(k,I){w(k,e,I),_(e,l),_(l,t),_(l,s),E.m(l,null),_(e,n),_(e,r),_(r,i),_(e,f),_(e,u)},p(k,I){y===(y=h(k))&&E?E.p(b(k,y),I):(E.d(1),E=y(b(k,y)),E&&(E.c(),E.m(l,null))),I&2&&ce(l,"background-image","url('"+k[1]["5star-bg.webp"]+"')"),I&1&&o!==(o=k[0](`${k[8].name}.name`)+"")&&j(i,o)},d(k){k&&c(e),E.d()}}}function ps(a){let e,l,t,s,n,r,o=a[0](a[10])+"",i,f;return{c(){e=d("div"),l=d("picture"),t=d("img"),n=V(),r=d("caption"),i=R(o),f=V(),this.h()},l(u){e=m(u,"DIV",{class:!0});var h=g(e);l=m(h,"PICTURE",{style:!0,class:!0});var b=g(l);t=m(b,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),b.forEach(c),n=D(h),r=m(h,"CAPTION",{class:!0});var y=g(r);i=H(y,o),y.forEach(c),f=D(h),h.forEach(c),this.h()},h(){Se(t.src,s=a[1][a[10]])||v(t,"src",s),v(t,"alt",Fe(a[10])),v(t,"class",Vt(a[14])+" svelte-1imao0e"),v(t,"crossorigin","anonymous"),ce(l,"background-image","url('"+a[1]["5star-bg.webp"]+"')"),v(l,"class","svelte-1imao0e"),v(r,"class","name svelte-1imao0e"),v(e,"class","character-card star5 weapons svelte-1imao0e")},m(u,h){w(u,e,h),_(e,l),_(l,t),_(e,n),_(e,r),_(r,i),_(e,f)},p(u,h){h&2&&!Se(t.src,s=u[1][u[10]])&&v(t,"src",s),h&2&&ce(l,"background-image","url('"+u[1]["5star-bg.webp"]+"')"),h&1&&o!==(o=u[0](u[10])+"")&&j(i,o)},d(u){u&&c(e)}}}function wr(a){let e,l,t,s;return{c(){e=d("img"),this.h()},l(n){e=m(n,"IMG",{alt:!0,crossorigin:!0,class:!0}),this.h()},h(){v(e,"alt",Fe(a[8].name)),v(e,"crossorigin","anonymous"),v(e,"class","svelte-1imao0e")},m(n,r){w(n,e,r),t||(s=ot(l=ut.call(null,e,a[1][`face/${a[8].name}`])),t=!0)},p(n,r){l&&ct(l.update)&&r&2&&l.update.call(null,n[1][`face/${n[8].name}`])},d(n){n&&c(e),t=!1,s()}}}function ds(a){let e,l,t,s,n;return{c(){e=d("img"),this.h()},l(r){e=m(r,"IMG",{alt:!0,crossorigin:!0,class:!0}),this.h()},h(){v(e,"alt",l=a[8]),v(e,"crossorigin","anonymous"),v(e,"class","svelte-1imao0e")},m(r,o){w(r,e,o),s||(n=ot(t=ut.call(null,e,a[20]?.faceURL)),s=!0)},p(r,o){a=r,o&8&&l!==(l=a[8])&&v(e,"alt",l),t&&ct(t.update)&&o&8&&t.update.call(null,a[20]?.faceURL)},d(r){r&&c(e),s=!1,n()}}}function yr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-1imao0e")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Ir(a){let e,l=a[6],t=[];for(let s=0;s<l.length;s+=1)t[s]=ms(_s(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&67){l=s[6];let r;for(r=0;r<l.length;r+=1){const o=_s(s,l,r);t[r]?t[r].p(o,n):(t[r]=ms(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function Nr(a){let e,l=a[6],t=[];for(let s=0;s<l.length;s+=1)t[s]=gs(hs(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&67){l=s[6];let r;for(r=0;r<l.length;r+=1){const o=hs(s,l,r);t[r]?t[r].p(o,n):(t[r]=gs(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function ms(a){let e,l,t,s,n,r,o=a[0](a[10])+"",i,f;return{c(){e=d("div"),l=d("picture"),t=d("img"),n=V(),r=d("caption"),i=R(o),f=V(),this.h()},l(u){e=m(u,"DIV",{class:!0});var h=g(e);l=m(h,"PICTURE",{style:!0,class:!0});var b=g(l);t=m(b,"IMG",{src:!0,alt:!0,class:!0,crossorigin:!0}),b.forEach(c),n=D(h),r=m(h,"CAPTION",{class:!0});var y=g(r);i=H(y,o),y.forEach(c),f=D(h),h.forEach(c),this.h()},h(){Se(t.src,s=a[1][a[10]])||v(t,"src",s),v(t,"alt",Fe(a[10])),v(t,"class",Vt(a[14])+" svelte-1imao0e"),v(t,"crossorigin","anonymous"),ce(l,"background-image","url('"+a[1]["4star-bg.webp"]+"')"),v(l,"class","svelte-1imao0e"),v(r,"class","name svelte-1imao0e"),v(e,"class","character-card star4 svelte-1imao0e")},m(u,h){w(u,e,h),_(e,l),_(l,t),_(e,n),_(e,r),_(r,i),_(e,f)},p(u,h){h&2&&!Se(t.src,s=u[1][u[10]])&&v(t,"src",s),h&2&&ce(l,"background-image","url('"+u[1]["4star-bg.webp"]+"')"),h&1&&o!==(o=u[0](u[10])+"")&&j(i,o)},d(u){u&&c(e)}}}function gs(a){let e,l,t,s,n,r,o,i,f=a[0](`${a[10]}.name`)+"",u,h,b,y;return{c(){e=d("div"),l=d("picture"),t=d("i"),s=V(),n=d("img"),o=V(),i=d("caption"),u=R(f),h=V(),b=d("i"),y=V(),this.h()},l(E){e=m(E,"DIV",{class:!0});var k=g(e);l=m(k,"PICTURE",{style:!0,class:!0});var I=g(l);t=m(I,"I",{class:!0}),g(t).forEach(c),s=D(I),n=m(I,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),I.forEach(c),o=D(k),i=m(k,"CAPTION",{class:!0});var $=g(i);u=H($,f),$.forEach(c),h=D(k),b=m(k,"I",{class:!0}),g(b).forEach(c),y=D(k),k.forEach(c),this.h()},h(){v(t,"class","gi-"+a[11]+" "+a[11]+" icon-gradient filter-drop svelte-1imao0e"),Se(n.src,r=a[1][`face/${a[10]}`])||v(n,"src",r),v(n,"alt",Fe(a[10])),v(n,"crossorigin","anonymous"),v(n,"class","svelte-1imao0e"),ce(l,"background-image","url('"+a[1]["4star-bg.webp"]+"')"),v(l,"class","svelte-1imao0e"),v(i,"class","name svelte-1imao0e"),v(b,"class","gi-"+a[11]+" element svelte-1imao0e"),v(e,"class","character-card star4 svelte-1imao0e")},m(E,k){w(E,e,k),_(e,l),_(l,t),_(l,s),_(l,n),_(e,o),_(e,i),_(i,u),_(e,h),_(e,b),_(e,y)},p(E,k){k&2&&!Se(n.src,r=E[1][`face/${E[10]}`])&&v(n,"src",r),k&2&&ce(l,"background-image","url('"+E[1]["4star-bg.webp"]+"')"),k&1&&f!==(f=E[0](`${E[10]}.name`)+"")&&j(u,f)},d(E){E&&c(e)}}}function Vr(a){let e=a[5].match("event"),l,t,s,n=a[0]("details.wishDetails")+"",r,o,i,f=e&&gr(a);return{c(){f&&f.c(),l=V(),t=d("h2"),s=d("span"),r=R(n),o=V(),i=d("span"),this.h()},l(u){f&&f.l(u),l=D(u),t=m(u,"H2",{class:!0});var h=g(t);s=m(h,"SPAN",{class:!0});var b=g(s);r=H(b,n),b.forEach(c),o=D(h),i=m(h,"SPAN",{class:!0}),g(i).forEach(c),h.forEach(c),this.h()},h(){v(s,"class","svelte-1imao0e"),v(i,"class","line svelte-1imao0e"),v(t,"class","svelte-1imao0e")},m(u,h){f&&f.m(u,h),w(u,l,h),w(u,t,h),_(t,s),_(s,r),_(t,o),_(t,i)},p(u,[h]){e&&f.p(u,h),h&1&&n!==(n=u[0]("details.wishDetails")+"")&&j(r,n)},i:de,o:de,d(u){f&&f.d(u),u&&c(l),u&&c(t)}}}function Dr(a,e,l){let t,s,n,r;re(a,Te,y=>l(0,t=y)),re(a,ft,y=>l(1,s=y)),re(a,Bt,y=>l(2,n=y)),re(a,Kt,y=>l(3,r=y));let{data:o={}}=e,{weapons:i=[],character:f={},bannerType:u=null,rateup:h=[]}=o;const b=u==="weapon-event";return a.$$set=y=>{"data"in y&&l(9,o=y.data)},[t,s,n,r,i,u,h,b,f,o]}class $r extends De{constructor(e){super(),$e(this,e,Dr,Vr,Pe,{data:9})}}function bs(a,e,l){const t=a.slice();return t[11]=e[l].name,t[18]=e[l].type,t}function Pr(a,e,l){const t=a.slice();return t[15]=e[l],t}function ks(a,e,l){const t=a.slice();return t[11]=e[l].name,t[12]=e[l].vision,t}function Tr(a,e,l){const t=a.slice();return t[15]=e[l],t}function Es(a,e,l){const t=a.slice();return t[11]=e[l].name,t[12]=e[l].vision,t}function Sr(a,e,l){const t=a.slice();return t[15]=e[l],t}function ws(a,e,l){const t=a.slice();return t[11]=e[l].name,t[18]=e[l].type,t}function Ar(a,e,l){const t=a.slice();return t[15]=e[l],t}function ys(a,e,l){const t=a.slice();return t[11]=e[l].name,t}function Lr(a,e,l){const t=a.slice();return t[15]=e[l],t}function Br(a){const e=a.slice(),l=e[3]||{};return e[29]=l.images!==void 0?l.images:{},e[11]=l.name!==void 0?l.name:"",e}function Cr(a,e,l){const t=a.slice();return t[15]=e[l],t}function zr(a){let e,l,t=a[2]("details.increasedRate")+"",s,n,r,o,i,f,u,h,b=a[2]("details.percentageDrop",{values:{rarity:5,percentage:a[8]?"75.000%":"50.000%"}})+"",y,E,k,I,$,A,T,S,C,p,B,N,L=a[2]("details.percentageDrop",{values:{rarity:4,percentage:a[8]?"75.000%":"50.000%"}})+"",U,q,M,F,se,Z,x,te=Array(5),K=[];for(let G=0;G<te.length;G+=1)K[G]=Rr(Cr(a,te,G));function z(G,oe){return G[8]?Hr:Mr}let Y=z(a)(a);$=new fa({props:{type:"banner"}});let P=Array(4),X=[];for(let G=0;G<P.length;G+=1)X[G]=qr(Sr(a,P,G));let pe=a[7],fe=[];for(let G=0;G<pe.length;G+=1)fe[G]=Ds(Es(a,pe,G));function Ee(G,oe){return G[8]?Wr:jr}let ge=Ee(a)(a);return{c(){e=d("h2"),l=d("span"),s=R(t),n=V(),r=d("span"),o=V(),i=d("h3"),f=d("div");for(let G=0;G<K.length;G+=1)K[G].c();u=V(),h=d("span"),y=R(b),E=V(),k=d("div"),Y.c(),I=V(),ue($.$$.fragment),A=V(),T=d("h3"),S=d("div");for(let G=0;G<X.length;G+=1)X[G].c();C=V(),p=d("i"),B=V(),N=d("span"),U=R(L),q=V(),M=d("div"),F=d("div");for(let G=0;G<fe.length;G+=1)fe[G].c();se=V(),Z=d("div"),ge.c(),this.h()},l(G){e=m(G,"H2",{class:!0});var oe=g(e);l=m(oe,"SPAN",{class:!0});var ae=g(l);s=H(ae,t),ae.forEach(c),n=D(oe),r=m(oe,"SPAN",{class:!0}),g(r).forEach(c),oe.forEach(c),o=D(G),i=m(G,"H3",{class:!0});var Ce=g(i);f=m(Ce,"DIV",{class:!0});var Me=g(f);for(let we=0;we<K.length;we+=1)K[we].l(Me);Me.forEach(c),u=D(Ce),h=m(Ce,"SPAN",{class:!0});var Ye=g(h);y=H(Ye,b),Ye.forEach(c),Ce.forEach(c),E=D(G),k=m(G,"DIV",{class:!0});var rt=g(k);Y.l(rt),rt.forEach(c),I=D(G),_e($.$$.fragment,G),A=D(G),T=m(G,"H3",{class:!0});var ze=g(T);S=m(ze,"DIV",{class:!0});var Oe=g(S);for(let we=0;we<X.length;we+=1)X[we].l(Oe);Oe.forEach(c),C=D(ze),p=m(ze,"I",{class:!0,style:!0}),g(p).forEach(c),B=D(ze),N=m(ze,"SPAN",{class:!0});var Je=g(N);U=H(Je,L),Je.forEach(c),ze.forEach(c),q=D(G),M=m(G,"DIV",{class:!0});var Ge=g(M);F=m(Ge,"DIV",{class:!0});var _t=g(F);for(let we=0;we<fe.length;we+=1)fe[we].l(_t);_t.forEach(c),se=D(Ge),Z=m(Ge,"DIV",{class:!0});var Ue=g(Z);ge.l(Ue),Ue.forEach(c),Ge.forEach(c),this.h()},h(){v(l,"class","svelte-12g50c8"),v(r,"class","line svelte-12g50c8"),v(e,"class","svelte-12g50c8"),v(f,"class","star"),v(h,"class","svelte-12g50c8"),v(i,"class","star5 svelte-12g50c8"),v(k,"class","row svelte-12g50c8"),v(S,"class","star"),v(p,"class","gi-star svelte-12g50c8"),ce(p,"color","transparent"),v(N,"class","svelte-12g50c8"),v(T,"class","star4 svelte-12g50c8"),v(F,"class","name svelte-12g50c8"),v(Z,"class","pic svelte-12g50c8"),v(M,"class","row svelte-12g50c8")},m(G,oe){w(G,e,oe),_(e,l),_(l,s),_(e,n),_(e,r),w(G,o,oe),w(G,i,oe),_(i,f);for(let ae=0;ae<K.length;ae+=1)K[ae].m(f,null);_(i,u),_(i,h),_(h,y),w(G,E,oe),w(G,k,oe),Y.m(k,null),w(G,I,oe),he($,G,oe),w(G,A,oe),w(G,T,oe),_(T,S);for(let ae=0;ae<X.length;ae+=1)X[ae].m(S,null);_(T,C),_(T,p),_(T,B),_(T,N),_(N,U),w(G,q,oe),w(G,M,oe),_(M,F);for(let ae=0;ae<fe.length;ae+=1)fe[ae].m(F,null);_(M,se),_(M,Z),ge.m(Z,null),x=!0},p(G,oe){if((!x||oe[0]&4)&&t!==(t=G[2]("details.increasedRate")+"")&&j(s,t),(!x||oe[0]&4)&&b!==(b=G[2]("details.percentageDrop",{values:{rarity:5,percentage:G[8]?"75.000%":"50.000%"}})+"")&&j(y,b),Y.p(G,oe),(!x||oe[0]&4)&&L!==(L=G[2]("details.percentageDrop",{values:{rarity:4,percentage:G[8]?"75.000%":"50.000%"}})+"")&&j(U,L),oe[0]&388){pe=G[7];let ae;for(ae=0;ae<pe.length;ae+=1){const Ce=Es(G,pe,ae);fe[ae]?fe[ae].p(Ce,oe):(fe[ae]=Ds(Ce),fe[ae].c(),fe[ae].m(F,null))}for(;ae<fe.length;ae+=1)fe[ae].d(1);fe.length=pe.length}ge.p(G,oe)},i(G){x||(Q($.$$.fragment,G),x=!0)},o(G){ee($.$$.fragment,G),x=!1},d(G){G&&c(e),G&&c(o),G&&c(i),me(K,G),G&&c(E),G&&c(k),Y.d(),G&&c(I),ve($,G),G&&c(A),G&&c(T),me(X,G),G&&c(q),G&&c(M),me(fe,G),ge.d()}}}function Rr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-12g50c8")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Hr(a){let e,l,t,s=a[4],n=[];for(let i=0;i<s.length;i+=1)n[i]=Is(ys(a,s,i));let r=a[4],o=[];for(let i=0;i<r.length;i+=1)o[i]=Ns(ws(a,r,i));return{c(){e=d("div");for(let i=0;i<n.length;i+=1)n[i].c();l=V(),t=d("div");for(let i=0;i<o.length;i+=1)o[i].c();this.h()},l(i){e=m(i,"DIV",{class:!0});var f=g(e);for(let h=0;h<n.length;h+=1)n[h].l(f);f.forEach(c),l=D(i),t=m(i,"DIV",{class:!0});var u=g(t);for(let h=0;h<o.length;h+=1)o[h].l(u);u.forEach(c),this.h()},h(){v(e,"class","name svelte-12g50c8"),v(t,"class","pic svelte-12g50c8")},m(i,f){w(i,e,f);for(let u=0;u<n.length;u+=1)n[u].m(e,null);w(i,l,f),w(i,t,f);for(let u=0;u<o.length;u+=1)o[u].m(t,null)},p(i,f){if(f[0]&20){s=i[4];let u;for(u=0;u<s.length;u+=1){const h=ys(i,s,u);n[u]?n[u].p(h,f):(n[u]=Is(h),n[u].c(),n[u].m(e,null))}for(;u<n.length;u+=1)n[u].d(1);n.length=s.length}if(f[0]&17){r=i[4];let u;for(u=0;u<r.length;u+=1){const h=ws(i,r,u);o[u]?o[u].p(h,f):(o[u]=Ns(h),o[u].c(),o[u].m(t,null))}for(;u<o.length;u+=1)o[u].d(1);o.length=r.length}},d(i){i&&c(e),me(n,i),i&&c(l),i&&c(t),me(o,i)}}}function Mr(a){let e,l,t=(a[1]?a[5].name:a[2](`${a[5].name}.name`))+"",s,n,r,o,i,f,u,h,b,y,E,k;function I(p,B){return p[1]?Vs:Gr}function $(p,B){return B===Vs?Br(p):p}let A=I(a),T=A($(a,A)),S=Array(5),C=[];for(let p=0;p<S.length;p+=1)C[p]=Ur(Lr(a,S,p));return{c(){e=d("div"),l=d("span"),s=R(t),n=V(),r=d("div"),o=d("div"),i=d("picture"),f=d("i"),u=V(),T.c(),h=V(),b=d("span");for(let p=0;p<C.length;p+=1)C[p].c();y=V(),E=d("caption"),k=R("Lv.1"),this.h()},l(p){e=m(p,"DIV",{class:!0});var B=g(e);l=m(B,"SPAN",{class:!0});var N=g(l);s=H(N,t),N.forEach(c),B.forEach(c),n=D(p),r=m(p,"DIV",{class:!0});var L=g(r);o=m(L,"DIV",{class:!0});var U=g(o);i=m(U,"PICTURE",{class:!0,style:!0});var q=g(i);f=m(q,"I",{class:!0}),g(f).forEach(c),u=D(q),T.l(q),q.forEach(c),h=D(U),b=m(U,"SPAN",{class:!0});var M=g(b);for(let se=0;se<C.length;se+=1)C[se].l(M);M.forEach(c),y=D(U),E=m(U,"CAPTION",{class:!0});var F=g(E);k=H(F,"Lv.1"),F.forEach(c),U.forEach(c),L.forEach(c),this.h()},h(){v(l,"class",a[5].vision+"-flat svelte-12g50c8"),v(e,"class","name svelte-12g50c8"),v(f,"class","gi-"+a[5].vision+" "+a[5].vision+" icon-gradient filter-drop svelte-12g50c8"),v(i,"class","star5 svelte-12g50c8"),ce(i,"background-image","url('"+a[9]+"')"),v(b,"class","stars svelte-12g50c8"),v(E,"class","svelte-12g50c8"),v(o,"class","pic-item svelte-12g50c8"),v(r,"class","pic svelte-12g50c8")},m(p,B){w(p,e,B),_(e,l),_(l,s),w(p,n,B),w(p,r,B),_(r,o),_(o,i),_(i,f),_(i,u),T.m(i,null),_(o,h),_(o,b);for(let N=0;N<C.length;N+=1)C[N].m(b,null);_(o,y),_(o,E),_(E,k)},p(p,B){B[0]&6&&t!==(t=(p[1]?p[5].name:p[2](`${p[5].name}.name`))+"")&&j(s,t),A===(A=I(p))&&T?T.p($(p,A),B):(T.d(1),T=A($(p,A)),T&&(T.c(),T.m(i,null)))},d(p){p&&c(e),p&&c(n),p&&c(r),T.d(),me(C,p)}}}function Is(a){let e,l=a[2](a[11])+"",t;return{c(){e=d("span"),t=R(l),this.h()},l(s){e=m(s,"SPAN",{style:!0,class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){ce(e,"color","#bd6932"),v(e,"class","svelte-12g50c8")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n[0]&4&&l!==(l=s[2](s[11])+"")&&j(t,l)},d(s){s&&c(e)}}}function Or(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-12g50c8")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Ns(a){let e,l,t,s,n,r,o,i,f,u,h,b,y=Array(5),E=[];for(let k=0;k<y.length;k+=1)E[k]=Or(Ar(a,y,k));return{c(){e=d("div"),l=d("picture"),t=d("img"),n=V(),r=d("span");for(let k=0;k<E.length;k+=1)E[k].c();o=V(),i=d("caption"),f=R("Lv.1"),u=V(),this.h()},l(k){e=m(k,"DIV",{class:!0});var I=g(e);l=m(I,"PICTURE",{class:!0,style:!0});var $=g(l);t=m($,"IMG",{alt:!0,class:!0,crossorigin:!0}),$.forEach(c),n=D(I),r=m(I,"SPAN",{class:!0});var A=g(r);for(let S=0;S<E.length;S+=1)E[S].l(A);A.forEach(c),o=D(I),i=m(I,"CAPTION",{class:!0});var T=g(i);f=H(T,"Lv.1"),T.forEach(c),u=D(I),I.forEach(c),this.h()},h(){v(t,"alt",Fe(a[11])),v(t,"class",Vt(a[18])+" svelte-12g50c8"),v(t,"crossorigin","anonymous"),v(l,"class","star5 svelte-12g50c8"),ce(l,"background-image","url('"+a[0]["5star-bg.webp"]+"')"),v(r,"class","stars svelte-12g50c8"),v(i,"class","svelte-12g50c8"),v(e,"class","pic-item svelte-12g50c8")},m(k,I){w(k,e,I),_(e,l),_(l,t),_(e,n),_(e,r);for(let $=0;$<E.length;$+=1)E[$].m(r,null);_(e,o),_(e,i),_(i,f),_(e,u),h||(b=ot(s=ut.call(null,t,a[0][a[11]])),h=!0)},p(k,I){a=k,s&&ct(s.update)&&I[0]&1&&s.update.call(null,a[0][a[11]]),I[0]&1&&ce(l,"background-image","url('"+a[0]["5star-bg.webp"]+"')")},d(k){k&&c(e),me(E,k),h=!1,b()}}}function Gr(a){let e,l,t,s;return{c(){e=d("img"),this.h()},l(n){e=m(n,"IMG",{alt:!0,crossorigin:!0,class:!0}),this.h()},h(){v(e,"alt",Fe(a[5].name)),v(e,"crossorigin","anonymous"),v(e,"class","svelte-12g50c8")},m(n,r){w(n,e,r),t||(s=ot(l=ut.call(null,e,a[0][`face/${a[5].name}`])),t=!0)},p(n,r){l&&ct(l.update)&&r[0]&1&&l.update.call(null,n[0][`face/${n[5].name}`])},d(n){n&&c(e),t=!1,s()}}}function Vs(a){let e,l,t,s,n,r;return{c(){e=d("img"),this.h()},l(o){e=m(o,"IMG",{"data-placeholder":!0,alt:!0,crossorigin:!0,class:!0}),this.h()},h(){v(e,"data-placeholder",l=a[0]["face-placeholder.webp"]),v(e,"alt",t=a[11]),v(e,"crossorigin","anonymous"),v(e,"class","svelte-12g50c8")},m(o,i){w(o,e,i),n||(r=ot(s=ut.call(null,e,a[29]?.faceURL)),n=!0)},p(o,i){a=o,i[0]&1&&l!==(l=a[0]["face-placeholder.webp"])&&v(e,"data-placeholder",l),i[0]&8&&t!==(t=a[11])&&v(e,"alt",t),s&&ct(s.update)&&i[0]&8&&s.update.call(null,a[29]?.faceURL)},d(o){o&&c(e),n=!1,r()}}}function Ur(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-12g50c8")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function qr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-12g50c8")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Ds(a){let e,l=a[2](`${a[11]}${a[8]?"":".name"}`)+"",t;return{c(){e=d("span"),t=R(l),this.h()},l(s){e=m(s,"SPAN",{class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){v(e,"class",(a[12]||"wanderlust")+"-flat svelte-12g50c8")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n[0]&4&&l!==(l=s[2](`${s[11]}${s[8]?"":".name"}`)+"")&&j(t,l)},d(s){s&&c(e)}}}function Wr(a){let e,l=a[7],t=[];for(let s=0;s<l.length;s+=1)t[s]=$s(bs(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n[0]&129){l=s[7];let r;for(r=0;r<l.length;r+=1){const o=bs(s,l,r);t[r]?t[r].p(o,n):(t[r]=$s(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function jr(a){let e,l=a[7],t=[];for(let s=0;s<l.length;s+=1)t[s]=Ps(ks(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n[0]&129){l=s[7];let r;for(r=0;r<l.length;r+=1){const o=ks(s,l,r);t[r]?t[r].p(o,n):(t[r]=Ps(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function Fr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-12g50c8")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function $s(a){let e,l,t,s,n,r,o,i,f,u,h,b,y=Array(4),E=[];for(let k=0;k<y.length;k+=1)E[k]=Fr(Pr(a,y,k));return{c(){e=d("div"),l=d("picture"),t=d("img"),n=V(),r=d("span");for(let k=0;k<E.length;k+=1)E[k].c();o=V(),i=d("caption"),f=R("Lv.1"),u=V(),this.h()},l(k){e=m(k,"DIV",{class:!0});var I=g(e);l=m(I,"PICTURE",{class:!0,style:!0});var $=g(l);t=m($,"IMG",{alt:!0,class:!0,crossorigin:!0}),$.forEach(c),n=D(I),r=m(I,"SPAN",{class:!0});var A=g(r);for(let S=0;S<E.length;S+=1)E[S].l(A);A.forEach(c),o=D(I),i=m(I,"CAPTION",{class:!0});var T=g(i);f=H(T,"Lv.1"),T.forEach(c),u=D(I),I.forEach(c),this.h()},h(){v(t,"alt",Fe(a[11])),v(t,"class",Vt(a[18])+" svelte-12g50c8"),v(t,"crossorigin","anonymous"),v(l,"class","star4 svelte-12g50c8"),ce(l,"background-image","url('"+a[0]["4star-bg.webp"]+"')"),v(r,"class","stars svelte-12g50c8"),v(i,"class","svelte-12g50c8"),v(e,"class","pic-item svelte-12g50c8")},m(k,I){w(k,e,I),_(e,l),_(l,t),_(e,n),_(e,r);for(let $=0;$<E.length;$+=1)E[$].m(r,null);_(e,o),_(e,i),_(i,f),_(e,u),h||(b=ot(s=ut.call(null,t,a[0][a[11]])),h=!0)},p(k,I){a=k,s&&ct(s.update)&&I[0]&1&&s.update.call(null,a[0][a[11]]),I[0]&1&&ce(l,"background-image","url('"+a[0]["4star-bg.webp"]+"')")},d(k){k&&c(e),me(E,k),h=!1,b()}}}function Yr(a){let e;return{c(){e=d("i"),this.h()},l(l){e=m(l,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class","gi-star svelte-12g50c8")},m(l,t){w(l,e,t)},p:de,d(l){l&&c(e)}}}function Ps(a){let e,l,t,s,n,r,o,i,f,u,h,b,y,E,k=Array(4),I=[];for(let $=0;$<k.length;$+=1)I[$]=Yr(Tr(a,k,$));return{c(){e=d("div"),l=d("picture"),t=d("i"),s=V(),n=d("img"),o=V(),i=d("span");for(let $=0;$<I.length;$+=1)I[$].c();f=V(),u=d("caption"),h=R("Lv.1"),b=V(),this.h()},l($){e=m($,"DIV",{class:!0});var A=g(e);l=m(A,"PICTURE",{class:!0,style:!0});var T=g(l);t=m(T,"I",{class:!0}),g(t).forEach(c),s=D(T),n=m(T,"IMG",{alt:!0,crossorigin:!0,class:!0}),T.forEach(c),o=D(A),i=m(A,"SPAN",{class:!0});var S=g(i);for(let p=0;p<I.length;p+=1)I[p].l(S);S.forEach(c),f=D(A),u=m(A,"CAPTION",{class:!0});var C=g(u);h=H(C,"Lv.1"),C.forEach(c),b=D(A),A.forEach(c),this.h()},h(){v(t,"class","gi-"+a[12]+" "+a[12]+" icon-gradient filter-drop svelte-12g50c8"),v(n,"alt",Fe(a[11])),v(n,"crossorigin","anonymous"),v(n,"class","svelte-12g50c8"),v(l,"class","star4 svelte-12g50c8"),ce(l,"background-image","url('"+a[0]["4star-bg.webp"]+"')"),v(i,"class","stars svelte-12g50c8"),v(u,"class","svelte-12g50c8"),v(e,"class","pic-item svelte-12g50c8")},m($,A){w($,e,A),_(e,l),_(l,t),_(l,s),_(l,n),_(e,o),_(e,i);for(let T=0;T<I.length;T+=1)I[T].m(i,null);_(e,f),_(e,u),_(u,h),_(e,b),y||(E=ot(r=ut.call(null,n,a[0][`face/${a[11]}`])),y=!0)},p($,A){a=$,r&&ct(r.update)&&A[0]&1&&r.update.call(null,a[0][`face/${a[11]}`]),A[0]&1&&ce(l,"background-image","url('"+a[0]["4star-bg.webp"]+"')")},d($){$&&c(e),me(I,$),y=!1,E()}}}function Jr(a){let e=a[6].match("event"),l,t,s=e&&zr(a);return{c(){s&&s.c(),l=le()},l(n){s&&s.l(n),l=le()},m(n,r){s&&s.m(n,r),w(n,l,r),t=!0},p(n,r){e&&s.p(n,r)},i(n){t||(Q(s),t=!0)},o(n){ee(s),t=!1},d(n){s&&s.d(n),n&&c(l)}}}function Kr(a,e,l){let t,s,n,r;re(a,ft,E=>l(0,t=E)),re(a,Bt,E=>l(1,s=E)),re(a,Te,E=>l(2,n=E)),re(a,Kt,E=>l(3,r=E));let{data:o={}}=e,{weapons:i=[],character:f={},bannerType:u=null,rateup:h=[]}=o;const b=u==="weapon-event",y=s?t["5star-special.webp"]:t["5star-bg.webp"];return a.$$set=E=>{"data"in E&&l(10,o=E.data)},[t,s,n,r,i,f,u,h,b,y,o]}class Qr extends De{constructor(e){super(),$e(this,e,Kr,Jr,Pe,{data:10},null,[-1,-1])}}function Xr(a){const e=a.slice(),l=e[1]==="standard"?"wanderlust":e[2];return e[6]=l,e}function Ts(a){let e,l,t,s,n,r=at(a[0],a[6]||"epitome")+"",o,i,f=a[3]==="v2"&&Ss(a),u=a[1]!=="beginner"&&As(a);return{c(){e=d("h1"),f&&f.c(),l=V(),t=d("span"),u&&u.c(),s=R(`
-
-			"`),n=new We(!1),o=R('"'),this.h()},l(h){e=m(h,"H1",{class:!0});var b=g(e);f&&f.l(b),l=D(b),t=m(b,"SPAN",{});var y=g(t);u&&u.l(y),s=H(y,`
-
-			"`),n=je(y,!1),o=H(y,'"'),y.forEach(c),b.forEach(c),this.h()},h(){n.a=o,v(e,"class",i=Vt(a[1])+" svelte-1hvqddr"),ie(e,"v2",a[3]==="v2")},m(h,b){w(h,e,b),f&&f.m(e,null),_(e,l),_(e,t),u&&u.m(t,null),_(t,s),n.m(r,t),_(t,o)},p(h,b){h[3]==="v2"?f?f.p(h,b):(f=Ss(h),f.c(),f.m(e,l)):f&&(f.d(1),f=null),h[1]!=="beginner"?u?u.p(h,b):(u=As(h),u.c(),u.m(t,s)):u&&(u.d(1),u=null),b&7&&r!==(r=at(h[0],h[6]||"epitome")+"")&&n.p(r),b&2&&i!==(i=Vt(h[1])+" svelte-1hvqddr")&&v(e,"class",i),b&10&&ie(e,"v2",h[3]==="v2")},d(h){h&&c(e),f&&f.d(),u&&u.d()}}}function Zr(a){let e,l,t,s,n,r=a[5]("history.title")+"",o;return{c(){e=d("h1"),l=d("img"),s=V(),n=d("span"),o=R(r),this.h()},l(i){e=m(i,"H1",{class:!0});var f=g(e);l=m(f,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),s=D(f),n=m(f,"SPAN",{});var u=g(n);o=H(u,r),u.forEach(c),f.forEach(c),this.h()},h(){Se(l.src,t=a[4]["brand.png"])||v(l,"src",t),v(l,"alt","Icon"),v(l,"crossorigin","anonymous"),v(l,"class","svelte-1hvqddr"),v(e,"class","v2 svelte-1hvqddr")},m(i,f){w(i,e,f),_(e,l),_(e,s),_(e,n),_(n,o)},p(i,f){f&16&&!Se(l.src,t=i[4]["brand.png"])&&v(l,"src",t),f&32&&r!==(r=i[5]("history.title")+"")&&j(o,r)},d(i){i&&c(e)}}}function Ss(a){let e,l;return{c(){e=d("img"),this.h()},l(t){e=m(t,"IMG",{src:!0,alt:!0,crossorigin:!0,class:!0}),this.h()},h(){Se(e.src,l=a[4]["brand.png"])||v(e,"src",l),v(e,"alt","Icon"),v(e,"crossorigin","anonymous"),v(e,"class","svelte-1hvqddr")},m(t,s){w(t,e,s)},p(t,s){s&16&&!Se(e.src,l=t[4]["brand.png"])&&v(e,"src",l)},d(t){t&&c(e)}}}function As(a){let e=a[5](`wish.banner.${a[1]}`)+"",l;return{c(){l=R(e)},l(t){l=H(t,e)},m(t,s){w(t,l,s)},p(t,s){s&34&&e!==(e=t[5](`wish.banner.${t[1]}`)+"")&&j(l,e)},d(t){t&&c(l)}}}function xr(a){let e;function l(r,o){return r[1]==="history"?Zr:Ts}function t(r,o){return o===Ts?Xr(r):r}let s=l(a),n=s(t(a,s));return{c(){n.c(),e=le()},l(r){n.l(r),e=le()},m(r,o){n.m(r,o),w(r,e,o)},p(r,[o]){s===(s=l(r))&&n?n.p(t(r,s),o):(n.d(1),n=s(t(r,s)),n&&(n.c(),n.m(e.parentNode,e)))},i:de,o:de,d(r){n.d(r),r&&c(e)}}}function en(a,e,l){let t,s;re(a,ft,f=>l(4,t=f)),re(a,Te,f=>l(5,s=f));let{bannerName:n=""}=e,{type:r=""}=e,{vision:o=""}=e,{tplVersion:i=""}=e;return a.$$set=f=>{"bannerName"in f&&l(0,n=f.bannerName),"type"in f&&l(1,r=f.type),"vision"in f&&l(2,o=f.vision),"tplVersion"in f&&l(3,i=f.tplVersion)},[n,r,o,i,t,s]}class ha extends De{constructor(e){super(),$e(this,e,en,xr,Pe,{bannerName:0,type:1,vision:2,tplVersion:3})}}function tn(a){let e,l,t,s,n,r,o,i;return e=new $r({props:{data:{weapons:a[12],character:a[2],bannerType:a[8],rateup:a[3]}}}),t=new _a({props:{bannerType:a[8],bannerName:a[1],weapons:a[12],character:a[2],rateup:a[3]}}),o=new ua({props:{drop5star:a[13],drop4star:a[11],drop3star:a[10],bannerType:a[8]}}),{c(){ue(e.$$.fragment),l=V(),ue(t.$$.fragment),s=V(),n=d("br"),r=V(),ue(o.$$.fragment)},l(f){_e(e.$$.fragment,f),l=D(f),_e(t.$$.fragment,f),s=D(f),n=m(f,"BR",{}),r=D(f),_e(o.$$.fragment,f)},m(f,u){he(e,f,u),w(f,l,u),he(t,f,u),w(f,s,u),w(f,n,u),w(f,r,u),he(o,f,u),i=!0},p(f,u){const h={};u[0]&12&&(h.data={weapons:f[12],character:f[2],bannerType:f[8],rateup:f[3]}),e.$set(h);const b={};u[0]&2&&(b.bannerName=f[1]),u[0]&4&&(b.character=f[2]),u[0]&8&&(b.rateup=f[3]),t.$set(b)},i(f){i||(Q(e.$$.fragment,f),Q(t.$$.fragment,f),Q(o.$$.fragment,f),i=!0)},o(f){ee(e.$$.fragment,f),ee(t.$$.fragment,f),ee(o.$$.fragment,f),i=!1},d(f){ve(e,f),f&&c(l),ve(t,f),f&&c(s),f&&c(n),f&&c(r),ve(o,f)}}}function ln(a){let e,l,t,s,n=a[6]("details.text")+"",r,o,i,f,u=a[6]("details.itemlist")+"",h,b,y,E,k,I,$,A,T,S=!a[14]&&sn(a);const C=[nn,rn,an],p=[];function B(N,L){return N[4]===1?0:N[4]===2?1:N[4]===3?2:-1}return~(k=B(a))&&(I=p[k]=C[k](a)),{c(){e=d("nav"),S&&S.c(),l=V(),t=d("div"),s=d("button"),r=R(n),o=V(),i=d("div"),f=d("button"),h=R(u),b=V(),y=d("div"),E=d("div"),I&&I.c(),this.h()},l(N){e=m(N,"NAV",{style:!0,class:!0});var L=g(e);S&&S.l(L),l=D(L),t=m(L,"DIV",{class:!0});var U=g(t);s=m(U,"BUTTON",{class:!0});var q=g(s);r=H(q,n),q.forEach(c),U.forEach(c),o=D(L),i=m(L,"DIV",{class:!0});var M=g(i);f=m(M,"BUTTON",{class:!0});var F=g(f);h=H(F,u),F.forEach(c),M.forEach(c),L.forEach(c),b=D(N),y=m(N,"DIV",{class:!0});var se=g(y);E=m(se,"DIV",{class:!0});var Z=g(E);I&&I.l(Z),Z.forEach(c),se.forEach(c),this.h()},h(){v(s,"class","svelte-7ts4ef"),v(t,"class","nav-item svelte-7ts4ef"),ie(t,"active",a[4]===2),v(f,"class","svelte-7ts4ef"),v(i,"class","nav-item svelte-7ts4ef"),ie(i,"active",a[4]===3),ce(e,"background-image","url("+a[7]["book-select-bg.webp"]+")"),v(e,"class","svelte-7ts4ef"),v(E,"class","wrapper"),v(y,"class","content svelte-7ts4ef")},m(N,L){w(N,e,L),S&&S.m(e,null),_(e,l),_(e,t),_(t,s),_(s,r),_(e,o),_(e,i),_(i,f),_(f,h),w(N,b,L),w(N,y,L),_(y,E),~k&&p[k].m(E,null),a[19](y),$=!0,A||(T=[Ve(s,"click",a[17]),Ve(f,"click",a[18])],A=!0)},p(N,L){N[14]||S.p(N,L),(!$||L[0]&64)&&n!==(n=N[6]("details.text")+"")&&j(r,n),L[0]&16&&ie(t,"active",N[4]===2),(!$||L[0]&64)&&u!==(u=N[6]("details.itemlist")+"")&&j(h,u),L[0]&16&&ie(i,"active",N[4]===3),(!$||L[0]&128)&&ce(e,"background-image","url("+N[7]["book-select-bg.webp"]+")");let U=k;k=B(N),k===U?~k&&p[k].p(N,L):(I&&(Re(),ee(p[U],1,1,()=>{p[U]=null}),He()),~k?(I=p[k],I?I.p(N,L):(I=p[k]=C[k](N),I.c()),Q(I,1),I.m(E,null)):I=null)},i(N){$||(Q(I),$=!0)},o(N){ee(I),$=!1},d(N){N&&c(e),S&&S.d(),N&&c(b),N&&c(y),~k&&p[k].d(),a[19](null),A=!1,Jt(T)}}}function sn(a){let e,l,t=a[6]("details.promotional")+"",s,n,r;return{c(){e=d("div"),l=d("button"),s=R(t),this.h()},l(o){e=m(o,"DIV",{class:!0});var i=g(e);l=m(i,"BUTTON",{class:!0});var f=g(l);s=H(f,t),f.forEach(c),i.forEach(c),this.h()},h(){v(l,"class","svelte-7ts4ef"),v(e,"class","nav-item svelte-7ts4ef"),ie(e,"active",a[4]===1)},m(o,i){w(o,e,i),_(e,l),_(l,s),n||(r=Ve(l,"click",a[16]),n=!0)},p(o,i){i[0]&64&&t!==(t=o[6]("details.promotional")+"")&&j(s,t),i[0]&16&&ie(e,"active",o[4]===1)},d(o){o&&c(e),n=!1,r()}}}function an(a){let e,l;return e=new ua({props:{drop5star:a[13],drop4star:a[11],drop3star:a[10],bannerType:a[8],tplVersion:"v2"}}),{c(){ue(e.$$.fragment)},l(t){_e(e.$$.fragment,t)},m(t,s){he(e,t,s),l=!0},p:de,i(t){l||(Q(e.$$.fragment,t),l=!0)},o(t){ee(e.$$.fragment,t),l=!1},d(t){ve(e,t)}}}function rn(a){let e,l;return e=new _a({props:{bannerType:a[8],bannerName:a[1],weapons:a[12],character:a[2],rateup:a[3],tplVersion:"v2"}}),{c(){ue(e.$$.fragment)},l(t){_e(e.$$.fragment,t)},m(t,s){he(e,t,s),l=!0},p(t,s){const n={};s[0]&2&&(n.bannerName=t[1]),s[0]&4&&(n.character=t[2]),s[0]&8&&(n.rateup=t[3]),e.$set(n)},i(t){l||(Q(e.$$.fragment,t),l=!0)},o(t){ee(e.$$.fragment,t),l=!1},d(t){ve(e,t)}}}function nn(a){let e,l;return e=new Qr({props:{data:{weapons:a[12],character:a[2],bannerType:a[8],rateup:a[3]}}}),{c(){ue(e.$$.fragment)},l(t){_e(e.$$.fragment,t)},m(t,s){he(e,t,s),l=!0},p(t,s){const n={};s[0]&12&&(n.data={weapons:t[12],character:t[2],bannerType:t[8],rateup:t[3]}),e.$set(n)},i(t){l||(Q(e.$$.fragment,t),l=!0)},o(t){ee(e.$$.fragment,t),l=!1},d(t){ve(e,t)}}}function on(a){let e,l,t,s,n,r;e=new ha({props:{type:a[8],vision:a[9],bannerName:a[1],tplVersion:a[0]}});const o=[ln,tn],i=[];function f(u,h){return u[0]==="v2"?0:1}return t=f(a),s=i[t]=o[t](a),{c(){ue(e.$$.fragment),l=V(),s.c(),n=le()},l(u){_e(e.$$.fragment,u),l=D(u),s.l(u),n=le()},m(u,h){he(e,u,h),w(u,l,h),i[t].m(u,h),w(u,n,h),r=!0},p(u,h){const b={};h[0]&2&&(b.bannerName=u[1]),h[0]&1&&(b.tplVersion=u[0]),e.$set(b);let y=t;t=f(u),t===y?i[t].p(u,h):(Re(),ee(i[y],1,1,()=>{i[y]=null}),He(),s=i[t],s?s.p(u,h):(s=i[t]=o[t](u),s.c()),Q(s,1),s.m(n.parentNode,n))},i(u){r||(Q(e.$$.fragment,u),Q(s),r=!0)},o(u){ee(e.$$.fragment,u),ee(s),r=!1},d(u){ve(e,u),u&&c(l),i[t].d(u),u&&c(n)}}}function cn(a,e,l){let t,s,n,r,o,i,f;re(a,Kt,P=>l(20,t=P)),re(a,Bt,P=>l(21,s=P)),re(a,Te,P=>l(6,n=P)),re(a,Aa,P=>l(22,r=P)),re(a,aa,P=>l(23,o=P)),re(a,ra,P=>l(24,i=P)),re(a,ft,P=>l(7,f=P));let{tplVersion:u="v2"}=e,{bannerName:h,type:b,stdver:y,character:E="",featured:k=[],rateup:I=[]}=i[o];const{vision:$}=s?t:rl(E),{patch:A,phase:T}=r,S=Ha(),C=Ma({phase:T,version:A,banner:b,type:"all",rateupNamelist:I});I=I.map(P=>b.match("weapon")?Rl(P):rl(P)).map(P=>{const X={...P};return X.rateup=!0,X});const p=[...I,...C],B=Oa({phase:T,version:A,stdver:y,type:b==="standard"?"all":b.split("-")[0],banner:b,rateupItem:b.match("weapon")?k.map(({name:P})=>P):[E]});E={...s?t:rl(E),rateup:!0};const N=k.map(({name:P})=>Rl(P)).map(P=>{const X={...P};return X.rateup=!0,X}),U=[...(b.match("character")?[E]:N)||[],...B],q=na(h).name,F=n(`banner.${b==="standard"?"wanderlust":q||"beginner"}`);h=s?t.bannerName:F;const se=b.match(/(standard|beginner)/);let Z=se?2:1;const x=P=>{Z!==P&&(l(4,Z=P),Lt())};let te;Ea(()=>{la(te,{sizeAutoCapable:!1,className:"os-theme-light"})});const K=()=>x(1),z=()=>x(2),O=()=>x(3);function Y(P){ea[P?"unshift":"push"](()=>{te=P,l(5,te)})}return a.$$set=P=>{"tplVersion"in P&&l(0,u=P.tplVersion)},[u,h,E,I,Z,te,n,f,b,$,S,p,N,U,se,x,K,z,O,Y]}class fn extends De{constructor(e){super(),$e(this,e,cn,on,Pe,{tplVersion:0},null,[-1,-1])}}function Ls(a){let e,l;return e=new Ca({props:{title:a[4]("history.resetPromptTitle"),$$slots:{default:[_n]},$$scope:{ctx:a}}}),e.$on("cancel",a[6]),e.$on("confirm",a[5]),{c(){ue(e.$$.fragment)},l(t){_e(e.$$.fragment,t)},m(t,s){he(e,t,s),l=!0},p(t,s){const n={};s&16&&(n.title=t[4]("history.resetPromptTitle")),s&16409&&(n.$$scope={dirty:s,ctx:t}),e.$set(n)},i(t){l||(Q(e.$$.fragment,t),l=!0)},o(t){ee(e.$$.fragment,t),l=!1},d(t){ve(e,t)}}}function un(a){let e,l=a[4]("history.keepPity")+"";return{c(){e=d("small")},l(t){e=m(t,"SMALL",{});var s=g(e);s.forEach(c)},m(t,s){w(t,e,s),e.innerHTML=l},p(t,s){s&16&&l!==(l=t[4]("history.keepPity")+"")&&(e.innerHTML=l)},d(t){t&&c(e)}}}function _n(a){let e,l,t,s=a[4]("history.resetPrompt",{values:{bannerName:`<b>${a[4](`wish.banner.${a[0]}`)}</b>`}})+"",n,r,o,i;return o=new Ga({props:{checked:a[3],$$slots:{default:[un]},$$scope:{ctx:a}}}),o.$on("change",a[7]),{c(){e=d("div"),l=d("div"),t=d("p"),n=V(),r=d("div"),ue(o.$$.fragment),this.h()},l(f){e=m(f,"DIV",{class:!0});var u=g(e);l=m(u,"DIV",{style:!0});var h=g(l);t=m(h,"P",{});var b=g(t);b.forEach(c),n=D(h),r=m(h,"DIV",{class:!0,style:!0});var y=g(r);_e(o.$$.fragment,y),y.forEach(c),h.forEach(c),u.forEach(c),this.h()},h(){v(r,"class","keep-setting"),ce(r,"margin-top","5%"),ce(l,"padding","0 1rem"),v(e,"class","confirmation svelte-1a125q5")},m(f,u){w(f,e,u),_(e,l),_(l,t),t.innerHTML=s,_(l,n),_(l,r),he(o,r,null),i=!0},p(f,u){(!i||u&17)&&s!==(s=f[4]("history.resetPrompt",{values:{bannerName:`<b>${f[4](`wish.banner.${f[0]}`)}</b>`}})+"")&&(t.innerHTML=s);const h={};u&8&&(h.checked=f[3]),u&16400&&(h.$$scope={dirty:u,ctx:f}),o.$set(h)},i(f){i||(Q(o.$$.fragment,f),i=!0)},o(f){ee(o.$$.fragment,f),i=!1},d(f){f&&c(e),ve(o)}}}function hn(a){let e,l,t,s,n=a[4]("history.resetButton")+"",r,o,i,f,u=a[2]&&Ls(a);return{c(){u&&u.c(),e=V(),l=d("button"),t=d("i"),s=V(),r=R(n),this.h()},l(h){u&&u.l(h),e=D(h),l=m(h,"BUTTON",{class:!0});var b=g(l);t=m(b,"I",{class:!0}),g(t).forEach(c),s=D(b),r=H(b,n),b.forEach(c),this.h()},h(){v(t,"class","gi-delete"),v(l,"class","reset svelte-1a125q5"),ie(l,"v2",a[1])},m(h,b){u&&u.m(h,b),w(h,e,b),w(h,l,b),_(l,t),_(l,s),_(l,r),o=!0,i||(f=Ve(l,"click",a[6]),i=!0)},p(h,[b]){h[2]?u?(u.p(h,b),b&4&&Q(u,1)):(u=Ls(h),u.c(),Q(u,1),u.m(e.parentNode,e)):u&&(Re(),ee(u,1,1,()=>{u=null}),He()),(!o||b&16)&&n!==(n=h[4]("history.resetButton")+"")&&j(r,n),b&2&&ie(l,"v2",h[1])},i(h){o||(Q(u),o=!0)},o(h){ee(u),o=!1},d(h){u&&u.d(h),h&&c(e),h&&c(l),i=!1,f()}}}function vn(a,e,l){let t;re(a,Te,$=>l(4,t=$));let{banner:s}=e,{v2:n=!1}=e,r=!1,o=!1;const i=Le("pity5"),f=Le("pity4"),{clearHistory:u,getListByBanner:h}=oa,b=async $=>{const A={};(await h($)).forEach(({itemID:S})=>{A[S]=(A[S]||0)+1}),Object.keys(A).forEach(S=>Na.put({itemID:S,qty:-1*A[S]}))},y=Le("clearHistory"),E=async()=>{await b(s),await u(s),o||(Ft.set(`pity5-${s}`,0),Ft.set(`pity4-${s}`,0),i.set(0),f.set(0),s.match("event")?(al.set(`${s}-4star`,!1),al.set(`${s}-5star`,!1)):al.set(s,!1)),s==="beginner"&&(Ia.set("beginner",0),La.set(!0),Ba.set(20)),y(),Lt(),l(2,r=!1);const $=t("history.resetSuccess");za({message:$,type:"success"})},k=()=>{Lt(r?"close":"modal"),l(2,r=!r)},I=({detail:$})=>l(3,o=!!$.checked);return a.$$set=$=>{"banner"in $&&l(0,s=$.banner),"v2"in $&&l(1,n=$.v2)},[s,n,r,o,t,E,k,I]}class va extends De{constructor(e){super(),$e(this,e,vn,hn,Pe,{banner:0,v2:1})}}function Bs(a,e,l){const t=a.slice();return t[12]=e[l],t[14]=l,t}function pn(a){let e,l;return{c(){e=d("i"),this.h()},l(t){e=m(t,"I",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class",l="arrow gi-caret-"+(a[2]?"up":"down")+" svelte-1r197t2")},m(t,s){w(t,e,s)},p(t,s){s&4&&l!==(l="arrow gi-caret-"+(t[2]?"up":"down")+" svelte-1r197t2")&&v(e,"class",l)},d(t){t&&c(e)}}}function dn(a){let e,l;return{c(){e=d("span"),this.h()},l(t){e=m(t,"SPAN",{class:!0}),g(e).forEach(c),this.h()},h(){v(e,"class",l="arrow icon "+(a[2]?"up":"down")+" svelte-1r197t2")},m(t,s){w(t,e,s)},p(t,s){s&4&&l!==(l="arrow icon "+(t[2]?"up":"down")+" svelte-1r197t2")&&v(e,"class",l)},d(t){t&&c(e)}}}function Cs(a){let e,l,t,s=a[6],n=[];for(let r=0;r<s.length;r+=1)n[r]=zs(Bs(a,s,r));return{c(){e=d("div");for(let r=0;r<n.length;r+=1)n[r].c();this.h()},l(r){e=m(r,"DIV",{class:!0});var o=g(e);for(let i=0;i<n.length;i+=1)n[i].l(o);o.forEach(c),this.h()},h(){v(e,"class","select-list svelte-1r197t2")},m(r,o){w(r,e,o);for(let i=0;i<n.length;i+=1)n[i].m(e,null);t=!0},p(r,o){if(o&232){s=r[6];let i;for(i=0;i<s.length;i+=1){const f=Bs(r,s,i);n[i]?n[i].p(f,o):(n[i]=zs(f),n[i].c(),n[i].m(e,null))}for(;i<n.length;i+=1)n[i].d(1);n.length=s.length}},i(r){t||(Nt(()=>{l||(l=st(e,Dt,{duration:200},!0)),l.run(1)}),t=!0)},o(r){l||(l=st(e,Dt,{duration:200},!1)),l.run(0),t=!1},d(r){r&&c(e),me(n,r),r&&l&&l.end()}}}function zs(a){let e,l,t=a[5](`wish.banner.${a[12]}`)+"",s,n,r;function o(){return a[10](a[12])}return{c(){e=d("button"),l=new We(!1),s=V(),this.h()},l(i){e=m(i,"BUTTON",{class:!0});var f=g(e);l=je(f,!1),s=D(f),f.forEach(c),this.h()},h(){l.a=s,v(e,"class","item svelte-1r197t2"),ie(e,"active",a[3]===a[14])},m(i,f){w(i,e,f),l.m(t,e),_(e,s),n||(r=Ve(e,"click",o),n=!0)},p(i,f){a=i,f&32&&t!==(t=a[5](`wish.banner.${a[12]}`)+"")&&l.p(t),f&8&&ie(e,"active",a[3]===a[14])},d(i){i&&c(e),n=!1,r()}}}function Rs(a){let e,l,t;return l=new va({props:{banner:a[1],v2:!0}}),{c(){e=d("div"),ue(l.$$.fragment),this.h()},l(s){e=m(s,"DIV",{class:!0});var n=g(e);_e(l.$$.fragment,n),n.forEach(c),this.h()},h(){v(e,"class","reset svelte-1r197t2")},m(s,n){w(s,e,n),he(l,e,null),t=!0},p(s,n){const r={};n&2&&(r.banner=s[1]),l.$set(r)},i(s){t||(Q(l.$$.fragment,s),t=!0)},o(s){ee(l.$$.fragment,s),t=!1},d(s){s&&c(e),ve(l)}}}function mn(a){let e,l,t,s=a[5]("history.selectWish")+"",n,r,o,i,f,u=a[5](`wish.banner.${a[1]}`)+"",h,b,y,E,k,I;function $(p,B){return p[0]?dn:pn}let A=$(a),T=A(a),S=a[2]&&Cs(a),C=a[0]&&Rs(a);return{c(){e=d("div"),l=d("div"),t=d("span"),n=R(s),r=V(),o=d("div"),i=d("button"),f=d("span"),h=V(),T.c(),b=V(),S&&S.c(),y=V(),C&&C.c(),this.h()},l(p){e=m(p,"DIV",{class:!0});var B=g(e);l=m(B,"DIV",{style:!0,class:!0});var N=g(l);t=m(N,"SPAN",{class:!0});var L=g(t);n=H(L,s),L.forEach(c),r=D(N),o=m(N,"DIV",{class:!0});var U=g(o);i=m(U,"BUTTON",{class:!0});var q=g(i);f=m(q,"SPAN",{class:!0});var M=g(f);M.forEach(c),h=D(q),T.l(q),q.forEach(c),b=D(U),S&&S.l(U),U.forEach(c),N.forEach(c),y=D(B),C&&C.l(B),B.forEach(c),this.h()},h(){v(t,"class","svelte-1r197t2"),v(f,"class","svelte-1r197t2"),v(i,"class","selected svelte-1r197t2"),v(o,"class","select-box svelte-1r197t2"),ce(l,"--bg","url("+a[4]["history-select-bg.webp"]+")"),v(l,"class","wish-type svelte-1r197t2"),ie(l,"v2",a[0]),v(e,"class","selectType svelte-1r197t2"),ie(e,"v2",a[0])},m(p,B){w(p,e,B),_(e,l),_(l,t),_(t,n),_(l,r),_(l,o),_(o,i),_(i,f),f.innerHTML=u,_(i,h),T.m(i,null),_(o,b),S&&S.m(o,null),_(e,y),C&&C.m(e,null),E=!0,k||(I=Ve(i,"click",a[9]),k=!0)},p(p,[B]){(!E||B&32)&&s!==(s=p[5]("history.selectWish")+"")&&j(n,s),(!E||B&34)&&u!==(u=p[5](`wish.banner.${p[1]}`)+"")&&(f.innerHTML=u),A===(A=$(p))&&T?T.p(p,B):(T.d(1),T=A(p),T&&(T.c(),T.m(i,null))),p[2]?S?(S.p(p,B),B&4&&Q(S,1)):(S=Cs(p),S.c(),Q(S,1),S.m(o,null)):S&&(Re(),ee(S,1,1,()=>{S=null}),He()),(!E||B&16)&&ce(l,"--bg","url("+p[4]["history-select-bg.webp"]+")"),B&1&&ie(l,"v2",p[0]),p[0]?C?(C.p(p,B),B&1&&Q(C,1)):(C=Rs(p),C.c(),Q(C,1),C.m(e,null)):C&&(Re(),ee(C,1,1,()=>{C=null}),He()),B&1&&ie(e,"v2",p[0])},i(p){E||(Q(S),Q(C),E=!0)},o(p){ee(S),ee(C),E=!1},d(p){p&&c(e),T.d(),S&&S.d(),C&&C.d(),k=!1,I()}}}function gn(a,e,l){let t,s,n,r;re(a,ft,k=>l(4,n=k)),re(a,Te,k=>l(5,r=k));let{v2:o=!1}=e,{banner:i}=e,f=!1;const u=["beginner","character-event","weapon-event","standard"],h=Le("selectBanner"),b=k=>{l(2,f=!f),h(k),Lt()},y=()=>l(2,f=!f),E=k=>b(k);return a.$$set=k=>{"v2"in k&&l(0,o=k.v2),"banner"in k&&l(1,i=k.banner)},a.$$.update=()=>{a.$$.dirty&2&&l(8,t=u.findIndex(k=>k===i.toLocaleLowerCase())),a.$$.dirty&256&&l(3,s=t<0?2:t)},[o,i,f,s,n,r,u,b,t,y,E]}class pa extends De{constructor(e){super(),$e(this,e,gn,mn,Pe,{v2:0,banner:1})}}function bn(a){let e=a[3]("history.currentPity")+"",l,t,s,n,r,o,i,f,u,h,b=a[3]("history.totalPull")+"",y,E,k,I,$,A,T,S,C=a[3]("history.totalSpend")+"",p,B,N,L,U=a[1]*160+"",q,M,F,se,Z,x,te,K;return F=new sa({props:{type:"primogem"}}),{c(){l=R(e),t=R(" \xA0 "),s=d("strong"),n=R(a[4]),r=R(` \xA0 - \xA0
-	`),o=d("strong"),i=R(a[5]),f=V(),u=d("br"),h=V(),y=R(b),E=V(),k=d("span"),I=d("strong"),$=R(a[1]),A=V(),T=d("br"),S=V(),p=R(C),B=V(),N=d("span"),L=d("strong"),q=R(U),M=V(),ue(F.$$.fragment),se=R(`
-	~
-	`),Z=d("span"),x=d("strong"),te=R(a[2]),this.h()},l(z){l=H(z,e),t=H(z," \xA0 "),s=m(z,"STRONG",{class:!0});var O=g(s);n=H(O,a[4]),O.forEach(c),r=H(z,` \xA0 - \xA0
-	`),o=m(z,"STRONG",{class:!0});var Y=g(o);i=H(Y,a[5]),Y.forEach(c),f=D(z),u=m(z,"BR",{}),h=D(z),y=H(z,b),E=D(z),k=m(z,"SPAN",{class:!0});var P=g(k);I=m(P,"STRONG",{});var X=g(I);$=H(X,a[1]),X.forEach(c),P.forEach(c),A=D(z),T=m(z,"BR",{}),S=D(z),p=H(z,C),B=D(z),N=m(z,"SPAN",{class:!0});var pe=g(N);L=m(pe,"STRONG",{style:!0});var fe=g(L);q=H(fe,U),M=D(fe),_e(F.$$.fragment,fe),fe.forEach(c),pe.forEach(c),se=H(z,`
-	~
-	`),Z=m(z,"SPAN",{class:!0});var Ee=g(Z);x=m(Ee,"STRONG",{});var be=g(x);te=H(be,a[2]),be.forEach(c),Ee.forEach(c),this.h()},h(){v(s,"class","star5 svelte-1ld9lf9"),v(o,"class","star4 svelte-1ld9lf9"),v(k,"class","lighted svelte-1ld9lf9"),ce(L,"position","relative"),v(N,"class","lighted svelte-1ld9lf9"),v(Z,"class","lighted svelte-1ld9lf9")},m(z,O){w(z,l,O),w(z,t,O),w(z,s,O),_(s,n),w(z,r,O),w(z,o,O),_(o,i),w(z,f,O),w(z,u,O),w(z,h,O),w(z,y,O),w(z,E,O),w(z,k,O),_(k,I),_(I,$),w(z,A,O),w(z,T,O),w(z,S,O),w(z,p,O),w(z,B,O),w(z,N,O),_(N,L),_(L,q),_(L,M),he(F,L,null),w(z,se,O),w(z,Z,O),_(Z,x),_(x,te),K=!0},p(z,O){(!K||O&8)&&e!==(e=z[3]("history.currentPity")+"")&&j(l,e),(!K||O&16)&&j(n,z[4]),(!K||O&32)&&j(i,z[5]),(!K||O&8)&&b!==(b=z[3]("history.totalPull")+"")&&j(y,b),(!K||O&2)&&j($,z[1]),(!K||O&8)&&C!==(C=z[3]("history.totalSpend")+"")&&j(p,C),(!K||O&2)&&U!==(U=z[1]*160+"")&&j(q,U),(!K||O&4)&&j(te,z[2])},i(z){K||(Q(F.$$.fragment,z),K=!0)},o(z){ee(F.$$.fragment,z),K=!1},d(z){z&&c(l),z&&c(t),z&&c(s),z&&c(r),z&&c(o),z&&c(f),z&&c(u),z&&c(h),z&&c(y),z&&c(E),z&&c(k),z&&c(A),z&&c(T),z&&c(S),z&&c(p),z&&c(B),z&&c(N),ve(F),z&&c(se),z&&c(Z)}}}function kn(a){let e,l=a[3]("history.currentPity")+"",t,s,n,r,o,i,f,u,h,b,y=a[3]("history.totalPull")+"",E,k,I,$,A,T,S,C=a[3]("history.totalSpend")+"",p,B,N,L,U=a[1]*160+"",q,M,F,se,Z,x,te,K,z,O;return F=new sa({props:{type:"primogem"}}),{c(){e=d("div"),t=R(l),s=R(" \xA0 "),n=d("strong"),r=R(a[4]),o=R(` \xA0 - \xA0
-		`),i=d("strong"),f=R(a[5]),u=V(),h=d("br"),b=V(),E=R(y),k=V(),I=d("span"),$=d("strong"),A=R(a[1]),T=V(),S=d("div"),p=R(C),B=V(),N=d("span"),L=d("strong"),q=R(U),M=V(),ue(F.$$.fragment),se=V(),Z=d("br"),x=R(`
-		Est. `),te=d("span"),K=d("strong"),z=R(a[2]),this.h()},l(Y){e=m(Y,"DIV",{class:!0});var P=g(e);t=H(P,l),s=H(P," \xA0 "),n=m(P,"STRONG",{class:!0});var X=g(n);r=H(X,a[4]),X.forEach(c),o=H(P,` \xA0 - \xA0
-		`),i=m(P,"STRONG",{class:!0});var pe=g(i);f=H(pe,a[5]),pe.forEach(c),u=D(P),h=m(P,"BR",{}),b=D(P),E=H(P,y),k=D(P),I=m(P,"SPAN",{class:!0});var fe=g(I);$=m(fe,"STRONG",{});var Ee=g($);A=H(Ee,a[1]),Ee.forEach(c),fe.forEach(c),P.forEach(c),T=D(Y),S=m(Y,"DIV",{class:!0});var be=g(S);p=H(be,C),B=D(be),N=m(be,"SPAN",{class:!0});var ge=g(N);L=m(ge,"STRONG",{style:!0});var G=g(L);q=H(G,U),M=D(G),_e(F.$$.fragment,G),G.forEach(c),ge.forEach(c),se=D(be),Z=m(be,"BR",{}),x=H(be,`
-		Est. `),te=m(be,"SPAN",{class:!0});var oe=g(te);K=m(oe,"STRONG",{});var ae=g(K);z=H(ae,a[2]),ae.forEach(c),oe.forEach(c),be.forEach(c),this.h()},h(){v(n,"class","star5 svelte-1ld9lf9"),v(i,"class","star4 svelte-1ld9lf9"),v(I,"class","lighted svelte-1ld9lf9"),v(e,"class","cell v2 svelte-1ld9lf9"),ce(L,"position","relative"),v(N,"class","lighted svelte-1ld9lf9"),v(te,"class","lighted svelte-1ld9lf9"),v(S,"class","cell v2 svelte-1ld9lf9")},m(Y,P){w(Y,e,P),_(e,t),_(e,s),_(e,n),_(n,r),_(e,o),_(e,i),_(i,f),_(e,u),_(e,h),_(e,b),_(e,E),_(e,k),_(e,I),_(I,$),_($,A),w(Y,T,P),w(Y,S,P),_(S,p),_(S,B),_(S,N),_(N,L),_(L,q),_(L,M),he(F,L,null),_(S,se),_(S,Z),_(S,x),_(S,te),_(te,K),_(K,z),O=!0},p(Y,P){(!O||P&8)&&l!==(l=Y[3]("history.currentPity")+"")&&j(t,l),(!O||P&16)&&j(r,Y[4]),(!O||P&32)&&j(f,Y[5]),(!O||P&8)&&y!==(y=Y[3]("history.totalPull")+"")&&j(E,y),(!O||P&2)&&j(A,Y[1]),(!O||P&8)&&C!==(C=Y[3]("history.totalSpend")+"")&&j(p,C),(!O||P&2)&&U!==(U=Y[1]*160+"")&&j(q,U),(!O||P&4)&&j(z,Y[2])},i(Y){O||(Q(F.$$.fragment,Y),O=!0)},o(Y){ee(F.$$.fragment,Y),O=!1},d(Y){Y&&c(e),Y&&c(T),Y&&c(S),ve(F)}}}function En(a){let e,l,t,s;const n=[kn,bn],r=[];function o(i,f){return i[0]?0:1}return e=o(a),l=r[e]=n[e](a),{c(){l.c(),t=le()},l(i){l.l(i),t=le()},m(i,f){r[e].m(i,f),w(i,t,f),s=!0},p(i,[f]){let u=e;e=o(i),e===u?r[e].p(i,f):(Re(),ee(r[u],1,1,()=>{r[u]=null}),He(),l=r[e],l?l.p(i,f):(l=r[e]=n[e](i),l.c()),Q(l,1),l.m(t.parentNode,t))},i(i){s||(Q(l),s=!0)},o(i){ee(l),s=!1},d(i){r[e].d(i),i&&c(t)}}}function wn(a,e,l){let t,s,n,r;re(a,Te,h=>l(3,s=h));let{v2:o=!1}=e,{dataLength:i=0}=e;const f=Le("pity5");re(a,f,h=>l(4,n=h));const u=Le("pity4");return re(a,u,h=>l(5,r=h)),a.$$set=h=>{"v2"in h&&l(0,o=h.v2),"dataLength"in h&&l(1,i=h.dataLength)},a.$$.update=()=>{a.$$.dirty&2&&l(2,t=Ra.getTotalSpend(i))},[o,i,t,s,n,r,f,u]}class da extends De{constructor(e){super(),$e(this,e,wn,En,Pe,{v2:0,dataLength:1})}}function Hs(a){let e,l,t=a[2]("history.filterAll")+"",s,n,r,o=a[2]("history.filter",{values:{rarity:5}})+"",i,f,u,h=a[2]("history.filter",{values:{rarity:4}})+"",b,y,E,k=a[2]("history.filter",{values:{rarity:3}})+"",I,$,A,T,S;return{c(){e=d("div"),l=d("span"),s=R(t),n=V(),r=d("span"),i=R(o),f=V(),u=d("span"),b=R(h),y=V(),E=d("span"),I=R(k),this.h()},l(C){e=m(C,"DIV",{class:!0});var p=g(e);l=m(p,"SPAN",{class:!0});var B=g(l);s=H(B,t),B.forEach(c),n=D(p),r=m(p,"SPAN",{class:!0});var N=g(r);i=H(N,o),N.forEach(c),f=D(p),u=m(p,"SPAN",{class:!0});var L=g(u);b=H(L,h),L.forEach(c),y=D(p),E=m(p,"SPAN",{class:!0});var U=g(E);I=H(U,k),U.forEach(c),p.forEach(c),this.h()},h(){v(l,"class","svelte-7nxbbl"),ie(l,"active",isNaN(a[0])),v(r,"class","svelte-7nxbbl"),ie(r,"active",a[0]===5),v(u,"class","svelte-7nxbbl"),ie(u,"active",a[0]===4),v(E,"class","svelte-7nxbbl"),ie(E,"active",a[0]===3),v(e,"class","options svelte-7nxbbl")},m(C,p){w(C,e,p),_(e,l),_(l,s),_(e,n),_(e,r),_(r,i),_(e,f),_(e,u),_(u,b),_(e,y),_(e,E),_(E,I),A=!0,T||(S=[Ve(l,"click",a[7]),Ve(r,"click",a[8]),Ve(u,"click",a[9]),Ve(E,"click",a[10])],T=!0)},p(C,p){(!A||p&4)&&t!==(t=C[2]("history.filterAll")+"")&&j(s,t),p&1&&ie(l,"active",isNaN(C[0])),(!A||p&4)&&o!==(o=C[2]("history.filter",{values:{rarity:5}})+"")&&j(i,o),p&1&&ie(r,"active",C[0]===5),(!A||p&4)&&h!==(h=C[2]("history.filter",{values:{rarity:4}})+"")&&j(b,h),p&1&&ie(u,"active",C[0]===4),(!A||p&4)&&k!==(k=C[2]("history.filter",{values:{rarity:3}})+"")&&j(I,k),p&1&&ie(E,"active",C[0]===3)},i(C){A||(Nt(()=>{$||($=st(e,Dt,{duration:200},!0)),$.run(1)}),A=!0)},o(C){$||($=st(e,Dt,{duration:200},!1)),$.run(0),A=!1},d(C){C&&c(e),C&&$&&$.end(),T=!1,Jt(S)}}}function yn(a){let e,l,t=a[2]("history.filterTxt")+"",s,n,r,o,i,f,u,h,b,y,E=a[3]&&Hs(a);return{c(){e=d("div"),l=d("span"),s=R(t),n=R(" / "),r=R(a[4]),o=V(),i=d("i"),u=V(),E&&E.c(),this.h()},l(k){e=m(k,"DIV",{class:!0});var I=g(e);l=m(I,"SPAN",{class:!0});var $=g(l);s=H($,t),n=H($," / "),r=H($,a[4]),o=D($),i=m($,"I",{class:!0}),g(i).forEach(c),$.forEach(c),u=D(I),E&&E.l(I),I.forEach(c),this.h()},h(){v(i,"class",f="gi-caret-"+(a[3]?"up":"down")),v(l,"class","filter-selected svelte-7nxbbl"),v(e,"class","table-filter svelte-7nxbbl"),ie(e,"v2",a[1])},m(k,I){w(k,e,I),_(e,l),_(l,s),_(l,n),_(l,r),_(l,o),_(l,i),_(e,u),E&&E.m(e,null),h=!0,b||(y=Ve(l,"click",a[6]),b=!0)},p(k,[I]){(!h||I&4)&&t!==(t=k[2]("history.filterTxt")+"")&&j(s,t),(!h||I&16)&&j(r,k[4]),(!h||I&8&&f!==(f="gi-caret-"+(k[3]?"up":"down")))&&v(i,"class",f),k[3]?E?(E.p(k,I),I&8&&Q(E,1)):(E=Hs(k),E.c(),Q(E,1),E.m(e,null)):E&&(Re(),ee(E,1,1,()=>{E=null}),He()),I&2&&ie(e,"v2",k[1])},i(k){h||(Q(E),h=!0)},o(k){ee(E),h=!1},d(k){k&&c(e),E&&E.d(),b=!1,y()}}}function In(a,e,l){let t,s;re(a,Te,k=>l(2,s=k));let{filterBy:n}=e,{v2:r=!1}=e,o=!1;const i=Le("tableFilter"),f=k=>{l(3,o=!o),i(k)},u=()=>l(3,o=!o),h=()=>f("All"),b=()=>f(5),y=()=>f(4),E=()=>f(3);return a.$$set=k=>{"filterBy"in k&&l(0,n=k.filterBy),"v2"in k&&l(1,r=k.v2)},a.$$.update=()=>{a.$$.dirty&5&&l(4,t=isNaN(n)?s("history.filterAll"):s("history.filter",{values:{rarity:n}}))},[n,r,s,o,t,f,u,h,b,y,E]}class ma extends De{constructor(e){super(),$e(this,e,In,yn,Pe,{filterBy:0,v2:1})}}function Ms(a,e,l){const t=a.slice();return t[6]=e[l],t}function Os(a){let e,l=a[2],t=[];for(let s=0;s<l.length;s+=1)t[s]=Gs(Ms(a,l,s));return{c(){e=d("div");for(let s=0;s<t.length;s+=1)t[s].c();this.h()},l(s){e=m(s,"DIV",{class:!0});var n=g(e);for(let r=0;r<t.length;r+=1)t[r].l(n);n.forEach(c),this.h()},h(){v(e,"class","legend svelte-44dcek"),ie(e,"v2",a[1])},m(s,n){w(s,e,n);for(let r=0;r<t.length;r+=1)t[r].m(e,null)},p(s,n){if(n&12){l=s[2];let r;for(r=0;r<l.length;r+=1){const o=Ms(s,l,r);t[r]?t[r].p(o,n):(t[r]=Gs(o),t[r].c(),t[r].m(e,null))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}n&2&&ie(e,"v2",s[1])},d(s){s&&c(e),me(t,s)}}}function Gs(a){let e,l,t,s,n,r=a[3](`history.${a[6]}`)+"",o,i;return{c(){e=d("div"),l=d("span"),t=d("i"),n=R(`
-				\xA0 : \xA0 `),o=R(r),i=V(),this.h()},l(f){e=m(f,"DIV",{class:!0});var u=g(e);l=m(u,"SPAN",{class:!0});var h=g(l);t=m(h,"I",{class:!0,style:!0}),g(t).forEach(c),h.forEach(c),n=H(u,`
-				\xA0 : \xA0 `),o=H(u,r),i=D(u),u.forEach(c),this.h()},h(){v(t,"class",s="gi-"+a[6]+" svelte-44dcek"),ce(t,"font-size","larger"),v(l,"class","star5 svelte-44dcek"),v(e,"class","item svelte-44dcek")},m(f,u){w(f,e,u),_(e,l),_(l,t),_(e,n),_(e,o),_(e,i)},p(f,u){u&4&&s!==(s="gi-"+f[6]+" svelte-44dcek")&&v(t,"class",s),u&12&&r!==(r=f[3](`history.${f[6]}`)+"")&&j(o,r)},d(f){f&&c(e)}}}function Nn(a){let e=!["beginner","standard"].includes(a[0]),l,t=e&&Os(a);return{c(){t&&t.c(),l=le()},l(s){t&&t.l(s),l=le()},m(s,n){t&&t.m(s,n),w(s,l,n)},p(s,[n]){n&1&&(e=!["beginner","standard"].includes(s[0])),e?t?t.p(s,n):(t=Os(s),t.c(),t.m(l.parentNode,l)):t&&(t.d(1),t=null)},i:de,o:de,d(s){t&&t.d(s),s&&c(l)}}}function Vn(a,e,l){let t,s,n,r;re(a,Te,f=>l(3,r=f));let{banner:o}=e,{v2:i}=e;return a.$$set=f=>{"banner"in f&&l(0,o=f.banner),"v2"in f&&l(1,i=f.v2)},a.$$.update=()=>{a.$$.dirty&49&&l(2,n=o==="character-event"?s:t)},l(4,t=["win","lose","guaranteed","selected"]),l(5,s=["win","lose","guaranteed"]),[o,i,n,r,t,s]}class ga extends De{constructor(e){super(),$e(this,e,Vn,Nn,Pe,{banner:0,v2:1})}}function Us(a,e,l){const t=a.slice();return t[16]=e[l].name,t[17]=e[l].type,t[18]=e[l].rarity,t[19]=e[l].time,t[20]=e[l].pity,t[21]=e[l].bannerName,t[22]=e[l].status,t[23]=e[l].custom,t}function Dn(a){const e=a.slice(),l=na(e[21]).name;return e[26]=l,e}function $n(a){let e,l=a[5](a[3],a[2]),t=[];for(let s=0;s<l.length;s+=1)t[s]=Fs(Us(a,l,s));return{c(){for(let s=0;s<t.length;s+=1)t[s].c();e=le()},l(s){for(let n=0;n<t.length;n+=1)t[n].l(s);e=le()},m(s,n){for(let r=0;r<t.length;r+=1)t[r].m(s,n);w(s,e,n)},p(s,n){if(n&126){l=s[5](s[3],s[2]);let r;for(r=0;r<l.length;r+=1){const o=Us(s,l,r);t[r]?t[r].p(o,n):(t[r]=Fs(o),t[r].c(),t[r].m(e.parentNode,e))}for(;r<t.length;r+=1)t[r].d(1);t.length=l.length}},d(s){me(t,s),s&&c(e)}}}function Pn(a){let e,l,t=a[4]("history.noData")+"",s;return{c(){e=d("div"),l=d("div"),s=R(t),this.h()},l(n){e=m(n,"DIV",{class:!0,style:!0});var r=g(e);l=m(r,"DIV",{class:!0});var o=g(l);s=H(o,t),o.forEach(c),r.forEach(c),this.h()},h(){v(l,"class","cell svelte-109z5ik"),v(e,"class","row svelte-109z5ik"),ce(e,"justify-content","center")},m(n,r){w(n,e,r),_(e,l),_(l,s)},p(n,r){r&16&&t!==(t=n[4]("history.noData")+"")&&j(s,t)},d(n){n&&c(e)}}}function qs(a){let e,l,t;return{c(){e=d("span"),l=d("i"),this.h()},l(s){e=m(s,"SPAN",{class:!0});var n=g(e);l=m(n,"I",{class:!0}),g(l).forEach(c),n.forEach(c),this.h()},h(){v(l,"class",t="gi-"+a[22]+" svelte-109z5ik"),v(e,"class","status svelte-109z5ik")},m(s,n){w(s,e,n),_(e,l)},p(s,n){n&12&&t!==(t="gi-"+s[22]+" svelte-109z5ik")&&v(l,"class",t)},d(s){s&&c(e)}}}function Tn(a){let e,l=(a[17]==="weapon"?a[4](a[16]):a[4](`${a[16]}.name`))+"",t,s,n,r=a[18]>3&&Ws(a);return{c(){e=d("div"),t=R(l),s=V(),r&&r.c(),this.h()},l(o){e=m(o,"DIV",{class:!0});var i=g(e);t=H(i,l),s=D(i),r&&r.l(i),i.forEach(c),this.h()},h(){v(e,"class",n="cell cell2 star"+a[18]+" svelte-109z5ik")},m(o,i){w(o,e,i),_(e,t),_(e,s),r&&r.m(e,null)},p(o,i){i&28&&l!==(l=(o[17]==="weapon"?o[4](o[16]):o[4](`${o[16]}.name`))+"")&&j(t,l),o[18]>3?r?r.p(o,i):(r=Ws(o),r.c(),r.m(e,null)):r&&(r.d(1),r=null),i&12&&n!==(n="cell cell2 star"+o[18]+" svelte-109z5ik")&&v(e,"class",n)},d(o){o&&c(e),r&&r.d()}}}function Sn(a){let e,l=a[16]+"",t,s,n;return{c(){e=d("div"),t=R(l),s=R(" ( 5\u2605 )"),this.h()},l(r){e=m(r,"DIV",{class:!0});var o=g(e);t=H(o,l),s=H(o," ( 5\u2605 )"),o.forEach(c),this.h()},h(){v(e,"class",n="cell cell2 star"+a[18]+" svelte-109z5ik")},m(r,o){w(r,e,o),_(e,t),_(e,s)},p(r,o){o&12&&l!==(l=r[16]+"")&&j(t,l),o&12&&n!==(n="cell cell2 star"+r[18]+" svelte-109z5ik")&&v(e,"class",n)},d(r){r&&c(e)}}}function Ws(a){let e,l=a[18]+"",t,s;return{c(){e=R("( "),t=R(l),s=R("\u2605 )")},l(n){e=H(n,"( "),t=H(n,l),s=H(n,"\u2605 )")},m(n,r){w(n,e,r),w(n,t,r),w(n,s,r)},p(n,r){r&12&&l!==(l=n[18]+"")&&j(t,l)},d(n){n&&c(e),n&&c(t),n&&c(s)}}}function An(a){let e=a[4]("history.untracked")+"",l;return{c(){l=R(e)},l(t){l=H(t,e)},m(t,s){w(t,l,s)},p(t,s){s&16&&e!==(e=t[4]("history.untracked")+"")&&j(l,e)},d(t){t&&c(l)}}}function js(a){let e,l;function t(r,o){return o&2&&(e=null),r[23]||!r[26]?Cn:(e==null&&(e=!!r[1].match("event")),e?Bn:Ln)}let s=t(a,-1),n=s(a);return{c(){n.c(),l=le()},l(r){n.l(r),l=le()},m(r,o){n.m(r,o),w(r,l,o)},p(r,o){s===(s=t(r,o))&&n?n.p(r,o):(n.d(1),n=s(r),n&&(n.c(),n.m(l.parentNode,l)))},d(r){n.d(r),r&&c(l)}}}function Ln(a){let e=a[4]("banner.wanderlust")+"",l;return{c(){l=R(e)},l(t){l=H(t,e)},m(t,s){w(t,l,s)},p(t,s){s&16&&e!==(e=t[4]("banner.wanderlust")+"")&&j(l,e)},d(t){t&&c(l)}}}function Bn(a){let e,l=a[4](`banner.${a[26]}`)+"",t,s;function n(){return a[8](a[21])}return{c(){e=d("a"),this.h()},l(r){e=m(r,"A",{href:!0,class:!0});var o=g(e);o.forEach(c),this.h()},h(){v(e,"href","/"),v(e,"class","svelte-109z5ik")},m(r,o){w(r,e,o),e.innerHTML=l,t||(s=Ve(e,"click",wa(n)),t=!0)},p(r,o){a=r,o&28&&l!==(l=a[4](`banner.${a[26]}`)+"")&&(e.innerHTML=l)},d(r){r&&c(e),t=!1,s()}}}function Cn(a){let e,l=a[21]+"",t;return{c(){e=d("span"),t=R(l),this.h()},l(s){e=m(s,"SPAN",{class:!0});var n=g(e);t=H(n,l),n.forEach(c),this.h()},h(){v(e,"class","svelte-109z5ik")},m(s,n){w(s,e,n),_(e,t)},p(s,n){n&12&&l!==(l=s[21]+"")&&j(t,l)},d(s){s&&c(e)}}}function Fs(a){let e,l,t=a[20]+"",s,n,r,o,i,f=a[4](a[17])+"",u,h,b,y,E=a[19]+"",k,I,$,A,T=a[22]&&qs(a);function S(q,M){return q[23]?Sn:Tn}let C=S(a),p=C(a);function B(q,M){return q[21]?js:An}function N(q,M){return M===js?Dn(q):q}let L=B(a),U=L(N(a,L));return{c(){e=d("div"),l=d("div"),s=R(t),n=V(),T&&T.c(),o=V(),i=d("div"),u=R(f),h=V(),p.c(),b=V(),y=d("div"),k=R(E),I=V(),$=d("div"),U.c(),A=V(),this.h()},l(q){e=m(q,"DIV",{class:!0});var M=g(e);l=m(M,"DIV",{class:!0});var F=g(l);s=H(F,t),n=D(F),T&&T.l(F),F.forEach(c),o=D(M),i=m(M,"DIV",{class:!0});var se=g(i);u=H(se,f),se.forEach(c),h=D(M),p.l(M),b=D(M),y=m(M,"DIV",{class:!0});var Z=g(y);k=H(Z,E),Z.forEach(c),I=D(M),$=m(M,"DIV",{class:!0});var x=g($);U.l(x),x.forEach(c),A=D(M),M.forEach(c),this.h()},h(){v(l,"class",r="cell cell0 star"+a[18]+" svelte-109z5ik"),v(i,"class","cell cell1 svelte-109z5ik"),v(y,"class","cell cell3 svelte-109z5ik"),v($,"class","cell cell4 svelte-109z5ik"),v(e,"class","row svelte-109z5ik")},m(q,M){w(q,e,M),_(e,l),_(l,s),_(l,n),T&&T.m(l,null),_(e,o),_(e,i),_(i,u),_(e,h),p.m(e,null),_(e,b),_(e,y),_(y,k),_(e,I),_(e,$),U.m($,null),_(e,A)},p(q,M){M&12&&t!==(t=q[20]+"")&&j(s,t),q[22]?T?T.p(q,M):(T=qs(q),T.c(),T.m(l,null)):T&&(T.d(1),T=null),M&12&&r!==(r="cell cell0 star"+q[18]+" svelte-109z5ik")&&v(l,"class",r),M&28&&f!==(f=q[4](q[17])+"")&&j(u,f),C===(C=S(q))&&p?p.p(q,M):(p.d(1),p=C(q),p&&(p.c(),p.m(e,b))),M&12&&E!==(E=q[19]+"")&&j(k,E),L===(L=B(q))&&U?U.p(N(q,L),M):(U.d(1),U=L(N(q,L)),U&&(U.c(),U.m($,null)))},d(q){q&&c(e),T&&T.d(),p.d(),U.d()}}}function zn(a){let e,l,t,s,n=a[4]("history.pity")+"",r,o,i,f=a[4]("details.itemType")+"",u,h,b,y=a[4]("details.itemName")+"",E,k,I,$=a[4]("history.timeReceived")+"",A,T,S,C=a[4]("wish.banner.text")+"",p,B,N;function L(M,F){return M[3].length<1?Pn:$n}let U=L(a),q=U(a);return{c(){e=d("div"),l=d("div"),t=d("div"),s=d("div"),r=R(n),o=V(),i=d("div"),u=R(f),h=V(),b=d("div"),E=R(y),k=V(),I=d("div"),A=R($),T=V(),S=d("div"),p=R(C),B=V(),N=d("div"),q.c(),this.h()},l(M){e=m(M,"DIV",{class:!0});var F=g(e);l=m(F,"DIV",{style:!0});var se=g(l);t=m(se,"DIV",{class:!0});var Z=g(t);s=m(Z,"DIV",{class:!0});var x=g(s);r=H(x,n),x.forEach(c),o=D(Z),i=m(Z,"DIV",{class:!0});var te=g(i);u=H(te,f),te.forEach(c),h=D(Z),b=m(Z,"DIV",{class:!0});var K=g(b);E=H(K,y),K.forEach(c),k=D(Z),I=m(Z,"DIV",{class:!0});var z=g(I);A=H(z,$),z.forEach(c),T=D(Z),S=m(Z,"DIV",{class:!0});var O=g(S);p=H(O,C),O.forEach(c),Z.forEach(c),B=D(se),N=m(se,"DIV",{class:!0});var Y=g(N);q.l(Y),Y.forEach(c),se.forEach(c),F.forEach(c),this.h()},h(){v(s,"class","cell cell0 svelte-109z5ik"),v(i,"class","cell cell1 svelte-109z5ik"),v(b,"class","cell cell2 svelte-109z5ik"),v(I,"class","cell cell3 svelte-109z5ik"),v(S,"class","cell cell4 svelte-109z5ik"),v(t,"class","row head svelte-109z5ik"),v(N,"class","body svelte-109z5ik"),ce(l,"min-width","max-content"),v(e,"class","table svelte-109z5ik"),ie(e,"v2",a[0])},m(M,F){w(M,e,F),_(e,l),_(l,t),_(t,s),_(s,r),_(t,o),_(t,i),_(i,u),_(t,h),_(t,b),_(b,E),_(t,k),_(t,I),_(I,A),_(t,T),_(t,S),_(S,p),_(l,B),_(l,N),q.m(N,null)},p(M,[F]){F&16&&n!==(n=M[4]("history.pity")+"")&&j(r,n),F&16&&f!==(f=M[4]("details.itemType")+"")&&j(u,f),F&16&&y!==(y=M[4]("details.itemName")+"")&&j(E,y),F&16&&$!==($=M[4]("history.timeReceived")+"")&&j(A,$),F&16&&C!==(C=M[4]("wish.banner.text")+"")&&j(p,C),U===(U=L(M))&&q?q.p(M,F):(q.d(1),q=U(M),q&&(q.c(),q.m(N,null))),F&1&&ie(e,"v2",M[0])},i:de,o:de,d(M){M&&c(e),q.d()}}}function Rn(a,e,l){let t;re(a,Te,T=>l(4,t=T));let{v2:s=!1}=e,{banner:n="beginner"}=e,{filter:r=""}=e,{page:o={itemPerPage:0,activepage:0}}=e,i=[],f=[];const{getListByBanner:u}=oa,h=Le("setDataLength"),b=(T,{itemPerPage:S=0,activepage:C=0}={})=>T.filter((B,N)=>{const L=N>(C-1)*S-1,U=N<S*C;return L&&U}),y=T=>i.filter(({rarity:S})=>S===T),E=async(T,S)=>(i=(await u(T)).map(p=>p).reverse(),l(3,f=S&&S!=="All"?y(S):i),h(i.length,f.length),i),k=Le("query"),I=Le("navigate"),$=T=>{k.set(Fe(T)),I("allbanners")},A=T=>$(T);return a.$$set=T=>{"v2"in T&&l(0,s=T.v2),"banner"in T&&l(1,n=T.banner),"filter"in T&&l(7,r=T.filter),"page"in T&&l(2,o=T.page)},a.$$.update=()=>{a.$$.dirty&130&&E(n,r)},[s,n,o,f,t,b,$,r,A]}class ba extends De{constructor(e){super(),$e(this,e,Rn,zn,Pe,{v2:0,banner:1,filter:7,page:2})}}function Hn(a){let e,l,t,s=a[7]("history.disclaimer")+"",n,r,o,i,f,u,h,b,y,E,k,I,$,A,T,S,C;return e=new pa({props:{banner:a[1]}}),f=new da({props:{dataLength:a[2]}}),b=new va({props:{banner:a[1]}}),E=new ma({props:{filterBy:a[5]}}),I=new ba({props:{banner:a[1],filter:a[5],page:{activepage:a[4],itemPerPage:a[8]}}}),A=new ga({props:{banner:a[1]}}),S=new ca({props:{dataLength:a[3],itemPerPage:a[8],activepage:a[4]}}),{c(){ue(e.$$.fragment),l=V(),t=d("p"),n=R(s),r=V(),o=d("div"),i=d("div"),ue(f.$$.fragment),u=V(),h=d("div"),ue(b.$$.fragment),y=V(),ue(E.$$.fragment),k=V(),ue(I.$$.fragment),$=V(),ue(A.$$.fragment),T=V(),ue(S.$$.fragment),this.h()},l(p){_e(e.$$.fragment,p),l=D(p),t=m(p,"P",{class:!0});var B=g(t);n=H(B,s),B.forEach(c),r=D(p),o=m(p,"DIV",{class:!0});var N=g(o);i=m(N,"DIV",{class:!0});var L=g(i);_e(f.$$.fragment,L),L.forEach(c),u=D(N),h=m(N,"DIV",{class:!0});var U=g(h);_e(b.$$.fragment,U),y=D(U),_e(E.$$.fragment,U),U.forEach(c),N.forEach(c),k=D(p),_e(I.$$.fragment,p),$=D(p),_e(A.$$.fragment,p),T=D(p),_e(S.$$.fragment,p),this.h()},h(){v(t,"class","svelte-pw412y"),v(i,"class","left svelte-pw412y"),v(h,"class","right svelte-pw412y"),v(o,"class","info svelte-pw412y")},m(p,B){he(e,p,B),w(p,l,B),w(p,t,B),_(t,n),w(p,r,B),w(p,o,B),_(o,i),he(f,i,null),_(o,u),_(o,h),he(b,h,null),_(h,y),he(E,h,null),w(p,k,B),he(I,p,B),w(p,$,B),he(A,p,B),w(p,T,B),he(S,p,B),C=!0},p(p,B){const N={};B&2&&(N.banner=p[1]),e.$set(N),(!C||B&128)&&s!==(s=p[7]("history.disclaimer")+"")&&j(n,s);const L={};B&4&&(L.dataLength=p[2]),f.$set(L);const U={};B&2&&(U.banner=p[1]),b.$set(U);const q={};B&32&&(q.filterBy=p[5]),E.$set(q);const M={};B&2&&(M.banner=p[1]),B&32&&(M.filter=p[5]),B&16&&(M.page={activepage:p[4],itemPerPage:p[8]}),I.$set(M);const F={};B&2&&(F.banner=p[1]),A.$set(F);const se={};B&8&&(se.dataLength=p[3]),B&16&&(se.activepage=p[4]),S.$set(se)},i(p){C||(Q(e.$$.fragment,p),Q(f.$$.fragment,p),Q(b.$$.fragment,p),Q(E.$$.fragment,p),Q(I.$$.fragment,p),Q(A.$$.fragment,p),Q(S.$$.fragment,p),C=!0)},o(p){ee(e.$$.fragment,p),ee(f.$$.fragment,p),ee(b.$$.fragment,p),ee(E.$$.fragment,p),ee(I.$$.fragment,p),ee(A.$$.fragment,p),ee(S.$$.fragment,p),C=!1},d(p){ve(e,p),p&&c(l),p&&c(t),p&&c(r),p&&c(o),ve(f),ve(b),ve(E),p&&c(k),ve(I,p),p&&c($),ve(A,p),p&&c(T),ve(S,p)}}}function Mn(a){let e,l,t,s,n,r,o,i=a[7]("history.disclaimer")+"",f,u,h,b,y,E,k,I,$,A,T,S,C,p,B;return e=new ha({props:{type:"history"}}),t=new pa({props:{v2:!0,banner:a[1]}}),b=new da({props:{dataLength:a[2],v2:!0}}),E=new ma({props:{filterBy:a[5],v2:!0}}),I=new ba({props:{v2:!0,banner:a[1],filter:a[5],page:{activepage:a[4],itemPerPage:a[8]}}}),A=new fa({props:{type:"banner"}}),S=new ga({props:{banner:a[1],v2:!0}}),p=new ca({props:{v2:!0,dataLength:a[3],itemPerPage:a[8],activepage:a[4]}}),{c(){ue(e.$$.fragment),l=V(),ue(t.$$.fragment),s=V(),n=d("div"),r=d("div"),o=d("p"),f=R(i),u=V(),h=d("div"),ue(b.$$.fragment),y=V(),ue(E.$$.fragment),k=V(),ue(I.$$.fragment),$=V(),ue(A.$$.fragment),T=V(),ue(S.$$.fragment),C=V(),ue(p.$$.fragment),this.h()},l(N){_e(e.$$.fragment,N),l=D(N),_e(t.$$.fragment,N),s=D(N),n=m(N,"DIV",{class:!0});var L=g(n);r=m(L,"DIV",{class:!0});var U=g(r);o=m(U,"P",{class:!0});var q=g(o);f=H(q,i),q.forEach(c),u=D(U),h=m(U,"DIV",{class:!0});var M=g(h);_e(b.$$.fragment,M),y=D(M),_e(E.$$.fragment,M),M.forEach(c),k=D(U),_e(I.$$.fragment,U),$=D(U),_e(A.$$.fragment,U),U.forEach(c),L.forEach(c),T=D(N),_e(S.$$.fragment,N),C=D(N),_e(p.$$.fragment,N),this.h()},h(){v(o,"class","v2 svelte-pw412y"),v(h,"class","row svelte-pw412y"),v(r,"class","wrapper"),v(n,"class","container svelte-pw412y")},m(N,L){he(e,N,L),w(N,l,L),he(t,N,L),w(N,s,L),w(N,n,L),_(n,r),_(r,o),_(o,f),_(r,u),_(r,h),he(b,h,null),_(h,y),he(E,h,null),_(r,k),he(I,r,null),_(r,$),he(A,r,null),a[11](n),w(N,T,L),he(S,N,L),w(N,C,L),he(p,N,L),B=!0},p(N,L){const U={};L&2&&(U.banner=N[1]),t.$set(U),(!B||L&128)&&i!==(i=N[7]("history.disclaimer")+"")&&j(f,i);const q={};L&4&&(q.dataLength=N[2]),b.$set(q);const M={};L&32&&(M.filterBy=N[5]),E.$set(M);const F={};L&2&&(F.banner=N[1]),L&32&&(F.filter=N[5]),L&16&&(F.page={activepage:N[4],itemPerPage:N[8]}),I.$set(F);const se={};L&2&&(se.banner=N[1]),S.$set(se);const Z={};L&8&&(Z.dataLength=N[3]),L&16&&(Z.activepage=N[4]),p.$set(Z)},i(N){B||(Q(e.$$.fragment,N),Q(t.$$.fragment,N),Q(b.$$.fragment,N),Q(E.$$.fragment,N),Q(I.$$.fragment,N),Q(A.$$.fragment,N),Q(S.$$.fragment,N),Q(p.$$.fragment,N),B=!0)},o(N){ee(e.$$.fragment,N),ee(t.$$.fragment,N),ee(b.$$.fragment,N),ee(E.$$.fragment,N),ee(I.$$.fragment,N),ee(A.$$.fragment,N),ee(S.$$.fragment,N),ee(p.$$.fragment,N),B=!1},d(N){ve(e,N),N&&c(l),ve(t,N),N&&c(s),N&&c(n),ve(b),ve(E),ve(I),ve(A),a[11](null),N&&c(T),ve(S,N),N&&c(C),ve(p,N)}}}function On(a){let e,l,t,s,n,r;document.title=e=`
-		`+a[7]("history.title")+" | "+a[7]("title",{default:Yt})+`
-	`;const o=[Mn,Hn],i=[];function f(u,h){return u[0]==="v2"?0:1}return t=f(a),s=i[t]=o[t](a),{c(){l=V(),s.c(),n=le()},l(u){xs('[data-svelte="svelte-1sz4zek"]',document.head).forEach(c),l=D(u),s.l(u),n=le()},m(u,h){w(u,l,h),i[t].m(u,h),w(u,n,h),r=!0},p(u,[h]){(!r||h&128)&&e!==(e=`
-		`+u[7]("history.title")+" | "+u[7]("title",{default:Yt})+`
-	`)&&(document.title=e);let b=t;t=f(u),t===b?i[t].p(u,h):(Re(),ee(i[b],1,1,()=>{i[b]=null}),He(),s=i[t],s?s.p(u,h):(s=i[t]=o[t](u),s.c()),Q(s,1),s.m(n.parentNode,n))},i(u){r||(Q(s),r=!0)},o(u){ee(s),r=!1},d(u){u&&c(l),i[t].d(u),u&&c(n)}}}function Gn(a,e,l){let t,s,n,r;re(a,aa,p=>l(9,s=p)),re(a,ra,p=>l(10,n=p)),re(a,Te,p=>l(7,r=p));let{tplVersion:o}=e,i=0,f=0,u=1,h=o==="v2"?5:6,b="All";const y=Hl(0),E=Hl(0);qe("pity5",y),qe("pity4",E),qe("selectBanner",p=>{l(4,u=1),l(1,t=p),l(5,b="All")}),qe("clearHistory",()=>{l(5,b="clear"),l(4,u=1)}),qe("tableFilter",p=>{l(5,b=p),l(4,u=1)}),qe("setDataLength",(p,B)=>{l(2,i=p),l(3,f=B)}),qe("navigation",p=>l(4,u=p));let S;Js(()=>{la(S,{sizeAutoCapable:!1,className:"os-theme-light"})});function C(p){ea[p?"unshift":"push"](()=>{S=p,l(6,S)})}return a.$$set=p=>{"tplVersion"in p&&l(0,o=p.tplVersion)},a.$$.update=()=>{a.$$.dirty&1536&&l(1,t=n.find((p,B)=>B===s).type),a.$$.dirty&2&&y.set(Ft.get(`pity5-${t}`)),a.$$.dirty&2&&E.set(Ft.get(`pity4-${t}`))},[o,t,i,f,u,b,S,r,h,s,n,C]}class Un extends De{constructor(e){super(),$e(this,e,Gn,On,Pe,{tplVersion:0})}}function Ys(a){let e,l,t,s,n,r=a[3]("history.switchv2")+"",o,i,f,u;return{c(){e=d("div"),l=d("button"),t=d("i"),s=V(),n=d("button"),o=R(r),this.h()},l(h){e=m(h,"DIV",{class:!0});var b=g(e);l=m(b,"BUTTON",{});var y=g(l);t=m(y,"I",{class:!0}),g(t).forEach(c),y.forEach(c),s=D(b),n=m(b,"BUTTON",{class:!0});var E=g(n);o=H(E,r),E.forEach(c),b.forEach(c),this.h()},h(){v(t,"class","gi-reply svelte-1wx1xeh"),v(n,"class","switchNewTpl svelte-1wx1xeh"),v(e,"class","header svelte-1wx1xeh")},m(h,b){w(h,e,b),_(e,l),_(l,t),_(e,s),_(e,n),_(n,o),f||(u=[Ve(l,"click",a[5]),Ve(n,"click",a[7])],f=!0)},p(h,b){b&8&&r!==(r=h[3]("history.switchv2")+"")&&j(o,r)},i(h){i||Nt(()=>{i=ya(e,ta,{y:-25}),i.start()})},o:de,d(h){h&&c(e),f=!1,Jt(u)}}}function qn(a){let e,l;return e=new Un({props:{tplVersion:a[1]}}),{c(){ue(e.$$.fragment)},l(t){_e(e.$$.fragment,t)},m(t,s){he(e,t,s),l=!0},p(t,s){const n={};s&2&&(n.tplVersion=t[1]),e.$set(n)},i(t){l||(Q(e.$$.fragment,t),l=!0)},o(t){ee(e.$$.fragment,t),l=!1},d(t){ve(e,t)}}}function Wn(a){let e,l;return e=new fn({props:{tplVersion:a[1]}}),{c(){ue(e.$$.fragment)},l(t){_e(e.$$.fragment,t)},m(t,s){he(e,t,s),l=!0},p(t,s){const n={};s&2&&(n.tplVersion=t[1]),e.$set(n)},i(t){l||(Q(e.$$.fragment,t),l=!0)},o(t){ee(e.$$.fragment,t),l=!1},d(t){ve(e,t)}}}function jn(a){let e,l,t,s;const n=[Wn,qn],r=[];function o(i,f){return i[0]==="details"?0:i[0]==="history"?1:-1}return~(e=o(a))&&(l=r[e]=n[e](a)),{c(){l&&l.c(),t=le()},l(i){l&&l.l(i),t=le()},m(i,f){~e&&r[e].m(i,f),w(i,t,f),s=!0},p(i,f){let u=e;e=o(i),e===u?~e&&r[e].p(i,f):(l&&(Re(),ee(r[u],1,1,()=>{r[u]=null}),He()),~e?(l=r[e],l?l.p(i,f):(l=r[e]=n[e](i),l.c()),Q(l,1),l.m(t.parentNode,t)):l=null)},i(i){s||(Q(l),s=!0)},o(i){ee(l),s=!1},d(i){~e&&r[e].d(i),i&&c(t)}}}function Fn(a){let e,l,t,s,n,r,o,i=a[1]!=="v2"&&Ys(a);return s=new Ka({props:{tplVersion:a[1],$$slots:{default:[jn]},$$scope:{ctx:a}}}),{c(){e=d("section"),i&&i.c(),l=V(),t=d("div"),ue(s.$$.fragment),this.h()},l(f){e=m(f,"SECTION",{style:!0,class:!0});var u=g(e);i&&i.l(u),l=D(u),t=m(u,"DIV",{class:!0});var h=g(t);_e(s.$$.fragment,h),h.forEach(c),u.forEach(c),this.h()},h(){v(t,"class",n="content-details "+a[0]+" svelte-1wx1xeh"),ie(t,"v2",a[1]==="v2"),ce(e,"--bg","url("+a[2]["wish-background.webp"]+")"),v(e,"class","svelte-1wx1xeh"),ie(e,"v2",a[1]==="v2"),ie(e,"animatedBG",a[4])},m(f,u){w(f,e,u),i&&i.m(e,null),_(e,l),_(e,t),he(s,t,null),o=!0},p(f,[u]){f[1]!=="v2"?i?(i.p(f,u),u&2&&Q(i,1)):(i=Ys(f),i.c(),Q(i,1),i.m(e,l)):i&&(i.d(1),i=null);const h={};u&2&&(h.tplVersion=f[1]),u&515&&(h.$$scope={dirty:u,ctx:f}),s.$set(h),(!o||u&1&&n!==(n="content-details "+f[0]+" svelte-1wx1xeh"))&&v(t,"class",n),u&3&&ie(t,"v2",f[1]==="v2"),(!o||u&4)&&ce(e,"--bg","url("+f[2]["wish-background.webp"]+")"),u&2&&ie(e,"v2",f[1]==="v2")},i(f){o||(Q(i),Q(s.$$.fragment,f),Nt(()=>{r||(r=st(e,Dt,{duration:200},!0)),r.run(1)}),o=!0)},o(f){ee(s.$$.fragment,f),r||(r=st(e,Dt,{duration:200},!1)),r.run(0),o=!1},d(f){f&&c(e),i&&i.d(),ve(s),f&&r&&r.end()}}}function Yn(a,e,l){let t,s;re(a,ft,b=>l(2,t=b)),re(a,Te,b=>l(3,s=b));let{page:n=""}=e;const r=Va.get("animatedBG"),o=Le("navigate"),i=()=>{o("index"),Lt("close")};qe("close-detail",i);let f=zl.get("detail-tpl")||"v2";const u=b=>{zl.set("detail-tpl",b),l(1,f=b)};qe("detail-tpl",u),$a("esc",n,b=>{b.preventDefault(),i()});const h=()=>u("v2");return a.$$set=b=>{"page"in b&&l(0,n=b.page)},[n,f,t,s,r,i,u,h]}class fi extends De{constructor(e){super(),$e(this,e,Yn,Fn,Pe,{page:0})}}export{fi as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/it-IT-298ecc6e.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/it-IT-298ecc6e.js
deleted file mode 100644
index 877aafdc..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/it-IT-298ecc6e.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Genshin Impact Wish Simulator",a="Personaggio",i="Arma",t="Vision",n="Anemo",o="Cryo",r="Dendro",s="Electro",l="Hydro",c="Geo",u="Pyro",p="Bow",d="Catalyst",m="Claymore",g="Sword",v="Polearm",b="Extra",h="Ottenuto",f="Attendere",y="Connection Failed!",P="Conferma",w="Annulla",z="Tutte le risorse usate in questo sito sono di propriet\xE0 di Mihoyo.",S="Questa \xE8 un'applicazione fatta unicamente dai fan, divertiti !",C="Premi in un punto qualsiasi dell'area vuota per continuare",B="Instructions to Install to Home Screen/Desktop",I="Condividi",A="Scatta una Foto",N="Catturare",F="Premio per la prima condivisione : {qty}",q="Versione",E="Dona",k={beginner:"Wish per Principianti",wanderlust:"Wanderlust Invocation","epitome-invocation":"Incarnazione divina","adrift-in-the-harbor":"Alla deriva nel porto","auric-blaze":"Fiamma dorata","azure-excursion":"Azure Excursion","ballad-in-goblets":"Ballad in Goblets","born-of-ocean-swell":"Born of Ocean Swell","caution-in-confidence":"Monito implacabile","chanson-of-many-waters":"Ode alle Mille Acque","conjuring-chiaroscuro":"Conjuring Chiaroscuro","dance-of-lantern":"Dance of Lantern","decree-of-the-deeps":"Decree of the Deeps","discerner-of-enigmas":"L'Enigmista","drifting-luminescence":"Drifting Luminescence","everbloom-violet":"Everbloom Violet","farewell-of-snezhnaya":"Farewell of Snezhnaya","from-ashes-reborn":"Rinato dalle ceneri","gentry-of-hermitage":"Gentry of Hermitage","immaculate-pulse":"Battito immacolato","in-the-name-of-the-rosula":"Nel nome della Rosula","invitation-to-mundane-life":"Invito alla Vita mondana","leaves-in-the-wind":"Leaves in The Wind","moment-of-bloom":"Tempo di fioritura","oni_s-royale":"Contesa di Oni","reign-of-serenity":"Reign of Serenity","secretum-secretorum":"Secretum Secretorum","sparkling-steps":"Sparkling Steps","tapestry-of-golden-flames":"Tapestry of Golden Flames","tempestuous-destiny":"Destino tempestoso","the-heron_s-court":"La corte dell'airone","the-moongrass-enlightenment":"L'illuminazione dell'Erba lunare","the-transcendent-one-returns":"Evento trascendentale","twilight-arbiter":"Giudice del crepuscolo","twirling-lotus":"Loto volteggiante","viridescent-vigil":"Viridescent Vigil"},T={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},W={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},D={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},R={wishTitle:"Wish",rollButton:"Wish {count}",stellaFortuna:"Stella Fortuna",loadFailed:"Impossibile caricare il banner! <br /> Passa ad un altro banner o riconnettiti a Internet per evitare errori!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banner",allBanner:"Tutti i Banner",previous:"Banner Precedente",findBanner:"Trova un Banner",group:"Gruppo",beginner:"Wish\u2008per Principianti","character-event":"Wish dell'Evento del Personaggio","weapon-event":"Wish per Armi",standard:"Wish Standard",wishDescription:"Ogni 10 wish se ne ha almeno uno a 4 o pi\xF9 stelle",novice:"Wish per Principianti",up:"UP!",beginnerSet:"10 set hanno il 20% di sconto. Per i primi 10 set potrai ricevere {character}.",beginnerNote:'"Come farebbe una cameriera rispettosa."',beginnerChance:"Chance Rimaste: {chances}",standardNote:"I wish standard non hanno una scadenza.",allWeaponTypes:"Tutti i Tipi di Armi",etc:"ecc.",probIncreased:"Probabilit\xE0 aumentata !",eventNote:"I personaggi a 5 stelle esclusivi dell'evento possono essere ottenuti solo nel wish specifico durante il periodo/i determinato.",viewDetails:"Visualizza i Dettagli per maggiori informazioni."},epitomizedPath:{text:"Epitomized Path",fatePoint:"Punti Fato",cancelPrompt:"Desideri cancellare il tuo Percorso attuale ?",cancelDesc:"La cancellazione azzerer\xE0 i Punti Fato accumulati",selectWeapon:"Seleziona l'Arma",chartCourseOf:"Grafico del Percorso per {target}",cancelCourse:"Annulla Percorso",chartCourse:"Grafico del Percorso",courseSetFor:"Percorso deciso per: {selectedCourse}",description:[`"Epitomized Path" \xE8 una meccanica dei desideri per "Epitome Invication". I viaggiatori possono tracciare un percorso verso un'arma a 5 stelle che sperano di ottenere.`,"Una volta che avrai tracciato un percorso verso l'arma scelta, otterrai un Punto Fato se <span> riceverai un'arma a 5 stelle che non \xE8 quella che hai scelto</span>. Puoi ottenere un massimo di 2 Punti Fato.",'Una volta che avrai raggiunto la quantit\xE0 massima di Punti Fato, la prossima arma a 5 stelle che sceglierai sar\xE0 quella scelta con "Epitomized Path".',"Quando otterrai l'arma scelta in Epitome Invocation con Epitomized Path, <span> i Punti Fato accumulati verranno cancellati</span>.","Se non usi Epitomized Path per ottenere un'arma, non accumulerai Punti Fato.","Il percorso tracciato verso un'arma pu\xF2 essere modificato o annullato. Tuttavia, dopo averlo fatto, tutti i Punti Fato correnti verranno cancellati.","Al termine del periodo di Epitome Invocation, tutti i Punti Fato correnti verranno cancellati."]},result:{skip:"Salta",meteorFailed:"Errore nel caricamento dell'animazione della Meteora",new:"Nuovo",convertion:"Conversione",title:"Risultato del Wish per {item} e altri"}},L={heading:"Outfit dei personaggi",default:"Default",setOutfit:"Seleziona l'Outfit",owned:"Gi\xE0 in possesso",purchasePrompt:"Non hai ancora un personaggio per questo outfit, sei sicuro di volerlo acquistare?",promptInfo:"Potrai ancora usare questo outfit dopo aver ottenuto il personaggio giusto",obtained:"New Outfit Obtained",unlocked:"{character}: Outfit Unlocked",item:{"5-star-outrider":{name:"5-Star Outrider"},"favonian-fevotion":{name:"Favonian Devotion"},"flowing-fate":{name:"Flowing Fate"},"executor_s-thorns":{name:"Executor's Thorns"},"sea-breeze-dandelion":{name:"Sea Breeze Dandelion",description:"L'outfit estivo di Jean. Leggero e alla moda, ma non per questo poco elegante. La scelta perfetta per una gita al mare."},"summertime-sparkle":{name:"Summertime Sparkle",description:"L'outfit da spiaggia di Barbara. Questa graziosa gonna trabocca di vitalit\xE0 estiva e porta con s\xE9 una fresca brezza oceanica."},"opulent-splendor":{name:"Opulent Splendor",description:"L'outfit formale di Keqing. Nella splendida alba di Lantern Rite, i fili intrecciati in giorni di duro lavoro si uniscono in un aspetto leggero ma magnifico."},"orchid_s-evening-gown":{name:"Orchid's Evening Gown",description:"L'outfit formale di Ningguang. La lunga gonna ciano mette in evidenza le sue eleganti curve, e le ali di farfalla alle caviglie conferiscono un leggero tocco di grazia."},"ein-immernachtstraum":{name:"Ein Immernachtstraum",description:"L'outfit da cerimonia di Prinzessin. Possa, lei che \xE8 nobile, conservare per sempre il suo coraggio, la sua sincerit\xE0 e la sua gentilezza, in modo tale che nessun male possa mai sopraffarla."},"red-dead-of-night":{name:"Red Dead of Night",description:"Uno degli abiti che indossa Diluc durante le azioni segrete, ricorda una fiamma che danza nell'ombra. Le tracce rosso cremisi che lascia ai marigni della visuale del nemico sfregiano per sempre i loro incubi."},"a-sobriquet-under-shade":{name:"Un nomignolo all\u2019ombra",description:"Un completo commissionato da Lisa quando \xE8 tornata in visita a Sumeru. Un equilibrio perfetto tra praticit\xE0 ed eleganza, il completo assomiglia alla vecchia uniforme di Lisa ai tempi dell\u2019Akademiya."},"springbloom-missive":{name:"Missiva primaverile",description:"Il completo di viaggio di Ayaka. Il suo design si basa sugli abiti di Fontaine raffigurati nelle illustrazioni delle light novel, e sembra rispecchiare lo stile di vita delle gentildonne di quella nazione."},"blossoming-starlight":{name:"Luce stellare fiorente",description:"Un delizioso completo che Klee indossa solo per le esibizioni pi\xF9 importanti. Dai colori brillanti, sembra una torta decorata con fiori di panna e coronata da candele scarlatte. Indossandolo, la felicit\xE0 e i sorrisi riempiranno le vostre avventure."},"sailwind-shadow":{name:"Ombra Navigavento",description:'Il completo che Kaeya indossa quando interpreta il "Bandito della Daga". Sebbene sia alquanto appariscente, non \xE8 difficile da indossare, anche se ci vuole del tempo per sistemare tutti quegli accessori e tutte quelle daghe.'}}},O={text:"Dettagli",promotional:"Promotional Items",itemlist:"List of Items",increasedRate:"Aumento del Tasso di Caduta",percentageDrop:"Percentuale di caduta di oggetti a {rarity} stelle: {percentage}",wishDetails:"Dettagli dei Wish",probInfo:"Probabilit\xE0 base di caduta di oggetti a {rarity} stelle: {singlePercentage} (Incl. guarantee: {avgPercentage})",itemWishFor:"Oggetto desiderato :",itemType:"Tipo dell'Oggetto",itemName:"Nome dell'Oggetto",beginnerInfo:"Nessun limite di tempo (si chiude dopo 20 wish)",limited:"Evento a Tempo Limitato",permanent:"Permanente",alert:"\u203B Questo \xE8 un {wishName}. La garanzia dei desideri viene accumulata solo all'interno di questo evento ed \xE8 indipendente dalle garanzie di altri desideri.",beginner:["Il <span> Wish </span> per principianti non ha limiti di tempo ed \xE8 rivolto ai viaggiatori che sono atterrati di recente a Teyvat. Sono disponibili personaggi e armi non promozionali. <br /> Nel Wish per principianti, i set da 10 wish costano il <span> 20%</span> in meno di Acquaint Fate, e il tuo primo set da 10 wish includer\xE0 sicuramente {character} , mentre il tuo secondo set da 10 wish includer\xE0 sicuramente un <span> altro </span> personaggio min. a 4 stelle! Il Wish per Principianti sparisce dopo <span> 20 </span> tentativi. Dopo essere sparito, la pagina scomparir\xE0.","\u203B Nella maggior parte dei casi, la probabilit\xE0 di base di tutti i personaggi e le armi \xE8 distribuita uniformemente. Se \xE8 in vigore un boost o una garanzia, fare riferimento alle regole corrispondenti.","\u3013Regole\u3013","Probabilit\xE0 base di vincere un personaggio a 5 stelle = <span> 0.600%</span> <br /> Probabilit\xE0 base di vincere un personaggio a 4 stelle = <span> 5.100%</span>; probabilit\xE0 consolidata (incl. garanzia) = <span> 13.000%</span>;"],standard:['"{bannerName}" \xE8 un wish standard senza limiti di tempo. Sono disponibili personaggi e armi non esclusivi per gli eventi.<br/> In questo wish, vincerai <span>sicuramente</span> un oggetto a 4 o pi\xF9 stelle almeno una volta ogni 10 tentativi.',"\u203BNella maggior parte dei casi, la probabilit\xE0 base di vincere qualsiasi personaggio o arma \xE8 distribuita uniformemente. Se \xE8 attivo un potenziamento o una garanzia fare riferimento alle rispettive regole.","\u3013Regole\u3013","Probabilit\xE0 base di vincere un oggetto a 5 stelle = <span>0.600%</span>; probabilit\xE0 base di vincere un personaggio a 5 stelle = <span>0.300%</span>, e probabilit\xE0 base di vincere un'arma a 5 stelle = <span>0.300%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 5 stelle = <span>1.600%</span>; \xE8 assicurata la vittoria di un oggetto a 5 stelle almeno una volta ogni <span>90</span> tentativi. <br> Probabilit\xE0 base di vincere un oggetto a 4 stelle = <span>5.100%</span>; probabilit\xE0 base di vincere un personaggio a 4 stelle = <span>2.550%</span>, e probabilit\xE0 base di vincere un'arma a 4 stelle = <span>2.550%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 4 stelle = <span>13.000%</span>; \xE8 assicurata la vittoria di un oggetto a 4 o pi\xF9 stelle almeno una volta ogni <span>10</span> tentativi; probabilit\xE0 di vincere un oggetto a 4 stelle grazie alla garanzia = <span>99.400%</span>, e probabilit\xE0 di vincere un oggetto a 5 stelle grazie alla garanzia = <span>0.600%</span>. "],events:[`L'Event Wish "{bannerName}" \xE8 disponibile ora. Durante questo evento, il personaggio a 5 stelle <span>esclusivo dell'evento</span> {featuredCharacter} come i personaggi a 4 stelle {rateupCharacters} riceveranno un <span>enorme aumento della percentuale di ottenimento</span>! <br/> <span> \u203B Tra questi personaggi, il personaggio esclusivo dell'evento non sar\xE0 disponibile nel wish "Wanderlust Invocation" standard.</span>`,"\u203B Nella maggior parte dei casi, la probabilit\xE0 base di vincere qualsiasi personaggio o arma \xE8 distribuita uniformemente. Se \xE8 attivo un potenziamento o una garanzia fare riferimento alle rispettive regole.","\u3013Regole\u3013","Oggetti a 5 stelle",`Per l'Event Wish "{bannerName}": Probabilit\xE0 base di vincere un personaggio a 5 stelle = <span>0.600%</span>; probabilit\xE0 consolidata (incl. garanzia) = <span>1.600%</span>; \xE8 assicurata la vittoria di un personaggio a 5 stelle almeno una volta ogni <span>90</span> tentativi.<br/> C'\xE8 un <span>50.000%</span> di possibilit\xE0 che il primo oggetto a 5 stelle vinto sia il personaggio promozionale {featuredCharacter}. Se il primo personaggio a 5 stelle vinto in questo evento non \xE8 il personaggio promozionale, allora il prossimo personaggio a 5 stelle che vincerai sar\xE0 <span>sicuramente</span> il personaggio promozionale.`,"Oggetti a 4 stelle",`Per l'Event Wish  "{bannerName}": Probabilit\xE0 base di vincere un oggetto a 4 stelle = <span>5.100%</span>; probabilit\xE0 base di vincere un personaggio a 4 stelle = <span>2.550%</span>, e probabilit\xE0 base di vincere un'arma a 4 stelle = <span>2.550%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 4 stelle = <span>13.000%</span>; \xE8 assicurata la vittoria di un oggetto a 4 o pi\xF9 stelle almeno una volta ogni 10 tentativi; probabilit\xE0 di vincere un oggetto a 4 stelle grazie alla garanzia = <span>99.400%</span>, e probabilit\xE0 di vincere un oggetto a 5 stelle grazie alla garanzia = <span>0.600%</span>. <br/> C'\xE8 un <span>50.000%</span> di possibilit\xE0 che il primo oggetto a 4 stelle vinto sia uno dei personaggi in primo piano tra {rateupCharacters}. Se il primo oggetto a 4 stelle vinto in questo evento non \xE8 uno dei personaggi in primo piano, allora il prossimo oggetto a 4 stelle che vincerai sar\xE0 <span>sicuramente</span> un personaggio in primo piano. Quando vinci un oggetto a 4 stelle in primo piano, la probabilit\xE0 di ottenere un qualsiasi personaggio a 4 stelle in primo piano \xE8 uguale per ciascuno di loro.`],weapons:[`L'Event Wish "{bannerName}" \xE8 disponibile ora. Durante questo evento, l'arma a 5 stelle esclusive dell'evento {featuredWeapon1}, l'arma a 5 stelle {featuredWeapon2} e l'arma a 4 stelle esclusiva dell'evento {rateupWeapons} riceveranno un <span>enorme aumento della percentuale di ottenimento</span>! <br/> <span> \u203B Tra queste armi, le armi esclusive dell'evento non saranno disponibili nel wish "Wanderlust Invocation" standard.</span>`,"\u203B Nella maggior parte dei casi, la probabilit\xE0 base di vincere qualsiasi personaggio o arma \xE8 distribuita uniformemente. Se \xE8 attivo un potenziamento o una garanzia fare riferimento alle rispettive regole.","\u3013Regole\u3013","Oggetti a 5 stelle",`Per l'Event Wish "{bannerName}": probabilit\xE0 base di vincere un'arma a 5 stelle = <span>0.700%</span>; probabilit\xE0 consolidata (incl. garanzia) = <span>1.850%</span>; \xE8 assicurata la vittoria di un'arma a 5 stelle almeno una volta ogni <span>80</span> tentativi.<br/> C'\xE8 un <span>75.000%</span> di possibilit\xE0 che la prima arma a 5 stelle vinta sia una delle armi promozionali tra {featuredWeapon1} e {featuredWeapon2}. Se la prima arma a 5 stelle vinta in questo evento non \xE8 una delle armi promozionali, allora la prossima arma a 5 stelle che vincerai sar\xE0 <span>sicuramente</span> un'arma promozionale. Nel caso in cui si ottenga un oggetto promozionale a 5 stelle con un wish senza avere il massimo dei Punti Fato, la probabilit\xE0 di ottenere una qualsiasi arma a 5 stelle \xE8 uguale per ciascuna di loro. <br/> Per l'Event Wish "{bannerName}", puoi tracciare un percorso verso l'arma promozionale a 5 stelle scelta con "Epitomized Path." La scelta dell'arma sar\xE0 valida solo per il periodo dell'Event Wish "{bannerName}". <br/> Per l'Event Wish "{bannerName}", dopo aver tracciato un percorso verso un'arma scelta con "Epitomized Path," se ottieni un'arma a 5 stelle che non \xE8 l'arma scelta, riceverai 1 Punto Fato. Una volta raggiunta la <span>quantit\xE0 massima</span> di Punti Fato, l'arma a 5 stelle successiva sar\xE0 <span>sicuramente</span> l'arma scelta. Una volta ottenuta l'arma scelta, i Punti Fato si resetteranno a <span>0</span>, indipendentemente dal fatto che tu abbia raggiunto o meno il massimo dei punti, e dovrai accumularli nuovamente. Se non usi "Epitomized Path" per tracciare un percorso verso un'arma scelta, <span>not</span> riceverai Punti Fato. <br/> Dopo aver tracciato un percorso verso un'arma scelta, puoi cambiare la tua scelta o annullarla del tutto, ma cos\xEC facendo resetterai i Punti Fato a <span>0</span> e dovrai accumularli nuovamente. <br/> \u203B I Punti Fato per questo Wish in "Epitome Invocation" sono validi solo per il periodo dell'Event Wish. Al termine dell'Event Wish, i Punti Fato si resetteranno a <span>0</span>, e dovrai accumularli nuovamente.`,"Oggetti a 4 stelle",`Per l'Event Wish "{bannerName}": probabilit\xE0 base di vincere un oggetto a 4 stelle = <span>6.000%</span>; probabilit\xE0 base di vincere un personaggio a 4 stelle = <span>3.000%</span>, e probabilit\xE0 base di vincere un'arma a 4 stelle = <span>3.000%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 4 stelle = <span>14.500%</span>; \xE8 assicurata la vittoria di un oggetto a 4 o pi\xF9 stelle almeno una volta ogni <span>10</span> tentativi; probabilit\xE0 di vincere un oggetto a 4 stelle grazie alla garanzia = <span>99.300%</span>, e probabilit\xE0 di vincere un oggetto a 5 stelle grazie alla garanzia = <span>0.700%</span>. <br/> C'\xE8 un <span>75.000%</span> di possibilit\xE0 che il primo oggetto a 4 stelle vinto sia una delle armi in primo piano tra {rateupWeapons}. Se il primo oggetto a 4 stelle vinto in questo evento non \xE8 una delle armi in primo piano, allora il prossimo oggetto a 4 stelle che vincerai sar\xE0 <span>sicuramente</span> un'arma in primo piano. Quando vinci un oggetto a 4 stelle in primo piano, la probabilit\xE0 di ottenere una qualsiasi arma a 4 stelle in primo piano \xE8 uguale per ciascuna di loro.`],convertion:{fiveStar:"Le armi a 5 stelle vinte con questo desiderio vengono fornite con {starglitter} \xD710;",fourStar:"Le armi a 4 stelle vinte con questo desiderio vengono fornite con {starglitter} \xD72;",threeStar:"Le armi a 3 stelle vinte con questo desiderio vengono fornite con {stardust} \xD715."},duplicate:{heading:"\u3013Personaggi Duplicati\u3013",text:"Se si ottiene un personaggio che si possiede gi\xE0 (ottenuto in un wish, riscattato dal negozio, o assegnato dal gioco): tra la seconda e la settima volta che si ottiene il personaggio, verr\xE0 convertito in {stellaFortuna} \xD71 del personaggio e {starglitter} {constBonus}; dall'ottava volta in poi verr\xE0 convertito in {starglitter} {fullConstBonus}."}},x={title:"Wish History",text:"Cronologia",resetButton:"Ripristino",resetPromptTitle:"Ripristino della Cronologia ?",resetPrompt:`Quest'operazione rimuover\xE0 anche tutti i personaggi e tutte le armi relativi al banner "{bannerName}" dal tuo inventario. <br /> Sei sicuro di volere ripristinare?`,resetSuccess:"Ripristino effettuato con successo !",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"Seleziona il tipo di wish:",disclaimer:"Non salviamo mai i tuoi data su archivi cloud. Tutti i dati sono archiviati in IndexedDB, questo significa che sono salvati nella memoria del browser. Non verranno mai eliminati finch\xE8 non li elimini manualmente con il pulsante di eliminazione/ripristino, oppure cancellando i dati del browser.",currentPity:"Pity Corrente :",totalPull:"Totale Tiri :",totalSpend:"Totale Spesa :",filterTxt:"Filtro",filter:"{rarity} Stella/e",filterAll:"Tutto",pity:"Pity",timeReceived:"Tempo Guadagnato",waiting:"Attendere",noData:"Nessun dato disponibile .",untracked:"Non Rintracciato",item:"Oggetto",win:"Vittoria 50/50",lose:"Perdita 50/50",guaranteed:"Assicurato",selected:"Oggetto Selezionato",olderLayout:"Older Layout",switchv2:"Switch to V2"},M={text:"Negozio",paimonBargains:"Paimon Bargains",fateNeeded:"\xC8 necessario un {rollQty} {currency} aggiuntivo.",primoNeeded:"Acquista con {primoPrice} Primogem ?",purchaseUpto:"Acquista fino a 1",purchaseConfirm:"Conferma d'Acquisto",exchangeHeading:"Oggetto da Scambiare",purchaseHeading:"Oggetto da acquistare",purchaseButton:"Acquista",pay:"Paga",product:"Prodotto",consume:"Consumo",selectPayment:"Seleziona il Tipo di Pagamento",unrealWallet:"UnReal Wallet",convertPrimo:"Convertire automaticamente in primogem ?",proceedPayment:"Procedi al Pagamento",qty:"Qty",insufficient:"Fondi Insufficienti",crystalTopup:"Crystal Top-Up",initialBonus:"Bonus prima ricarica",bonus:"Bonus",buyGenesisHeading:"Compra Genesis Crystal",recomendedHeading:"Oggetti Consigliati",paimonHeading:"Paimon's Bargains",welkinNote:"Pu\xF2 essere acquistato pi\xF9 volte",limitedOffer:"Offerta a tempo limitato",noLimitTime:"Nessun oggetto a tempo limitato disponibile",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"Blessing of the Welkin Moon",newOutfit:"Nuovi outfit per i personaggi",dayRemaining:"Giorni rimanenti: {days}",alreadyClaimed:"Gi\xE0 Riscattato oggi",instantlyGet:"Ottieni immediatamente",dailyGift:"Regalo giornaliero",obtainTotal:"Ottieni un totale di {totalGenesis} Genesis Crystal e {totalPrimo} Primogems in 30 giorni",claimingBlessing:"Fai click per riscattare le tue ricompense giornaliere di Blessing of the Welkin Moon",issuedPurchase:"Rilasciato all'acquisto",collect:"Raccogli le ricompense di accesso giornaliere per 30 giorni"},exchange:{starglitter:"Scambio Starglitter",stardust:"Scambio Stardust",primogem:"Scambia con Primogem"},item:{genesis:"Genesis Crystal",primogem:"Primogem",intertwined:"Intertwined Fate",acquaint:"Acquaint Fate",starglitter:"Masterless Starglitter",stardust:"Masterless Stardust"},description:{intertwined:"Una pietra fatidica che unisce i sogni. Il suo bagliore pu\xF2 intrecciare destini e unire sogni, proprio come il suo bagliore unisce le stelle alle forme dei desideri di un cuore.",acquaint:"Un seme che illumina la notte. Non importa la distanza, guidato dal bagliore della pietra, si incontrer\xE0 il fato sotto le stelle."}},G={text:"Inventario",unsetOutfit:"Outfit Non Selezionato",setOutfit:"Seleziona l'Outfit sul Personaggio",refinement:"Refinement {count}",constellation:"Costellazione {count}",extra:"Extra {count}",firstSummon:"Evocato per la prima volta alle : {date}",notOwned:"Non in Possesso",sort:"Ordina",rarity:"Rarit\xE0",name:"Nome",quantity:"Quantit\xE0",element:"Elemento",release:"Pubblicazione",type:"Tipo",owned:"In Possesso",showAllOption:"Mostra Tutti {item}"},U={no:"No",yes:"S\xEC",text:"Menu",feedback:"Feedback",options:"Opzioni",updates:"Aggiorna la Cronologia",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"Lingua",currency:"Moneta",fates:"Numero di desideri",unlimited:"Illimitata",manual:"Manuale",mute:"Muta Audio ed Effetti Sonori",switchBanner:"Cambia Banner",showAllitems:"Mostra tutti gli oggetti nell'inventario",autoskip:"Auto Skip Splash Art",animatedbg:"Sfondo Animato",multiRoll:"Number per multi-roll",factoryReset:"Cancella i Dati e Ripristina",resetTitle:"Factory Reset",rotate:"Gira per un'esperienza migliore",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Clear Caches ( {size} ) ? <small>You will re-load the assets after this action!</small>",resetButton:"Ripristina ora",resetPrompt:"Sei sicuro di voler cancellare <strong>Tutti i Dati</strong> e ripristinare le impostazioni predefinite ?",resetSuccess:"Ripristino effettuato con successo",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Get a new one Here!",noKey:"Don't have a key?",verifyFail:"Failed to verifying AdKey, Check your Connection",invalidKey:"Your key is invalid",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Enter Key",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."},K={title:e,character:a,weapon:i,vision:t,anemo:n,cryo:o,dendro:r,electro:s,hydro:l,geo:c,pyro:u,bow:p,catalyst:d,claymore:m,sword:g,polearm:v,extra:b,obtained:h,waiting:f,connectionFailed:y,confirmButton:P,cancelButton:w,disclaimer:z,fanmade:S,pressToContinue:C,installInstruction:B,share:I,screenshot:A,capturing:N,rewardFirstShare:F,version:q,donate:E,banner:k,editor:T,customBanner:W,backupRestore:D,wish:R,outfit:L,details:O,history:x,shop:M,inventory:G,menu:U};export{n as anemo,D as backupRestore,k as banner,p as bow,w as cancelButton,N as capturing,d as catalyst,a as character,m as claymore,P as confirmButton,y as connectionFailed,o as cryo,W as customBanner,K as default,r as dendro,O as details,z as disclaimer,E as donate,T as editor,s as electro,b as extra,S as fanmade,c as geo,x as history,l as hydro,B as installInstruction,G as inventory,U as menu,h as obtained,L as outfit,v as polearm,C as pressToContinue,u as pyro,F as rewardFirstShare,A as screenshot,I as share,M as shop,g as sword,e as title,q as version,t as vision,f as waiting,i as weapon,R as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/it-IT-d4ace31e.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/it-IT-d4ace31e.js
deleted file mode 100644
index c8699195..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/it-IT-d4ace31e.js
+++ /dev/null
@@ -1 +0,0 @@
-const a="Spada di Akuou",e="Fendiluvio",i="Ossidazione meschina",n="Fionda",t="Verdetto",o={name:"Albedo",title:"Kreideprinz"},l={name:"Alhaitham",title:"Insegnamento austero"},r={name:"Amber",title:"Campionessa di volo a vela"},s={name:"Baizhu",title:"Mortalit\xE0 trascesa"},c={name:"Barbara",title:"Idol sfavillante"},d={name:"Beidou",title:"Regina dei mari senza corona"},u={name:"Bennett",title:"Prova del fuoco"},m={name:"Candace",title:"Voto dorato"},g={name:"Charlotte",title:"Lente della verit\xE0"},h={name:"Chevreuse",title:"Braccio armato della legge"},f={name:"Chongyun",title:"Ardore ghiacciato"},p={name:"Collei",title:"Germoglio di rinascita"},y={name:"Cyno",title:"Giustiziere dei segreti"},v={name:"Dehya",title:"Chiomardente"},b={name:"Diluc",title:"Lato oscuro dell'alba"},k={name:"Diona",title:"Barista K\xE4tzlein"},z={name:"Dori",title:"Tesoro del giardino dei sogni"},S={name:"Eula",title:"Danza dell'onda luccicante"},w={name:"Faruzan",title:"Enigmatica esperta di macchine"},A={name:"Fischl",title:"Prinzessin der Verurteilung!"},q={name:"Freminet",title:"Brama di profondit\xE0 invisibili"},F={name:"Furina",title:"Assolo solitario e sempiterno"},C={name:"Ganyu",title:"Sguardo del plenilunio"},L={name:"Gorou",title:"Guerriero canino"},K={name:"Jean",title:"Cavaliere del Dente di leone"},M={name:"Kaeya",title:"Spadaccino della bufera"},T={name:"Kaveh",title:"Riflesso empireo"},j={name:"Keqing",title:"Dominatrice del tuono"},x={name:"Kirara",title:"Gatta sulle grondaie"},B={name:"Klee",title:"Sole fugace"},G={name:"Layla",title:"Stella fantastica della sera"},R={name:"Lisa",title:"Strega della Rosa purpurea"},P={name:"Lynette",title:"Eleganza nell'ombra"},V={name:"Lyney",title:"Spettacolo fantasmagorico"},D={name:"Mika",title:"Coordinate del gelo solare"},E={name:"Mona",title:"Riflesso astrale"},_={name:"Nahida",title:"Fisica della purezza"},N={name:"Navia",title:"Timoniere della rosa splendente"},Y={name:"Neuvillette",title:"Sentenza ineluttabile"},O={name:"Nilou",title:"Danza della luce di loto"},H={name:"Ningguang",title:"Stella dell'eclissi"},I={name:"Noelle",title:"Fiore cavalleresco"},X={name:"Qiqi",title:"Rinascita glaciale"},J={name:"Razor",title:"Ragazzo lupo"},Q={name:"Rosaria",title:"Benevolenza spinosa"},W={name:"Sayu",title:"Ninja mujina"},Z={name:"Shenhe",title:"Trascendenza solitaria"},U={name:"Sucrose",title:"Dolcezza innocua"},$={name:"Tartaglia",title:"Principe"},aa={name:"Thoma",title:"Protettore venuto da lontano"},ea={name:"Tighnari",title:"Vagabondo verdeggiante"},ia={name:"Venti",title:"Bardo itinerante"},na={name:"Vagabondo",title:"Eternamente perduto"},ta={name:"Wriothesley",title:"Emissario di colpe silenti"},oa={name:"Xiangling",title:"Maestra culinaria di Liyue"},la={name:"Xiao",title:"Custode Yaksha"},ra={name:"Xingqiu",title:"Giovane paladino"},sa={name:"Xinyan",title:"Melodia incandescente"},ca={name:"Yanfei",title:"Saggia innocenza"},da={name:"Yaoyao",title:"Grazia germogliante"},ua={name:"Yelan",title:"Orchidea della valle"},ma={name:"Yoimiya",title:"Euforia di fuochi"},ga={name:"Zhongli",title:"Vago mundo"},ha={"a-thousand-floating-dreams":"Mille sogni fluttuanti",akuoumaru:a,"alley-hunter":"Cacciatore urbano","amos-bow":"Arco di Amos","aqua-simulacra":"Aqua simulacra","aquila-favonia":"Aquila Favonia","beacon-of-the-reed-sea":"Faro del Mare dei Giunchi","black-tassel":"Pennacchio nero","bloodtained-greatsword":"Spadone insanguinato","calamity-queller":"Flagello delle calamit\xE0","cashflow-supervision":"Supervisione pecuniaria","cool-steel":"Lama fredda","debate-club":"Mazza della persuasione","dragon_s-bane":"Scacciadraghi","elegy-for-the-end":"Elegia finale","emerald-orb":"Sfera smeraldina","engulfing-lightning":"Fulmine fagocitante","everlasting-moonglow":"Luna perenne","eye-of-perception":"Occhio della percezione","favonius-codex":"Codice di Favonius","favonius-greatsword":"Spadone di Favonius","favonius-lance":"Lancia di Favonius","favonius-sword":"Spada di Favonius","favonius-warbow":"Arco da guerra di Favonius","ferrous-shadow":"Ombra di ferro","freedom-sworn":" Giuramento di libert\xE0","haran-geppaku-futsu":"Haran Geppaku Futsu","harbinger-of-dawn":"Messaggera dell'alba","hunter_s-path":"Sentiero del cacciatore","jadefall-splendor":"Splendore del Giadiluvio","kagura_s-verity":"Verit\xE0 della Kagura","key-of-khaj-nisut":"Chiave del Khaj-Nisut","light-of-foliar-incision":"Lume del Taglio frondoso","lion_s-roar":"Ruggito del leone","lithic-blade":"Lama litica","lithic-spear":"Lancia litica","lost-prayer-to-the-sacred-winds":"Origine dei venti sacri","magic-guide":"Manuale di magia","makhaira-aquamarine":"Acquamarina di Makhaira","memory-of-dust":"Memorie terrene","mistsplitter-reforged":"Squarcianebbia riforgiata","mitternachts-waltz":"Valzer notturno","mouun_s-moon":"Luna di Mouun","polar-star":"Stella polare","portable-power-saw":"Sega elettrica portatile","primordial-jade-cutter":"Spada di giada primordiale","primordial-jade-winged-spear":"Lancia di giada primordiale","prospector-drill":"Trivella mineraria",rainslasher:e,"range-gauge":"Indicatore distanziometrico","raven-bow":"Arco corvino","redhorn-stonethresher":"Spaccarocce Cornorosso",rust:i,"sacrificial-bow":"Arco sacrificale","sacrificial-fragments":"Frammenti sacrificali","sacrificial-greatsword":"Spadone sacrificale","sacrificial-sword":"Spada sacrificale","sharpshooter_s-oath":"Patto del cecchino","skyrider-sword":"Spadone del Cavalcacieli","skyward-atlas":"Atlante celeste","skyward-blade":"Lama celeste","skyward-harp":"Arpa celeste","skyward-pride":"Orgoglio celeste","skyward-spine":"Lancia d'osso celeste",slingshot:n,"song-of-broken-pines":"Canzone silvestre","splendor-of-tranquil-waters":"Fulgore delle placide acque","staff-of-homa":"Bastone di Homa","staff-of-the-scarlet-sands":"Bastone delle sabbie scarlatte","summit-shaper":"Affettavette","the-alley-flash":"Luce nei vicoli","the-bell":"Spadone del tempo","the-dockhands-assistant":"Aiutante del porto","the-first-great-magic":"Prima grande magia","the-flute":"Flauto","the-stringless":"Monocorda","the-unforged":"Spadone grezzo","the-widsith":"Sinfonia errante","thrilling-tales-of-dragon-slayers":"Epiche gesta degli Ammazzadraghi","thundering-pulse":"Battito tonante","tome-of-the-eternal-flow":"Tomo del flusso perenne","tulaytullah_s-remembrance":"Rimembranza di Tulaytullah",verdict:t,"vortex-vanquisher":"Squarciavortice","wavebreaker_s-fin":"Pinna del Frangionde","wine-and-song":"Vino e musica","wandering-evenstar":"Astro del vespro errante","wolf_s-gravestone":"Trapasso ululante","xiphos-moonlight":"Chiarore di Xiphos",albedo:o,alhaitham:l,amber:r,"arataki-itto":{name:"Arataki Itto",title:"Eroe di Hanamizaka"},baizhu:s,barbara:c,beidou:d,bennett:u,candace:m,charlotte:g,chevreuse:h,chongyun:f,collei:p,cyno:y,dehya:v,diluc:b,diona:k,dori:z,eula:S,faruzan:w,fischl:A,freminet:q,furina:F,ganyu:C,gorou:L,"hu-tao":{name:"Hu Tao",title:"Fragranza del disgelo"},jean:K,"kaedehara-kazuha":{name:"Kaedehara Kazuha",title:"Vortice delle foglie scarlatte"},kaeya:M,"kamisato-ayaka":{name:"Kamisato Ayaka",title:"Airone dei ghiacci"},"kamisato-ayato":{name:"Kamisato Ayato",title:"Pilastro della forza d'animo"},kaveh:T,keqing:j,kirara:x,klee:B,"kujou-sara":{name:"Kujou Sara",title:"Kaburaya piumata"},"kuki-shinobu":{name:"Kuki Shinobu",title:"Risolutrice di ogni problema"},layla:G,lisa:R,lynette:P,lyney:V,mika:D,mona:E,nahida:_,navia:N,neuvillette:Y,nilou:O,ningguang:H,noelle:I,qiqi:X,"raiden-shogun":{name:"Shogun Raiden",title:"Piano dell'eutimia"},razor:J,rosaria:Q,"sangonomiya-kokomi":{name:"Sangonomiya Kokomi",title:"Perla di saggezza"},sayu:W,shenhe:Z,"shikanoin-heizou":{name:"Shikanoin Heizou",title:"Armonia analitica"},sucrose:U,tartaglia:$,thoma:aa,tighnari:ea,venti:ia,wanderer:na,wriothesley:ta,xiangling:oa,xiao:la,xingqiu:ra,xinyan:sa,"yae-miko":{name:"Yae Miko",title:"Divertimento astuto"},yanfei:ca,yaoyao:da,yelan:ua,yoimiya:ma,"yun-jin":{name:"Yun Jin",title:"Stella del palcoscenico"},zhongli:ga};export{a as akuoumaru,o as albedo,l as alhaitham,r as amber,s as baizhu,c as barbara,d as beidou,u as bennett,m as candace,g as charlotte,h as chevreuse,f as chongyun,p as collei,y as cyno,ha as default,v as dehya,b as diluc,k as diona,z as dori,S as eula,w as faruzan,A as fischl,q as freminet,F as furina,C as ganyu,L as gorou,K as jean,M as kaeya,T as kaveh,j as keqing,x as kirara,B as klee,G as layla,R as lisa,P as lynette,V as lyney,D as mika,E as mona,_ as nahida,N as navia,Y as neuvillette,O as nilou,H as ningguang,I as noelle,X as qiqi,e as rainslasher,J as razor,Q as rosaria,i as rust,W as sayu,Z as shenhe,n as slingshot,U as sucrose,$ as tartaglia,aa as thoma,ea as tighnari,ia as venti,t as verdict,na as wanderer,ta as wriothesley,oa as xiangling,la as xiao,ra as xingqiu,sa as xinyan,ca as yanfei,da as yaoyao,ua as yelan,ma as yoimiya,ga as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ja-JP-76868286.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ja-JP-76868286.js
deleted file mode 100644
index cf638cd4..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ja-JP-76868286.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u539F\u795E\u7948\u9858\u30B7\u30DF\u30E5",n="\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC",a="\u6B66\u5668",t="\u795E\u306E\u76EE",r="\u98A8",s="\u6C37",o="\u8349",i="\u96F7",p="\u6C34",l="\u5CA9",c="\u708E",d="\u5F13",m="\u6CD5\u5668",u="\u4E21\u624B\u5263",h="\u7247\u624B\u5263",y="\u9577\u67C4\u6B66\u5668",g="\u8FFD\u52A0\u5831\u916C",b="\u7372\u5F97",f="\u304A\u5F85\u3061\u304F\u3060\u3055\u3044",w="\u63A5\u7D9A\u5931\u6557\u3002\u30E2\u30A6\u30A4\u30C1\u30C9\u30AA\u30BF\u30E1\u30B7\u30AF\u30C0\u30B5\u30A4",v="OK",B="\u30AD\u30E3\u30F3\u30BB\u30EB",P="\u3053\u306E\u30B5\u30A4\u30C8\u3067\u4F7F\u7528\u3055\u308C\u3066\u3044\u308B\u3059\u3079\u3066\u306E\u30EA\u30BD\u30FC\u30B9\u306FmiHoYo\u304C\u6240\u6709\u3057\u3066\u3044\u307E\u3059\u3002",N="\u3053\u306E\u30A2\u30D7\u30EA\u306F\u30D5\u30A1\u30F3\u30E1\u30A4\u30C9\u3067\u3059\u3002\u3086\u3063\u304F\u308A\u3057\u3066\u3044\u3063\u3066\u306D\uFF01",C="\u7A7A\u767D\u90E8\u5206\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u7D9A\u884C",x="\u30DB\u30FC\u30E0\u753B\u9762/\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u3078\u306E\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u624B\u9806",k="\u30B7\u30A7\u30A2",S="\u30B9\u30AF\u30EA\u30FC\u30F3\u30B7\u30E7\u30C3\u30C8",A="\u53D6\u5F97\u4E2D",I="\u521D\u56DE\u30B7\u30A7\u30A2\u5831\u916C : {qty}",D="Ver.",F="\u5BC4\u4ED8",R={beginner:" \u521D\u5FC3\u8005\u5FDC\u63F4\u7948\u9858",wanderlust:" \u5954\u8D70\u4E16\u9593","epitome-invocation":"\u795E\u92F3\u8CE6\u5F62","adrift-in-the-harbor":"\u9038\u4FD7\u9021\u5DE1","auric-blaze":"\u9EC4\u91D1\u3092\u7194\u304B\u3059 \u70C8\u65E5","azure-excursion":"\u82B1\u8E0F\u307F\u6B69\u3080 \u84BC\u6D41","ballad-in-goblets":"\u676F\u306B \u6CE8\u304C\u308C\u305F\u8A69","born-of-ocean-swell":"\u6CE2\u6298\u308A\u306E\u5239\u90A3","caution-in-confidence":"\u6212\u52C5\u67A2\u7B56","chanson-of-many-waters":"\u8846\u306E\u6C34\u306E\u980C\u6B4C","conjuring-chiaroscuro":"\u5149\u3068\u5F71 \u306E\u30C8\u30EA\u30C3\u30AF","dance-of-lantern":"\u9B5A\u9F8D\u706F\u663C","decree-of-the-deeps":"\u6DF5\u6D77 \u306B\u4EE4\u3059\u308B\u8005","discerner-of-enigmas":"\u5929\u3092\u8ADC\u77E5\u305B\u3057 \u767D\u8896","drifting-luminescence":"\u6D77\u539F \u306B\u6D6E\u304B\u3076\u8679\u73E0","everbloom-violet":"\u83EF\u7D2B\u6AFB\u7DCB","farewell-of-snezhnaya":"\u51AC\u56FD\u3068\u306E\u5225\u308C","from-ashes-reborn":"\u6B8B\u706B\u5909\u76F8","gentry-of-hermitage":"\u5927\u96A0\u671D\u5E02","immaculate-pulse":"\u5FC3\u73E0\u5FAA\u7405","in-the-name-of-the-rosula":"\u68D8\u8594\u8587\u306E\u8A93\u3044","invitation-to-mundane-life":"\u706F\u5BB4\u306E\u62DB\u304D","leaves-in-the-wind":"\u8FBB\u98A8\u306B\u821E\u3046 \u843D\u8449","moment-of-bloom":"\u5F7C\u5CB8\u6E80\u958B","oni_s-royale":"\u9B3C\u9580\u95D8\u5BB4","reign-of-serenity":"\u5F71\u5BC2\u306E\u5929\u4E0B\u4EBA","secretum-secretorum":"\u795E\u79D8\u306E\u751F\u606F","sparkling-steps":"\u30D5\u30EC\u30A2\u306E\u8A2A\u308C","tapestry-of-golden-flames":"\u5929\u306E\u5DDD\u306B\u54B2\u304D\u3057 \u5927\u8F2A","tempestuous-destiny":"\u4E07\u52AB\u306B\u6E21\u308B\u6C3E\u6FEB","the-heron_s-court":"\u767D\u9DFA\u306E\u5EAD","the-moongrass-enlightenment":"\u53E1\u667A\u3092\u6075\u3080 \u6708\u898B\u8349","the-transcendent-one-returns":"\u5875\u4E16\u306B\u623B\u308A\u3057\u4E00\u9DB4","twilight-arbiter":"\u51A5\u663C\u306E\u88C1\u5B9A","twirling-lotus":"\u512A\u3005\u305F\u308B \u84EE\u6B4C\u306E\u821E","viridescent-vigil":"\u6DF1\u304D\u68EE\u306E \u5DE1\u56DE\u8005"},T={bannerConfig:"{banner}  \u78BA\u7387\u8A2D\u5B9A",baseRate:"\u2605{rarity} \u57FA\u790E\u51FA\u73FE\u78BA\u7387:",maxPity:"\u2605{rarity} \u5929\u4E95:",hardPity:"\u2605{rarity} \u78BA\u7387\u4E0A\u6607\u304C\u59CB\u307E\u308B\u7948\u9858\u9023\u6570:",currentPity:"{rarity}-Star Current Pity",winRate:"\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u7372\u5F97\u78BA\u7387:",charRate:"\u6B66\u5668\u3067\u306F\u306A\u304F\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u5165\u624B\u3059\u308B\u78BA\u7387",nonRateup:"(When losing 4-Star Item)",selectedRate:"\u8ECC\u5B9A\u6B66\u5668\u7372\u5F97\u78BA\u7387:",guaranteedSystem:"Guaranteed System",backToDefault:"\u521D\u671F\u8A2D\u5B9A\u306B\u623B\u3059",resetPrompt:'<b>"{banner}"</b> \u306E\u78BA\u7387\u8A2D\u5B9A\u3092\u521D\u671F\u8A2D\u5B9A\u306B\u623B\u3057\u307E\u3059\u304B\uFF1F',default:"Default",never:"Never",always:"Always"},W={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},U={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},E={wishTitle:"\u7948\u9858",rollButton:"{count}\u56DE\u7948\u9858",stellaFortuna:"\u8A72\u5F53\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u661F\u5C51",loadFailed:"\u7948\u9858\u306E\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F! <br /> \u4ED6\u306E\u7948\u9858\u306B\u5207\u308A\u66FF\u3048\u308B\u3001\u307E\u305F\u306F\u30A4\u30F3\u30BF\u30FC\u30CD\u30C3\u30C8\u3078\u306E\u518D\u63A5\u7D9A\u3092\u304A\u8A66\u3057\u304F\u3060\u3055\u3044!",loadMeteor:"\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9",skipMeteor:"\u30B9\u30AD\u30C3\u30D7",loadMeteorMsg:"<span>\u661F{star}\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3</span>\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u4E2D",meteorNotLoaded:"\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u304C\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002\u30B9\u30E0\u30FC\u30BA\u306A\u7948\u9858\u306E\u305F\u3081\u306B\u3001\u4E8B\u524D\u306B<span>\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9</span>\u3059\u308B\u304B\u3001<span>\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u306E\u30B9\u30AD\u30C3\u30D7\u3092\u30AA\u30F3</span>\u306B\u3057\u307E\u3059",preloadFilesMsg:"*\u8AAD\u307F\u8FBC\u307E\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u30D6\u30E9\u30A6\u30B6\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u4FDD\u5B58\u3055\u308C\u308B\u305F\u3081\u3001\u30B5\u30A4\u30C8\u304C\u66F4\u65B0\u3055\u308C\u308B\u307E\u3067\u518D\u5EA6\u8AAD\u307F\u8FBC\u3080\u5FC5\u8981\u306F\u3042\u308A\u307E\u305B\u3093\u3002",banner:{text:"\u7948\u9858",allBanner:"\u5168\u3066\u306E\u7948\u9858",previous:"\u904E\u53BB\u306E\u7948\u9858\u4E00\u89A7",findBanner:"\u7948\u9858\u3092\u691C\u7D22",group:"\u8868\u793A",beginner:" \u521D\u5FC3\u8005\u5FDC\u63F4\u7948\u9858","character-event":"\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC","weapon-event":"\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u6B66\u5668",standard:"\u901A\u5E38\u7948\u9858",wishDescription:"\u7948\u9858\u309210\u56DE\u3059\u308B\u3068\u3001\u5FC5\u305A\u26054\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",novice:"\u521D\u5FC3\u8005\u5411\u3051\u7948\u9858",up:"UP!",beginnerSet:"\u521D\u56DE10\u902320%\u30AA\u30D5\u3001{character}\u304C\u5FC5\u305A\u7372\u5F97\u53EF\u80FD",beginnerNote:"\u300C\u30E1\u30A4\u30C9\u306E\u793C\u5100\u306B\u6C17\u3092\u3064\u3051\u307E\u3059\u3002\u300D",beginnerChance:"\u6B8B\u308A\u56DE\u6570\uFF1A{chances}",standardNote:"\u901A\u5E38\u7948\u9858\u306F\u671F\u9650\u304C\u3042\u308A\u307E\u305B\u3093\u3002",allWeaponTypes:"\u5168\u7A2E\u985E",etc:"\u306A\u3069",probIncreased:"\u51FA\u73FE\u78BA\u7387\u30A2\u30C3\u30D7\uFF01",eventNote:"\u30A4\u30D9\u30F3\u30C8\u9650\u5B9A\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306F\u78BA\u7387UP\u671F\u9593\u4E2D\u306B\u305D\u308C\u305E\u308C\u306E\u7948\u9858\u304B\u3089\u3057\u304B\u7372\u5F97\u3067\u304D\u307E\u305B\u3093\u3002",viewDetails:"\u5177\u4F53\u7684\u306A\u5185\u5BB9\u306F\u3010\u8A73\u7D30\u3011\u304B\u3089\u78BA\u8A8D\u3067\u304D\u307E\u3059\u3002"},epitomizedPath:{text:"\u795E\u92F3\u8ECC\u5B9A",fatePoint:"\u547D\u5B9A\u5024",cancelPrompt:"\u73FE\u5728\u306E\u8ECC\u5B9A\u3092\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u307E\u3059\u304B\uFF1F",cancelDesc:"\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002",selectWeapon:"\u8ECC\u5B9A\u3055\u308C\u305F\u6B66\u5668",chartCourseOf:"{target}\u3092\u8ECC\u5B9A\u3059\u308B",cancelCourse:"\u8ECC\u5B9A\u3092\u30AD\u30E3\u30F3\u30BB\u30EB",chartCourse:"\u8ECC\u5B9A",courseSetFor:"\u73FE\u5728\u306E\u8ECC\u5B9A: {selectedCourse}",description:["\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u306F\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u306E\u7279\u5225\u4ED5\u69D8\u3067\u3059\u3002","\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u3001\u5E0C\u671B\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26055\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u305F\u5F8C\u3001\u7948\u9858\u3067<span>\u7372\u5F97\u3057\u305F\u26055\u6B66\u5668\u304C\u8ECC\u5B9A\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u30921\u70B9\u7372\u5F97\u3057\u307E\u3059</span>\u3002","\u547D\u5B9A\u5024\u304C\u4E0A\u9650\u306B\u9054\u3057\u305F\u6642\u3001\u6B21\u306B\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u5834\u5408\u3001\u5FC5\u305A\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002","\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u3001\u7948\u9858\u3067<span>\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u306E\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u547D\u5B9A\u5024\u304C\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059</span>\u3002","\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F\u7D2F\u8A08\u3055\u308C\u307E\u305B\u3093\u3002","\u6B66\u5668\u306E\u8ECC\u5B9A\u72B6\u614B\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002<span>\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059</span>\u3002","<span>\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u304C\u7D42\u4E86\u3057\u305F\u5F8C\u3001\u547D\u5B9A\u5024\u306F\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u307E\u3059</span>\u3002"]},result:{skip:"\u30B9\u30AD\u30C3\u30D7",meteorFailed:"\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u306E\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F",new:"\u65B0\u898F",convertion:"\u5909\u63DB",title:"{item} \u7948\u9858\u7D50\u679C"}},K={heading:"\u30AD\u30E3\u30E9\u5916\u89B3",default:"\u30C7\u30D5\u30A9\u30EB\u30C8",setOutfit:"\u5207\u308A\u66FF\u3048",owned:"\u6240\u6709\u6E08",purchasePrompt:"\u5BFE\u5FDC\u3059\u308B\u30AD\u30E3\u30E9\u306F\u307E\u3060\u672A\u6240\u6301\u3067\u3059\u304C\u3001\u672C\u5F53\u306B\u3053\u306E\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0\u3092\u8CFC\u5165\u3057\u307E\u3059\u304B\uFF1F",promptInfo:"\u307E\u305F\u5F8C\u3067\u6765\u3088\u3046\u3001\u5148\u306B\u30AD\u30E3\u30E9\u3092\u624B\u306B\u5165\u308C\u3088\u3046\uFF01",obtained:"\u65B0\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0\u7372\u5F97",unlocked:"{character}\u5C02\u7528\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0",item:{"5-star-outrider":{name:"\u300C\u6E80\u70B9\u306E\u5075\u5BDF\u9A0E\u58EB\u300D"},"favonian-fevotion":{name:"\u98A8\u306E\u52A0\u8B77"},"flowing-fate":{name:"\u661F\u547D\u6D41\u8EE2"},"executor_s-thorns":{name:"\u68D8\u306E\u51E6\u5211"},"sea-breeze-dandelion":{name:"\u6D77\u98A8\u306E\u5922",description:"\u590F\u3092\u30E2\u30C1\u30FC\u30D5\u306B\u3057\u305F\u30B8\u30F3\u306E\u8863\u88C5\u3002\u6DBC\u3057\u6C17\u306A\u4F5C\u308A\u3060\u304C\u3001\u540C\u6642\u306B\u512A\u96C5\u3055\u3082\u611F\u3058\u3089\u308C\u308B\u3002\u6D77\u8FBA\u306E\u65C5\u306B\u3074\u3063\u305F\u308A\u3002"},"summertime-sparkle":{name:"\u30B5\u30DE\u30FC\u30BF\u30A4\u30E0\u30B9\u30D1\u30FC\u30AF\u30EB",description:"\u6D77\u8FBA\u3092\u30E2\u30C1\u30FC\u30D5\u306B\u3057\u305F\u30D0\u30FC\u30D0\u30E9\u306E\u8863\u88C5\u3002\u590F\u306E\u6D3B\u6C17\u6EA2\u308C\u308B\u714C\u3073\u3084\u304B\u306A\u30B9\u30AB\u30FC\u30C8\u304B\u3089\u306F\u3001\u723D\u3084\u304B\u306A\u6D77\u306E\u9999\u308A\u304C\u6F02\u3063\u3066\u304F\u308B\u3002"},"opulent-splendor":{name:"\u9713\u88FE\u306E\u821E",description:"\u523B\u6674\u306E\u793C\u670D\u3002\u6D77\u706F\u796D\u306E\u4F73\u666F\u306E\u4E2D\u3001\u904E\u53BB\u306E\u82E6\u5FC3\u306B\u3088\u308A\u63CF\u304B\u308C\u305F\u7DDA\u306B\u306F\u3001\u4ECA\u5BB5\u306E\u8EFD\u3084\u304B\u3067\u9E97\u3057\u3044\u59FF\u304C\u7E54\u308A\u8FBC\u307E\u308C\u3066\u3044\u308B\u3002"},"orchid_s-evening-gown":{name:"\u7D17\u306E\u5E7D\u862D",description:"\u51DD\u5149\u306E\u793C\u670D\u3002\u7D3A\u8272\u306E\u30C9\u30EC\u30B9\u306F\u5F7C\u5973\u306E\u512A\u96C5\u3067\u7F8E\u3057\u3044\u66F2\u7DDA\u3092\u63CF\u304D\u3001\u8DB3\u9996\u3092\u98FE\u3063\u3066\u3044\u308B\u8776\u306E\u7FBD\u306F\u305F\u304A\u3084\u304B\u3055\u3092\u6F14\u51FA\u3057\u3066\u3044\u308B\u3002"},"ein-immernachtstraum":{name:"\u6975\u591C\u306E\u771F\u5922",description:"\u7687\u5973\u30D5\u30A3\u30C3\u30B7\u30E5\u30EB\u306E\u796D\u793C\u8863\u88C5\u3002\u9AD8\u8CB4\u306A\u308B\u8005\u304C\u3044\u3064\u307E\u3067\u3082\u52C7\u6C17\u3068\u8AA0\u610F\u3001\u305D\u3057\u3066\u5584\u826F\u306A\u5FC3\u3092\u6301\u3061\u7D9A\u3051\u3001\u3044\u304B\u306A\u308B\u60AA\u306B\u3082\u5C48\u3057\u306A\u3044\u3088\u3046\u306B\u3002"},"red-dead-of-night":{name:"\u30EC\u30C3\u30C9\u30C7\u30C3\u30C9\u30FB\u30AA\u30D6\u30FB\u30CA\u30A4\u30C8",description:"\u30C7\u30A3\u30EB\u30C3\u30AF\u304C\u96A0\u5BC6\u884C\u52D5\u3092\u3059\u308B\u969B\u306B\u7740\u308B\u8863\u88C5\u306E\u4E00\u3064\u3002\u305D\u308C\u306F\u307E\u308B\u3067\u3001\u5F71\u306E\u4E2D\u3067\u71C3\u3048\u308B\u708E\u306E\u3088\u3046\u3002\u6575\u306E\u76EE\u306B\u713C\u304D\u4ED8\u3044\u305F\u6DF1\u7D05\u306E\u6B8B\u75D5\u306F\u3001\u5F7C\u3089\u306B\u6D88\u3048\u308B\u3053\u3068\u306E\u306A\u3044\u60AA\u5922\u3092\u690D\u3048\u4ED8\u3051\u308B\u3002"},"a-sobriquet-under-shade":{name:"\u8449\u306B\u96A0\u308C\u3057\u82B3\u540D",description:"\u30EA\u30B5\u304C\u30B9\u30E1\u30FC\u30EB\u3092\u518D\u8A2A\u3057\u305F\u969B\u306B\u4F5C\u3089\u305B\u305F\u8863\u88C5\u3002\u670D\u88C5\u306E\u5B9F\u7528\u6027\u3068\u30A8\u30EC\u30AC\u30F3\u30B9\u306E\u30D0\u30E9\u30F3\u30B9\u306F\u7D76\u5999\u3002\u30EA\u30B5\u306E\u5B66\u751F\u6642\u4EE3\u306E\u5236\u670D\u3068\u5C11\u3057\u4F3C\u3066\u3044\u308B\u3002"},"springbloom-missive":{name:"\u82B1\u6642\u306B\u8A2A\u308C\u305F\u624B\u7D19",description:"\u795E\u91CC\u7DBE\u83EF\u306E\u304A\u51FA\u304B\u3051\u8863\u88C5\u3002\u5A2F\u697D\u5C0F\u8AAC\u306E\u633F\u7D75\u306B\u767B\u5834\u3059\u308B\u30D5\u30A9\u30F3\u30C6\u30FC\u30CC\u5973\u6027\u306E\u8863\u88C5\u3092\u30E2\u30C1\u30FC\u30D5\u306B\u3057\u305F\u6D0B\u670D\u3067\u3001\u30D5\u30A9\u30F3\u30C6\u30FC\u30CC\u306E\u8CB4\u5A66\u4EBA\u306E\u751F\u6D3B\u3092\u57A3\u9593\u898B\u3066\u3044\u308B\u3088\u3046\u306A\u6C17\u5206\u306B\u3055\u305B\u3066\u304F\u308C\u308B\u3002"},"blossoming-starlight":{name:"\u661F\u71ED\u306B\u63FA\u308C\u308B\u721B\u82B1",description:"\u30AF\u30EC\u30FC\u304C\u7279\u5B9A\u306E\u6F14\u5287\u306B\u51FA\u6F14\u3059\u308B\u969B\u306B\u7740\u308B\u4E01\u5BE7\u306A\u4F5C\u308A\u306E\u8863\u88C5\u3002\u9BAE\u3084\u304B\u306A\u8272\u3092\u3057\u3066\u304A\u308A\u3001\u307E\u308B\u3067\u30AF\u30EA\u30FC\u30E0\u306E\u82B1\u3068\u771F\u7D05\u306E\u30ED\u30A6\u30BD\u30AF\u3067\u98FE\u3089\u308C\u305F\u30B1\u30FC\u30AD\u306E\u3088\u3046\u306B\u3001\u300C\u30CF\u30C3\u30D4\u30FC\u300D\u3068\u300C\u30B9\u30DE\u30A4\u30EB\u300D\u3092\u5192\u967A\u306E\u81F3\u308B\u3068\u3053\u308D\u306B\u632F\u308A\u307E\u3044\u3066\u304F\u308C\u308B\u3002"},"sailwind-shadow":{name:"\u5E06\u5F71\u306B\u622F\u308B\u98A8",description:"\u30AC\u30A4\u30A2\u304C\u821E\u53F0\u4E0A\u3067\u300C\u77ED\u5200\u306E\u5927\u76D7\u8CCA\u300D\u3092\u6F14\u3058\u308B\u6642\u306E\u8863\u88C5\u3002\u300C\u76EE\u3092\u5F15\u304F\u300D\u3053\u3068\u3092\u30B3\u30F3\u30BB\u30D7\u30C8\u3068\u3057\u305F\u83EF\u3084\u304B\u306A\u4F5C\u308A\u3002\u3057\u304B\u3057\u3001\u7740\u7528\u306B\u306F\u305D\u3053\u307E\u3067\u624B\u9593\u304C\u304B\u304B\u3089\u305A\u3001\u3080\u3057\u308D\u4E00\u756A\u624B\u5165\u308C\u306B\u6642\u9593\u3092\u8981\u3059\u308B\u306E\u306F\u88C5\u98FE\u54C1\u3068\u77ED\u5200\u306E\u307B\u3046\u306B\u306A\u3063\u3066\u3044\u308B\u3002"}}},H={text:"\u8A73\u7D30\u8AAC\u660E",promotional:"\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7",itemlist:"\u30E9\u30A4\u30F3\u30CA\u30C3\u30D7",increasedRate:"\u4EE5\u4E0B\u306E\u30A2\u30A4\u30C6\u30E0\u300C\u51FA\u73FE\u78BA\u7387UP\uFF01\uFF01\uFF01\u300D",percentageDrop:"\u2605{rarity}\u51FA\u73FE\u78BA\u7387\u306E{percentage}",wishDetails:"\u7948\u9858\u306E\u8A73\u7D30\u306F\u4EE5\u4E0B\u306E\u901A\u308A\u3067\u3059\u3002",probInfo:"\u2605{rarity}\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F\uFF1A{singlePercentage} (\u5929\u4E95\u3092\u542B\u3080\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\u306F\uFF1A{avgPercentage})",itemWishFor:"\u30E9\u30A4\u30F3\u30CA\u30C3\u30D7\u306F\u4EE5\u4E0B\u306E\u901A\u308A\u3067\u3059\u3002",itemType:"\u30BF\u30A4\u30D7",itemName:"\u30BF\u30A4\u30C8\u30EB",beginnerInfo:"\u671F\u9650\u306A\u3057\uFF0820\u9023\u306E\u7948\u9858\u5F8C\u306B\u7D42\u4E86\uFF09",limited:"\u671F\u9593\u9650\u5B9A\u30A4\u30D9\u30F3\u30C8",permanent:"\u671F\u9650\u306A\u3057",alert:"\u203B\u5F53\u7948\u9858\u306F\u300C{wishName}\u300D\u3067\u3059\u3002\u7948\u9858\u56DE\u6570\u306E\u7D2F\u8A08\u306F\u300C{wishName}\u300D\u306E\u307F\u3067\u6570\u3048\u3089\u308C\u3001\u4ED6\u306E\u7948\u9858\u3068\u306F\u5225\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002",beginner:["\u521D\u5FC3\u8005\u5FDC\u63F4\u7948\u9858\u306F\u65E5\u6642\u306B\u3088\u308B\u671F\u9650\u304C\u3042\u308A\u307E\u305B\u3093\u3002\u5F53\u7948\u9858\u306F\u30C6\u30A4\u30EF\u30C3\u30C8\u306E\u65B0\u7C73\u65C5\u4EBA\u5411\u3051\u306E\u5FDC\u63F4\u7948\u9858\u3068\u306A\u308A\u307E\u3059\u3002\u5F53\u7948\u9858\u3067\u306F\u300110\u9023\u3067\u6D88\u8017\u3059\u308B\u51FA\u4F1A\u3044\u306E\u7E01\u306E\u6570\u304C<span>20%\u30AA\u30D5</span>\u306B\u306A\u308A\u307E\u3059\u3002\u306A\u304A\u3001\u521D\u56DE10\u9023\u3067<span>\u5FC5\u305A</span>\u300C{character}\u300D\u304C\u51FA\u73FE\u3057\u3001\u6B21\u306E10\u9023\u3067\u5FC5\u305A<span>\u4ED6\u306E</span>\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u304C\u51FA\u73FE\u3057\u307E\u3059\uFF01\u5F53\u7948\u9858\u306F\u7948\u9858\u56DE\u6570\u306E\u4E0A\u9650\u304C\u3042\u308A\u307E\u3059\u3002\u304A\u4E00\u4EBA\u69D8<span>20\u9023</span>\u9650\u308A\u3068\u306A\u308A\u307E\u3059\u300220\u9023\u3092\u5F15\u304D\u7D42\u3048\u308B\u3053\u3068\u3067\u7948\u9858\u7D42\u4E86\u306B\u306A\u308A\u307E\u3059\u3002","\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002","\u3013\u7948\u9858\u8AAC\u660E\u3013","\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>5.100%</span>\u3067\u3059\u3002\u7DCF\u5408\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>13.000%</span>\u3067\u3059\u3002\u6700\u5927<span>10\u9023</span>\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002"],standard:["\u901A\u5E38\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306F\u65E5\u6642\u306B\u3088\u308B\u671F\u9650\u304C\u3042\u308A\u307E\u305B\u3093\u3002\u5F53\u7948\u9858\u3067\u306F\u3001\u975E\u9650\u5B9A\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u304C\u51FA\u73FE\u3057\u307E\u3059\u3002\u5F53\u7948\u9858\u3067\u306F\u300110\u9023\u6BCE\u306B<span>\u5FC5\u305A</span>\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u304C\u51FA\u73FE\u3057\u307E\u3059\u3002","\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002","\u3013\u7948\u9858\u8AAC\u660E\u3013","\u26055\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.300%</span>\u3067\u3059\u3002\u26055\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.300%</span>\u3067\u3059\u3002\u26055\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>1.600%</span>\u3067\u3059\u3002\u6700\u5927<span>90</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<br>\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>5.100%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>13.000%</span>\u3067\u3059\u3002\u6700\u592710\u9023\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<span>10</span>\u9023\u306E\u78BA\u5B9A\u67A0\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>99.400%</span>\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002"],events:["\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u304C\u958B\u59CB\u3055\u308C\u307E\u3057\u305F\u3002\u30A4\u30D9\u30F3\u30C8\u671F\u9593\u4E2D\u3001<span>\u9650\u5B9A</span>\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{featuredCharacter}\u300D\u3001\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{rateupCharacters}\u300D\u306E\u51FA\u73FE\u78BA\u7387\u304C<span>\u5927\u5E45\u306BUP</span>\uFF01<br/><span> \u203B\u4E0A\u8A18\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u4E2D\u3067\u3001\u9650\u5B9A\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306F\u901A\u5E38\u7948\u9858\u30FB\u300C\u5954\u8D70\u4E16\u9593\u300D\u306B\u5B9F\u88C5\u3055\u308C\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\u3002 </span>","\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002","\u3013\u7948\u9858\u8AAC\u660E\u3013","\u3010\u26055\u30A2\u30A4\u30C6\u30E0\u3011","\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>1.600%</span>\u3067\u3059\u3002\u6700\u5927<span>90</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>50.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{featuredCharacter}\u300D\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002","\u3010\u26054\u30A2\u30A4\u30C6\u30E0\u3011","\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>5.100%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>13.000%</span>\u3067\u3059\u3002\u6700\u592710\u9023\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<span>10</span>\u9023\u306E\u78BA\u5B9A\u67A0\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>99.400%</span>\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002<br>\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>50.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{rateupCharacters}\u300D\u304B\u30891\u4F53\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7948\u9858\u3067\u7372\u5F97\u3067\u304D\u308B\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u51FA\u73FE\u78BA\u7387\u306F\u5747\u7B49\u3067\u3059\u3002"],weapons:["\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u304C\u958B\u59CB\u3055\u308C\u307E\u3057\u305F\u3002\u30A4\u30D9\u30F3\u30C8\u671F\u9593\u4E2D\u3001<span>\u9650\u5B9A</span>\u26055\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u3001\u26054\u6B66\u5668\u300C{rateupWeapons}\u300D\u306E\u51FA\u73FE\u78BA\u7387\u304C<span>\u5927\u5E45\u306BUP</span>\uFF01<br/><span> \u203B\u4E0A\u8A18\u306E\u6B66\u5668\u306E\u4E2D\u3067\u3001\u9650\u5B9A\u6B66\u5668\u304C\u901A\u5E38\u7948\u9858\u30FB\u300C\u5954\u8D70\u4E16\u9593\u300D\u306B\u5B9F\u88C5\u3055\u308C\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\u3002 </span>","\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002","\u3013\u7948\u9858\u8AAC\u660E\u3013","\u3010\u26055\u30A2\u30A4\u30C6\u30E0\u3011","\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26055\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.700%</span>\u3067\u3059\u3002\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>1.850%</span>\u3067\u3059\u3002\u6700\u5927<span>80</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26055\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<br/>\u26055\u6B66\u5668\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>75.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u304B\u30891\u672C\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26055\u6B66\u5668\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26055\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u547D\u5B9A\u5024\u304C\u4E0A\u9650\u306B\u9054\u3057\u3066\u3044\u306A\u3044\u72B6\u6CC1\u3067\u3001\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u5834\u5408\u3001\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u3054\u3068\u306E\u51FA\u73FE\u78BA\u7387\u306F\u5747\u7B49\u3067\u3059\u3002<br/>\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u3067\u306F\u3001\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26055\u6B66\u5668\u3092\u8ECC\u5B9A\u3067\u304D\u307E\u3059\u3002\u8ECC\u5B9A\u6B66\u5668\u306E\u9078\u629E\u306F\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u671F\u9593\u4E2D\u306E\u307F\u6709\u52B9\u3067\u3059\u3002<br/>\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u305F\u5F8C\u306B\u7372\u5F97\u3057\u305F\u26055\u6B66\u5668\u304C\u8ECC\u5B9A\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u30921\u70B9\u7372\u5F97\u3057\u307E\u3059\u3002\u547D\u5B9A\u5024\u304C<span>\u4E0A\u9650</span>\u306B\u9054\u3057\u305F\u6642\u3001\u6B21\u306B\u4ECA\u671F\u306E\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u5834\u5408\u3001<span>\u5FC5\u305A</span>\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u547D\u5B9A\u5024\u304C\u4E0A\u9650\u306B\u9054\u3057\u3066\u3044\u308B\u304B\u5426\u304B\u306B\u95A2\u308F\u3089\u305A\u3001<span>0</span>\u306B\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002<br/>\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F<span>\u7D2F\u8A08\u3055\u308C\u307E\u305B\u3093</span>\u3002<br/>\u8ECC\u5B9A\u6B66\u5668\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F<span>0</span>\u306B\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002<br/>\u203B\u4ECA\u671F\u306E\u7948\u9858\u306E\u547D\u5B9A\u5024\u306F\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u671F\u9593\u4E2D\u306E\u307F\u6709\u52B9\u3067\u3059\u3002\u4ECA\u671F\u306E\u7948\u9858\u304C\u7D42\u4E86\u3057\u305F\u5F8C\u3001\u547D\u5B9A\u5024\u306F<span>0</span>\u306B\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u307E\u3059\u3002","\u3010\u26054\u30A2\u30A4\u30C6\u30E0\u3011","\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>6.000%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>3.000%</span>\u3067\u3059\u3002\u26054\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>3.000%</span>\u3067\u3059\u3002\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>14.500%</span>\u3067\u3059\u3002\u6700\u5927<span>10</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<span>10</span>\u9023\u306E\u78BA\u5B9A\u67A0\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>99.300%</span>\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>0.700%</span>\u3067\u3059\u3002 <br/>\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>75.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u300C{rateupWeapons}\u300D\u304B\u30891\u672C\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26054\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7948\u9858\u3067\u7372\u5F97\u3067\u304D\u308B\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26054\u6B66\u5668\u306E\u51FA\u73FE\u78BA\u7387\u306F\u5747\u7B49\u3067\u3059\u3002"],convertion:{fiveStar:"\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u540C\u6642\u306B{starglitter}\u309210\u500B\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",fourStar:"\u26054\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u540C\u6642\u306B{starglitter}\u30922\u500B\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",threeStar:"\u26053\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u540C\u6642\u306B{stardust}\u309215\u500B\u7372\u5F97\u3067\u304D\u307E\u3059\u3002"},duplicate:{heading:"\u3013\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u91CD\u8907\u7372\u5F97\u3013",text:"\u5404\u65B9\u6CD5\uFF08\u7948\u9858\u3001\u30B7\u30E7\u30C3\u30D7\u4EA4\u63DB\u3001\u30B7\u30B9\u30C6\u30E0\u914D\u5E03\u306A\u3069\uFF09\u3067\u3001\u2605{rarity}\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u30922\uFF5E7\u56DE\u91CD\u8907\u3057\u3066\u7372\u5F97\u3057\u305F\u6642\u3001{stellaFortuna}1\u500B\u3068\u3001{starglitter}{constBonus}\u500B\u306B\u5909\u63DB\u3055\u308C\u307E\u3059\u30028\u56DE\u76EE\u4EE5\u964D\u306E\u7372\u5F97\u3067\u306F\u3001{starglitter}{fullConstBonus}\u500B\u306B\u5909\u63DB\u3055\u308C\u307E\u3059\u3002"}},M={title:"\u7948\u9858\u5C65\u6B74",text:"\u7948\u9858\u5C65\u6B74",resetButton:"\u30EA\u30BB\u30C3\u30C8",resetPromptTitle:"\u7948\u9858\u5C65\u6B74\u306E\u30EA\u30BB\u30C3\u30C8",resetPrompt:" {bannerName} \u304B\u3089\u6392\u51FA\u3055\u308C\u305F\u3059\u3079\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u304C\u30A4\u30F3\u30D9\u30F3\u30C8\u30EA\u304B\u3089\u524A\u9664\u3055\u308C\u307E\u3059\u3002 \u672C\u5F53\u306B\u30EA\u30BB\u30C3\u30C8\u3057\u307E\u3059\u304B\uFF1F",resetSuccess:"\u30EA\u30BB\u30C3\u30C8\u6210\u529F\uFF01",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"\u7948\u9858\u30BF\u30A4\u30D7",disclaimer:"\u7948\u9858\u30C7\u30FC\u30BF\u3092\u30A4\u30F3\u30BF\u30FC\u30CD\u30C3\u30C8\u4E0A\u306B\u4FDD\u5B58\u3059\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\u3002IndexedDB\u3092\u5229\u7528\u3059\u308B\u305F\u3081\u3001\u30C7\u30FC\u30BF\u306F\u3059\u3079\u3066\u30D6\u30E9\u30A6\u30B6\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u306B\u4FDD\u5B58\u3055\u308C\u308B\u3053\u3068\u306B\u306A\u308A\u307E\u3059\u3002\u30E6\u30FC\u30B6\u30FC\u81EA\u8EAB\u304C\u524A\u9664/\u30EA\u30BB\u30C3\u30C8\u30DC\u30BF\u30F3\u3067\u524A\u9664\u3059\u308B\u304B\u3001\u30D6\u30E9\u30A6\u30B6\u306E\u30C7\u30FC\u30BF\u3092\u6D88\u53BB\u3057\u306A\u3044\u9650\u308A\u524A\u9664\u3055\u308C\u307E\u305B\u3093\u3002",currentPity:"\u73FE\u5728\u306E\u5929\u4E95\u30AB\u30A6\u30F3\u30C8:",totalPull:"\u7948\u9858\u5408\u8A08\u56DE\u6570:",totalSpend:"\u6D88\u8CBB\u539F\u77F3\u7DCF\u6570:",filterTxt:"\u30D5\u30A3\u30EB\u30BF\u30FC",filter:"\u2605{rarity}",filterAll:"\u3059\u3079\u3066",pity:"\u5929\u4E95\u30AB\u30A6\u30F3\u30C8",timeReceived:"\u7948\u9858\u671F\u9593",waiting:"\u304A\u5F85\u3061\u304F\u3060\u3055\u3044",noData:"\u30C7\u30FC\u30BF\u304C\u3042\u308A\u307E\u305B\u3093",untracked:"\u30C8\u30E9\u30C3\u30AD\u30F3\u30B0\u3055\u308C\u3066\u3044\u307E\u305B\u3093",item:"\u30A2\u30A4\u30C6\u30E0",win:"50%\u306B\u52DD\u5229",lose:"50%\u306B\u6557\u5317",guaranteed:"\u78BA\u5B9A\u7372\u5F97",selected:"\u8ECC\u5B9A\u7372\u5F97",olderLayout:"Ver.1\u30EC\u30A4\u30A2\u30A6\u30C8\u306B\u5207\u66FF",switchv2:"Ver.2\u30EC\u30A4\u30A2\u30A6\u30C8\u306B\u5207\u66FF"},O={text:"\u30B7\u30E7\u30C3\u30D7",paimonBargains:"\u30B9\u30BF\u30FC\u4EA4\u63DB",fateNeeded:"{currency}\u304C{rollQty}\u500B\u8DB3\u308A\u307E\u305B\u3093\u304C\u3001",primoNeeded:"\u539F\u77F3\u3092{primoPrice}\u500B\u4F7F\u3063\u3066\u8CFC\u5165\u3057\u307E\u3059\u304B\uFF1F",purchaseUpto:"\u6570\u91CF\u9650\u5B9A 1",purchaseConfirm:"\u8CFC\u5165\u78BA\u8A8D",exchangeHeading:"\u30A2\u30A4\u30C6\u30E0\u3092\u4EA4\u63DB\u3059\u308B",purchaseHeading:"\u30A2\u30A4\u30C6\u30E0\u3092\u4EA4\u63DB\u3059\u308B",purchaseButton:"\u4EA4\u63DB",pay:"\u8CFC\u5165",product:"\u5546\u54C1",consume:"\u6D88\u8CBB",selectPayment:"\u6C7A\u6E08\u65B9\u6CD5",unrealWallet:"\u30BF\u30EB\u30BF\u30EA\u30E4",convertPrimo:"\u539F\u77F3\u306B\u81EA\u52D5\u5909\u63DB\u3057\u307E\u3059\u304B\uFF1F",proceedPayment:"\u8CFC\u5165",qty:"\u6570\u91CF",insufficient:"\u30A2\u30A4\u30C6\u30E0\u4E0D\u8DB3",crystalTopup:"\u7D50\u6676\u51DD\u7D50",initialBonus:"\u521D\u56DE2\u500D\u30DC\u30FC\u30CA\u30B9",bonus:"\u304A\u307E\u3051",buyGenesisHeading:"\u5275\u4E16\u7D50\u6676\u3092\u8CFC\u5165",recomendedHeading:"\u304A\u3059\u3059\u3081",paimonHeading:"\u30B9\u30BF\u30FC\u4EA4\u63DB",welkinNote:"\u91CD\u8907\u8CFC\u5165\u53EF\u80FD",limitedOffer:"\u671F\u9593\u9650\u5B9A\u4FA1\u683C",noLimitTime:"\u66F4\u65B0\u671F\u9593\uFF1A\u671F\u9650\u306A\u3057",paymentChilde:"\u4FFA\u304C\u6255\u3046\u3088",paymentTears:"\u305C\u3093\u3076\u30C9\u30AB\u30FC\u30F3\uFF01",paymentWakaranai:"\u308F\u304B\u3089\u306A\u3044\u2026",recomended:{welkin:"\u7A7A\u6708\u306E\u795D\u798F",newOutfit:"\u65B0\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0",dayRemaining:"\u6B8B\u308A {days}\u65E5",alreadyClaimed:"\u672C\u65E5\u53D6\u5F97\u6E08",instantlyGet:"\u8CFC\u5165\u3059\u308B\u3068\u7372\u5F97",dailyGift:"\u6BCF\u65E5\u8CB0\u3048\u308B",obtainTotal:"*\u6709\u6548\u671F\u965030\u65E5\uFF01\u7D2F\u8A08\u3067{totalGenesis}\u5275\u4E16\u7D50\u6676\u3068{totalPrimo}\u539F\u77F3\u304C\u7372\u5F97\u3067\u304D\u307E\u3059\uFF01",claimingBlessing:"\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u5831\u916C\u3092\u7372\u5F97",issuedPurchase:"\u8CFC\u5165\u3059\u308B\u3068\u7372\u5F97",collect:"\u6BCE\u65E5\u8CB0\u3048\u308B"},exchange:{starglitter:"\u30B9\u30BF\u30FC\u30E9\u30A4\u30C8\u4EA4\u63DB",stardust:"\u30B9\u30BF\u30FC\u30C0\u30B9\u30C8\u4EA4\u63DB",primogem:"\u539F\u77F3\u8CFC\u5165"},item:{genesis:"\u5275\u4E16\u7D50\u6676",primogem:"\u539F\u77F3",intertwined:"\u7D21\u304C\u308C\u305F\u904B\u547D",acquaint:"\u51FA\u4F1A\u3044\u306E\u7E01",starglitter:"\u7121\u4E3B\u306E\u30B9\u30BF\u30FC\u30E9\u30A4\u30C8",stardust:"\u7121\u4E3B\u306E\u30B9\u30BF\u30FC\u30C0\u30B9\u30C8"},description:{intertwined:"\u5922\u3092\u3064\u306A\u3050\u904B\u547D\u306E\u7A2E\u3002 \u77F3\u306E\u8F1D\u304D\u306F\u672C\u6765\u4EA4\u308F\u3089\u306A\u3044\u904B\u547D\u3092\u4EA4\u5DEE\u3055\u305B\u3001\u4E92\u3044\u306E\u5922\u3092\u7E4B\u3052\u3001\u307E\u3055\u306B\u3053\u306E\u8F1D\u304D\u306F\u661F\u661F\u306E\u5FC3\u306E\u8D74\u304F\u5F62\u306B\u7E4B\u3052\u308B\u3068\u540C\u3058\u3067\u3042\u308B\u3002",acquaint:"\u661F\u7A7A\u3092\u7167\u3089\u3059\u5E0C\u671B\u306E\u7A2E\u3002\u3069\u3093\u306A\u306B\u96E2\u308C\u3066\u3082\u3001\u7E01\u77F3\u306E\u5C0E\u304D\u3067\u3001\u904B\u547D\u306E\u4E8C\u4EBA\u306F\u661F\u7A7A\u306E\u4E0B\u3067\u5DE1\u308A\u4F1A\u3048\u308B\u3002"}},z={text:"\u30A4\u30F3\u30D9\u30F3\u30C8\u30EA",unsetOutfit:"\u8863\u88C5\u89E3\u9664",setOutfit:"\u8863\u88C5\u30C1\u30A7\u30F3\u30B8",refinement:"\u7CBE\u932C\u30E9\u30F3\u30AF {count}",constellation:"\u547D\u306E\u661F\u5EA7 {count}",extra:" \u8FFD\u52A0\u6240\u6301 {count}",firstSummon:"\u521D\u56DE\u7372\u5F97: {date}",notOwned:"\u672A\u6240\u6301",sort:"\u4E26\u3073\u66FF\u3048",rarity:"\u30EC\u30A2\u5EA6",name:"\u540D\u524D",quantity:"\u547D\u306E\u661F\u5EA7",element:"\u795E\u306E\u76EE",release:"\u5B9F\u88C5\u65E5",type:"\u6B66\u5668\u30BF\u30A4\u30D7",owned:"\u6240\u6301",showAllOption:"\u5168\u3066\u306E{item}\u3092\u8868\u793A"},G={no:"\u30AA\u30D5",yes:"\u30AA\u30F3",text:"\u30E1\u30CB\u30E5\u30FC",feedback:"\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF",options:"\u30AA\u30D7\u30B7\u30E7\u30F3",updates:"\u66F4\u65B0\u5C65\u6B74",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"\u8A00\u8A9E",currency:"\u901A\u8CA8",fates:"\u7948\u9858\u56DE\u6570",unlimited:"\u30A8\u30F3\u30C9\u30EC\u30B9",manual:"\u30DE\u30CB\u30E5\u30A2\u30EB",mute:"BGM\u30FBSE\u3092\u30DF\u30E5\u30FC\u30C8",switchBanner:"\u7948\u9858\u5185\u5BB9\u306E\u5207\u66FF",showAllitems:"\u30A4\u30F3\u30D9\u30F3\u30C8\u30EA\u306E\u3059\u3079\u3066\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u8868\u793A",autoskip:"\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u306E\u30B9\u30AD\u30C3\u30D7",animatedbg:"\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u80CC\u666F",multiRoll:"\u7948\u9858\u9023\u6570(\u30C7\u30D5\u30A9\u30EB\u30C8:10\u9023)",factoryReset:"\u30C7\u30FC\u30BF\u306E\u6D88\u53BB\u3068\u521D\u671F\u5316",resetTitle:"\u30C7\u30FC\u30BF\u306E\u6D88\u53BB\u3068\u521D\u671F\u5316",rotate:"\u65C5\u4EBA\u3001\u753B\u9762\u3092\u6A2A\u5411\u304D\u306B\u3059\u308B\u3068\u3088\u308A\u697D\u3057\u3081\u308B\u305E\uFF01",keepSetting:"\u8A2D\u5B9A\u3092\u4FDD\u6301\u3057\u305F\u307E\u307E\u6D88\u53BB <small> \u73FE\u5728\u306E\u7948\u9858\u30D0\u30CA\u30FC\u3084\u539F\u77F3\u91CF\uFF0C\u5404\u7A2E\u8A2D\u5B9A\u306F\u6D88\u53BB\u3055\u308C\u307E\u305B\u3093 </small>",clearCache:"\u30AD\u30E3\u30C3\u30B7\u30E5 ( {size} ) \u3092\u30AF\u30EA\u30A2 <small>\u6D88\u53BB\u5F8C\u306F\u30DA\u30FC\u30B8\u3092\u518D\u8AAD\u307F\u8FBC\u307F\u3057\u3066\u304F\u3060\u3055\u3044</small>",resetButton:"\u30EA\u30BB\u30C3\u30C8",resetPrompt:"\u672C\u5F53\u306B <strong>\u3059\u3079\u3066\u306E\u30C7\u30FC\u30BF</strong> \u3092\u6D88\u53BB\u3057\u3066\u521D\u671F\u72B6\u614B\u306B\u623B\u3057\u307E\u3059\u304B\uFF1F",resetSuccess:"\u30EA\u30BB\u30C3\u30C8\u6210\u529F",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"\u3053\u3061\u3089\u304B\u3089\u5165\u624B\u3067\u304D\u307E\u3059\uFF01",noKey:"\u30AD\u30FC\u3092\u6301\u3063\u3066\u3044\u307E\u305B\u3093\u304B\uFF1F",verifyFail:"\u30AD\u30FC\u306E\u691C\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u63A5\u7D9A\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\uFF01",invalidKey:"\u3042\u306A\u305F\u306E\u30AD\u30FC\u306F\u6709\u52B9\u3067\u306F\u3042\u308A\u307E\u305B\u3093",keyExpired1:"\u30AD\u30FC\u304C\u671F\u9650\u5207\u308C\u3067\u3059!",keyExpired2:'\u3042\u306A\u305F\u306E\u30AD\u30FC: "{key}" \u306F{date}\u304B\u3089\u671F\u9650\u5207\u308C\u3067\u3059!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"\u30AD\u30FC\u3092\u5165\u529B",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"*\u5E83\u544A\u306B\u3064\u3044\u3066\u306F\u7533\u3057\u8A33\u3042\u308A\u307E\u305B\u3093\u3002\u5B9F\u969B\u3001\u3042\u306A\u305F\u304C\u671B\u3080\u3088\u3046\u306A\u4F53\u9A13\u3092\u53F0\u7121\u3057\u306B\u306F\u3057\u305F\u304F\u306A\u3044\u306E\u3067\u3059\u304C\u3001\u3053\u306E\u30A2\u30D7\u30EA\u3092\u7DAD\u6301\u3059\u308B\u305F\u3081\u306B\u7D50\u6210\u3055\u308C\u305F\u30C1\u30FC\u30E0\u3084\u30B9\u30DD\u30F3\u30B5\u30FC\u306F\u3044\u307E\u305B\u3093\u3002\u304A\u91D1\u3092\u304B\u3051\u305F\u304F\u306A\u3044\u5834\u5408\u3001\u3042\u306A\u305F\u306F\u5E83\u544A\u30D6\u30ED\u30C3\u30AB\u30FC\u3092\u30AA\u30F3\u306B\u3057\u305F\u308A\u3001\u30AB\u30B9\u30BF\u30E0 DNS \u3092\u4F7F\u7528\u3057\u305F\u308A\u3059\u308B\u3053\u3068\u3082\u3067\u304D\u307E\u3059\u3002\u7981\u6B62\u306F\u3057\u307E\u305B\u3093\u3002"},L={title:e,character:n,weapon:a,vision:t,anemo:r,cryo:s,dendro:o,electro:i,hydro:p,geo:l,pyro:c,bow:d,catalyst:m,claymore:u,sword:h,polearm:y,extra:g,obtained:b,waiting:f,connectionFailed:w,confirmButton:v,cancelButton:B,disclaimer:P,fanmade:N,pressToContinue:C,installInstruction:x,share:k,screenshot:S,capturing:A,rewardFirstShare:I,version:D,donate:F,banner:R,editor:T,customBanner:W,backupRestore:U,wish:E,outfit:K,details:H,history:M,shop:O,inventory:z,menu:G};export{r as anemo,U as backupRestore,R as banner,d as bow,B as cancelButton,A as capturing,m as catalyst,n as character,u as claymore,v as confirmButton,w as connectionFailed,s as cryo,W as customBanner,L as default,o as dendro,H as details,P as disclaimer,F as donate,T as editor,i as electro,g as extra,N as fanmade,l as geo,M as history,p as hydro,x as installInstruction,z as inventory,G as menu,b as obtained,K as outfit,y as polearm,C as pressToContinue,c as pyro,I as rewardFirstShare,S as screenshot,k as share,O as shop,h as sword,e as title,D as version,t as vision,f as waiting,a as weapon,E as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ja-JP-9a116936.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ja-JP-9a116936.js
deleted file mode 100644
index 805aac14..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ja-JP-9a116936.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u60E1\u738B\u4E38",t="\u96E8\u88C1",a="\u5F13\u8535",n="\u5F3E\u5F13",i="\u88C1\u65AD",o={name:"\u30A2\u30EB\u30D9\u30C9",title:"\u767D\u4E9C\u306E\u7533\u3057\u5B50"},s={name:"\u30A2\u30EB\u30CF\u30A4\u30BC\u30F3",title:"\u6A29\u8B00\u6559\u6212"},l={name:"\u30A2\u30F3\u30D0\u30FC",title:"\u98DB\u884C\u30C1\u30E3\u30F3\u30D4\u30AA\u30F3"},r={name:"\u767D\u672E",title:"\u9075\u751F\u5408\u548C"},m={name:"\u30D0\u30FC\u30D0\u30E9",title:"\u30AD\u30E9\u30AD\u30E9\u30A2\u30A4\u30C9\u30EB"},c={name:"\u5317\u6597",title:"\u7121\u51A0\u306E\u9F8D\u738B"},h={name:"\u30D9\u30CD\u30C3\u30C8",title:"\u904B\u547D\u306E\u8A66\u91D1\u77F3"},u={name:"\u30AD\u30E3\u30F3\u30C7\u30A3\u30B9",title:"\u6D6E\u91D1\u306E\u8A93\u9858"},d={name:"\u30B7\u30E3\u30EB\u30ED\u30C3\u30C8",title:"\u771F\u5B9F\u3092\u6C42\u3081\u308B\u66C7\u308A\u306A\u304D\u30E2\u30CE\u30AF\u30EB"},g={name:"\u30B7\u30E5\u30F4\u30EB\u30FC\u30BA",title:"\u53B3\u7F70\u3092\u4E0E\u3048\u308B\u6CD5\u306E\u901A\u6681\u8005"},y={name:"\u91CD\u96F2",title:"\u96EA\u6D88\u306E\u8DE1"},f={name:"\u30B3\u30EC\u30A4",title:"\u7D14\u771F\u3092\u62B1\u304F\u840C\u8616"},k={name:"\u30BB\u30CE",title:"\u7DD8\u79D8\u306E\u88C1\u304D"},w={name:"\u30C7\u30A3\u30B7\u30A2",title:"\u71BE\u9B23\u306E\u7345\u5B50"},b={name:"\u30C7\u30A3\u30EB\u30C3\u30AF",title:"\u30A2\u30AB\u30C4\u30AD\u30EF\u30A4\u30CA\u30EA\u30FC\u306E\u8CB4\u516C\u5B50"},p={name:"\u30C7\u30A3\u30AA\u30CA",title:"\u30AD\u30E3\u30C3\u30C4\u30C6\u30FC\u30EB\u30B9\u30DA\u30B7\u30E3\u30EB"},v={name:"\u30C9\u30EA\u30FC",title:"\u5922\u306E\u5EAD\u306B\u96A0\u305B\u3057\u8CA1\u5B9D"},q={name:"\u30A8\u30A6\u30EB\u30A2",title:"\u6CE2\u6CAB\u306E\u30EF\u30EB\u30C4"},x={name:"\u30D5\u30A1\u30EB\u30B6\u30F3",title:"\u6A5F\u6C42\u5C01\u79D8"},z={name:"\u30D5\u30A3\u30C3\u30B7\u30E5\u30EB",title:"\u65AD\u7F6A\u306E\u7687\u5973\uFF01\uFF01"},j={name:"\u30D5\u30EC\u30DF\u30CD",title:"\u5922\u60F3\u306E\u6D77\u3092\u6C88\u3093\u3067"},_={name:"\u30D5\u30EA\u30FC\u30CA",title:"\u4E0D\u4F11\u306E\u30BD\u30EA\u30B9\u30C8"},J={name:"\u7518\u96E8",title:"\u5FAA\u3005\u5B88\u6708"},P={name:"\u30B4\u30ED\u30FC",title:"\u96C4\u3005\u3057\u304D\u620E\u72AC"},A={name:"\u30B8\u30F3",title:"\u84B2\u516C\u82F1\u9A0E\u58EB"},B={name:"\u30AC\u30A4\u30A2",title:"\u5BD2\u98A8\u306E\u5263\u58EB"},C={name:"\u30AB\u30FC\u30F4\u30A7",title:"\u5929\u7A79\u306E\u93E1"},D={name:"\u523B\u6674",title:"\u75BE\u96F7\u5FEB\u96E8"},E={name:"\u7DBA\u826F\u3005",title:"\u6A90\u5B87\u904A\u732B"},F={name:"\u30AF\u30EC\u30FC",title:"\u9003\u3052\u56DE\u308B\u592A\u967D"},G={name:"\u30EC\u30A4\u30E9",title:"\u7DBA\u601D\u3068\u591C\u661F"},H={name:"\u30EA\u30B5",title:"\u8594\u8587\u306E\u9B54\u5973"},I={name:"\u30EA\u30CD\u30C3\u30C8",title:"\u7DBA\u5F71\u3067\u9B45\u305B\u308B\u30A8\u30EC\u30AC\u30F3\u30B9"},K={name:"\u30EA\u30CD",title:"\u5E7B\u5149\u3067\u60D1\u308F\u3059\u30C8\u30EA\u30C3\u30AF"},L={name:"\u30DF\u30AB",title:"\u971C\u6674\u306E\u6E2C\u91CF"},M={name:"\u30E2\u30CA",title:"\u661F\u5929\u6C34\u93E1"},N={name:"\u30CA\u30D2\u30FC\u30C0",title:"\u767D\u8349\u6D44\u83EF"},O={name:"\u30CA\u30F4\u30A3\u30A2",title:"\u8235\u3092\u9019\u3046\u30E9\u30C7\u30A3\u30A2\u30F3\u30C8\u30ED\u30FC\u30BA"},Q={name:"\u30CC\u30F4\u30A3\u30EC\u30C3\u30C8",title:"\u544A\u8AED\u306E\u6F6E\u9A12"},R={name:"\u30CB\u30A3\u30ED\u30A6",title:"\u7D68\u6BEF\u306B\u821E\u3044\u843D\u3061\u308B\u84EE\u5149"},S={name:"\u51DD\u5149",title:"\u6708\u3092\u8986\u3046\u5929\u6A29"},T={name:"\u30CE\u30A8\u30EB",title:"\u9A0E\u58EB\u9053\u306E\u82B1\u54B2"},U={name:"\u4E03\u4E03",title:"\u51B7\u305F\u304D\u9EC4\u6CC9\u5E30\u308A"},V={name:"\u30EC\u30B6\u30FC",title:"\u72FC\u5C11\u5E74"},W={name:"\u30ED\u30B5\u30EA\u30A2",title:"\u834A\u51A0\u306E\u6069\u5178"},X={name:"\u65E9\u67DA",title:"\u5FCD\u3073\u306E\u91CC\u306E\u8C89"},Y={name:"\u7533\u9DB4",title:"\u5B64\u8FB0\u60B2\u54C0"},Z={name:"\u30B9\u30AF\u30ED\u30FC\u30B9",title:"\u7121\u5BB3\u306E\u7518\u5473"},$={name:"\u30BF\u30EB\u30BF\u30EA\u30E4",title:"\u300C\u516C\u5B50\u300D"},ee={name:"\u30C8\u30FC\u30DE",title:"\u6E21\u6765\u4ECB\u8005"},te={name:"\u30C6\u30A3\u30CA\u30EA",title:"\u7DD1\u571F\u900D\u9065"},ae={name:"\u30A6\u30A7\u30F3\u30C6\u30A3",title:"\u98A8\u8272\u306E\u8A69\u4EBA"},ne={name:"\u653E\u6D6A\u8005",title:"\u4E45\u4E16\u6D6E\u50BE"},ie={name:"\u30EA\u30AA\u30BB\u30B9\u30EA",title:"\u5BC2\u7F6A\u306E\u5BC6\u4F7F"},oe={name:"\u9999\u83F1",title:"\u4E07\u6C11\u767E\u5473"},se={name:"\u9B48",title:"\u8B77\u6CD5\u591C\u53C9"},le={name:"\u884C\u79CB",title:"\u5C11\u58EE\u6C17\u92ED"},re={name:"\u8F9B\u708E",title:"\u7206\u71B1\u30EA\u30BA\u30E0"},me={name:"\u7159\u7DCB",title:"\u7121\u90AA\u6C17\u306A\u77E5\u6075"},ce={name:"\u30E8\u30A9\u30FC\u30E8",title:"\u4ED9\u854A\u73B2\u74CF"},he={name:"\u591C\u862D",title:"\u5E7D\u8C37\u306B\u54B2\u304F\u862D"},ue={name:"\u5BB5\u5BAE",title:"\u7409\u7114\u306B\u821E\u3046\u5927\u8F2A"},de={name:"\u937E\u96E2",title:"\u6D6E\u4E16\u95CA\u6B69"},ge={"a-thousand-floating-dreams":"\u5343\u591C\u306B\u6D6E\u304B\u3076\u5922",akuoumaru:e,"alley-hunter":"\u30C0\u30FC\u30AF\u30A2\u30EC\u30A4\u306E\u72E9\u4EBA","amos-bow":"\u30A2\u30E2\u30B9\u306E\u5F13","aqua-simulacra":"\u82E5\u6C34","aquila-favonia":"\u98A8\u9DF9\u5263","beacon-of-the-reed-sea":"\u8466\u6D77\u306E\u6A19","black-tassel":"\u9ED2\u7E93\u69CD","bloodtained-greatsword":"\u9F8D\u8840\u3092\u6D74\u3073\u305F\u5263","calamity-queller":"\u606F\u707D","cashflow-supervision":"\u51DB\u6D41\u306E\u76E3\u8996\u8005","cool-steel":"\u51B7\u5203","debate-club":"\u7406\u5C48\u8CAC\u3081","dragon_s-bane":"\u5323\u4E2D\u6EC5\u9F8D","elegy-for-the-end":"\u7D42\u7109\u3092\u5606\u304F\u8A69","emerald-orb":"\u7FE1\u7389\u6CD5\u73E0","engulfing-lightning":"\u8349\u8599\u306E\u7A32\u5149","everlasting-moonglow":"\u4E0D\u6EC5\u306E\u6708\u83EF","eye-of-perception":"\u662D\u5FC3","favonius-codex":"\u897F\u98A8\u79D8\u5178","favonius-greatsword":"\u897F\u98A8\u5927\u5263","favonius-lance":"\u897F\u98A8\u9577\u69CD","favonius-sword":"\u897F\u98A8\u5263","favonius-warbow":"\u897F\u98A8\u731F\u5F13","ferrous-shadow":"\u9244\u5F71\u6BB5\u5E73","freedom-sworn":"\u84BC\u53E4\u306A\u308B\u81EA\u7531\u3078\u306E\u8A93\u3044","haran-geppaku-futsu":"\u6CE2\u4E71\u6708\u767D\u7D4C\u6D25","harbinger-of-dawn":"\u9ECE\u660E\u306E\u795E\u5263","hunter_s-path":"\u72E9\u4EBA\u306E\u9053","jadefall-splendor":"\u78A7\u843D\u306E\u74CF","kagura_s-verity":"\u795E\u697D\u306E\u771F\u610F","key-of-khaj-nisut":"\u8056\u9855\u306E\u9375","lion_s-roar":"\u5323\u4E2D\u9F8D\u541F","light-of-foliar-incision":"\u8403\u5149\u306E\u88C1\u8449","lithic-blade":"\u5343\u5CA9\u53E4\u5263","lithic-spear":"\u5343\u5CA9\u9577\u69CD","lost-prayer-to-the-sacred-winds":"\u56DB\u98A8\u539F\u5178","magic-guide":"\u9B54\u5C0E\u7DD2\u8AD6","makhaira-aquamarine":"\u30DE\u30AB\u30A4\u30E9\u306E\u6C34\u8272","memory-of-dust":"\u6D6E\u4E16\u306E\u9320","mistsplitter-reforged":"\u9727\u5207\u306E\u5EFB\u5149","mitternachts-waltz":"\u5E7D\u591C\u306E\u30EF\u30EB\u30C4","mouun_s-moon":"\u66DA\u96F2\u306E\u6708","polar-star":"\u51AC\u6975\u306E\u767D\u661F","portable-power-saw":"\u643A\u5E2F\u578B\u30C1\u30A7\u30FC\u30F3\u30BD\u30FC","primordial-jade-cutter":"\u78D0\u5CA9\u7D50\u7DD1","primordial-jade-winged-spear":"\u548C\u749E\u9CF6","prospector-drill":"\u30D7\u30ED\u30B9\u30DA\u30AF\u30BF\u30FC\u30C9\u30EA\u30EB",rainslasher:t,"range-gauge":"\u30EC\u30F3\u30B8\u30B2\u30FC\u30B8","raven-bow":"\u9D09\u7FBD\u306E\u5F13","redhorn-stonethresher":"\u8D64\u89D2\u77F3\u5875\u6EC5\u7815",rust:a,"sacrificial-bow":"\u796D\u793C\u306E\u5F13","sacrificial-fragments":"\u796D\u793C\u306E\u65AD\u7247","sacrificial-greatsword":"\u796D\u793C\u306E\u5927\u5263","sacrificial-sword":"\u796D\u793C\u306E\u5263","sharpshooter_s-oath":"\u30B7\u30E3\u30FC\u30D7\u30B7\u30E5\u30FC\u30BF\u30FC\u306E\u8A93\u3044","skyrider-sword":"\u98DB\u5929\u5FA1\u5263","skyward-atlas":"\u5929\u7A7A\u306E\u5DFB","skyward-blade":"\u5929\u7A7A\u306E\u5203","skyward-harp":"\u5929\u7A7A\u306E\u7FFC","skyward-pride":"\u5929\u7A7A\u306E\u50B2","skyward-spine":"\u5929\u7A7A\u306E\u810A",slingshot:n,"song-of-broken-pines":"\u677E\u97FB\u306E\u97FF\u304F\u9803","splendor-of-tranquil-waters":"\u9759\u6C34\u6D41\u8EE2\u306E\u8F1D\u304D","staff-of-homa":"\u8B77\u6469\u306E\u6756","staff-of-the-scarlet-sands":"\u8D64\u7802\u306E\u6756","summit-shaper":"\u65AC\u5C71\u306E\u5203","the-alley-flash":"\u30C0\u30FC\u30AF\u30A2\u30EC\u30A4\u306E\u9583\u5149","the-bell":"\u9418\u306E\u5263","the-dockhands-assistant":"\u8239\u6E20\u5263","the-first-great-magic":"\u6700\u521D\u306E\u5927\u9B54\u8853","the-flute":"\u7B1B\u306E\u5263","the-stringless":"\u7D76\u5F26","the-unforged":"\u7121\u5DE5\u306E\u5263","the-widsith":"\u6D41\u6D6A\u697D\u7AE0","thrilling-tales-of-dragon-slayers":"\u9F8D\u6BBA\u3057\u306E\u82F1\u5091\u8B5A","thundering-pulse":"\u98DB\u96F7\u306E\u9CF4\u5F26","tome-of-the-eternal-flow":"\u4E45\u9060\u6D41\u8EE2\u306E\u5927\u5178","tulaytullah_s-remembrance":"\u30C8\u30A5\u30E9\u30A4\u30C8\u30A5\u30FC\u30E9\u306E\u8A18\u61B6",verdict:i,"vortex-vanquisher":"\u7834\u5929\u306E\u69CD","wavebreaker_s-fin":"\u65AC\u6CE2\u306E\u3072\u308C\u9577","wine-and-song":"\u30C0\u30FC\u30AF\u30A2\u30EC\u30A4\u306E\u9152\u3068\u8A69","wandering-evenstar":"\u5F77\u5FA8\u3048\u308B\u661F","wolf_s-gravestone":"\u72FC\u306E\u672B\u8DEF","xiphos-moonlight":"\u30B5\u30A4\u30D5\u30A9\u30B9\u306E\u6708\u660E\u304B\u308A",albedo:o,alhaitham:s,amber:l,"arataki-itto":{name:"\u8352\u7027\u4E00\u6597",title:"\u82B1\u5742\u8C6A\u5FEB"},baizhu:r,barbara:m,beidou:c,bennett:h,candace:u,charlotte:d,chevreuse:g,chongyun:y,collei:f,cyno:k,dehya:w,diluc:b,diona:p,dori:v,eula:q,faruzan:x,fischl:z,freminet:j,furina:_,ganyu:J,gorou:P,"hu-tao":{name:"\u80E1\u6843",title:"\u96EA\u6674\u6885\u9999"},jean:A,"kaedehara-kazuha":{name:"\u6953\u539F\u4E07\u8449",title:"\u98A8\u6CE2\u6D41\u6D6A\u306E\u7D05\u8449"},kaeya:B,"kamisato-ayaka":{name:"\u795E\u91CC\u7DBE\u83EF",title:"\u767D\u9DFA\u6C37\u83EF"},"kamisato-ayato":{name:"\u795E\u91CC\u7DBE\u4EBA",title:"\u78D0\u796D\u8449\u5B88"},kaveh:C,keqing:D,kirara:E,klee:F,"kujou-sara":{name:"\u4E5D\u6761\u88DF\u7F85",title:"\u9ED2\u7FBD\u9CF4\u93D1"},"kuki-shinobu":{name:"\u4E45\u5C90\u5FCD",title:"\u7169\u60A9\u5208\u9664"},layla:G,lisa:H,lynette:I,lyney:K,mika:L,mona:M,nahida:N,navia:O,neuvillette:Q,nilou:R,ningguang:S,noelle:T,qiqi:U,"raiden-shogun":{name:"\u96F7\u96FB\u5C06\u8ECD",title:"\u4E00\u5FC3\u6D44\u571F"},razor:V,rosaria:W,"sangonomiya-kokomi":{name:"\u73CA\u745A\u5BAE\u5FC3\u6D77",title:"\u771F\u73E0\u306E\u667A"},sayu:X,shenhe:Y,"shikanoin-heizou":{name:"\u9E7F\u91CE\u9662\u5E73\u85CF",title:"\u4E42\u5B89\u3092\u9858\u3046\u3082\u306E"},sucrose:Z,tartaglia:$,thoma:ee,tighnari:te,venti:ae,wanderer:ne,wriothesley:ie,xiangling:oe,xiao:se,xingqiu:le,xinyan:re,"yae-miko":{name:"\u516B\u91CD\u795E\u5B50",title:"\u6D6E\u4E16\u7B11\u767E\u59FF"},yanfei:me,yaoyao:ce,yelan:he,yoimiya:ue,"yun-jin":{name:"\u96F2\u83EB",title:"\u7D05\u7D68\u6BEF\u306B\u821E\u3046\u9E97\u59FF"},zhongli:de};export{e as akuoumaru,o as albedo,s as alhaitham,l as amber,r as baizhu,m as barbara,c as beidou,h as bennett,u as candace,d as charlotte,g as chevreuse,y as chongyun,f as collei,k as cyno,ge as default,w as dehya,b as diluc,p as diona,v as dori,q as eula,x as faruzan,z as fischl,j as freminet,_ as furina,J as ganyu,P as gorou,A as jean,B as kaeya,C as kaveh,D as keqing,E as kirara,F as klee,G as layla,H as lisa,I as lynette,K as lyney,L as mika,M as mona,N as nahida,O as navia,Q as neuvillette,R as nilou,S as ningguang,T as noelle,U as qiqi,t as rainslasher,V as razor,W as rosaria,a as rust,X as sayu,Y as shenhe,n as slingshot,Z as sucrose,$ as tartaglia,ee as thoma,te as tighnari,ae as venti,i as verdict,ne as wanderer,ie as wriothesley,oe as xiangling,se as xiao,le as xingqiu,re as xinyan,me as yanfei,ce as yaoyao,he as yelan,ue as yoimiya,de as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/lazyload-05dfa468.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/lazyload-05dfa468.js
deleted file mode 100644
index 53a5eb61..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/lazyload-05dfa468.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as u,i as _,s as h,R as b,k as p,l as v,m as k,h as d,n as m,N as f,b as y,H as g,ag as B,O as E,T as L,U as O,V as S,f as T,t as G,$ as I}from"./index-c0d078cd.js";function N(t){let e,a,r,o;const i=t[4].default,l=b(i,t,t[3],null);return{c(){e=p("button"),l&&l.c(),this.h()},l(s){e=v(s,"BUTTON",{class:!0});var n=k(e);l&&l.l(n),n.forEach(d),this.h()},h(){e.disabled=t[0],m(e,"class","svelte-hp2f5i"),f(e,"dark",t[1])},m(s,n){y(s,e,n),l&&l.m(e,null),a=!0,r||(o=g(e,"click",B(E(t[2]))),r=!0)},p(s,[n]){l&&l.p&&(!a||n&8)&&L(l,i,s,s[3],a?S(i,s[3],n,null):O(s[3]),null),(!a||n&1)&&(e.disabled=s[0]),n&2&&f(e,"dark",s[1])},i(s){a||(T(l,s),a=!0)},o(s){G(l,s),a=!1},d(s){s&&d(e),l&&l.d(s),r=!1,o()}}}function U(t,e,a){let{$$slots:r={},$$scope:o}=e,{disabled:i=!1}=e,{dark:l=!1}=e;const s=I(),n=()=>s("click");return t.$$set=c=>{"disabled"in c&&a(0,i=c.disabled),"dark"in c&&a(1,l=c.dark),"$$scope"in c&&a(3,o=c.$$scope)},[i,l,n,o,r]}class z extends u{constructor(e){super(),_(this,e,U,N,h,{disabled:0,dark:1})}}const q={root:null,rootMargin:"0px",threshold:0},A=(t,e)=>{t.style.opacity="0";const a=t.getAttribute("data-placeholder"),r=e||a;if(!r)return;const o=()=>{t.style.opacity="1"};return new IntersectionObserver(l=>{l[0].isIntersecting&&(t.src=r,t.complete?(t.style.transition="unset",o()):t.addEventListener("load",o))},q).observe(t),{destroy(){t.removeEventListener("load",o)}}};export{z as B,A as l};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/navigation-45e4daee.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/navigation-45e4daee.js
deleted file mode 100644
index 7a46e9e2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/navigation-45e4daee.js
+++ /dev/null
@@ -1 +0,0 @@
-import{c as e}from"./singletons-67e52e76.js";e.disable_scroll_handling;const a=e.goto;e.invalidate;e.invalidateAll;e.prefetch;e.prefetch_routes;e.before_navigate;e.after_navigate;export{a as g};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/outfit-bffb00d9.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/outfit-bffb00d9.js
deleted file mode 100644
index b9d56f82..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/outfit-bffb00d9.js
+++ /dev/null
@@ -1 +0,0 @@
-import{e as o}from"./index-123e2351.js";const l=["amber","kaeya","lisa"],y=[{itemID:164,name:"chevreuse",vision:"pyro",rarity:4,release:"4.3-2",offset:{splashArt:{x:-.49195710455764075,y:-10.837801608579088,scale:1.09},wishCard:{x:7.69894534995206,y:21.16331096196868,scale:7.91}}},{itemID:162,name:"navia",vision:"geo",rarity:5,offset:{splashArt:{x:-5.14436090225564,y:-.968421052631579,scale:1.48},wishCard:{x:-82.53611556982344,y:68.28539325842696,scale:10.9},button:{l:55,w:110,t:35}}},{itemID:160,name:"furina",vision:"hydro",rarity:5,offset:{splashArt:{x:-3.4444444444444446,y:-11.197368421052632,scale:2.08},wishCard:{x:-69.38581608415338,y:31.947743467933492,scale:13.73},button:{l:52,w:130,t:35}}},{itemID:159,name:"charlotte",vision:"cryo",rarity:4,release:"4.2-1",offset:{splashArt:{x:.1495956873315364,y:-3.9474393530997305,scale:1.1},wishCard:{x:-2.2293858160841533,y:39.605700712589076,scale:7.9}}},{itemID:71,name:"wriothesley",vision:"cryo",rarity:5,offset:{splashArt:{x:-3.888888888888889,y:2.038011695906433,scale:1.56},wishCard:{x:-62.076688157448245,y:80.78859857482186,scale:12.43},button:{l:50,w:120,t:25}}},{itemID:70,name:"neuvillette",vision:"hydro",rarity:5,offset:{splashArt:{x:-2.5891812865497075,y:-1.637426900584795,scale:1.45},wishCard:{x:-12.846963013233797,y:71.27553444180522,scale:12.02},button:{l:54,w:105,t:20}}},{itemID:69,name:"freminet",vision:"cryo",rarity:4,release:"4.0-2",offset:{splashArt:{x:-4.552631578947368,y:3.0877192982456143,scale:1.5},wishCard:{x:-106.73566338649474,y:54.09738717339667,scale:9.56}}},{itemID:68,name:"lynette",vision:"anemo",rarity:4,release:"4.0-1",offset:{splashArt:{x:1.1023391812865497,y:.10964912280701754,scale:1.36},wishCard:{x:2.646759416355616,y:47.96199524940617,scale:8.03}}},{itemID:67,name:"lyney",vision:"pyro",rarity:5,offset:{splashArt:{x:-1.8581871345029242,y:2.621345029239766,scale:1.76},wishCard:{x:-37.45164574143197,y:65,scale:12.4},button:{l:55,w:105,t:20}}},{itemID:66,name:"kirara",vision:"dendro",rarity:4,release:"3.7-1",offset:{splashArt:{x:-.5701754385964912,y:10.7953216374269,scale:1.52},wishCard:{x:52.96572785883949,y:87.36579572446556,scale:10.5}}},{itemID:65,name:"baizhu",vision:"dendro",rarity:5,offset:{splashArt:{x:.381578947368421,y:9.837719298245615,scale:1.51},wishCard:{x:64.92704445198507,y:75.93824228028502,scale:11.26},button:{l:50,w:105,t:35}}},{itemID:64,name:"kaveh",vision:"dendro",rarity:4,release:"3.6-2",offset:{splashArt:{x:-.618421052631579,y:-1.752923976608187,scale:1.24},wishCard:{x:-5.039022734984731,y:84.58669833729216,scale:10.12}}},{itemID:63,name:"mika",vision:"cryo",rarity:4,release:"3.5-2",offset:{splashArt:{x:.638888888888889,y:-1.6944444444444442,scale:1.09},wishCard:{x:37.90973871733967,y:52.26128266033254,scale:7.23}}},{itemID:62,name:"dehya",vision:"pyro",rarity:5,offset:{splashArt:{x:-2.3304093567251463,y:-.3494152046783626,scale:1.72},wishCard:{x:-10.831353919239906,y:74.64133016627078,scale:13.16},button:{w:130,t:24,l:55}}},{itemID:61,name:"alhaitham",vision:"dendro",rarity:5,offset:{splashArt:{x:.09502923976608187,y:-1.4181286549707601,scale:1.28},wishCard:{x:-6.65761791652528,y:77.5059382422803,scale:9.98},button:{w:130,t:24,l:55}}},{itemID:60,name:"yaoyao",vision:"dendro",rarity:4,release:"3.4-1",offset:{splashArt:{x:-2.118421052631579,y:-2.416666666666667,scale:1.2},wishCard:{x:-21.072276891754328,y:34.06175771971496,scale:5.94}}},{itemID:59,name:"wanderer",vision:"anemo",rarity:5,offset:{splashArt:{x:2.8084795321637426,y:-.9035087719298245,scale:1.33},wishCard:{x:-10.851713607058025,y:57.80522565320665,scale:9.34},button:{w:120,t:27}}},{itemID:58,name:"faruzan",vision:"anemo",rarity:4,release:"3.3-1",offset:{splashArt:{x:.7763157894736842,y:-3.3362573099415203,scale:1.32},wishCard:{x:29.27723108245674,y:52.073634204275535,scale:7.97}}},{itemID:57,name:"layla",vision:"cryo",rarity:4,release:"3.2-2",offset:{splashArt:{x:2.103801169590643,y:-2.5350877192982457,scale:1.19},wishCard:{x:2.9216152019002375,y:42.89786223277909,scale:6.7}}},{itemID:56,name:"nahida",vision:"dendro",rarity:5,offset:{splashArt:{x:.7383040935672515,y:-1.6695906432748537,scale:1.53},wishCard:{x:41.136749236511704,y:35.771971496437054,scale:9.94},button:{w:130,t:30}}},{itemID:55,name:"nilou",vision:"hydro",rarity:5,offset:{splashArt:{x:-2.320175438596491,y:-1.6754385964912282,scale:1.44},wishCard:{x:-18.50695622667119,y:59.363420427553436,scale:9.74},button:{w:145,t:35,l:55}}},{itemID:54,name:"cyno",vision:"electro",rarity:5,offset:{splashArt:{x:3.491228070175439,y:-9.956140350877192,scale:1.36},wishCard:{x:-.01017984390906006,y:42.16627078384798,scale:9.55},button:{w:160,t:35,l:55}}},{itemID:53,name:"candace",vision:"hydro",rarity:4,release:"3.1-1",offset:{splashArt:{x:-1.3814016172506738,y:-1.04177897574124,scale:1.44},wishCard:{x:-21.004815409309792,y:46.05842696629214,scale:9.3}}},{itemID:52,name:"dori",vision:"electro",rarity:4,release:"3.0-2",offset:{splashArt:{scale:1.36},wishCard:{x:-27.02748557855446,y:49.93586698337292,scale:7.46}}},{itemID:51,name:"tighnari",vision:"dendro",rarity:5,offset:{splashArt:{x:-1.5555555555555556,y:-1.3362573099415207,scale:1.2},wishCard:{x:1.170682049541907,y:61.194774346793345,scale:7.84},button:{w:95,t:35,l:30}}},{itemID:50,name:"collei",vision:"dendro",rarity:4,release:"3.0-1",offset:{splashArt:{x:-.31725146198830406,y:-4.959064327485381,scale:1.31},wishCard:{x:66.53545978961655,y:38.87648456057007,scale:8.42}}},{itemID:49,name:"shikanoin-heizou",vision:"anemo",rarity:4,release:"2.8-1",offset:{splashArt:{x:3.675438596491228,y:-1.1140350877192984,scale:1.21},wishCard:{x:-2.3006447234475735,y:44.09263657957245,scale:7.27}}},{itemID:48,name:"kuki-shinobu",vision:"electro",rarity:4,release:"2.7-2",offset:{splashArt:{x:1.5526315789473684,y:-.12719298245614036,scale:1.28},wishCard:{x:-29.491007804547,y:48.66270783847981,scale:8.03}}},{itemID:47,name:"yelan",vision:"hydro",rarity:5,offset:{splashArt:{x:.43713450292397665,y:-5.400584795321637,scale:1.24},wishCard:{x:22.212419409569055,y:59.54394299287411,scale:9.19},button:{w:100,t:32,l:50}}},{itemID:46,name:"kamisato-ayato",vision:"hydro",rarity:5,offset:{splashArt:{x:5.092105263157895,y:.9590643274853801,scale:1.41},wishCard:{x:35.41567695961995,y:74.40380047505938,scale:10.5},button:{w:140,t:35,l:50}}},{itemID:45,name:"yae-miko",vision:"electro",rarity:5,offset:{splashArt:{x:-3.988304093567251,y:-1.3157894736842104,scale:1.21},wishCard:{x:-33.15575161180862,y:62.634204275534444,scale:8.44},button:{w:170,t:24,l:50}}},{itemID:44,name:"shenhe",vision:"cryo",rarity:5,offset:{splashArt:{x:-6.16812865497076,y:-4.779239766081871,scale:1.44},wishCard:{x:-62.544960977265006,y:58.826603325415675,scale:9.93},button:{w:170,t:20,l:30}}},{itemID:43,name:"yun-jin",vision:"geo",rarity:4,release:"2.4-1",offset:{splashArt:{x:.3669590643274853,y:-1.6871345029239766,scale:1.2},wishCard:{x:9.100780454699695,y:49.19239904988124,scale:6.53}}},{itemID:42,name:"arataki-itto",vision:"geo",rarity:5,offset:{splashArt:{x:2.3187134502923974,y:-1.5526315789473684,scale:1.38},wishCard:{x:29.98982015609094,y:66.81710213776722,scale:9.98},button:{w:190,t:30,l:50}}},{itemID:41,name:"gorou",vision:"geo",rarity:4,release:"2.3-2",offset:{splashArt:{x:3.1052631578947367,y:-.9312865497076023,scale:1.28},wishCard:{x:35.54801493043773,y:49.82422802850356,scale:8.36}}},{itemID:40,name:"thoma",vision:"pyro",rarity:4,release:"2.2-2",offset:{splashArt:{x:-1.2514619883040936,y:.8391812865497077,scale:1.36},wishCard:{x:40.6277570410587,y:58.20902612826604,scale:8.41}}},{itemID:39,name:"sangonomiya-kokomi",vision:"hydro",rarity:5,offset:{splashArt:{x:2.7222222222222223,y:2.41812865497076,scale:1.21},wishCard:{x:20.746521886664404,y:53.70071258907364,scale:7.460000000000001},button:{w:180,t:25,l:55}}},{itemID:38,name:"raiden-shogun",vision:"electro",rarity:5,offset:{splashArt:{x:2.3406432748538015,y:-2.334795321637427,scale:1.29},wishCard:{x:13.172718018323717,y:54.24228028503564,scale:8.77},button:{w:160,t:5}}},{itemID:37,name:"kujou-sara",vision:"electro",rarity:4,release:"2.1-1",offset:{splashArt:{x:4.29093567251462,y:-.3421052631578947,scale:1.31},wishCard:{x:28.22870715982355,y:73.31591448931117,scale:9.45}}},{itemID:36,name:"yoimiya",vision:"pyro",rarity:5,offset:{splashArt:{x:-3.887426900584795,y:-5.245614035087719,scale:1.5},wishCard:{x:-14.211062097047847,y:40.53681710213777,scale:8.27},button:{w:150,t:20,l:40}}},{itemID:35,name:"sayu",vision:"anemo",rarity:4,release:"2.0-2",offset:{splashArt:{x:-2.3596491228070176,y:-6.853801169590644,scale:1.5},wishCard:{x:-71.29962673905668,y:42.02612826603326,scale:8.87}}},{itemID:34,name:"kamisato-ayaka",vision:"cryo",rarity:5,offset:{splashArt:{x:1.8669590643274854,y:-3.818713450292398,scale:1.61},wishCard:{x:14.292500848320325,y:51.496437054631826,scale:12.67},button:{w:82,t:32}}},{itemID:33,name:"kaedehara-kazuha",vision:"anemo",rarity:5,offset:{splashArt:{x:-1.4853801169590644,y:2.1505847953216377,scale:1.33},wishCard:{x:21.418391584662366,y:70.61520190023754,scale:9.52},button:{w:110,t:32}}},{itemID:32,name:"eula",vision:"cryo",rarity:5,offset:{splashArt:{x:3.56140350877193,y:-1.8128654970760234,scale:1.34},wishCard:{x:6.118086189345096,y:64.99287410926365,scale:9.74},button:{w:140,t:32}}},{itemID:31,name:"yanfei",vision:"pyro",rarity:4,release:"1.5-1",offset:{splashArt:{x:7.014619883040934,y:-.15789473684210528,scale:1.46},wishCard:{x:169.04648795385137,y:59.320665083135395,scale:8.9}}},{itemID:30,name:"rosaria",vision:"cryo",rarity:4,release:"1.4-2",offset:{splashArt:{x:-.608187134502924,y:-5.552631578947368,scale:1.24},wishCard:{x:11.309806582965727,y:64.11163895486936,scale:8.95}}},{itemID:29,name:"hu-tao",vision:"pyro",rarity:5,offset:{splashArt:{x:-3.0453216374269,y:2.6067251461988303,scale:1.64},wishCard:{x:-139.93213437393962,y:55.42992874109264,scale:11.75},button:{w:160,t:22}}},{itemID:28,name:"xiao",vision:"anemo",rarity:5,offset:{splashArt:{x:-.4035087719298246,y:-17.27777777777778,scale:1.56},wishCard:{x:14.475738038683408,y:17.52256532066508,scale:9.55},button:{w:120,t:30,l:50}}},{itemID:27,name:"ganyu",vision:"cryo",rarity:5,offset:{splashArt:{x:2.703216374269006,y:-2.995614035087719,scale:1.36},wishCard:{x:14.577536477774009,y:54.7790973871734,scale:8.03},button:{w:200,t:25}}},{itemID:26,name:"albedo",vision:"geo",rarity:5,offset:{splashArt:{x:.35233918128654973,y:-3.8289473684210527,scale:1.59},wishCard:{x:-44.16016287750254,y:57.07600950118764,scale:11.09},button:{w:170,t:28,l:50}}},{itemID:25,name:"zhongli",vision:"geo",rarity:5,offset:{splashArt:{x:4.168128654970761,y:-8.782163742690058,scale:1.61},wishCard:{x:41.58466236851035,y:43.56294536817102,scale:8.92},button:{w:120,t:25,l:70}}},{itemID:24,name:"xinyan",vision:"pyro",rarity:4,release:"1.1-2",offset:{splashArt:{x:-2.2017543859649122,y:-3.8976608187134505,scale:1.6},wishCard:{x:-8.245673566338649,y:48.96912114014252,scale:11.1}}},{itemID:23,name:"tartaglia",vision:"hydro",rarity:5,offset:{splashArt:{x:9.15204678362573,y:-13.576023391812866,scale:1.73},wishCard:{x:67.8486596538853,y:43.60095011876485,scale:13.21},button:{w:160,t:22}}},{itemID:22,name:"diona",vision:"cryo",rarity:4,release:"1.1-1",offset:{splashArt:{scale:1},wishCard:{x:53.44418052256532,y:39.942992874109265,scale:5.48}}},{itemID:21,name:"klee",vision:"pyro",rarity:5,offset:{splashArt:{scale:1},wishCard:{x:-3.37970817780794,y:20.831353919239906,scale:5.18},button:{w:110,t:32}}},{itemID:20,name:"venti",vision:"anemo",rarity:5,offset:{splashArt:{x:-2.776315789473684,y:-3.442982456140351,scale:1.35},wishCard:{x:33.0335934848999,y:43.27553444180523,scale:7.8},button:{w:180,t:30,l:50}}},{itemID:19,name:"keqing",vision:"electro",rarity:5,release:"1.0-0",offset:{splashArt:{x:-7.773391812865498,y:-3.5029239766081877,scale:1.4},wishCard:{x:-52.00882253138786,y:55.12351543942992,scale:8.41},button:{w:150,t:22,l:50}}},{itemID:18,name:"mona",vision:"hydro",rarity:5,release:"1.0-0",offset:{splashArt:{x:-1.1023391812865497,y:-.4473684210526315,scale:1.6},wishCard:{x:10.902612826603326,y:52.65320665083135,scale:10.88}}},{itemID:17,name:"qiqi",vision:"cryo",rarity:5,release:"1.0-0",offset:{splashArt:{x:1.7865497076023393,y:-6.584795321637427,scale:1.31},wishCard:{x:.1526976586359009,y:32.69121140142518,scale:7.84},button:{w:100,t:30}}},{itemID:16,name:"diluc",vision:"pyro",rarity:5,release:"1.0-0",offset:{splashArt:{x:-7.963450292397662,y:-22.713450292397663,scale:1.93},wishCard:{x:-75.45300305395317,y:17.840855106888363,scale:11.36}}},{itemID:15,name:"jean",vision:"anemo",rarity:5,release:"1.0-0",offset:{splashArt:{x:2.7412280701754383,y:-3.0804093567251463,scale:1.36},wishCard:{x:32.412623006447234,y:61.74109263657957,scale:9.17},button:{w:90,t:35,l:55}}},{itemID:14,name:"sucrose",vision:"anemo",rarity:4,release:"1.0-0",offset:{splashArt:{x:-.9181286549707602,y:-4.638888888888889,scale:1.19},wishCard:{x:-4.886325076348829,y:55.403800475059384,scale:8}}},{itemID:13,name:"chongyun",vision:"cryo",rarity:4,release:"1.0-0",offset:{splashArt:{x:-9.397660818713451,y:-2.641812865497076,scale:1.33},wishCard:{x:-58.33050559891415,y:52.65320665083135,scale:8.6}}},{itemID:12,name:"noelle",vision:"geo",rarity:4,release:"1.0-0",offset:{splashArt:{x:-1.2266081871345031,y:-2.2002923976608186,scale:1.2},wishCard:{x:-40.84153376314896,y:56.8978622327791,scale:7.08},button:{w:100,t:30}}},{itemID:11,name:"bennett",vision:"pyro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-1.196765498652291,y:-6.913746630727763,scale:1.2},wishCard:{x:-73.58908507223114,y:34.95505617977528,scale:7.19}}},{itemID:10,name:"fischl",vision:"electro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-.10818713450292397,y:-13.786549707602338,scale:1.3},wishCard:{x:-41.808618934509674,y:31.313539192399055,scale:7.32}}},{itemID:9,name:"ningguang",vision:"geo",rarity:4,release:"1.0-0",offset:{splashArt:{x:-4.739766081871346,y:-3.9356725146198834,scale:1.56},wishCard:{x:-83.59687818120123,y:60.17577197149644,scale:10.49}}},{itemID:8,name:"xingqiu",vision:"hydro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-.10526315789473684,y:-3.628654970760234,scale:1.09},wishCard:{x:-17.051238547675602,y:65.82660332541568,scale:7.65}}},{itemID:7,name:"beidou",vision:"electro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-2.570080862533693,y:8.859838274932613,scale:1.49},wishCard:{x:-22.468699839486355,y:76.61123595505617,scale:10.08}}},{itemID:6,name:"xiangling",vision:"pyro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-3.4415204678362574,y:-2.9517543859649122,scale:1.5},wishCard:{x:60.73294876145232,y:59.62470308788599,scale:9.16}}},{itemID:5,name:"razor",vision:"electro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-3.8377192982456143,y:-14.513157894736842,scale:1.24},wishCard:{x:-75.56498133695284,y:29.57007125890736,scale:8.22}}},{itemID:4,name:"barbara",vision:"hydro",rarity:4,release:"1.0-0",offset:{splashArt:{x:-1.9663072776280326,y:-.6037735849056605,scale:1.3},wishCard:{x:-.8042076688157448,y:52.12351543942992,scale:7.75}}},{itemID:3,name:"lisa",vision:"electro",rarity:4,release:"1.0-0",offset:{splashArt:{scale:1},wishCard:{x:7.695961995249406,y:68.85748218527316,scale:7.29}}},{itemID:2,name:"kaeya",vision:"cryo",rarity:4,release:"1.0-0",offset:{splashArt:{x:1.8786549707602338,y:-.3508771929824561,scale:1.28},wishCard:{x:-33.07431286053614,y:76.2541567695962,scale:9.2}}},{itemID:1,name:"amber",rarity:4,vision:"pyro",release:"1.0-0",offset:{splashArt:{x:1.62,y:-5.56,scale:1.46},wishCard:{x:66,y:37.80674157303371,scale:7.71}}}],w={onlyStandard:l,data:y},f=[{itemID:163,name:"verdict",rarity:5,weaponType:"claymore",limited:!0,offset:{button:{t:1,w:70,l:38}}},{itemID:161,name:"splendor-of-tranquil-waters",rarity:5,weaponType:"sword",limited:!0,offset:{button:{t:-15,w:90,l:30}}},{itemID:158,name:"prospector-drill",rarity:4,weaponType:"polearm",limited:!0},{itemID:157,name:"range-gauge",rarity:4,weaponType:"bow",limited:!0},{itemID:156,name:"cashflow-supervision",rarity:5,weaponType:"catalyst",limited:!0,offset:{button:{t:35,w:70,l:35}}},{itemID:155,name:"portable-power-saw",rarity:4,weaponType:"claymore",limited:!0},{itemID:154,name:"the-dockhands-assistant",rarity:4,weaponType:"sword",limited:!0},{itemID:153,name:"tome-of-the-eternal-flow",rarity:5,weaponType:"catalyst",limited:!0,offset:{button:{t:15,w:80,l:35}}},{itemID:152,name:"the-first-great-magic",rarity:5,limited:!0,weaponType:"bow",offset:{button:{t:10,w:75,l:30}}},{itemID:151,name:"jadefall-splendor",rarity:5,limited:!0,weaponType:"catalyst",offset:{button:{w:65,t:35,l:65}}},{itemID:150,name:"beacon-of-the-reed-sea",rarity:5,limited:!0,weaponType:"claymore",offset:{button:{t:10,w:70,l:30}}},{itemID:149,name:"light-of-foliar-incision",rarity:5,limited:!0,weaponType:"sword",offset:{button:{t:-15,w:90,l:30}}},{itemID:148,name:"tulaytullah_s-remembrance",rarity:5,limited:!0,weaponType:"catalyst",offset:{button:{w:70,t:30,l:35}}},{itemID:147,name:"a-thousand-floating-dreams",rarity:5,weaponType:"catalyst",limited:!0,offset:{button:{w:70,t:30,l:65}}},{itemID:146,name:"key-of-khaj-nisut",rarity:5,weaponType:"sword",limited:!0,offset:{button:{t:-10,w:90,l:30}}},{itemID:145,name:"xiphos-moonlight",rarity:4,weaponType:"sword",limited:!0},{itemID:144,name:"wandering-evenstar",rarity:4,weaponType:"catalyst",limited:!0},{itemID:143,name:"staff-of-the-scarlet-sands",rarity:5,weaponType:"polearm",limited:!0,offset:{button:{w:80,t:15,l:60}}},{itemID:142,name:"makhaira-aquamarine",rarity:4,weaponType:"claymore",limited:!0},{itemID:141,name:"hunter_s-path",rarity:5,weaponType:"bow",limited:!0,offset:{button:{w:70,l:35,t:0}}},{itemID:140,name:"aqua-simulacra",rarity:5,weaponType:"bow",limited:!0,offset:{button:{t:5,w:80,l:35}}},{itemID:139,name:"redhorn-stonethresher",rarity:5,weaponType:"claymore",limited:!0,offset:{button:{t:10,w:80,l:60}}},{itemID:138,name:"haran-geppaku-futsu",rarity:5,weaponType:"sword",limited:!0,offset:{button:{t:-35,w:120,l:55}}},{itemID:137,name:"kagura_s-verity",rarity:5,weaponType:"catalyst",limited:!0,offset:{button:{w:70,t:25,l:37}}},{itemID:136,name:"calamity-queller",rarity:5,weaponType:"polearm",limited:!0,offset:{button:{w:80,t:10,l:60}}},{itemID:135,name:"mouun_s-moon",rarity:4,weaponType:"bow",limited:!0},{itemID:134,name:"wavebreaker_s-fin",rarity:4,weaponType:"polearm",limited:!0},{itemID:133,name:"polar-star",rarity:5,weaponType:"bow",limited:!0,offset:{button:{w:70,t:2,l:35}}},{itemID:132,name:"akuoumaru",rarity:4,weaponType:"claymore",limited:!0},{itemID:131,name:"everlasting-moonglow",rarity:5,weaponType:"catalyst",limited:!0,offset:{button:{w:70,t:40,l:60}}},{itemID:130,name:"engulfing-lightning",rarity:5,weaponType:"polearm",limited:!0,offset:{button:{w:80,t:20,l:30}}},{itemID:129,name:"thundering-pulse",rarity:5,limited:!0,weaponType:"bow",offset:{button:{w:70,t:10,l:35}}},{itemID:128,name:"mistsplitter-reforged",rarity:5,weaponType:"sword",limited:!0,offset:{button:{w:90,t:-22,l:30}}},{itemID:127,name:"freedom-sworn",rarity:5,weaponType:"sword",limited:!0,offset:{button:{w:100,t:-20,l:30}}},{itemID:126,name:"mitternachts-waltz",rarity:4,weaponType:"bow",limited:!0},{itemID:125,name:"song-of-broken-pines",rarity:5,weaponType:"claymore",limited:!0,offset:{button:{w:80,t:10,l:35}}},{itemID:124,name:"alley-hunter",rarity:4,weaponType:"bow",limited:!0},{itemID:123,name:"elegy-for-the-end",rarity:5,weaponType:"bow",limited:!0,offset:{button:{w:70,t:10,l:35}}},{itemID:122,name:"the-alley-flash",rarity:4,weaponType:"sword",limited:!0},{itemID:121,name:"wine-and-song",rarity:4,weaponType:"catalyst",limited:!0},{itemID:120,name:"staff-of-homa",rarity:5,weaponType:"polearm",limited:!0,offset:{button:{w:90,t:15,l:60}}},{itemID:119,name:"lithic-blade",rarity:4,weaponType:"claymore",limited:!0},{itemID:118,name:"lithic-spear",rarity:4,weaponType:"polearm",limited:!0},{itemID:117,name:"primordial-jade-cutter",rarity:5,weaponType:"sword",limited:!0,offset:{button:{w:100,t:-14,l:60}}},{itemID:116,name:"primordial-jade-winged-spear",rarity:5,weaponType:"polearm",offset:{button:{w:80,t:10,l:30}}},{itemID:115,name:"summit-shaper",rarity:5,weaponType:"sword",limited:!0,offset:{button:{w:90,t:-10,l:30}}},{itemID:114,name:"vortex-vanquisher",rarity:5,weaponType:"polearm",limited:!0,offset:{button:{w:90,t:20,l:30}}},{itemID:113,name:"the-unforged",rarity:5,weaponType:"claymore",limited:!0,offset:{button:{w:60,t:20,l:60}}},{itemID:112,name:"memory-of-dust",rarity:5,weaponType:"catalyst",limited:!0,offset:{button:{w:65,t:30,l:65}}},{itemID:111,name:"eye-of-perception",rarity:4,weaponType:"catalyst"},{itemID:110,name:"rainslasher",rarity:4,weaponType:"claymore"},{itemID:109,name:"rust",rarity:4,weaponType:"bow"},{itemID:108,name:"lost-prayer-to-the-sacred-winds",rarity:5,weaponType:"catalyst",offset:{button:{w:55,t:40,l:40}}},{itemID:107,name:"wolf_s-gravestone",rarity:5,weaponType:"claymore",offset:{button:{w:80,t:15,l:65}}},{itemID:106,name:"amos-bow",rarity:5,weaponType:"bow",offset:{button:{w:70,t:0,l:35}}},{itemID:105,name:"aquila-favonia",rarity:5,weaponType:"sword",offset:{button:{w:80,t:-10,l:65}}},{itemID:104,name:"skyward-pride",rarity:5,weaponType:"claymore",offset:{button:{w:80,t:10,l:65}}},{itemID:103,name:"skyward-atlas",rarity:5,weaponType:"catalyst",offset:{button:{w:65,t:40,l:70}}},{itemID:102,name:"skyward-harp",rarity:5,weaponType:"bow",offset:{button:{w:70,t:10,l:35}}},{itemID:101,name:"skyward-spine",rarity:5,weaponType:"polearm",offset:{button:{w:80,t:10,l:60}}},{itemID:100,name:"skyward-blade",rarity:5,weaponType:"sword",offset:{button:{w:90,t:-10,l:60}}},{itemID:99,name:"the-flute",rarity:4,weaponType:"sword"},{itemID:98,name:"the-widsith",rarity:4,weaponType:"catalyst"},{itemID:97,name:"dragon_s-bane",rarity:4,weaponType:"polearm"},{itemID:96,name:"lion_s-roar",rarity:4,weaponType:"sword"},{itemID:95,name:"sacrificial-bow",rarity:4,weaponType:"bow"},{itemID:94,name:"sacrificial-fragments",rarity:4,weaponType:"catalyst"},{itemID:93,name:"sacrificial-greatsword",rarity:4,weaponType:"claymore"},{itemID:92,name:"sacrificial-sword",rarity:4,weaponType:"sword"},{itemID:91,name:"favonius-greatsword",rarity:4,weaponType:"claymore"},{itemID:90,name:"favonius-sword",rarity:4,weaponType:"sword"},{itemID:89,name:"favonius-warbow",rarity:4,weaponType:"bow"},{itemID:88,name:"favonius-codex",rarity:4,weaponType:"catalyst"},{itemID:87,name:"favonius-lance",rarity:4,weaponType:"polearm"},{itemID:86,name:"the-bell",rarity:4,weaponType:"claymore"},{itemID:85,name:"the-stringless",rarity:4,weaponType:"bow"},{itemID:84,name:"black-tassel",rarity:3,weaponType:"polearm"},{itemID:83,name:"bloodtained-greatsword",rarity:3,weaponType:"claymore"},{itemID:82,name:"cool-steel",rarity:3,weaponType:"sword"},{itemID:81,name:"debate-club",rarity:3,weaponType:"claymore"},{itemID:80,name:"emerald-orb",rarity:3,weaponType:"catalyst"},{itemID:79,name:"ferrous-shadow",rarity:3,weaponType:"claymore"},{itemID:78,name:"harbinger-of-dawn",rarity:3,weaponType:"sword"},{itemID:77,name:"magic-guide",rarity:3,weaponType:"catalyst"},{itemID:76,name:"raven-bow",rarity:3,weaponType:"bow"},{itemID:75,name:"sharpshooter_s-oath",rarity:3,weaponType:"bow"},{itemID:74,name:"skyrider-sword",rarity:3,weaponType:"sword"},{itemID:73,name:"slingshot",rarity:3,weaponType:"bow"},{itemID:72,name:"thrilling-tales-of-dragon-slayers",rarity:3,weaponType:"catalyst"}],i=[{name:"5-star-outrider",characterName:"amber",rarity:4,offset:{splashArt:{x:1.62,y:-5.56,scale:1.46},wishCard:{x:66,y:37.80674157303371,scale:7.71}}},{name:"favonian-fevotion",characterName:"jean",rarity:4,offset:{splashArt:{x:2.7412280701754383,y:-3.0804093567251463,scale:1.36},wishCard:{x:32.412623006447234,y:61.74109263657957,scale:9.17}}},{name:"executor_s-thorns",characterName:"rosaria",rarity:4,offset:{splashArt:{x:-.608187134502924,y:-5.552631578947368,scale:1.24},wishCard:{x:11.309806582965727,y:64.11163895486936,scale:8.95}}},{name:"flowing-fate",characterName:"mona",rarity:4,offset:{splashArt:{x:-1.1023391812865497,y:-.4473684210526315,scale:1.6},wishCard:{x:10.902612826603326,y:52.65320665083135,scale:10.88}}},{release:1.6,name:"summertime-sparkle",characterName:"barbara",rarity:4,price:1680,offset:{splashArt:{x:-.7410714285714286,y:3.386904761904762,scale:1.16},wishCard:{x:39.886128364389236,y:70.09178743961353,scale:8.85}}},{release:1.6,name:"sea-breeze-dandelion",characterName:"jean",rarity:4,price:1680,promoPrice:1350,offset:{splashArt:{x:.37351190476190477,y:3.2901785714285716,scale:1.18},wishCard:{x:-25.54865424430642,y:92.17874396135267,scale:9.93},storeCard:{t:-15,l:-30,w:125}}},{release:2.4,name:"orchid_s-evening-gown",characterName:"ningguang",rarity:4,price:1680,offset:{splashArt:{x:-2.604166666666667,y:2.2738095238095237,scale:1.04},wishCard:{x:-18.871635610766045,y:74.78985507246377,scale:7.08}}},{release:2.4,name:"opulent-splendor",characterName:"keqing",rarity:4,price:1680,promoPrice:1350,offset:{splashArt:{x:1.638392857142857,y:6.901785714285714,scale:1.1},wishCard:{x:39.34782608695652,y:86.33574879227052,scale:7.46},storeCard:{t:0,l:-20,w:110}}},{release:2.8,name:"ein-immernachtstraum",characterName:"fischl",rarity:4,price:1680,offset:{splashArt:{x:-2.5580357142857144,y:2.915178571428571,scale:1.04},wishCard:{x:-34.648033126293996,y:74.1352657004831,scale:7.46}}},{release:2.8,name:"red-dead-of-night",characterName:"diluc",rarity:5,price:2480,promoPrice:1980,offset:{splashArt:{x:-12.322916666666666,y:-7.5773809523809526,scale:1.52},wishCard:{x:-92.41200828157349,y:61.80434782608696,scale:11.77},storeCard:{l:-45,t:-50,w:130}}},{release:3.4,name:"a-sobriquet-under-shade",characterName:"lisa",rarity:4,price:1680,offset:{splashArt:{x:1.1770833333333333,y:-.9925595238095238,scale:1.2},wishCard:{x:-80.76604554865425,y:63.37198067632851,scale:8.67}}},{release:3.4,name:"springbloom-missive",characterName:"kamisato-ayaka",rarity:4,price:1680,promoPrice:1350,offset:{splashArt:{x:-2.3333333333333335,y:-4.5773809523809526,scale:1.24},wishCard:{x:29.668737060041412,y:58.376811594202906,scale:8.98},storeCard:{l:-20,w:120,t:-35}}},{release:3.8,name:"sailwind-shadow",characterName:"kaeya",rarity:4,price:1680,offset:{splashArt:{x:-.9940476190476191,y:-3.9821428571428577,scale:1.24},wishCard:{x:-22.836438923395445,y:69.80193236714976,scale:9.88}}},{release:3.8,name:"blossoming-starlight",characterName:"klee",rarity:4,price:1680,promoPrice:1350,offset:{splashArt:{x:2.9925595238095237,y:10.900297619047619,scale:1.36},wishCard:{x:35.13457556935818,y:69.07729468599034,scale:9.88},storeCard:{l:-20,w:120,t:-25}}}],h=(a={})=>{if(!a.name)return a;const{name:t}=o.getByChar(a.name)?.find(({isSet:e})=>e)||{};if(!t)return a;const{offset:r={}}=m(t);return{...a,offset:r,outfitName:t,useOutfit:!0}},m=a=>{const t=i.find(({name:n})=>n===a),{characterName:r,rarity:e,offset:s}=t||{};return{name:r,rarity:e,outfitName:a,offset:s,type:"outfit"}},d=a=>i.filter(({characterName:e})=>e===a).map(e=>{const s=o.get(e.name);return e.owned=!!s||!e.release,e.isSet=s?.isSet||!1,e}),u=({patch:a})=>i.filter(({release:e})=>e<=parseFloat(a)).map(e=>(e.isOwned=!!o.get(e.name),e)),x=a=>i.filter(({release:r})=>r===parseFloat(a)).length>0;export{f as a,d as b,w as c,y as d,u as e,m as g,x as i,l as o,h as s};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/preload-helper-176e53da.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/preload-helper-176e53da.js
deleted file mode 100644
index 85a57d3b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/preload-helper-176e53da.js
+++ /dev/null
@@ -1 +0,0 @@
-const h=function(){const t=document.createElement("link").relList;return t&&t.supports&&t.supports("modulepreload")?"modulepreload":"preload"}(),m=function(o,t){return new URL(o,t).href},u={},k=function(t,i,c){if(!i||i.length===0)return t();const a=document.getElementsByTagName("link");return Promise.all(i.map(e=>{if(e=m(e,c),e in u)return;u[e]=!0;const r=e.endsWith(".css"),f=r?'[rel="stylesheet"]':"";if(!!c)for(let s=a.length-1;s>=0;s--){const l=a[s];if(l.href===e&&(!r||l.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${e}"]${f}`))return;const n=document.createElement("link");if(n.rel=r?"stylesheet":h,r||(n.as="script",n.crossOrigin=""),n.href=e,document.head.appendChild(n),r)return new Promise((s,l)=>{n.addEventListener("load",s),n.addEventListener("error",()=>l(new Error(`Unable to preload CSS for ${e}`)))})})).then(()=>t())};export{k as _};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/pt-BR-ed487c6b.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/pt-BR-ed487c6b.js
deleted file mode 100644
index 13a901ed..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/pt-BR-ed487c6b.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Simulador De Ora\xE7\xF5es Do Genshin Impact",a="Personagem",o="Arma",r="Vis\xE3o",n="Anemo",s="Cryo",t="Dendro",i="Electro",d="Hydro",m="Geo",l="Pyro",c="Arco",p="Catalisador",u="Espad\xE3o",b="Espada",g="Lan\xE7a",h="Extra",v="Obtido",f="Aguardando",y="Falha na conex\xE3o!",C="Confirmar",P="Cancelar",w="Todos os ativos utilizados neste site s\xE3o de propriedade da Mihoyo.",A="Esta \xE9 uma aplica\xE7\xE3o feita por um f\xE3, aproveite-a !",D="Pressione em qualquer espa\xE7o vazio para continuar",E="Instru\xE7\xF5es para instalar a vers\xE3o Desktop",B="Compartilhar",N="Capturar tela",S="Capturando",O="Recompensa pelo primeiro compartilhamento : {qty}",x="Vers\xE3o",I="Doe",q={beginner:"Ora\xE7\xE3o de Novatos",wanderlust:"Invoca\xE7\xE3o do Mochileiro","epitome-invocation":"Encarna\xE7\xE3o Divina","adrift-in-the-harbor":"Perguntas Tempor\xE1rias","auric-blaze":"Fulgor Dourado","azure-excursion":"Correntes Florais","ballad-in-goblets":"Poemas em Ta\xE7as","born-of-ocean-swell":"Forma\xE7\xE3o das Ondas","caution-in-confidence":"Estrat\xE9gia Imperativa","chanson-of-many-waters":"Ode \xE0s \xC1guas","conjuring-chiaroscuro":"Conjuring Chiaroscuro","dance-of-lantern":"Dan\xE7a das Lanternas","decree-of-the-deeps":"A Ordem das Profundezas","discerner-of-enigmas":"Discernidora de Enigmas","drifting-luminescence":"Luminesc\xEAncia \xE0 Deriva","everbloom-violet":"Sakura Roxa Eterna","farewell-of-snezhnaya":"Despedida para o Norte","from-ashes-reborn":"Fogo Oculto","gentry-of-hermitage":"Aristocracia Ermida","immaculate-pulse":"Cora\xE7\xE3o Imaculado","in-the-name-of-the-rosula":"Juramento Eterno da Rosa","invitation-to-mundane-life":"Convite de Chamas","leaves-in-the-wind":"Folhas ao Vento","moment-of-bloom":"Momento de Florescer","oni_s-royale":"Batalha do Reino Oni","reign-of-serenity":"Reino da Serenidade","secretum-secretorum":"Noites Enigm\xE1ticas","sparkling-steps":"Passos Flamejantes","tapestry-of-golden-flames":"Chama da Via L\xE1ctea","tempestuous-destiny":"Inundado Junto \xE0 Calamidade","the-heron_s-court":"Jardim da Gar\xE7a","the-moongrass-enlightenment":"A Sabedoria da Erva da Lua","the-transcendent-one-returns":"A Volta do Transcendente","twilight-arbiter":"\xC1rbitro do Crep\xFAsculo","twirling-lotus":"L\xF3tus Girat\xF3ria","viridescent-vigil":"Patrulha Esverdeada"},R={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},T={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},k={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},F={wishTitle:"Orar",rollButton:"Orar {count}",stellaFortuna:"Stella Fortuna",loadFailed:"Falha ao carregar o banner! <br /> Por favor, troque para outro banner ou verifique sua conex\xE3o \xE0 internet.",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banner",allBanner:"Todos os Banners",previous:"Banner Anterior",findBanner:"Encontre um Banner",group:"Agrupar",beginner:"Ora\xE7\xE3o de Novatos","character-event":"Ora\xE7\xE3o de Evento de Personagem","weapon-event":"Ora\xE7a\xF5 de Arma",standard:"Desejo Comum",wishDescription:"A cada 10 Ora\xE7\xF5es, \xE9 garantida a inclus\xE3o de pelo menos um item de 4 estrelas ou superior.",novice:"Ora\xE7\xE3o de Novatos",up:"UP!",beginnerSet:"Desconto de 20% para o conjunto de 10. Garantido a obten\xE7\xE3o da Noelle",beginnerNote:'"Eu sei exatamente como me comportar como uma empregada."',beginnerChance:"Chance(s) Restante(s): {chances}",standardNote:"Os desejos padr\xF5es n\xE3o t\xEAm limite de tempo.",allWeaponTypes:"Todos os tipos de Arma",etc:"etc.",probIncreased:"Probabilidade aumentada!",eventNote:"Os personagens ilimitados de 5 estrelas s\xF3 podem ser obtidos na ora\xE7\xE3o correspondente.",viewDetails:"Leia Detalhes para mais informa\xE7\xF5es."},epitomizedPath:{text:"Caminho Divino",fatePoint:"Pontos do Destino",cancelPrompt:"Deseja cancelar o caminho atual ?",cancelDesc:"Cancelar ir\xE1 resetar seus Pontos do Destino acumulados",selectWeapon:"Selecionar Arma",chartCourseOf:"Marcar Caminho para {target}",cancelCourse:"Cancelar Caminho",chartCourse:"Marcar Caminho",courseSetFor:"Caminho Marcado para: {selectedCourse}",description:['"Caminho Divino" \xE9 uma mec\xE2nica inclu\xEDda nessa "Encarna\xE7\xE3o Divina":',"Quando voc\xEA tiver marcado a arma de sua escolha, <span>se receber uma Arma de 5 estrelas que n\xE3o \xE9 a que voc\xEA escolheu, voc\xEA obter\xE1 1 Ponto do Destino</span>. Voc\xEA pode acumular at\xE9 2 Pontos do Destino.",'Quando voc\xEA acumular pontos do destino suficientes, sua pr\xF3xima Arma de 5 estrelas ser\xE1 a que voc\xEA escolheu no "Caminho Divino".',"Quando voc\xEA obter a arma escolhida no Caminho Divino, <span>os Pontos do Destino acumulados ser\xE3o zerados</span>.","Se voc\xEA n\xE3o usar o Caminho Divino, n\xE3o acumular\xE1 Pontos do Destino.","O caminho escolhido pode ser modificado ou cancelado. Entretanto, ao fazer isso, os Pontos do Destino ser\xE3o zerados.","No fim do per\xEDodo atual do Banner de armas, os Pontos do Destino ser\xE3o zerados."]},result:{skip:"Pular",meteorFailed:"Falha ao carregar anima\xE7\xE3o de cometa",new:"Novo",convertion:"Convertido",title:"Resultado da ora\xE7\xE3o para {item} et al"}},j={heading:"Estilos de Personagem",default:"Padr\xE3o",setOutfit:"Colocar Vestimenta",owned:"J\xE1 Adquirida",purchasePrompt:"Voc\xEA ainda n\xE3o possui o personagem que pode usar esta vestimenta, voc\xEA t\xEAm certeza que deseja compr\xE1-la?",promptInfo:"Voc\xEA ainda poder\xE1 us\xE1-la quando conseguir o personagem.",obtained:"Nova Vestimenta Obtida",unlocked:"{character}: Vestimenta Desbloqueada",item:{"5-star-outrider":{name:"5-Star Outrider"},"favonian-fevotion":{name:"Favonian Devotion"},"flowing-fate":{name:"Flowing Fate"},"executor_s-thorns":{name:"Executor's Thorns"},"sea-breeze-dandelion":{name:"Sea Breeze Dandelion",description:"Jean's summer wear. Light and cool, but no less elegant for it. The perfect choice for a trip to the seaside."},"summertime-sparkle":{name:"Summertime Sparkle",description:"Barbara's beach attire. This pretty skirt brims with summer vitality and carries with it a cool ocean breeze."},"opulent-splendor":{name:"Opulent Splendor",description:"Keqing's formal wear. Amidst the beautiful dawn of the Lantern Rite, the threads weaved by days of hard work intertwine into a light yet magnificent appearance."},"orchid_s-evening-gown":{name:"Orchid's Evening Gown",description:"Ningguang's formal wear. The long cyan skirt traces her elegant curves, and the butterfly wings at her ankles lend the outfit a touch of light grace."},"ein-immernachtstraum":{name:"Ein Immernachtstraum",description:"A ceremonial outfit for the Prinzessin. May she who is noble retain her courage, sincerity, and kindness forever, such that no evil shall ever overcome her."},"red-dead-of-night":{name:"Red Dead of Night",description:"One of the outfits Diluc wears during covert actions, it resembles a flame dancing in the shadows. The crimson red traces it leaves behind at the edges of the enemy's vision will scar their nightmares forever."},"a-sobriquet-under-shade":{name:"A Sobriquet Under Shade",description:"An outfit Lisa had someone commission for her when she revisited Sumeru. A perfect balance between practicality and elegance, the dress bears a resemblance to Lisa\u2019s old uniform from the Akademiya days."},"springbloom-missive":{name:"Springbloom Missive",description:"Ayaka\u2019s travel outfit. Its design is based on the Fontaine dresses depicted in light novel illustrations and seems to reflect the lifestyle of proper ladies who live in that nation."},"blossoming-starlight":{name:"Luz Estelar Florescente",description:"Uma vestimenta requintada que a Klee usa apenas para as apresenta\xE7\xF5es mais importantes. As cores s\xE3o brilhantes, como um bolo de creme decorado com flores e coroado com velas escarlates. Com ela, felicidades e sorrisos ir\xE3o encher suas aventuras."},"sailwind-shadow":{name:"Sombra da Vela Tremulante",description:"Vestimenta do Kaeya enquanto fazia o papel de Bandido da Adaga. Embora seja uma vestimenta extravagante, feita para chamar o m\xE1ximo de aten\xE7\xE3o poss\xEDvel, n\xE3o \xE9 dif\xEDcil de vestir, embora seja necess\xE1rio um bom tempo para lidar com todos os acess\xF3rios e adagas."}}},z={text:"Detalhes",promotional:"Itens Promocionais",itemlist:"Lista de Itens",increasedRate:"Taxa de Drop Aumentada",percentageDrop:"Porcentagem de drop de itens {rarity} estrelas: {percentage}",wishDetails:"Detalhes da Ora\xE7\xE3o",probInfo:"Probabilidade de Drop e Itens de {rarity} Estrelas: {singlePercentage} (Incl. garantia: {avgPercentage})",itemWishFor:"Lista de Itens da Ora\xE7\xE3o:",itemType:"Tipo de Item",itemName:"Nome do Item",beginnerInfo:"Sem limite de tempo (Termina ap\xF3s 20 ora\xE7\xF5es)",limited:"Evento de tempo limitado",permanent:"Permanente",alert:"\u203B Esta \xE9 uma {wishName}. A contagem de garantias \xE9 apenas para este evento e independente da contagem das outras ora\xE7\xF5es.",beginner:["A ora\xE7\xE3o de <span> Novatos </span> n\xE3o t\xEAm limite de tempo e \xE9 voltada para viajantes que chegaram recentemente em Teyvat. Uma sele\xE7\xE3o limitada de personagens e armas n\xE3o promocionais est\xE1 dispon\xEDvel.<br /> Na Ora\xE7\xE3o de Novatos, o conjunto de 10 ora\xE7\xF5es gasta <span> 20%</span> menos Destinos Familiares. No primeiro conjunto de 10 ora\xE7\xF5es \xE9 garantida a obten\xE7\xE3o de {character}, e no segundo conjunto de 10 ora\xE7\xF5es \xE9 garantida a obten\xE7\xE3o de algum <span>outro</span> personagem de 4 estrelas! <br/> O Desejo de Novatos expira ap\xF3s <span>20</span> tentativas. Depois que ele expirar, a p\xE1gina ir\xE1 desaparecer.","\u203B Em circunst\xE2ncias normais, todos os personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.","\u3013Regras\u3013","Probabilidade base de obter um personagem de 5 Estrelas<span> 0,600%</span> <br /> Probabilidade base de obter um personagem de 4 Estrelas<span> 5,100%</span>; probabilidade conjunta (incl. garantia) = <span> 13,000%</span>."],standard:['"{bannerName}" \xE9 uma ora\xE7\xE3o comum sem limite de tempo, onde personagens e armas n\xE3o limitadas est\xE3o dispon\xEDveis.<br/> Nesta Ora\xE7\xE3o, a cada conjunto de 10 ora\xE7\xF5es, \xE9  <span>garantido</span> que inclua pelo menos um item de 4 estrelas ou superior.',"\u203BEm circunst\xE2ncias normais, todos os personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.","\u3013Rules\u3013","A probabilidade base de obter um item de 5 estrelas \xE9 de <span>0,600%</span>, a probabilidade base de obten\xE7\xE3o de um personagem 5 estrelas \xE9 de <span>0,300%</span>, a probilidade base de obten\xE7\xE3o de um personagem 5 estrelas \xE9 de <span>0,300%</span>; e a probabilidade conjunta de obter um item de 5 estrelas \xE9 de <span>1.600%</span>. \xC9 garantido um item de 5 estrelas pelo menos uma vez a cada <span>90</span> tentativas. <br>A probabilidade base de obter um item de 4 estrelas \xE9 de <span>5,100%</span>, a probabilidade base de obten\xE7\xE3o de uma arma 4 estrelas \xE9 de <span>2.550%</span>, a probabilidade base de obten\xE7\xE3o de uma arma de 4 estrelas \xE9 de <span>2,550%</span> e a probabilidade conjunta de obter um item de 4 estrelas (incl. garantia) \xE9 de <span>13,000%</span>. \xC9 gatantido um item de 4 estrelas pelo menos uma vez a cada <span>10</span> tentativas, em que a probabilidade de obten\xE7\xE3o de um item de 4 estrelas \xE9 de <span>99,400%</span>, e a probabilidade de de um item de 5 estrelas \xE9 de <span>0,600%</span>."],events:['Dispon\xEDvel agora, Ora\xE7\xE3o de Evento - "{bannerName}". Durante o per\xEDodo do evento, o(a) <span>personagem limitado(a)</span> de 5 estrelas {featuredCharacter} e os personagens de 4 estrelas {rateupCharacters} receber\xE3o um <span>grande aumento na taxa de drop</span>! <br/> <span> \u203B Personagens limitados citados acima n\xE3o entrar\xE3o na Ora\xE7\xE3o Comum "Invoca\xE7\xE3o do Mochileiro."</span>',"\u203B Em circunst\xE2ncias normais, todos as personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.","\u3013Rules\u3013","Itens de 5 Estrelas",'Na Ora\xE7\xE3o de Evento - "{bannerName}", a probabiilidade base de obter um personagem 5 estrelas \xE9 de <span> 0,600% </span>, e a probabilidade conjunta (incl. garantia) \xE9 de <span>1,600%</span>; \xC9 garantida a obten\xE7\xE3o de um personagem 5 estrelas uma vez a cada<span> 90</span> tentativas.<br/> Ao obter um personagem 5 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1<span> 50,000%</span> de chance de ser o(a) personagem promocional {featuredCharacter}. Se o(a) primeiro personagem 5 estrelas obtido nesta Ora\xE7\xE3o de Evento n\xE3o for o(a) personagem promocional desta edi\xE7\xE3o, ent\xE3o \xE9<span> garantido</span> que o(a) pr\xF3ximo(a) personagem 5 estrelas que voc\xEA obtiver seja o(a) personagem promocional.',"Itens de 4 Estrelas",'Na Ora\xE7\xE3o de Evento - "{bannerName}", a probabilidade base de obter um item de 4 estrelas \xE9 de <span> 5,100%</span>, a probabilidade base de obter um personagem 4 estrelas \xE9 de <span>2,550%</span>,a probabilidade base de obter uma arma de 4 estrelas \xE9 de<span> 2,550%</span>, e a probabilidade conjunta de obter um item de 4 estrelas (incl. garantia) \xE9 de<span> 13,000%</span>. \xC9 garantido um item de 4 estrelas ou mais pelo menos uma vez a cada <span>10</span> tentativas, onde a probabilidade de obter um item de 4 estrelas atrav\xE9s da garantia \xE9 de <span>99,400%</span> e a probabilidade de obter um item de 5 estrelas \xE9 de<span> 0,600%</span>. <br/> Ao obter um item de 4 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1<span> 50,000%</span> de chance de ser o(a) personagem promocional {rateupCharacters}. Caso o primeiro item de 4 estrelas obtido nesta Ora\xE7\xE3o de Evento n\xE3o seja os personagens promocionais, ent\xE3o \xE9 <span>garantido</span> que o pr\xF3ximo item de 4 estrelas que voc\xEA obtivver seja um dos personagens promocionais desta edi\xE7\xE3o. Quando um item promocional de 4 estrelas \xE9 obtido durante as ora\xE7\xF5es, a probabilidade de obten\xE7\xE3o de qualquer personagem de 4 estrelas promocional do evento ser\xE1 igual.'],weapons:['Dispon\xEDvel agora, Ora\xE7\xE3o de Evento - "{bannerName}". Durante o per\xEDodo do evento, as armas <span>limitadas</span> de 5 estrelas {featuredWeapon1}, {featuredWeapon2}, a arma <span>limitada</span> de 4 estrelas {rateupWeapons} receber\xE3o um <span>grande aumento na taxa de drop</span>! <br/> <span> \u203B Armas limitadas citadas acima n\xE3o entrar\xE3o na Ora\xE7\xE3o Comum "Invoca\xE7\xE3o do Mochileiro."</span>',"\u203B Em circunst\xE2ncias normais, todos os personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.","\u3013Regras\u3013","Itens de 5 Estrelas",'Na Ora\xE7\xE3o de Evento "{bannerName}", a probabilidade base de obter uma arma 5 estrelas \xE9 de<span> 0,700%</span> e a probabilidade conjunta (incl. garantia) \xE9 de <span>1,850%</span>. \xC9 garantida a obten\xE7\xE3o de uma arma 5 estrelas uma vez a cada <span>80</span> tentativas.<br/> Ao obter uma arma de 5 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1 <span>75,000%</span> de chance de ser uma das armas promocionais de 5 estrelas desta edi\xE7\xE3o, {featuredWeapon1} ou {featuredWeapon2}. Se a primeira arma de 5 estrelas obtida nesta Ora\xE7\xE3o de Evento n\xE3o for a arma promocional, ent\xE3o \xE9 <span>garantido</span> que a pr\xF3xima arma de 5 estrelas que voc\xEA obtiver seja a arma promocional. Quando a arma selecionada \xE9 obtida antes de atingir o m\xE1ximo de Pontos do Destino, ao obter o item promocional de 5 estrelas na ora\xE7\xE3o, a probabilidade de obten\xE7\xE3o de qualquer arma 5 estrelas promocial do evento ser\xE1 igual.<br/> Durante a Ora\xE7\xE3o de Evento - "{bannerName}", utilize o "Caminho Divino." e marque um caminho para uma das armas promocionais de 5 estrelas deste evento. A arma selecionada s\xF3 ser\xE1 v\xE1lida para a Ora\xE7\xE3o de Evento - "{bannerName}". <br/> Durante a Ora\xE7\xE3o de Evento - "{bannerName}", ao obter uma arma de 5 estrelas que n\xE3o foi selecionada previamente com o "Caminho Divino", 1 Ponto do Destino ser\xE1 obtido, quando o Ponto do Destino chegar no <span>m\xE1ximo</span> a pr\xF3xima arma de 5 estrelas obtida na ora\xE7\xE3o ser\xE1 <span>certamente</span> a arma previamente selecionada. Ap\xF3s obter a arma selecionada, independente de ter ou n\xE3o alcan\xE7ado o m\xE1ximo, o Ponto do Destino ser\xE1 redefinido, para voltar a ser acumulado do <span>0</span>. <br/> Em casos onde o "Caminho Divino" n\xE3o foi utilizado para selecionar armas, <span>n\xE3o ser\xE1</span> acumulado Pontos do Destino. <br/> \xC9 poss\xEDvel trocar ou cancelar a arma selecionada. Ao trocar ou cancelar a arma selecionada, os Pontos do Destino ser\xE3o redefinidos, para voltarem a ser acumulados do <span>0</span>. \u203B Os Pontos do Destino desta ora\xE7\xE3o s\xF3 ser\xE3o v\xE1lidos na Ora\xE7\xE3o de Evento - "Encarna\xE7\xE3o Divina". Ap\xF3s o fim da ora\xE7\xE3o, os Pontos do Destino ser\xE3o redefinidos, para voltarem a ser acumulados do <span>0</span>.',"Itens de 4 Estrelas",'Durante a Ora\xE7\xE3o de Evento - "{bannerName}", a probabilidade base de obter um item de 4 estrelas \xE9 de <span>6,000%</span>, a probabilidade base de obten\xE7\xE3o de um personagem de 4 estrelas \xE9 de <span>3,000%</span>, a probabilidade base de obten\xE7\xE3o de uma arma de 4 estrelas \xE9 de <span>3,000%</span> e a probabilidade conjunta de obter um item de 4 estrelas (incl. garantia) \xE9 de <span>14,500%</span>. \xC9 garantido um item de 4 estrelas ou mais pelo menos uma vez a cada <span>10</span> tentativas, onde a probabilidade de obter um item de 4 estrelas atrav\xE9s da garantia \xE9 de <span>99,300%</span> e a probabilidade de obter um item de 5 estrelas \xE9 de<span>0,700%</span>. <br/> AO obter um item de 4 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1 <span>75,000%</span> de chance de ser a arma promocional {rateupWeapons}. Caso o primeiro item de 4 estrelas obtido nesta Ora\xE7\xE3o de Evento n\xE3o seja as armas promocionais, ent\xE3o \xE9 <span>garantido</span> que o pr\xF3ximo item de 4 estrelas que voc\xEA obtiver seja uma das armas promocionais desta edi\xE7\xE3o. Quando um item promocional de 4 estrelas \xE9 obtido durante as ora\xE7\xE3o, a probabilidade de obten\xE7\xE3o de qualquer arma de 4 estrelas promocional do evento ser\xE1 igual.'],convertion:{fiveStar:"As armas de 5 estrelas obtidas nesta ora\xE7\xE3o v\xEAm com {starglitter} \xD710;",fourStar:"As armas de 4 estrelas obtidas nesta ora\xE7\xE3o v\xEAm com {starglitter} \xD72;",threeStar:"As armas de 3 estrelas obtidas nesta ora\xE7\xE3o v\xEAm com {stardust} \xD715."},duplicate:{heading:"\u3013Personagens Duplicados\u3013",text:"Ao obter um personagem {rarity} estrelas que voc\xEA j\xE1 possui (mesmo quando obtido em ora\xE7\xE3o, resgatado na loja ou no jogo): Na 2\xAA - 7\xAA vez que obter o personagem, ele ser\xE1 convertido na {stellaFortuna} \xD71 do personagem e {starglitter} {constBonus}; a partir da 8\xAA aquisi\xE7\xE3o, ele ser\xE1 convertido em {starglitter} {fullConstBonus}."}},L={title:"Hist\xF3rico de Ora\xE7\xF5es",text:"Hist\xF3rico",resetButton:"Limpar",resetPromptTitle:"Limpar Hist\xF3rico ?",resetPrompt:'Esta a\xE7\xE3o tamb\xE9m vai remover todos os Personagens e Armas relacionadas ao "{bannerName}" Banner do Invent\xE1rio. <br /> Voc\xEA tem certeza de que deseja resetar ?',resetSuccess:"Resetado com Sucesso",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"Tipo de Ora\xE7\xE3o",disclaimer:"N\xF3s nunca salvamos dados na nuvem. Todos os dados s\xE3o guardados em IndexedDB, ou seja, no armazenamento do seu navegador. Os dados n\xE3o ser\xE3o deletados a menos que voc\xEA delete manualmente, al\xE9m de usar o bot\xE3o 'Limpar' ou limpar os dados de navega\xE7\xE3o.",currentPity:"Pity atual :",totalPull:"Total de ora\xE7\xF5es:",totalSpend:"Total Gasto :",filterTxt:"Filtrar",filter:"{rarity} Estrelas",filterAll:"Todos",pity:"Pity",timeReceived:"Recebido em",waiting:"Aguardando",noData:"Sem dados dispon\xEDveis.",untracked:"N\xE3o rastreado",item:"Item",win:"Ganhar 50/50",lose:"Perder 50/50",guaranteed:"Garantido",selected:"Arma Selecionada",olderLayout:"Layout Antigo",switchv2:"Voltar para a V2"},M={text:"Loja",paimonBargains:"Barganhas da Paimon",fateNeeded:"Um Adicional de {rollQty} {currency} \xE9 necess\xE1rio",primoNeeded:"Comprar com {primoPrice} Gemas Essenciais ?",purchaseUpto:"Limite de compras: 1",purchaseConfirm:"Confirmar Compra",exchangeHeading:"Trocar Item",purchaseHeading:"Comprar Item",purchaseButton:"Comprar",pay:"Pagar",product:"Produto",consume:"Consume",selectPayment:"Selecione a forma de Pagamento",unrealWallet:"Carteira Ilimitada",convertPrimo:" Converter Automaticamente para Gemas Essenciais ?",proceedPayment:"Continuar para o pagamento",qty:"Qtd",insufficient:"Fundos Insuficientes",crystalTopup:"Recarga de Cristal",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"Comprar Cristais Genesys",recomendedHeading:"Recomendado",paimonHeading:"Barganhas da Paimon",welkinNote:"Pode ser comprado m\xFAltiplas vezes",limitedOffer:"Oferta por Tempo Limitado",noLimitTime:"Itens dispon\xEDveis sem limite de tempo",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"Ben\xE7\xE3o da Lua Nova",newOutfit:"Novos Estilos de Personagem",dayRemaining:"Dias Restantes {days}",alreadyClaimed:"J\xE1 resgatado hoje",instantlyGet:"Ganhe Imediatamente",dailyGift:"Presente Di\xE1rio",obtainTotal:"Obtenha um total de {totalGenesis} Cristais G\xEAnesis e {totalPrimo} Gemas Essenciais ao longo de 30 dias",claimingBlessing:"Clique para resgatar suas recompensas di\xE1rias da Ben\xE7\xE3o da Lua Nova.",issuedPurchase:"Erro ao comprar",collect:"Colete recompensas por login di\xE1rio durante 30 dias."},exchange:{starglitter:"Resgate de Brilho Estelar",stardust:"Resgate de Poeira Estelar",primogem:"Comprar com Gemas Essenciais"},item:{genesis:"Cristais Genesys",primogem:"Gemas Essenciais",intertwined:"Destino Entrela\xE7ado",acquaint:"Destino Familiar",starglitter:"Brilho Estelar",stardust:"Poeira Estelar"},description:{intertwined:"Uma pedra do destino que conecta sonhos. O seu brilho pode entrela\xE7ar e conectar sonhos, assim como seu brilho pode conectar as estrelas em formatos de desejos de um cora\xE7\xE3o.",acquaint:"Uma semente que pode iluminar a noite. N\xE3o importa a dist\xE2ncia, guiada pelo brilho da pedra, o sesejo do destino ser\xE1 encontrado sob as estrelas."}},G={text:"Invent\xF3rio",unsetOutfit:"Remover Vestimenta",setOutfit:"Aplicar Vestimenta ao Personagem",refinement:"Refinamento {count}",constellation:"Constela\xE7\xE3o {count}",extra:"{count} Extra",firstSummon:"Primeira invoca\xE7\xE3o em : {date}",notOwned:"N\xE3o Adquirido",sort:"Organizar",rarity:"Raridade",name:"Nome",quantity:"Quantidade",element:"Elemento",release:"Data de lan\xE7amento",type:"Type",owned:"Adquirido",showAllOption:"Mostrar todos os Personagens"},W={no:"N\xE3o",yes:"Sim",text:"Menu",feedback:"Feedback",options:"Configura\xE7\xF5es",updates:"Hist\xF3rico de atualiza\xE7\xF5es",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"Idioma",currency:"Moeda",fates:"Number of Wishes",unlimited:"Unlimited",manual:"Manual Input",mute:"Mutar \xE1udio e efeitos sonoros",switchBanner:"Trocar Banner",showAllitems:"Mostrar todos os itens no Invet\xE1rio",autoskip:"Pular automaticamente anima\xE7\xE3o de ora\xE7\xE3o",animatedbg:"Plano de fundo animado",multiRoll:"Number per multi-roll",factoryReset:"Limpar dados e restaurar padr\xE3o",resetTitle:"Limpar dados",rotate:"Rotacionar para melhor experi\xEAncia",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Limpar mem\xF3ria em cach\xEA ( {size} ) ? <small> Voc\xEA precisar\xE1 baixar novamente os arquivos de cach\xEA depois desta a\xE7\xE3o!</small>",resetButton:"Resetar agora",resetPrompt:"Voc\xEA tem certeza que deseja limpar <strong> Todos os dados </strong> e restaurar o padr\xE3o ?",resetSuccess:"Resetado com Sucesso",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Consiga uma nova Aqui!",noKey:"N\xE3o pusse uma Chave de An\xFAncios?",verifyFail:"Falha ao verificar a Chave de An\xFAncios, verifique sua conex\xE3o !",invalidKey:"Esta chave n\xE3o \xE9 mais v\xE1lida",keyExpired1:"Chave Expirada!",keyExpired2:'Sua chave: "{key}" est\xE1 expirada deste a data {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Digite a chave",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* Sentimos muito pelos an\xFAncios. N\xE3o desejamos atrapalhar sua experiencia de ora\xE7\xE3o, mas n\xE3o temos patrocinadores para manter esse aplicativo online. Se voc\xEA n\xE3o deseja nos patrocinar com an\xFAncios, voc\xEA pode ativar seu AdBlocker or usar um DNS customizado: n\xE3o o impediremos."},V={title:e,character:a,weapon:o,vision:r,anemo:n,cryo:s,dendro:t,electro:i,hydro:d,geo:m,pyro:l,bow:c,catalyst:p,claymore:u,sword:b,polearm:g,extra:h,obtained:v,waiting:f,connectionFailed:y,confirmButton:C,cancelButton:P,disclaimer:w,fanmade:A,pressToContinue:D,installInstruction:E,share:B,screenshot:N,capturing:S,rewardFirstShare:O,version:x,donate:I,banner:q,editor:R,customBanner:T,backupRestore:k,wish:F,outfit:j,details:z,history:L,shop:M,inventory:G,menu:W};export{n as anemo,k as backupRestore,q as banner,c as bow,P as cancelButton,S as capturing,p as catalyst,a as character,u as claymore,C as confirmButton,y as connectionFailed,s as cryo,T as customBanner,V as default,t as dendro,z as details,w as disclaimer,I as donate,R as editor,i as electro,h as extra,A as fanmade,m as geo,L as history,d as hydro,E as installInstruction,G as inventory,W as menu,v as obtained,j as outfit,g as polearm,D as pressToContinue,l as pyro,O as rewardFirstShare,N as screenshot,B as share,M as shop,b as sword,e as title,x as version,r as vision,f as waiting,o as weapon,F as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/pt-BR-ef6f28e8.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/pt-BR-ef6f28e8.js
deleted file mode 100644
index 86013488..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/pt-BR-ef6f28e8.js
+++ /dev/null
@@ -1 +0,0 @@
-const a="Akuoumaru",e="Segadeira da Chuva",o="Enferrujado",n="Estilingue",t="Veredito",i={name:"Albedo",title:"Pr\xEDncipe do Giz"},r={name:"Alhaitham",title:"Reprimenda Instrutiva"},s={name:"Amber",title:"Aventureira"},l={name:"Baizhu",title:"Al\xE9m da Mortalidade"},d={name:"Barbara",title:"\xCDdolo Radiante"},u={name:"Beidou",title:"Rainha do Mar Sem Coroa"},c={name:"Bennett",title:"Julgamento por Fogo"},m={name:"Candace",title:"Promessa Dourada"},h={name:"Charlotte",title:"Lentes em Busca da Verdade"},g={name:"Chevreuse",title:"Executora da Justi\xE7a"},y={name:"Chongyun",title:"Pegadas na Neve"},f={name:"Collei",title:"Broto de Renascimento"},p={name:"Cyno",title:"Juiz dos Segredos"},v={name:"Dehya",title:"Leoa Flamejante"},k={name:"Diluc",title:"Herdeiro do Adega do Alvorecer"},C={name:"Diona",title:"Coquetel da Cauda do Gato"},b={name:"Dori",title:"Tesouro do Jardim dos Sonhos"},S={name:"Eula",title:"Dan\xE7a da Onda Quebradora"},E={name:"Faruzan",title:"Maquinista Enigm\xE1tica"},w={name:"Fischl",title:"Contempla\xE7\xF5es da Estrela Noturna"},A={name:"Freminet",title:"Ansioso por Sonhos Profundos"},P={name:"Furina",title:"Dan\xE7arina Solit\xE1ria Eterna"},F={name:"Ganyu",title:"Defensora Devota"},M={name:"Gorou",title:"Guerreiro Canino"},z={name:"Jean",title:"Cavaleira de Dandelion"},L={name:"Kaeya",title:"Capit\xE3o de Cavalaria"},q={name:"Kaveh",title:"Refletor Emp\xEDreo"},x={name:"Keqing",title:"Trov\xE3o Condutor"},B={name:"Kirara",title:"Gatinha dos Beirais"},R={name:"Klee",title:"Sol Fugitivo"},D={name:"Layla",title:"Contempla\xE7\xF5es da Estrela Noturna"},j={name:"Lisa",title:"Bruxa das Rosas"},T={name:"Lynette",title:"Eleg\xE2ncia nas Sombras"},G={name:"Lyney",title:"Espet\xE1culo Fantasmag\xF3rico"},K={name:"Mika",title:"Top\xF3grafo da Geada Transl\xFAcida"},N={name:"Mona",title:"Reflex\xE3o Astral"},J={name:"Nahida",title:"Pureza Restauradora"},O={name:"Navia",title:"Leme da Rosa Radiante"},V={name:"Neuvillette",title:"Ordenador das Mar\xE9s"},H={name:"Nilou",title:"Dan\xE7a da Luz de L\xF3tus"},_={name:"Ningguang",title:"Estrela em Eclipse"},I={name:"Noelle",title:"Flor da Cavalaria"},Y={name:"Qiqi",title:"Ressurrei\xE7\xE3o G\xE9lida"},X={name:"Razor",title:"Menino Lobo"},Q={name:"Rosaria",title:"Benevol\xEAncia Espinhosa"},W={name:"Sayu",title:"Mujina Ninja"},Z={name:"Shenhe",title:"Transcend\xEAncia Solit\xE1ria"},U={name:"Sucrose",title:"Do\xE7ura Inofensiva"},$={name:"Tartaglia",title:"Childe"},aa={name:"Thoma",title:"Protetor de Longe"},ea={name:"Tighnari",title:"Andarilho Verdejante"},oa={name:"Venti",title:"Cantor dos Ventos Celestiais"},na={name:"Wanderer",title:"Caminhante Eterno"},ta={name:"Wriothesley",title:"Emiss\xE1rio da Culpa Inc\xF3gnita"},ia={name:"Xiangling",title:"Mestre de Culin\xE1ria de Liyue"},ra={name:"Xiao",title:"Guardi\xE3o Yaksha"},sa={name:"Xingqiu",title:"Galante Juvenil"},la={name:"Xinyan",title:"Melodia Incandescente"},da={name:"Yanfei",title:"Inoc\xEAncia S\xE1bia"},ua={name:"Yaoyao",title:"Burgeoning Grace"},ca={name:"Yelan",title:"Vale das Orqu\xEDdeas"},ma={name:"Yoimiya",title:"Dan\xE7a das Chamas"},ha={name:"Zhongli",title:"Andarilho do Reino Mortal"},ga={"a-thousand-floating-dreams":"Sonhos Flutuantes das Mil Noites",akuoumaru:a,"alley-hunter":"Ca\xE7ador do Beco","amos-bow":"Arco de Amos","aqua-simulacra":"Aqua Simulacra","aquila-favonia":"Falc\xE3o","beacon-of-the-reed-sea":"Sinal dos Mares","black-tassel":"Borla Preta","bloodtained-greatsword":"Espad\xE3o Sangrento","calamity-queller":"Subjugadora de Calamidades","cashflow-supervision":"Supervis\xE3o de Caixa","cool-steel":"L\xE2mina Fria","debate-club":"Pacifista","dragon_s-bane":"Perdi\xE7\xE3o do Drag\xE3o","elegy-for-the-end":"Elegia do Suspiro Final","emerald-orb":"Orbe Esmeralda","engulfing-lightning":"Luz do Cortador de Grama","everlasting-moonglow":"Fumetsu Gekka","eye-of-perception":"Olho da Percep\xE7\xE3o","favonius-codex":"Codex de Favonius","favonius-greatsword":"Espad\xE3o de Favonius","favonius-lance":"Lan\xE7a de Favonius","favonius-sword":"Espada de Favonius","favonius-warbow":"Arco de Favonius","ferrous-shadow":"Espad\xE3o de Ferro Branco","freedom-sworn":"Juramento pela Liberdade","haran-geppaku-futsu":"Maremoto da Lua de Futsu","harbinger-of-dawn":"Pren\xFAncio do Alvorecer","hunter_s-path":"Caminho do Ca\xE7ador","jadefall-splendor":"Esplendor \xCDndigo","kagura_s-verity":"Prova de Kagura","key-of-khaj-nisut":"Chave de Hierofania","light-of-foliar-incision":"Luz das Folhas Cortadas","lion_s-roar":"Rugido do Le\xE3o","lithic-blade":"Espada Antiga de Millelith","lithic-spear":"Lan\xE7a de Millelith","lost-prayer-to-the-sacred-winds":"Ora\xE7\xE3o Perdida aos Ventos Sagrados","magic-guide":"Guia de Magia","makhaira-aquamarine":"\xC1gua-Marinha de Mahara","memory-of-dust":"Mem\xF3ria da Poeira","mistsplitter-reforged":"Cortadora da Neblina Reforjada","mitternachts-waltz":"Valsa do Crep\xFAsculo","mouun_s-moon":"Lua de Mouun","polar-star":"Polar Star","portable-power-saw":"Serra El\xE9trica Port\xE1til","primordial-jade-cutter":"Cortador de Jade Primordial","primordial-jade-winged-spear":"Lan\xE7a de Jade Primitiva","prospector-drill":"Broca do Prospector",rainslasher:e,"range-gauge":"Medidor de Alcance","raven-bow":"Arco de Corvo","redhorn-stonethresher":"Chifres Vermelhos Destruidores de Pedras",rust:o,"sacrificial-bow":"Arco do Sacrif\xEDcio","sacrificial-fragments":"Mem\xF3rias de Sacrif\xEDcio","sacrificial-greatsword":"Espad\xE3o do Sacrif\xEDcio","sacrificial-sword":"Espada do Sacrif\xEDcio","sharpshooter_s-oath":"Juramento de Sagit\xE1rio","skyrider-sword":"Espad\xE3o do Cavaleiro do C\xE9u","skyward-atlas":"Atlas Celestial","skyward-blade":"Espada Celestial","skyward-harp":"Harpa Celestial","skyward-pride":"Orgulho Celestial","skyward-spine":"Espinha Celestial",slingshot:n,"song-of-broken-pines":"Can\xE7\xE3o dos Pinhos","splendor-of-tranquil-waters":"Esplendor das \xC1guas Silenciosas","staff-of-homa":"B\xE1culo de Homa","staff-of-the-scarlet-sands":"B\xE1culo das Areias Escarlates","summit-shaper":"Cortador de Montanhas","the-alley-flash":"Brilho do Beco","the-bell":"O Sino","the-dockhands-assistant":"A Doca","the-first-great-magic":"Arcana Original","the-flute":"The Flute","the-stringless":"\xDAltimo Acorde","the-unforged":"Espada \xC1spera","the-widsith":"Sinfonia dos Indolentes","thrilling-tales-of-dragon-slayers":"Hist\xF3rias Extraordin\xE1rias de Ca\xE7adores de Drag\xF5es","thundering-pulse":"Agita\xE7\xE3o Trovejante","tome-of-the-eternal-flow":"Rito do Fluxo Eterno","tulaytullah_s-remembrance":"Reminisc\xEAncias de Tulaytullah",verdict:t,"vortex-vanquisher":"Perfuradora Prism\xE1tica","wavebreaker_s-fin":"Barbatana do Quebra Ondas","wine-and-song":"Vinho e M\xFAsica","wandering-evenstar":"Estrela Itinerante","wolf_s-gravestone":"T\xFAmulo do Lobo","xiphos-moonlight":"Luz Lunar de Xiphos",albedo:i,alhaitham:r,amber:s,"arataki-itto":{name:"Arataki Itto",title:"Hero\xEDsmo de Hanamizaka"},baizhu:l,barbara:d,beidou:u,bennett:c,candace:m,charlotte:h,chevreuse:g,chongyun:y,collei:f,cyno:p,dehya:v,diluc:k,diona:C,dori:b,eula:S,faruzan:E,fischl:w,freminet:A,furina:P,ganyu:F,gorou:M,"hu-tao":{name:"Hu Tao",title:"Fragr\xE2ncia de Ameixa Descongelada"},jean:z,"kaedehara-kazuha":{name:"Kaedehara Kazuha",title:"Samurai Errante que se Separa da sua Terra"},kaeya:L,"kamisato-ayaka":{name:"Kamisato Ayaka",title:"Transcend\xEAncia Solit\xE1ria"},"kamisato-ayato":{name:"Kamisato Ayato",title:"Pilar da Fortaleza"},kaveh:q,keqing:x,kirara:B,klee:R,"kujou-sara":{name:"Kujou Sara",title:"Flecha de Penas de Corvo"},"kuki-shinobu":{name:"Kuki Shinobu",title:"Erradicadora das Preocupa\xE7\xF5es"},layla:D,lisa:j,lynette:T,lyney:G,mika:K,mona:N,nahida:J,navia:O,neuvillette:V,nilou:H,ningguang:_,noelle:I,qiqi:Y,"raiden-shogun":{name:"Raiden Shogun",title:"Plano da Eutimia"},razor:X,rosaria:Q,"sangonomiya-kokomi":{name:"Sangonomiya Kokomi",title:"P\xE9rolas de Sabedoria"},sayu:W,shenhe:Z,"shikanoin-heizou":{name:"Shikanoin Heizou",title:"Mente Condizente"},sucrose:U,tartaglia:$,thoma:aa,tighnari:ea,venti:oa,wanderer:na,wriothesley:ta,xiangling:ia,xiao:ra,xingqiu:sa,xinyan:la,"yae-miko":{name:"Yae Miko",title:"Divers\xE3o Astuta"},yanfei:da,yaoyao:ua,yelan:ca,yoimiya:ma,"yun-jin":{name:"Yun Jin",title:"Palco L\xFAcida"},zhongli:ha};export{a as akuoumaru,i as albedo,r as alhaitham,s as amber,l as baizhu,d as barbara,u as beidou,c as bennett,m as candace,h as charlotte,g as chevreuse,y as chongyun,f as collei,p as cyno,ga as default,v as dehya,k as diluc,C as diona,b as dori,S as eula,E as faruzan,w as fischl,A as freminet,P as furina,F as ganyu,M as gorou,z as jean,L as kaeya,q as kaveh,x as keqing,B as kirara,R as klee,D as layla,j as lisa,T as lynette,G as lyney,K as mika,N as mona,J as nahida,O as navia,V as neuvillette,H as nilou,_ as ningguang,I as noelle,Y as qiqi,e as rainslasher,X as razor,Q as rosaria,o as rust,W as sayu,Z as shenhe,n as slingshot,U as sucrose,$ as tartaglia,aa as thoma,ea as tighnari,oa as venti,t as verdict,na as wanderer,ta as wriothesley,ia as xiangling,ra as xiao,sa as xingqiu,la as xinyan,da as yanfei,ua as yaoyao,ca as yelan,ma as yoimiya,ha as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ru-RU-cce9fb85.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ru-RU-cce9fb85.js
deleted file mode 100644
index 6a3cba6c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ru-RU-cce9fb85.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u0410\u043A\u0443\u043E\u043C\u0430\u0440\u0443",t="\u0414\u043E\u0436\u0434\u0435\u0440\u0435\u0437",a="\u0420\u0436\u0430\u0432\u044B\u0439 \u043B\u0443\u043A",n="\u0420\u043E\u0433\u0430\u0442\u043A\u0430",i="\u0412\u0435\u0440\u0434\u0438\u043A\u0442",o={name:"\u0410\u043B\u044C\u0431\u0435\u0434\u043E",title:"\u041F\u0440\u0438\u043D\u0446 \u043C\u0435\u043B\u0430"},s={name:"\u0410\u043B\u044C-\u0425\u0430\u0439\u0442\u0430\u043C",title:"\u0413\u043E\u043B\u043E\u0441 \u0440\u0430\u0437\u0443\u043C\u0430"},l={name:"\u042D\u043C\u0431\u0435\u0440",title:"\u0427\u0435\u043C\u043F\u0438\u043E\u043D \u043F\u043E\u043B\u0451\u0442\u043E\u0432"},r={name:"\u0411\u0430\u0439 \u0427\u0436\u0443",title:"\u041F\u0440\u0435\u043E\u0434\u043E\u043B\u0435\u043D\u0438\u0435 \u0431\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438"},c={name:"\u0411\u0430\u0440\u0431\u0430\u0440\u0430",title:"\u0421\u0438\u044F\u044E\u0449\u0430\u044F \u0437\u0432\u0451\u0437\u0434\u043E\u0447\u043A\u0430"},m={name:"\u0411\u044D\u0439 \u0414\u043E\u0443",title:"\u0412\u043B\u0430\u0434\u044B\u0447\u0438\u0446\u0430 \u043C\u043E\u0440\u0435\u0439"},u={name:"\u0411\u0435\u043D\u043D\u0435\u0442",title:"\u0418\u0441\u043F\u044B\u0442\u0430\u043D\u0438\u0435 \u043E\u0433\u043D\u0451\u043C"},h={name:"\u041A\u0430\u043D\u0434\u0430\u043A\u0438\u044F",title:"\u041F\u043E\u0437\u043E\u043B\u043E\u0447\u0435\u043D\u043D\u0430\u044F \u043A\u043B\u044F\u0442\u0432\u0430"},d={name:"\u0428\u0430\u0440\u043B\u043E\u0442\u0442\u0430",title:"\u041E\u0431\u044A\u0435\u043A\u0442\u0438\u0432\u043D\u0430\u044F \u0440\u0435\u0430\u043B\u044C\u043D\u043E\u0441\u0442\u044C"},g={name:"Chevreuse",title:"Executor of Justice"},y={name:"\u0427\u0443\u043D \u042E\u043D\u044C",title:"\u041C\u043E\u0440\u043E\u0437\u043D\u0430\u044F \u043F\u044B\u043B\u043A\u043E\u0441\u0442\u044C"},f={name:"\u041A\u043E\u043B\u043B\u0435\u0438",title:"\u0420\u043E\u0441\u0442\u043E\u043A \u0432\u043E\u0437\u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F"},k={name:"\u0421\u0430\u0439\u043D\u043E",title:"\u0412\u0435\u0440\u0448\u0438\u0442\u0435\u043B\u044C \u0442\u0430\u0438\u043D\u0441\u0442\u0432"},w={name:"\u0414\u044D\u0445\u044C\u044F",title:"\u041F\u043B\u0430\u043C\u0435\u043D\u043D\u0430\u044F \u0413\u0440\u0438\u0432\u0430"},b={name:"\u0414\u0438\u043B\u044E\u043A",title:"\u0422\u0451\u043C\u043D\u044B\u0439 \u0440\u0430\u0441\u0441\u0432\u0435\u0442"},v={name:"\u0414\u0438\u043E\u043D\u0430",title:"\u041A\u043E\u0448\u043A\u0438\u043D \u043A\u043E\u043A\u0442\u0435\u0439\u043B\u044C"},p={name:"\u0414\u043E\u0440\u0438",title:"\u0421\u043E\u043A\u0440\u043E\u0432\u0438\u0449\u0435 \u0441\u0430\u0434\u0430 \u0441\u043D\u043E\u0432"},q={name:"\u042D\u043E\u043B\u0430",title:"\u0422\u0430\u043D\u0435\u0446 \u043C\u043E\u0440\u0441\u043A\u043E\u0439 \u043F\u0435\u043D\u044B"},x={name:"\u0424\u0430\u0440\u0443\u0437\u0430\u043D",title:"\u0417\u0430\u0433\u0430\u0434\u043E\u0447\u043D\u044B\u0439 \u043C\u0435\u0445\u0430\u043D\u0438\u043A"},z={name:"\u0424\u0438\u0448\u043B\u044C",title:"\u041F\u0440\u0438\u043D\u0446\u0435\u0441\u0441\u0430 \u043E\u0441\u0443\u0436\u0434\u0435\u043D\u0438\u044F"},_={name:"\u0424\u0440\u0435\u043C\u0438\u043D\u0435",title:"\u0422\u043E\u0441\u043A\u0430 \u043F\u043E \u043D\u0435\u0432\u0438\u0434\u0430\u043D\u043D\u044B\u043C \u0433\u043B\u0443\u0431\u0438\u043D\u0430\u043C"},j={name:"\u0424\u0443\u0440\u0438\u043D\u0430",title:"\u0411\u0435\u0441\u043A\u043E\u043D\u0435\u0447\u043D\u044B\u0439 \u0442\u0430\u043D\u0435\u0446 \u043E\u0434\u0438\u043D\u043E\u0447\u0435\u0441\u0442\u0432\u0430"},C={name:"\u0413\u0430\u043D\u044C \u042E\u0439",title:"\u0412\u0437\u0433\u043B\u044F\u0434 \u043F\u043E\u043B\u043D\u043E\u043B\u0443\u043D\u0438\u044F"},E={name:"\u0413\u043E\u0440\u043E",title:"\u041F\u0451\u0441 \u0432\u043E\u0439\u043D\u044B"},J={name:"\u0414\u0436\u0438\u043D\u043D",title:"\u0420\u044B\u0446\u0430\u0440\u044C \u041E\u0434\u0443\u0432\u0430\u043D\u0447\u0438\u043A"},N={name:"\u041A\u044D\u0439\u0430",title:"\u0417\u0438\u043C\u043D\u0438\u0439 \u043A\u043B\u0438\u043D\u043E\u043A"},R={name:"\u041A\u0430\u0432\u0435\u0445",title:"\u041E\u0442\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u044D\u043C\u043F\u0438\u0440\u0435\u044F"},U={name:"\u041A\u044D \u0426\u0438\u043D",title:"\u0420\u0430\u0441\u043A\u0430\u0442\u044B \u0433\u0440\u043E\u043C\u0430"},A={name:"\u041A\u0438\u0440\u0430\u0440\u0430",title:"\u041A\u043E\u0448\u043A\u0430 \u043D\u0430 \u0433\u0440\u0435\u0431\u043D\u0435 \u043A\u0440\u044B\u0448\u0438"},B={name:"\u041A\u043B\u0438",title:"\u0423\u0441\u043A\u043E\u043B\u044C\u0437\u0430\u044E\u0449\u0435\u0435 \u0441\u043E\u043B\u043D\u0446\u0435"},D={name:"\u041B\u0430\u0439\u043B\u0430",title:"\u0414\u0438\u0432\u043D\u0430\u044F \u0432\u0435\u0447\u0435\u0440\u043D\u044F\u044F \u0437\u0432\u0435\u0437\u0434\u0430"},F={name:"\u041B\u0438\u0437\u0430",title:"\u041F\u0443\u0440\u043F\u0443\u0440\u043D\u0430\u044F \u0432\u0435\u0434\u044C\u043C\u0430"},G={name:"\u041B\u0438\u043D\u0435\u0442\u0442",title:"\u0418\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u043E \u0441\u0440\u0435\u0434\u0438 \u0442\u0435\u043D\u0435\u0439"},H={name:"\u041B\u0438\u043D\u0438",title:"\u0417\u0440\u0435\u043B\u0438\u0449\u043D\u044B\u0435 \u0444\u0430\u043D\u0442\u0430\u0441\u043C\u0430\u0433\u043E\u0440\u0438\u0438"},I={name:"\u041C\u0438\u043A\u0430",title:"\u041A\u0430\u0440\u0442\u043E\u0433\u0440\u0430\u0444 \u0447\u0438\u0441\u0442\u043E\u0433\u043E \u0438\u043D\u0435\u044F"},K={name:"\u041C\u043E\u043D\u0430",title:"\u0417\u0432\u0451\u0437\u0434\u043D\u043E\u0435 \u043E\u0442\u0440\u0430\u0436\u0435\u043D\u0438\u0435"},L={name:"\u041D\u0430\u0445\u0438\u0434\u0430",title:"\u0421\u0440\u0435\u0434\u043E\u0442\u043E\u0447\u0438\u0435 \u0447\u0438\u0441\u0442\u043E\u0442\u044B"},M={name:"\u041D\u0430\u0432\u0438\u044F",title:"\u0428\u0442\u0443\u0440\u0432\u0430\u043B \u0446\u0432\u0435\u0442\u0443\u0449\u0435\u0439 \u0440\u043E\u0437\u044B"},O={name:"Neuvillette",title:"\u0420\u0430\u0441\u043F\u043E\u0440\u044F\u0434\u0438\u0442\u0435\u043B\u044C \u043D\u0435\u0443\u043C\u043E\u043B\u0438\u043C\u043E\u0433\u043E \u0441\u0443\u0434\u0430"},P={name:"\u041D\u0438\u043B\u0443",title:"\u0422\u0430\u043D\u0435\u0446 \u043B\u043E\u0442\u043E\u0441\u0430"},Q={name:"\u041D\u0438\u043D \u0413\u0443\u0430\u043D",title:"\u041B\u0443\u043D\u043D\u043E\u0435 \u0437\u0430\u0442\u043C\u0435\u043D\u0438\u0435"},S={name:"\u041D\u043E\u044D\u043B\u043B\u044C",title:"\u041D\u0435\u0440\u0430\u0441\u043F\u0443\u0441\u0442\u0438\u0432\u0448\u0438\u0439\u0441\u044F \u0446\u0432\u0435\u0442\u043E\u043A"},T={name:"\u0426\u0438 \u0426\u0438",title:"\u041B\u0435\u0434\u044F\u043D\u043E\u0435 \u0432\u043E\u0441\u043A\u0440\u0435\u0448\u0435\u043D\u0438\u0435"},V={name:"\u0420\u044D\u0439\u0437\u043E\u0440",title:"\u0418\u043D\u0441\u0442\u0438\u043D\u043A\u0442 \u0441\u0442\u0430\u0438"},W={name:"\u0420\u043E\u0437\u0430\u0440\u0438\u044F",title:"\u0412\u0435\u043D\u0435\u0446 \u043C\u0438\u043B\u043E\u0441\u0442\u0438"},X={name:"\u0421\u0430\u044E",title:"\u041C\u0443\u0434\u0437\u0438\u043D\u0430-\u043D\u0438\u043D\u0434\u0437\u044F"},Y={name:"\u0428\u044D\u043D\u044C \u0425\u044D",title:"\u041E\u0434\u0438\u043D\u043E\u0447\u0435\u0441\u0442\u0432\u043E \u043F\u0440\u0435\u0432\u043E\u0441\u0445\u043E\u0434\u0441\u0442\u0432\u0430"},Z={name:"\u0421\u0430\u0445\u0430\u0440\u043E\u0437\u0430",title:"\u0411\u0435\u0437\u043E\u0431\u0438\u0434\u043D\u0430\u044F \u043A\u0430\u0440\u0430\u043C\u0435\u043B\u044C\u043A\u0430"},$={name:"\u0422\u0430\u0440\u0442\u0430\u043B\u044C\u044F",title:"\u0427\u0430\u0439\u043B\u044C\u0434"},ee={name:"\u0422\u043E\u043C\u0430",title:"\u0417\u0430\u0449\u0438\u0442\u043D\u0438\u043A \u0438\u0437\u0434\u0430\u043B\u0435\u043A\u0430"},te={name:"\u0422\u0438\u0433\u043D\u0430\u0440\u0438",title:"\u0417\u0435\u043B\u0451\u043D\u044B\u0439 \u0441\u0442\u0440\u0430\u043D\u043D\u0438\u043A"},ae={name:"\u0412\u0435\u043D\u0442\u0438",title:"\u041F\u043E\u044D\u0442 \u0432\u0435\u0442\u0440\u043E\u0432"},ne={name:"\u0421\u0442\u0440\u0430\u043D\u043D\u0438\u043A",title:"\u0417\u0430\u0442\u0435\u0440\u044F\u0432\u0448\u0438\u0439\u0441\u044F \u0432 \u0432\u0435\u0447\u043D\u043E\u0441\u0442\u0438"},ie={name:"\u0420\u0438\u0437\u043B\u0438",title:"\u042D\u043C\u0438\u0441\u0441\u0430\u0440 \u0437\u0430\u0442\u043E\u0447\u0451\u043D\u043D\u044B\u0445 \u0437\u043B\u043E\u0434\u0435\u044F\u043D\u0438\u0439"},oe={name:"\u0421\u044F\u043D \u041B\u0438\u043D",title:"\u041C\u0438\u043B\u043B\u0438\u043E\u043D \u0432\u043A\u0443\u0441\u043E\u0432"},se={name:"\u0421\u044F\u043E",title:"\u0417\u0430\u0449\u0438\u0442\u043D\u0438\u043A \u042F\u043A\u0441\u0430"},le={name:"\u0421\u0438\u043D \u0426\u044E",title:"\u0413\u0430\u043B\u0430\u043D\u0442\u043D\u044B\u0439 \u044E\u043D\u043E\u0448\u0430"},re={name:"\u0421\u0438\u043D\u044C \u042F\u043D\u044C",title:"\u041F\u043B\u0430\u043C\u0435\u043D\u043D\u0430\u044F \u043C\u0435\u043B\u043E\u0434\u0438\u044F"},ce={name:"\u042F\u043D\u044C \u0424\u044D\u0439",title:"\u041D\u0435\u043F\u043E\u0440\u043E\u0447\u043D\u0430\u044F \u043C\u0443\u0434\u0440\u043E\u0441\u0442\u044C"},me={name:"\u042F\u043E \u042F\u043E",title:"\u0411\u0443\u0442\u043E\u043D \u0438\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u0430"},ue={name:"\u0415 \u041B\u0430\u043D\u044C",title:"\u041E\u0440\u0445\u0438\u0434\u0435\u044F \u0434\u043E\u043B\u0438\u043D\u044B"},he={name:"\u0401\u0438\u043C\u0438\u044F",title:"\u041F\u043B\u044F\u0448\u0443\u0449\u0438\u0435 \u043E\u0433\u043E\u043D\u044C\u043A\u0438"},de={name:"\u0427\u0436\u0443\u043D \u041B\u0438",title:"\u0411\u0440\u0435\u043D\u043D\u044B\u0439 \u0441\u043A\u0438\u0442\u0430\u043B\u0435\u0446"},ge={"a-thousand-floating-dreams":"\u0421\u043D\u043E\u0432\u0438\u0434\u0435\u043D\u0438\u044F \u0442\u044B\u0441\u044F\u0447\u0438 \u043D\u043E\u0447\u0435\u0439",akuoumaru:e,"alley-hunter":"\u041E\u0445\u043E\u0442\u043D\u0438\u043A \u0432\u043E \u0442\u044C\u043C\u0435","amos-bow":"\u041B\u0443\u043A \u0410\u043C\u043E\u0441\u0430","aqua-simulacra":"\u0410\u043A\u0432\u0430 \u0441\u0438\u043C\u0443\u043B\u044F\u043A\u0440\u0443\u043C","aquila-favonia":"\u041C\u0435\u0447 \u0421\u043E\u043A\u043E\u043B\u0430","beacon-of-the-reed-sea":"\u041C\u0430\u044F\u043A \u0442\u0440\u043E\u0441\u0442\u043D\u0438\u043A\u043E\u0432\u043E\u0433\u043E \u043C\u043E\u0440\u044F","black-tassel":"\u0427\u0451\u0440\u043D\u0430\u044F \u043A\u0438\u0441\u0442\u044C","bloodtained-greatsword":"\u041C\u0435\u0447 \u0434\u0440\u0430\u043A\u043E\u043D\u044C\u0435\u0439 \u043A\u0440\u043E\u0432\u0438","calamity-queller":"\u0423\u0441\u043C\u0438\u0440\u0438\u0442\u0435\u043B\u044C \u0431\u0435\u0434","cashflow-supervision":"\u041A\u0430\u0437\u043D\u0430\u0447\u0435\u0439\u0441\u043A\u0438\u0439 \u043D\u0430\u0434\u0437\u043E\u0440","cool-steel":"\u0425\u043E\u043B\u043E\u0434\u043D\u043E\u0435 \u043B\u0435\u0437\u0432\u0438\u0435","debate-club":"\u0414\u0443\u0431\u0438\u043D\u0430 \u043F\u0435\u0440\u0435\u0433\u043E\u0432\u043E\u0440\u043E\u0432","dragon_s-bane":"\u0413\u0440\u043E\u0437\u0430 \u0434\u0440\u0430\u043A\u043E\u043D\u043E\u0432","elegy-for-the-end":"\u042D\u043B\u0435\u0433\u0438\u044F \u043F\u043E\u0433\u0438\u0431\u0435\u043B\u0438","emerald-orb":"\u0418\u0437\u0443\u043C\u0440\u0443\u0434\u043D\u044B\u0439 \u0448\u0430\u0440","engulfing-lightning":"\u0421\u0438\u044F\u044E\u0449\u0430\u044F \u0436\u0430\u0442\u0432\u0430","everlasting-moonglow":"\u0412\u0435\u0447\u043D\u043E\u0435 \u043B\u0443\u043D\u043D\u043E\u0435 \u0441\u0438\u044F\u043D\u0438\u0435","eye-of-perception":"\u041E\u043A\u043E \u0441\u043E\u0437\u043D\u0430\u043D\u0438\u044F","favonius-codex":"\u041A\u043E\u0434\u0435\u043A\u0441 \u0424\u0430\u0432\u043E\u043D\u0438\u044F","favonius-greatsword":"\u0414\u0432\u0443\u0440\u0443\u0447\u043D\u044B\u0439 \u043C\u0435\u0447 \u0424\u0430\u0432\u043E\u043D\u0438\u044F","favonius-lance":"\u041A\u043E\u043F\u044C\u0451 \u0424\u0430\u0432\u043E\u043D\u0438\u044F","favonius-sword":"\u041C\u0435\u0447 \u0424\u0430\u0432\u043E\u043D\u0438\u044F","favonius-warbow":"\u0411\u043E\u0435\u0432\u043E\u0439 \u043B\u0443\u043A \u0424\u0430\u0432\u043E\u043D\u0438\u044F","ferrous-shadow":"\u041C\u0435\u0442\u0430\u043B\u043B\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0442\u0435\u043D\u044C","freedom-sworn":"\u041A\u043B\u044F\u0442\u0432\u0430 \u0441\u0432\u043E\u0431\u043E\u0434\u044B","haran-geppaku-futsu":"\u0425\u0430\u0440\u0430\u043D \u0433\u044D\u043F\u043F\u0430\u043A\u0443 \u0444\u0443\u0446\u0443","harbinger-of-dawn":"\u041F\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043D\u0438\u043A \u0437\u0430\u0440\u0438","hunter_s-path":"\u041E\u0445\u043E\u0442\u043D\u0438\u0447\u044C\u044F \u0442\u0440\u043E\u043F\u0430","jadefall-splendor":"\u0412\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u0438\u0435 \u043B\u0430\u0437\u0443\u0440\u043D\u043E\u0433\u043E \u0441\u0432\u043E\u0434\u0430","kagura_s-verity":"\u0418\u0441\u0442\u0438\u043D\u0430 \u043A\u0430\u0433\u0443\u0440\u0430","key-of-khaj-nisut":"\u041A\u043B\u044E\u0447 \u0425\u0430\u0434\u0436-\u043D\u0438\u0441\u0443\u0442","lion_s-roar":"\u0414\u0440\u0430\u043A\u043E\u043D\u0438\u0439 \u0440\u044B\u043A","light-of-foliar-incision":"\u0421\u0432\u0435\u0442 \u043B\u0438\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0433\u043E \u0440\u0430\u0437\u0440\u0435\u0437\u0430","lithic-blade":"\u041A\u0430\u043C\u0435\u043D\u043D\u044B\u0439 \u043C\u0435\u0447","lithic-spear":"\u041A\u0430\u043C\u0435\u043D\u043D\u043E\u0435 \u043A\u043E\u043F\u044C\u0451","lost-prayer-to-the-sacred-winds":"\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u0432\u044F\u0442\u044B\u043C \u0432\u0435\u0442\u0440\u0430\u043C","magic-guide":"\u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0441\u0442\u0432\u043E \u043F\u043E \u043C\u0430\u0433\u0438\u0438","makhaira-aquamarine":"\u0410\u043A\u0432\u0430\u043C\u0430\u0440\u0438\u043D \u043C\u0430\u0445\u0430\u0439\u0440\u044B","memory-of-dust":"\u041F\u0430\u043C\u044F\u0442\u044C \u043E \u043F\u044B\u043B\u0438","mistsplitter-reforged":"\u0420\u0430\u0441\u0441\u0435\u043A\u0430\u044E\u0449\u0438\u0439 \u0442\u0443\u043C\u0430\u043D","mitternachts-waltz":"\u0412\u0430\u043B\u044C\u0441 \u041D\u0438\u0440\u0432\u0430\u043D\u044B \u041D\u043E\u0447\u0438","mouun_s-moon":"\u041B\u0443\u043D\u0430 \u041C\u043E\u0443\u043D","polar-star":"\u041F\u043E\u043B\u044F\u0440\u043D\u0430\u044F \u0437\u0432\u0435\u0437\u0434\u0430","portable-power-saw":"\u041F\u0435\u0440\u0435\u043D\u043E\u0441\u043D\u0430\u044F \u043C\u043E\u0442\u043E\u043F\u0438\u043B\u0430","primordial-jade-cutter":"\u0414\u0440\u0430\u0433\u043E\u0446\u0435\u043D\u043D\u044B\u0439 \u043E\u043C\u0443\u0442","primordial-jade-winged-spear":"\u041D\u0435\u0444\u0440\u0438\u0442\u043E\u0432\u044B\u0439 \u043A\u043E\u0440\u0448\u0443\u043D","prospector-drill":"\u0411\u0443\u0440 \u0440\u0443\u0434\u043E\u0438\u0441\u043A\u0430\u0442\u0435\u043B\u044F",rainslasher:t,"range-gauge":"\u0414\u0430\u043B\u044C\u043D\u043E\u043C\u0435\u0440","raven-bow":"\u041B\u0443\u043A \u0432\u043E\u0440\u043E\u043D\u0430","redhorn-stonethresher":"\u041A\u0440\u0430\u0441\u043D\u043E\u0440\u043E\u0433\u0438\u0439 \u043A\u0430\u043C\u043D\u0435\u0440\u0443\u0431",rust:a,"sacrificial-bow":"\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0439 \u043B\u0443\u043A","sacrificial-fragments":"\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u043C\u0435\u043C\u0443\u0430\u0440\u044B","sacrificial-greatsword":"\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0439 \u0434\u0432\u0443\u0440\u0443\u0447\u043D\u044B\u0439 \u043C\u0435\u0447","sacrificial-sword":"\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0439 \u043C\u0435\u0447","sharpshooter_s-oath":"\u041A\u043B\u044F\u0442\u0432\u0430 \u0441\u0442\u0440\u0435\u043B\u043A\u0430","skyrider-sword":"\u041C\u0435\u0447 \u043D\u0435\u0431\u0435\u0441\u043D\u043E\u0433\u043E \u0432\u0441\u0430\u0434\u043D\u0438\u043A\u0430","skyward-atlas":"\u041D\u0435\u0431\u0435\u0441\u043D\u044B\u0439 \u0430\u0442\u043B\u0430\u0441","skyward-blade":"\u041D\u0435\u0431\u0435\u0441\u043D\u044B\u0439 \u043C\u0435\u0447","skyward-harp":"\u041D\u0435\u0431\u0435\u0441\u043D\u043E\u0435 \u043A\u0440\u044B\u043B\u043E","skyward-pride":"\u041D\u0435\u0431\u0435\u0441\u043D\u043E\u0435 \u0432\u0435\u043B\u0438\u0447\u0438\u0435","skyward-spine":"\u041D\u0435\u0431\u0435\u0441\u043D\u0430\u044F \u043E\u0441\u044C",slingshot:n,"song-of-broken-pines":"\u041F\u0435\u0441\u043D\u044C \u0440\u0430\u0437\u0431\u0438\u0442\u044B\u0445 \u0441\u043E\u0441\u0435\u043D","splendor-of-tranquil-waters":"\u0411\u043B\u0435\u0441\u043A \u0442\u0438\u0445\u0438\u0445 \u0432\u043E\u0434","staff-of-homa":"\u041F\u043E\u0441\u043E\u0445 \u0425\u043E\u043C\u044B","staff-of-the-scarlet-sands":"\u041F\u043E\u0441\u043E\u0445 \u0430\u043B\u044B\u0445 \u043F\u0435\u0441\u043A\u043E\u0432","summit-shaper":"\u041A\u0440\u043E\u043C\u0441\u0430\u0442\u0435\u043B\u044C \u043F\u0438\u043A\u043E\u0432","the-alley-flash":"\u0412\u0441\u043F\u044B\u0448\u043A\u0430 \u0432\u043E \u0442\u044C\u043C\u0435","the-bell":"\u041C\u0435\u0447-\u043A\u043E\u043B\u043E\u043A\u043E\u043B","the-dockhands-assistant":"\u0412\u0435\u0440\u0444\u044C","the-first-great-magic":"\u041F\u0435\u0440\u0432\u044B\u0439 \u0432\u0435\u043B\u0438\u043A\u0438\u0439 \u0444\u043E\u043A\u0443\u0441","the-flute":"\u041C\u0435\u0447-\u0444\u043B\u0435\u0439\u0442\u0430","the-stringless":"\u0411\u0435\u0441\u0441\u0442\u0440\u0443\u043D\u043D\u044B\u0439","the-unforged":"\u041D\u0435\u043A\u043E\u0432\u0430\u043D\u044B\u0439","the-widsith":"\u041F\u0435\u0441\u043D\u044C \u0441\u0442\u0440\u0430\u043D\u043D\u0438\u043A\u0430","thrilling-tales-of-dragon-slayers":"\u042D\u043F\u043E\u0441 \u043E \u0434\u0440\u0430\u043A\u043E\u043D\u043E\u0431\u043E\u0440\u0446\u0430\u0445","thundering-pulse":"\u0413\u0440\u043E\u043C\u043E\u0432\u043E\u0439 \u043F\u0443\u043B\u044C\u0441","tome-of-the-eternal-flow":"\u041E\u0431\u0440\u044F\u0434 \u0432\u0435\u0447\u043D\u043E\u0433\u043E \u0442\u0435\u0447\u0435\u043D\u0438\u044F","tulaytullah_s-remembrance":"\u0412\u043E\u0441\u043F\u043E\u043C\u0438\u043D\u0430\u043D\u0438\u044F \u0422\u0443\u043B\u0430\u0439\u0442\u0443\u043B\u043B\u044B",verdict:i,"vortex-vanquisher":"\u041F\u043E\u043A\u043E\u0440\u0438\u0442\u0435\u043B\u044C \u0432\u0438\u0445\u0440\u044F","wavebreaker_s-fin":"\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0432\u043E\u043B\u043D\u044B \u043F\u043B\u0430\u0432\u043D\u0438\u043A","wine-and-song":"\u0412\u0438\u043D\u043E \u0438 \u043F\u0435\u0441\u043D\u0438","wandering-evenstar":"\u0421\u043A\u0438\u0442\u0430\u044E\u0449\u0430\u044F\u0441\u044F \u0437\u0432\u0435\u0437\u0434\u0430","wolf_s-gravestone":"\u0412\u043E\u043B\u0447\u044C\u044F \u043F\u043E\u0433\u0438\u0431\u0435\u043B\u044C","xiphos-moonlight":"\u041B\u0443\u043D\u043D\u043E\u0435 \u0441\u0438\u044F\u043D\u0438\u0435 \u043A\u0441\u0438\u0444\u043E\u0441\u0430",albedo:o,alhaitham:s,amber:l,"arataki-itto":{name:"\u0418\u0442\u0442\u043E",title:"\u0413\u0435\u0440\u043E\u0439 \u0425\u0430\u043D\u0430\u043C\u0438\u0434\u0437\u0430\u043A\u0438"},baizhu:r,barbara:c,beidou:m,bennett:u,candace:h,charlotte:d,chevreuse:g,chongyun:y,collei:f,cyno:k,dehya:w,diluc:b,diona:v,dori:p,eula:q,faruzan:x,fischl:z,freminet:_,furina:j,ganyu:C,gorou:E,"hu-tao":{name:"\u0425\u0443 \u0422\u0430\u043E",title:"\u0412\u0435\u0441\u0435\u043D\u043D\u0438\u0439 \u0430\u0440\u043E\u043C\u0430\u0442"},jean:J,"kaedehara-kazuha":{name:"\u041A\u0430\u0434\u0437\u0443\u0445\u0430",title:"\u0411\u0430\u0433\u0440\u044F\u043D\u044B\u0435 \u043B\u0438\u0441\u0442\u044C\u044F \u0438 \u043D\u0435\u0438\u0441\u0442\u043E\u0432\u044B\u0435 \u0432\u043E\u043B\u043D\u044B"},kaeya:N,"kamisato-ayaka":{name:"\u0410\u044F\u043A\u0430",title:"\u0418\u043D\u0435\u0435\u0432\u0430\u044F \u0446\u0430\u043F\u043B\u044F"},"kamisato-ayato":{name:"\u0410\u044F\u0442\u043E",title:"\u041E\u043F\u043B\u043E\u0442 \u0441\u0442\u043E\u0439\u043A\u043E\u0441\u0442\u0438"},kaveh:R,keqing:U,kirara:A,klee:B,"kujou-sara":{name:"\u0421\u0430\u0440\u0430",title:"\u041A\u0430\u0431\u0443\u0440\u0430\u044F \u0432\u043E\u0440\u043E\u043D\u044C\u0435\u0433\u043E \u043F\u0435\u0440\u0430"},"kuki-shinobu":{name:"\u0421\u0438\u043D\u043E\u0431\u0443",title:"\u0418\u0437\u0431\u0430\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u0438\u0446\u0430"},layla:D,lisa:F,lynette:G,lyney:H,mika:I,mona:K,nahida:L,navia:M,neuvillette:O,nilou:P,ningguang:Q,noelle:S,qiqi:T,"raiden-shogun":{name:"\u0420\u0430\u0439\u0434\u044D\u043D",title:"\u0426\u0430\u0440\u0441\u0442\u0432\u043E \u044D\u0432\u0442\u044E\u043C\u0438\u0438"},razor:V,rosaria:W,"sangonomiya-kokomi":{name:"\u041A\u043E\u043A\u043E\u043C\u0438",title:"\u0416\u0435\u043C\u0447\u0443\u0436\u0438\u043D\u0430 \u043C\u0443\u0434\u0440\u043E\u0441\u0442\u0438"},sayu:X,shenhe:Y,"shikanoin-heizou":{name:"\u0425\u044D\u0439\u0434\u0437\u043E",title:"\u041D\u0435\u0432\u043E\u0437\u043C\u0443\u0442\u0438\u043C\u043E\u0435 \u0441\u043F\u043E\u043A\u043E\u0439\u0441\u0442\u0432\u0438\u0435"},sucrose:Z,tartaglia:$,thoma:ee,tighnari:te,venti:ae,wanderer:ne,wriothesley:ie,xiangling:oe,xiao:se,xingqiu:le,xinyan:re,"yae-miko":{name:"\u042F\u044D \u041C\u0438\u043A\u043E",title:"\u041E\u0437\u043E\u0440\u043D\u043E\u0435 \u043B\u0443\u043A\u0430\u0432\u0441\u0442\u0432\u043E"},yanfei:ce,yaoyao:me,yelan:ue,yoimiya:he,"yun-jin":{name:"\u042E\u043D\u044C \u0426\u0437\u0438\u043D\u044C",title:"\u0418\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u043E \u043D\u0430 \u0441\u0446\u0435\u043D\u0435"},zhongli:de};export{e as akuoumaru,o as albedo,s as alhaitham,l as amber,r as baizhu,c as barbara,m as beidou,u as bennett,h as candace,d as charlotte,g as chevreuse,y as chongyun,f as collei,k as cyno,ge as default,w as dehya,b as diluc,v as diona,p as dori,q as eula,x as faruzan,z as fischl,_ as freminet,j as furina,C as ganyu,E as gorou,J as jean,N as kaeya,R as kaveh,U as keqing,A as kirara,B as klee,D as layla,F as lisa,G as lynette,H as lyney,I as mika,K as mona,L as nahida,M as navia,O as neuvillette,P as nilou,Q as ningguang,S as noelle,T as qiqi,t as rainslasher,V as razor,W as rosaria,a as rust,X as sayu,Y as shenhe,n as slingshot,Z as sucrose,$ as tartaglia,ee as thoma,te as tighnari,ae as venti,i as verdict,ne as wanderer,ie as wriothesley,oe as xiangling,se as xiao,le as xingqiu,re as xinyan,ce as yanfei,me as yaoyao,ue as yelan,he as yoimiya,de as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ru-RU-dec1a909.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ru-RU-dec1a909.js
deleted file mode 100644
index d3d2e419..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/ru-RU-dec1a909.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u0421\u0438\u043C\u0443\u043B\u044F\u0442\u043E\u0440 \u043C\u043E\u043B\u0438\u0442\u0432 Genshin Impact",n="\u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439",a="\u041E\u0440\u0443\u0436\u0438\u0435",t="\u042D\u043B\u0435\u043C\u0435\u043D\u0442",r="\u0410\u043D\u0435\u043C\u043E",o="\u041A\u0440\u0438\u043E",s="\u0414\u0435\u043D\u0434\u0440\u043E",i="\u042D\u043B\u0435\u043A\u0442\u0440\u043E",l="\u041F\u0438\u0440\u043E",p="\u0413\u0435\u043E",c="\u041F\u0438\u0440\u043E",d="\u0421\u0442\u0440\u0435\u043B\u043A\u043E\u0432\u043E\u0435",u="\u041A\u0430\u0442\u0430\u043B\u0438\u0437\u0430\u0442\u043E\u0440",m="\u0414\u0432\u0443\u0440\u0443\u0447\u043D\u043E\u0435",h="\u041E\u0434\u043D\u043E\u0440\u0443\u0447\u043D\u043E\u0435",y="\u0414\u0440\u0435\u0432\u043A\u043E\u0432\u043E\u0435",g="\u0411\u043E\u043D\u0443\u0441",b="\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043E:",f="\u041E\u0436\u0438\u0434\u0430\u0439\u0442\u0435",w="\u041E\u0448\u0438\u0431\u043A\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F!",v="\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C",B="\u041E\u0442\u043C\u0435\u043D\u0430",C="\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C\u044B\u0435 \u043D\u0430 \u044D\u0442\u043E\u043C \u0441\u0430\u0439\u0442\u0435, \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0430\u0442 Hoyoverse.",k="\u042D\u0442\u043E \u0447\u0438\u0441\u0442\u043E \u0444\u0430\u043D\u0430\u0442\u0441\u043A\u043E\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435, \u043D\u0430\u0441\u043B\u0430\u0436\u0434\u0430\u0439\u0442\u0435\u0441\u044C \u0438\u043C!",S="\u041D\u0430\u0436\u043C\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C",N="\u0418\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u044F \u043F\u043E \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0435 \u043D\u0430 \u0413\u043B\u0430\u0432\u043D\u044B\u0439 \u044D\u043A\u0440\u0430\u043D \u0438\u043B\u0438 \u0420\u0430\u0431\u043E\u0447\u0438\u0439 \u0441\u0442\u043E\u043B",P="\u041F\u043E\u0434\u0435\u043B\u0438\u0442\u044C\u0441\u044F",x="\u0421\u0434\u0435\u043B\u0430\u0442\u044C \u0444\u043E\u0442\u043E\u0433\u0440\u0430\u0444\u0438\u044E",A="\u0417\u0430\u0445\u0432\u0430\u0442 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F",I="\u041D\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u043F\u0435\u0440\u0432\u0443\u044E \u0430\u043A\u0446\u0438\u044E: {qty}",D="\u0412\u0435\u0440\u0441\u0438\u044F",R="\u041F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C",F={beginner:"\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u043D\u043E\u0432\u0438\u0447\u043A\u0430",wanderlust:"\u0416\u0430\u0436\u0434\u0430 \u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0438\u0439","epitome-invocation":"\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430","adrift-in-the-harbor":"\u042D\u0444\u0435\u043C\u0435\u0440\u043D\u043E\u0435 \u043D\u0435\u0434\u043E\u0432\u0435\u0440\u0438\u0435","auric-blaze":"\u041F\u044B\u043B\u0430\u044E\u0449\u0435\u0435 \u0437\u043E\u043B\u043E\u0442\u043E","azure-excursion":"\u041B\u0430\u0437\u0443\u0440\u043D\u044B\u0439 \u043F\u043E\u0445\u043E\u0434","ballad-in-goblets":"\u0421\u0442\u0438\u0445\u0438 \u0438\u0437 \u0432\u0438\u043D\u043D\u043E\u0433\u043E \u043A\u0443\u0431\u043A\u0430","born-of-ocean-swell":"\u0420\u043E\u0436\u0434\u0451\u043D\u043D\u0430\u044F \u043C\u043E\u0440\u0441\u043A\u043E\u0439 \u043F\u0435\u043D\u043E\u0439","caution-in-confidence":"\u0421\u0434\u0435\u0440\u0436\u0430\u043D\u043D\u043E\u0435 \u0431\u043B\u0430\u0433\u043E\u0440\u0430\u0437\u0443\u043C\u0438\u0435","chanson-of-many-waters":"\u041F\u0435\u0441\u043D\u044C \u0432\u043E\u0434\u0430\u043C \u043C\u0438\u0440\u0430","conjuring-chiaroscuro":"\u0412\u043E\u043B\u0448\u0435\u0431\u0441\u0442\u0432\u043E \u0441\u0432\u0435\u0442\u0430 \u0438 \u0442\u0435\u043D\u0438","dance-of-lantern":"\u0422\u0430\u043D\u0435\u0446 \u0444\u043E\u043D\u0430\u0440\u0435\u0439","decree-of-the-deeps":"\u0417\u0430\u0432\u0435\u0442 \u0433\u043B\u0443\u0431\u0438\u043D","discerner-of-enigmas":"\u0411\u0435\u043B\u0430\u044F \u0440\u0430\u0434\u0443\u0433\u0430","drifting-luminescence":"\u0414\u0440\u0435\u0439\u0444\u0443\u044E\u0449\u0435\u0435 \u0441\u0432\u0435\u0447\u0435\u043D\u0438\u0435","everbloom-violet":"\u0412\u0435\u0447\u043D\u043E\u0446\u0432\u0435\u0442\u0443\u0449\u0438\u0439 \u043F\u0443\u0440\u043F\u0443\u0440","farewell-of-snezhnaya":"\u0417\u0438\u043C\u043D\u0435\u0435 \u0440\u0430\u0441\u0441\u0442\u0430\u0432\u0430\u043D\u0438\u0435","from-ashes-reborn":"\u041F\u0440\u0430\u0445 \u043F\u0435\u0440\u0435\u0440\u043E\u0436\u0434\u0451\u043D\u043D\u044B\u0439","gentry-of-hermitage":"\u0413\u043E\u0440\u044B \u0438 \u0440\u044B\u043D\u043A\u0438","immaculate-pulse":"\u0411\u0438\u0435\u043D\u0438\u0435 \u043C\u0443\u0434\u0440\u043E\u0433\u043E \u0441\u0435\u0440\u0434\u0446\u0430","in-the-name-of-the-rosula":"\u0412\u043E \u0438\u043C\u044F \u0440\u043E\u0437\u044B","invitation-to-mundane-life":"\u041F\u0440\u0438\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u0435 \u043A \u043C\u0438\u0440\u0441\u043A\u043E\u0439 \u0436\u0438\u0437\u043D\u0438","leaves-in-the-wind":"\u041B\u0438\u0441\u0442\u044C\u044F \u043D\u0430 \u0432\u0435\u0442\u0440\u0443","moment-of-bloom":"\u041C\u043E\u043C\u0435\u043D\u0442 \u0446\u0432\u0435\u0442\u0435\u043D\u0438\u044F","oni_s-royale":"\u041F\u0438\u0440\u0448\u0435\u0441\u0442\u0432\u043E \u043E\u0301\u043D\u0438","reign-of-serenity":"\u0413\u043E\u0441\u043F\u043E\u0434\u0441\u0442\u0432\u043E \u0431\u0435\u0437\u043C\u044F\u0442\u0435\u0436\u043D\u043E\u0441\u0442\u0438","secretum-secretorum":"\u0422\u0430\u0438\u043D\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u0441\u0435\u043A\u0440\u0435\u0442\u044B","sparkling-steps":"\u0421\u0432\u0435\u0440\u043A\u0430\u044E\u0449\u0430\u044F \u043F\u043E\u0441\u0442\u0443\u043F\u044C","tapestry-of-golden-flames":"\u0413\u043E\u0431\u0435\u043B\u0435\u043D \u0437\u043E\u043B\u043E\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u043C\u0435\u043D\u0438","tempestuous-destiny":"\u0411\u0443\u0448\u0443\u044E\u0449\u0438\u0439 \u0440\u043E\u043A","the-heron_s-court":"\u0421\u0430\u0434 \u0431\u0435\u043B\u043E\u0439 \u0446\u0430\u043F\u043B\u0438","the-moongrass-enlightenment":"\u041E\u0437\u0430\u0440\u0435\u043D\u0438\u0435 \u043B\u0443\u043D\u043D\u043E\u0439 \u0442\u0440\u0430\u0432\u044B","the-transcendent-one-returns":"\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D\u0438\u0435 \u0432 \u043C\u0438\u0440 \u0441\u043C\u0435\u0440\u0442\u043D\u044B\u0445","twilight-arbiter":"\u0421\u0443\u043C\u0435\u0440\u0435\u0447\u043D\u044B\u0439 \u0432\u0435\u0440\u0448\u0438\u0442\u0435\u043B\u044C","twirling-lotus":"\u041A\u0440\u0443\u0436\u0430\u0449\u0438\u0439\u0441\u044F \u043B\u043E\u0442\u043E\u0441","viridescent-vigil":"\u041F\u0430\u0442\u0440\u0443\u043B\u044C \u043B\u0435\u0441\u043D\u043E\u0439 \u0447\u0430\u0449\u0438"},T={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},W={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},E={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},K={wishTitle:"\u041C\u043E\u043B\u0438\u0442\u0432\u0430",rollButton:"\u041F\u043E\u043C\u043E\u043B\u0438\u0442\u044C\u0441\u044F {count} \u0440\u0430\u0437",stellaFortuna:"\u0423\u0434\u0430\u0447\u0443",loadFailed:"Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"\u0411\u0430\u043D\u043D\u0435\u0440",allBanner:"\u0412\u0441\u0435 \u0431\u0430\u043D\u043D\u0435\u0440\u044B",previous:"\u041F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0438\u0439 \u0431\u0430\u043D\u043D\u0435\u0440",findBanner:"\u041D\u0430\u0439\u0442\u0438 \u0431\u0430\u043D\u043D\u0435\u0440",group:"\u0413\u0440\u0443\u043F\u043F\u0430",beginner:"\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u043D\u043E\u0432\u0438\u0447\u043A\u0430","character-event":"\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430","weapon-event":"\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F",standard:"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0430\u044F \u041C\u043E\u043B\u0438\u0442\u0432\u0430",wishDescription:"\u0417\u0430 \u043A\u0430\u0436\u0434\u044B\u0435 10 \u0441\u043E\u0432\u0435\u0440\u0448\u0451\u043D\u043D\u044B\u0445 \u041C\u043E\u043B\u0438\u0442\u0432 \u0432\u044B \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 4\u2605 \u0438\u043B\u0438 \u0432\u044B\u0448\u0435.",novice:"\u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043B\u044F \u043D\u0430\u0447\u0438\u043D\u0430\u044E\u0449\u0438\u0445",up:"UP!",beginnerSet:"\u041D\u0430\u0431\u043E\u0440 \u0438\u0437 10 \u0432\u0435\u0449\u0435\u0439 \u0441\u043E \u0441\u043A\u0438\u0434\u043A\u043E\u0439 \u0432 20%. \u0412 \u043F\u0435\u0440\u0432\u043E\u043C \u043D\u0430\u0431\u043E\u0440\u0435 \u0432\u044B \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 {character}.",beginnerNote:"\xAB\u041A\u0430\u043A \u0438 \u043F\u043E\u043B\u043E\u0436\u0435\u043D\u043E \u043F\u043E\u0447\u0442\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0433\u043E\u0440\u043D\u0438\u0447\u043D\u043E\u0439.\xBB",beginnerChance:"\u041F\u043E\u043F\u044B\u0442\u043E\u043A: {chances}",standardNote:"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u044B\u0435 \u043C\u043E\u043B\u0438\u0442\u0432\u044B \u043D\u0435 \u0438\u043C\u0435\u044E\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u0439 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438.",allWeaponTypes:"\u0412\u0441\u0435 \u0442\u0438\u043F\u044B \u043E\u0440\u0443\u0436\u0438\u044F",etc:"\u0438 \u0442.\u043F.",probIncreased:"\u0412\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u0443\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u0430!",eventNote:"\u042D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 5\u2605 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u043B\u0438\u0448\u044C \u0432 \u043F\u0435\u0440\u0438\u043E\u0434 \u0434\u0430\u043D\u043D\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B.",viewDetails:"\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u043E\u0441\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u0432 \u043C\u0435\u043D\u044E \xAB\u0414\u0435\u0442\u0430\u043B\u0438\xBB."},epitomizedPath:{text:"\u041F\u0443\u0442\u044C \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F",fatePoint:"\u041E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B",cancelPrompt:"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043A\u0443\u0440\u0441?",cancelDesc:"\u041E\u0442\u043C\u0435\u043D\u0430 \u043A\u0443\u0440\u0441\u0430 \u0441\u0431\u0440\u043E\u0441\u0438\u0442 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B.",selectWeapon:"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043E\u0440\u0443\u0436\u0438\u0435",chartCourseOf:"\u041A\u0443\u0440\u0441 \u043D\u0430 \u043F\u0440\u0435\u0434\u043C\u0435\u0442: {target}",cancelCourse:"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u043A\u0443\u0440\u0441",chartCourse:"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043A\u0443\u0440\u0441",courseSetFor:"\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u043A\u0443\u0440\u0441 \u043D\u0430: {selectedCourse}",description:["\u041F\u0443\u0442\u044C \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F - \u044D\u0442\u043E \u043C\u0435\u0445\u0430\u043D\u0438\u043A\u0430, \u0432\u043A\u043B\u044E\u0447\u0451\u043D\u043D\u0430\u044F \u0432 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u0446\u0438\u043A\u043B \u043C\u043E\u043B\u0438\u0442\u0432\u044B \xAB\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430\xBB:","\u041F\u043E\u0441\u043B\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043A\u0443\u0440\u0441\u0430 \u043D\u0430 \u0436\u0435\u043B\u0430\u0435\u043C\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435, \u0435\u0441\u043B\u0438 \u0432\u044B <span>\u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605, \u043A\u043E\u0442\u043E\u0440\u043E\u0435 \u043D\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0430\u0448\u0435\u043C\u0443 \u0432\u044B\u0431\u043E\u0440\u0443</span>, \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 1 \u043E\u0447\u043A\u043E \u0421\u0443\u0434\u044C\u0431\u044B.","\u041A\u043E\u0433\u0434\u0430 \u0432\u044B \u043D\u0430\u0431\u0435\u0440\u0451\u0442\u0435 \u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u043E\u0447\u043A\u043E\u0432 \u0421\u0443\u0434\u044C\u0431\u044B, \u0432\u0430\u0448\u0435 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0435\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605 \u0431\u0443\u0434\u0435\u0442 \u0442\u0435\u043C, \u0447\u0442\u043E \u0432\u044B \u0432\u044B\u0431\u0440\u0430\u043B\u0438 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F.","<span>\u041F\u043E\u0441\u043B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F \u043C\u043E\u043B\u0438\u0442\u0432\u044B \xAB\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430\xBB \u0432\u0430\u0448\u0438 \u043E\u0447\u043A\u0438 \u0441\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B</span>.","\u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0432\u044B\u0431\u0435\u0440\u0435\u0442\u0435 \u043E\u0440\u0443\u0436\u0438\u0435, \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u043D\u0435 \u0431\u0443\u0434\u0443\u0442 \u043D\u0430\u043A\u0430\u043F\u043B\u0438\u0432\u0430\u0442\u044C\u0441\u044F.","\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u0432\u044B\u0431\u043E\u0440. <span>\u042D\u0442\u043E \u0441\u0431\u0440\u043E\u0441\u0438\u0442 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u0432\u0430\u043C\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B</span>.","<span>\u041D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u0432\u0430\u043C\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0442\u0430\u043A\u0436\u0435 \u043E\u0431\u043D\u0443\u043B\u044F\u0442\u0441\u044F, \u043A\u043E\u0433\u0434\u0430 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u0446\u0438\u043A\u043B \u043C\u043E\u043B\u0438\u0442\u0432\u044B \xAB\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430\xBB \u0437\u0430\u043A\u043E\u043D\u0447\u0438\u0442\u0441\u044F</span>."]},result:{skip:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C",meteorFailed:"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0430\u043D\u0438\u043C\u0430\u0446\u0438\u044E \u0432\u044B\u043F\u0430\u0434\u0435\u043D\u0438\u044F",new:"\u041D\u043E\u0432\u043E\u0435",convertion:"\u0414\u0443\u0431\u043B\u0438\u043A\u0430\u0442",title:"\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u043C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043B\u044F {item}"}},M={heading:"\u0413\u0430\u0440\u0434\u0435\u0440\u043E\u0431",default:"Default",setOutfit:"\u0421\u043C\u0435\u043D\u0438\u0442\u044C",owned:"\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043E",purchasePrompt:"\u0423 \u0432\u0430\u0441 \u0435\u0449\u0451 \u043D\u0435\u0442 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043A\u043E\u0441\u0442\u044E\u043C\u0430. \u0412\u0441\u0451 \u0440\u0430\u0432\u043D\u043E \u043A\u0443\u043F\u0438\u0442\u044C?",promptInfo:"\u041F\u043E\u0441\u043B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043D\u0443\u0436\u043D\u043E\u0433\u043E \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u043A\u043E\u0441\u0442\u044E\u043C \u0432 \u0438\u0433\u0440\u0435.",obtained:"New Outfit Obtained",unlocked:"{character}: Outfit Unlocked",item:{"5-star-outrider":{name:"\u041B\u0443\u0447\u0448\u0438\u0439 \u0441\u043A\u0430\u0443\u0442"},"favonian-fevotion":{name:"\u041F\u043E\u043A\u0440\u043E\u0432\u0438\u0442\u0435\u043B\u044C\u0441\u0442\u0432\u043E \u0432\u0435\u0442\u0440\u0430"},"flowing-fate":{name:"\u041A\u0440\u0443\u0433\u043E\u0432\u043E\u0440\u043E\u0442 \u0437\u0432\u0451\u0437\u0434"},"executor_s-thorns":{name:"\u0428\u0438\u043F\u044B \u043D\u0430\u043A\u0430\u0437\u0430\u043D\u0438\u044F"},"sea-breeze-dandelion":{name:"\u0421\u043E\u043D \u043C\u043E\u0440\u0441\u043A\u043E\u0433\u043E \u0431\u0440\u0438\u0437\u0430",description:"\u041F\u043B\u044F\u0436\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u0414\u0436\u0438\u043D\u043D. \u041B\u0451\u0433\u043A\u0438\u0439 \u0438 \u043E\u0434\u043D\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E \u044D\u043B\u0435\u0433\u0430\u043D\u0442\u043D\u044B\u0439. \u0418\u0434\u0435\u0430\u043B\u044C\u043D\u044B\u0439 \u0432\u0430\u0440\u0438\u0430\u043D\u0442 \u0434\u043B\u044F \u043F\u043E\u0435\u0437\u0434\u043A\u0438 \u043D\u0430 \u043C\u043E\u0440\u0435."},"summertime-sparkle":{name:"\u041B\u0435\u0442\u043D\u0438\u0439 \u0431\u043B\u0435\u0441\u043A",description:"\u041F\u043B\u044F\u0436\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u0411\u0430\u0440\u0431\u0430\u0440\u044B. \u041F\u0440\u0435\u043A\u0440\u0430\u0441\u043D\u0430\u044F \u044E\u0431\u043A\u0430 \u043D\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u0430 \u044D\u043D\u0435\u0440\u0433\u0438\u0435\u0439 \u043B\u0435\u0442\u0430 \u0438 \u043F\u0440\u043E\u043F\u0438\u0442\u0430\u043D\u0430 \u0441\u0432\u0435\u0436\u0438\u043C \u0432\u043E\u0437\u0434\u0443\u0445\u043E\u043C \u043E\u043A\u0435\u0430\u043D\u0430."},"opulent-splendor":{name:"\u042F\u0440\u043A\u0430\u044F \u043B\u0451\u0433\u043A\u043E\u0441\u0442\u044C",description:"\u041F\u0440\u0430\u0437\u0434\u043D\u0438\u0447\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u041A\u044D \u0426\u0438\u043D. \u0412 \u0443\u0442\u0440\u0435\u043D\u043D\u0438\u0435 \u0447\u0430\u0441\u044B \u043F\u0440\u0430\u0437\u0434\u043D\u0438\u043A\u0430 \u043C\u043E\u0440\u0441\u043A\u0438\u0445 \u0444\u043E\u043D\u0430\u0440\u0435\u0439 \u043D\u0438\u0442\u0438, \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0442\u044F\u0436\u0451\u043B\u043E\u0439 \u0440\u0430\u0431\u043E\u0442\u044B, \u0441\u043F\u043B\u0435\u0442\u0430\u044E\u0442\u0441\u044F \u0432 \u043B\u0451\u0433\u043A\u0438\u0439 \u0432\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u043D\u044B\u0439 \u043E\u0431\u0440\u0430\u0437."},"orchid_s-evening-gown":{name:"\u0424\u043B\u0451\u0440 \u043E\u0440\u0445\u0438\u0434\u0435\u0438",description:"\u041F\u0440\u0430\u0437\u0434\u043D\u0438\u0447\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u041D\u0438\u043D \u0413\u0443\u0430\u043D. \u0414\u043B\u0438\u043D\u043D\u043E\u0435 \u043F\u043B\u0430\u0442\u044C\u0435 \u0446\u0432\u0435\u0442\u0430 \u0438\u043D\u0434\u0438\u0433\u043E \u043F\u043E\u0434\u0447\u0435\u0440\u043A\u0438\u0432\u0430\u0435\u0442 \u044D\u043B\u0435\u0433\u0430\u043D\u0442\u043D\u044B\u0435 \u0438\u0437\u0433\u0438\u0431\u044B \u043A\u0440\u0430\u0441\u0430\u0432\u0438\u0446\u044B, \u0430 \u043A\u0440\u044B\u043B\u044C\u044F \u0431\u0430\u0431\u043E\u0447\u043A\u0438 \u043D\u0430 \u043B\u043E\u0434\u044B\u0436\u043A\u0430\u0445 \u043F\u0440\u0438\u0434\u0430\u044E\u0442 \u043D\u0430\u0440\u044F\u0434\u0443 \u043B\u0451\u0433\u043A\u043E\u0435 \u0438\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u043E."},"ein-immernachtstraum":{name:"\u0421\u043E\u043D \u0432\u0435\u0447\u043D\u043E\u0439 \u043D\u043E\u0447\u0438",description:"\u041F\u0430\u0440\u0430\u0434\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u043F\u0440\u0438\u043D\u0446\u0435\u0441\u0441\u044B. \u0414\u0430 \u0431\u0443\u0434\u0435\u0442 \u0432\u0435\u0447\u043D\u043E \u0435\u0451 \u043C\u0443\u0436\u0435\u0441\u0442\u0432\u043E, \u0438\u0441\u043A\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u044C \u0438 \u0434\u043E\u0431\u0440\u043E\u0442\u0430, \u0434\u0430\u0431\u044B \u043D\u0438\u043A\u0430\u043A\u043E\u0435 \u0437\u043B\u043E \u043D\u0435 \u043C\u043E\u0433\u043B\u043E \u043E\u0434\u043E\u043B\u0435\u0442\u044C \u0435\u0451."},"red-dead-of-night":{name:"\u0410\u043B\u0430\u044F \u043D\u043E\u0447\u044C",description:"\u041E\u0434\u0438\u043D \u0438\u0437 \u043A\u043E\u0441\u0442\u044E\u043C\u043E\u0432, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0414\u0438\u043B\u044E\u043A \u043D\u0430\u0434\u0435\u0432\u0430\u0435\u0442 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0440\u0430\u0431\u043E\u0442\u044B \u043F\u043E\u0434 \u043F\u0440\u0438\u043A\u0440\u044B\u0442\u0438\u0435\u043C. \u041E\u043D \u043D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u0435\u0442 \u043F\u043B\u0430\u043C\u044F, \u0431\u0443\u0448\u0443\u044E\u0449\u0435\u0435 \u0432 \u0442\u0435\u043D\u0438. \u0411\u0430\u0433\u0440\u043E\u0432\u043E-\u043A\u0440\u0430\u0441\u043D\u044B\u0435 \u0441\u043B\u0435\u0434\u044B, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043E\u043D \u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 \u0437\u0430 \u0441\u043E\u0431\u043E\u0439 \u043F\u043E \u043A\u0440\u0430\u044F\u043C \u043F\u043E\u043B\u044F \u0437\u0440\u0435\u043D\u0438\u044F \u0432\u0440\u0430\u0433\u043E\u0432, \u0441\u0442\u0430\u043D\u0443\u0442 \u0438\u0445 \u0432\u0435\u0447\u043D\u044B\u043C \u043A\u043E\u0448\u043C\u0430\u0440\u043E\u043C \u043D\u0430 \u0432\u0441\u044E \u043E\u0441\u0442\u0430\u0432\u0448\u0443\u044E\u0441\u044F \u0436\u0438\u0437\u043D\u044C."},"a-sobriquet-under-shade":{name:"\u0418\u043D\u043A\u043E\u0433\u043D\u0438\u0442\u043E \u0432 \u0442\u0435\u043D\u0438 \u043B\u0438\u0441\u0442\u0432\u044B",description:"\u041D\u0430\u0440\u044F\u0434, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u043A\u0442\u043E-\u0442\u043E \u0437\u0430\u043A\u0430\u0437\u0430\u043B \u0434\u043B\u044F \u041B\u0438\u0437\u044B \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0435\u0451 \u0432\u0438\u0437\u0438\u0442\u0430 \u0432 \u0421\u0443\u043C\u0435\u0440\u0443. \u0418\u0434\u0435\u0430\u043B\u044C\u043D\u043E \u0441\u043E\u0431\u043B\u044E\u0434\u0430\u044F \u0431\u0430\u043B\u0430\u043D\u0441 \u043C\u0435\u0436\u0434\u0443 \u043F\u0440\u0430\u043A\u0442\u0438\u0447\u043D\u043E\u0441\u0442\u044C\u044E \u0438 \u044D\u043B\u0435\u0433\u0430\u043D\u0442\u043D\u043E\u0441\u0442\u044C\u044E, \u044D\u0442\u043E \u043F\u043B\u0430\u0442\u044C\u0435 \u043D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u0435\u0442 \u0444\u043E\u0440\u043C\u0443, \u043A\u043E\u0442\u043E\u0440\u0443\u044E \u041B\u0438\u0437\u0430 \u043D\u043E\u0441\u0438\u043B\u0430 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u043E\u0431\u0443\u0447\u0435\u043D\u0438\u044F \u0432 \u0410\u043A\u0430\u0434\u0435\u043C\u0438\u0438."},"springbloom-missive":{name:"\u041F\u043E\u0441\u043B\u0430\u043D\u0438\u0435 \u0432\u0435\u0441\u0435\u043D\u043D\u0435\u0433\u043E \u0446\u0432\u0435\u0442\u0435\u043D\u0438\u044F",description:"\u041D\u0430\u0440\u044F\u0434 \u0410\u044F\u043A\u0438 \u0434\u043B\u044F \u043F\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u0439. \u0415\u0433\u043E \u0444\u0430\u0441\u043E\u043D \u043D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u0435\u0442 \u043E \u043D\u0430\u0440\u044F\u0434\u0430\u0445 \u0444\u043E\u043D\u0442\u0435\u0439\u043D\u0441\u043A\u0438\u0445 \u0434\u0430\u043C \u043D\u0430 \u0438\u043B\u043B\u044E\u0441\u0442\u0440\u0430\u0446\u0438\u044F\u0445 \u0432 \u043B\u0451\u0433\u043A\u0438\u0445 \u0440\u043E\u043C\u0430\u043D\u0430\u0445. \u0421\u0443\u0434\u044F \u043F\u043E \u0432\u0441\u0435\u043C\u0443, \u043F\u043E\u0434\u043E\u0431\u043D\u0430\u044F \u043C\u043E\u0434\u0430 \u043E\u0442\u0440\u0430\u0436\u0430\u0435\u0442 \u043E\u0431\u0440\u0430\u0437 \u0436\u0438\u0437\u043D\u0438 \u0436\u0435\u043D\u0449\u0438\u043D \u0438\u0437 \u0442\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u044B."},"blossoming-starlight":{name:"\u0426\u0432\u0435\u0442\u0443\u0449\u0438\u0439 \u0441\u0432\u0435\u0442 \u0437\u0432\u0451\u0437\u0434",description:"\u0418\u0437\u044B\u0441\u043A\u0430\u043D\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u041A\u043B\u0438 \u0434\u043B\u044F \u0441\u0430\u043C\u044B\u0445 \u0432\u0430\u0436\u043D\u044B\u0445 \u0432\u044B\u0441\u0442\u0443\u043F\u043B\u0435\u043D\u0438\u0439. \u042F\u0440\u043A\u0438\u0439, \u0441\u043B\u043E\u0432\u043D\u043E \u043A\u0440\u0435\u043C\u043E\u0432\u044B\u0439 \u0442\u043E\u0440\u0442, \u0443\u043A\u0440\u0430\u0448\u0435\u043D\u043D\u044B\u0439 \u0446\u0432\u0435\u0442\u0430\u043C\u0438 \u0438 \u0430\u043B\u044B\u043C\u0438 \u0441\u0432\u0435\u0447\u0430\u043C\u0438. \u0421 \u043D\u0438\u043C \u0441\u0447\u0430\u0441\u0442\u044C\u0435 \u0438 \u0443\u043B\u044B\u0431\u043A\u0438 \u043D\u0430\u043F\u043E\u043B\u043D\u044F\u0442 \u0432\u0430\u0448\u0438 \u043F\u0440\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044F."},"sailwind-shadow":{name:"\u0422\u0435\u043D\u044C \u0432\u0435\u0442\u0440\u0430 \u0432 \u043F\u0430\u0440\u0443\u0441\u0430\u0445",description:"\u041A\u043E\u0441\u0442\u044E\u043C \u041A\u044D\u0439\u0438, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u043E\u043D \u043D\u0430\u0434\u0435\u0432\u0430\u043B, \u0432\u044B\u0441\u0442\u0443\u043F\u0430\u044F \u0432 \u0440\u043E\u043B\u0438 \u0420\u0430\u0437\u0431\u043E\u0439\u043D\u0438\u043A\u0430 \u0441 \u041A\u0438\u043D\u0436\u0430\u043B\u0430\u043C\u0438. \u042D\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434, \u043F\u0440\u0438\u0437\u0432\u0430\u043D\u043D\u044B\u0439 \u043F\u0440\u0438\u0432\u043B\u0435\u0447\u044C \u0432\u043D\u0438\u043C\u0430\u043D\u0438\u0435. \u041D\u0430\u0434\u0435\u0442\u044C \u043D\u0435\u0441\u043B\u043E\u0436\u043D\u043E, \u043D\u043E \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0432\u0440\u0435\u043C\u044F, \u0447\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u043E\u0431\u0440\u0430\u0442\u044C\u0441\u044F \u0441\u043E \u0432\u0441\u0435\u043C\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438 \u0438 \u043A\u0438\u043D\u0436\u0430\u043B\u0430\u043C\u0438."}}},O={text:"\u0414\u0435\u0442\u0430\u043B\u0438",promotional:"\u041F\u043E\u0432\u044B\u0448\u0435\u043D\u043D\u044B\u0439 \u0448\u0430\u043D\u0441",itemlist:"\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432",increasedRate:"\u0412\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432 \u043F\u043E\u0432\u044B\u0448\u0435\u043D\u0430!",percentageDrop:"\u0428\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F {rarity}\u2605 : {percentage}",wishDetails:"\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 \u043E \u041C\u043E\u043B\u0438\u0442\u0432\u0430\u0445",probInfo:"\u0411\u0430\u0437\u043E\u0432\u044B\u0439 \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 {rarity}\u2605 : {singlePercentage} (\u0412\u043A\u043B. \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u044E: {avgPercentage})",itemWishFor:"\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432, \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041C\u043E\u043B\u0438\u0442\u0432\u044B:",itemType:"\u0422\u0438\u043F",itemName:"\u0418\u043C\u044F",beginnerInfo:"\u041D\u0435\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 (\u041E\u0442\u043A\u0440\u044B\u0442\u043E \u0434\u043E 20 \u043C\u043E\u043B\u0438\u0442\u0432)",limited:"\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u043E\u0435 \u0441\u043E\u0431\u044B\u0442\u0438\u0435",permanent:"\u041D\u0435\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438",alert:"\u203B \u042D\u0442\u043E {wishName}. \u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043F\u044B\u0442\u043E\u043A \u0434\u043B\u044F \u043D\u0435\u0451 \u043F\u043E\u0434\u0441\u0447\u0438\u0442\u044B\u0432\u0430\u0435\u0442\u0441\u044F \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E \u0438 \u043D\u0430 \u0447\u0438\u0441\u043B\u043E \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043F\u044B\u0442\u043E\u043A \u0434\u0440\u0443\u0433\u0438\u0445 \u043C\u043E\u043B\u0438\u0442\u0432 \u043D\u0435 \u0432\u043B\u0438\u044F\u0435\u0442.",beginner:[" <span> \u041C\u043E\u043B\u0438\u0442\u0432\u0430</span> \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u2013 \u044D\u0442\u043E \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0430\u044F \u041C\u043E\u043B\u0438\u0442\u0432\u0430. \u041E\u043D\u0430 \u043D\u0435 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0430 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u0430 \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u043E \u0434\u043B\u044F \u0442\u0435\u0445, \u043A\u0442\u043E \u0432 \u0422\u0435\u0439\u0432\u0430\u0442\u0435 \u0441\u043E\u0432\u0441\u0435\u043C \u043D\u0435\u0434\u0430\u0432\u043D\u043E. \u0412 \u0440\u0430\u043C\u043A\u0430\u0445 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u043D\u0435 \u043B\u0438\u043C\u0438\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 \u0438 \u043E\u0440\u0443\u0436\u0438\u0435. <br /> \u0412 \u041C\u043E\u043B\u0438\u0442\u0432\u0435 \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u043D\u0430\u0431\u043E\u0440 \u0438\u0437 10 \u043C\u043E\u043B\u0438\u0442\u0432 \u0441\u0442\u043E\u0438\u0442 \u043D\u0430 <span>20%</span> \u0421\u0443\u0434\u044C\u0431\u043E\u043D\u043E\u0441\u043D\u044B\u0445 \u0432\u0441\u0442\u0440\u0435\u0447 \u043C\u0435\u043D\u044C\u0448\u0435. \u041A\u0440\u043E\u043C\u0435 \u044D\u0442\u043E\u0433\u043E, \u0437\u0430 \u043F\u0435\u0440\u0432\u044B\u0435 10 \u041C\u043E\u043B\u0438\u0442\u0432 \u0432\u044B \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \xAB\u041D\u0435\u0440\u0430\u0441\u043F\u0443\u0441\u0442\u0438\u0432\u0448\u0438\u0439\u0441\u044F \u0446\u0432\u0435\u0442\u043E\u043A\xBB \u041D\u043E\u044D\u043B\u043B\u044C (\u0413\u0435\u043E), \u0430 \u0437\u0430 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 10 \u2013 <span>\u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430</span> 4\u2605 \u0438\u043B\u0438 \u0432\u044B\u0448\u0435! \u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u0437\u0430\u043A\u0430\u043D\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u043F\u043E\u0441\u043B\u0435 <span>20</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A. \u041A\u043E\u0433\u0434\u0430 \u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u0437\u0430\u043A\u043E\u043D\u0447\u0438\u0442\u0441\u044F, \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0441\u0442\u0430\u043D\u0435\u0442 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430.","\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.","\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013","\u0411\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = <span> 0.600%</span> <br /> \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 = <span> 5.100%</span>; \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) = <span> 13.000%</span>;"],standard:['"{bannerName}" \u044D\u0442\u043E \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0430\u044F \u041C\u043E\u043B\u0438\u0442\u0432\u0430. \u041E\u043D\u0430 \u043D\u0435 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0430 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438. \u0412 \u0440\u0430\u043C\u043A\u0430\u0445 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u043D\u0435 \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 \u0438 \u043E\u0440\u0443\u0436\u0438\u0435.<br/> \u0417\u0430 \u043A\u0430\u0436\u0434\u044B\u0435 10 \u041C\u043E\u043B\u0438\u0442\u0432 \u0432\u044B <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u043D\u043E\u0433\u043E \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0438\u043B\u0438 \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605.',"\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.","\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013","\u0411\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = <span>0.600%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 5\u2605 = <span>0.300%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 = <span>0.300%</span>; \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = <span>1.600%</span>; \u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u0438\u043D \u0440\u0430\u0437 \u0437\u0430 <span>90</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A. <br> \u0411\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>5.100%</span>; \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 4\u2605 = 2,550%, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 4\u2605 = <span>2.550%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>13.000%</span>. \u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0438 \u0432\u044B\u0448\u0435 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0441 <span>10</span> \u043F\u043E\u043F\u044B\u0442\u043A\u0438, \u0438 \u0432 \u044D\u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0435 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0441\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 <span>99.400%</span>, \u0430 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 - <span>0.600%</span>. "],events:["\xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB \u0443\u0436\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430! \u0412\u043E \u0432\u0440\u0435\u043C\u044F \u044D\u0442\u043E\u0433\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u044F <span>\u0440\u0435\u0437\u043A\u043E \u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u0441\u044F</span> \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439: \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 \u0441\u043E\u0431\u044B\u0442\u0438\u044F 5\u2605 {featuredCharacter}, \u0430 \u0442\u0430\u043A\u0436\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 4\u2605 {rateupCharacters}.<br/> <span> \u203B \u042D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 \u0438\u0437 \u044D\u0442\u043E\u0433\u043E \u0441\u043F\u0438\u0441\u043A\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u0432 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u0435 \xAB\u0416\u0430\u0436\u0434\u0430 \u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0438\u0439\xBB.</span>","\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.","\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013","\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 5\u2605","\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = 0,600%, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) = <span>1,600%</span>. \u0413\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 5\u2605 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u0438\u043D \u0440\u0430\u0437 \u0437\u0430 <span>90</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A.<br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u043C 5\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span> 50.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 {featuredCharacter}. \u0415\u0441\u043B\u0438 \u043F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D \u0434\u0440\u0443\u0433\u043E\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 5\u2605, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 5\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u044B\u043C \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u043C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u043C.","\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 4\u2605","\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F:{bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span> 5.100%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 4\u2605 = <span>2.550%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 4\u2605 = <span>2.550%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span> 13.000%</span>. \u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0438 \u0432\u044B\u0448\u0435 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0441 10 \u043F\u043E\u043F\u044B\u0442\u043A\u0438, \u0438 \u0432 \u044D\u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0435 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0441\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442  <span>99.400%</span>, \u0430 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 - <span>0.600%</span>. <br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u043C 4\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span>50.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u043E\u0434\u0438\u043D \u0438\u0437 \u043F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044B\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439: {rateupCharacters}. \u0415\u0441\u043B\u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 4\u2605 \u043D\u0435 \u043E\u0434\u0438\u043D \u0438\u0437 \u043F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044B\u0445, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 4\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0438\u043C. \u041F\u0440\u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0438 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043B\u044E\u0431\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0432\u043D\u044B\u043C."],weapons:["\xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB \u0443\u0436\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430! \u0412\u043E \u0432\u0440\u0435\u043C\u044F \u044D\u0442\u043E\u0433\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0435\u0433\u043E \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0435\u0437\u043A\u043E \u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u0441\u044F: \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u043E\u0435 \u0434\u043B\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605 {featuredWeapon1}; \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u043E\u0435 \u0434\u043B\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605 {rateupWeapons}.<br/> <span> \u203B \u042D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0438\u0437 \u044D\u0442\u043E\u0433\u043E \u0441\u043F\u0438\u0441\u043A\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0432 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u0435 \xAB\u0416\u0430\u0436\u0434\u0430 \u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0438\u0439\xBB</span>","\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.","\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013","\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 5\u2605","\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 = <span>0.700%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) = <span>1.850%</span>. \u0413\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u0438\u043D \u0440\u0430\u0437 \u0437\u0430 <span>80</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A. <br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043E\u0440\u0443\u0436\u0438\u0435\u043C 5\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span>75.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0413\u0440\u043E\u043C\u043E\u0432\u043E\u0439 {featuredWeapon1} \u0438\u043B\u0438 {featuredWeapon2}. \u0415\u0441\u043B\u0438 \u043F\u0435\u0440\u0432\u044B\u0439 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 5\u2605 \u043D\u0435 \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0441 \u043F\u043E\u0432\u044B\u0448\u0435\u043D\u043D\u043E\u0439 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 5\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0438\u043C. \u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u043D\u0435\u0442 \u0438\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0433\u043E \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0441 \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C\u043E\u043C \u043E\u0447\u043A\u043E\u0432 \u0421\u0443\u0434\u044C\u0431\u044B, \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043B\u044E\u0431\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0432\u043D\u044B\u043C. <br/> \u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u0440\u043E\u043B\u043E\u0436\u0438\u0442\u044C \u043F\u0443\u0442\u044C \u043A \u043E\u0440\u0443\u0436\u0438\u044E 5\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F. \u0418\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0430\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u043E \u0442\u043E\u043B\u044C\u043A\u043E \u043D\u0430 \u0432\u0440\u0435\u043C\u044F \u043F\u0440\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB. <br/> \u0415\u0441\u043B\u0438 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u043B\u0438 \u043D\u0435 \u0442\u043E \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605, \u043A \u043A\u043E\u0442\u043E\u0440\u043E\u043C\u0443 \u043F\u0440\u043E\u043B\u043E\u0436\u0438\u043B\u0438 \u043F\u0443\u0442\u044C, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0432 \u041F\u0443\u0442\u044C \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F, \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 1 \u043E\u0447\u043A\u043E \u0421\u0443\u0434\u044C\u0431\u044B. \u0421 <span>\u043F\u043E\u043B\u043D\u044B\u043C \u043F\u043E\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u0435\u043C</span> \u043E\u0447\u043A\u043E\u0432 \u0421\u0443\u0434\u044C\u0431\u044B \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u043C \u043E\u0440\u0443\u0436\u0438\u0435\u043C 5\u2605, \u043A\u043E\u0442\u043E\u0440\u043E\u0435 \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435, <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u0431\u0443\u0434\u0435\u0442 \u0432\u044B\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u0432\u0430\u043C\u0438 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F. \u041F\u043E\u0441\u043B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0438\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0433\u043E \u043E\u0440\u0443\u0436\u0438\u044F \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B \u0434\u043E <span>0</span>, \u0430 \u0438\u0445 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u0447\u043D\u0451\u0442\u0441\u044F \u0441\u043D\u0430\u0447\u0430\u043B\u0430. <br/> \u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0432\u044B\u0431\u0440\u0430\u043B\u0438 \u043E\u0440\u0443\u0436\u0438\u0435, \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u043D\u0430\u043A\u0430\u043F\u043B\u0438\u0432\u0430\u0442\u044C\u0441\u044F <span>\u043D\u0435 \u0431\u0443\u0434\u0443\u0442</span>.<br/> \u0418\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u043C\u043E\u0436\u043D\u043E \u043F\u0435\u0440\u0435\u043D\u0430\u0437\u043D\u0430\u0447\u0438\u0442\u044C \u0438\u043B\u0438 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C. \u041F\u0440\u0438 \u044D\u0442\u043E\u043C \u0432\u0430\u0448\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B \u0434\u043E <span>0</span>, \u0430 \u0438\u0445 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u0447\u043D\u0451\u0442\u0441\u044F \u0441\u043D\u0430\u0447\u0430\u043B\u0430. <br/> \u203B \u041E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0430\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u043D\u0430 \u0432\u0440\u0435\u043C\u044F \u043F\u0440\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB. \u041A\u043E\u0433\u0434\u0430 \u043E\u043D\u043E \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0441\u044F, \u0432\u0430\u0448\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B \u0434\u043E <span>0</span>, \u0430 \u0438\u0445 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u0447\u043D\u0451\u0442\u0441\u044F \u0441\u043D\u0430\u0447\u0430\u043B\u0430.","\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 4\u2605","\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>6.000%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 4\u2605 = <span>3.000%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 4\u2605 = <span>3.000%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>14.500%</span>. \u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0438 \u0432\u044B\u0448\u0435 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0441 10 \u043F\u043E\u043F\u044B\u0442\u043A\u0438, \u0438 \u0432 \u044D\u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0435 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0441\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 <span>99.300%</span>, \u0430 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 - <span>0.700%</span>. <br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043E\u0440\u0443\u0436\u0438\u0435\u043C 4\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span>75.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u043E\u0434\u0438\u043D \u0438\u0437 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432: {rateupWeapons}. \u0415\u0441\u043B\u0438 \u043F\u0435\u0440\u0432\u044B\u0439 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 4\u2605 \u043D\u0435 \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0441 \u043F\u043E\u0432\u044B\u0448\u0435\u043D\u043D\u043E\u0439 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 4\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0438\u043C. \u041F\u0440\u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0438 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043B\u044E\u0431\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0432\u043D\u044B\u043C."],convertion:{fiveStar:"\u041A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043E\u0440\u0443\u0436\u0438\u044E 5\u2605, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u043E\u043C\u0443 \u0438\u0437 \u044D\u0442\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B, \u043F\u0440\u0438\u043B\u0430\u0433\u0430\u0435\u0442\u0441\u044F {starglitter} \xD710;",fourStar:"\u041A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043E\u0440\u0443\u0436\u0438\u044E 4\u2605, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u043E\u043C\u0443 \u0438\u0437 \u044D\u0442\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B, \u043F\u0440\u0438\u043B\u0430\u0433\u0430\u0435\u0442\u0441\u044F {starglitter} \xD72;",threeStar:"\u041A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043E\u0440\u0443\u0436\u0438\u044E 3\u2605, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u043E\u043C\u0443 \u0438\u0437 \u044D\u0442\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B, \u043F\u0440\u0438\u043B\u0430\u0433\u0430\u0435\u0442\u0441\u044F {stardust} \xD715."},duplicate:{heading:"\u3013 \u0414\u0443\u0431\u043B\u0438\u043A\u0430\u0442\u044B \u3013",text:"\u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0435\u0441\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 {rarity}\u2605 (\u043E\u0442\u043A\u0440\u044B\u0442\u044B\u0435 \u0432 \u0438\u0433\u0440\u0435, \u043A\u0443\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u0432 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0435 \u0438\u043B\u0438 \u0432\u044B\u0438\u0433\u0440\u0430\u043D\u043D\u044B\u0435 \u0432 \u041C\u043E\u043B\u0438\u0442\u0432\u0435), \u0442\u043E \u043D\u0430\u0447\u0438\u043D\u0430\u044F \u0441 2 \u043F\u043E 7 \u043E\u043D\u0438 \u043A\u043E\u043D\u0432\u0435\u0440\u0442\u0438\u0440\u0443\u044E\u0442\u0441\u044F \u0432 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0443\u044E \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0443 {stellaFortuna} \xD71 \u0438 {starglitter} {constBonus}. \u0417\u0430 8 \u0438 \u0434\u0430\u043B\u0435\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C {starglitter} {fullConstBonus}."}},L={title:"\u0416\u0443\u0440\u043D\u0430\u043B \u041C\u043E\u043B\u0438\u0442\u0432",text:"\u0418\u0441\u0442\u043E\u0440\u0438\u044F",resetButton:"\u0421\u0431\u0440\u043E\u0441",resetPromptTitle:"\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u0438\u0441\u0442\u043E\u0440\u0438\u044E?",resetPrompt:'\u042D\u0442\u043E \u0442\u0430\u043A\u0436\u0435 \u0443\u0434\u0430\u043B\u0438\u0442 \u0438\u0437 \u0432\u0430\u0448\u0435\u0433\u043E \u0438\u043D\u0432\u0435\u043D\u0442\u0430\u0440\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u0435, \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0441 "{bannerName}". <br/> \u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043E\u0441\u0438\u0442\u044C?',resetSuccess:"\u0421\u043F\u0440\u043E\u0441 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0451\u043D \u0443\u0441\u043F\u0435\u0448\u043D\u043E!",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"\u0422\u0438\u043F \u043C\u043E\u043B\u0438\u0442\u0432\u044B:",disclaimer:"\u041C\u044B \u043D\u0438\u043A\u043E\u0433\u0434\u0430 \u043D\u0435 \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u0435\u043C \u0432\u0430\u0448\u0438 \u0434\u0430\u043D\u043D\u044B\u0435 \u0432 \u043E\u0431\u043B\u0430\u0447\u043D\u043E\u043C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435. \u0412\u0441\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u0431\u044B\u043B\u0438 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u044B \u0432 IndexedDB, \u044D\u0442\u043E \u043E\u0437\u043D\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043E \u0434\u0430\u043D\u043D\u044B\u0435 \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u044E\u0442\u0441\u044F \u0432 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 \u0432\u0430\u0448\u0435\u0433\u043E \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430. \u041E\u043D \u043D\u0438\u043A\u043E\u0433\u0434\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043B\u0435\u043D, \u043F\u043E\u043A\u0430 \u0432\u044B \u043D\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u0435 \u0435\u0433\u043E \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u043A\u043D\u043E\u043F\u043A\u0438 \u0441\u0431\u0440\u043E\u0441\u0430 \u0438\u043B\u0438 \u043D\u0435 \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.",currentPity:"\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u0433\u0430\u0440\u0430\u043D\u0442:",totalPull:"\u0412\u0441\u0435\u0433\u043E \u043A\u0440\u0443\u0442\u043E\u043A:",totalSpend:"\u0412\u0441\u0435\u0433\u043E \u043F\u043E\u0442\u0440\u0430\u0447\u0435\u043D\u043E:",filterTxt:"\u0424\u0438\u043B\u044C\u0442\u0440",filter:"{rarity}\u2605",filterAll:"\u0412\u0441\u0451",pity:"\u041A\u0440\u0443\u0442\u043A\u0430",timeReceived:"\u0412\u0440\u0435\u043C\u044F \u043C\u043E\u043B\u0438\u0442\u0432\u044B",waiting:"\u041E\u0436\u0438\u0434\u0430\u0439\u0442\u0435",noData:"\u0414\u0430\u043D\u043D\u044B\u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B.",untracked:"\u043D\u0435 \u043E\u0442\u0441\u043B\u0435\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F",item:"\u041F\u0440\u0435\u0434\u043C\u0435\u0442",win:"\u0412\u044B\u0438\u0433\u0440\u044B\u0448 50/50",lose:"\u041F\u0440\u043E\u0438\u0433\u0440\u044B\u0448 50/50",guaranteed:"\u0413\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E",selected:"\u0412\u044B\u0431\u0440\u0430\u043D\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442",olderLayout:"\u0421\u0442\u0430\u0440\u043E\u0435 \u043E\u0444\u043E\u0440\u043C\u043B\u0435\u043D\u0438\u0435",switchv2:"\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043D\u0430 \u043D\u043E\u0432\u043E\u0435 \u043E\u0444\u043E\u0440\u043C\u043B\u0435\u043D\u0438\u0435"},U={text:"\u041C\u0430\u0433\u0430\u0437\u0438\u043D",paimonBargains:"\u041C\u0430\u0433\u0430\u0437\u0438\u043D \u041F\u0430\u0439\u043C\u043E\u043D",fateNeeded:"\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 {rollQty} {currency}.",primoNeeded:"\u041F\u043E\u043A\u0443\u043F\u043A\u0430 \u0441 {primoPrice} Primogem ?",purchaseUpto:"\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E: 1",purchaseConfirm:"\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C \u043F\u043E\u043A\u0443\u043F\u043A\u0443",exchangeHeading:"\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043F\u0440\u0435\u0434\u043C\u0435\u0442",purchaseHeading:"\u041F\u0440\u0435\u0434\u043C\u0435\u0442",purchaseButton:"\u041A\u0443\u043F\u0438\u0442\u044C",pay:"\u041E\u043F\u043B\u0430\u0442\u0430",product:"\u0422\u043E\u0432\u0430\u0440",consume:"\u0421\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C: ",selectPayment:"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043F\u043E\u0441\u043E\u0431 \u043E\u043F\u043B\u0430\u0442\u044B",unrealWallet:"\u041D\u0435\u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0438\u0439 \u043A\u043E\u0448\u0435\u043B\u0435\u043A",convertPrimo:"\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0432 \u041A\u0430\u043C\u043D\u0438 \u0418\u0441\u0442\u043E\u043A\u0430",proceedPayment:"\u041E\u043F\u043B\u0430\u0442\u0438\u0442\u044C",qty:"\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E",insufficient:"\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u0441\u0440\u0435\u0434\u0441\u0442\u0432",crystalTopup:"\u041F\u043E\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043A\u0440\u0438\u0441\u0442\u0430\u043B\u043B\u043E\u0432",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"\u041A\u0443\u043F\u0438\u0442\u044C \u041A\u0440\u0438\u0441\u0442\u0430\u043B\u043B \u0421\u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u044F",recomendedHeading:"\u0420\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u043C\u044B\u0435 \u0442\u043E\u0432\u0430\u0440\u044B",paimonHeading:"\u041C\u0430\u0433\u0430\u0437\u0438\u043D \u041F\u0430\u0439\u043C\u043E\u043D",welkinNote:"\u041C\u043E\u0436\u043D\u043E \u043A\u0443\u043F\u0438\u0442\u044C \u043D\u0435\u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u043D\u043E\u0435 \u043A\u043E\u043B-\u0432\u043E \u0440\u0430\u0437",limitedOffer:"\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u043D\u043E\u0435 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u0435",noLimitTime:"\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u0431\u0435\u0437 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"\u0411\u043B\u0430\u0433\u043E\u0441\u043B\u043E\u0432\u0435\u043D\u0438\u0435 \u043F\u043E\u043B\u043E\u0439 \u043B\u0443\u043D\u044B",newOutfit:"\u041D\u043E\u0432\u044B\u0435 \u043A\u043E\u0441\u0442\u044E\u043C\u044B \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439",dayRemaining:"\u041E\u0441\u0442\u0430\u043B\u043E\u0441\u044C \u0434\u043D\u0435\u0439: {days}",alreadyClaimed:"\u041D\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u0441\u0435\u0433\u043E\u0434\u043D\u044F \u0443\u0436\u0435 \u043F\u043E\u043B\u0443\u0435\u043D\u043E",instantlyGet:"\u0412\u0445\u043E\u0434\u0438\u0442 \u0432 \u043F\u043E\u043A\u0443\u043F\u043A\u0443",dailyGift:"\u0415\u0436\u0435\u0434\u043D\u0435\u0432\u043D\u044B\u0439 \u043F\u043E\u0434\u0430\u0440\u043E\u043A",obtainTotal:"\u0418\u0442\u043E\u0433 \u043D\u0430\u0433\u0440\u0430\u0434 \u0437\u0430 30 \u0434\u043D\u0435\u0439<br>\u041A\u0440\u0438\u0441\u0442\u0430\u043B\u043B\u044B \u0421\u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u044F: \xD7{totalGenesis}<br>\u041A\u0430\u043C\u043D\u0438 \u0418\u0441\u0442\u043E\u043A\u0430: \xD7{totalPrimo}",claimingBlessing:"\u041D\u0430\u0436\u043C\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043D\u0430\u0433\u0440\u0430\u0434\u044B \u0411\u043B\u0430\u0433\u043E\u0441\u043B\u043E\u0432\u0435\u043D\u0438\u044F \u043F\u043E\u043B\u043E\u0439 \u043B\u0443\u043D\u044B \u0437\u0430 \u0441\u0435\u0433\u043E\u0434\u043D\u044F.",issuedPurchase:"\u0412\u044B\u0434\u0430\u0451\u0442\u0441\u044F \u043F\u0440\u0438 \u043F\u043E\u043A\u0443\u043F\u043A\u0435",collect:"\u0421\u043E\u0431\u0438\u0440\u0430\u0439\u0442\u0435 \u0435\u0436\u0435\u0434\u043D\u0435\u0432\u043D\u044B\u0435 \u043D\u0430\u0433\u0440\u0430\u0434\u044B \u0437\u0430 \u0432\u0445\u043E\u0434 \u0432 \u0442\u0435\u0447\u0435\u043D\u0438\u0435 30 \u0434\u043D\u0435\u0439"},exchange:{starglitter:"\u0417\u0432\u0451\u0437\u0434\u043D\u044B\u0439 \u0431\u043B\u0435\u0441\u043A",stardust:"\u0417\u0432\u0451\u0437\u0434\u043D\u0430\u044F \u043F\u044B\u043B\u044C",primogem:"\u041A\u0430\u043C\u043D\u0438 \u0418\u0441\u0442\u043E\u043A\u0430"},item:{genesis:"\u041A\u0440\u0438\u0441\u0442\u0430\u043B\u043B \u0421\u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u044F",primogem:"\u041A\u0430\u043C\u0435\u043D\u044C \u0418\u0441\u0442\u043E\u043A\u0430",intertwined:"\u041F\u0435\u0440\u0435\u043F\u043B\u0435\u0442\u0430\u044E\u0449\u0438\u0435\u0441\u044F \u0441\u0443\u0434\u044C\u0431\u044B",acquaint:"\u0421\u0443\u0434\u044C\u0431\u043E\u043D\u043E\u0441\u043D\u044B\u0435 \u0432\u0441\u0442\u0440\u0435\u0447\u0438",starglitter:"\u0411\u043B\u0443\u0436\u0434\u0430\u044E\u0449\u0438\u0439 \u0437\u0432\u0451\u0437\u0434\u043D\u044B\u0439 \u0431\u043B\u0435\u0441\u043A",stardust:"\u0411\u043B\u0443\u0436\u0434\u0430\u044E\u0449\u0430\u044F \u0437\u0432\u0451\u0437\u0434\u043D\u0430\u044F \u043F\u044B\u043B\u044C"},description:{intertwined:"\u0421\u0443\u0434\u044C\u0431\u043E\u043D\u043E\u0441\u043D\u044B\u0439 \u043A\u0430\u043C\u0435\u043D\u044C, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0441\u043E\u0435\u0434\u0438\u043D\u044F\u0435\u0442 \u043C\u0435\u0447\u0442\u044B. \u0415\u0433\u043E \u0431\u043B\u0451\u043A\u043B\u043E\u0435 \u0441\u0432\u0435\u0447\u0435\u043D\u0438\u0435 \u043F\u0435\u0440\u0435\u043F\u043B\u0435\u0442\u0430\u0435\u0442 \u0441\u0443\u0434\u044C\u0431\u044B \u0438 \u0441\u043E\u0435\u0434\u0438\u043D\u044F\u0435\u0442 \u043C\u0435\u0447\u0442\u044B \u0442\u0430\u043A \u0436\u0435, \u043A\u0430\u043A \u0437\u0432\u0451\u0437\u0434\u044B \u0441\u043E\u0435\u0434\u0438\u043D\u044F\u044E\u0442\u0441\u044F \u0432 \u0441\u043E\u0437\u0432\u0435\u0437\u0434\u0438\u044F.",acquaint:"\u0421\u0435\u043C\u0435\u043D\u0430 \u043D\u0430\u0434\u0435\u0436\u0434\u044B, \u043E\u0441\u0432\u0435\u0449\u0430\u044E\u0449\u0438\u0435 \u043D\u043E\u0447\u043D\u043E\u0435 \u043D\u0435\u0431\u043E. \u041D\u0435\u0441\u043C\u043E\u0442\u0440\u044F \u043D\u0430 \u0440\u0430\u0441\u0441\u0442\u043E\u044F\u043D\u0438\u0435, \u0442\u0435 \u043A\u043E\u043C\u0443 \u0441\u0443\u0436\u0434\u0435\u043D\u043E \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044C\u0441\u044F, \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043D\u0430\u0439\u0434\u0443\u0442 \u0434\u0440\u0443\u0433 \u0434\u0440\u0443\u0433\u0430 \u043F\u043E\u0434 \u0437\u0432\u0451\u0437\u0434\u0430\u043C\u0438."}},H={text:"\u0418\u043D\u0432\u0435\u043D\u0442\u0430\u0440\u044C",unsetOutfit:"\u0421\u043D\u044F\u0442\u044C \u043D\u0430\u0440\u044F\u0434",setOutfit:"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043D\u0430\u0440\u044F\u0434 \u0434\u043B\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430",refinement:"\u0420\u0430\u043D\u0433 \u043F\u0440\u043E\u0431\u0443\u0436\u0434\u0435\u043D\u0438\u044F {count}",constellation:"\u0421\u043E\u0437\u0432\u0435\u0437\u0434\u0438\u0435 {count}",extra:"{count} \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0435(-\u044B\u0435)",firstSummon:"\u0412\u043F\u0435\u0440\u0432\u044B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D {date}",notOwned:"\u041D\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D",sort:"\u0424\u0438\u043B\u044C\u0442\u0440",rarity:"\u041A\u0430\u0447\u0435\u0441\u0442\u0432\u043E",name:"\u0418\u043C\u044F",quantity:"\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E",element:"\u042D\u043B\u0435\u043C\u0435\u043D\u0442",release:"Release Date",type:"\u0422\u0438\u043F",owned:"\u041D\u0430\u043B\u0438\u0447\u0438\u0435",showAllOption:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0435\u0445 {item}"},z={no:"\u041D\u0435\u0442",yes:"\u0414\u0430",text:"\u041C\u0435\u043D\u044E",feedback:"Feedback",options:"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438",updates:"\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"\u042F\u0437\u044B\u043A",currency:"\u0412\u0430\u043B\u044E\u0442\u0430",fates:"Number of Wishes",unlimited:"Unlimited",manual:"Manual Input",mute:"\u0412\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0437\u0432\u0443\u043A",switchBanner:"\u041F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0431\u0430\u043D\u043D\u0435\u0440",showAllitems:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u044B \u0432 \u0438\u043D\u0432\u0435\u043D\u0442\u0430\u0440\u0435",autoskip:"\u0412\u0441\u0435\u0433\u0434\u0430 \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u0430\u0442\u044C \u0430\u043D\u0438\u043C\u0430\u0446\u0438\u044E \u0432\u044B\u043F\u0430\u0434\u0435\u043D\u0438\u044F",animatedbg:"\u0410\u043D\u0438\u043C\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0444\u043E\u043D",multiRoll:"Number per multi-roll",factoryReset:"\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u0434\u0430\u043D\u043D\u044B\u0445",resetTitle:"\u0421\u0431\u0440\u043E\u0441 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A",rotate:"\u041F\u043E\u0432\u0435\u0440\u043D\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043E\u0440\u0439\u0441\u0442\u0432\u043E \u0434\u043B\u044F \u043B\u0443\u0447\u0448\u0435\u0433\u043E \u0432\u043F\u0435\u0447\u0430\u0442\u043B\u0435\u043D\u0438\u044F",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043A\u044D\u0448 ({size})? <small>\u041F\u043E\u0441\u043B\u0435 \u044D\u0442\u043E\u0433\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F \u0432\u0441\u0435 \u0430\u0441\u0441\u0435\u0442\u044B \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u044B \u0437\u0430\u043D\u043E\u0432\u043E!</small>",resetButton:"\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044E",resetPrompt:"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C <strong> \u0432\u0441\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 </strong> \u0438 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E?",resetSuccess:"\u0421\u0431\u0440\u043E\u0441 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0451\u043D \u0443\u0441\u043F\u0435\u0448\u043D\u043E!",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0435\u0433\u043E \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0437\u0434\u0435\u0441\u044C!",noKey:"\u0415\u0449\u0451 \u043D\u0435\u0442 \u043A\u043B\u044E\u0447\u0430?",verifyFail:"\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C \u043A\u043B\u044E\u0447, \u043F\u0440\u043E\u0432\u0440\u044C\u0442\u0435 \u0432\u0430\u0448\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435.",invalidKey:"\u041A\u043B\u044E\u0447 \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u0435\u043D.",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u043B\u044E\u0447",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* \u041C\u043D\u0435 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u043F\u043E\u043F\u0440\u043E\u0441\u0438\u0442\u044C \u043F\u0440\u043E\u0449\u0435\u043D\u0438\u044F \u0437\u0430 \u0440\u0435\u043A\u043B\u0430\u043C\u0443. \u041C\u043D\u0435 \u043D\u0435 \u0445\u043E\u0447\u0435\u0442\u0441\u044F \u043F\u043E\u0440\u0442\u0438\u0442\u044C \u0432\u0430\u0448 \u043F\u0440\u043E\u0446\u0435\u0441\u0441 \u043C\u043E\u043B\u0438\u0442\u0432\u044B, \u043D\u043E \u0443 \u043C\u0435\u043D\u044F \u043D\u0435\u0442 \u043A\u043E\u043C\u0430\u043D\u0434\u044B \u0438\u043B\u0438 \u0441\u043F\u043E\u043D\u0441\u043E\u0440\u0430 \u0434\u043B\u044F \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043D\u0438\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F. \u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0445\u043E\u0442\u0438\u0442\u0435 \u043D\u0438\u0447\u0435\u0433\u043E \u0442\u0440\u0430\u0442\u0438\u0442\u044C, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0434\u0431\u043B\u043E\u043A \u0438\u043B\u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0439 DNS-\u0441\u0435\u0440\u0432\u0435\u0440, \u044F \u043D\u0435 \u0431\u0443\u0434\u0443 \u0432\u0430\u043C \u0437\u0430\u043F\u0440\u0435\u0449\u0430\u0442\u044C."},G={title:e,character:n,weapon:a,vision:t,anemo:r,cryo:o,dendro:s,electro:i,hydro:l,geo:p,pyro:c,bow:d,catalyst:u,claymore:m,sword:h,polearm:y,extra:g,obtained:b,waiting:f,connectionFailed:w,confirmButton:v,cancelButton:B,disclaimer:C,fanmade:k,pressToContinue:S,installInstruction:N,share:P,screenshot:x,capturing:A,rewardFirstShare:I,version:D,donate:R,banner:F,editor:T,customBanner:W,backupRestore:E,wish:K,outfit:M,details:O,history:L,shop:U,inventory:H,menu:z};export{r as anemo,E as backupRestore,F as banner,d as bow,B as cancelButton,A as capturing,u as catalyst,n as character,m as claymore,v as confirmButton,w as connectionFailed,o as cryo,W as customBanner,G as default,s as dendro,O as details,C as disclaimer,R as donate,T as editor,i as electro,g as extra,k as fanmade,p as geo,L as history,l as hydro,N as installInstruction,H as inventory,z as menu,b as obtained,M as outfit,y as polearm,S as pressToContinue,c as pyro,I as rewardFirstShare,x as screenshot,P as share,U as shop,h as sword,e as title,D as version,t as vision,f as waiting,a as weapon,K as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/runtime.esm-4bf604c8.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/runtime.esm-4bf604c8.js
deleted file mode 100644
index b82f31e4..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/runtime.esm-4bf604c8.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import{d as L,w as ce}from"./index-0189b6d0.js";var ze=function(t){return $e(t)&&!Je(t)};function $e(e){return!!e&&typeof e=="object"}function Je(e){var t=Object.prototype.toString.call(e);return t==="[object RegExp]"||t==="[object Date]"||Ye(e)}var Qe=typeof Symbol=="function"&&Symbol.for,qe=Qe?Symbol.for("react.element"):60103;function Ye(e){return e.$$typeof===qe}function Ke(e){return Array.isArray(e)?[]:{}}function j(e,t){return t.clone!==!1&&t.isMergeableObject(e)?I(Ke(e),e,t):e}function et(e,t,r){return e.concat(t).map(function(n){return j(n,r)})}function tt(e,t){if(!t.customMerge)return I;var r=t.customMerge(e);return typeof r=="function"?r:I}function rt(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return e.propertyIsEnumerable(t)}):[]}function ge(e){return Object.keys(e).concat(rt(e))}function Ie(e,t){try{return t in e}catch{return!1}}function nt(e,t){return Ie(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}function it(e,t,r){var n={};return r.isMergeableObject(e)&&ge(e).forEach(function(i){n[i]=j(e[i],r)}),ge(t).forEach(function(i){nt(e,i)||(Ie(e,i)&&r.isMergeableObject(t[i])?n[i]=tt(i,r)(e[i],t[i],r):n[i]=j(t[i],r))}),n}function I(e,t,r){r=r||{},r.arrayMerge=r.arrayMerge||et,r.isMergeableObject=r.isMergeableObject||ze,r.cloneUnlessOtherwiseSpecified=j;var n=Array.isArray(t),i=Array.isArray(e),a=n===i;return a?n?r.arrayMerge(e,t,r):it(e,t,r):j(t,r)}I.all=function(t,r){if(!Array.isArray(t))throw new Error("first argument should be an array");return t.reduce(function(n,i){return I(n,i,r)},{})};var at=I,st=at,ie=function(e,t){return ie=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,n){r.__proto__=n}||function(r,n){for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(r[i]=n[i])},ie(e,t)};function J(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");ie(e,t);function r(){this.constructor=e}e.prototype=t===null?Object.create(t):(r.prototype=t.prototype,new r)}var p=function(){return p=Object.assign||function(t){for(var r,n=1,i=arguments.length;n<i;n++){r=arguments[n];for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&(t[a]=r[a])}return t},p.apply(this,arguments)};function Y(e,t,r){if(r||arguments.length===2)for(var n=0,i=t.length,a;n<i;n++)(a||!(n in t))&&(a||(a=Array.prototype.slice.call(t,0,n)),a[n]=t[n]);return e.concat(a||Array.prototype.slice.call(t))}var c;(function(e){e[e.EXPECT_ARGUMENT_CLOSING_BRACE=1]="EXPECT_ARGUMENT_CLOSING_BRACE",e[e.EMPTY_ARGUMENT=2]="EMPTY_ARGUMENT",e[e.MALFORMED_ARGUMENT=3]="MALFORMED_ARGUMENT",e[e.EXPECT_ARGUMENT_TYPE=4]="EXPECT_ARGUMENT_TYPE",e[e.INVALID_ARGUMENT_TYPE=5]="INVALID_ARGUMENT_TYPE",e[e.EXPECT_ARGUMENT_STYLE=6]="EXPECT_ARGUMENT_STYLE",e[e.INVALID_NUMBER_SKELETON=7]="INVALID_NUMBER_SKELETON",e[e.INVALID_DATE_TIME_SKELETON=8]="INVALID_DATE_TIME_SKELETON",e[e.EXPECT_NUMBER_SKELETON=9]="EXPECT_NUMBER_SKELETON",e[e.EXPECT_DATE_TIME_SKELETON=10]="EXPECT_DATE_TIME_SKELETON",e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE=11]="UNCLOSED_QUOTE_IN_ARGUMENT_STYLE",e[e.EXPECT_SELECT_ARGUMENT_OPTIONS=12]="EXPECT_SELECT_ARGUMENT_OPTIONS",e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE=13]="EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE=14]="INVALID_PLURAL_ARGUMENT_OFFSET_VALUE",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR=15]="EXPECT_SELECT_ARGUMENT_SELECTOR",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR=16]="EXPECT_PLURAL_ARGUMENT_SELECTOR",e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT=17]="EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT",e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT=18]="EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT",e[e.INVALID_PLURAL_ARGUMENT_SELECTOR=19]="INVALID_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR=20]="DUPLICATE_PLURAL_ARGUMENT_SELECTOR",e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR=21]="DUPLICATE_SELECT_ARGUMENT_SELECTOR",e[e.MISSING_OTHER_CLAUSE=22]="MISSING_OTHER_CLAUSE",e[e.INVALID_TAG=23]="INVALID_TAG",e[e.INVALID_TAG_NAME=25]="INVALID_TAG_NAME",e[e.UNMATCHED_CLOSING_TAG=26]="UNMATCHED_CLOSING_TAG",e[e.UNCLOSED_TAG=27]="UNCLOSED_TAG"})(c||(c={}));var x;(function(e){e[e.literal=0]="literal",e[e.argument=1]="argument",e[e.number=2]="number",e[e.date=3]="date",e[e.time=4]="time",e[e.select=5]="select",e[e.plural=6]="plural",e[e.pound=7]="pound",e[e.tag=8]="tag"})(x||(x={}));var P;(function(e){e[e.number=0]="number",e[e.dateTime=1]="dateTime"})(P||(P={}));function ve(e){return e.type===x.literal}function ot(e){return e.type===x.argument}function Pe(e){return e.type===x.number}function Ne(e){return e.type===x.date}function Oe(e){return e.type===x.time}function Le(e){return e.type===x.select}function Me(e){return e.type===x.plural}function ht(e){return e.type===x.pound}function Ce(e){return e.type===x.tag}function we(e){return!!(e&&typeof e=="object"&&e.type===P.number)}function ae(e){return!!(e&&typeof e=="object"&&e.type===P.dateTime)}var Re=/[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/,ut=/(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;function lt(e){var t={};return e.replace(ut,function(r){var n=r.length;switch(r[0]){case"G":t.era=n===4?"long":n===5?"narrow":"short";break;case"y":t.year=n===2?"2-digit":"numeric";break;case"Y":case"u":case"U":case"r":throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");case"q":case"Q":throw new RangeError("`q/Q` (quarter) patterns are not supported");case"M":case"L":t.month=["numeric","2-digit","short","long","narrow"][n-1];break;case"w":case"W":throw new RangeError("`w/W` (week) patterns are not supported");case"d":t.day=["numeric","2-digit"][n-1];break;case"D":case"F":case"g":throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");case"E":t.weekday=n===4?"short":n===5?"narrow":"short";break;case"e":if(n<4)throw new RangeError("`e..eee` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"c":if(n<4)throw new RangeError("`c..ccc` (weekday) patterns are not supported");t.weekday=["short","long","narrow","short"][n-4];break;case"a":t.hour12=!0;break;case"b":case"B":throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");case"h":t.hourCycle="h12",t.hour=["numeric","2-digit"][n-1];break;case"H":t.hourCycle="h23",t.hour=["numeric","2-digit"][n-1];break;case"K":t.hourCycle="h11",t.hour=["numeric","2-digit"][n-1];break;case"k":t.hourCycle="h24",t.hour=["numeric","2-digit"][n-1];break;case"j":case"J":case"C":throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");case"m":t.minute=["numeric","2-digit"][n-1];break;case"s":t.second=["numeric","2-digit"][n-1];break;case"S":case"A":throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");case"z":t.timeZoneName=n<4?"short":"long";break;case"Z":case"O":case"v":case"V":case"X":case"x":throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead")}return""}),t}var ft=/[\t-\r \x85\u200E\u200F\u2028\u2029]/i;function ct(e){if(e.length===0)throw new Error("Number skeleton cannot be empty");for(var t=e.split(ft).filter(function(f){return f.length>0}),r=[],n=0,i=t;n<i.length;n++){var a=i[n],s=a.split("/");if(s.length===0)throw new Error("Invalid number skeleton");for(var h=s[0],l=s.slice(1),u=0,o=l;u<o.length;u++){var b=o[u];if(b.length===0)throw new Error("Invalid number skeleton")}r.push({stem:h,options:l})}return r}function mt(e){return e.replace(/^(.*?)-/,"")}var ye=/^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g,Ue=/^(@+)?(\+|#+)?[rs]?$/g,pt=/(\*)(0+)|(#+)(0+)|(0+)/g,Ge=/^(0+)$/;function de(e){var t={};return e[e.length-1]==="r"?t.roundingPriority="morePrecision":e[e.length-1]==="s"&&(t.roundingPriority="lessPrecision"),e.replace(Ue,function(r,n,i){return typeof i!="string"?(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length):i==="+"?t.minimumSignificantDigits=n.length:n[0]==="#"?t.maximumSignificantDigits=n.length:(t.minimumSignificantDigits=n.length,t.maximumSignificantDigits=n.length+(typeof i=="string"?i.length:0)),""}),t}function De(e){switch(e){case"sign-auto":return{signDisplay:"auto"};case"sign-accounting":case"()":return{currencySign:"accounting"};case"sign-always":case"+!":return{signDisplay:"always"};case"sign-accounting-always":case"()!":return{signDisplay:"always",currencySign:"accounting"};case"sign-except-zero":case"+?":return{signDisplay:"exceptZero"};case"sign-accounting-except-zero":case"()?":return{signDisplay:"exceptZero",currencySign:"accounting"};case"sign-never":case"+_":return{signDisplay:"never"}}}function bt(e){var t;if(e[0]==="E"&&e[1]==="E"?(t={notation:"engineering"},e=e.slice(2)):e[0]==="E"&&(t={notation:"scientific"},e=e.slice(1)),t){var r=e.slice(0,2);if(r==="+!"?(t.signDisplay="always",e=e.slice(2)):r==="+?"&&(t.signDisplay="exceptZero",e=e.slice(2)),!Ge.test(e))throw new Error("Malformed concise eng/scientific notation");t.minimumIntegerDigits=e.length}return t}function He(e){var t={},r=De(e);return r||t}function xt(e){for(var t={},r=0,n=e;r<n.length;r++){var i=n[r];switch(i.stem){case"percent":case"%":t.style="percent";continue;case"%x100":t.style="percent",t.scale=100;continue;case"currency":t.style="currency",t.currency=i.options[0];continue;case"group-off":case",_":t.useGrouping=!1;continue;case"precision-integer":case".":t.maximumFractionDigits=0;continue;case"measure-unit":case"unit":t.style="unit",t.unit=mt(i.options[0]);continue;case"compact-short":case"K":t.notation="compact",t.compactDisplay="short";continue;case"compact-long":case"KK":t.notation="compact",t.compactDisplay="long";continue;case"scientific":t=p(p(p({},t),{notation:"scientific"}),i.options.reduce(function(l,u){return p(p({},l),He(u))},{}));continue;case"engineering":t=p(p(p({},t),{notation:"engineering"}),i.options.reduce(function(l,u){return p(p({},l),He(u))},{}));continue;case"notation-simple":t.notation="standard";continue;case"unit-width-narrow":t.currencyDisplay="narrowSymbol",t.unitDisplay="narrow";continue;case"unit-width-short":t.currencyDisplay="code",t.unitDisplay="short";continue;case"unit-width-full-name":t.currencyDisplay="name",t.unitDisplay="long";continue;case"unit-width-iso-code":t.currencyDisplay="symbol";continue;case"scale":t.scale=parseFloat(i.options[0]);continue;case"integer-width":if(i.options.length>1)throw new RangeError("integer-width stems only accept a single optional option");i.options[0].replace(pt,function(l,u,o,b,f,E){if(u)t.minimumIntegerDigits=o.length;else{if(b&&f)throw new Error("We currently do not support maximum integer digits");if(E)throw new Error("We currently do not support exact integer digits")}return""});continue}if(Ge.test(i.stem)){t.minimumIntegerDigits=i.stem.length;continue}if(ye.test(i.stem)){if(i.options.length>1)throw new RangeError("Fraction-precision stems only accept a single optional option");i.stem.replace(ye,function(l,u,o,b,f,E){return o==="*"?t.minimumFractionDigits=u.length:b&&b[0]==="#"?t.maximumFractionDigits=b.length:f&&E?(t.minimumFractionDigits=f.length,t.maximumFractionDigits=f.length+E.length):(t.minimumFractionDigits=u.length,t.maximumFractionDigits=u.length),""});var a=i.options[0];a==="w"?t=p(p({},t),{trailingZeroDisplay:"stripIfInteger"}):a&&(t=p(p({},t),de(a)));continue}if(Ue.test(i.stem)){t=p(p({},t),de(i.stem));continue}var s=De(i.stem);s&&(t=p(p({},t),s));var h=bt(i.stem);h&&(t=p(p({},t),h))}return t}var W={AX:["H"],BQ:["H"],CP:["H"],CZ:["H"],DK:["H"],FI:["H"],ID:["H"],IS:["H"],ML:["H"],NE:["H"],RU:["H"],SE:["H"],SJ:["H"],SK:["H"],AS:["h","H"],BT:["h","H"],DJ:["h","H"],ER:["h","H"],GH:["h","H"],IN:["h","H"],LS:["h","H"],PG:["h","H"],PW:["h","H"],SO:["h","H"],TO:["h","H"],VU:["h","H"],WS:["h","H"],"001":["H","h"],AL:["h","H","hB"],TD:["h","H","hB"],"ca-ES":["H","h","hB"],CF:["H","h","hB"],CM:["H","h","hB"],"fr-CA":["H","h","hB"],"gl-ES":["H","h","hB"],"it-CH":["H","h","hB"],"it-IT":["H","h","hB"],LU:["H","h","hB"],NP:["H","h","hB"],PF:["H","h","hB"],SC:["H","h","hB"],SM:["H","h","hB"],SN:["H","h","hB"],TF:["H","h","hB"],VA:["H","h","hB"],CY:["h","H","hb","hB"],GR:["h","H","hb","hB"],CO:["h","H","hB","hb"],DO:["h","H","hB","hb"],KP:["h","H","hB","hb"],KR:["h","H","hB","hb"],NA:["h","H","hB","hb"],PA:["h","H","hB","hb"],PR:["h","H","hB","hb"],VE:["h","H","hB","hb"],AC:["H","h","hb","hB"],AI:["H","h","hb","hB"],BW:["H","h","hb","hB"],BZ:["H","h","hb","hB"],CC:["H","h","hb","hB"],CK:["H","h","hb","hB"],CX:["H","h","hb","hB"],DG:["H","h","hb","hB"],FK:["H","h","hb","hB"],GB:["H","h","hb","hB"],GG:["H","h","hb","hB"],GI:["H","h","hb","hB"],IE:["H","h","hb","hB"],IM:["H","h","hb","hB"],IO:["H","h","hb","hB"],JE:["H","h","hb","hB"],LT:["H","h","hb","hB"],MK:["H","h","hb","hB"],MN:["H","h","hb","hB"],MS:["H","h","hb","hB"],NF:["H","h","hb","hB"],NG:["H","h","hb","hB"],NR:["H","h","hb","hB"],NU:["H","h","hb","hB"],PN:["H","h","hb","hB"],SH:["H","h","hb","hB"],SX:["H","h","hb","hB"],TA:["H","h","hb","hB"],ZA:["H","h","hb","hB"],"af-ZA":["H","h","hB","hb"],AR:["H","h","hB","hb"],CL:["H","h","hB","hb"],CR:["H","h","hB","hb"],CU:["H","h","hB","hb"],EA:["H","h","hB","hb"],"es-BO":["H","h","hB","hb"],"es-BR":["H","h","hB","hb"],"es-EC":["H","h","hB","hb"],"es-ES":["H","h","hB","hb"],"es-GQ":["H","h","hB","hb"],"es-PE":["H","h","hB","hb"],GT:["H","h","hB","hb"],HN:["H","h","hB","hb"],IC:["H","h","hB","hb"],KG:["H","h","hB","hb"],KM:["H","h","hB","hb"],LK:["H","h","hB","hb"],MA:["H","h","hB","hb"],MX:["H","h","hB","hb"],NI:["H","h","hB","hb"],PY:["H","h","hB","hb"],SV:["H","h","hB","hb"],UY:["H","h","hB","hb"],JP:["H","h","K"],AD:["H","hB"],AM:["H","hB"],AO:["H","hB"],AT:["H","hB"],AW:["H","hB"],BE:["H","hB"],BF:["H","hB"],BJ:["H","hB"],BL:["H","hB"],BR:["H","hB"],CG:["H","hB"],CI:["H","hB"],CV:["H","hB"],DE:["H","hB"],EE:["H","hB"],FR:["H","hB"],GA:["H","hB"],GF:["H","hB"],GN:["H","hB"],GP:["H","hB"],GW:["H","hB"],HR:["H","hB"],IL:["H","hB"],IT:["H","hB"],KZ:["H","hB"],MC:["H","hB"],MD:["H","hB"],MF:["H","hB"],MQ:["H","hB"],MZ:["H","hB"],NC:["H","hB"],NL:["H","hB"],PM:["H","hB"],PT:["H","hB"],RE:["H","hB"],RO:["H","hB"],SI:["H","hB"],SR:["H","hB"],ST:["H","hB"],TG:["H","hB"],TR:["H","hB"],WF:["H","hB"],YT:["H","hB"],BD:["h","hB","H"],PK:["h","hB","H"],AZ:["H","hB","h"],BA:["H","hB","h"],BG:["H","hB","h"],CH:["H","hB","h"],GE:["H","hB","h"],LI:["H","hB","h"],ME:["H","hB","h"],RS:["H","hB","h"],UA:["H","hB","h"],UZ:["H","hB","h"],XK:["H","hB","h"],AG:["h","hb","H","hB"],AU:["h","hb","H","hB"],BB:["h","hb","H","hB"],BM:["h","hb","H","hB"],BS:["h","hb","H","hB"],CA:["h","hb","H","hB"],DM:["h","hb","H","hB"],"en-001":["h","hb","H","hB"],FJ:["h","hb","H","hB"],FM:["h","hb","H","hB"],GD:["h","hb","H","hB"],GM:["h","hb","H","hB"],GU:["h","hb","H","hB"],GY:["h","hb","H","hB"],JM:["h","hb","H","hB"],KI:["h","hb","H","hB"],KN:["h","hb","H","hB"],KY:["h","hb","H","hB"],LC:["h","hb","H","hB"],LR:["h","hb","H","hB"],MH:["h","hb","H","hB"],MP:["h","hb","H","hB"],MW:["h","hb","H","hB"],NZ:["h","hb","H","hB"],SB:["h","hb","H","hB"],SG:["h","hb","H","hB"],SL:["h","hb","H","hB"],SS:["h","hb","H","hB"],SZ:["h","hb","H","hB"],TC:["h","hb","H","hB"],TT:["h","hb","H","hB"],UM:["h","hb","H","hB"],US:["h","hb","H","hB"],VC:["h","hb","H","hB"],VG:["h","hb","H","hB"],VI:["h","hb","H","hB"],ZM:["h","hb","H","hB"],BO:["H","hB","h","hb"],EC:["H","hB","h","hb"],ES:["H","hB","h","hb"],GQ:["H","hB","h","hb"],PE:["H","hB","h","hb"],AE:["h","hB","hb","H"],"ar-001":["h","hB","hb","H"],BH:["h","hB","hb","H"],DZ:["h","hB","hb","H"],EG:["h","hB","hb","H"],EH:["h","hB","hb","H"],HK:["h","hB","hb","H"],IQ:["h","hB","hb","H"],JO:["h","hB","hb","H"],KW:["h","hB","hb","H"],LB:["h","hB","hb","H"],LY:["h","hB","hb","H"],MO:["h","hB","hb","H"],MR:["h","hB","hb","H"],OM:["h","hB","hb","H"],PH:["h","hB","hb","H"],PS:["h","hB","hb","H"],QA:["h","hB","hb","H"],SA:["h","hB","hb","H"],SD:["h","hB","hb","H"],SY:["h","hB","hb","H"],TN:["h","hB","hb","H"],YE:["h","hB","hb","H"],AF:["H","hb","hB","h"],LA:["H","hb","hB","h"],CN:["H","hB","hb","h"],LV:["H","hB","hb","h"],TL:["H","hB","hb","h"],"zu-ZA":["H","hB","hb","h"],CD:["hB","H"],IR:["hB","H"],"hi-IN":["hB","h","H"],"kn-IN":["hB","h","H"],"ml-IN":["hB","h","H"],"te-IN":["hB","h","H"],KH:["hB","h","H","hb"],"ta-IN":["hB","h","hb","H"],BN:["hb","hB","h","H"],MY:["hb","hB","h","H"],ET:["hB","hb","h","H"],"gu-IN":["hB","hb","h","H"],"mr-IN":["hB","hb","h","H"],"pa-IN":["hB","hb","h","H"],TW:["hB","hb","h","H"],KE:["hB","hb","H","h"],MM:["hB","hb","H","h"],TZ:["hB","hb","H","h"],UG:["hB","hb","H","h"]};function Et(e,t){for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);if(i==="j"){for(var a=0;n+1<e.length&&e.charAt(n+1)===i;)a++,n++;var s=1+(a&1),h=a<2?1:3+(a>>1),l="a",u=gt(t);for((u=="H"||u=="k")&&(h=0);h-- >0;)r+=l;for(;s-- >0;)r=u+r}else i==="J"?r+="H":r+=i}return r}function gt(e){var t=e.hourCycle;if(t===void 0&&e.hourCycles&&e.hourCycles.length&&(t=e.hourCycles[0]),t)switch(t){case"h24":return"k";case"h23":return"H";case"h12":return"h";case"h11":return"K";default:throw new Error("Invalid hourCycle")}var r=e.language,n;r!=="root"&&(n=e.maximize().region);var i=W[n||""]||W[r||""]||W["".concat(r,"-001")]||W["001"];return i[0]}var K,vt=new RegExp("^".concat(Re.source,"*")),yt=new RegExp("".concat(Re.source,"*$"));function m(e,t){return{start:e,end:t}}var dt=!!String.prototype.startsWith,Ht=!!String.fromCodePoint,Tt=!!Object.fromEntries,Bt=!!String.prototype.codePointAt,_t=!!String.prototype.trimStart,At=!!String.prototype.trimEnd,St=!!Number.isSafeInteger,It=St?Number.isSafeInteger:function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e&&Math.abs(e)<=9007199254740991},se=!0;try{var Pt=je("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");se=((K=Pt.exec("a"))===null||K===void 0?void 0:K[0])==="a"}catch{se=!1}var Te=dt?function(t,r,n){return t.startsWith(r,n)}:function(t,r,n){return t.slice(n,n+r.length)===r},oe=Ht?String.fromCodePoint:function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var n="",i=t.length,a=0,s;i>a;){if(s=t[a++],s>1114111)throw RangeError(s+" is not a valid code point");n+=s<65536?String.fromCharCode(s):String.fromCharCode(((s-=65536)>>10)+55296,s%1024+56320)}return n},Be=Tt?Object.fromEntries:function(t){for(var r={},n=0,i=t;n<i.length;n++){var a=i[n],s=a[0],h=a[1];r[s]=h}return r},Fe=Bt?function(t,r){return t.codePointAt(r)}:function(t,r){var n=t.length;if(!(r<0||r>=n)){var i=t.charCodeAt(r),a;return i<55296||i>56319||r+1===n||(a=t.charCodeAt(r+1))<56320||a>57343?i:(i-55296<<10)+(a-56320)+65536}},Nt=_t?function(t){return t.trimStart()}:function(t){return t.replace(vt,"")},Ot=At?function(t){return t.trimEnd()}:function(t){return t.replace(yt,"")};function je(e,t){return new RegExp(e,t)}var he;if(se){var _e=je("([^\\p{White_Space}\\p{Pattern_Syntax}]*)","yu");he=function(t,r){var n;_e.lastIndex=r;var i=_e.exec(t);return(n=i[1])!==null&&n!==void 0?n:""}}else he=function(t,r){for(var n=[];;){var i=Fe(t,r);if(i===void 0||Ve(i)||wt(i))break;n.push(i),r+=i>=65536?2:1}return oe.apply(void 0,n)};var Lt=function(){function e(t,r){r===void 0&&(r={}),this.message=t,this.position={offset:0,line:1,column:1},this.ignoreTag=!!r.ignoreTag,this.locale=r.locale,this.requiresOtherClause=!!r.requiresOtherClause,this.shouldParseSkeletons=!!r.shouldParseSkeletons}return e.prototype.parse=function(){if(this.offset()!==0)throw Error("parser can only be used once");return this.parseMessage(0,"",!1)},e.prototype.parseMessage=function(t,r,n){for(var i=[];!this.isEOF();){var a=this.char();if(a===123){var s=this.parseArgument(t,n);if(s.err)return s;i.push(s.val)}else{if(a===125&&t>0)break;if(a===35&&(r==="plural"||r==="selectordinal")){var h=this.clonePosition();this.bump(),i.push({type:x.pound,location:m(h,this.clonePosition())})}else if(a===60&&!this.ignoreTag&&this.peek()===47){if(n)break;return this.error(c.UNMATCHED_CLOSING_TAG,m(this.clonePosition(),this.clonePosition()))}else if(a===60&&!this.ignoreTag&&ue(this.peek()||0)){var s=this.parseTag(t,r);if(s.err)return s;i.push(s.val)}else{var s=this.parseLiteral(t,r);if(s.err)return s;i.push(s.val)}}}return{val:i,err:null}},e.prototype.parseTag=function(t,r){var n=this.clonePosition();this.bump();var i=this.parseTagName();if(this.bumpSpace(),this.bumpIf("/>"))return{val:{type:x.literal,value:"<".concat(i,"/>"),location:m(n,this.clonePosition())},err:null};if(this.bumpIf(">")){var a=this.parseMessage(t+1,r,!0);if(a.err)return a;var s=a.val,h=this.clonePosition();if(this.bumpIf("</")){if(this.isEOF()||!ue(this.char()))return this.error(c.INVALID_TAG,m(h,this.clonePosition()));var l=this.clonePosition(),u=this.parseTagName();return i!==u?this.error(c.UNMATCHED_CLOSING_TAG,m(l,this.clonePosition())):(this.bumpSpace(),this.bumpIf(">")?{val:{type:x.tag,value:i,children:s,location:m(n,this.clonePosition())},err:null}:this.error(c.INVALID_TAG,m(h,this.clonePosition())))}else return this.error(c.UNCLOSED_TAG,m(n,this.clonePosition()))}else return this.error(c.INVALID_TAG,m(n,this.clonePosition()))},e.prototype.parseTagName=function(){var t=this.offset();for(this.bump();!this.isEOF()&&Ct(this.char());)this.bump();return this.message.slice(t,this.offset())},e.prototype.parseLiteral=function(t,r){for(var n=this.clonePosition(),i="";;){var a=this.tryParseQuote(r);if(a){i+=a;continue}var s=this.tryParseUnquoted(t,r);if(s){i+=s;continue}var h=this.tryParseLeftAngleBracket();if(h){i+=h;continue}break}var l=m(n,this.clonePosition());return{val:{type:x.literal,value:i,location:l},err:null}},e.prototype.tryParseLeftAngleBracket=function(){return!this.isEOF()&&this.char()===60&&(this.ignoreTag||!Mt(this.peek()||0))?(this.bump(),"<"):null},e.prototype.tryParseQuote=function(t){if(this.isEOF()||this.char()!==39)return null;switch(this.peek()){case 39:return this.bump(),this.bump(),"'";case 123:case 60:case 62:case 125:break;case 35:if(t==="plural"||t==="selectordinal")break;return null;default:return null}this.bump();var r=[this.char()];for(this.bump();!this.isEOF();){var n=this.char();if(n===39)if(this.peek()===39)r.push(39),this.bump();else{this.bump();break}else r.push(n);this.bump()}return oe.apply(void 0,r)},e.prototype.tryParseUnquoted=function(t,r){if(this.isEOF())return null;var n=this.char();return n===60||n===123||n===35&&(r==="plural"||r==="selectordinal")||n===125&&t>0?null:(this.bump(),oe(n))},e.prototype.parseArgument=function(t,r){var n=this.clonePosition();if(this.bump(),this.bumpSpace(),this.isEOF())return this.error(c.EXPECT_ARGUMENT_CLOSING_BRACE,m(n,this.clonePosition()));if(this.char()===125)return this.bump(),this.error(c.EMPTY_ARGUMENT,m(n,this.clonePosition()));var i=this.parseIdentifierIfPossible().value;if(!i)return this.error(c.MALFORMED_ARGUMENT,m(n,this.clonePosition()));if(this.bumpSpace(),this.isEOF())return this.error(c.EXPECT_ARGUMENT_CLOSING_BRACE,m(n,this.clonePosition()));switch(this.char()){case 125:return this.bump(),{val:{type:x.argument,value:i,location:m(n,this.clonePosition())},err:null};case 44:return this.bump(),this.bumpSpace(),this.isEOF()?this.error(c.EXPECT_ARGUMENT_CLOSING_BRACE,m(n,this.clonePosition())):this.parseArgumentOptions(t,r,i,n);default:return this.error(c.MALFORMED_ARGUMENT,m(n,this.clonePosition()))}},e.prototype.parseIdentifierIfPossible=function(){var t=this.clonePosition(),r=this.offset(),n=he(this.message,r),i=r+n.length;this.bumpTo(i);var a=this.clonePosition(),s=m(t,a);return{value:n,location:s}},e.prototype.parseArgumentOptions=function(t,r,n,i){var a,s=this.clonePosition(),h=this.parseIdentifierIfPossible().value,l=this.clonePosition();switch(h){case"":return this.error(c.EXPECT_ARGUMENT_TYPE,m(s,l));case"number":case"date":case"time":{this.bumpSpace();var u=null;if(this.bumpIf(",")){this.bumpSpace();var o=this.clonePosition(),b=this.parseSimpleArgStyleIfPossible();if(b.err)return b;var f=Ot(b.val);if(f.length===0)return this.error(c.EXPECT_ARGUMENT_STYLE,m(this.clonePosition(),this.clonePosition()));var E=m(o,this.clonePosition());u={style:f,styleLocation:E}}var v=this.tryParseArgumentClose(i);if(v.err)return v;var y=m(i,this.clonePosition());if(u&&Te(u?.style,"::",0)){var B=Nt(u.style.slice(2));if(h==="number"){var b=this.parseNumberSkeletonFromString(B,u.styleLocation);return b.err?b:{val:{type:x.number,value:n,location:y,style:b.val},err:null}}else{if(B.length===0)return this.error(c.EXPECT_DATE_TIME_SKELETON,y);var w=B;this.locale&&(w=Et(B,this.locale));var f={type:P.dateTime,pattern:w,location:u.styleLocation,parsedOptions:this.shouldParseSkeletons?lt(w):{}},S=h==="date"?x.date:x.time;return{val:{type:S,value:n,location:y,style:f},err:null}}}return{val:{type:h==="number"?x.number:h==="date"?x.date:x.time,value:n,location:y,style:(a=u?.style)!==null&&a!==void 0?a:null},err:null}}case"plural":case"selectordinal":case"select":{var d=this.clonePosition();if(this.bumpSpace(),!this.bumpIf(","))return this.error(c.EXPECT_SELECT_ARGUMENT_OPTIONS,m(d,p({},d)));this.bumpSpace();var R=this.parseIdentifierIfPossible(),_=0;if(h!=="select"&&R.value==="offset"){if(!this.bumpIf(":"))return this.error(c.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,m(this.clonePosition(),this.clonePosition()));this.bumpSpace();var b=this.tryParseDecimalInteger(c.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE,c.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);if(b.err)return b;this.bumpSpace(),R=this.parseIdentifierIfPossible(),_=b.val}var k=this.tryParsePluralOrSelectOptions(t,h,r,R);if(k.err)return k;var v=this.tryParseArgumentClose(i);if(v.err)return v;var Ee=m(i,this.clonePosition());return h==="select"?{val:{type:x.select,value:n,options:Be(k.val),location:Ee},err:null}:{val:{type:x.plural,value:n,options:Be(k.val),offset:_,pluralType:h==="plural"?"cardinal":"ordinal",location:Ee},err:null}}default:return this.error(c.INVALID_ARGUMENT_TYPE,m(s,l))}},e.prototype.tryParseArgumentClose=function(t){return this.isEOF()||this.char()!==125?this.error(c.EXPECT_ARGUMENT_CLOSING_BRACE,m(t,this.clonePosition())):(this.bump(),{val:!0,err:null})},e.prototype.parseSimpleArgStyleIfPossible=function(){for(var t=0,r=this.clonePosition();!this.isEOF();){var n=this.char();switch(n){case 39:{this.bump();var i=this.clonePosition();if(!this.bumpUntil("'"))return this.error(c.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE,m(i,this.clonePosition()));this.bump();break}case 123:{t+=1,this.bump();break}case 125:{if(t>0)t-=1;else return{val:this.message.slice(r.offset,this.offset()),err:null};break}default:this.bump();break}}return{val:this.message.slice(r.offset,this.offset()),err:null}},e.prototype.parseNumberSkeletonFromString=function(t,r){var n=[];try{n=ct(t)}catch{return this.error(c.INVALID_NUMBER_SKELETON,r)}return{val:{type:P.number,tokens:n,location:r,parsedOptions:this.shouldParseSkeletons?xt(n):{}},err:null}},e.prototype.tryParsePluralOrSelectOptions=function(t,r,n,i){for(var a,s=!1,h=[],l=new Set,u=i.value,o=i.location;;){if(u.length===0){var b=this.clonePosition();if(r!=="select"&&this.bumpIf("=")){var f=this.tryParseDecimalInteger(c.EXPECT_PLURAL_ARGUMENT_SELECTOR,c.INVALID_PLURAL_ARGUMENT_SELECTOR);if(f.err)return f;o=m(b,this.clonePosition()),u=this.message.slice(b.offset,this.offset())}else break}if(l.has(u))return this.error(r==="select"?c.DUPLICATE_SELECT_ARGUMENT_SELECTOR:c.DUPLICATE_PLURAL_ARGUMENT_SELECTOR,o);u==="other"&&(s=!0),this.bumpSpace();var E=this.clonePosition();if(!this.bumpIf("{"))return this.error(r==="select"?c.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT:c.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT,m(this.clonePosition(),this.clonePosition()));var v=this.parseMessage(t+1,r,n);if(v.err)return v;var y=this.tryParseArgumentClose(E);if(y.err)return y;h.push([u,{value:v.val,location:m(E,this.clonePosition())}]),l.add(u),this.bumpSpace(),a=this.parseIdentifierIfPossible(),u=a.value,o=a.location}return h.length===0?this.error(r==="select"?c.EXPECT_SELECT_ARGUMENT_SELECTOR:c.EXPECT_PLURAL_ARGUMENT_SELECTOR,m(this.clonePosition(),this.clonePosition())):this.requiresOtherClause&&!s?this.error(c.MISSING_OTHER_CLAUSE,m(this.clonePosition(),this.clonePosition())):{val:h,err:null}},e.prototype.tryParseDecimalInteger=function(t,r){var n=1,i=this.clonePosition();this.bumpIf("+")||this.bumpIf("-")&&(n=-1);for(var a=!1,s=0;!this.isEOF();){var h=this.char();if(h>=48&&h<=57)a=!0,s=s*10+(h-48),this.bump();else break}var l=m(i,this.clonePosition());return a?(s*=n,It(s)?{val:s,err:null}:this.error(r,l)):this.error(t,l)},e.prototype.offset=function(){return this.position.offset},e.prototype.isEOF=function(){return this.offset()===this.message.length},e.prototype.clonePosition=function(){return{offset:this.position.offset,line:this.position.line,column:this.position.column}},e.prototype.char=function(){var t=this.position.offset;if(t>=this.message.length)throw Error("out of bound");var r=Fe(this.message,t);if(r===void 0)throw Error("Offset ".concat(t," is at invalid UTF-16 code unit boundary"));return r},e.prototype.error=function(t,r){return{val:null,err:{kind:t,message:this.message,location:r}}},e.prototype.bump=function(){if(!this.isEOF()){var t=this.char();t===10?(this.position.line+=1,this.position.column=1,this.position.offset+=1):(this.position.column+=1,this.position.offset+=t<65536?1:2)}},e.prototype.bumpIf=function(t){if(Te(this.message,t,this.offset())){for(var r=0;r<t.length;r++)this.bump();return!0}return!1},e.prototype.bumpUntil=function(t){var r=this.offset(),n=this.message.indexOf(t,r);return n>=0?(this.bumpTo(n),!0):(this.bumpTo(this.message.length),!1)},e.prototype.bumpTo=function(t){if(this.offset()>t)throw Error("targetOffset ".concat(t," must be greater than or equal to the current offset ").concat(this.offset()));for(t=Math.min(t,this.message.length);;){var r=this.offset();if(r===t)break;if(r>t)throw Error("targetOffset ".concat(t," is at invalid UTF-16 code unit boundary"));if(this.bump(),this.isEOF())break}},e.prototype.bumpSpace=function(){for(;!this.isEOF()&&Ve(this.char());)this.bump()},e.prototype.peek=function(){if(this.isEOF())return null;var t=this.char(),r=this.offset(),n=this.message.charCodeAt(r+(t>=65536?2:1));return n??null},e}();function ue(e){return e>=97&&e<=122||e>=65&&e<=90}function Mt(e){return ue(e)||e===47}function Ct(e){return e===45||e===46||e>=48&&e<=57||e===95||e>=97&&e<=122||e>=65&&e<=90||e==183||e>=192&&e<=214||e>=216&&e<=246||e>=248&&e<=893||e>=895&&e<=8191||e>=8204&&e<=8205||e>=8255&&e<=8256||e>=8304&&e<=8591||e>=11264&&e<=12271||e>=12289&&e<=55295||e>=63744&&e<=64975||e>=65008&&e<=65533||e>=65536&&e<=983039}function Ve(e){return e>=9&&e<=13||e===32||e===133||e>=8206&&e<=8207||e===8232||e===8233}function wt(e){return e>=33&&e<=35||e===36||e>=37&&e<=39||e===40||e===41||e===42||e===43||e===44||e===45||e>=46&&e<=47||e>=58&&e<=59||e>=60&&e<=62||e>=63&&e<=64||e===91||e===92||e===93||e===94||e===96||e===123||e===124||e===125||e===126||e===161||e>=162&&e<=165||e===166||e===167||e===169||e===171||e===172||e===174||e===176||e===177||e===182||e===187||e===191||e===215||e===247||e>=8208&&e<=8213||e>=8214&&e<=8215||e===8216||e===8217||e===8218||e>=8219&&e<=8220||e===8221||e===8222||e===8223||e>=8224&&e<=8231||e>=8240&&e<=8248||e===8249||e===8250||e>=8251&&e<=8254||e>=8257&&e<=8259||e===8260||e===8261||e===8262||e>=8263&&e<=8273||e===8274||e===8275||e>=8277&&e<=8286||e>=8592&&e<=8596||e>=8597&&e<=8601||e>=8602&&e<=8603||e>=8604&&e<=8607||e===8608||e>=8609&&e<=8610||e===8611||e>=8612&&e<=8613||e===8614||e>=8615&&e<=8621||e===8622||e>=8623&&e<=8653||e>=8654&&e<=8655||e>=8656&&e<=8657||e===8658||e===8659||e===8660||e>=8661&&e<=8691||e>=8692&&e<=8959||e>=8960&&e<=8967||e===8968||e===8969||e===8970||e===8971||e>=8972&&e<=8991||e>=8992&&e<=8993||e>=8994&&e<=9e3||e===9001||e===9002||e>=9003&&e<=9083||e===9084||e>=9085&&e<=9114||e>=9115&&e<=9139||e>=9140&&e<=9179||e>=9180&&e<=9185||e>=9186&&e<=9254||e>=9255&&e<=9279||e>=9280&&e<=9290||e>=9291&&e<=9311||e>=9472&&e<=9654||e===9655||e>=9656&&e<=9664||e===9665||e>=9666&&e<=9719||e>=9720&&e<=9727||e>=9728&&e<=9838||e===9839||e>=9840&&e<=10087||e===10088||e===10089||e===10090||e===10091||e===10092||e===10093||e===10094||e===10095||e===10096||e===10097||e===10098||e===10099||e===10100||e===10101||e>=10132&&e<=10175||e>=10176&&e<=10180||e===10181||e===10182||e>=10183&&e<=10213||e===10214||e===10215||e===10216||e===10217||e===10218||e===10219||e===10220||e===10221||e===10222||e===10223||e>=10224&&e<=10239||e>=10240&&e<=10495||e>=10496&&e<=10626||e===10627||e===10628||e===10629||e===10630||e===10631||e===10632||e===10633||e===10634||e===10635||e===10636||e===10637||e===10638||e===10639||e===10640||e===10641||e===10642||e===10643||e===10644||e===10645||e===10646||e===10647||e===10648||e>=10649&&e<=10711||e===10712||e===10713||e===10714||e===10715||e>=10716&&e<=10747||e===10748||e===10749||e>=10750&&e<=11007||e>=11008&&e<=11055||e>=11056&&e<=11076||e>=11077&&e<=11078||e>=11079&&e<=11084||e>=11085&&e<=11123||e>=11124&&e<=11125||e>=11126&&e<=11157||e===11158||e>=11159&&e<=11263||e>=11776&&e<=11777||e===11778||e===11779||e===11780||e===11781||e>=11782&&e<=11784||e===11785||e===11786||e===11787||e===11788||e===11789||e>=11790&&e<=11798||e===11799||e>=11800&&e<=11801||e===11802||e===11803||e===11804||e===11805||e>=11806&&e<=11807||e===11808||e===11809||e===11810||e===11811||e===11812||e===11813||e===11814||e===11815||e===11816||e===11817||e>=11818&&e<=11822||e===11823||e>=11824&&e<=11833||e>=11834&&e<=11835||e>=11836&&e<=11839||e===11840||e===11841||e===11842||e>=11843&&e<=11855||e>=11856&&e<=11857||e===11858||e>=11859&&e<=11903||e>=12289&&e<=12291||e===12296||e===12297||e===12298||e===12299||e===12300||e===12301||e===12302||e===12303||e===12304||e===12305||e>=12306&&e<=12307||e===12308||e===12309||e===12310||e===12311||e===12312||e===12313||e===12314||e===12315||e===12316||e===12317||e>=12318&&e<=12319||e===12320||e===12336||e===64830||e===64831||e>=65093&&e<=65094}function le(e){e.forEach(function(t){if(delete t.location,Le(t)||Me(t))for(var r in t.options)delete t.options[r].location,le(t.options[r].value);else Pe(t)&&we(t.style)||(Ne(t)||Oe(t))&&ae(t.style)?delete t.style.location:Ce(t)&&le(t.children)})}function Rt(e,t){t===void 0&&(t={}),t=p({shouldParseSkeletons:!0,requiresOtherClause:!0},t);var r=new Lt(e,t).parse();if(r.err){var n=SyntaxError(c[r.err.kind]);throw n.location=r.err.location,n.originalMessage=r.err.message,n}return t?.captureLocation||le(r.val),r.val}function ee(e,t){var r=t&&t.cache?t.cache:Vt,n=t&&t.serializer?t.serializer:jt,i=t&&t.strategy?t.strategy:Gt;return i(e,{cache:r,serializer:n})}function Ut(e){return e==null||typeof e=="number"||typeof e=="boolean"}function Xe(e,t,r,n){var i=Ut(n)?n:r(n),a=t.get(i);return typeof a>"u"&&(a=e.call(this,n),t.set(i,a)),a}function ke(e,t,r){var n=Array.prototype.slice.call(arguments,3),i=r(n),a=t.get(i);return typeof a>"u"&&(a=e.apply(this,n),t.set(i,a)),a}function me(e,t,r,n,i){return r.bind(t,e,n,i)}function Gt(e,t){var r=e.length===1?Xe:ke;return me(e,this,r,t.cache.create(),t.serializer)}function Dt(e,t){return me(e,this,ke,t.cache.create(),t.serializer)}function Ft(e,t){return me(e,this,Xe,t.cache.create(),t.serializer)}var jt=function(){return JSON.stringify(arguments)};function pe(){this.cache=Object.create(null)}pe.prototype.get=function(e){return this.cache[e]};pe.prototype.set=function(e,t){this.cache[e]=t};var Vt={create:function(){return new pe}},te={variadic:Dt,monadic:Ft},N;(function(e){e.MISSING_VALUE="MISSING_VALUE",e.INVALID_VALUE="INVALID_VALUE",e.MISSING_INTL_API="MISSING_INTL_API"})(N||(N={}));var Q=function(e){J(t,e);function t(r,n,i){var a=e.call(this,r)||this;return a.code=n,a.originalMessage=i,a}return t.prototype.toString=function(){return"[formatjs Error: ".concat(this.code,"] ").concat(this.message)},t}(Error),Ae=function(e){J(t,e);function t(r,n,i,a){return e.call(this,'Invalid values for "'.concat(r,'": "').concat(n,'". Options are "').concat(Object.keys(i).join('", "'),'"'),N.INVALID_VALUE,a)||this}return t}(Q),Xt=function(e){J(t,e);function t(r,n,i){return e.call(this,'Value for "'.concat(r,'" must be of type ').concat(n),N.INVALID_VALUE,i)||this}return t}(Q),kt=function(e){J(t,e);function t(r,n){return e.call(this,'The intl string context variable "'.concat(r,'" was not provided to the string "').concat(n,'"'),N.MISSING_VALUE,n)||this}return t}(Q),g;(function(e){e[e.literal=0]="literal",e[e.object=1]="object"})(g||(g={}));function Wt(e){return e.length<2?e:e.reduce(function(t,r){var n=t[t.length-1];return!n||n.type!==g.literal||r.type!==g.literal?t.push(r):n.value+=r.value,t},[])}function Zt(e){return typeof e=="function"}function Z(e,t,r,n,i,a,s){if(e.length===1&&ve(e[0]))return[{type:g.literal,value:e[0].value}];for(var h=[],l=0,u=e;l<u.length;l++){var o=u[l];if(ve(o)){h.push({type:g.literal,value:o.value});continue}if(ht(o)){typeof a=="number"&&h.push({type:g.literal,value:r.getNumberFormat(t).format(a)});continue}var b=o.value;if(!(i&&b in i))throw new kt(b,s);var f=i[b];if(ot(o)){(!f||typeof f=="string"||typeof f=="number")&&(f=typeof f=="string"||typeof f=="number"?String(f):""),h.push({type:typeof f=="string"?g.literal:g.object,value:f});continue}if(Ne(o)){var E=typeof o.style=="string"?n.date[o.style]:ae(o.style)?o.style.parsedOptions:void 0;h.push({type:g.literal,value:r.getDateTimeFormat(t,E).format(f)});continue}if(Oe(o)){var E=typeof o.style=="string"?n.time[o.style]:ae(o.style)?o.style.parsedOptions:n.time.medium;h.push({type:g.literal,value:r.getDateTimeFormat(t,E).format(f)});continue}if(Pe(o)){var E=typeof o.style=="string"?n.number[o.style]:we(o.style)?o.style.parsedOptions:void 0;E&&E.scale&&(f=f*(E.scale||1)),h.push({type:g.literal,value:r.getNumberFormat(t,E).format(f)});continue}if(Ce(o)){var v=o.children,y=o.value,B=i[y];if(!Zt(B))throw new Xt(y,"function",s);var w=Z(v,t,r,n,i,a),S=B(w.map(function(_){return _.value}));Array.isArray(S)||(S=[S]),h.push.apply(h,S.map(function(_){return{type:typeof _=="string"?g.literal:g.object,value:_}}))}if(Le(o)){var d=o.options[f]||o.options.other;if(!d)throw new Ae(o.value,f,Object.keys(o.options),s);h.push.apply(h,Z(d.value,t,r,n,i));continue}if(Me(o)){var d=o.options["=".concat(f)];if(!d){if(!Intl.PluralRules)throw new Q(`Intl.PluralRules is not available in this environment.
-Try polyfilling it using "@formatjs/intl-pluralrules"
-`,N.MISSING_INTL_API,s);var R=r.getPluralRules(t,{type:o.pluralType}).select(f-(o.offset||0));d=o.options[R]||o.options.other}if(!d)throw new Ae(o.value,f,Object.keys(o.options),s);h.push.apply(h,Z(d.value,t,r,n,i,f-(o.offset||0)));continue}}return Wt(h)}function zt(e,t){return t?p(p(p({},e||{}),t||{}),Object.keys(e).reduce(function(r,n){return r[n]=p(p({},e[n]),t[n]||{}),r},{})):e}function $t(e,t){return t?Object.keys(e).reduce(function(r,n){return r[n]=zt(e[n],t[n]),r},p({},e)):e}function re(e){return{create:function(){return{get:function(t){return e[t]},set:function(t,r){e[t]=r}}}}}function Jt(e){return e===void 0&&(e={number:{},dateTime:{},pluralRules:{}}),{getNumberFormat:ee(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.NumberFormat).bind.apply(t,Y([void 0],r,!1)))},{cache:re(e.number),strategy:te.variadic}),getDateTimeFormat:ee(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.DateTimeFormat).bind.apply(t,Y([void 0],r,!1)))},{cache:re(e.dateTime),strategy:te.variadic}),getPluralRules:ee(function(){for(var t,r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return new((t=Intl.PluralRules).bind.apply(t,Y([void 0],r,!1)))},{cache:re(e.pluralRules),strategy:te.variadic})}}var Qt=function(){function e(t,r,n,i){var a=this;if(r===void 0&&(r=e.defaultLocale),this.formatterCache={number:{},dateTime:{},pluralRules:{}},this.format=function(s){var h=a.formatToParts(s);if(h.length===1)return h[0].value;var l=h.reduce(function(u,o){return!u.length||o.type!==g.literal||typeof u[u.length-1]!="string"?u.push(o.value):u[u.length-1]+=o.value,u},[]);return l.length<=1?l[0]||"":l},this.formatToParts=function(s){return Z(a.ast,a.locales,a.formatters,a.formats,s,void 0,a.message)},this.resolvedOptions=function(){return{locale:a.resolvedLocale.toString()}},this.getAst=function(){return a.ast},this.locales=r,this.resolvedLocale=e.resolveLocale(r),typeof t=="string"){if(this.message=t,!e.__parse)throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");this.ast=e.__parse(t,{ignoreTag:i?.ignoreTag,locale:this.resolvedLocale})}else this.ast=t;if(!Array.isArray(this.ast))throw new TypeError("A message must be provided as a String or AST.");this.formats=$t(e.formats,n),this.formatters=i&&i.formatters||Jt(this.formatterCache)}return Object.defineProperty(e,"defaultLocale",{get:function(){return e.memoizedDefaultLocale||(e.memoizedDefaultLocale=new Intl.NumberFormat().resolvedOptions().locale),e.memoizedDefaultLocale},enumerable:!1,configurable:!0}),e.memoizedDefaultLocale=null,e.resolveLocale=function(t){var r=Intl.NumberFormat.supportedLocalesOf(t);return r.length>0?new Intl.Locale(r[0]):new Intl.Locale(typeof t=="string"?t:t[0])},e.__parse=Rt,e.formats={number:{integer:{maximumFractionDigits:0},currency:{style:"currency"},percent:{style:"percent"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},e}();const qt=Qt,H={},Yt=(e,t,r)=>r&&(t in H||(H[t]={}),e in H[t]||(H[t][e]=r),r),We=(e,t)=>{if(t==null)return;if(t in H&&e in H[t])return H[t][e];const r=X(t);for(let n=0;n<r.length;n++){const i=Kt(r[n],e);if(i)return Yt(e,t,i)}};let be;const M=ce({});function xe(e){return e in be}function Kt(e,t){if(!xe(e))return null;const r=function(n){return be[n]||null}(e);return function(n,i){if(i==null)return;if(i in n)return n[i];const a=i.split(".");let s=n;for(let h=0;h<a.length;h++)if(typeof s=="object"){if(h>0){const l=a.slice(h,a.length).join(".");if(l in s){s=s[l];break}}s=s[a[h]]}else s=void 0;return s}(r,t)}function er(e,...t){delete H[e],M.update(r=>(r[e]=st.all([r[e]||{},...t]),r))}const xr=L([M],([e])=>Object.keys(e));M.subscribe(e=>be=e);const D={};function F(e){return D[e]}function $(e){return e!=null&&X(e).some(t=>{var r;return(r=F(t))===null||r===void 0?void 0:r.size})}function tr(e,t){return Promise.all(t.map(n=>(function(i,a){D[i].delete(a),D[i].size===0&&delete D[i]}(e,n),n().then(i=>i.default||i)))).then(n=>er(e,...n))}const U={};function Ze(e){if(!$(e))return e in U?U[e]:Promise.resolve();const t=function(r){return X(r).map(n=>{const i=F(n);return[n,i?[...i]:[]]}).filter(([,n])=>n.length>0)}(e);return U[e]=Promise.all(t.map(([r,n])=>tr(r,n))).then(()=>{if($(e))return Ze(e);delete U[e]}),U[e]}function Er(e,t){F(e)||function(n){D[n]=new Set}(e);const r=F(e);F(e).has(t)||(xe(e)||M.update(n=>(n[e]={},n)),r.add(t))}/*! *****************************************************************************
-Copyright (c) Microsoft Corporation.
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-***************************************************************************** */function A(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function"){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)t.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]])}return r}function rr({locale:e,id:t}){console.warn(`[svelte-i18n] The message "${t}" was not found in "${X(e).join('", "')}".${$(T())?`
-
-Note: there are at least one loader still registered to this locale that wasn't executed.`:""}`)}const G={fallbackLocale:null,loadingDelay:200,formats:{number:{scientific:{notation:"scientific"},engineering:{notation:"engineering"},compactLong:{notation:"compact",compactDisplay:"long"},compactShort:{notation:"compact",compactDisplay:"short"}},date:{short:{month:"numeric",day:"numeric",year:"2-digit"},medium:{month:"short",day:"numeric",year:"numeric"},long:{month:"long",day:"numeric",year:"numeric"},full:{weekday:"long",month:"long",day:"numeric",year:"numeric"}},time:{short:{hour:"numeric",minute:"numeric"},medium:{hour:"numeric",minute:"numeric",second:"numeric"},long:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"},full:{hour:"numeric",minute:"numeric",second:"numeric",timeZoneName:"short"}}},warnOnMissingMessages:!0,handleMissingMessage:void 0,ignoreTag:!0};function O(){return G}function gr(e){const{formats:t}=e,r=A(e,["formats"]),n=e.initialLocale||e.fallbackLocale;return r.warnOnMissingMessages&&(delete r.warnOnMissingMessages,r.handleMissingMessage==null?r.handleMissingMessage=rr:console.warn('[svelte-i18n] The "warnOnMissingMessages" option is deprecated. Please use the "handleMissingMessage" option instead.')),Object.assign(G,r,{initialLocale:n}),t&&("number"in t&&Object.assign(G.formats.number,t.number),"date"in t&&Object.assign(G.formats.date,t.date),"time"in t&&Object.assign(G.formats.time,t.time)),C.set(n)}const ne=ce(!1);let fe;const z=ce(null);function Se(e){return e.split("-").map((t,r,n)=>n.slice(0,r+1).join("-")).reverse()}function X(e,t=O().fallbackLocale){const r=Se(e);return t?[...new Set([...r,...Se(t)])]:r}function T(){return fe??void 0}z.subscribe(e=>{fe=e??void 0,typeof window<"u"&&e!=null&&document.documentElement.setAttribute("lang",e)});const C=Object.assign(Object.assign({},z),{set:e=>{if(e&&function(t){if(t==null)return;const r=X(t);for(let n=0;n<r.length;n++){const i=r[n];if(xe(i))return i}}(e)&&$(e)){const{loadingDelay:t}=O();let r;return typeof window<"u"&&T()!=null&&t?r=window.setTimeout(()=>ne.set(!0),t):ne.set(!0),Ze(e).then(()=>{z.set(e)}).finally(()=>{clearTimeout(r),ne.set(!1)})}return z.set(e)}}),vr=()=>typeof window>"u"?null:window.navigator.language||window.navigator.languages[0],q=e=>{const t=Object.create(null);return r=>{const n=JSON.stringify(r);return n in t?t[n]:t[n]=e(r)}},V=(e,t)=>{const{formats:r}=O();if(e in r&&t in r[e])return r[e][t];throw new Error(`[svelte-i18n] Unknown "${t}" ${e} format.`)},nr=q(e=>{var{locale:t,format:r}=e,n=A(e,["locale","format"]);if(t==null)throw new Error('[svelte-i18n] A "locale" must be set to format numbers');return r&&(n=V("number",r)),new Intl.NumberFormat(t,n)}),ir=q(e=>{var{locale:t,format:r}=e,n=A(e,["locale","format"]);if(t==null)throw new Error('[svelte-i18n] A "locale" must be set to format dates');return r?n=V("date",r):Object.keys(n).length===0&&(n=V("date","short")),new Intl.DateTimeFormat(t,n)}),ar=q(e=>{var{locale:t,format:r}=e,n=A(e,["locale","format"]);if(t==null)throw new Error('[svelte-i18n] A "locale" must be set to format time values');return r?n=V("time",r):Object.keys(n).length===0&&(n=V("time","short")),new Intl.DateTimeFormat(t,n)}),sr=(e={})=>{var{locale:t=T()}=e,r=A(e,["locale"]);return nr(Object.assign({locale:t},r))},or=(e={})=>{var{locale:t=T()}=e,r=A(e,["locale"]);return ir(Object.assign({locale:t},r))},hr=(e={})=>{var{locale:t=T()}=e,r=A(e,["locale"]);return ar(Object.assign({locale:t},r))},ur=q((e,t=T())=>new qt(e,t,O().formats,{ignoreTag:O().ignoreTag})),lr=(e,t={})=>{var r,n,i,a;let s=t;typeof e=="object"&&(s=e,e=s.id);const{values:h,locale:l=T(),default:u}=s;if(l==null)throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");let o=We(e,l);if(o){if(typeof o!="string")return console.warn(`[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof o}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`),o}else o=(a=(i=(n=(r=O()).handleMissingMessage)===null||n===void 0?void 0:n.call(r,{locale:l,id:e,defaultValue:u}))!==null&&i!==void 0?i:u)!==null&&a!==void 0?a:e;if(!h)return o;let b=o;try{b=ur(o,l).format(h)}catch(f){console.warn(`[svelte-i18n] Message "${e}" has syntax error:`,f.message)}return b},fr=(e,t)=>hr(t).format(e),cr=(e,t)=>or(t).format(e),mr=(e,t)=>sr(t).format(e),pr=(e,t=T())=>We(e,t),yr=L([C,M],()=>lr);L([C],()=>fr);L([C],()=>cr);L([C],()=>mr);const dr=L([C,M],()=>pr);export{gr as $,C as D,vr as F,yr as Y,xr as f,ne as k,dr as o,Er as y};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/singletons-67e52e76.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/singletons-67e52e76.js
deleted file mode 100644
index 986e3d08..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/singletons-67e52e76.js
+++ /dev/null
@@ -1 +0,0 @@
-import{w as u}from"./index-0189b6d0.js";let f="",b="";function m(n){f=n.base,b=n.assets||f}function _(n){let e=n.baseURI;if(!e){const t=n.getElementsByTagName("base");e=t.length?t[0].href:n.URL}return e}function w(){return{x:pageXOffset,y:pageYOffset}}function k(n){let e,t=null,r=null,a=null;for(const s of n.composedPath())s instanceof Element&&(!e&&s.nodeName.toUpperCase()==="A"&&(e=s),t===null&&(t=i(s,"data-sveltekit-noscroll")),r===null&&(r=i(s,"data-sveltekit-prefetch")),a===null&&(a=i(s,"data-sveltekit-reload")));const l=e&&new URL(e instanceof SVGAElement?e.href.baseVal:e.href,document.baseURI);return{a:e,url:l,options:{noscroll:t,prefetch:r,reload:a},has:e?{rel_external:(e.getAttribute("rel")||"").split(/\s+/).includes("external"),download:e.hasAttribute("download"),target:!!(e instanceof SVGAElement?e.target.baseVal:e.target)}:{}}}function i(n,e){const t=n.getAttribute(e);return t===null?t:t===""?!0:(t==="off",!1)}function d(n){const e=u(n);let t=!0;function r(){t=!0,e.update(s=>s)}function a(s){t=!1,e.set(s)}function l(s){let o;return e.subscribe(c=>{(o===void 0||t&&c!==o)&&s(o=c)})}return{notify:r,set:a,subscribe:l}}function g(){const{set:n,subscribe:e}=u(!1);let t;async function r(){clearTimeout(t);const a=await fetch(`${b}/internal/version.json`,{headers:{pragma:"no-cache","cache-control":"no-cache"}});if(a.ok){const{version:l}=await a.json(),s=l!=="1707053248816";return s&&(n(!0),clearTimeout(t)),s}else throw new Error(`Version check failed: ${a.status}`)}return{subscribe:e,check:r}}let h;function v(n){h=n.client}const A={url:d({}),page:d({}),navigating:u(null),updated:g()};export{w as a,m as b,h as c,k as f,_ as g,v as i,A as s};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/stores-65b20c67.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/stores-65b20c67.js
deleted file mode 100644
index 3592f901..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/stores-65b20c67.js
+++ /dev/null
@@ -1 +0,0 @@
-import"./index-c0d078cd.js";import{s as r}from"./singletons-67e52e76.js";const t=()=>{const e=r,s={page:{subscribe:e.page.subscribe},navigating:{subscribe:e.navigating.subscribe},updated:e.updated};return Object.defineProperties(s,{preloading:{get(){return console.error("stores.preloading is deprecated; use stores.navigating instead"),{subscribe:e.navigating.subscribe}},enumerable:!1},session:{get(){return o(),{}},enumerable:!1}}),s},a={subscribe(e){return t().page.subscribe(e)}};function o(){throw new Error("stores.session is no longer available. See https://github.com/sveltejs/kit/discussions/5883")}export{a as p};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/sync-9a12991b.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/sync-9a12991b.js
deleted file mode 100644
index a9ccc4a5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/sync-9a12991b.js
+++ /dev/null
@@ -1 +0,0 @@
-import{d as A,s as H,e as L,f as T,g as P,h as R,p as $,j as M,k as N,l as V,n as j,o as I,q as W,r as q,t as f,w as m,u as C,x as O,y as _,z as U,A as z,B as J}from"./app-stores-358281e6.js";import{H as g,B as K,A as r}from"./custom-banner-3b9921d3.js";import{s as i,b as c}from"./index-123e2351.js";import{w as p}from"./index-0189b6d0.js";import{r as G,b as Y}from"./i18n-ec7c8da1.js";import{c as Q}from"./api-cookie-d587b0da.js";const{clearIDB:X}=g,Z=async()=>{const e=await caches.keys();for(const a of e)await caches.delete(a);return!0},xe=async({clearCache:e=!1,keepSetting:a=!1}={})=>{if(await X(),e&&await Z(),A.set({point:null,selected:null}),H.set(!0),L.set(20),a){const k=i.get("config"),E=i.get("pity"),D=i.get("balance"),B=i.get("probabilityRates"),w=i.get("export");localStorage.removeItem("WishSimulator.App"),i.set("config",k),i.set("pity",E),i.set("balance",D),i.set("probabilityRates",B),w?.id&&i.set("export",w);return}const t=c.get("locale"),s=i.get("export");localStorage.removeItem("WishSimulator.App"),t&&c.set("locale",t),s?.id&&i.set("export",s);const{fates:o,genesis:b,primogem:v}=J;T.set(o),P.set(o),R.set(b),$.set(v),M.set(0),N.set(0),V.set(0),j.set(0),I.set({}),W.set(!1),c.set("storageVersion",q),c.set("version",`${f}-${m}`),C.set({patch:f,phase:m}),O.set(0),_.set(!1),U.set("default"),z.set({})},l=p({}),y=p(null),F=p(!1),n=p(!1),ee=()=>{const{id:e}=i.get("export"),a=e||`GI${G(111111111,999999999)}`,t=new Date;i.set("export",{id:a,date:t})},u=async()=>{const e=await K.getAll(),a=await g.getAllHistories(),t=Q.get("accessKey");ee();const s=i.getData(),o={banners:e,histories:a,settings:s,accessKey:t};return JSON.stringify(o)},Se=async()=>{const e=await u(),a=new Blob([e],{type:"text/plain"}),t=document.createElement("a"),s=new Date().toLocaleDateString();t.download=`WishSimulator.App_Backup_${s}.bin`,t.href=(window.webkitURL||window.URL).createObjectURL(a),t.dataset.downloadurl=["text/plain",t.download,t.href].join(":"),t.click()},te="application/octet-stream, application/json, text/plain",ae=e=>{const a=te.match(e.type),t=e.name.match(/.(bin|json|txt)$/);return a&&t},se=async e=>{try{const a=await e.text(),t=JSON.parse(a),{id:s}=t?.settings?.data?.export||{};return s?t:null}catch{return null}},h=async e=>{if(!ae(e))throw new Error("Not a valid Backup File");const t=await se(e);if(!t)throw new Error("Failed to parse imported file");return t},be=async e=>{const a=e[0],t=await h(a);return{file:a,parsedFile:t}},ve=()=>{const{isSupported:e}=Y(),a="chooseFileSystemEntries"in window,t="showSaveFilePicker"in window;return e&&(a||t)},ke=e=>isNaN(e)?"...B":`${(e/(1024*1024)).toFixed(2)}MB`,x=async e=>{if(!e)return l.set({});const{name:a,size:t,webkitRelativePath:s,lastModified:o}=await e.getFile();l.set({name:a,size:t,webkitRelativePath:s,lastModified:o})},ie=async e=>{const a={key:"savedFile",fileHandle:e};return await r.put(a)},Ee=async()=>{const{fileHandle:e}=await r.get("savedFile")||{};if(!e)return null;l.set({name:e.name}),y.set(e)},oe=async()=>{await r.delete("savedFile"),l.set({}),F.set(!1)},ne=async e=>{try{return await e.getFile()}catch{return oe(),!1}},De=async(e,{checkOnly:a=!1}={})=>{if(!e)return!1;const t={writable:!0,mode:"readwrite"};return a?await e.queryPermission(t)==="granted":await e.queryPermission(t)==="granted"||await e.requestPermission(t)==="granted"},re=()=>{const a=`WishSimulator.App_Backup_${new Date().toLocaleDateString()}.bin`;if("showSaveFilePicker"in window){const s={suggestedName:a,types:[{description:"Text file",accept:{"text/plain":[".bin"]}}]};return window.showSaveFilePicker(s)}const t={type:"save-file",accepts:[{description:"Text file",extensions:["bin"],mimeTypes:["text/plain"]}]};return window.chooseFileSystemEntries({opts:t})},S=async(e,a)=>{if(e.createWriter){const s=await e.createWriter();await s.write(0,a),await s.close();return}const t=await e.createWritable();await t.write(a),await t.close()},Be=async()=>{try{n.set(!0);const e=await re(),a=await u();return await S(e,a),await ie(e),x(e),y.set(e),F.set(!0),n.set(!1),e}catch(e){console.error("failed to save export",e),n.set(!1)}},ce=async()=>{try{n.set(!0);const{fileHandle:e}=await r.get("savedFile");if(!e)return n.set(!1);if(!await ne(e))throw new Error("Destination File does not exist, Auto Export will be turned off");const t=await u();await S(e,t),await x(e),n.set(!1)}catch(e){console.error("Auto Export Failed:",e.message),n.set(!1)}},le=async e=>{const{fileHandle:a}=await r.get("savedFile");if(await e.isSameEntry(a))throw new Error("You cannot import the currently exported file.");const s=await e.getFile(),o=await h(s);return{handle:e,file:s,parsedFile:o}},Ae=async e=>{const a=[...e].filter(t=>t.kind==="file").map(t=>t.getAsFileSystemHandle());for await(const t of a)if(t.kind==="file")return le(t)},pe=({to:e}={})=>{if(e==="local")return ce();e!="drive"},de=2500;let d=!1;const ue=async()=>{if(d)return;d=!0,await pe({to:"local"});const e=setTimeout(()=>{d=!1,clearTimeout(e)},de)},we=async()=>{},He=e=>{we(),e&&ue()};export{ve as F,F as a,ke as b,Z as c,te as d,y as e,xe as f,l as g,n as h,be as i,ne as j,Ee as k,Se as l,Be as m,Ae as r,He as s,pe as u,De as v};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/th-TH-4b2a93d4.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/th-TH-4b2a93d4.js
deleted file mode 100644
index 0d542596..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/th-TH-4b2a93d4.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="Genshin Impact Wish Simulator",a="\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23",n="\u0E2D\u0E32\u0E27\u0E38\u0E18",t="\u0E18\u0E32\u0E15\u0E38",o="\u0E25\u0E21",r="\u0E19\u0E49\u0E33\u0E41\u0E02\u0E47\u0E07",s="\u0E44\u0E21\u0E49",i="\u0E44\u0E1F\u0E1F\u0E49\u0E32",l="\u0E19\u0E49\u0E33",p="\u0E2B\u0E34\u0E19",c="\u0E44\u0E1F",d="\u0E18\u0E19\u0E39",u="\u0E2A\u0E37\u0E48\u0E2D\u0E40\u0E27\u0E17",m="\u0E14\u0E32\u0E1A\u0E43\u0E2B\u0E0D\u0E48",h="\u0E14\u0E32\u0E1A",y="\u0E2B\u0E2D\u0E01",g="Extra",b="\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A",f="\u0E17\u0E35\u0E48\u0E23\u0E2D",w="Connection Failed!",P="\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19",v="\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01",B="\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E4C\u0E2A\u0E34\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E43\u0E19\u0E40\u0E27\u0E47\u0E1A\u0E44\u0E0B\u0E15\u0E4C\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07 Hoyoverse",S="\u0E19\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E41\u0E2D\u0E1B\u0E1E\u0E25\u0E34\u0E40\u0E04\u0E0A\u0E31\u0E48\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E42\u0E14\u0E22\u0E41\u0E1F\u0E19 \u0E46 \u0E25\u0E49\u0E27\u0E19 \u0E46 \u0E2A\u0E19\u0E38\u0E01\u0E01\u0E31\u0E1A\u0E21\u0E31\u0E19!",C="\u0E01\u0E14\u0E17\u0E35\u0E48\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D",k="Instructions to Install to Home Screen/Desktop",A="\u0E41\u0E1A\u0E48\u0E07\u0E1B\u0E31\u0E19",I="\u0E16\u0E48\u0E32\u0E22\u0E20\u0E32\u0E1E",x="\u0E01\u0E33\u0E25\u0E31\u0E07\u0E08\u0E31\u0E1A",F="\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E41\u0E0A\u0E23\u0E4C\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01: {qty}",N="\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E48\u0E19",U="\u0E1A\u0E23\u0E34\u0E08\u0E32\u0E04",T={beginner:"\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",wanderlust:"\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E41\u0E2B\u0E48\u0E07\u0E01\u0E32\u0E23\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07","epitome-invocation":"\u0E2A\u0E23\u0E23\u0E04\u0E4C\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E40\u0E0B\u0E35\u0E22\u0E19","adrift-in-the-harbor":"\u0E21\u0E48\u0E32\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E21\u0E06\u0E32","auric-blaze":"\u0E2A\u0E38\u0E23\u0E34\u0E22\u0E31\u0E19\u0E2A\u0E35\u0E17\u0E2D\u0E07 \u0E17\u0E35\u0E48\u0E41\u0E1C\u0E14\u0E40\u0E1C\u0E32","azure-excursion":"\u0E22\u0E48\u0E33\u0E1A\u0E38\u0E1B\u0E1C\u0E32\u0E18\u0E32\u0E23\u0E32\u0E04\u0E23\u0E32\u0E21","ballad-in-goblets":"\u0E16\u0E49\u0E27\u0E22\u0E41\u0E2B\u0E48\u0E07\u0E1A\u0E17\u0E01\u0E27\u0E35","born-of-ocean-swell":"\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E22\u0E41\u0E2B\u0E48\u0E07 \u0E40\u0E01\u0E25\u0E35\u0E22\u0E27\u0E04\u0E25\u0E37\u0E48\u0E19","caution-in-confidence":"\u0E40\u0E25\u0E48\u0E2B\u0E4C\u0E25\u0E31\u0E1A\u0E27\u0E32\u0E08\u0E32\u0E25\u0E27\u0E07","chanson-of-many-waters":"\u0E02\u0E31\u0E1A\u0E02\u0E32\u0E19\u0E25\u0E33\u0E40\u0E19\u0E32\u0E18\u0E32\u0E23","conjuring-chiaroscuro":"\u0E01\u0E25\u0E21\u0E32\u0E22\u0E32\u0E41\u0E2A\u0E07\u0E40\u0E07\u0E32","dance-of-lantern":"\u0E01\u0E32\u0E23\u0E40\u0E15\u0E49\u0E19\u0E23\u0E33 \u0E43\u0E19 \u0E41\u0E2A\u0E07\u0E42\u0E04\u0E21","decree-of-the-deeps":"\u0E1A\u0E31\u0E0D\u0E0A\u0E32\u0E41\u0E2B\u0E48\u0E07 \u0E2B\u0E49\u0E27\u0E07\u0E2A\u0E21\u0E38\u0E17\u0E23","discerner-of-enigmas":"\u0E23\u0E38\u0E49\u0E07\u0E2B\u0E21\u0E2D\u0E01 \u0E01\u0E25\u0E32\u0E07\u0E40\u0E27\u0E2B\u0E32","drifting-luminescence":"\u0E44\u0E02\u0E48\u0E21\u0E38\u0E01\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E22\u0E23\u0E38\u0E49\u0E07","everbloom-violet":"\u0E01\u0E25\u0E1A\u0E38\u0E1B\u0E1C\u0E32\u0E21\u0E48\u0E27\u0E07","farewell-of-snezhnaya":"\u0E1A\u0E2D\u0E01\u0E25\u0E32\u0E41\u0E14\u0E19\u0E40\u0E2B\u0E19\u0E37\u0E2D","from-ashes-reborn":"\u0E44\u0E1F\u0E01\u0E31\u0E25\u0E1B\u0E4C \u0E1C\u0E25\u0E32\u0E0D\u0E21\u0E25\u0E17\u0E34\u0E19","gentry-of-hermitage":"\u0E02\u0E38\u0E19\u0E40\u0E02\u0E32\u0E41 \u0E25\u0E30\u0E40\u0E21\u0E37\u0E2D\u0E07\u0E43\u0E2B\u0E0D\u0E48","immaculate-pulse":"\u0E01\u0E32\u0E23\u0E38\u0E13\u0E22\u0E4C\u0E1A\u0E23\u0E34\u0E2A\u0E38\u0E17\u0E18\u0E34\u0E4C","in-the-name-of-the-rosula":"\u0E1B\u0E0F\u0E34\u0E0D\u0E32\u0E13\u0E41\u0E2B\u0E48\u0E07 \u0E01\u0E38\u0E2B\u0E25\u0E32\u0E1A\u0E2B\u0E19\u0E32\u0E21","invitation-to-mundane-life":"\u0E04\u0E33\u0E40\u0E0A\u0E34\u0E0D\u0E2D\u0E31 \u0E19\u0E2A\u0E27\u0E48\u0E32\u0E07\u0E44\u0E2A\u0E27","leaves-in-the-wind":"\u0E43\u0E1A\u0E44\u0E21\u0E49\u0E23\u0E48\u0E27\u0E07 \u0E15\u0E32\u0E21\u0E2A\u0E32\u0E22\u0E25\u0E21","moment-of-bloom":"\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25 \u0E32\u0E41\u0E2B\u0E48\u0E07 \u0E01\u0E32\u0E23\u0E1C\u0E25\u0E34\u0E1A\u0E32\u0E19","oni_s-royale":"\u0E2B\u0E49\u0E27\u0E07\u0E2D\u0E2A\u0E39\u0E23 \u0E1B\u0E23\u0E30\u0E08\u0E31\u0E0D\u0E1A\u0E32\u0E19","reign-of-serenity":"\u0E1A\u0E31\u0E25\u0E25\u0E31\u0E07\u0E01\u0E4C\u0E41\u0E2B\u0E48\u0E07\u0E19\u0E34\u0E23\u0E31\u0E19\u0E14\u0E23\u0E4C","secretum-secretorum":"\u0E04\u0E27\u0E32\u0E21\u0E25\u0E31\u0E1A\u0E43\u0E19\u0E2B\u0E49\u0E27\u0E07\u0E25\u0E36\u0E01","sparkling-steps":"\u0E01\u0E49\u0E32\u0E27\u0E22\u0E48\u0E32\u0E07\u0E1E\u0E23\u0E48\u0E32\u0E07\u0E1E\u0E23\u0E32\u0E22","tapestry-of-golden-flames":"\u0E17\u0E30\u0E40\u0E25\u0E14\u0E32\u0E27\u0E41\u0E2B\u0E48 \u0E07\u0E40\u0E1B\u0E25\u0E27\u0E40\u0E1E\u0E25\u0E34\u0E07","tempestuous-destiny":"\u0E0A\u0E30\u0E15\u0E32 \u0E2D\u0E31\u0E19\u0E17\u0E38\u0E01\u0E02\u0E4C\u0E40\u0E02\u0E47\u0E0D","the-heron_s-court":"\u0E15\u0E33\u0E2B\u0E19\u0E31\u0E01\u0E01\u0E23\u0E30\u0E40 \u0E23\u0E35\u0E22\u0E19\u0E02\u0E32\u0E27","the-moongrass-enlightenment":"\u0E2B\u0E0D\u0E49\u0E32\u0E41\u0E2A\u0E07\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C \u0E1B\u0E23\u0E30\u0E17\u0E32\u0E19\u0E1B\u0E31\u0E0D\u0E0D\u0E32","the-transcendent-one-returns":"\u0E08\u0E32\u0E01\u0E1E\u0E31\u0E19\u0E18\u0E19\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E39\u0E48 \u0E41\u0E14\u0E19\u0E21\u0E19\u0E38\u0E29\u0E22\u0E4C","twilight-arbiter":"\u0E15\u0E38\u0E25\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E19\u0E18\u0E22\u0E32","twirling-lotus":"\u0E19\u0E34\u0E42\u0E25\u0E15\u0E1A\u0E25\u0E40\u0E23\u0E34\u0E07\u0E23\u0E30\u0E1A\u0E33","viridescent-vigil":"\u0E1E\u0E34\u0E17\u0E31\u0E01\u0E29\u0E4C\u0E44\u0E1E\u0E23\u0E27\u0E31\u0E19"},D={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},R={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},E={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},W={wishTitle:"\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19",rollButton:"\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 {count}",stellaFortuna:"\u0E14\u0E27\u0E07\u0E14\u0E32\u0E27\u0E41\u0E2B\u0E48\u0E07\u0E0A\u0E35\u0E27\u0E34\u0E15\u0E02\u0E2D\u0E07\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E14\u0E31\u0E07",loadFailed:"\u0E42\u0E2B\u0E25\u0E14\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08! <br /> \u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E44\u0E1B\u0E43\u0E0A\u0E49\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E2D\u0E37\u0E48\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E2D\u0E34\u0E19\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E40\u0E19\u0E47\u0E15\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E2B\u0E25\u0E35\u0E01\u0E40\u0E25\u0E35\u0E48\u0E22\u0E07\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C",allBanner:"\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",previous:"\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32",findBanner:"\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C",group:"\u0E01\u0E25\u0E38\u0E48\u0E21",beginner:"\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19","character-event":"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23","weapon-event":"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18",standard:"\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E16\u0E32\u0E27\u0E23",wishDescription:"\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E17\u0E38\u0E01 10 \u0E14\u0E23\u0E34\u0E07 \u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E27\u0E48\u0E32\u0E21\u0E35\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E2A\u0E35\u0E48\u0E14\u0E32\u0E27 \u0E2B\u0E23\u0E37\u0E2D\u0E2A\u0E39\u0E07\u0E01\u0E27\u0E32\u0E2D\u0E2D\u0E01\u0E41\u0E19\u0E48\u0E19\u0E2D\u0E19",novice:"\u0E2A\u0E32\u0E21\u0E40\u0E13\u0E23\u0E2A\u0E27\u0E14\u0E21\u0E19\u0E15\u0E4C",up:"UP!",beginnerSet:"\u0E25\u0E14\u0E1E\u0E34\u0E40\u0E28\u0E29 20%. \u0E40\u0E0A\u0E47\u0E15 10 \u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23: {character}",beginnerNote:'"\u0E43\u0E19\u0E10\u0E32\u0E19\u0E30\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E32\u0E27\u0E43\u0E0A\u0E49\u0E17\u0E35\u0E48\u0E0B\u0E37\u0E48\u0E2D\u0E2A\u0E31\u0E15\u0E22\u0E4C\u0E08\u0E30"',beginnerChance:"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E25\u0E37\u0E2D\u0E2D\u0E22\u0E39\u0E48: {chances}",standardNote:"\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E21\u0E32\u0E15\u0E23\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14",allWeaponTypes:"\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E38\u0E01\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17",etc:"\u0E41\u0E25\u0E30\u0E2D\u0E37\u0E48\u0E19 \u0E46",probIncreased:"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E43\u0E19\u0E01\u0E32\u0E23\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19!",eventNote:"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E08\u0E4D\u0E32\u0E01\u0E31\u0E14\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E2B\u0E32\u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E2D\u0E14\u0E04\u0E25\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E19 \u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32 UP \u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19",viewDetails:'\u0E14\u0E39\u0E17\u0E35\u0E48 "\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14" \u0E2A\u0E4D\u0E32\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21'},epitomizedPath:{text:"\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E",fatePoint:"\u0E41\u0E15\u0E49\u0E21\u0E01\u0E23\u0E23\u0E21",cancelPrompt:"\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?",cancelDesc:"\u0E01\u0E32\u0E23\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E08\u0E30\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E04\u0E30\u0E41\u0E19\u0E19\u0E2A\u0E30\u0E2A\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",selectWeapon:"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18",chartCourseOf:"\u0E40\u0E25\u0E37\u0E2D\u0E01 {target}",cancelCourse:"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01",chartCourse:"\u0E40\u0E25\u0E37\u0E2D\u0E01",courseSetFor:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01: {selectedCourse}",description:['"Epitomized Path" is a wish mechanic in "Epitome Invocation". Travelers can chart a course towards a specific 5-Star promotional weapon they hope to obtain.',"Once you have charted a course towards your chosen weapon, you will obtain 1 Fate Point upon <span> receiving a 5-Star weapon that is not the one that you chose</span>. You can obtain a maximum of 2 Fate Points.",`Once you've reached the maximum amount of Fate Points, the next 5-Star weapon you choose will be the one you have chosen through "Epitomized Path".`,"When you obtain the chosen weapon in Epitome Invocation through Epitomized Path, <span> the accumulated Fate Points will be cleared </span>.","If you do not use Epitomized Path to obtain a weapon, you will not accumulate Fate Points.","The charted course towards a certain weapon can be changed or cancelled. However, after doing so, any current Fate Points will be cleared.","At the end of the current period of Epitome Invocation, any current Fate Points will be cleared."]},result:{skip:"\u0E02\u0E49\u0E32\u0E21",meteorFailed:"\u0E42\u0E2B\u0E25\u0E14\u0E41\u0E2D\u0E19\u0E34\u0E40\u0E21\u0E0A\u0E31\u0E48\u0E19\u0E14\u0E32\u0E27\u0E15\u0E01\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08",new:"\u0E43\u0E2B\u0E21\u0E48",convertion:"\u0E01\u0E32\u0E23\u0E41\u0E1B\u0E25\u0E07",title:"\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E17\u0E35\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A {item} et al"}},K={heading:"\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21",default:"\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",setOutfit:"\u0E0A\u0E38\u0E14\u0E40\u0E0B\u0E47\u0E17",owned:"\u0E21\u0E35\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E41\u0E25\u0E49\u0E27",purchasePrompt:"\u0E04\u0E38\u0E13\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E38\u0E14\u0E19\u0E35\u0E49 \u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E2B\u0E23\u0E37\u0E2D\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E0A\u0E38\u0E14\u0E19\u0E35\u0E49?",promptInfo:"\u0E04\u0E38\u0E13\u0E22\u0E31\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E41\u0E15\u0E48\u0E07\u0E01\u0E32\u0E22\u0E19\u0E35\u0E49\u0E44\u0E14\u0E49\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",obtained:"\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E0A\u0E38\u0E14\u0E43\u0E2B\u0E21\u0E48\u0E41\u0E25\u0E49\u0E27",unlocked:"{character}: \u0E1B\u0E25\u0E14\u0E25\u0E47\u0E2D\u0E04\u0E0A\u0E38\u0E14\u0E41\u0E25\u0E49\u0E27",item:{"5-star-outrider":{name:"\u0E2D\u0E31\u0E28\u0E27\u0E34\u0E19\u0E25\u0E32\u0E14\u0E15\u0E23\u0E30\u0E40\u0E27\u0E19\u0E43\u0E08\u0E40\u0E01\u0E34\u0E19\u0E23\u0E49\u0E2D\u0E22"},"favonian-fevotion":{name:"\u0E2A\u0E32\u0E22\u0E25\u0E21\u0E41\u0E2B\u0E48\u0E07\u0E04\u0E27\u0E32\u0E21\u0E20\u0E31\u0E01\u0E14\u0E35"},"flowing-fate":{name:"\u0E14\u0E27\u0E07\u0E14\u0E32\u0E27\u0E41\u0E2B\u0E48\u0E07\u0E0A\u0E35\u0E27\u0E34\u0E15\u0E17\u0E35\u0E48\u0E41\u0E1B\u0E23\u0E1C\u0E31\u0E19"},"executor_s-thorns":{name:"\u0E40\u0E1E\u0E0A\u0E0C\u0E06\u0E32\u0E15\u0E1B\u0E23\u0E32\u0E1A\u0E2D\u0E18\u0E23\u0E23\u0E21"},"sea-breeze-dandelion":{name:"\u0E04\u0E27\u0E32\u0E21\u0E1D\u0E31\u0E19\u0E43\u0E19\u0E2A\u0E32\u0E22\u0E25\u0E21\u0E41\u0E2B\u0E48\u0E07\u0E17\u0E49\u0E2D\u0E07\u0E17\u0E30\u0E40\u0E25",description:"\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E2B\u0E19\u0E49\u0E32\u0E23\u0E49\u0E2D\u0E19\u0E02\u0E2D\u0E07 Jean \u0E17\u0E35\u0E48\u0E14\u0E39\u0E40\u0E22\u0E47\u0E19\u0E2A\u0E1A\u0E32\u0E22\u0E41\u0E15\u0E48\u0E22\u0E31\u0E07\u0E04\u0E07\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E07\u0E48\u0E32\u0E07\u0E32\u0E21\u0E40\u0E2D\u0E32\u0E44\u0E27\u0E49 \u0E40\u0E1B\u0E47\u0E19\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E01\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E44\u0E1B\u0E40\u0E17\u0E35\u0E48\u0E22\u0E27\u0E17\u0E30\u0E40\u0E25\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14"},"summertime-sparkle":{name:"\u0E0B\u0E31\u0E21\u0E40\u0E21\u0E2D\u0E23\u0E4C\u0E0B\u0E48\u0E32\u0E17\u0E49\u0E32\u0E23\u0E49\u0E2D\u0E19",description:"\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E0A\u0E32\u0E22\u0E2B\u0E32\u0E14\u0E02\u0E2D\u0E07 Barbara \u0E01\u0E23\u0E30\u0E42\u0E1B\u0E23\u0E07\u0E2A\u0E31\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E2A\u0E27\u0E22\u0E07\u0E32\u0E21 \u0E17\u0E35\u0E48\u0E40\u0E15\u0E47\u0E21\u0E44\u0E1B\u0E14\u0E49\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E14\u0E43\u0E2A\u0E02\u0E2D\u0E07\u0E24\u0E14\u0E39\u0E23\u0E49\u0E2D\u0E19 \u0E41\u0E25\u0E30\u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E08\u0E30\u0E41\u0E1C\u0E48\u0E0B\u0E48\u0E32\u0E19\u0E01\u0E25\u0E34\u0E48\u0E19\u0E2D\u0E32\u0E22 \u0E2D\u0E31\u0E19\u0E40\u0E22\u0E47\u0E19\u0E2A\u0E14\u0E0A\u0E37\u0E48\u0E19\u0E02\u0E2D\u0E07\u0E17\u0E30\u0E40\u0E25\u0E2D\u0E35\u0E01\u0E14\u0E49\u0E27\u0E22"},"opulent-splendor":{name:"\u0E23\u0E31\u0E28\u0E21\u0E35\u0E23\u0E38\u0E49\u0E07\u0E40\u0E08\u0E34\u0E14\u0E08\u0E23\u0E31\u0E2A",description:"\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E0A\u0E38\u0E14\u0E1E\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07 Keqing \u0E17\u0E48\u0E32\u0E21\u0E01\u0E25\u0E32\u0E07\u0E1A\u0E23\u0E23\u0E22\u0E32\u0E01\u0E32\u0E28\u0E2D\u0E31\u0E19\u0E07\u0E14\u0E07\u0E32\u0E21\u0E02\u0E2D\u0E07\u0E07\u0E32\u0E19\u0E40\u0E17\u0E28\u0E01\u0E32\u0E25 Lantern Rite \u0E04\u0E27\u0E32\u0E21\u0E40\u0E2B\u0E19\u0E37\u0E48\u0E2D\u0E22\u0E22\u0E32\u0E01\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E27\u0E31\u0E19\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E1C\u0E48\u0E32\u0E19\u0E21\u0E32 \u0E2B\u0E25\u0E48\u0E2D\u0E2B\u0E25\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E40\u0E01\u0E34\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E27\u0E32\u0E21\u0E07\u0E14\u0E07\u0E32\u0E21\u0E43\u0E19\u0E04\u0E48\u0E33\u0E04\u0E37\u0E19\u0E19\u0E35\u0E49"},"orchid_s-evening-gown":{name:"\u0E01\u0E25\u0E49\u0E27\u0E22\u0E44\u0E21\u0E49\u0E2D\u0E19\u0E18\u0E01\u0E32\u0E23",description:"\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E0A\u0E38\u0E14\u0E1E\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07 Ningguang \u0E0A\u0E38\u0E14\u0E40\u0E14\u0E23\u0E2A\u0E2A\u0E35\u0E1F\u0E49\u0E32\u0E04\u0E23\u0E32\u0E21\u0E15\u0E31\u0E27\u0E22\u0E32\u0E27\u0E0A\u0E48\u0E27\u0E22\u0E02\u0E31\u0E1A\u0E40\u0E19\u0E49\u0E19\u0E23\u0E39\u0E1B\u0E23\u0E48\u0E32\u0E07\u0E2A\u0E38\u0E14\u0E2A\u0E07\u0E48\u0E32\u0E07\u0E32\u0E21\u0E43\u0E2B\u0E49\u0E40\u0E14\u0E48\u0E19\u0E0A\u0E31\u0E14 \u0E41\u0E25\u0E30\u0E1B\u0E35\u0E01\u0E1C\u0E35\u0E40\u0E2A\u0E37\u0E49\u0E2D\u0E17\u0E35\u0E48\u0E02\u0E49\u0E2D\u0E40\u0E17\u0E49\u0E32\u0E0A\u0E48\u0E27\u0E22\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E04\u0E27\u0E32\u0E21\u0E2D\u0E48\u0E2D\u0E19\u0E2B\u0E27\u0E32\u0E19\u0E43\u0E2B\u0E49\u0E40\u0E18\u0E2D\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B\u0E2D\u0E35\u0E01"},"ein-immernachtstraum":{name:"\u0E2B\u0E49\u0E27\u0E07\u0E1D\u0E31\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E23\u0E31\u0E15\u0E15\u0E34\u0E01\u0E32\u0E25",description:"\u0E0A\u0E38\u0E14\u0E1E\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07\u0E40\u0E08\u0E49\u0E32\u0E2B\u0E0D\u0E34\u0E07 Fischl \u0E02\u0E2D\u0E43\u0E2B\u0E49\u0E1C\u0E39\u0E49\u0E2A\u0E39\u0E07\u0E28\u0E31\u0E01\u0E14\u0E34\u0E4C\u0E40\u0E1B\u0E35\u0E48\u0E22\u0E21\u0E44\u0E1B\u0E14\u0E49\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E01\u0E25\u0E49\u0E32\u0E2B\u0E32\u0E0D \u0E08\u0E23\u0E34\u0E07\u0E43\u0E08 \u0E41\u0E25\u0E30\u0E40\u0E21\u0E15\u0E15\u0E32\u0E15\u0E25\u0E2D\u0E14\u0E44\u0E1B \u0E04\u0E27\u0E32\u0E21\u0E0A\u0E31\u0E48\u0E27\u0E23\u0E49\u0E32\u0E22\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E25\u0E32\u0E22\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E22\u0E2D\u0E21\u0E28\u0E34\u0E42\u0E23\u0E23\u0E32\u0E1A\u0E15\u0E48\u0E2D\u0E40\u0E18\u0E2D"},"red-dead-of-night":{name:"\u0E40\u0E1E\u0E25\u0E34\u0E07\u0E21\u0E2B\u0E31\u0E19\u0E15\u0E4C\u0E23\u0E31\u0E15\u0E15\u0E34\u0E01\u0E32\u0E25",description:"\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48 Diluc \u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E2D\u0E01\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23\u0E25\u0E31\u0E1A \u0E23\u0E32\u0E27\u0E01\u0E31\u0E1A\u0E40\u0E1B\u0E25\u0E27\u0E44\u0E1F\u0E17\u0E35\u0E48\u0E25\u0E38\u0E01\u0E42\u0E0A\u0E19\u0E17\u0E48\u0E32\u0E21\u0E01\u0E25\u0E32\u0E07\u0E40\u0E07\u0E32\u0E21\u0E37\u0E14 \u0E23\u0E48\u0E2D\u0E07\u0E23\u0E2D\u0E22\u0E2A\u0E35\u0E41\u0E14\u0E07\u0E40\u0E02\u0E49\u0E21\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E1B\u0E25\u0E32\u0E22\u0E17\u0E31\u0E28\u0E19\u0E27\u0E34\u0E2A\u0E31\u0E22\u0E02\u0E2D\u0E07\u0E28\u0E31\u0E15\u0E23\u0E39 \u0E04\u0E37\u0E2D\u0E1D\u0E31\u0E19\u0E23\u0E49\u0E32\u0E22\u0E17\u0E35\u0E48\u0E08\u0E30\u0E04\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E01\u0E31\u0E1A\u0E1E\u0E27\u0E01\u0E40\u0E02\u0E32\u0E44\u0E1B\u0E15\u0E25\u0E2D\u0E14\u0E0A\u0E35\u0E27\u0E34\u0E15"},"a-sobriquet-under-shade":{name:"\u0E19\u0E32\u0E21\u0E41\u0E2B\u0E48\u0E07\u0E04\u0E27\u0E32\u0E21\u0E20\u0E31\u0E01\u0E14\u0E35",description:"\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48 Lisa \u0E2A\u0E31\u0E48\u0E07\u0E15\u0E31\u0E14\u0E02\u0E13\u0E30\u0E21\u0E32\u0E40\u0E22\u0E37\u0E2D\u0E19 Sumeru \u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E0A\u0E38\u0E14\u0E01\u0E23\u0E30\u0E42\u0E1B\u0E23\u0E07\u0E17\u0E35\u0E48\u0E14\u0E39\u0E40\u0E23\u0E35\u0E22\u0E1A\u0E07\u0E48\u0E32\u0E22\u0E41\u0E15\u0E48\u0E2A\u0E07\u0E48\u0E32\u0E07\u0E32\u0E21 \u0E04\u0E25\u0E49\u0E32\u0E22\u0E04\u0E25\u0E36\u0E07\u0E01\u0E31\u0E1A\u0E22\u0E39\u0E19\u0E34\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E43\u0E19\u0E2A\u0E21\u0E31\u0E22\u0E40\u0E23\u0E35\u0E22\u0E19\u0E02\u0E2D\u0E07\u0E40\u0E18\u0E2D"},"springbloom-missive":{name:"\u0E2A\u0E32\u0E23\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E22\u0E32\u0E21\u0E14\u0E2D\u0E01\u0E44\u0E21\u0E49\u0E1C\u0E25\u0E34\u0E1A\u0E32\u0E19",description:"\u0E0A\u0E38\u0E14\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E02\u0E2D\u0E07 Kamisato Ayaka \u0E17\u0E33\u0E02\u0E36\u0E49\u0E19\u0E42\u0E14\u0E22\u0E2D\u0E49\u0E32\u0E07\u0E2D\u0E34\u0E07\u0E08\u0E32\u0E01\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E41\u0E15\u0E48\u0E07\u0E01\u0E32\u0E22\u0E02\u0E2D\u0E07\u0E2B\u0E0D\u0E34\u0E07\u0E0A\u0E32\u0E27 Fontaine \u0E43\u0E19\u0E20\u0E32\u0E1E\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A\u0E44\u0E25\u0E17\u0E4C\u0E42\u0E19\u0E40\u0E27\u0E25 \u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E08\u0E30\u0E2A\u0E30\u0E17\u0E49\u0E2D\u0E19\u0E16\u0E36\u0E07\u0E27\u0E34\u0E16\u0E35\u0E0A\u0E35\u0E27\u0E34\u0E15\u0E2A\u0E38\u0E20\u0E32\u0E1E\u0E2A\u0E15\u0E23\u0E35\u0E02\u0E2D\u0E07 Fontaine \u0E44\u0E14\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E14\u0E35"},"blossoming-starlight":{name:"\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E22\u0E14\u0E32\u0E27\u0E2A\u0E30\u0E1E\u0E23\u0E31\u0E48\u0E07",description:"\u0E0A\u0E38\u0E14\u0E41\u0E2A\u0E19\u0E1B\u0E23\u0E30\u0E13\u0E35\u0E15\u0E17\u0E35\u0E48 Klee \u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E15\u0E2D\u0E19\u0E41\u0E2A\u0E14\u0E07\u0E25\u0E30\u0E04\u0E23\u0E09\u0E32\u0E01\u0E2A\u0E33\u0E04\u0E31\u0E0D \u0E21\u0E31\u0E19\u0E21\u0E35\u0E2A\u0E35\u0E2A\u0E31\u0E19\u0E07\u0E14\u0E07\u0E32\u0E21\u0E2A\u0E14\u0E43\u0E2A \u0E23\u0E32\u0E27\u0E01\u0E31\u0E1A\u0E40\u0E04\u0E49\u0E01\u0E17\u0E35\u0E48\u0E1B\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E14\u0E49\u0E27\u0E22\u0E14\u0E2D\u0E01\u0E44\u0E21\u0E49\u0E04\u0E23\u0E35\u0E21\u0E2A\u0E14\u0E01\u0E31\u0E1A\u0E40\u0E17\u0E35\u0E22\u0E19\u0E2A\u0E35\u0E41\u0E14\u0E07 \u0E21\u0E31\u0E19\u0E08\u0E30\u0E19\u0E33\u0E1E\u0E32\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E38\u0E02\u0E41\u0E25\u0E30\u0E23\u0E2D\u0E22\u0E22\u0E34\u0E49\u0E21 \u0E2A\u0E39\u0E48\u0E17\u0E31\u0E48\u0E27\u0E17\u0E38\u0E01\u0E41\u0E2B\u0E48\u0E07\u0E2B\u0E19\u0E17\u0E35\u0E48\u0E1C\u0E08\u0E0D\u0E20\u0E31\u0E22\u0E44\u0E1B\u0E16\u0E36\u0E07\u0E40\u0E25\u0E22\u0E25\u0E48\u0E30"},"sailwind-shadow":{name:"\u0E40\u0E07\u0E32\u0E19\u0E32\u0E27\u0E32\u0E25\u0E48\u0E2D\u0E07\u0E25\u0E21",description:'\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48 Kaeya \u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E15\u0E2D\u0E19\u0E02\u0E36\u0E49\u0E19\u0E41\u0E2A\u0E14\u0E07 "\u0E08\u0E2D\u0E21\u0E42\u0E08\u0E23\u0E14\u0E32\u0E1A\u0E2A\u0E31\u0E49\u0E19" \u0E1A\u0E19\u0E40\u0E27\u0E17\u0E35 \u0E0A\u0E38\u0E14\u0E2D\u0E31\u0E19\u0E41\u0E2A\u0E19\u0E15\u0E23\u0E30\u0E01\u0E32\u0E23\u0E15\u0E32\u0E19\u0E35\u0E49 \u0E16\u0E39\u0E01\u0E2D\u0E2D\u0E01\u0E41\u0E1A\u0E1A\u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49\u0E2B\u0E25\u0E31\u0E01\u0E01\u0E32\u0E23\u0E27\u0E48\u0E32 "\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E36\u0E07\u0E14\u0E39\u0E14\u0E2A\u0E32\u0E22\u0E15\u0E32" \u0E41\u0E15\u0E48\u0E16\u0E36\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E31\u0E49\u0E19 \u0E27\u0E34\u0E18\u0E35\u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E01\u0E47\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E22\u0E38\u0E48\u0E07\u0E22\u0E32\u0E01\u0E2D\u0E30\u0E44\u0E23\u0E19\u0E31\u0E01 \u0E2A\u0E48\u0E27\u0E19\u0E17\u0E35\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E2A\u0E35\u0E22\u0E40\u0E27\u0E25\u0E32\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E21\u0E32\u0E01\u0E2A\u0E38\u0E14 \u0E40\u0E2B\u0E47\u0E19\u0E04\u0E07\u0E08\u0E30\u0E21\u0E35\u0E41\u0E04\u0E48\u0E2A\u0E48\u0E27\u0E19\u0E02\u0E2D\u0E07\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E1B\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E01\u0E31\u0E1A\u0E14\u0E32\u0E1A\u0E2A\u0E31\u0E49\u0E19\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19'}}},M={text:"\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",promotional:"\u0E44\u0E2D\u0E40\u0E17\u0E21 UP",itemlist:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E2D\u0E40\u0E17\u0E21",increasedRate:'\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49\u0E04\u0E37\u0E2D "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A UP!!!"',percentageDrop:"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2A\u0E38\u0E48\u0E21\u0E44\u0E14\u0E49\u0E44\u0E2D\u0E40\u0E17\u0E21 {rarity} \u0E14\u0E32\u0E27\u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A:{percentage}",wishDetails:"\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19",probInfo:"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E2D\u0E2D\u0E01\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27:{singlePercentage} (\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35:{avgPercentage})",itemWishFor:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19:",itemType:"\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17",itemName:"\u0E0A\u0E37\u0E48\u0E2D",beginnerInfo:"\u0E40\u0E1B\u0E34\u0E14\u0E16\u0E32\u0E27\u0E23 (\u0E08\u0E30\u0E1B\u0E34\u0E14\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E1A 20 \u0E04\u0E23\u0E31\u0E49\u0E07)",limited:"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E08\u0E33\u0E01\u0E31\u0E14\u0E40\u0E27\u0E25\u0E32",permanent:"\u0E40\u0E1B\u0E34\u0E14\u0E16\u0E32\u0E27\u0E23",alert:"\u203B \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19{wishName}\u0E2D\u0E32\u0E27\u0E38\u0E18 \u0E08\u0E33\u0E19\u0E27\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E23\u0E32\u0E23\u0E16\u0E19\u0E32\u0E08\u0E30\u0E2A\u0E30\u0E2A\u0E21\u0E20\u0E32\u0E22\u0E43\u0E19\u0E40\u0E2B\u0E15\u0E38\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E19\u0E35\u0E49\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19\u0E41\u0E25\u0E30\u0E44\u0E21\u0E48\u0E02\u0E36\u0E49\u0E19\u0E01\u0E31\u0E1A\u0E08\u0E33\u0E19\u0E27\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E23\u0E32\u0E23\u0E16\u0E19\u0E32\u0E2D\u0E37\u0E48\u0E19 \u0E46",beginner:["<span>\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33</span> \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19 \u0E40\u0E1B\u0E47\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E16\u0E32\u0E27\u0E23 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E41\u0E19\u0E30\u0E19\u0E33\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E19\u0E31\u0E01\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E17\u0E35\u0E48\u0E40\u0E1E\u0E34\u0E48\u0E07\u0E21\u0E32\u0E16\u0E36\u0E07\u0E42\u0E25\u0E01\u0E41\u0E2B\u0E48\u0E07 Teyvat \u0E19\u0E31\u0E01\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18 <br /> \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E19\u0E35\u0E49 \u0E2B\u0E32\u0E01\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E2A\u0E34\u0E1A\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E34\u0E14\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E19\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A<span>\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14 20%</span>\u0E41\u0E25\u0E30\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E2A\u0E34\u0E1A\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01\u0E08\u0E30\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {character}!\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E0B\u0E47\u0E15\u0E2A\u0E34\u0E1A\u0E04\u0E23\u0E31\u0E49\u0E07\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19 \u0E08\u0E30\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23<span>\u0E2D\u0E37\u0E48\u0E19 \u0E46</span> \u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48\u0E23\u0E30\u0E14\u0E31\u0E1A 4 \u0E14\u0E32\u0E27\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B! \u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E43\u0E19\u0E40\u0E0B\u0E47\u0E15\u0E19\u0E35\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 <span>20 \u0E04\u0E23\u0E31\u0E49\u0E07</span> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E1A 20 \u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E25\u0E49\u0E27 \u0E2B\u0E19\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49\u0E08\u0E30\u0E1B\u0E34\u0E14\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34","\u203B \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49","\u3013\u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u3013","\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 <span> 0.600%</span> <br /> \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 <span> 5.100%</span>; \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) <span> 13.000%</span> \u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E21\u0E32\u0E01\u0E2A\u0E38\u0E14 <span>10 \u0E04\u0E23\u0E31\u0E49\u0E07</span> \u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48 4 \u0E14\u0E32\u0E27\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B"],standard:['"{bannerName}" \u0E40\u0E1B\u0E47\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E16\u0E32\u0E27\u0E23 \u0E0B\u0E36\u0E48\u0E07\u0E19\u0E31\u0E01\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18.<br/> \u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E19\u0E35\u0E49 \u0E17\u0E38\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 10 \u0E04\u0E23\u0E31\u0E49\u0E07\u0E08\u0E30<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 1 \u0E2D\u0E31\u0E19 \u0E2B\u0E23\u0E37\u0E2D\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 1 \u0E15\u0E31\u0E27',"\u203B \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49","\u3013 \u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u3013","\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.300%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.300%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>1.600%</span> \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>90</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 <br> \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>5.100%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>13.000%</span> \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>10</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>99.400%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span>"],events:['\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E44\u0E14\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19\u0E41\u0E25\u0E49\u0E27 \u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27<span>\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14</span> {featuredCharacter} \u0E41\u0E25\u0E30\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 {rateupCharacters} \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E08\u0E30<span>\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19</span>! <br/> <span> \u203B \u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14\u0E14\u0E49\u0E32\u0E19\u0E1A\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E16\u0E32\u0E27\u0E23 "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E01\u0E32\u0E23\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07"</span>',"\u203B \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49","\u3013 \u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u3013","[\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27]",'\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span> \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>1.600%</span> \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span> 90</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27<br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>50.000%</span> \u0E17\u0E35\u0E48\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 {featuredCharacter}\u0E2B\u0E32\u0E01\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49',"[\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27]",'\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19  "{bannerName}"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span> 5.100%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span> 13.000%</span>\u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>10</span>\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>99.400%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span>. <br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>50.000%</span> \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 {rateupCharacters}\u0E2B\u0E32\u0E01\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 UP \u0E08\u0E30\u0E21\u0E35\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14'],weapons:['\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E44\u0E14\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19\u0E41\u0E25\u0E49\u0E27 \u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 <span>\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14</span> {featuredWeapon1}, {featuredWeapon2} \u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 <span>\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14</span> {rateupWeapons} \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E08\u0E30<span>\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19!</span> <br/> <span> \u203B\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14\u0E14\u0E49\u0E32\u0E19\u0E1A\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E16\u0E32\u0E27\u0E23 "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E01\u0E32\u0E23\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07"</span>',"\u203B\u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49","\u3013\u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u3013","[\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27]",'\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E37\u0E2D <span>0.700%</span>\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>1.850%</span>; \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>80</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27<br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>75.000%</span> \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 {featuredWeapon1}, {featuredWeapon2}\u0E2B\u0E32\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49<span>\u0E41\u0E19\u0E48\u0E19\u0E2D\u0E19</span> \u0E2B\u0E32\u0E01\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E16\u0E36\u0E07\u0E15\u0E32\u0E21\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27 \u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E41\u0E15\u0E48\u0E25\u0E30\u0E0A\u0E34\u0E49\u0E19\u0E08\u0E30\u0E21\u0E35\u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E19 <br/> \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}"\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 \u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49 "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E" \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E43\u0E19\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E44\u0E14\u0E49 \u0E42\u0E14\u0E22\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E08\u0E30\u0E21\u0E35\u0E1C\u0E25\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19 \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 <br/> \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49 "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E" \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23 \u0E2B\u0E32\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E21\u0E32\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32 1 \u0E41\u0E15\u0E49\u0E21 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32 <span>\u0E40\u0E15\u0E47\u0E21</span>\u0E41\u0E25\u0E49\u0E27 \u0E2D\u0E32\u0E27\u0E38\u0E18\u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E08\u0E30\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E43\u0E19\u0E02\u0E13\u0E30\u0E19\u0E31\u0E49\u0E19 \u0E41\u0E25\u0E30\u0E2B\u0E32\u0E01\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E08\u0E30\u0E40\u0E15\u0E47\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E01\u0E47\u0E15\u0E32\u0E21 \u0E08\u0E30\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19 <span>0</span> \u0E41\u0E25\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2A\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E21\u0E48 <br/>\u0E2B\u0E32\u0E01\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E17\u0E33\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E1C\u0E48\u0E32\u0E19 "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E" \u0E08\u0E30<span>\u0E44\u0E21\u0E48\u0E21\u0E35</span>\u0E01\u0E32\u0E23\u0E2A\u0E30\u0E2A\u0E21\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32 <br/>\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E14\u0E49 \u0E0B\u0E36\u0E48\u0E07\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E41\u0E25\u0E49\u0E27 \u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E17\u0E35\u0E48\u0E2A\u0E30\u0E2A\u0E21\u0E21\u0E32\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19 <span>0</span> \u0E41\u0E25\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2A\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E21\u0E48 <br/>\u203B\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E08\u0E30\u0E21\u0E35\u0E1C\u0E25\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19 \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E23\u0E2D\u0E1A\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 \u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E17\u0E35\u0E48\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E25\u0E07 \u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E17\u0E35\u0E48\u0E2A\u0E30\u0E2A\u0E21\u0E44\u0E27\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19 <span>0</span> \u0E41\u0E25\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2A\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E21\u0E48',"[\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27]",'\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>6.000%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>3.000%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>3.000%</span>\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>14.500%</span>\u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>10</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>99.300%</span>\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27\u0E04\u0E37\u0E2D <span>0.700%</span>. <br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>75.000%</span>\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP 4 \u0E14\u0E32\u0E27\u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 {rateupWeapons} \u0E2B\u0E32\u0E01\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B <span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP 4 \u0E14\u0E32\u0E27 \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E41\u0E25\u0E30\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E14\u0E49\u0E2D\u0E32\u0E27\u0E38\u0E18 UP 4 \u0E14\u0E32\u0E27\u0E41\u0E25\u0E49\u0E27 \u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 4 \u0E14\u0E32\u0E27\u0E41\u0E15\u0E48\u0E25\u0E30\u0E0A\u0E34\u0E49\u0E19\u0E08\u0E30\u0E21\u0E35\u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E19'],convertion:{fiveStar:"\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {starglitter} \u0E2D\u0E35\u0E01 10 \u0E2D\u0E31\u0E19;",fourStar:"\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {starglitter} \u0E2D\u0E35\u0E01 2 \u0E2D\u0E31\u0E19;",threeStar:"\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 3 \u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {stardust} \u0E2D\u0E35\u0E01 15 \u0E2D\u0E31\u0E19;"},duplicate:{heading:"\u3013 \u0E01\u0E32\u0E23\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E0B\u0E49\u0E33 \u3013",text:"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 {rarity} \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E41\u0E25\u0E49\u0E27 \u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E08\u0E30\u0E14\u0E49\u0E27\u0E22\u0E27\u0E34\u0E18\u0E35\u0E43\u0E14\u0E01\u0E47\u0E15\u0E32\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E41\u0E15\u0E48\u0E44\u0E21\u0E48\u0E08\u0E33\u0E01\u0E31\u0E14\u0E40\u0E1E\u0E35\u0E22\u0E07 \u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19, \u0E01\u0E32\u0E23\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E08\u0E32\u0E01\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32, \u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E08\u0E32\u0E01\u0E40\u0E01\u0E21 \u0E2F\u0E25\u0E2F) \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E0B\u0E49\u0E33\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48 2-7 \u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E1B\u0E47\u0E19{stellaFortuna}\u0E01\u0E25\u0E48\u0E32\u0E27 1 \u0E14\u0E27\u0E07 \u0E41\u0E25\u0E30 {starglitter} {constBonus} \u0E2D\u0E31\u0E19; \u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48 8 \u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E19\u0E44\u0E1B \u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E1B\u0E47\u0E19 {starglitter} {fullConstBonus} \u0E2D\u0E31\u0E19"}},H={title:"\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34",text:"\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34",resetButton:"\u0E0A\u0E31\u0E14\u0E40\u0E08\u0E19",resetPromptTitle:"\u0E25\u0E49\u0E32\u0E07\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01 ?",resetPrompt:'\u0E19\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E19\u0E35\u0E49\u0E22\u0E31\u0E07\u0E25\u0E1A\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E1A\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C "{bannerName}" \u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E0A\u0E48\u0E2D\u0E07\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E2D\u0E07\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 <br /> \u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E08\u0E30\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15 ?',resetSuccess:"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08 !",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17:",disclaimer:"\u0E40\u0E23\u0E32\u0E44\u0E21\u0E48\u0E40\u0E04\u0E22\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E1A\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1A\u0E19\u0E04\u0E25\u0E32\u0E27\u0E14\u0E4C \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E16\u0E39\u0E01\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49\u0E43\u0E19 IndexedDB \u0E2B\u0E21\u0E32\u0E22\u0E04\u0E27\u0E32\u0E21\u0E27\u0E48\u0E32\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E16\u0E39\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E44\u0E27\u0E49\u0E43\u0E19\u0E17\u0E35\u0E48\u0E08\u0E31\u0E14\u0E40\u0E01\u0E47\u0E1A\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E21\u0E31\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E25\u0E1A\u0E08\u0E19\u0E01\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E08\u0E30\u0E25\u0E1A\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07\u0E1C\u0E48\u0E32\u0E19\u0E1B\u0E38\u0E48\u0E21\u0E25\u0E1A/\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2B\u0E23\u0E37\u0E2D\u0E25\u0E49\u0E32\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C",currentPity:"Current Pity :",totalPull:"\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E01\u0E32\u0E0A\u0E32 :",totalSpend:"\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E08\u0E48\u0E32\u0E22\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 :",filterTxt:"\u0E01\u0E23\u0E2D\u0E07",filter:"{rarity} \u0E14\u0E32\u0E27",filterAll:"\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",pity:"Pity",timeReceived:"\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A",waiting:"\u0E17\u0E35\u0E48\u0E23\u0E2D",noData:"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25",untracked:"Untracked",item:"\u0E2A\u0E34\u0E48\u0E07\u0E02\u0E2D\u0E07",win:"\u0E0A\u0E19\u0E30 50/50",lose:"\u0E41\u0E1E\u0E49 50/50",guaranteed:"\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19",selected:"\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01",olderLayout:"\u0E40\u0E04\u0E49\u0E32\u0E42\u0E04\u0E23\u0E07\u0E17\u0E35\u0E48\u0E40\u0E01\u0E48\u0E32\u0E01\u0E27\u0E48\u0E32",switchv2:"Switch to V2"},L={text:"\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32",paimonBargains:"\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32 Paimon",fateNeeded:"\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 {rollQty} {currency} \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",primoNeeded:"\u0E0B\u0E37\u0E49\u0E2D\u0E14\u0E49\u0E27\u0E22 {primoPrice} Primogem?",purchaseUpto:"\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 1",purchaseConfirm:"\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E01\u0E32\u0E23\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D",exchangeHeading:"\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19",purchaseHeading:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E08\u0E30\u0E0B\u0E37\u0E49\u0E2D",purchaseButton:"\u0E0B\u0E37\u0E49\u0E2D",pay:"\u0E08\u0E48\u0E32\u0E22",product:"\u0E1C\u0E25\u0E34\u0E15\u0E20\u0E31\u0E13\u0E11\u0E4C",consume:"\u0E1A\u0E23\u0E34\u0E42\u0E20\u0E04",selectPayment:"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19",unrealWallet:"UnReal Wallet",convertPrimo:"\u0E41\u0E1B\u0E25\u0E07\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E40\u0E1B\u0E47\u0E19\u0E1E\u0E23\u0E35\u0E42\u0E21\u0E40\u0E08\u0E21 ?",proceedPayment:"\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19",qty:"Qty",insufficient:"\u0E40\u0E07\u0E34\u0E19\u0E17\u0E38\u0E19\u0E44\u0E21\u0E48\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E1E\u0E2D",crystalTopup:"\u0E04\u0E23\u0E34\u0E2A\u0E15\u0E31\u0E25\u0E40\u0E15\u0E34\u0E21\u0E40\u0E07\u0E34\u0E19",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"\u0E0B\u0E37\u0E49\u0E2D\u0E04\u0E23\u0E34\u0E2A\u0E15\u0E31\u0E25",recomendedHeading:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E41\u0E19\u0E30\u0E19\u0E33",paimonHeading:"\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32 Paimon",welkinNote:"\u0E0B\u0E37\u0E49\u0E2D\u0E44\u0E14\u0E49\u0E2B\u0E25\u0E32\u0E22\u0E04\u0E23\u0E31\u0E49\u0E07",limitedOffer:"\u0E02\u0E49\u0E2D\u0E40\u0E2A\u0E19\u0E2D\u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14",noLimitTime:"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23 \u0E08\u0E33\u0E01\u0E31\u0E14 \u0E40\u0E27\u0E25\u0E32\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"\u0E1E\u0E23\u0E41\u0E2B\u0E48\u0E07\u0E14\u0E27\u0E07\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C",newOutfit:"\u0E0A\u0E38\u0E14\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E43\u0E2B\u0E21\u0E48",dayRemaining:"\u0E27\u0E31\u0E19\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E25\u0E37\u0E2D: {days}",alreadyClaimed:"\u0E19\u0E33\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E27\u0E31\u0E19\u0E19\u0E35\u0E49",instantlyGet:"\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E17\u0E31\u0E19\u0E17\u0E35",dailyGift:"\u0E02\u0E2D\u0E07\u0E02\u0E27\u0E31\u0E0D\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E27\u0E31\u0E19",obtainTotal:"\u0E23\u0E31\u0E1A\u0E1C\u0E25\u0E36\u0E01\u0E23\u0E27\u0E21 {totalGenesis} Genesis Crystal \u0E41\u0E25\u0E30 {totalPrimo} primogems \u0E15\u0E25\u0E2D\u0E14 30 \u0E27\u0E31\u0E19",claimingBlessing:"\u0E04\u0E25\u0E34\u0E01\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E27\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E1E\u0E23\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C",issuedPurchase:"\u0E2D\u0E2D\u0E01\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E0B\u0E37\u0E49\u0E2D",collect:"\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A\u0E23\u0E32\u0E22\u0E27\u0E31\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E27\u0E25\u0E32 30 \u0E27\u0E31\u0E19"},exchange:{starglitter:"\u0E01\u0E32\u0E23\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19 Starglitter",stardust:"\u0E01\u0E32\u0E23\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19 Stardust",primogem:"\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E01\u0E31\u0E1A Primogem"},item:{genesis:"Genesis Crystal",primogem:"Primogem",intertwined:"Intertwined Fate",acquaint:"Acquaint Fate",starglitter:"Masterless Starglitter",stardust:"Masterless Stardust"},description:{intertwined:"\u0E40\u0E21\u0E25\u0E47\u0E14\u0E1E\u0E31\u0E19\u0E18\u0E38\u0E4C\u0E41\u0E2B\u0E48\u0E07\u0E42\u0E0A\u0E04\u0E0A\u0E30\u0E15\u0E32\u0E17\u0E35\u0E48\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E04\u0E27\u0E32\u0E21\u0E1D\u0E31\u0E19 \u0E04\u0E27\u0E32\u0E21\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E02\u0E2D\u0E07\u0E21\u0E31\u0E19\u0E04\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E0A\u0E30\u0E15\u0E32\u0E01\u0E23\u0E23\u0E21\u0E41\u0E25\u0E30\u0E19\u0E33\u0E04\u0E27\u0E32\u0E21\u0E1D\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E1C\u0E39\u0E49\u0E04\u0E19\u0E21\u0E32\u0E23\u0E27\u0E21\u0E01\u0E31\u0E19 \u0E21\u0E31\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E07\u0E32\u0E17\u0E35\u0E48\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E14\u0E27\u0E07\u0E14\u0E32\u0E27\u0E40\u0E1B\u0E47\u0E19\u0E23\u0E39\u0E1B\u0E2B\u0E31\u0E27\u0E43\u0E08",acquaint:"\u0E40\u0E21\u0E25\u0E47\u0E14\u0E41\u0E2B\u0E48\u0E07\u0E04\u0E27\u0E32\u0E21\u0E2B\u0E27\u0E31\u0E07\u0E17\u0E35\u0E48\u0E2A\u0E48\u0E2D\u0E07\u0E2A\u0E27\u0E48\u0E32\u0E07\u0E1A\u0E19 \u0E17\u0E49\u0E2D\u0E07\u0E1F\u0E49\u0E32 \u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E08\u0E30\u0E2D\u0E22\u0E39\u0E48\u0E2B\u0E48\u0E32\u0E07\u0E01\u0E31\u0E19\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E44\u0E2B\u0E19 \u0E41\u0E2A\u0E07\u0E02\u0E2D\u0E07\u0E2B\u0E34\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E42\u0E0A\u0E04\u0E0A\u0E30\u0E15\u0E32\u0E19\u0E35\u0E49\u0E08\u0E30\u0E41\u0E2A\u0E14\u0E07 \u0E2B\u0E19\u0E17\u0E32\u0E07\u0E44\u0E1B\u0E2A\u0E39\u0E48\u0E1C\u0E39\u0E49\u0E04\u0E19\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E25\u0E34\u0E02\u0E34\u0E15\u0E43\u0E2B\u0E49\u0E1E\u0E1A\u0E01\u0E31\u0E19 \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E1E\u0E27\u0E01\u0E40\u0E02\u0E32\u0E08\u0E30\u0E44\u0E14\u0E49\u0E1E\u0E1A\u0E01\u0E31\u0E19\u0E43\u0E15\u0E49\u0E41\u0E2A\u0E07\u0E14\u0E32\u0E27"}},z={text:"\u0E0A\u0E48\u0E2D\u0E07\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E2D\u0E07",unsetOutfit:"\u0E04\u0E25\u0E32\u0E22",setOutfit:"\u0E0A\u0E38\u0E14\u0E0A\u0E38\u0E14",refinement:"Refinement {count}",constellation:"Constellation {count}",extra:"{count} Extra",firstSummon:"\u0E40\u0E23\u0E35\u0E22\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01\u0E17\u0E35\u0E48: {date}",notOwned:"\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07",sort:"\u0E40\u0E23\u0E35\u0E22\u0E07\u0E25\u0E33\u0E14\u0E31\u0E1A",rarity:"\u0E04\u0E27\u0E32\u0E21\u0E2B\u0E32\u0E22\u0E32\u0E01",name:"\u0E0A\u0E37\u0E48\u0E2D",quantity:"\u0E1B\u0E23\u0E34\u0E21\u0E32\u0E13",element:"\u0E18\u0E32\u0E15\u0E38",release:"\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E27\u0E32\u0E07\u0E08\u0E33\u0E2B\u0E19\u0E48\u0E32\u0E22",type:"\u0E1E\u0E34\u0E21\u0E1E\u0E4C",owned:"\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07",showAllOption:"\u0E41\u0E2A\u0E14\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 {item}"},Y={no:"\u0E44\u0E21\u0E48",yes:"\u0E43\u0E0A\u0E48",text:"\u0E40\u0E21\u0E19\u0E39",feedback:"Feedback",options:"\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01",updates:"\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"\u0E20\u0E32\u0E29\u0E32",currency:"\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19",fates:"\u0E08\u0E33\u0E19\u0E27\u0E19\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E23\u0E32\u0E23\u0E16\u0E19\u0E32",unlimited:"\u0E44\u0E21\u0E48 \u0E08\u0E33\u0E01\u0E31\u0E14",manual:"\u0E01\u0E32\u0E23\u0E1B\u0E49\u0E2D\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07",mute:"\u0E40\u0E2A\u0E35\u0E22\u0E07\u0E1B\u0E34\u0E14\u0E40\u0E2A\u0E35\u0E22\u0E07\u0E41\u0E25\u0E30\u0E40\u0E2D\u0E1F\u0E40\u0E1F\u0E01\u0E15\u0E4C\u0E40\u0E2A\u0E35\u0E22\u0E07",switchBanner:"\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C",showAllitems:"\u0E41\u0E2A\u0E14\u0E07\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E43\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E04\u0E07\u0E04\u0E25\u0E31\u0E07",autoskip:"\u0E02\u0E49\u0E32\u0E21\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 Splash Art",animatedbg:"\u0E1E\u0E37\u0E49\u0E19\u0E2B\u0E25\u0E31\u0E07\u0E40\u0E04\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E2B\u0E27",multiRoll:"Number per multi-roll",factoryReset:"\u0E25\u0E49\u0E32\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E25\u0E30\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",resetTitle:"\u0E40\u0E04\u0E25\u0E35\u0E22\u0E23\u0E4C\u0E17\u0E38\u0E01\u0E2D\u0E22\u0E48\u0E32\u0E07",rotate:"\u0E2B\u0E21\u0E38\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E14\u0E35\u0E02\u0E36\u0E49\u0E19",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Clear Caches ( {size} ) ? <small>You will redownload the assets after this action!</small>",resetButton:"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E15\u0E2D\u0E19\u0E19\u0E35\u0E49",resetPrompt:"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E27\u0E48\u0E32 <strong> \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 </strong> \u0E41\u0E25\u0E30\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19?",resetSuccess:"\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Get a new one Here!",noKey:"Don't have a key?",verifyFail:"Failed to verifying AdKey, Check your Connection",invalidKey:"Your key is invalid",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Enter Key",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."},G={title:e,character:a,weapon:n,vision:t,anemo:o,cryo:r,dendro:s,electro:i,hydro:l,geo:p,pyro:c,bow:d,catalyst:u,claymore:m,sword:h,polearm:y,extra:g,obtained:b,waiting:f,connectionFailed:w,confirmButton:P,cancelButton:v,disclaimer:B,fanmade:S,pressToContinue:C,installInstruction:k,share:A,screenshot:I,capturing:x,rewardFirstShare:F,version:N,donate:U,banner:T,editor:D,customBanner:R,backupRestore:E,wish:W,outfit:K,details:M,history:H,shop:L,inventory:z,menu:Y};export{o as anemo,E as backupRestore,T as banner,d as bow,v as cancelButton,x as capturing,u as catalyst,a as character,m as claymore,P as confirmButton,w as connectionFailed,r as cryo,R as customBanner,G as default,s as dendro,M as details,B as disclaimer,U as donate,D as editor,i as electro,g as extra,S as fanmade,p as geo,H as history,l as hydro,k as installInstruction,z as inventory,Y as menu,b as obtained,K as outfit,y as polearm,C as pressToContinue,c as pyro,F as rewardFirstShare,I as screenshot,A as share,L as shop,h as sword,e as title,N as version,t as vision,f as waiting,n as weapon,W as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/timeago-17bb7280.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/timeago-17bb7280.js
deleted file mode 100644
index 4d0c38a7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/timeago-17bb7280.js
+++ /dev/null
@@ -1 +0,0 @@
-const c={past:[{ceiling:60,text:"$seconds seconds ago"},{ceiling:3600,text:"$minutes minutes ago"},{ceiling:86400,text:"$hours hours ago"},{ceiling:2629744,text:"$days days ago"},{ceiling:31556926,text:"$months months ago"},{ceiling:null,text:"$years years ago"}],future:[{ceiling:60,text:"in $seconds seconds"},{ceiling:3600,text:"in $minutes minutes"},{ceiling:86400,text:"in $hours hours"},{ceiling:2629744,text:"in $days days"},{ceiling:31556926,text:"in $months months"},{ceiling:null,text:"in $years years"}]},r=[[31556926,"years"],[2629744,"months"],[86400,"days"],[3600,"hours"],[60,"minutes"],[1,"seconds"]],g=(s,e)=>{for(const t in e)if(e[t]===1){const n=new RegExp("\\b"+t+"\\b");s=s.replace(n,i=>i.replace(/s\b/g,""))}return s},d=s=>{let e=s;const t={};for(let n=0;n<r.length;n++){const i=Math.floor(e/r[n][0]);e=e-r[n][0]*i,t[r[n][1]]=i}return t},f=(s,e)=>{const t=d(e),n=s.text.replace(/\$(\w+)/g,(i,o)=>t[o]);return g(n,t)};function m(s,e){for(let t=0;t<c[e].length;t++){const n=c[e][t].ceiling===null,i=s<=c[e][t].ceiling;if(n||i)return c[e][t]}return null}const x=(s,e=null)=>{const t=new Date(s),i=((e?new Date(e):new Date)-t)/1e3,o=i<0,a=o?"future":"past",l=o?0-i:i,u=m(l,a);return f(u,l)};export{x as t};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/vi-VN-32e2d47a.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/vi-VN-32e2d47a.js
deleted file mode 100644
index 51ae0ffb..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/vi-VN-32e2d47a.js
+++ /dev/null
@@ -1 +0,0 @@
-const n="Gi\u1EA3 L\u1EADp C\u1EA7u Nguy\u1EC7n Genshin Impact",t="Nh\xE2n V\u1EADt",h="V\u0169 Kh\xED",a="Vision",e="Phong",i="B\u0103ng",c="Th\u1EA3o",o="L\xF4i",r="Thu\u1EF7",s="Nham",u="Ho\u1EA3",g="Cung",l="Ph\xE1p Kh\xED",p="Tr\u1ECDng Ki\u1EBFm",m="Ki\u1EBFm",y="V\u0169 Kh\xED C\xE1n D\xE0i",d="Nh\u1EADn Th\xEAm",v="Nh\u1EADn \u0110\u01B0\u1EE3c",b="\u0110ang Ch\u1EDD",T="Connection Failed!",k="X\xE1c Nh\u1EADn",C="Hu\u1EF7",N="T\u1EA5t c\u1EA3 \u0111\u1ED3 d\xF9ng \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng trong trang n\xE0y \u0111\u1EC1u thu\u1ED9c s\u1EDF h\u1EEFu c\u1EE7a Mihoyo",f="\u0110\xE2y ho\xE0n to\xE0n l\xE0 s\u1EA3n ph\u1EA9m Fan l\xE0m ra, h\xE3y t\u1EADn h\u01B0\u1EDFng n\xF3!",S="B\u1EA5m v\xE0o kho\u1EA3ng tr\u1ED1ng \u0111\u1EC3 ti\u1EBFp t\u1EE5c",B="Instructions to Install to Home Screen/Desktop",w="Chia S\u1EBB",P="Ch\u1EE5p \u1EA3nh",K="\u0110ang Ch\u1EE5p",H="Ph\u1EA7n th\u01B0\u1EDFng cho l\u01B0\u1EE3t chia s\u1EBB \u0111\u1EA7u ti\xEAn : {qty}",x="Phi\xEAn B\u1EA3n",D="\u1EE6ng H\u1ED9",V={beginner:"C\u1EA7u Nguy\u1EC7n D\xE0nh Cho Nh\xE0 L\u1EEF H\xE0nh M\u1EDBi",wanderlust:"Du H\xE0nh Th\u1EBF Gian","epitome-invocation":"Th\xE2n h\xECnh Th\u1EA7n \u0110\xFAc","adrift-in-the-harbor":"H\u1ED9i Ng\u1ED9 N\u01A1i Tr\u1EA7n Th\u1EBF","auric-blaze":"N\u1EAFng V\xE0ng R\u1EF1c R\u1EE1","azure-excursion":"D\u1EA1o B\u01B0\u1EDBc B\xEAn Hoa","ballad-in-goblets":"B\xE0i Th\u01A1 C\u1ED1c Th\xE1nh","born-of-ocean-swell":"Kho\u1EA3nh Kh\u1EAFc D\u1EADy S\xF3ng","caution-in-confidence":"Ch\xECa Kh\xF3a S\u1EAFc L\u1EC7nh","chanson-of-many-waters":"Mu\xF4n N\u01B0\u1EDBc Ca T\u1EE5ng","conjuring-chiaroscuro":"Conjuring Chiaroscuro","dance-of-lantern":"\xC1nh \u0110\xE8n Ng\u01B0 Long","decree-of-the-deeps":"Decree of the Deeps","discerner-of-enigmas":"T\u1ED1 Ngh\xEA Hi\u1EC7n Thi\xEAn","drifting-luminescence":"H\u1ED3ng Ch\xE2u Tr\xF4i N\u1ED5i","everbloom-violet":"S\u1EAFc T\xEDm Hoa \u0110\xE0o","farewell-of-snezhnaya":"T\u1EA1m Bi\u1EC7t Th\u1EE7 \u0110\xF4 B\u0103ng","from-ashes-reborn":"Tro T\xE0n T\xE1i Sinh","gentry-of-hermitage":"\u0110\u1ED3ng C\u1ECF Th\u1ECB Th\xE0nh","immaculate-pulse":"T\xE2m S\xE1ng T\u1EF1a Ng\u1ECDc","in-the-name-of-the-rosula":"Nh\xE2n Danh Rosula","invitation-to-mundane-life":"L\u1EDDi M\u1EDDi Ph\xE1o Hoa","leaves-in-the-wind":"L\xE1 R\u1EE5ng Theo Gi\xF3","moment-of-bloom":"X\xEDch \u0110o\xE0n Khai M\u1EDF","oni_s-royale":"Qu\u1EF7 M\xF4n \u0110\u1EA5u Y\u1EBFn","reign-of-serenity":"C\xF4 \u0110\u1ED9c Gi\u1EEFa Nh\xE2n Gian","secretum-secretorum":"H\u01A1i Th\u1EDF Th\u1EA7n B\xED","sparkling-steps":"D\u1EA5u Ch\xE2n C\u1EE7a L\u1EEDa","tapestry-of-golden-flames":"Thi\xEAn H\xE0 R\u1EF1c L\u1EEDa","tempestuous-destiny":"S\xF3ng Gi\xF3 V\u1EADn M\u1EC7nh","the-heron_s-court":"B\u1EA1ch H\u1EA1c \u0110\xECnh","the-moongrass-enlightenment":"Gi\xE1c Ng\u1ED9 Nguy\u1EC7t Th\u1EA3o","the-transcendent-one-returns":"Xu\u1EA5t Tr\u1EA7n Nh\u1EADp Th\u1EBF","twilight-arbiter":"T\xE0 D\u01B0\u01A1ng Ph\xE1n Quy\u1EBFt","twirling-lotus":"C\xE1nh Sen \u0110ung \u0110\u01B0a","viridescent-vigil":"Th\u1EE7 H\u1ED9 S\u1EAFc Xanh"},L={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},A={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},M={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},I={wishTitle:"C\u1EA7u Nguy\u1EC7n",rollButton:"C\u1EA7u Nguy\u1EC7n {count}",stellaFortuna:"Tinh Tr\u1EA7n V\xF4 Ch\u1EE7",loadFailed:"Kh\xF4ng t\u1EA3i \u0111\u01B0\u1EE3c Bi\u1EC3u ng\u1EEF! <br />Vui l\xF2ng chuy\u1EC3n sang banner kh\xE1c ho\u1EB7c k\u1EBFt n\u1ED1i l\u1EA1i internet \u0111\u1EC3 tr\xE1nh sai s\xF3t!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{text:"Banner",allBanner:"T\u1EA5t c\u1EA3 Banner",previous:"Banner Tr\u01B0\u1EDBc",findBanner:"T\xECm m\u1ED9t Banner",group:"Nh\xF3m",beginner:"C\u1EA7u\u2008Nguy\u1EC7n\u2008D\xE0nh\u2008Cho Nh\xE0 L\u1EEF H\xE0nh M\u1EDBi","character-event":"S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n Nh\xE2n V\u1EADt","weapon-event":"C\u1EA7u Nguy\u1EC7n V\u0169 Kh\xED",standard:"C\u1EA7u Nguy\u1EC7n Th\u01B0\u1EDDng",wishDescription:"M\u1ED7i khi c\u1EA7u nguy\u1EC7n 10 l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn t\u1ED1i thi\u1EC3u 1 v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn.",novice:"C\u1EA7u Nguy\u1EC7n Cho Ng\u01B0\u1EDDi M\u1EDBi",up:"UP!",beginnerSet:"Gi\u1EA3m 20% cho 10 l\u1EA7n li\xEAn t\u1EE5c, l\u1EA7n \u0111\u1EA7u ch\u1EAFc ch\u1EAFn nh\u1EADn {character}.",beginnerNote:'"T\xF4i s\u1EBD ch\xFA \xFD \u0111\u1EBFn nghi th\u1EE9c c\u1EE7a h\u1EA7u g\xE1i"',beginnerChance:"S\u1ED1 l\u1EA7n c\xF2n l\u1EA1i: {chances}",standardNote:"C\u1EA7u nguy\u1EC7n th\u01B0\u1EDDng l\xE0 s\u1EF1 ki\u1EC7n v\u0129nh vi\u1EC5n.",allWeaponTypes:"T\u1EA5t c\u1EA3 v\u0169 kh\xED",etc:"v.v.",probIncreased:"T\u1EC9 L\u1EC7 C\u1EA7u Nguy\u1EC7n T\u0103ng!",eventNote:"Ch\u1EC9 c\xF3 th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c c\xE1c nh\xE2n v\u1EADt 5 sao d\xE0nh ri\xEAng cho s\u1EF1 ki\u1EC7n c\u1EA7u nguy\u1EC7n \u0111\xE3 \u0111\u01B0\u1EE3c ch\u1EC9 \u0111\u1ECBnh trong kho\u1EA3ng th\u1EDDi gian c\u1EE5 th\u1EC3.",viewDetails:"Xem chi ti\u1EBFt \u0111\u1EC3 bi\u1EBFt th\xEAm."},epitomizedPath:{text:"\u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc",fatePoint:"\u0110i\u1EC3m V\u1EADn M\u1EC7nh",cancelPrompt:"B\u1EA1n c\xF3 mu\u1ED1n hu\u1EF7 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED n\xE0y kh\xF4ng?",cancelDesc:"Hu\u1EF7 b\u1ECF s\u1EBD \u0111\u1EB7t l\u1EA1i \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u1EE7a b\u1EA1n",selectWeapon:"Ch\u1ECDn V\u0169 Kh\xED",chartCourseOf:"\u0110\u1ECBnh Chu\u1EA9n Cho {target}",cancelCourse:"Hu\u1EF7 \u0110\u1ECBnh Chu\u1EA9n",chartCourse:"\u0110\u1ECBnh Chu\u1EA9n",courseSetFor:"\u0110ang \u0110\u1ECBnh Chu\u1EA9n: {selectedCourse}",description:['"\u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc l\xE0 c\u01A1 ch\u1EBF c\u1EA7u nguy\u1EC7n \u1EDF Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc k\xEC n\xE0y',"Sau khi \u0111\u1ECBnh chu\u1EA9n cho v\u0169 kh\xED UP 5 sao mong mu\u1ED1n, khi c\u1EA7u nguy\u1EC7n Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED 5 Sao kh\xF4ng ph\u1EA3i nh\u01B0 \u0111\xE3 \u0111\u1ECBnh chu\u1EA9n, s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c <span> 1 </span> \u0111i\u1EC3m v\u1EADn m\u1EC7nh.","Sau khi \u0111i\u1EC3m v\u1EADn m\u1EC7nh \u0111\u1EA7y, v\u0169 kh\xED 5 sao ti\u1EBFp theo nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y ch\u1EAFc ch\u1EAFn l\xE0 v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\u1EE7a l\u1EA7n n\xE0y.","Khi nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n l\u1EA7n n\xE0y, d\xF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u1EE7a l\u1EA7n \u0111\xF3 \u0111\xE3 \u0111\u1EA7y hay ch\u01B0a c\u0169ng s\u1EBD thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span> 0 </span>.","Khi ch\u01B0a s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc \u0111\u1EC3 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED, s\u1EBD kh\xF4ng t\xEDch lu\u1EF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh.","V\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\xF3 th\u1EC3 thay \u0111\u1ED5i, ho\u1EB7c hu\u1EF7 b\u1ECF. Khi thay \u0111\u1ED5i ho\u1EB7c hu\u1EF7 b\u1ECF v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n hi\u1EC7n t\u1EA1i, \u0111i\u1EC3m v\u1EADn m\u1EC7nh s\u1EBD \u0111\u01B0\u1EE3c thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span> 0 </span>.","Khi Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc k\u1EF3 n\xE0y k\u1EBFt th\xFAc, \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u0169ng s\u1EBD b\u1ECB xo\xE1 s\u1EA1ch."]},result:{skip:"B\u1ECF Qua",meteorFailed:"Ho\u1EA1t \u1EA3nh sao b\u0103ng t\u1EA3i th\u1EA5t b\u1EA1i",new:"M\u1EDBi",convertion:"Chuy\u1EC3n D\u1ED5i",title:"K\u1EBFt qu\u1EA3 c\u1EA7u nguy\u1EC7n cho {item}"}},R={heading:"Trang Ph\u1EE5c Nh\xE2n V\u1EADt",default:"V\u1EE1 n\u1EE3",setOutfit:"\u0110\u1EB7t Trang Ph\u1EE5c",owned:"\u0110\xE3 S\u1EDF H\u1EEFu",purchasePrompt:"B\u1EA1n kh\xF4ng c\xF3 nh\xE2n v\u1EADt ph\xF9 h\u1EE3p v\u1EDBi trang ph\u1EE5c n\xE0y, b\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n mua trang ph\u1EE5c n\xE0y kh\xF4ng?",promptInfo:"B\u1EA1n c\xF3 th\u1EC3 s\u1EED d\u1EE5ng trang ph\u1EE5c n\xE0y sau khi nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt ph\xF9 h\u1EE3p",obtained:"Trang ph\u1EE5c m\u1EDBi thu \u0111\u01B0\u1EE3c",unlocked:"{character}: M\u1EDF kh\xF3a trang ph\u1EE5c",item:{"5-star-outrider":{name:'"K\u1EF5 S\u0129 Trinh Th\xE1m \u0110i\u1EC3m Tuy\u1EC7t \u0110\u1ED1i"'},"favonian-fevotion":{name:"V\xF2ng Che Ch\u1EDF C\u1EE7a Gi\xF3"},"flowing-fate":{name:"Ng\xF4i Sao L\u01B0u Chuy\u1EC3n"},"executor_s-thorns":{name:"Gai G\xF3c K\u1EBFt \xC1n"},"sea-breeze-dandelion":{name:"Gi\u1EA5c M\u1ED9ng Gi\xF3 Bi\u1EC3n",description:"Trang ph\u1EE5c m\xF9a h\xE8 c\u1EE7a Jean. M\xE1t m\u1EBB nh\u01B0ng v\u1EABn tao nh\xE3, r\u1EA5t th\xEDch h\u1EE3p cho du l\u1ECBch b\xE3i bi\u1EC3n."},"summertime-sparkle":{name:"M\xF9a H\xE8 R\u1EF1c R\u1EE1",description:"Phong c\xE1ch b\xE3i bi\u1EC3n c\u1EE7a Barbara. V\xE1y ng\u1EAFn tr\xE0n \u0111\u1EA7y s\u1EE9c s\u1ED1ng, d\u01B0\u1EDDng nh\u01B0 to\xE1t ra h\u01A1i th\u1EDF t\u01B0\u01A1i m\xE1t c\u1EE7a \u0111\u1EA1i d\u01B0\u01A1ng."},"opulent-splendor":{name:"V\u0169 \u0110i\u1EC7u Ngh\xEA Th\u01B0\u1EDDng",description:"Trang ph\u1EE5c ch\xEDnh th\u1EE9c c\u1EE7a Keqing. Gi\u1EEFa bu\u1ED5i b\xECnh minh tuy\u1EC7t \u0111\u1EB9p c\u1EE7a L\u1EC5 h\u1ED9i \u0111\xE8n l\u1ED3ng, nh\u1EEFng s\u1EE3i ch\u1EC9 d\u1EC7t n\xEAn b\u1EDFi nh\u1EEFng ng\xE0y l\xE0m vi\u1EC7c ch\u0103m ch\u1EC9 \u0111an xen v\xE0o nhau th\xE0nh m\u1ED9t v\u1EBB ngo\xE0i nh\u1EB9 nh\xE0ng nh\u01B0ng l\u1ED9ng l\u1EABy."},"orchid_s-evening-gown":{name:"U Lan Tinh Di\u1EC7u",description:"L\u1EC5 ph\u1EE5c c\u1EE7a Ningguang. B\u1ED9 v\xE1y d\xE0i m\xE0u xanh lam t\xF4n l\xEAn \u0111\u01B0\u1EDDng n\xE9t xinh \u0111\u1EB9p trang nh\xE3, c\xE1nh b\u01B0\u1EDBm \u1EDF ph\u1EA7n ch\xE2n c\xE0ng l\xE0m t\u0103ng ph\u1EA7n thanh tho\xE1t."},"ein-immernachtstraum":{name:"Gi\u1EA5c M\u1ED9ng \u0110\xEAm Khuya",description:"Trang ph\u1EE5c nghi l\u1EC5 c\u1EE7a c\xF4ng ch\xFAa Fischl. Nguy\u1EC7n cho ng\u01B0\u1EDDi cao qu\xFD lu\xF4n gi\u1EEF v\u1EEFng can \u0111\u1EA3m, s\u1EF1 ch\xE2n th\xE0nh v\xE0 b\u1EA3n t\xEDnh l\u01B0\u01A1ng thi\u1EC7n. C\xF3 nh\u01B0 th\u1EBF th\xEC t\xE0 \xE1c m\u1EDBi kh\xF4ng th\u1EC3 n\xE0o qu\xE2t ng\xE3 c\xF4 \u1EA5y."},"red-dead-of-night":{name:"M\xE0n \u0110\xEAm \u0110\u1ECF Th\u1EABm",description:"M\u1ED9t trong nh\u1EEFng b\u1ED9 trang ph\u1EE5c m\xE0 Diluc \u0111\xE3 m\u1EB7c khi b\xED m\u1EADt h\xE0nh \u0111\u1ED9ng, tr\xF4ng nh\u01B0 ng\u1ECDn l\u1EEDa ch\xE1y trong b\xF3ng t\u1ED1i. D\u1EA5u v\u1EBFt \u0111\u1ECF th\u1EABm l\u01B0u lai trong t\u1EA7m m\u1EAFt c\u1EE7a k\u1EBB \u0111\u1ECBch, c\u0169ng ch\xEDnh l\xE0 con \xE1c m\u1ED9ng m\xE0 ch\xFAng kh\xF4ng th\u1EC3 qu\xEAn \u0111\u01B0\u1EE3c trong su\u1ED1t ph\u1EA7n \u0111\u1EDDi c\xF2n l\u1EA1i."},"a-sobriquet-under-shade":{name:"Danh Vang Trong L\xE1",description:"Trang ph\u1EE5c Lisa \u0111\xE3 \u0111\u1EB7t l\xE0m khi \u0111\u1EBFn th\u0103m Sumeru. V\xE1y g\u1ECDn g\xE0ng nh\u01B0ng kh\xF4ng k\xE9m ph\u1EA7n trang nh\xE3, c\xF3 ph\u1EA7n gi\u1ED1ng v\u1EDBi \u0111\u1ED3ng ph\u1EE5c th\u1EDDi h\u1ECDc sinh c\u1EE7a c\xF4."},"springbloom-missive":{name:"Th\u01B0 T\u1EEB Hoa Xu\xE2n",description:"Trang ph\u1EE5c \u0111i ch\u01A1i c\u1EE7a Kamisato Ayaka. B\u1ED9 v\xE1y \u0111\u01B0\u1EE3c may d\u1EF1a theo ki\u1EC3u d\xE1ng trang ph\u1EE5c n\u1EEF gi\u1EDBi Fontaine trong ti\u1EC3u thuy\u1EBFt, d\u01B0\u1EDDng nh\u01B0 c\xF3 th\u1EC3 th\xF4ng qua \u0111\xF3 \u0111\u1EC3 nh\xECn th\u1EA5y \u0111\u01B0\u1EE3c di\u1EC7n m\u1EA1o cu\u1ED9c s\u1ED1ng c\u1EE7a c\xE1c c\xF4 g\xE1i Fontaine."},"blossoming-starlight":{name:"Hoa L\u1EEDa R\u1EF1c R\u1EE1",description:"B\u1ED9 trang ph\u1EE5c xinh x\u1EAFn m\xE0 Klee \u0111\xE3 m\u1EB7c khi tham gia di\u1EC5n xu\u1EA5t trong v\u1EDF k\u1ECBch quan tr\u1ECDng. M\xE0u s\u1EAFc s\u1EB7c s\u1EE1, gi\u1ED1ng nh\u01B0 m\u1ED9t chi\u1EBFc b\xE1nh kem \u0111\u01B0\u1EE3c t\xF4 \u0111i\u1EC3m b\u1EB1ng nh\u1EEFng b\xF4ng hoa b\u1EB1ng kem c\xF9ng v\u1EDBi n\u1EBFn m\xE0u \u0111\u1ECF r\u1EF1c, c\xF3 th\u1EC3 \u0111em \u0111\u1EBFn ni\u1EC1m vui v\xE0 n\u1EE5 c\u01B0\u1EDDi tr\xEAn m\u1ECDi n\u1EBBo \u0111\u01B0\u1EDDng m\u1EA1o hi\u1EC3m."},"sailwind-shadow":{name:"C\xE1nh Bu\u1ED3m L\u01B0\u1EDBt Gi\xF3",description:'Trang ph\u1EE5c Kaeya \u0111\xE3 m\u1EB7c khi di\u1EC5n v\u1EDF "\u0110\u1EA1o Ch\xEDch Dao G\u0103m", l\xE0 b\u1ED9 trang ph\u1EE5c l\u1ED9ng l\u1EABy \u0111\u01B0\u1EE3c thi\u1EBFt k\u1EBF v\u1EDBi nguy\xEAn t\u1EAFc "thu h\xFAt \xE1nh nh\xECn". Vi\u1EC7c m\u1EB7c trang ph\u1EE5c kh\xF4ng phi\u1EC1n ph\u1EE9c l\u1EAFm, ch\u1EC9 m\u1EA5t th\u1EDDi gian \u1EDF ch\u1ED7 g\u1EAFn trang s\u1EE9c v\xE0 dao g\u0103m.'}}},U={text:"Th\xF4ng Tin Chi Ti\u1EBFt",promotional:"\u0110\u1ED3 Khuy\u1EBFn M\xE3i",itemlist:"Danh S\xE1ch C\xE1c \u0110\u1ED3",increasedRate:"T\u1EC9 L\u1EC7 Nh\u1EADn T\u0103ng",percentageDrop:"T\u1EC9 l\u1EC7 v\u1EADt ph\u1EA9m {rarity} Sao nh\u1EADn \u0111\u01B0\u1EE3c: {percentage}",wishDetails:"Th\xF4ng Tin C\u1EA7u Nguy\u1EC7n",probInfo:"T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n ra v\u1EADt ph\u1EA9m {rarity} sao: {singlePercentage} (B\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u: {avgPercentage})",itemWishFor:"V\u1EADt Ph\u1EA9m C\u1EA7u Nguy\u1EC7n :",itemType:"Lo\u1EA1i",itemName:"T\xEAn",beginnerInfo:"V\u0129nh Vi\u1EC5n (\u0110\xF3ng sau 20 l\u1EA7n C\u1EA7u Nguy\u1EC7n)",limited:"S\u1EF1 ki\u1EC7n h\u1EA1n gi\u1EDD",permanent:"V\u0129nh Vi\u1EC5n",alert:"\u203B \u0110\xE2y l\xE0 m\u1ED9t {wishName}. Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v... v\xE0 \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.",beginner:["<span> C\u1EA7u nguy\u1EC7n </span> \u0111\u1EC1 xu\u1EA5t cho ng\u01B0\u1EDDi m\u1EDBi l\xE0 s\u1EF1 ki\u1EC7n c\u1EA7u nguy\u1EC7n v\u0129nh vi\u1EC5n d\xE0nh cho c\xE1c Nh\xE0 L\u1EEF H\xE0nh m\u1EDBi tham gia v\xE0o h\xE0nh tr\xECnh kh\xE1m ph\xE1 \u0111\u1EA1i l\u1EE5c Teyvat. Nh\xE0 L\u1EEF H\xE0nh c\xF3 th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c nhi\u1EC1u Nh\xE2n V\u1EADt v\xE0 V\u0169 Kh\xED kh\xF4ng gi\u1EDBi h\u1EA1n. <br /> Trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y, M\u1ED1i Duy\xEAn T\u01B0\u01A1ng Ng\u1ED9 s\u1EED d\u1EE5ng trong C\u1EA7u Nguy\u1EC7n 10 l\u1EA7n li\xEAn ti\u1EBFp s\u1EBD \u0111\u01B0\u1EE3c gi\u1EA3m <span> 20%</span> \u0111\u1ED3ng th\u1EDDi 10 l\u1EA7n li\xEAn ti\u1EBFp \u0111\u1EA7u ti\xEAn <span> ch\u1EAFc ch\u1EAFn nh\u1EADn \u0111\u01B0\u1EE3c </span> {character} ,  10 l\u1EA7n li\xEAn t\u1EE5c ti\u1EBFp theo ch\u1EAFc ch\u1EAFn nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt <span> kh\xE1c </span> t\u1EEB 4 sao tr\u1EDF l\xEAn! <br/> C\u1EA7u nguy\u1EC7n n\xE0y gi\u1EDBi h\u1EA1n <span> 20 </span> l\u1EA7n, sau khi r\xFAt 20 l\u1EA7n giao di\u1EC7n C\u1EA7u Nguy\u1EC7n n\xE0y s\u1EBD \u0111\xF3ng l\u1EA1i.","Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v. \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.","\u3013Quy T\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013","T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 5 sao l\xE0 <span> 0,600%</span> <br /> T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span> 5,100%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span> 13,000%</span>;"],standard:['C\u1EA7u nguy\u1EC7n th\u01B0\u1EDDng "{bannerName}" l\xE0 s\u1EF1 ki\u1EC7n v\u0129nh vi\u1EC5n, Nh\xE0 L\u1EEF H\xE0nh c\xF3 th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c Nh\xE2n V\u1EADt v\xE0 V\u0169 Kh\xED kh\xF4ng gi\u1EDBi h\u1EA1n. <br/> Trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y, m\u1ED7i khi c\u1EA7u nguy\u1EC7n 10 l\u1EA7n <span>ch\u1EAFc ch\u1EAFn s\u1EBD </span> nh\u1EADn t\u1ED1i thi\u1EC3u 1 v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn.',"\u203BTh\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v. \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.","\u3013Quy t\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013","T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 5 sao l\xE0 <span>0,600%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 5 sao l\xE0 <span>0,300%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 5 sao l\xE0 <span>0,300%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 5 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>1,600%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>90</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m 5 sao. <br> T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 4 sao l\xE0 <span>5,100%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span>2,550%</span>,  t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 4 sao l\xE0 <span>2,550%</span,  t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 4 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>13,000%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>10</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn, trong \u0111\xF3 v\u1EADt ph\u1EA9m nh\u1EADn \u0111\u01B0\u1EE3c qua m\u1EE9c b\u1EA3o \u0111\u1EA3m ch\u1EAFc ch\u1EAFn n\xE0y l\xE0 <span>99,400%</span>\u0111\u1ED1i v\u1EDBi 4 sao v\xE0 <span>0,600%</span> \u0111\u1ED1i v\u1EDBi 5 sao. "],events:['S\u1EF1 ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} \u0111\xE3 m\u1EDF. Trong th\u1EDDi gian s\u1EF1 ki\u1EC7n, t\u1EF7 l\u1EC7 c\u1EA7u nguy\u1EC7n nh\u1EADn nh\xE2n v\u1EADt 5 sao {featuredCharacter} v\xE0 nh\xE2n v\u1EADt 4 sao {rateupCharacters} s\u1EBD <span> t\u0103ng m\u1EA1nh</span>! <br/> <span> \u203B Trong c\xE1c nh\xE2n v\u1EADt \u1EDF tr\xEAn, nh\xE2n v\u1EADt gi\u1EDBi h\u1EA1n s\u1EBD kh\xF4ng v\xE0o C\u1EA7u Nguy\u1EC7n Th\u01B0\u1EDDng "Du H\xE0nh Th\u1EBF Gian".</span>',"\u203B Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v. \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.","\u3013Quy t\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013","V\u1EADt Ph\u1EA9m 5 Sao","Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 5 sao l\xE0 <span> 0,600% </span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>1,600%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span> 90</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt 5 sao.<br/> hi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt 5 sao, c\xF3 <span> 50,000%</span> x\xE1c su\u1EA5t l\xE0 nh\xE2n v\u1EADt UP k\u1EF3 n\xE0y {featuredCharacter}. \u1EBFu nh\xE2n v\u1EADt 5 sao nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i nh\xE2n v\u1EADt UP, th\xEC nh\xE2n v\u1EADt 5 sao l\u1EA7n sau nh\u1EADn \u0111\u01B0\u1EE3c <span> ch\u1EAFc ch\u1EAFn</span> l\xE0 nh\xE2n v\u1EADt UP.","V\u1EADt Ph\u1EA9m 4 Sao","Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 4 sao l\xE0 <span> 5,100%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span>2,550%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 4 sao l\xE0 <span>2,550%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 4 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span> 13,000%</span>. C\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span> 10 </span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn, trong \u0111\xF3 v\u1EADt ph\u1EA9m nh\u1EADn \u0111\u01B0\u1EE3c qua m\u1EE9c b\u1EA3o \u0111\u1EA3m ch\u1EAFc ch\u1EAFn n\xE0y l\xE0 <span>99,400%</span> \u0111\u1ED1i v\u1EDBi 4 sao v\xE0 <span>0,600%</span> \u0111\u1ED1i v\u1EDBi 5 sao. <br/> Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m 4 sao, c\xF3 <span>50,000%</span> c\u01A1 h\u1ED9i nh\u1EADn m\u1ED9t trong c\xE1c nh\xE2n v\u1EADt UP k\u1EF3 n\xE0y {rateupCharacters}. N\u1EBFu v\u1EADt ph\u1EA9m 4 sao nh\u1EADn trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i nh\xE2n v\u1EADt UP, th\xEC v\u1EADt ph\u1EA9m \u1EDF l\u1EA7n sau <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 nh\xE2n v\u1EADt UP. Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m UP 4 sao, x\xE1c su\u1EA5t nh\u1EADn m\u1ED7i nh\xE2n v\u1EADt UP 4 sao k\u1EF3 n\xE0y l\xE0 b\u1EB1ng nhau."],weapons:['S\u1EF1 ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} \u0111\xE3 m\u1EDF. Trong th\u1EDDi gian s\u1EF1 ki\u1EC7n, t\u1EF7 l\u1EC7 C\u1EA7u Nguy\u1EC7n nh\u1EADn v\u0169 kh\xED 5 sao {featuredWeapon2} v\xE0 v\u0169 kh\xED 4 sao {featuredWeapon1} v\xE0 v\u0169 kh\xED 4 sao <span>gi\u1EDBi h\u1EA1n</span> {rateupWeapons} s\u1EBD <span>t\u0103ng m\u1EA1nh!</span> <br/> <span> \u203B Trong c\xE1c v\u0169 kh\xED \u1EDF tr\xEAn, v\u0169 kh\xED gi\u1EDBi h\u1EA1n s\u1EBD kh\xF4ng v\xE0o C\u1EA7u Nguy\u1EC7n Th\u01B0\u1EDDng "Du H\xE0nh Th\u1EBF Gian".</span>',"\u203B Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v... v\xE0 \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.","\u3013Quy t\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013","V\u1EADt ph\u1EA9m 5 sao","Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 5 sao l\xE0 <span>0,700%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>1.850%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>80</span> l\u1EA7n ch\u1EAFc ch\u1EAFn nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED 5 sao.<br/> Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED 5 sao, c\xF3 <span>75,000%</span> x\xE1c su\u1EA5t l\xE0 m\u1ED9t trong nh\u1EEFng v\u0169 kh\xED 5 sao UP k\u1EF3 n\xE0y {featuredWeapon1} v\xE0 {featuredWeapon2}. N\u1EBFu v\u0169 kh\xED 5 sao nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i v\u0169 kh\xED UP, th\xEC v\u0169 kh\xED 5 sao trong l\u1EA7n ti\u1EBFp theo <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 v\u0169 kh\xED UP. Trong tr\u01B0\u1EDDng h\u1EE3p \u0111i\u1EC3m v\u1EADn m\u1EC7nh ch\u01B0a \u0111\u1EA7y v\xE0 nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n, khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m UP 5 sao, x\xE1c su\u1EA5t nh\u1EADn m\u1ED7i v\u0169 kh\xED UP 5 sao c\u1EE7a k\u1EF3 n\xE0y l\xE0 b\u1EB1ng nhau. <br/> Trong k\u1EF3 S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, c\xF3 th\u1EC3 s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc ti\u1EBFn h\xE0nh \u0111\u1ECBnh chu\u1EA9n cho v\u0169 kh\xED UP 5 sao k\u1EF3 n\xE0y, l\u1EF1a ch\u1ECDn v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n ch\u1EC9 c\xF3 hi\u1EC7u l\u1EF1c trong S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName}. <br/> Trong S\u1EF1 Ki\u1EC7n {bannerName}, sau khi s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc \u0111\u1EC3 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED, khi v\u0169 kh\xED 5 sao nh\u1EADn \u0111\u01B0\u1EE3c kh\xF4ng ph\u1EA3i v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\u1EE7a l\u1EA7n n\xE0y, s\u1EBD nh\u1EADn 1 \u0111i\u1EC3m v\u1EADn m\u1EC7nh, sau khi \u0111i\u1EC3m v\u1EADn m\u1EC7nh <span>\u0111\u1EA7y</span>, v\u0169 kh\xED 5 sao ti\u1EBFp theo nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\u1EE7a l\u1EA7n n\xE0y. Khi nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n l\u1EA7n n\xE0y, d\xF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u1EE7a l\u1EA7n \u0111\xF3 \u0111\xE3 \u0111\u1EA7y hay ch\u01B0a c\u0169ng s\u1EBD thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span>0</span> v\xE0 t\xEDch lu\u1EF9 t\u1EEB \u0111\u1EA7u. <br/> Khi ch\u01B0a s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc \u0111\u1EC3 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED, <span>s\u1EBD kh\xF4ng</span> t\xEDch lu\u1EF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh. <br/> V\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\xF3 th\u1EC3 thay \u0111\u1ED5i ho\u1EB7c hu\u1EF7 b\u1ECF. Khi thay \u0111\u1ED5i ho\u1EB7c hu\u1EF7 b\u1ECF v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n hi\u1EC7n t\u1EA1i, \u0111i\u1EC3m v\u1EADn m\u1EC7nh s\u1EBD \u0111\u01B0\u1EE3c thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span>0</span>. v\xE0 t\xEDch lu\u1EF9 l\u1EA1i t\u1EEB \u0111\u1EA7u. <br/> \u203B \u0110i\u1EC3m v\u1EADn m\u1EC7nh trong c\u1EA7u nguy\u1EC7n k\u1EF3 n\xE0y ch\u1EC9 c\xF3 hi\u1EC7u l\u1EF1c trong k\u1EF3 S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc n\xE0y, sau khi k\u1EBFt th\xFAc c\u1EA7u nguy\u1EC7n, \u0111i\u1EC3m v\u1EADn m\u1EC7nh s\u1EBD \u0111\u01B0\u1EE3c thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span>0</span>, v\xE0 t\xEDch lu\u1EF9 t\u1EEB \u0111\u1EA7u.","V\u1EADt ph\u1EA9m 4 sao","Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 4 sao l\xE0 <span>6,000%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span>3,000%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 4 sao l\xE0 <span>3,000%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 4 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>14,500%</span>. C\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>10</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn, trong \u0111\xF3 v\u1EADt ph\u1EA9m nh\u1EADn \u0111\u01B0\u1EE3c qua m\u1EE9c b\u1EA3o \u0111\u1EA3m n\xE0y l\xE0 <span>99.300%</span> \u0111\u1ED1i v\u1EDBi 4 sao v\xE0 <span>0,700%</span> \u0111\u1ED1i v\u1EDBi 5 sao. <br/> Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m 4 sao, c\xF3 <span>75,000%</span> c\u01A1 h\u1ED9i nh\u1EADn m\u1ED9t trong nh\u1EEFng v\u0169 kh\xED UP k\u1EF3 n\xE0y l\xE0 {rateupWeapons}. N\u1EBFu v\u1EADt ph\u1EA9m 4 sao nh\u1EADn trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i v\u0169 kh\xED UP k\u1EF3 n\xE0y, th\xEC v\u1EADt ph\u1EA9m 4 sao \u1EDF l\u1EA7n sau <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 v\u0169 kh\xED UP k\u1EF3 n\xE0y. Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m UP 4 sao, x\xE1c su\u1EA5t nh\u1EADn m\u1ED7i v\u0169 kh\xED UP 4 sao k\u1EF3 n\xE0y l\xE0 b\u1EB1ng nhau."],convertion:{fiveStar:"Khi c\u1EA7u nguy\u1EC7n nh\u1EADn v\u0169 kh\xED 5 sao s\u1EBD \u0111\u1ED3ng th\u1EDDi nh\u1EADn s\u1EA3n v\u1EADt ph\u1EE5 l\xE0 10 {starglitter};",fourStar:"Khi nh\u1EADn v\u0169 kh\xED 4 sao s\u1EBD \u0111\u1ED3ng th\u1EDDi nh\u1EADn s\u1EA3n v\u1EADt ph\u1EE5 l\xE0 2 {starglitter};",threeStar:"Khi nh\u1EADn v\u0169 kh\xED 3 sao s\u1EBD \u0111\u1ED3ng th\u1EDDi nh\u1EADn s\u1EA3n v\u1EADt ph\u1EE5 l\xE0 15 {stardust}."},duplicate:{heading:"\u3013N\u1EBFu Nh\u1EADn Tr\xF9ng Nh\xE2n V\u1EADt\u3013",text:"Khi nh\u1EADn nh\xE2n v\u1EADt {rarity} sao tr\xF9ng nhau \u1EDF l\u1EA7n th\u1EE9 2 \u0111\u1EBFn 7 b\u1EB1ng b\u1EA5t k\u1EF3 c\xE1ch n\xE0o (Bao g\u1ED3m nh\u01B0ng kh\xF4ng gi\u1EDBi h\u1EA1n \u1EDF c\u1EA7u nguy\u1EC7n, \u0111\u1ED5i \u1EDF C\u1EEDa H\xE0ng, h\u1EC7 th\u1ED1ng t\u1EB7ng v.v...), m\u1ED7i l\u1EA7n nh\u01B0 v\u1EADy s\u1EBD chuy\u1EC3n th\xE0nh 1 {stellaFortuna} v\xE0 {constBonus} {starglitter}, L\u1EA7n th\u1EE9 8 tr\u1EDF \u0111i s\u1EBD chuy\u1EC3n th\xE0nh {fullConstBonus} {starglitter}."}},F={title:"L\u1ECBch S\u1EED C\u1EA7u Nguy\u1EC7n",text:"L\u1ECBch S\u1EED",resetButton:"Xo\xE1 L\u1ECBch S\u1EED",resetPromptTitle:"Xo\xE1 L\u1ECBch S\u1EED ?",resetPrompt:'\u0110i\u1EC1u n\xE0y c\u0169ng xo\xE1 t\u1EA5t c\u1EA3 v\u0169 kh\xED v\xE0 nh\xE2n v\u1EADt li\xEAn quan \u0111\u1EBFn Banner "{bannerName}" \u1EDF trong t\xFAi \u0111\u1ED3 c\u1EE7a b\u1EA1n. <br /> B\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n xo\xE1 l\u1ECBch s\u1EED kh\xF4ng ?',resetSuccess:"Xo\xE1 l\u1ECBch s\u1EED th\xE0nh c\xF4ng !",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"Ch\u1ECDn lo\u1EA1i C\u1EA7u Nguy\u1EC7n:",disclaimer:"Ch\xFAng t\xF4i kh\xF4ng bao gi\u1EDD l\u01B0u tr\u1EEF th\xF4ng tin c\u1EE7a b\u1EA1n l\xEAn \u0111\xE1m m\xE2y. T\u1EA5t c\u1EA3 d\u1EEF li\u1EC7u \u0111\u01B0\u1EE3c l\u01B0u tr\u1EEF \u1EDF IndexedDB, \u0111i\u1EC1u \u0111\xF3 c\xF3 ngh\u0129a l\xE0 t\u1EA5t c\u1EA3 d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n \u0111\u01B0\u1EE3c l\u01B0u \u1EDF tr\xECnh duy\u1EC7t. N\xF3 s\u1EBD kh\xF4ng bao gi\u1EDD b\u1ECB xo\xE1 cho \u0111\u1EBFn khi b\u1EA1n xo\xE1 n\xF3 th\u1EE7 c\xF4ng qua n\xFAt xo\xE1/\u0111\u1EB7t l\u1EA1i ho\u1EB7c n\xFAt xo\xE1 d\u1EEF li\u1EC7u tr\xECnh duy\u1EC7t.",currentPity:"T\u1ED5n h\u1EA1i hi\u1EC7n t\u1EA1i :",totalPull:"T\u1ED5ng S\u1ED1 L\u01B0\u1EE3ng :",totalSpend:"Ti\xEAu T\u1ED5ng C\u1ED9ng :",filterTxt:"B\u1ED9 L\u1ECDc",filter:"{rarity} Sao",filterAll:"T\u1EA5t C\u1EA3",pity:"T\u1ED5n H\u1EA1i",timeReceived:"Th\u1EDDi gian nh\u1EADn \u0111\u01B0\u1EE3c",waiting:"\u0110ang Ch\u1EDD",noData:"Kh\xF4ng C\xF3 D\u1EEF Li\u1EC7u .",untracked:"Kh\xF4ng \u0110\u01B0\u1EE3c Theo D\xF5i",item:"Item",win:"Th\u1EAFng 50/50",lose:"Thua 50/50",guaranteed:"\u0110\u01B0\u1EE3c \u0110\u1EA3m B\u1EA3o",selected:"V\u0169 kh\xED \u0110\xE3 Ch\u1ECDn",olderLayout:"Ki\u1EC3u C\u0169 H\u01A1n",switchv2:"Chuy\u1EC3n Sang V2"},G={text:"C\u1EEDa H\xE0ng",paimonBargains:"\u0110\u1ED5i B\u1EE5i \xC1nh S\xE1ng",fateNeeded:"C\u1EA7n th\xEAm {rollQty} {currency} n\u1EEFa.",primoNeeded:"Thanh to\xE1n v\u1EDBi {primoPrice} Nguy\xEAn th\u1EA1ch ?",purchaseUpto:"Thanh To\xE1n L\xEAn T\u1EDBi 1",purchaseConfirm:"X\xE1c Nh\u1EADn Thanh To\xE1n",exchangeHeading:"V\u1EADt Ph\u1EA9m C\u1EA7n \u0110\u1ED5i",purchaseHeading:"V\u1EADt Ph\u1EA9m C\u1EA7n Thanh To\xE1n",purchaseButton:"Thanh To\xE1n",pay:"Tr\u1EA3 Ti\u1EC1n",product:"S\u1EA3n Ph\u1EA9m",consume:"Ti\xEAu T\u1ED1n",selectPayment:"L\u1EF1a ch\u1ECDn lo\u1EA1i h\xECnh thanh to\xE1n",unrealWallet:"V\xED kh\xF4ng c\xF3 th\u1EADt (unReal Wallet)",convertPrimo:" T\u1EF1 \u0111\u1ED9ng chuy\u1EC3n th\xE0nh nguy\xEAn th\u1EA1ch ?",proceedPayment:"Ti\u1EBFn h\xE0nh thanh to\xE1n",qty:"S\u1ED1 l\u01B0\u1EE3ng",insufficient:"Kh\xF4ng \u0110\u1EE7 Ti\u1EC1n",crystalTopup:"Crystal Top-Up",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"Mua \u0110\xE1 S\xE1ng Th\u1EBF",recomendedHeading:"V\u1EADt Ph\u1EA9m Khuy\u1EBFn Ngh\u1ECB",paimonHeading:"\u0110\u1ED5i B\u1EE5i \xC1nh S\xE1ng",welkinNote:"C\xF3 th\u1EC3 thanh to\xE1n nhi\u1EC1u l\u1EA7n",limitedOffer:"Khuy\u1EBFn M\xE3i Gi\u1EDBi H\u1EA1n",noLimitTime:"Kh\xF4ng c\xF3 th\u1EDDi gian gi\u1EDBi h\u1EA1n",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"Kh\xF4ng Nguy\u1EC7t Ch\xFAc Ph\xFAc",newOutfit:"Trang ph\u1EE5c nh\xE2n v\u1EADt m\u1EDBi",dayRemaining:"S\u1ED1 Ng\xE0y C\xF2n L\u1EA1i: {days}",alreadyClaimed:"\u0110\xE3 Nh\u1EADn H\xF4m Nay",instantlyGet:"Nh\u1EADn Ngay L\u1EADp T\u1EE9c",dailyGift:"Qu\xE0 H\u1EB1ng Ng\xE0y",obtainTotal:"Nh\u1EADn t\u1ED5ng c\u1ED9ng {totalGenesis} \u0110\xE1 S\xE1ng Th\u1EBF v\xE0 {totalPrimo} nguy\xEAn th\u1EA1ch trong 30 ng\xE0y",claimingBlessing:"B\u1EA5m \u0111\u1EC3 nh\u1EADn ph\u1EA7n th\u01B0\u1EDFng Kh\xF4ng Nguy\u1EC7t Ch\xFAc Ph\xFAc h\u1EB1ng ng\xE0y c\u1EE7a b\u1EA1n",issuedPurchase:"\u0110\u01B0\u1EE3c Nh\u1EADn Khi Mua",collect:"Nh\u1EADn ph\u1EA7n th\u01B0\u1EDFng \u0111\u0103ng nh\u1EADp h\u1EB1ng ng\xE0y trong 30 ng\xE0y"},exchange:{starglitter:"\u0110\u1ED5i Tinh Huy V\xF4 Ch\u1EE7",stardust:"\u0110\u1ED5i Tinh Tr\u1EA7n V\xF4 Ch\u1EE7",primogem:"\u0110\u1ED5i v\u1EDBi Nguy\xEAn Th\u1EA1ch"},item:{genesis:"\u0110\xE1 S\xE1ng Th\u1EBF",primogem:"Nguy\xEAn Th\u1EA1ch",intertwined:"M\u1ED1i Duy\xEAn V\u01B0\u01A1ng V\u1EA5n",acquaint:"M\u1ED1i Duy\xEAn T\u01B0\u01A1ng Ng\u1ED9",starglitter:"Tinh Huy V\xF4 Ch\u1EE7",stardust:"Tinh Tr\u1EA7n V\xF4 Ch\u1EE7"},description:{intertwined:"H\u1EA1t gi\u1ED1ng v\u1EADn m\u1EC7nh k\u1EBFt n\u1ED1i \u01B0\u1EDBc m\u01A1. \xC1nh s\xE1ng c\u1EE7a duy\xEAn th\u1EA1ch k\u1EBFt n\u1ED1i nhi\u1EC1u v\u1EADn m\u1EC7nh, g\u1EAFn li\u1EC1n \u01B0\u1EDBc m\u01A1 c\u1EE7a \u0111\xF4i b\xEAn, c\u0169ng gi\u1ED1ng nh\u01B0 \xE1nh s\xE1ng n\xE0y k\u1EBFt n\u1ED1i nh\u1EEFng ch\xF2m sao k\u1EBFt th\xE0nh h\xECnh \u1EA3nh m\xE0 trong l\xF2ng h\u01B0\u1EDBng \u0111\u1EBFn.",acquaint:"Th\u1EAFp s\xE1ng h\u1EA1t gi\u1ED1ng hy v\u1ECDng tr\xEAn b\u1EA7u tr\u1EDDi. B\u1EA5t k\u1EC3 xa c\xE1ch bao nhi\xEAu, ng\u01B0\u1EDDi \u0111\xE3 \u0111\u01B0\u1EE3c v\u1EADn m\u1EC7nh an b\xE0i \u0111\u1EC1u s\u1EBD \u0111\u01B0\u1EE3c \xE1nh s\xE1ng c\u1EE7a duy\xEAn th\u1EA1ch d\u1EABn l\u1ED1i, g\u1EB7p nhau d\u01B0\u1EDBi tr\u1EDDi \u0111\u1EA5t n\xE0y."}},q={text:"T\xFAi \u0110\u1ED3",unsetOutfit:"Trang ph\u1EE5c ch\u01B0a \u0111\u01B0\u1EE3c ch\u1ECDn",setOutfit:"\xC1p d\u1EE5ng trang ph\u1EE5c cho nh\xE2n v\u1EADt",refinement:"S\xE0ng l\u1ECDc {count}",constellation:"S\u1ED1 l\u01B0\u1EE3ng ch\xF2m sao {count}",extra:"Nh\u1EADn th\xEAm {count}",firstSummon:"\u0110\u01B0\u1EE3c m\u1EDF l\u1EA7n \u0111\u1EA7u v\xE0o l\xFAc : {date}",notOwned:"Ch\u01B0a S\u1EDF H\u1EEFu",sort:"Ph\xE2n Lo\u1EA1i",rarity:"\u0110\u1ED9 Hi\u1EBFm",name:"T\xEAn",quantity:"S\u1ED1 L\u01B0\u1EE3ng",element:"Nguy\xEAn T\u1ED1",release:"Release Date",type:"Lo\u1EA1i",owned:"\u0110\xE3 s\u1EDF H\u1EEFu",showAllOption:"Hi\u1EC7n t\u1EA5t c\u1EA3 {item} v\u1EADt ph\u1EA9m"},W={no:"Kh\xF4ng",yes:"C\xF3",text:"Menu",feedback:"Feedback",options:"Tu\u1EF3 Ch\u1ECDn",updates:"L\u1ECBch S\u1EED C\u1EADp Nh\u1EADt",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"Ng\xF4n Ng\u1EEF",currency:"\u0110\u01A1n V\u1ECBTi\u1EC1n T\u1EC7",fates:"S\u1ED1 \u0111i\u1EC1u \u01B0\u1EDBc",unlimited:"V\xF4 h\u1EA1n",manual:"Nh\u1EADp th\u1EE7 c\xF4ng",mute:"T\u1EAFt Ti\u1EBFng \xC2m Thanh V\xE0 Hi\u1EC7u \u1EE8ng \xC2m Thanh",switchBanner:"\u0110\u1ED5i Banner",showAllitems:"Hi\u1EC7n t\u1EA5t c\u1EA3 v\u1EADt ph\u1EA9m trong t\xFAi \u0111\u1ED3",autoskip:"T\u1EF1 \u0111\u1ED9ng b\u1ECF qua Splash Art",animatedbg:"H\xECnh n\u1EC1n chuy\u1EC3n \u0111\u1ED9ng",multiRoll:"Number per multi-roll",factoryReset:"Xo\xE1 s\u1EA1ch d\u1EEF li\u1EC7u v\xE0 kh\xF4i ph\u1EE5c c\xE0i \u0111\u1EB7t g\u1ED1c",resetTitle:"Factory Reset",rotate:"Xoay thi\u1EBFt b\u1ECB cho tr\u1EA3i nghi\u1EC7m t\u1ED1t h\u01A1n",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"Clear Caches ( {size} ) ? <small>You will re-load the assets after this action!</small>",resetButton:"Xo\xE1 s\u1EA1ch ngay l\u1EADp t\u1EE9c",resetPrompt:"B\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n xo\xE1 <strong> T\u1EA5t c\u1EA3 d\u1EEF li\u1EC7u </strong> v\xE0 kh\xF4i ph\u1EE5c c\xE0i \u0111\u1EB7t g\u1ED1c ?",resetSuccess:"\u0110\u1EB7t l\u1EA1i th\xE0nh c\xF4ng",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"Get a new one Here!",noKey:"Don't have a key?",verifyFail:"Failed to verifying AdKey, Check your Connection",invalidKey:"Your key is invalid",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"Enter Key",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."},E={title:n,character:t,weapon:h,vision:a,anemo:e,cryo:i,dendro:c,electro:o,hydro:r,geo:s,pyro:u,bow:g,catalyst:l,claymore:p,sword:m,polearm:y,extra:d,obtained:v,waiting:b,connectionFailed:T,confirmButton:k,cancelButton:C,disclaimer:N,fanmade:f,pressToContinue:S,installInstruction:B,share:w,screenshot:P,capturing:K,rewardFirstShare:H,version:x,donate:D,banner:V,editor:L,customBanner:A,backupRestore:M,wish:I,outfit:R,details:U,history:F,shop:G,inventory:q,menu:W};export{e as anemo,M as backupRestore,V as banner,g as bow,C as cancelButton,K as capturing,l as catalyst,t as character,p as claymore,k as confirmButton,T as connectionFailed,i as cryo,A as customBanner,E as default,c as dendro,U as details,N as disclaimer,D as donate,L as editor,o as electro,d as extra,f as fanmade,s as geo,F as history,r as hydro,B as installInstruction,q as inventory,W as menu,v as obtained,R as outfit,y as polearm,S as pressToContinue,u as pyro,H as rewardFirstShare,P as screenshot,w as share,G as shop,m as sword,n as title,x as version,a as vision,b as waiting,h as weapon,I as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/vi-VN-5f277aef.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/vi-VN-5f277aef.js
deleted file mode 100644
index ebc256ec..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/vi-VN-5f277aef.js
+++ /dev/null
@@ -1 +0,0 @@
-const n="Akuoumaru",a="V\u0169 T\xE0i",i="Cung R\u1EC9 S\xE9t",e="N\u1ECF K\xE9o",t="Ph\xE1n Quy\u1EBFt",o={name:"Albedo",title:"Kreideprinz"},h={name:"Alhaitham",title:"L\u1EDDi Khuy\xEAn T\u1EADn T\xECnh"},l={name:"Amber",title:"Qu\xE1n Qu\xE2n Bay L\u01B0\u1EE3n"},s={name:"Baizhu",title:"Sinh T\u1EED Giao H\xF2a"},r={name:"Barbara",title:"Th\u1EA7n T\u01B0\u1EE3ng T\u1ECFa S\xE1ng"},g={name:"Beidou",title:"Long V\u01B0\u01A1ng Kh\xF4ng V\u01B0\u01A1ng Mi\u1EC7n"},u={name:"Bennett",title:"Th\u1EED Th\xE1ch C\u1EE7a L\u1EEDa"},m={name:"Candace",title:"Th\u1EC1 Nguy\u1EC7n \xC1nh Kim"},c={name:"Charlotte",title:"\u1ED0ng K\xEDnh S\u1EF1 Th\u1EADt"},T={name:"Chevreuse",title:"Ng\u01B0\u1EDDi Th\u1EF1c Thi C\xF4ng L\xFD"},y={name:"Chongyun",title:"B\xF2ng H\xECnh B\u0103ng Gi\xE1"},d={name:"Collei",title:"M\u1EA7m Non T\xE1i Sinh"},C={name:"Cyno",title:"Ph\xE1n Quy\u1EBFt \u1EA8n M\u1EADt"},K={name:"Dehya",title:"S\u01B0 T\u1EED L\u1EEDa"},f={name:"Diluc",title:"M\u1EB7t T\u1ED1i C\u1EE7a B\xECnh Minh"},k={name:"Diona",title:"\u0110\u1EB7c Ch\u1EBF Qu\xE1n R\u01B0\u1EE3u \u0110u\xF4i M\xE8o"},N={name:"Dori",title:"Kho B\xE1u V\u01B0\u1EDDn M\u01A1"},S={name:"Eula",title:"V\u0169 \u0110i\u1EC7u B\u1ECDt Bi\u1EC3n"},b={name:"Faruzan",title:"Ng\u01B0\u1EDDi Gi\u1EA3i B\xED \u1EA8n"},w={name:"Fischl",title:"C\xF4ng Ch\xFAa \u0110\u1ECBnh T\u1ED9i"},H={name:"Freminet",title:"Kh\xE1t Khao Ch\xECm \u0110\u1EAFm"},p={name:"Furina",title:"\u0110\u1ED9c Di\u1EC5n V\xF4 T\u1EADn"},L={name:"Ganyu",title:"Ng\u01B0\u1EDDi B\u1EA3o V\u1EC7 T\u1EADn T\xE2m"},M={name:"Gorou",title:"Chi\u1EBFn Khuy\u1EC3n Nanh Nh\u1ECDn"},v={name:"Jean",title:"K\u1EF5 S\u0129 B\u1ED3 C\xF4ng Anh"},B={name:"Kaeya",title:"H\xE0n Phong Ki\u1EBFm S\u0129"},V={name:"Kaveh",title:"L\u0103ng K\xEDnh V\xF2m Tr\u1EDDi"},P={name:"Keqing",title:"S\u1EA5m Ch\u1EDBp Tr\u01B0\u1EDBc C\u01A1n M\u01B0a"},D={name:"Kirara",title:"M\xE8o Leo N\xF3c Nh\xE0"},G={name:"Klee",title:"M\u1EB7t Tr\u1EDDi Ch\u1EA1y Tr\u1ED1n"},z={name:"Layla",title:"Sao \u0110\xEAm K\u1EF3 \u1EA2o"},q={name:"Lisa",title:"Ma N\u1EEF T\u01B0\u1EDDng Vi"},R={name:"Lynette",title:"B\xF3ng H\xECnh Trang Nh\xE3"},Q={name:"Lyney",title:"\u1EA2o \u1EA2nh Ngo\u1EA1n M\u1EE5c"},j={name:"Mika",title:"D\u1EA5u Hi\u1EC7u S\u01B0\u01A1ng Mai"},x={name:"Mona",title:"Th\u1EE7y K\xEDnh Thi\xEAn Tinh"},X={name:"Nahida",title:"K\u1EBFt Tinh B\u1EA1ch Th\u1EA3o"},A={name:"Navia",title:"B\xE1nh L\xE1i Hoa L\u1EC7"},_={name:"Neuvillette",title:"Ti\u1EBFng S\xF3ng Ph\xE1n Quy\u1EBFt"},Y={name:"Nilou",title:"V\u0169 \u0110i\u1EC7u \xC1nh Sen"},F={name:"Ningguang",title:"Y\u1EC3m Nguy\u1EC7t Thi\xEAn Quy\u1EC1n"},J={name:"Noelle",title:"\u0110\xF3a Hoa Ch\u01B0a Vinh Danh"},E={name:"Qiqi",title:"\u0110\xEAm H\u1ED3n V\u1EC1 L\u1EA1nh Gi\xE1"},I={name:"Razor",title:"Thi\u1EBFu Ni\xEAn S\xF3i"},U={name:"Rosaria",title:"\xC2n \u0110i\u1EC1n M\u0169 Gai"},W={name:"Sayu",title:"Ninja Mujina"},Z={name:"Shenhe",title:"Thi\xEAn Th\u1EC3 C\xF4 \u0110\u1ED9c"},O={name:"Sucrose",title:"\u0110\u1ED9 Ng\u1ECDt V\xF4 H\u1EA1i"},$={name:"Tartaglia",title:"Childe"},nn={name:"Thoma",title:"Ng\u01B0\u1EDDi B\u1EA3o V\u1EC7 Ph\u01B0\u01A1ng Xa"},an={name:"Tighnari",title:"D\u1EA1o B\u01B0\u1EDBc R\u1EEBng Xanh"},en={name:"Venti",title:"Nh\xE0 Th\u01A1 C\xF3 M\xE0u C\u1EE7a Gi\xF3"},tn={name:"K\u1EBB Lang Thang",title:"\u0110o\u1EA1n Tuy\u1EC7t Th\u1EBF Gian"},on={name:"Wriothesley",title:"S\u1EE9 Gi\u1EA3 T\u1ED9i Danh \u1EA8n M\u1EADt"},hn={name:"Xiangling",title:"V\u1EA1n D\xE2n B\xE1ch V\u1ECB"},ln={name:"Xiao",title:"H\u1ED9 Ph\xE1p D\u1EA1 Xoa"},sn={name:"Xingqiu",title:"Tu\u1ED5i Tr\u1EBB T\xE0i Cao"},rn={name:"Xinyan",title:"Giai \u0110i\u1EC7u N\xF3ng B\u1ECFng"},gn={name:"Yanfei",title:"C\u01A1 Tr\xED Ng\xE2y Th\u01A1"},un={name:"Yaoyao",title:"Nh\u1EE5y Hoa Ho\u1EA1t B\xE1t"},mn={name:"Yelan",title:"Lan Sinh U C\u1ED1c"},cn={name:"Yoimiya",title:"V\u0169 \u0110i\u1EC7u B\xE3o L\u1EEDa"},Tn={name:"Zhongli",title:"Nham V\u01B0\u01A1ng \u0110\u1EBF Qu\xE2n"},yn={"a-thousand-floating-dreams":"C\xF5i M\u1ED9ng Ng\xE0n \u0110\xEAm",akuoumaru:n,"alley-hunter":"Th\u1EE3 S\u0103n H\u1EBBm T\u1ED1i","amos-bow":"Cung Amos","aqua-simulacra":"Nh\u01B0\u1EE3c Th\u1EE7y","aquila-favonia":"Phong \u01AFng Ki\u1EBFm","beacon-of-the-reed-sea":"H\u1EA3i \u0110\u0103ng B\u1EDD Bi\u1EC3n Lau","black-tassel":"H\u1EAFc Anh Th\u01B0\u01A1ng","bloodtained-greatsword":"Ki\u1EBFm Huy\u1EBFt R\u1ED3ng","calamity-queller":"H\u1EE7y Di\u1EC7t","cashflow-supervision":"Qu\u1EA3n \u0110\u1ED1c V\xE0ng R\xF2ng","cool-steel":"L\xE3nh Nh\u1EABn","debate-club":"G\u1EADy Thu Ph\u1EE5c","dragon_s-bane":"Tai \u01AF\u01A1ng C\u1EE7a R\u1ED3ng","elegy-for-the-end":"Ti\u1EBFng Th\u1EDF D\xE0i V\xF4 T\u1EADn","emerald-orb":"Qu\u1EA3 C\u1EA7u Ng\u1ECDc","engulfing-lightning":"\u0110o\u1EA1n Th\u1EA3o Tr\u01B0\u1EDDng \u0110ao","everlasting-moonglow":"V\u1EA7ng Tr\u0103ng B\u1EA5t Di\u1EC7t","eye-of-perception":"Chi\xEAu T\xE2m","favonius-codex":"T\xE2y Phong M\u1EADt \u0110i\u1EC3n","favonius-greatsword":"\u0110\u1EA1i Ki\u1EBFm T\xE2y Phong","favonius-lance":"Th\u01B0\u01A1ng T\xE2y Phong","favonius-sword":"T\xE2y Phong Ki\u1EBFm","favonius-warbow":"Cung T\xE2y Phong","ferrous-shadow":"Ki\u1EBFm Thi\u1EBFt \u1EA2nh","freedom-sworn":"L\u1EDDi Th\u1EC1 T\u1EF1 Do C\u1ED5 X\u01B0a","haran-geppaku-futsu":"Haran Geppaku Futsu","harbinger-of-dawn":"Th\u1EA7n Ki\u1EBFm L\xEA Minh","hunter_s-path":"Con \u0110\u01B0\u1EDDng Th\u1EE3 S\u0103n","jadefall-splendor":"Ng\u1ECDc B\xEDch Huy Ho\xE0ng","kagura_s-verity":"Ch\xE2n \xDD C\u1EE7a Kagura","key-of-khaj-nisut":"Ch\xECa Kh\xF3a Khaj-Nisut","lion_s-roar":"Ti\u1EBFng H\xE9t C\u1EE7a R\u1ED3ng","light-of-foliar-incision":"\xC1nh L\xE1 Ph\xE1n Quy\u1EBFt","lithic-blade":"Thi\xEAn Nham C\u1ED5 Ki\u1EBFm","lithic-spear":"Th\u01B0\u01A1ng Thi\xEAn Nham","lost-prayer-to-the-sacred-winds":"\u0110i\u1EC3n T\xEDch T\xE2y Phong","magic-guide":"T\xF3m T\u1EAFt Ma Ph\xE1p","makhaira-aquamarine":"S\u1EAFc N\u01B0\u1EDBc Makhaira","memory-of-dust":"Kh\xF3a Tr\u1EA7n Th\u1EBF","mistsplitter-reforged":"\xC1nh S\xE1ng \u0110\xEAm S\u01B0\u01A1ng M\xF9","mitternachts-waltz":"\u0110i\u1EC7u Van Ban \u0110\xEAm","mouun_s-moon":"\xC1nh Tr\u0103ng Mouun","polar-star":"Ng\xF4i Sao C\u1EF1c \u0110\xF4ng","portable-power-saw":"M\xE1y C\u01B0a C\u1EA7m Tay","primordial-jade-cutter":"B\xE0n Nham K\u1EBFt L\u1EE5c","primordial-jade-winged-spear":"H\xF2a Ph\xE1c Di\xEAn","prospector-drill":"M\u0169i Khoan Th\u0103m D\xF2",rainslasher:a,"range-gauge":"M\xE1y \u0110o C\u1EF1 Ly","raven-bow":"Cung L\xF4ng V\u1ECBt","redhorn-stonethresher":"X\xEDch Gi\xE1c Ph\xE1 Th\u1EA1ch \u0110ao",rust:i,"sacrificial-bow":"Cung T\u1EBF L\u1EC5","sacrificial-fragments":"M\u1EA3nh Ch\u01B0\u01A1ng T\u1EBF L\u1EC5","sacrificial-greatsword":"\u0110\u1EA1i Ki\u1EBFm T\u1EBF L\u1EC5","sacrificial-sword":"Ki\u1EBFm T\u1EBF L\u1EC5","sharpshooter_s-oath":"L\u1EDDi Th\u1EC1 X\u1EA1 Th\u1EE7 Th\u1EA7n","skyrider-sword":"Ki\u1EBFm Phi Thi\xEAn","skyward-atlas":"Quy\u1EC3n Thi\xEAn Kh\xF4ng","skyward-blade":"Thi\xEAn Kh\xF4ng Ki\u1EBFm","skyward-harp":"C\xE1nh Thi\xEAn Kh\xF4ng","skyward-pride":"Thi\xEAn Kh\xF4ng Ki\xEAu Ng\u1EA1o","skyward-spine":"X\u01B0\u01A1ng S\u1ED1ng Thi\xEAn Kh\xF4ng",slingshot:e,"song-of-broken-pines":"Ti\u1EBFng Gi\xF3 Trong R\u1EEBng Th\xF4ng","splendor-of-tranquil-waters":"S\u1EAFc N\u01B0\u1EDBc L\u1ED9ng L\u1EABy","staff-of-homa":"Tr\u01B0\u1EE3ng H\u1ED9 Ma","staff-of-the-scarlet-sands":"Quy\u1EC1n Tr\u01B0\u1EE3ng C\xE1t \u0110\u1ECF","summit-shaper":"Ki\u1EBFm Ch\u01B0\u1EDBc Phong","the-alley-flash":"Tia S\xE1ng N\u01A1i H\u1EBBm T\u1ED1i","the-bell":"Ki\u1EBFm Chu\xF4ng","the-dockhands-assistant":"Ki\u1EBFm B\u1EBFn T\xE0u","the-first-great-magic":"M\xE0n \u1EA2o Thu\u1EADt \u0110\u1EA7u Ti\xEAn","the-flute":"Ki\u1EBFm S\xE1o","the-stringless":"Tuy\u1EC7t Huy\u1EC1n","the-unforged":"Ki\u1EBFm V\xF4 C\xF4ng","the-widsith":"Ch\u01B0\u01A1ng Nh\u1EA1c Lang Thang","thrilling-tales-of-dragon-slayers":"C\xE2u Chuy\u1EC7n Di\u1EC7t R\u1ED3ng","thundering-pulse":"S\u1EA5m S\xE9t Rung \u0110\u1ED9ng","tome-of-the-eternal-flow":"Nghi Th\u1EE9c D\xF2ng Ch\u1EA3y V\u0129nh H\u1EB1ng","tulaytullah_s-remembrance":"H\u1ED3i \u1EE8c Tulaytullah",verdict:t,"vortex-vanquisher":"Gi\xE1o N\u1ECBnh Th\u1EA7n","wavebreaker_s-fin":"V\xE2y C\xE1 Ch\u1EBB S\xF3ng","wine-and-song":"R\u01B0\u1EE3u V\xE0 Th\u01A1 N\u01A1i H\u1EBBm T\u1ED1i","wandering-evenstar":"Sao \u0110\xEAm Rong Ru\u1ED5i","wolf_s-gravestone":"\u0110\u01B0\u1EDDng C\xF9ng C\u1EE7a S\xF3i","xiphos-moonlight":"\xC1nh Tr\u0103ng Xiphos",albedo:o,alhaitham:h,amber:l,"arataki-itto":{name:"Arataki Itto",title:"Qu\xE1i Ki\u1EC7t Hanamizaka"},baizhu:s,barbara:r,beidou:g,bennett:u,candace:m,charlotte:c,chevreuse:T,chongyun:y,collei:d,cyno:C,dehya:K,diluc:f,diona:k,dori:N,eula:S,faruzan:b,fischl:w,freminet:H,furina:p,ganyu:L,gorou:M,"hu-tao":{name:"Hu Tao",title:"Tuy\u1EBFt T\u1EC5 Mai H\u01B0\u01A1ng"},jean:v,"kaedehara-kazuha":{name:"Kaedehara Kazuha",title:"L\xE1 \u0110\u1ECF \u0110u\u1ED5i S\xF3ng"},kaeya:B,"kamisato-ayaka":{name:"Kamisato Ayaka",title:"B\u1EA1ch H\u1EA1c S\u01B0\u01A1ng Hoa"},"kamisato-ayato":{name:"Kamisato Ayato",title:"Tr\u1EE5 C\u1ED9t V\u1EEFng V\xE0ng"},kaveh:V,keqing:P,kirara:D,klee:G,"kujou-sara":{name:"Kujou Sara",title:"H\u1EAFc V\u0169 Ti\u1EC5n"},"kuki-shinobu":{name:"Kuki Shinobu",title:"G\u1EA1t B\u1ECF Phi\u1EC1n N\xE3o"},layla:z,lisa:q,lynette:R,lyney:Q,mika:j,mona:x,nahida:X,navia:A,neuvillette:_,nilou:Y,ningguang:F,noelle:J,qiqi:E,"raiden-shogun":{name:"Raiden Shogun",title:"Nh\u1EA5t T\xE2m T\u1ECBnh Th\u1ED5"},razor:I,rosaria:U,"sangonomiya-kokomi":{name:"Sangonomiya Kokomi",title:"Tr\xED Tu\u1EC7 Tr\xE2n Ch\xE2u"},sayu:W,shenhe:Z,"shikanoin-heizou":{name:"Shikanoin Heizou",title:"Con Tim Giao H\xF2a"},sucrose:O,tartaglia:$,thoma:nn,tighnari:an,venti:en,wanderer:tn,wriothesley:on,xiangling:hn,xiao:ln,xingqiu:sn,xinyan:rn,"yae-miko":{name:"Yae Miko",title:"Ti\u1EBFu Ng\u1EA1o Th\u1EBF Gian"},yanfei:gn,yaoyao:un,yelan:mn,yoimiya:cn,"yun-jin":{name:"Yun Jin",title:"M\u1EF9 Nh\xE2n Tr\xEAn S\xE2n Kh\u1EA5u"},zhongli:Tn};export{n as akuoumaru,o as albedo,h as alhaitham,l as amber,s as baizhu,r as barbara,g as beidou,u as bennett,m as candace,c as charlotte,T as chevreuse,y as chongyun,d as collei,C as cyno,yn as default,K as dehya,f as diluc,k as diona,N as dori,S as eula,b as faruzan,w as fischl,H as freminet,p as furina,L as ganyu,M as gorou,v as jean,B as kaeya,V as kaveh,P as keqing,D as kirara,G as klee,z as layla,q as lisa,R as lynette,Q as lyney,j as mika,x as mona,X as nahida,A as navia,_ as neuvillette,Y as nilou,F as ningguang,J as noelle,E as qiqi,a as rainslasher,I as razor,U as rosaria,i as rust,W as sayu,Z as shenhe,e as slingshot,O as sucrose,$ as tartaglia,nn as thoma,an as tighnari,en as venti,t as verdict,tn as wanderer,on as wriothesley,hn as xiangling,ln as xiao,sn as xingqiu,rn as xinyan,gn as yanfei,un as yaoyao,mn as yelan,cn as yoimiya,Tn as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/workbox-window.prod.es5-9f0a6626.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/workbox-window.prod.es5-9f0a6626.js
deleted file mode 100644
index 9701de76..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/workbox-window.prod.es5-9f0a6626.js
+++ /dev/null
@@ -1,2 +0,0 @@
-try{self["workbox:window:6.5.3"]&&_()}catch{}function S(t,r){return new Promise(function(e){var i=new MessageChannel;i.port1.onmessage=function(f){e(f.data)},t.postMessage(r,[i.port2])})}function W(t,r){for(var e=0;e<r.length;e++){var i=r[e];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}function E(t,r){(r==null||r>t.length)&&(r=t.length);for(var e=0,i=new Array(r);e<r;e++)i[e]=t[e];return i}function k(t,r){var e;if(typeof Symbol>"u"||t[Symbol.iterator]==null){if(Array.isArray(t)||(e=function(f,d){if(f){if(typeof f=="string")return E(f,d);var h=Object.prototype.toString.call(f).slice(8,-1);return h==="Object"&&f.constructor&&(h=f.constructor.name),h==="Map"||h==="Set"?Array.from(f):h==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(h)?E(f,d):void 0}}(t))||r&&t&&typeof t.length=="number"){e&&(t=e);var i=0;return function(){return i>=t.length?{done:!0}:{done:!1,value:t[i++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
-In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}return(e=t[Symbol.iterator]()).next.bind(e)}try{self["workbox:core:6.5.3"]&&_()}catch{}var y=function(){var t=this;this.promise=new Promise(function(r,e){t.resolve=r,t.reject=e})};function b(t,r){var e=location.href;return new URL(t,e).href===new URL(r,e).href}var g=function(t,r){this.type=t,Object.assign(this,r)};function p(t,r,e){return e?r?r(t):t:(t&&t.then||(t=Promise.resolve(t)),r?t.then(r):t)}function L(){}var j={type:"SKIP_WAITING"};function P(t,r){if(!r)return t&&t.then?t.then(L):Promise.resolve()}var x=function(t){var r,e;function i(v,c){var n,o;return c===void 0&&(c={}),(n=t.call(this)||this).nn={},n.tn=0,n.rn=new y,n.en=new y,n.on=new y,n.un=0,n.an=new Set,n.cn=function(){var s=n.fn,a=s.installing;n.tn>0||!b(a.scriptURL,n.sn.toString())||performance.now()>n.un+6e4?(n.vn=a,s.removeEventListener("updatefound",n.cn)):(n.hn=a,n.an.add(a),n.rn.resolve(a)),++n.tn,a.addEventListener("statechange",n.ln)},n.ln=function(s){var a=n.fn,u=s.target,l=u.state,m=u===n.vn,w={sw:u,isExternal:m,originalEvent:s};!m&&n.mn&&(w.isUpdate=!0),n.dispatchEvent(new g(l,w)),l==="installed"?n.wn=self.setTimeout(function(){l==="installed"&&a.waiting===u&&n.dispatchEvent(new g("waiting",w))},200):l==="activating"&&(clearTimeout(n.wn),m||n.en.resolve(u))},n.dn=function(s){var a=n.hn,u=a!==navigator.serviceWorker.controller;n.dispatchEvent(new g("controlling",{isExternal:u,originalEvent:s,sw:a,isUpdate:n.mn})),u||n.on.resolve(a)},n.gn=(o=function(s){var a=s.data,u=s.ports,l=s.source;return p(n.getSW(),function(){n.an.has(l)&&n.dispatchEvent(new g("message",{data:a,originalEvent:s,ports:u,sw:l}))})},function(){for(var s=[],a=0;a<arguments.length;a++)s[a]=arguments[a];try{return Promise.resolve(o.apply(this,s))}catch(u){return Promise.reject(u)}}),n.sn=v,n.nn=c,navigator.serviceWorker.addEventListener("message",n.gn),n}e=t,(r=i).prototype=Object.create(e.prototype),r.prototype.constructor=r,r.__proto__=e;var f,d,h=i.prototype;return h.register=function(v){var c=(v===void 0?{}:v).immediate,n=c!==void 0&&c;try{var o=this;return function(s,a){var u=s();return u&&u.then?u.then(a):a(u)}(function(){if(!n&&document.readyState!=="complete")return P(new Promise(function(s){return window.addEventListener("load",s)}))},function(){return o.mn=Boolean(navigator.serviceWorker.controller),o.yn=o.pn(),p(o.bn(),function(s){o.fn=s,o.yn&&(o.hn=o.yn,o.en.resolve(o.yn),o.on.resolve(o.yn),o.yn.addEventListener("statechange",o.ln,{once:!0}));var a=o.fn.waiting;return a&&b(a.scriptURL,o.sn.toString())&&(o.hn=a,Promise.resolve().then(function(){o.dispatchEvent(new g("waiting",{sw:a,wasWaitingBeforeRegister:!0}))}).then(function(){})),o.hn&&(o.rn.resolve(o.hn),o.an.add(o.hn)),o.fn.addEventListener("updatefound",o.cn),navigator.serviceWorker.addEventListener("controllerchange",o.dn),o.fn})})}catch(s){return Promise.reject(s)}},h.update=function(){try{return this.fn?P(this.fn.update()):void 0}catch(v){return Promise.reject(v)}},h.getSW=function(){return this.hn!==void 0?Promise.resolve(this.hn):this.rn.promise},h.messageSW=function(v){try{return p(this.getSW(),function(c){return S(c,v)})}catch(c){return Promise.reject(c)}},h.messageSkipWaiting=function(){this.fn&&this.fn.waiting&&S(this.fn.waiting,j)},h.pn=function(){var v=navigator.serviceWorker.controller;return v&&b(v.scriptURL,this.sn.toString())?v:void 0},h.bn=function(){try{var v=this;return function(c,n){try{var o=c()}catch(s){return n(s)}return o&&o.then?o.then(void 0,n):o}(function(){return p(navigator.serviceWorker.register(v.sn,v.nn),function(c){return v.un=performance.now(),c})},function(c){throw c})}catch(c){return Promise.reject(c)}},f=i,(d=[{key:"active",get:function(){return this.en.promise}},{key:"controlling",get:function(){return this.on.promise}}])&&W(f.prototype,d),i}(function(){function t(){this.Pn=new Map}var r=t.prototype;return r.addEventListener=function(e,i){this.Sn(e).add(i)},r.removeEventListener=function(e,i){this.Sn(e).delete(i)},r.dispatchEvent=function(e){e.target=this;for(var i,f=k(this.Sn(e.type));!(i=f()).done;)(0,i.value)(e)},r.Sn=function(e){return this.Pn.has(e)||this.Pn.set(e,new Set),this.Pn.get(e)},t}());export{x as Workbox,g as WorkboxEvent,S as messageSW};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-CN-0fc291e6.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-CN-0fc291e6.js
deleted file mode 100644
index 408a2adc..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-CN-0fc291e6.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u539F\u795E\u7948\u613F\u6A21\u62DF\u5668",n="\u89D2\u8272",a="\u6B66\u5668",t="\u795E\u4E4B\u773C",r="\u98CE",o="\u51B0",s="\u8349",i="\u96F7",p="\u6C34",l="\u5CA9",c="\u706B",d="\u5F13",m="\u6CD5\u5668",u="\u53CC\u624B\u5251",h="\u5355\u624B\u5251",y="\u957F\u67C4\u6B66\u5668",g="\u989D\u5916\u83B7\u5F97",b="\u5DF2\u83B7\u5F97",f="\u8BF7\u7A0D\u7B49",w="\u8FDE\u63A5\u5931\u8D25\uFF01",P="\u786E\u8BA4",v="\u53D6\u6D88",B="\u672C\u7F51\u7AD9\u4F7F\u7528\u7684\u6240\u6709\u8D44\u6E90\u5747\u5F52\u7C73\u54C8\u6E38\u6240\u6709\u3002",C="\u8FD9\u662F\u4E00\u4E2A\u7C89\u4E1D\u5236\u4F5C\u7684\u5E94\u7528\uFF0C\u5C3D\u60C5\u4EAB\u53D7\u5427\uFF01",k="\u70B9\u51FB\u7A7A\u767D\u533A\u57DF\u7EE7\u7EED",S="\u5B89\u88C5\u5230\u4E3B\u5C4F\u5E55/\u684C\u9762\u7684\u6559\u7A0B",N="\u5206\u4EAB",x="\u622A\u56FE",A="\u6B63\u5728\u622A\u56FE",U="\u9996\u6B21\u5206\u4EAB : {qty}",I="\u7248\u672C",D="\u6350\u8D60",F={beginner:" \u521D\u884C\u8005\u63A8\u8350\u7948\u613F",wanderlust:" \u5954\u884C\u4E16\u95F4","epitome-invocation":"\u795E\u94F8\u8D4B\u5F62","adrift-in-the-harbor":"\u6D6E\u751F\u5B70\u6765","auric-blaze":"\u70C8\u9633\u70C1\u91D1","azure-excursion":"\u82CD\u6D41\u8E0F\u82B1","ballad-in-goblets":"\u676F\u88C5\u4E4B\u8BD7","born-of-ocean-swell":"\u6D6A\u6D8C\u4E4B\u77AC","caution-in-confidence":"\u6555\u8BEB\u67A2\u8C0B","chanson-of-many-waters":"\u4F17\u6C34\u7684\u9882\u8BD7","conjuring-chiaroscuro":"\u5149\u4E0E\u5F71\u7684\u620F\u672F","dance-of-lantern":"\u9C7C\u9F99\u706F\u663C","decree-of-the-deeps":"\u6E0A\u6D77\u754C\u4EE4","discerner-of-enigmas":"\u7D20\u9713\u4F23\u5929","drifting-luminescence":"\u6D6E\u5CB3\u8679\u73E0","everbloom-violet":"\u534E\u7D2B\u6A31\u7EEF","farewell-of-snezhnaya":"\u6682\u522B\u51AC\u90FD","from-ashes-reborn":"\u4F59\u706B\u53D8\u76F8","gentry-of-hermitage":"\u9675\u85AE\u5E02\u671D","immaculate-pulse":"\u5FC3\u73E0\u5FAA\u7405","in-the-name-of-the-rosula":"\u523A\u73AB\u7684\u94ED\u8A93","invitation-to-mundane-life":"\u70DF\u706B\u4E4B\u9080","leaves-in-the-wind":"\u53F6\u843D\u98CE\u968F","moment-of-bloom":"\u8D64\u56E2\u5F00\u65F6","oni_s-royale":"\u9B3C\u95E8\u6597\u5BB4","reign-of-serenity":"\u5F71\u5BC2\u5929\u4E0B\u4EBA","secretum-secretorum":"\u6DF1\u79D8\u4E4B\u606F","sparkling-steps":"\u95EA\u7130\u7684\u9A7B\u8DB3","tapestry-of-golden-flames":"\u7130\u8272\u5929\u6CB3","tempestuous-destiny":"\u52AB\u4E2D\u6CDB\u6EE5","the-heron_s-court":"\u767D\u9E6D\u4E4B\u5EAD","the-moongrass-enlightenment":"\u6708\u8349\u7684\u8D50\u6167","the-transcendent-one-returns":"\u51FA\u5C18\u5165\u4E16","twilight-arbiter":"\u96F3\u88C1\u51A5\u662D","twirling-lotus":"\u7FE9\u821E\u6B48\u83B2","viridescent-vigil":"\u5DE1\u5FA1\u8619\u835F"},R={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},T={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},W={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},E={rollButton:"\u7948\u613F{count}\u6B21",stellaFortuna:"\u5BF9\u5E94\u89D2\u8272\u7684\u547D\u661F",loadFailed:"Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{wishTitle:"\u7948\u613F",text:"\u5361\u6C60",allBanner:"\u5168\u90E8\u5361\u6C60",previous:"\u5F80\u671F\u5361\u6C60",findBanner:"\u641C\u7D22\u5361\u6C60",group:"\u5206\u7EC4",beginner:" \u521D\u884C\u8005\u63A8\u8350\u7948\u613F","character-event":"\u89D2\u8272\u6D3B\u52A8\u7948\u613F","weapon-event":"\u6B66\u5668\u6D3B\u52A8\u7948\u613F",standard:"\u5E38\u9A7B\u7948\u613F",wishDescription:"\u6BCF\u5341\u6B21\u7948\u613F\u5FC5\u51FA\u56DB\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002",novice:"\u65B0\u624B\u7948\u613F",up:"UP!",beginnerSet:"\u5341\u8FDE8\u6298\uFF0C\u9996\u6B21\u5FC5\u5F97{character}",beginnerNote:"\u300C\u6211\u4F1A\u6CE8\u610F\u5973\u4EC6\u7684\u793C\u4EEA\u3002\u300D",beginnerChance:"\u5269\u4F59\u6B21\u6570\uFF1A{chances}",standardNote:"\u5E38\u9A7B\u7948\u613F\uFF0C\u6C38\u4E45\u6027\u7948\u613F\u6D3B\u52A8\u3002",allWeaponTypes:"\u5168\u90E8\u7C7B\u578B",etc:"\u7B49",probIncreased:"\u83B7\u53D6\u6982\u7387\u63D0\u5347\uFF01",eventNote:"\u6D3B\u52A8\u9650\u5B9A\u4E94\u661F\u89D2\u8272\u4EC5\u5728UP\u671F\u95F4\uFF0C\u901A\u8FC7\u5BF9\u5E94\u7948\u613F\u83B7\u5F97\u3002",viewDetails:"\u5177\u4F53\u5185\u5BB9\u67E5\u770B\u3010\u8BE6\u60C5\u3011"},epitomizedPath:{text:"\u795E\u94F8\u5B9A\u8F68",fatePoint:"\u547D\u5B9A\u503C",cancelPrompt:"\u662F\u5426\u786E\u8BA4\u53D6\u6D88\u5F53\u524D\u7684\u5B9A\u8F68\uFF1F",cancelDesc:"\u53D6\u6D88\u540E\uFF0C\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C\u5C06\u6E05\u7A7A\u3002",selectWeapon:"\u9009\u62E9\u5B9A\u8F68\u6B66\u5668",chartCourseOf:"\u4E3A{target}\u5B9A\u8F68",cancelCourse:"\u53D6\u6D88\u5B9A\u8F68",chartCourse:"\u5B9A\u8F68",courseSetFor:"\u5F53\u524D\u5B9A\u8F68: {selectedCourse}",description:["\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u662F\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u6240\u7279\u6709\u7684\u7948\u613F\u673A\u5236\uFF1A","\u5BF9\u671F\u671B\u76845\u661FUP\u6B66\u5668\u8FDB\u884C\u5B9A\u8F68\u540E\uFF0C\u5F53\u901A\u8FC7\u7948\u613F\u5728\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u4E2D<span>\u83B7\u53D6\u975E\u5B9A\u8F68\u76845\u661F\u6B66\u5668\u65F6\uFF0C\u5C06\u83B7\u5F971\u70B9\u547D\u5B9A\u503C</span>\u3002","\u547D\u5B9A\u503C\u5145\u6EE1\u540E\uFF0C\u5728\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u4E2D\u7948\u613F\u83B7\u5F97\u7684\u4E0B\u4E00\u4EF65\u661F\u6B66\u5668\u5C06\u4F1A\u662F\u901A\u8FC7\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u9009\u5B9A\u7684\u6B66\u5668\u3002","\u5728\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u4E2D\u7948\u613F<span>\u83B7\u5F97\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u7684\u6B66\u5668\u65F6\uFF0C\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C\u5C06\u4F1A\u6E05\u9664</span>\u3002","\u672A\u901A\u8FC7\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u7948\u613F\u5C06\u4E0D\u4F1A\u7D2F\u79EF\u547D\u5B9A\u503C\u3002","\u6B66\u5668\u7684\u5B9A\u8F68\u72B6\u6001\u53EF\u4EE5\u8FDB\u884C\u66F4\u6362\uFF0C\u4E5F\u53EF\u4EE5\u53D6\u6D88\u5B9A\u8F68\u3002<span>\u66F4\u6362\u6216\u53D6\u6D88\u65F6\uFF0C\u4F1A\u6E05\u9664\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C</span>\u3002","<span>\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u7ED3\u675F\u65F6\uFF0C\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C\u4E5F\u5C06\u6E05\u9664</span>\u3002"]},result:{skip:"\u8DF3\u8FC7",meteorFailed:"\u7948\u613F\u52A8\u753B\u52A0\u8F7D\u5931\u8D25",new:"\u65B0",convertion:"\u8F6C\u5316",title:"{item} \u7948\u613F\u7ED3\u679C"}},K={heading:"\u89D2\u8272\u88C5\u626E",default:"\u9ED8\u8BA4",setOutfit:"\u8BBE\u7F6E\u88C5\u626E",owned:"\u5DF2\u62E5\u6709",purchasePrompt:"\u60A8\u8FD8\u6CA1\u6709\u6B64\u88C5\u626E\u5BF9\u5E94\u7684\u89D2\u8272\uFF0C\u60A8\u786E\u5B9A\u8981\u8D2D\u4E70\u6B64\u88C5\u626E\u5417\uFF1F",promptInfo:"\u83B7\u5F97\u76F8\u5E94\u7684\u89D2\u8272\u540E\uFF0C\u60A8\u4ECD\u7136\u53EF\u4EE5\u4F7F\u7528\u6B64\u88C5\u626E",obtained:"New Outfit Obtained",unlocked:"{character}: Outfit Unlocked",item:{"5-star-outrider":{name:"\u300C\u6EE1\u5206\u7684\u4FA6\u5BDF\u9A91\u58EB\u300D"},"favonian-fevotion":{name:"\u98CE\u4E4B\u8654\u62A4"},"flowing-fate":{name:"\u661F\u547D\u6D41\u8F6C"},"executor_s-thorns":{name:"\u5904\u5211\u68D8\u523A"},"sea-breeze-dandelion":{name:"\u6D77\u98CE\u4E4B\u68A6",description:"\u7434\u7684\u590F\u65E5\u88C5\u675F\u3002\u6E05\u51C9\u800C\u4E0D\u5931\u4F18\u96C5\uFF0C\u662F\u6D77\u6EE8\u4E4B\u6E38\u7684\u7EDD\u4F73\u642D\u914D\u3002"},"summertime-sparkle":{name:"\u95EA\u8000\u534F\u594F",description:"\u82AD\u82AD\u62C9\u7684\u6D77\u6EE9\u88C5\u626E\u3002\u6D0B\u6EA2\u7740\u590F\u65E5\u6D3B\u529B\u7684\u4FCF\u4E3D\u77ED\u88D9\uFF0C\u4F3C\u4E4E\u6563\u53D1\u7740\u6D77\u6D0B\u7684\u6E05\u723D\u6C14\u606F\u3002"},"opulent-splendor":{name:"\u9713\u88FE\u8E41\u8DF9",description:"\u523B\u6674\u7684\u793C\u670D\u88C5\u626E\u3002\u4E8E\u6D77\u706F\u8282\u4E4B\u826F\u8FB0\u7F8E\u666F\u4E2D\uFF0C\u5F80\u65E5\u8F9B\u52B3\u6D53\u58A8\u6240\u7ED8\u7684\u7EBF\u6761\uFF0C\u4EA4\u7EC7\u6210\u4ECA\u591C\u8F7B\u76C8\u800C\u7470\u4E3D\u7684\u5BB9\u59FF\u3002"},"orchid_s-evening-gown":{name:"\u7EB1\u4E2D\u5E7D\u5170",description:"\u51DD\u5149\u7684\u793C\u670D\u88C5\u626E\u3002\u7EC0\u84DD\u957F\u88D9\u52FE\u52D2\u51FA\u4E3D\u4EBA\u4F18\u96C5\u7684\u66F2\u7EBF\uFF0C\u811A\u8E1D\u4E0A\u7684\u8776\u7FFC\u53C8\u4E3A\u5979\u5E73\u6DFB\u4E86\u51E0\u5206\u8F7B\u76C8\u3002"},"ein-immernachtstraum":{name:"\u6781\u591C\u7EC8\u68A6",description:"\u7687\u5973\u83F2\u8C22\u5C14\u7684\u796D\u793C\u7740\u88C5\u3002\u613F\u9AD8\u8D35\u7684\u4EBA\u6C38\u8FDC\u8446\u6709\u52C7\u6C14\u3001\u8BDA\u631A\u4E0E\u5584\u5FC3\uFF0C\u5982\u6B64\uFF0C\u90AA\u6076\u5FC5\u65E0\u6CD5\u632B\u8D25\u5979\u3002"},"red-dead-of-night":{name:"\u6BB7\u7EA2\u7EC8\u591C",description:"\u8FEA\u5362\u514B\u9690\u79D8\u884C\u52A8\u65F6\u6240\u7A7F\u7684\u8863\u88C5\u4E4B\u4E00\uFF0C\u5982\u9634\u5F71\u4E4B\u4E2D\u7FFB\u817E\u7684\u706B\u7130\u3002\u654C\u4EBA\u89C6\u91CE\u5C3D\u5934\u6240\u7559\u4E0B\u7684\u6BB7\u7EA2\u6B8B\u75D5\uFF0C\u5373\u662F\u4ED6\u4EEC\u4F59\u751F\u6325\u4E4B\u4E0D\u53BB\u7684\u68A6\u9B47\u3002"},"a-sobriquet-under-shade":{name:"\u53F6\u9690\u82B3\u540D",description:"\u4E3D\u838E\u91CD\u6E38\u987B\u5F25\u65F6\u8BF7\u4EBA\u8BA2\u505A\u7684\u670D\u9970\u3002\u88D9\u88C5\u5E72\u7EC3\u800C\u4E0D\u5931\u4F18\u96C5\uFF0C\u4E0E\u5979\u5B66\u751F\u65F6\u4EE3\u7684\u5236\u670D\u6709\u51E0\u5206\u76F8\u4F3C\u4E4B\u5904\u3002"},"springbloom-missive":{name:"\u82B1\u65F6\u6765\u4FE1",description:"\u795E\u91CC\u7EEB\u534E\u7684\u51FA\u6E38\u88C5\u626E\u3002\u6BD4\u7167\u8F7B\u5C0F\u8BF4\u63D2\u753B\u4E2D\u7684\u67AB\u4E39\u5973\u6027\u88C5\u675F\u800C\u5236\u4F5C\u7684\u6D0B\u88C5\uFF0C\u4F3C\u4E4E\u80FD\u501F\u5176\u4E00\u7AA5\u67AB\u4E39\u6DD1\u5973\u7684\u751F\u6D3B\u98CE\u8C8C\u3002"},"blossoming-starlight":{name:"\u742A\u82B1\u661F\u70DB",description:"\u53EF\u8389\u51FA\u6F14\u5173\u952E\u5267\u76EE\u65F6\u6240\u7A7F\u7684\u7CBE\u81F4\u670D\u88C5\uFF0C\u8272\u5F69\u660E\u4E3D\uFF0C\u5982\u540C\u70B9\u7F00\u7740\u5976\u6CB9\u82B1\u6735\u548C\u660E\u7EA2\u8721\u70DB\u7684\u86CB\u7CD5\uFF0C\u80FD\u5C06\u5FEB\u4E50\u4E0E\u7B11\u5BB9\u5E26\u5F80\u5192\u9669\u6240\u81F3\u7684\u6BCF\u4E2A\u89D2\u843D\u3002"},"sailwind-shadow":{name:"\u5E06\u5F71\u6E38\u98CE",description:"\u51EF\u4E9A\u5728\u821E\u53F0\u4E0A\u9970\u6F14\u300C\u77ED\u5200\u5927\u76D7\u300D\u65F6\u7684\u88C5\u626E\uFF0C\u4EE5\u300C\u5438\u775B\u300D\u4E3A\u8BBE\u8BA1\u539F\u5219\u7684\u534E\u4E3D\u670D\u88C5\u3002\u4E0D\u8FC7\u8863\u670D\u7A7F\u8D77\u6765\u5E76\u4E0D\u9EBB\u70E6\uFF0C\u6700\u82B1\u65F6\u95F4\u6253\u7406\u7684\u662F\u9970\u54C1\u4E0E\u77ED\u5200\u3002"}}},M={text:"\u8BE6\u60C5",promotional:"UP\u7269\u54C1",itemlist:"\u7269\u54C1\u6E05\u5355",increasedRate:"\u4EE5\u4E0B\u5185\u5BB9\u51FA\u73B0[\u6982\u7387UP!!!]",percentageDrop:"\u5360{rarity}\u661F\u51FA\u7387\u7684: {percentage}",wishDetails:"\u7948\u613F\u8BE6\u60C5",probInfo:"{rarity}\u661F\u7269\u54C1\u57FA\u7840\u51FA\u7387\uFF1A{singlePercentage} (\u542B\u4FDD\u5E95\u7EFC\u5408\u51FA\u7387\uFF1A{avgPercentage})",itemWishFor:"\u4EE5\u4E0B\u4E3A\u7948\u613F\u7269\u54C1\u6E05\u5355\uFF1A",itemType:"\u7C7B\u578B",itemName:"\u540D\u79F0",beginnerInfo:"\u65E0\u65F6\u95F4\u4E0A\u9650 (\u62BD\u53D620\u6B21\u540E\u5173\u95ED)",limited:"\u9650\u65F6\u6D3B\u52A8",permanent:"\u6C38\u4E45",alert:"\u203B \u672C\u7948\u613F\u5C5E\u4E8E\u300C{wishName}\u300D\uFF0C\u5176\u7948\u613F\u6B21\u6570\u4FDD\u5E95\u4F1A\u4E00\u76F4\u7D2F\u8BA1\u5728\u300C{wishName}\u300D\u4E2D\uFF0C\u4E0E\u5176\u4ED6\u7948\u613F\u7684\u7948\u613F\u6B21\u6570\u4FDD\u5E95\u76F8\u4E92\u72EC\u7ACB\u8BA1\u7B97\uFF0C\u4E92\u4E0D\u5F71\u54CD\u3002",beginner:["\u521D\u884C\u8005\u63A8\u8350\u7948\u613F\u4E3A<span>\u6C38\u4E45</span>\u6027\u7948\u613F\u6D3B\u52A8\uFF0C\u662F\u9762\u5411\u65B0\u52A0\u5165\u63D0\u74E6\u7279\u5927\u9646\u7684\u65C5\u884C\u8005\u7684\u63A8\u8350\u7948\u613F\u3002\u5728\u672C\u7948\u613F\u5185\uFF0C\u5341\u8FDE\u6240\u6D88\u8017\u7684\u76F8\u9047\u4E4B\u7F18\u6570\u91CF\u53EF\u4EAB\u53D78\u6298\u4F18\u60E0\uFF0C\u4E14\u9996\u6B21\u5341\u8FDE\u5FC5\u4F1A\u83B7\u53D6\u300C{character}\u300D\uFF0C\u7B2C\u4E8C\u6B21\u5341\u8FDE\u5FC5\u4F1A\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7684\u89D2\u8272\uFF01\u672C\u7948\u613F\u5B58\u5728\u7948\u613F\u6B21\u6570\u4E0A\u9650\uFF0C\u6700\u9AD8\u4E3A<span>20</span>\u6B21\uFF0C\u62BD\u53D620\u6B21\u540E<span>\u672C\u6D3B\u52A8\u7948\u613F\u754C\u9762\u5C06\u5173\u95ED</span>\u3002","\u203B\u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002","\u3013\u7948\u613F\u89C4\u5219\u3013","5\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u613F\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u7269\u54C1\u3002<br> 4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>13.000%</span>\u3002\u6700\u591A<span>10</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>99.400%</span>\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>0.600%</span>\u3002"],standard:["\u300C{bannerName}\u300D\u5E38\u9A7B\u7948\u613F\u4E3A\u6C38\u4E45\u6027\u7948\u613F\u6D3B\u52A8\uFF0C\u73A9\u5BB6\u53EF\u4EE5\u62BD\u53D6\u975E\u9650\u5B9A\u89D2\u8272\u4E0E\u6B66\u5668\u3002<br/>\u5728\u672C\u7948\u613F\u5185\uFF0C\u6BCF10\u6B21\u7948\u613F<span>\u5FC5\u4F1A</span>\u83B7\u5F97\u81F3\u5C111\u4E2A4\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002","\u203B\u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002","\u3013\u7948\u613F\u89C4\u5219\u3013","5\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u613F\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u7269\u54C1\u3002<br> 4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>13.000%</span>\u3002\u6700\u591A<span>10</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>99.400%</span>\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>0.600%</span>\u3002"],events:["\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u5DF2\u5F00\u542F\u3002\u6D3B\u52A8\u671F\u95F4\u5185\uFF0C\u9650\u5B9A5\u661F\u89D2\u8272\u300C{featuredCharacter} \u300D\u4EE5\u53CA4\u661F\u89D2\u8272 {rateupCharacters} \u7684\u7948\u613F\u83B7\u53D6\u6982\u7387\u5C06<span>\u5927\u5E45\u63D0\u5347</span>\uFF01 <span> \u203B\u4EE5\u4E0A\u89D2\u8272\u4E2D\uFF0C\u9650\u5B9A\u89D2\u8272\u4E0D\u4F1A\u8FDB\u5165\u300C\u5954\u884C\u4E16\u95F4\u300D\u5E38\u9A7B\u7948\u613F\u3002 </span>","\u203B \u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002","\u3013\u7948\u613F\u89C4\u5219\u3013","\u30105\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C5\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.600%</span>\uFF0C\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u89D2\u8272\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52305\u661F\u89D2\u8272\u65F6\uFF0C\u6709<span>50.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F5\u661FUP\u89D2\u8272\u300C{featuredCharacter}\u300D\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u89D2\u8272<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F5\u661FUP\u89D2\u8272\u3002","\u30104\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C\u53F6\u843D\u98CE\u968F\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>13.000%</span>\u3002\u6700\u591A<span>10</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>99.400%</span>\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>0.600%</span>\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52304\u661F\u7269\u54C1\u65F6\uFF0C\u6709<span>50.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F4\u661FUP\u89D2\u8272{rateupCharacters}\u4E2D\u7684\u4E00\u4E2A\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F4\u661FUP\u89D2\u8272\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52304\u661FUP\u7269\u54C1\u65F6\uFF0C\u6BCF\u4E2A\u672C\u671F4\u661FUP\u89D2\u8272\u7684\u83B7\u53D6\u6982\u7387\u5747\u7B49\u3002"],weapons:["\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u73B0\u5DF2\u5F00\u542F\u3002\u6D3B\u52A8\u671F\u95F4\u5185\uFF0C\u9650\u5B9A5\u661F\u6B66\u5668{featuredWeapon1}\u30015\u661F\u6B66\u5668{featuredWeapon2}\u4EE5\u53CA4\u661F\u6B66\u5668{rateupWeapons}\u7684\u7948\u613F\u83B7\u53D6\u6982\u7387\u5C06<span>\u5927\u5E45\u63D0\u5347</span>\uFF01<br/> <span> \u203B\u4EE5\u4E0A\u6B66\u5668\u4E2D\uFF0C\u9650\u5B9A\u6B66\u5668\u4E0D\u4F1A\u8FDB\u5165\u300C\u5954\u884C\u4E16\u95F4\u300D\u5E38\u9A7B\u7948\u613F\u3002</span>","\u203B\u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002","\u3013\u7948\u613F\u89C4\u5219\u3013","\u30105\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C5\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.700%</span>\uFF0C\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.850%</span>\uFF0C\u6700\u591A<span>80</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u89D2\u8272\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52305\u661F\u89D2\u8272\u65F6\uFF0C\u6709<span>75.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F5\u661FUP\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F5\u661FUP\u6B66\u5668\u3002<br/>\u5728\u672A\u901A\u8FC7\u547D\u5B9A\u503C\u8FBE\u5230\u6EE1\u503C\u83B7\u53D6\u5B9A\u8F68\u6B66\u5668\u7684\u60C5\u51B5\u4E0B\uFF0C\u5F53\u7948\u613F\u83B7\u53D6\u52305\u661FUP\u7269\u54C1\u65F6\uFF0C\u6BCF\u628A\u672C\u671F5\u661FUP\u6B66\u5668\u7684\u83B7\u53D6\u6982\u7387\u5747\u7B49\u3002<br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C\u53EF\u4F7F\u7528\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5BF9\u672C\u671F5\u661FUP\u6B66\u5668\u8FDB\u884C\u5B9A\u8F68\uFF0C\u5B9A\u8F68\u6B66\u5668\u7684\u9009\u62E9\u4EC5\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\u751F\u6548\u3002<br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C\u4F7F\u7528\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5B9A\u8F68\u6B66\u5668\u540E\uFF0C\u5F53\u83B7\u53D6\u5230\u76845\u661F\u6B66\u5668\u4E3A\u975E\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u83B7\u5F971\u70B9\u547D\u5B9A\u503C\uFF0C\u547D\u5B9A\u503C\u8FBE\u5230<span>\u6EE1\u503C</span>\u540E\uFF0C\u5728\u672C\u7948\u613F\u4E2D\u83B7\u5F97\u7684\u4E0B\u4E00\u628A5\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u4E3A\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u3002\u83B7\u53D6\u5230\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u65E0\u8BBA\u5F53\u524D\u547D\u5B9A\u503C\u662F\u5426\u8FBE\u5230\u6EE1\u503C\uFF0C\u90FD\u5C06\u4F1A\u91CD\u7F6E\u4E3A<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u8BA1\u3002<br/>\u672A\u4F7F\u7528\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u5C06<span>\u4E0D\u4F1A</span>\u7D2F\u79EF\u547D\u5B9A\u503C\u3002<br/>\u5B9A\u8F68\u6B66\u5668\u53EF\u8FDB\u884C\u66F4\u6362\u6216\u53D6\u6D88\u3002\u66F4\u6362\u6216\u53D6\u6D88\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u547D\u5B9A\u503C\u5C06\u4F1A\u91CD\u7F6E\u4E3A<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u8BA1\u3002<br/>\u203B\u672C\u7948\u613F\u4E2D\u7684\u547D\u5B9A\u503C\u4EC5\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\u751F\u6548\uFF0C\u7948\u613F\u7ED3\u675F\u540E\u547D\u5B9A\u503C\u5C06\u4F1A\u91CD\u7F6E\u4E3A<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u8BA1\u3002","\u30104\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>6.000%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>3.000%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>3.000%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>14.500%</span>\u3002\u6700\u591A10\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A99.300%\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A0.700%\u3002 <br/> \u5F53\u7948\u613F\u83B7\u53D6\u52304\u661F\u7269\u54C1\u65F6\uFF0C\u6709<span>75.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F4\u661FUP\u6B66\u5668{rateupWeapons}\u4E2D\u7684\u4E00\u4E2A\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F4\u661FUP\u6B66\u5668\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52304\u661FUP\u7269\u54C1\u65F6\uFF0C\u6BCF\u628A\u672C\u671F4\u661FUP\u6B66\u5668\u7684\u83B7\u53D6\u6982\u7387\u5747\u7B49\u3002"],convertion:{fiveStar:"\u7948\u613F\u83B7\u5F975\u661F\u6B66\u5668\u65F6\uFF0C\u4F1A\u540C\u65F6\u83B7\u5F9710\u4E2A{starglitter}\u4F5C\u4E3A\u526F\u4EA7\u7269\uFF1B",fourStar:"\u83B7\u5F974\u661F\u6B66\u5668\u65F6\uFF0C\u4F1A\u540C\u65F6\u83B7\u5F972\u4E2A{starglitter}\u4F5C\u4E3A\u526F\u4EA7\u7269\uFF1B",threeStar:"\u83B7\u5F973\u661F\u6B66\u5668\u65F6\uFF0C\u4F1A\u540C\u65F6\u83B7\u5F9715\u4E2A{stardust}\u4F5C\u4E3A\u526F\u4EA7\u7269\u3002"},duplicate:{heading:"\u3013\u82E5\u83B7\u5F97\u91CD\u590D\u89D2\u8272\u3013",text:"\u65E0\u8BBA\u901A\u8FC7\u4F55\u79CD\u65B9\u5F0F\uFF08\u5305\u542B\u4F46\u4E0D\u9650\u4E8E\u7948\u613F\u3001\u5546\u57CE\u5151\u6362\u3001\u7CFB\u7EDF\u8D60\u9001\u7B49\uFF09\u7B2C2~7\u6B21\u83B7\u5F97\u76F8\u540C{rarity}\u661F\u89D2\u8272\u65F6\uFF0C\u6BCF\u6B21\u5C06\u8F6C\u5316\u4E3A1\u4E2A{stellaFortuna}\u548C10\u4E2A{starglitter}\uFF1B\u7B2C8\u6B21\u53CA\u4E4B\u540E\u83B7\u5F97\uFF0C\u5C06\u4EC5\u8F6C\u5316\u4E3A25\u4E2A{starglitter}\u3002"}},O={title:"\u7948\u613F\u5386\u53F2",text:"\u5386\u53F2\u8BB0\u5F55",resetButton:"\u91CD\u7F6E",resetPromptTitle:"\u91CD\u7F6E\u8BB0\u5F55\uFF1F",resetPrompt:"\u5B83\u8FD8\u4F1A\u4ECE\u60A8\u7684\u5E93\u5B58\u4E2D\u5220\u9664\u4E0E {bannerName} \u5361\u6C60\u76F8\u5173\u7684\u6240\u6709\u89D2\u8272\u548C\u6B66\u5668\u3002 <br /> \u4F60\u786E\u5B9A\u8981\u91CD\u7F6E\u5417\uFF1F",resetSuccess:"\u5DF2\u6210\u529F\u91CD\u7F6E\uFF01",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"\u7948\u613F\u7C7B\u578B\u9009\u62E9:",disclaimer:"\u6211\u4EEC\u4ECE\u4E0D\u5C06\u60A8\u7684\u6570\u636E\u4FDD\u5B58\u5728\u4E91\u5B58\u50A8\u4E2D\u3002 \u6240\u6709\u6570\u636E\u90FD\u5B58\u50A8\u5230 IndexedDB\uFF0C\u8FD9\u610F\u5473\u7740\u6570\u636E\u4FDD\u5B58\u5728\u60A8\u7684\u6D4F\u89C8\u5668\u5B58\u50A8\u4E2D\u3002 \u9664\u975E\u60A8\u901A\u8FC7\u5220\u9664/\u91CD\u7F6E\u6309\u94AE\u624B\u52A8\u5220\u9664\u5B83\u6216\u6E05\u9664\u6D4F\u89C8\u5668\u6570\u636E\uFF0C\u5426\u5219\u5B83\u6C38\u8FDC\u4E0D\u4F1A\u5220\u9664\u3002",currentPity:"\u5F53\u524D\u5DF2\u57AB:",totalPull:"\u603B\u5171\u62BD\u53D6:",totalSpend:"\u5DF2\u82B1\u8D39:",filterTxt:"\u7B5B\u9009",filter:"{rarity} \u661F",filterAll:"\u5168\u90E8",pity:"\u5DF2\u57AB",timeReceived:"\u7948\u613F\u65F6\u95F4",waiting:"\u8BF7\u7A0D\u7B49",noData:"\u65E0\u53EF\u7528\u6570\u636E",untracked:"\u672A\u8FFD\u8E2A",item:"\u7269\u54C1",win:"\u5C0F\u4FDD\u5E95",lose:"\u6B6A",guaranteed:"\u5927\u4FDD\u5E95",selected:"\u5DF2\u5B9A\u8F68",olderLayout:"\u65E7\u5E03\u5C40",switchv2:"\u5207\u6362\u5230\u65B0\u7248\u5E03\u5C40"},L={text:"\u5546\u57CE",paimonBargains:"\u5C18\u8F89\u5151\u6362",fateNeeded:"\u7F3A\u5C11{rollQty}\u4E2A{currency}\uFF0C",primoNeeded:"\u662F\u5426\u6D88\u8017{primoPrice}\u539F\u77F3\u8D2D\u4E70\uFF1F",purchaseUpto:"\u9650\u8D2D 1",purchaseConfirm:"\u786E\u8BA4\u8D2D\u4E70",exchangeHeading:"\u5151\u6362\u7269\u54C1",purchaseHeading:"\u8D2D\u4E70\u7269\u54C1",purchaseButton:"\u8D2D\u4E70",pay:"\u652F\u4ED8",product:"\u4EA7\u54C1",consume:"\u6D88\u8017",selectPayment:"\u9009\u62E9\u652F\u4ED8\u65B9\u5F0F",unrealWallet:"\u84DD\u7EFF\u4FEE\u6539\u5668\u7834\u89E3\u7248",convertPrimo:"\u81EA\u52A8\u8F6C\u6362\u4E3A\u539F\u77F3\uFF1F",proceedPayment:"\u786E\u8BA4\u4EA4\u6613",qty:"\u6570\u91CF",insufficient:"\u8D27\u5E01\u4E0D\u8DB3",crystalTopup:"\u51DD\u53D6\u7ED3\u6676",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"\u8D2D\u4E70\u521B\u4E16\u7ED3\u6676",recomendedHeading:"\u63A8\u8350\u5546\u54C1",paimonHeading:"\u5C18\u8F89\u5151\u6362",welkinNote:"\u53EF\u7D2F\u8BA1\u8D2D\u4E70",limitedOffer:"\u9650\u65F6\u63D0\u4F9B\u8D2D\u4E70",noLimitTime:"\u5237\u65B0\u65F6\u95F4\uFF1A\u4E0D\u4F1A\u5237\u65B0",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"\u7A7A\u6708\u795D\u798F",newOutfit:"\u89D2\u8272\u88C5\u626E \xB7 \u65B0\u88C5",dayRemaining:"\u5269\u4F59 {days} \u5929",alreadyClaimed:"\u672C\u65E5\u5DF2\u9886\u53D6",instantlyGet:"\u8D2D\u4E70\u5373\u53EF\u83B7\u5F97",dailyGift:"\u6BCF\u65E5\u8D60\u9001",obtainTotal:"*\u6709\u6548\u671F\u6301\u7EED30\u5929\uFF01\u7D2F\u8BA1\u53EF\u83B7\u5F97{totalGenesis}\u521B\u4E16\u7ED3\u6676\u548C{totalPrimo}\u539F\u77F3\uFF01",claimingBlessing:"\u70B9\u51FB\u9886\u53D6\u4ECA\u65E5\u7A7A\u6708\u795D\u798F\u5956\u52B1",issuedPurchase:"\u8D2D\u4E70\u65F6\u83B7\u5F97",collect:"\u6BCF\u65E5\u767B\u5F55\u5956\u52B1"},exchange:{starglitter:"\u65E0\u4E3B\u7684\u661F\u8F89",stardust:"\u65E0\u4E3B\u7684\u661F\u5C18",primogem:"\u539F\u77F3\u8D2D\u4E70"},item:{genesis:"\u521B\u4E16\u7ED3\u6676",primogem:"\u539F\u77F3",intertwined:"\u7EA0\u7F20\u4E4B\u7F18",acquaint:"\u76F8\u9047\u4E4B\u7F18",starglitter:"\u65E0\u4E3B\u7684\u661F\u8F89",stardust:"\u65E0\u4E3B\u7684\u661F\u5C18"},description:{intertwined:"\u8FDE\u7ED3\u68A6\u60F3\u7684\u547D\u8FD0\u4E4B\u79CD\u3002\u7F18\u77F3\u8F89\u5149\u80FD\u8BA9\u672C\u65E0\u4EA4\u96C6\u7684\u547D\u8FD0\u4EA4\u9519\uFF0C\u8BA9\u5F7C\u6B64\u7684\u68A6\u60F3\u76F8\u8FDE\uFF0C\u6B63\u5982\u8FD9\u79CD\u5149\u8F89\u5C06\u7FA4\u661F\u8FDE\u6210\u5FC3\u4E4B\u6240\u5411\u7684\u56FE\u5F62\u3002",acquaint:"\u70B9\u4EAE\u661F\u7A7A\u7684\u5E0C\u671B\u4E4B\u79CD\u3002\u65E0\u8BBA\u76F8\u9694\u591A\u8FDC\uFF0C\u547D\u5B9A\u76F8\u9047\u7684\u4EBA\u90FD\u4F1A\u53D7\u7F18\u77F3\u8F89\u5149\u7684\u6307\u5F15\uFF0C\u5728\u661F\u7A7A\u4E0B\u76F8\u4F1A\u3002"}},z={text:"\u4ED3\u5E93",unsetOutfit:"\u672A\u8BBE\u7F6E\u88C5\u626E",setOutfit:"\u8BBE\u7F6E\u89D2\u8272\u88C5\u626E",refinement:"\u7CBE\u70BC\u7B49\u7EA7 {count}",constellation:"\u547D\u4E4B\u5EA7\u5C42\u6570 {count}",extra:"{count} \u5DF2\u6EE1\u5E76\u6EA2\u51FA",firstSummon:"\u9996\u6B21\u83B7\u5F97: {date}",notOwned:"\u5C1A\u672A\u62E5\u6709",sort:"\u6392\u5E8F",rarity:"\u7A00\u6709\u5EA6",name:"\u540D\u5B57",quantity:"\u6570\u91CF",element:"\u5143\u7D20",release:"Release Date",type:"\u7C7B\u578B",owned:"\u5DF2\u83B7\u5F97",showAllOption:"\u663E\u793A\u6240\u6709{item}"},H={upload:"\u4E0A\u4F20",no:"\u5426",yes:"\u662F",text:"\u83DC\u5355",feedback:"Feedback",options:"\u9009\u9879",updates:"\u66F4\u65B0\u5386\u53F2",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"\u8BED\u8A00",currency:"\u8D27\u5E01",fates:"\u62BD\u5361\u6B21\u6570",unlimited:"\u65E0\u9650",manual:"\u624B\u52A8\u8F93\u5165",mute:"\u7981\u7528\u97F3\u9891\u97F3\u6548",switchBanner:"\u5207\u6362\u5361\u6C60",showAllitems:"\u5728\u5E93\u5B58\u4E2D\u663E\u793A\u6240\u6709\u7269\u54C1",animatedbg:"\u52A8\u753B\u80CC\u666F",autoskip:"\u81EA\u52A8\u8DF3\u8FC7\u7948\u613F\u52A8\u753B",multiRoll:"\u591A\u62BD\u6B21\u6570",factoryReset:"\u6E05\u9664\u6570\u636E\u5E76\u6062\u590D\u9ED8\u8BA4",resetTitle:"\u6062\u590D\u9ED8\u8BA4",rotate:"\u65CB\u8F6C\u8BBE\u5907\u4EE5\u83B7\u5F97\u66F4\u597D\u4F53\u9A8C",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"\u6E05\u7A7A\u7F13\u5B58 ( {size} ) \uFF1F<small>\u52FE\u9009\u672C\u9879\u5E76\u6062\u590D\u540E\u5C06\u4F1A\u91CD\u8F7D\u8D44\u6E90\uFF01</small>",resetButton:"\u73B0\u5728\u91CD\u7F6E",resetPrompt:"\u60A8\u786E\u5B9A\u6E05\u9664<strong>\u6240\u6709\u6570\u636E</strong>\u5E76\u6062\u590D\u9ED8\u8BA4\u5417\uFF1F",resetSuccess:"\u5DF2\u6210\u529F\u91CD\u7F6E",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"\u5728\u8FD9\u91CC\u641E\u4E00\u4E2A\u65B0\u7684\uFF01",noKey:"\u6CA1\u6709\u8D5E\u52A9\u7801\uFF1F",verifyFail:"\u65E0\u6CD5\u9A8C\u8BC1\u8D5E\u52A9\u7801\uFF0C\u8BF7\u68C0\u67E5\u60A8\u7684\u7F51\u7EDC\u8FDE\u63A5\uFF01",invalidKey:"\u60A8\u7684\u8D5E\u52A9\u7801\u65E0\u6548",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"\u8F93\u5165\u8D5E\u52A9\u7801",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* \u6211\u9700\u8981\u5BF9\u690D\u5165\u5E7F\u544A\u884C\u4E3A\u8868\u793A\u6B49\u610F\u3002\u5B9E\u9645\u4E0A\u6211\u4E5F\u4E0D\u60F3\u7834\u574F\u60A8\u7684\u64CD\u4F5C\u4F53\u9A8C\uFF0C\u4F46\u6211\u6CA1\u6709\u4EFB\u4F55\u56E2\u961F\u6216\u8D5E\u52A9\u5546\u6765\u7EF4\u6301\u8FD9\u4E2A\u5E94\u7528\u7684\u8FD0\u8425\u3002\u5982\u679C\u4F60\u4E0D\u60F3\u82B1\u94B1\u7684\u8BDD\uFF0C\u4F60\u4ECD\u65E7\u53EF\u4EE5\u901A\u8FC7\u542F\u7528\u5E7F\u544A\u62E6\u622A\u63D2\u4EF6\u6216\u8005\u81EA\u5B9A\u4E49DNS\uFF0C\u6211\u4E0D\u4F1A\u5BF9\u5176\u8FDB\u884C\u9650\u5236\u3002"},Y={title:e,character:n,weapon:a,vision:t,anemo:r,cryo:o,dendro:s,electro:i,hydro:p,geo:l,pyro:c,bow:d,catalyst:m,claymore:u,sword:h,polearm:y,extra:g,obtained:b,waiting:f,connectionFailed:w,confirmButton:P,cancelButton:v,disclaimer:B,fanmade:C,pressToContinue:k,installInstruction:S,share:N,screenshot:x,capturing:A,rewardFirstShare:U,version:I,donate:D,banner:F,editor:R,customBanner:T,backupRestore:W,wish:E,outfit:K,details:M,history:O,shop:L,inventory:z,menu:H};export{r as anemo,W as backupRestore,F as banner,d as bow,v as cancelButton,A as capturing,m as catalyst,n as character,u as claymore,P as confirmButton,w as connectionFailed,o as cryo,T as customBanner,Y as default,s as dendro,M as details,B as disclaimer,D as donate,R as editor,i as electro,g as extra,C as fanmade,l as geo,O as history,p as hydro,S as installInstruction,z as inventory,H as menu,b as obtained,K as outfit,y as polearm,k as pressToContinue,c as pyro,U as rewardFirstShare,x as screenshot,N as share,L as shop,h as sword,e as title,I as version,t as vision,f as waiting,a as weapon,E as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-CN-682e266a.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-CN-682e266a.js
deleted file mode 100644
index 783e58eb..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-CN-682e266a.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u6076\u738B\u4E38",t="\u96E8\u88C1",a="\u5F13\u85CF",n="\u5F39\u5F13",i="\u88C1\u65AD",o={name:"\u963F\u8D1D\u591A",title:"\u767D\u57A9\u4E4B\u5B50"},s={name:"\u827E\u5C14\u6D77\u68EE",title:"\u8BF2\u97EC\u8BE4\u8A00"},l={name:"\u5B89\u67CF",title:"\u98DE\u884C\u51A0\u519B"},r={name:"\u767D\u672F",title:"\u9075\u751F\u5408\u548C"},m={name:"\u82AD\u82AD\u62C9",title:"\u95EA\u8000\u5076\u50CF"},c={name:"\u5317\u6597",title:"\u65E0\u5195\u7684\u9F99\u738B"},h={name:"\u73ED\u5C3C\u7279",title:"\u547D\u8FD0\u8BD5\u91D1\u77F3"},u={name:"\u574E\u8482\u4E1D",title:"\u6D6E\u91D1\u7684\u8A93\u613F"},d={name:"\u590F\u6D1B\u8482",title:"\u6717\u955C\u7D22\u771F"},g={name:"\u590F\u6C83\u857E",title:"\u660E\u5F8B\u51B3\u7F5A"},y={name:"\u91CD\u4E91",title:"\u96EA\u878D\u6709\u8E2A"},f={name:"\u67EF\u83B1",title:"\u8403\u5FF5\u521D\u8616"},k={name:"\u8D5B\u8BFA",title:"\u7F04\u79D8\u7684\u88C1\u9063"},w={name:"\u8FEA\u5E0C\u96C5",title:"\u70BD\u9B03\u4E4B\u72EE"},b={name:"\u8FEA\u5362\u514B",title:"\u6668\u66E6\u7684\u6697\u9762"},p={name:"\u8FEA\u5965\u5A1C",title:"\u732B\u5C3E\u7279\u8C03"},v={name:"\u591A\u8389",title:"\u68A6\u56ED\u85CF\u91D1"},q={name:"\u4F18\u83C8",title:"\u6D6A\u6CAB\u7684\u65CB\u821E"},x={name:"\u73D0\u9732\u73CA",title:"\u673A\u9010\u5C01\u79D8"},z={name:"\u83F2\u8C22\u5C14",title:"\u65AD\u7F6A\u7687\u5973\uFF01\uFF01"},_={name:"\u83F2\u7C73\u5C3C",title:"\u6F5C\u6000\u9050\u68A6"},j={name:"\u8299\u5B81\u5A1C",title:"\u4E0D\u4F11\u72EC\u821E"},C={name:"\u7518\u96E8",title:"\u5FAA\u5FAA\u5B88\u6708"},N={name:"\u4E94\u90CE",title:"\u620E\u72AC\u9535\u9535"},A={name:"\u7434",title:"\u84B2\u516C\u82F1\u9A91\u58EB"},B={name:"\u51EF\u4E9A",title:"\u5BD2\u98CE\u5251\u58EB"},D={name:"\u523B\u6674",title:"\u9706\u9713\u5FEB\u96E8"},E={name:"\u53EF\u8389",title:"\u9003\u8DD1\u7684\u592A\u9633"},F={name:"\u7EEE\u826F\u826F",title:"\u6A90\u5B87\u732B\u6E38"},G={name:"\u5361\u7EF4",title:"\u5929\u7A79\u4E4B\u955C"},H={name:"\u83B1\u4F9D\u62C9",title:"\u7EEE\u601D\u665A\u661F"},I={name:"\u4E3D\u838E",title:"\u8537\u8587\u9B54\u5973"},J={name:"\u7433\u59AE\u7279",title:"\u4E3D\u5F71\u7EEE\u884C"},K={name:"\u6797\u5C3C",title:"\u60D1\u5149\u5E7B\u620F"},L={name:"\u7C73\u5361",title:"\u6674\u971C\u7684\u6807\u7ED8"},M={name:"\u83AB\u5A1C",title:"\u661F\u5929\u6C34\u955C"},O={name:"\u7EB3\u897F\u59B2",title:"\u767D\u8349\u51C0\u534E"},P={name:"\u5A1C\u7EF4\u5A05",title:"\u660E\u82B1\u8513\u8235"},Q={name:"\u90A3\u7EF4\u83B1\u7279",title:"\u8C15\u544A\u7684\u6F6E\u97F3"},R={name:"\u59AE\u9732",title:"\u83B2\u5149\u843D\u821E\u7B75"},S={name:"\u51DD\u5149",title:"\u63A9\u6708\u5929\u6743"},T={name:"\u8BFA\u827E\u5C14",title:"\u672A\u53D7\u52CB\u4E4B\u82B1"},U={name:"\u4E03\u4E03",title:"\u51BB\u51BB\u56DE\u9B42\u591C"},V={name:"\u96F7\u6CFD",title:"\u72FC\u5C11\u5E74"},W={name:"\u7F57\u838E\u8389\u4E9A",title:"\u68D8\u51A0\u6069\u5178"},X={name:"\u65E9\u67DA",title:"\u5FCD\u91CC\u4E4B\u8C89"},Y={name:"\u7533\u9E64",title:"\u5B64\u8FB0\u8315\u6000"},Z={name:"\u7802\u7CD6",title:"\u65E0\u5BB3\u751C\u5EA6"},$={name:"\u8FBE\u8FBE\u5229\u4E9A",title:"\u300C\u516C\u5B50\u300D"},ee={name:"\u6258\u9A6C",title:"\u6E21\u6765\u4ECB\u8005"},te={name:"\u63D0\u7EB3\u91CC",title:"\u6D45\u851A\u8F7B\u884C"},ae={name:"\u6E29\u8FEA",title:"\u98CE\u8272\u8BD7\u4EBA"},ne={name:"\u6D41\u6D6A\u8005",title:"\u4E45\u4E16\u6D6E\u503E"},ie={name:"\u83B1\u6B27\u65AF\u5229",title:"\u5BC2\u7F6A\u7684\u5BC6\u4F7F"},oe={name:"\u9999\u83F1",title:"\u4E07\u6C11\u767E\u5473"},se={name:"\u9B48",title:"\u62A4\u6CD5\u591C\u53C9"},le={name:"\u884C\u79CB",title:"\u5C11\u5E74\u6625\u886B\u8584"},re={name:"\u8F9B\u7131",title:"\u71E5\u70ED\u65CB\u5F8B"},me={name:"\u70DF\u7EEF",title:"\u667A\u660E\u65E0\u90AA"},ce={name:"\u7476\u7476",title:"\u4ED9\u854A\u73B2\u73D1"},he={name:"\u591C\u5170",title:"\u5170\u751F\u5E7D\u8C37"},ue={name:"\u5BB5\u5BAB",title:"\u7409\u7130\u534E\u821E"},de={name:"\u949F\u79BB",title:"\u5C18\u4E16\u95F2\u6E38"},ge={"a-thousand-floating-dreams":"\u5343\u591C\u6D6E\u68A6",akuoumaru:e,"alley-hunter":"\u6697\u5DF7\u730E\u624B","amos-bow":"\u963F\u83AB\u65AF\u4E4B\u5F13","aqua-simulacra":"\u82E5\u6C34","aquila-favonia":"\u98CE\u9E70\u5251","beacon-of-the-reed-sea":"\u82C7\u6D77\u4FE1\u6807","black-tassel":"\u9ED1\u7F28\u67AA","bloodtained-greatsword":"\u6C90\u6D74\u9F99\u8840\u7684\u5251","calamity-queller":"\u606F\u707E","cashflow-supervision":"\u91D1\u6D41\u76D1\u7763","cool-steel":"\u51B7\u5203","debate-club":"\u4EE5\u7406\u670D\u4EBA","dragon_s-bane":"\u5323\u91CC\u706D\u8FB0","elegy-for-the-end":"\u7EC8\u672B\u55DF\u53F9\u4E4B\u8BD7","emerald-orb":"\u7FE1\u7389\u6CD5\u7403","engulfing-lightning":"\u8599\u8349\u4E4B\u7A3B\u5149","everlasting-moonglow":"\u4E0D\u706D\u6708\u534E","eye-of-perception":"\u662D\u5FC3","favonius-codex":"\u897F\u98CE\u79D8\u5178","favonius-greatsword":"\u897F\u98CE\u5927\u5251","favonius-lance":"\u897F\u98CE\u957F\u67AA","favonius-sword":"\u897F\u98CE\u5251","favonius-warbow":"\u897F\u98CE\u730E\u5F13","ferrous-shadow":"\u94C1\u5F71\u9614\u5251","freedom-sworn":"\u82CD\u53E4\u81EA\u7531\u4E4B\u8A93","haran-geppaku-futsu":"\u6CE2\u4E71\u6708\u767D\u7ECF\u6D25","harbinger-of-dawn":"\u9ECE\u660E\u795E\u5251","hunter_s-path":"\u730E\u4EBA\u4E4B\u5F84","jadefall-splendor":"\u78A7\u843D\u4E4B\u73D1","kagura_s-verity":"\u795E\u4E50\u4E4B\u771F\u610F","key-of-khaj-nisut":"\u5723\u663E\u4E4B\u94A5","lion_s-roar":"\u5323\u91CC\u9F99\u541F","light-of-foliar-incision":"\u88C1\u53F6\u8403\u5149","lithic-blade":"\u5343\u5CA9\u53E4\u5251","lithic-spear":"\u5343\u5CA9\u957F\u67AA","lost-prayer-to-the-sacred-winds":"\u56DB\u98CE\u539F\u5178","magic-guide":"\u9B54\u5BFC\u7EEA\u8BBA","makhaira-aquamarine":"\u739B\u6D77\u83C8\u7684\u6C34\u8272","memory-of-dust":"\u5C18\u4E16\u4E4B\u9501","mistsplitter-reforged":"\u96FE\u5207\u4E4B\u56DE\u5149","mitternachts-waltz":"\u5E7D\u591C\u534E\u5C14\u5179","mouun_s-moon":"\u66DA\u4E91\u4E4B\u6708","polar-star":"\u51AC\u6781\u767D\u661F","portable-power-saw":"\u4FBF\u643A\u52A8\u529B\u952F","primordial-jade-cutter":"\u78D0\u5CA9\u7ED3\u7EFF","primordial-jade-winged-spear":"\u548C\u749E\u9E22","prospector-drill":"\u52D8\u63A2\u94BB\u673A",rainslasher:t,"range-gauge":"\u6D4B\u8DDD\u89C4","raven-bow":"\u9E26\u7FBD\u5F13","redhorn-stonethresher":"\u8D64\u89D2\u77F3\u6E83\u6775",rust:a,"sacrificial-bow":"\u796D\u793C\u5F13","sacrificial-fragments":"\u796D\u793C\u6B8B\u7AE0","sacrificial-greatsword":"\u796D\u793C\u5927\u5251","sacrificial-sword":"\u796D\u793C\u5251","sharpshooter_s-oath":"\u795E\u5C04\u624B\u4E4B\u8A93","skyrider-sword":"\u98DE\u5929\u5FA1\u5251","skyward-atlas":"\u5929\u7A7A\u4E4B\u5377","skyward-blade":"\u5929\u7A7A\u4E4B\u5203","skyward-harp":"\u5929\u7A7A\u4E4B\u7FFC","skyward-pride":"\u5929\u7A7A\u4E4B\u50B2","skyward-spine":"\u5929\u7A7A\u4E4B\u810A",slingshot:n,"song-of-broken-pines":"\u677E\u7C41\u54CD\u8D77\u4E4B\u65F6","splendor-of-tranquil-waters":"\u9759\u6C34\u6D41\u6D8C\u4E4B\u8F89","staff-of-homa":"\u62A4\u6469\u4E4B\u6756","staff-of-the-scarlet-sands":"\u8D64\u6C99\u4E4B\u6756","summit-shaper":"\u65AB\u5CF0\u4E4B\u5203","the-alley-flash":"\u6697\u5DF7\u95EA\u5149","the-bell":"\u949F\u5251","the-dockhands-assistant":"\u8239\u575E\u957F\u5251","the-first-great-magic":"\u6700\u521D\u7684\u5927\u9B54\u672F","the-flute":"\u7B1B\u5251","the-stringless":"\u7EDD\u5F26","the-unforged":"\u65E0\u5DE5\u4E4B\u5251","the-widsith":"\u6D41\u6D6A\u4E50\u7AE0","thrilling-tales-of-dragon-slayers":"\u8BA8\u9F99\u82F1\u6770\u8C2D","thundering-pulse":"\u98DE\u96F7\u4E4B\u5F26\u632F","tome-of-the-eternal-flow":"\u4E45\u9060\u6D41\u8EE2\u306E\u5927\u5178","tulaytullah_s-remembrance":"\u56FE\u83B1\u675C\u62C9\u7684\u56DE\u5FC6",verdict:i,"vortex-vanquisher":"\u8D2F\u8679\u4E4B\u69CA","wavebreaker_s-fin":"\u65AD\u6D6A\u957F\u9CCD","wine-and-song":"\u6697\u5DF7\u7684\u9152\u4E0E\u8BD7","wandering-evenstar":"\u6D41\u6D6A\u7684\u665A\u661F","wolf_s-gravestone":"\u72FC\u7684\u672B\u8DEF","xiphos-moonlight":"\u897F\u798F\u65AF\u7684\u6708\u5149",albedo:o,alhaitham:s,amber:l,"arataki-itto":{name:"\u8352\u6CF7\u4E00\u6597",title:"\u82B1\u5742\u8C6A\u5FEB"},baizhu:r,barbara:m,beidou:c,bennett:h,candace:u,charlotte:d,chevreuse:g,chongyun:y,collei:f,cyno:k,dehya:w,diluc:b,diona:p,dori:v,eula:q,faruzan:x,fischl:z,freminet:_,furina:j,ganyu:C,gorou:N,"hu-tao":{name:"\u80E1\u6843",title:"\u96EA\u9701\u6885\u9999"},jean:A,"kaedehara-kazuha":{name:"\u67AB\u539F\u4E07\u53F6",title:"\u7EA2\u53F6\u9010\u8352\u6CE2"},kaeya:B,"kamisato-ayaka":{name:"\u795E\u91CC\u7EEB\u534E",title:"\u767D\u9E6D\u971C\u534E"},"kamisato-ayato":{name:"\u795E\u91CC\u7EEB\u4EBA",title:"\u78D0\u796D\u53F6\u5B88"},keqing:D,klee:E,kirara:F,kaveh:G,"kujou-sara":{name:"\u4E5D\u6761\u88DF\u7F57",title:"\u9ED1\u7FBD\u9E23\u955D"},"kuki-shinobu":{name:"\u4E45\u5C90\u5FCD",title:"\u70E6\u607C\u5208\u9664"},layla:H,lisa:I,lynette:J,lyney:K,mika:L,mona:M,nahida:O,navia:P,neuvillette:Q,nilou:R,ningguang:S,noelle:T,qiqi:U,"raiden-shogun":{name:"\u96F7\u7535\u5C06\u519B",title:"\u4E00\u5FC3\u51C0\u571F"},razor:V,rosaria:W,"sangonomiya-kokomi":{name:"\u73CA\u745A\u5BAB\u5FC3\u6D77",title:"\u771F\u73E0\u4E4B\u667A"},sayu:X,shenhe:Y,"shikanoin-heizou":{name:"\u9E7F\u91CE\u9662\u5E73\u85CF",title:"\u5FC3\u671D\u4E42\u5B89"},sucrose:Z,tartaglia:$,thoma:ee,tighnari:te,venti:ae,wanderer:ne,wriothesley:ie,xiangling:oe,xiao:se,xingqiu:le,xinyan:re,"yae-miko":{name:"\u516B\u91CD\u795E\u5B50",title:"\u6D6E\u4E16\u7B11\u767E\u59FF"},yanfei:me,yaoyao:ce,yelan:he,yoimiya:ue,"yun-jin":{name:"\u4E91\u5807",title:"\u7EA2\u6BF9\u5A75\u5A1F"},zhongli:de};export{e as akuoumaru,o as albedo,s as alhaitham,l as amber,r as baizhu,m as barbara,c as beidou,h as bennett,u as candace,d as charlotte,g as chevreuse,y as chongyun,f as collei,k as cyno,ge as default,w as dehya,b as diluc,p as diona,v as dori,q as eula,x as faruzan,z as fischl,_ as freminet,j as furina,C as ganyu,N as gorou,A as jean,B as kaeya,G as kaveh,D as keqing,F as kirara,E as klee,H as layla,I as lisa,J as lynette,K as lyney,L as mika,M as mona,O as nahida,P as navia,Q as neuvillette,R as nilou,S as ningguang,T as noelle,U as qiqi,t as rainslasher,V as razor,W as rosaria,a as rust,X as sayu,Y as shenhe,n as slingshot,Z as sucrose,$ as tartaglia,ee as thoma,te as tighnari,ae as venti,i as verdict,ne as wanderer,ie as wriothesley,oe as xiangling,se as xiao,le as xingqiu,re as xinyan,me as yanfei,ce as yaoyao,he as yelan,ue as yoimiya,de as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-TW-2597c741.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-TW-2597c741.js
deleted file mode 100644
index 0ba435d8..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-TW-2597c741.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u60E1\u738B\u4E38",t="\u96E8\u88C1",a="\u5F13\u85CF",n="\u5F48\u5F13",i="\u88C1\u65B7",o={name:"\u963F\u8C9D\u591A",title:"\u767D\u580A\u4E4B\u5B50"},s={name:"\u827E\u723E\u6D77\u68EE",title:"\u8AA8\u97DC\u8A64\u8A00"},l={name:"\u5B89\u67CF",title:"\u98DB\u884C\u51A0\u8ECD"},r={name:"\u767D\u672F",title:"\u9075\u751F\u5408\u548C"},m={name:"\u82AD\u82AD\u62C9",title:"\u9583\u8000\u5076\u50CF"},c={name:"\u5317\u6597",title:"\u7121\u5195\u7684\u9F8D\u738B"},h={name:"\u73ED\u5C3C\u7279",title:"\u547D\u904B\u8A66\u91D1\u77F3"},u={name:"\u574E\u8482\u7D72",title:"\u6D6E\u91D1\u7684\u8A93\u9858"},d={name:"\u590F\u6D1B\u8482",title:"\u6717\u93E1\u7D22\u771F"},g={name:"\u590F\u6C83\u857E",title:"\u660E\u5F8B\u6C7A\u7F70"},y={name:"\u91CD\u96F2",title:"\u96EA\u878D\u6709\u8E2A"},f={name:"\u67EF\u840A",title:"\u8403\u5FF5\u521D\u8617"},k={name:"\u8CFD\u8AFE",title:"\u7DD8\u79D8\u7684\u88C1\u9063"},w={name:"\u8FEA\u5E0C\u96C5",title:"\u71BE\u9B03\u4E4B\u7345"},b={name:"\u8FEA\u76E7\u514B",title:"\u6668\u66E6\u7684\u6697\u9762"},p={name:"\u8FEA\u5967\u5A1C",title:"\u8C93\u5C3E\u7279\u8ABF"},v={name:"\u591A\u8389",title:"\u5922\u5712\u85CF\u91D1"},q={name:"\u512A\u83C8",title:"\u6D6A\u6CAB\u7684\u65CB\u821E"},x={name:"\u743A\u9732\u73CA",title:"\u6A5F\u9010\u5C01\u79D8"},z={name:"\u83F2\u8B1D\u723E",title:"\u65AD\u7F6A\u7687\u5973\uFF01\uFF01"},_={name:"\u83F2\u7C73\u5C3C",title:"\u6F5B\u61F7\u9050\u5922"},j={name:"\u8299\u5BE7\u5A1C",title:"\u4E0D\u4F11\u7368\u821E"},T={name:"\u7518\u96E8",title:"\u5FAA\u5FAA\u5B88\u6708"},W={name:"\u4E94\u90CE",title:"\u620E\u72AC\u9535\u9535"},A={name:"\u7434",title:"\u84B2\u516C\u82F1\u9A0E\u58EB"},B={name:"\u51F1\u4E9E",title:"\u5BD2\u98A8\u528D\u58EB"},C={name:"\u523B\u6674",title:"\u9706\u9713\u5FEB\u96E8"},D={name:"\u53EF\u8389",title:"\u9003\u8DD1\u7684\u592A\u967D"},E={name:"\u7EEE\u826F\u826F",title:"\u6A90\u5B87\u732B\u6E38"},F={name:"\u5361\u7EF4",title:"\u5929\u7A79\u4E4B\u93E1"},G={name:"\u840A\u4F9D\u62C9",title:"\u7DBA\u601D\u665A\u661F"},H={name:"\u9E97\u838E",title:"\u8537\u8587\u9B54\u5973"},I={name:"\u7433\u59AE\u7279",title:"\u9E97\u5F71\u9A0E\u884C"},J={name:"\u6797\u5C3C",title:"\u60D1\u5149\u5E7B\u6232"},K={name:"\u7C73\u5361",title:"\u6674\u971C\u7684\u6A19\u7E6A"},L={name:"\u83AB\u5A1C",title:"\u661F\u5929\u6C34\u955C"},M={name:"\u7D0D\u897F\u59B2",title:"\u767D\u8349\u6DE8\u83EF"},N={name:"\u5A1C\u7DAD\u5A6D",title:"\u660E\u82B1\u8513\u8235"},O={name:"\u90A3\u7DAD\u840A\u7279",title:"\u8AED\u544A\u7684\u6F6E\u97F3"},P={name:"\u59AE\u9732",title:"\u84EE\u5149\u843D\u821E\u7B75"},Q={name:"\u51DD\u5149",title:"\u63A9\u6708\u5929\u6B0A"},R={name:"\u8AFE\u827E\u723E",title:"\u672A\u53D7\u52F3\u4E4B\u82B1"},S={name:"\u4E03\u4E03",title:"\u51CD\u51CD\u56DE\u9B42\u591C"},U={name:"\u96F7\u6FA4",title:"\u72FC\u5C11\u5E74"},V={name:"\u7F85\u838E\u8389\u9E97",title:"\u68D8\u51A0\u6069\u5178"},X={name:"\u65E9\u67DA",title:"\u5FCD\u91CC\u4E4B\u8C89"},Y={name:"\u7533\u9E64",title:"\u5B64\u8FB0\u7162\u61F7"},Z={name:"\u7802\u7CD6",title:"\u7121\u5BB3\u751C\u5EA6"},$={name:"\u9054\u9054\u5229\u4E9E",title:"\u300C\u516C\u5B50\u300D"},ee={name:"\u6258\u99AC",title:"\u6E21\u4F86\u4ECB\u8005"},te={name:"\u6E21\u4F86\u4ECB\u8005",title:"\u6DFA\u851A\u8F15\u884C"},ae={name:"\u6EAB\u8FEA",title:"\u98A8\u8272\u8A69\u4EBA"},ne={name:"\u6D41\u6D6A\u8005",title:"\u4E45\u4E16\u6D6E\u503E"},ie={name:"\u840A\u6B50\u65AF\u5229",title:"\u5BC2\u7F6A\u7684\u5BC6\u4F7F"},oe={name:"\u9999\u83F1",title:"\u842C\u6C11\u767E\u5473"},se={name:"\u9B48",title:"\u8B77\u6CD5\u591C\u53C9"},le={name:"\u884C\u79CB",title:"\u5C11\u5E74\u6625\u886B\u8584"},re={name:"\u8F9B\u7131",title:"\u71E5\u71B1\u65CB\u5F8B"},me={name:"\u7159\u7DCB",title:"\u667A\u660E\u7121\u90AA"},ce={name:"\u7476\u7476",title:"\u4ED9\u854A\u73B2\u74CF"},he={name:"\u591C\u862D",title:"\u862D\u751F\u5E7D\u8C37"},ue={name:"\u5BB5\u5BAB",title:"\u7409\u7130\u83EF\u821E"},de={name:"\u937E\u96E2",title:"\u5875\u4E16\u9592\u904A"},ge={"a-thousand-floating-dreams":"\u5343\u591C\u6D6E\u5922",akuoumaru:e,"alley-hunter":"\u6697\u5DF7\u7375\u624B","amos-bow":"\u963F\u83AB\u65AF\u4E4B\u5F13","aqua-simulacra":"\u82E5\u6C34","aquila-favonia":"\u98A8\u9DF9\u528D","beacon-of-the-reed-sea":"\u8466\u6D77\u4FE1\u6A19","black-tassel":"\u9ED1\u7E93\u69CD","bloodtained-greatsword":"\u6C90\u6D74\u9F8D\u8840\u7684\u528D","calamity-queller":"\u606F\u707D","cashflow-supervision":"\u91D1\u6D41\u76E3\u7763","cool-steel":"\u51B7\u5203","debate-club":"\u4EE5\u7406\u670D\u4EBA","dragon_s-bane":"\u5323\u88E1\u6EC5\u8FB0","elegy-for-the-end":"\u7D42\u672B\u55DF\u5606\u4E4B\u8A69","emerald-orb":"\u7FE1\u7389\u6CD5\u7403","engulfing-lightning":"\u8599\u8349\u4E4B\u7A3B\u5149","everlasting-moonglow":"\u4E0D\u6EC5\u6708\u83EF","eye-of-perception":"\u662D\u5FC3","favonius-codex":"\u897F\u98A8\u79D8\u5178","favonius-greatsword":"\u897F\u98A8\u5927\u528D","favonius-lance":"\u897F\u98A8\u9577\u69CD","favonius-sword":"\u897F\u98A8\u528D","favonius-warbow":"\u897F\u98A8\u7375\u5F13","ferrous-shadow":"\u9435\u5F71\u95CA\u528D","freedom-sworn":"\u84BC\u53E4\u81EA\u7531\u4E4B\u8A93","haran-geppaku-futsu":"\u6CE2\u4E71\u6708\u767D\u7ECF\u6D25","harbinger-of-dawn":"\u9ECE\u660E\u795E\u528D","hunter_s-path":"\u7375\u4EBA\u4E4B\u5F91","jadefall-splendor":"\u78A7\u843D\u4E4B\u74CF","kagura_s-verity":"\u795E\u6A02\u4E4B\u771F\u610F","key-of-khaj-nisut":"\u8056\u986F\u4E4B\u9470","lion_s-roar":"\u5323\u88E1\u9F8D\u541F","light-of-foliar-incision":"\u88C1\u8449\u8403\u5149","lithic-blade":"\u5343\u5DD6\u53E4\u528D","lithic-spear":"\u5343\u5DD6\u9577\u69CD","lost-prayer-to-the-sacred-winds":"\u56DB\u98A8\u539F\u5178","magic-guide":"\u9B54\u5C0E\u7DD2\u8AD6","makhaira-aquamarine":"\u746A\u6D77\u83C8\u7684\u6C34\u8272","memory-of-dust":"\u5875\u4E16\u4E4B\u9396","mistsplitter-reforged":"\u9727\u5207\u4E4B\u8FF4\u5149","mitternachts-waltz":"\u5E7D\u591C\u83EF\u723E\u6ECB","mouun_s-moon":"\u66DA\u96F2\u4E4B\u6708","polar-star":"\u51AC\u6975\u767D\u661F","portable-power-saw":"\u4FBF\u651C\u52D5\u529B\u92F8","primordial-jade-cutter":"\u78D0\u5CA9\u7D50\u7DA0","primordial-jade-winged-spear":"\u548C\u749E\u9CF6","prospector-drill":"\u63A2\u52D8\u947D\u5B54\u6A5F",rainslasher:t,"range-gauge":"\u6E2C\u8DDD\u898F","raven-bow":"\u9D09\u7FBD\u5F13","redhorn-stonethresher":"\u8D64\u89D2\u77F3\u6F70\u6775",rust:a,"sacrificial-bow":"\u796D\u79AE\u5F13","sacrificial-fragments":"\u796D\u79AE\u6B98\u7AE0","sacrificial-greatsword":"\u796D\u79AE\u5927\u528D","sacrificial-sword":"\u796D\u79AE\u528D","sharpshooter_s-oath":"\u795E\u5C04\u624B\u4E4B\u8A93","skyrider-sword":"\u98DB\u5929\u79A6\u528D","skyward-atlas":"\u5929\u7A7A\u4E4B\u5377","skyward-blade":"\u5929\u7A7A\u4E4B\u5203","skyward-harp":"\u5929\u7A7A\u4E4B\u7FFC","skyward-pride":"\u5929\u7A7A\u4E4B\u50B2","skyward-spine":"\u5929\u7A7A\u4E4B\u810A",slingshot:n,"song-of-broken-pines":"\u677E\u7C5F\u97FF\u8D77\u4E4B\u6642","splendor-of-tranquil-waters":"\u975C\u6C34\u6D41\u6E67\u4E4B\u8F1D","staff-of-homa":"\u8B77\u6469\u4E4B\u6756","staff-of-the-scarlet-sands":"\u8D64\u6C99\u4E4B\u6756","summit-shaper":"\u65AB\u5CF0\u4E4B\u5203","the-alley-flash":"\u6697\u5DF7\u9583\u5149","the-bell":"\u9418\u528D","the-dockhands-assistant":"\u8239\u5862\u9577\u528D","the-first-great-magic":"\u6700\u521D\u7684\u5927\u9B54\u8853","the-flute":"\u7B1B\u528D","the-stringless":"\u7D55\u5F26","the-unforged":"\u7121\u5DE5\u4E4B\u528D","the-widsith":"\u6D41\u6D6A\u6A02\u7AE0","thrilling-tales-of-dragon-slayers":"\u8A0E\u9F8D\u82F1\u5091\u8B5A","thundering-pulse":"\u98DB\u96F7\u4E4B\u5F26\u632F","tome-of-the-eternal-flow":"\u4E45\u9060\u9F8D\u5929\u767E\u79D1\u5168\u66F8","tulaytullah_s-remembrance":"\u5716\u840A\u62C9\u62C9\u7684\u56DE\u61B6",verdict:i,"vortex-vanquisher":"\u8CAB\u8679\u4E4B\u69CA","wavebreaker_s-fin":"\u65B7\u6D6A\u9577\u9C2D","wine-and-song":"\u6697\u5DF7\u7684\u9152\u8207\u8A69","wandering-evenstar":"\u6D41\u6D6A\u7684\u665A\u661F","wolf_s-gravestone":"\u72FC\u7684\u672B\u8DEF","xiphos-moonlight":"\u897F\u798F\u65AF\u7684\u6708\u5149",albedo:o,alhaitham:s,amber:l,"arataki-itto":{name:"\u8352\u7027\u4E00\u6597",title:"\u82B1\u5742\u8C6A\u5FEB"},baizhu:r,barbara:m,beidou:c,bennett:h,candace:u,charlotte:d,chevreuse:g,chongyun:y,collei:f,cyno:k,dehya:w,diluc:b,diona:p,dori:v,eula:q,faruzan:x,fischl:z,freminet:_,furina:j,ganyu:T,gorou:W,"hu-tao":{name:"\u80E1\u6843",title:"\u96EA\u973D\u6885\u9999"},jean:A,"kaedehara-kazuha":{name:"\u6953\u539F\u842C\u8449",title:"\u7D05\u8449\u9010\u8352\u6CE2"},kaeya:B,"kamisato-ayaka":{name:"\u795E\u91CC\u7DBE\u83EF",title:"\u767D\u9DFA\u971C\u83EF"},"kamisato-ayato":{name:"\u795E\u91CC\u7EEB\u4EBA",title:"\u78D0\u796D\u8449\u5B88"},keqing:C,klee:D,kirara:E,kaveh:F,"kujou-sara":{name:"\u4E5D\u689D\u88DF\u7F85",title:"\u9ED1\u7FBD\u9CF4\u93D1"},"kuki-shinobu":{name:"\u4E45\u5C90\u5FCD",title:"\u7169\u60F1\u5208\u9664"},layla:G,lisa:H,lynette:I,lyney:J,mika:K,mona:L,nahida:M,navia:N,neuvillette:O,nilou:P,ningguang:Q,noelle:R,qiqi:S,"raiden-shogun":{name:"\u96F7\u96FB\u5C07\u8ECD",title:"\u4E00\u5FC3\u6DE8\u571F"},razor:U,rosaria:V,"sangonomiya-kokomi":{name:"\u73CA\u745A\u5BAB\u5FC3\u6D77",title:"\u771F\u73E0\u4E4B\u667A"},sayu:X,shenhe:Y,"shikanoin-heizou":{name:"\u9E7F\u91CE\u9662\u5E73\u85CF",title:"\u5FC3\u671D\u4E42\u5B89"},sucrose:Z,tartaglia:$,thoma:ee,tighnari:te,venti:ae,wanderer:ne,wriothesley:ie,xiangling:oe,xiao:se,xingqiu:le,xinyan:re,"yae-miko":{name:"\u516B\u91CD\u795E\u5B50",title:"\u6D6E\u4E16\u7B11\u767E\u59FF"},yanfei:me,yaoyao:ce,yelan:he,yoimiya:ue,"yun-jin":{name:"\u96F2\u5807",title:"\u7D05\u6BF9\u5B0B\u5A1F"},zhongli:de};export{e as akuoumaru,o as albedo,s as alhaitham,l as amber,r as baizhu,m as barbara,c as beidou,h as bennett,u as candace,d as charlotte,g as chevreuse,y as chongyun,f as collei,k as cyno,ge as default,w as dehya,b as diluc,p as diona,v as dori,q as eula,x as faruzan,z as fischl,_ as freminet,j as furina,T as ganyu,W as gorou,A as jean,B as kaeya,F as kaveh,C as keqing,E as kirara,D as klee,G as layla,H as lisa,I as lynette,J as lyney,K as mika,L as mona,M as nahida,N as navia,O as neuvillette,P as nilou,Q as ningguang,R as noelle,S as qiqi,t as rainslasher,U as razor,V as rosaria,a as rust,X as sayu,Y as shenhe,n as slingshot,Z as sucrose,$ as tartaglia,ee as thoma,te as tighnari,ae as venti,i as verdict,ne as wanderer,ie as wriothesley,oe as xiangling,se as xiao,le as xingqiu,re as xinyan,me as yanfei,ce as yaoyao,he as yelan,ue as yoimiya,de as zhongli};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-TW-f14f9f89.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-TW-f14f9f89.js
deleted file mode 100644
index 7a0a6205..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/chunks/zh-TW-f14f9f89.js
+++ /dev/null
@@ -1 +0,0 @@
-const e="\u539F\u795E\u7948\u9858\u6A21\u64EC\u5668",n="\u89D2\u8272",a="\u6B66\u5668",t="\u795E\u4E4B\u773C",r="\u98A8",o="\u51B0",s="\u8349",i="\u96F7",p="\u6C34",l="\u5CA9",c="\u706B",d="\u5F13",u="\u6CD5\u5668",m="\u96D9\u624B\u528D",h="\u55AE\u624B\u528D",y="\u9577\u67C4\u6B66\u5668",g="\u984D\u5916\u7372\u5F97",b="\u5DF2\u7372\u5F97",f="\u8ACB\u7A0D\u7B49",w="\u9023\u63A5\u5931\u6557\uFF01",P="\u78BA\u8A8D",v="\u53D6\u6D88",B="\u672C\u7DB2\u7AD9\u6240\u4F7F\u7528\u7684\u6240\u6709\u8CC7\u6E90\u5747\u70BA\u7C73\u54C8\u904A\u6240\u6709\u3002",k="\u9019\u662F\u4E00\u500B\u7C89\u7D72\u88FD\u4F5C\u7684\u6A21\u64EC\u5668\uFF0C\u76E1\u60C5\u4EAB\u53D7\u5427\uFF01",C="\u9EDE\u64CA\u7A7A\u767D\u5340\u57DF\u7E7C\u7E8C",S="\u5B89\u88DD\u5230\u684C\u9762\u7684\u6559\u5B78",N="\u5206\u4EAB",x="\u622A\u5716",A="\u6B63\u5728\u622A\u5716",U="\u9996\u6B21\u5206\u4EAB : {qty}",I="\u7248\u672C",D="\u6350\u8D08",F={beginner:" \u521D\u884C\u8005\u63A8\u85A6\u7948\u9858",wanderlust:" \u5954\u884C\u4E16\u9593","epitome-invocation":"\u795E\u9444\u8CE6\u5F62","adrift-in-the-harbor":"\u6D6E\u751F\u5B70\u4F86","auric-blaze":"\u70C8\u967D\u720D\u91D1","azure-excursion":"\u84BC\u6D41\u8E0F\u82B1","ballad-in-goblets":"\u676F\u88DD\u4E4B\u8A69","born-of-ocean-swell":"\u6D6A\u6E67\u4E4B\u77AC","caution-in-confidence":"\u6555\u8AA1\u6A1E\u8B00","chanson-of-many-waters":"\u773E\u6C34\u7684\u980C\u8A69","conjuring-chiaroscuro":"\u5149\u8207\u5F71\u7684\u6232\u8853","dance-of-lantern":"\u9B5A\u9F8D\u71C8\u665D","decree-of-the-deeps":"\u6DF5\u6D77\u754C\u4EE4","discerner-of-enigmas":"\u7D20\u9713\u4F23\u5929","drifting-luminescence":"\u6D6E\u5CB3\u8679\u73E0","everbloom-violet":"\u83EF\u7D2B\u6AFB\u7DCB","farewell-of-snezhnaya":"\u66AB\u5225\u51AC\u90FD","from-ashes-reborn":"\u9918\u706B\u8B8A\u76F8","gentry-of-hermitage":"\u9675\u85EA\u5E02\u671D","immaculate-pulse":"\u5FC3\u73E0\u5FAA\u7405","in-the-name-of-the-rosula":"\u523A\u73AB\u7684\u9298\u8A93","invitation-to-mundane-life":"\u7159\u706B\u4E4B\u9080","leaves-in-the-wind":"\u8449\u843D\u98A8\u96A8","moment-of-bloom":"\u8D64\u5718\u958B\u6642","oni_s-royale":"\u9B3C\u9580\u6597\u5BB4","reign-of-serenity":"\u5F71\u5BC2\u5929\u4E0B\u4EBA","secretum-secretorum":"\u6DF1\u79D8\u4E4B\u606F","sparkling-steps":"\u9583\u7130\u7684\u99D0\u8DB3","tapestry-of-golden-flames":"\u7130\u8272\u5929\u6CB3","tempestuous-destiny":"\u52AB\u4E2D\u6CDB\u6FEB","the-heron_s-court":"\u767D\u9DFA\u4E4B\u5EAD","the-moongrass-enlightenment":"\u6708\u8349\u7684\u8CDC\u6167","the-transcendent-one-returns":"\u51FA\u5875\u5165\u4E16","twilight-arbiter":"\u9742\u88C1\u51A5\u662D","twirling-lotus":"\u7FE9\u821E\u6B48\u84EE","viridescent-vigil":"\u5DE1\u79A6\u7FF3\u8588"},R={bannerConfig:"{banner} Configuration",baseRate:"{rarity}-Star Base Rate:",maxPity:"{rarity}-Star Max Pity:",hardPity:"Boost {rarity}-Star rate starts from pity:",currentPity:"{rarity}-Star Current Pity",winRate:"Chance to get Featured Item:",charRate:"Chance to get Character instead of Weapon",nonRateup:"(When losing 4-Star Item)",selectedRate:"Selected Weapon Rate:",guaranteedSystem:"Guaranteed System",backToDefault:"Back to Default",resetPrompt:'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',default:"Default",never:"Never",always:"Always"},T={title:"Customize Banner",deletePrompt:"Are You Sure to delete this banner ?",ownerDeleteNote:"If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",userDeleteNote:"The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",retry:"Retry",findBanner:"Looking for a Banner..",networkError:"Network Error, Please check your Connection!",bannerNotFound:"Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",invalidBanner:"Invalid Banner ID",identifying:"Identifying Banner",loadOwnedBanner:`You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,loadReady:'"{banner}" is ready to Wish',uploading:"Uploading {item}",uploadFailed:"Image Upload Failed, please try again later!",close:"Close",almostDone:"Almost Done",shareText:"Come and Try Your Luck on my {character} Banner Simulator",setPosition:"Set Position",next:"Next",move:"Move",changeSplashArt:"Change Splash Art",adjustSplashArt:"Adjust Splash Art",dropHere:"Drop Here!",preview:"Banner Preview",generateImage:"Generate Image",notAnImage:"Not an Image",imageTooLarge:"Image is too Large, max size: {maxSize}",faceIcon:"Face Icon",addBanner:"Add Banner",delete:"Delete",deleteFailed:"Failed to Remove",bannerRemoved:"Banner Removed",edit:"Edit",editInfo:"Edit Info",editBanner:"Edit Banner Information",bannerName:"Banner Name",charName:"Character Name",charTitle:"Character Title",watermark:"Watermark",completeAllField:"Please Complete All Required Field!",finishAndWish:"Finish and Wish",publish:"Publish Banner",updateAndShare:"Update & Share",rateupChar:"Rate Up Characters",yourBanners:"Your Banners",createBanner:"Create a Custom Banner",limitation:"You are not a member, please delete some banners to activate the editor",memberToUnlock:"Become a Member to Add More Banner",incomplete:"Incomplete",inappropriate:"Inappropriate Content!"},W={cloudSync:"Cloud Sync",localSync:"Local Backup/Restore",import:"Import Data",export:"Export Data",importAction:"{fileInfo} will be added to the App, please choose what action you want to perform!",mergeAction:"Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",replaceAction:"Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",dropFiles:"Drop Your File Here",autoExport:"Auto Export",destination:"Destination",lastExport:"Last Export",desNotFound:"Cannot find backup file location, please try to Export again"},E={rollButton:"\u7948\u9858{count}\u6B21",stellaFortuna:"\u5C0D\u61C9\u89D2\u8272\u7684\u547D\u661F",loadFailed:"Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",loadMeteor:"Load Animation",skipMeteor:"Skip Animation",loadMeteorMsg:"Loading <span>{star} Star Meteor Animation </span>",meteorNotLoaded:"Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",preloadFilesMsg:"* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",banner:{wishTitle:"\u7948\u9858",text:"\u5361\u6C60",allBanner:"\u5168\u90E8\u5361\u6C60",previous:"\u5F80\u671F\u5361\u6C60",findBanner:"\u641C\u5C0B\u5361\u6C60",group:"\u5206\u7EC4",beginner:" \u521D\u884C\u8005\u63A8\u85A6\u7948\u9858","character-event":"\u89D2\u8272\u6D3B\u52D5\u7948\u9858","weapon-event":"\u6B66\u5668\u6D3B\u52D5\u7948\u9858",standard:"\u5E38\u99D0\u7948\u9858",wishDescription:"\u6BCF\u5341\u6B21\u7948\u9858\u5FC5\u51FA\u56DB\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002",novice:"\u65B0\u624B\u7948\u9858",up:"UP!",beginnerSet:"\u5341\u90238\u6298\uFF0C\u9996\u6B21\u5FC5\u5F97{character}",beginnerNote:"\u300C\u6211\u6703\u6CE8\u610F\u5973\u50D5\u7684\u79AE\u5100\u3002\u300D",beginnerChance:"\u5269\u9918\u6B21\u6578\uFF1A{chances}",standardNote:"\u5E38\u99D0\u7948\u9858\uFF0C\u6C38\u4E45\u6027\u7948\u9858\u6D3B\u52D5\u3002",allWeaponTypes:"\u5168\u90E8\u985E\u578B",etc:"\u7B49",probIncreased:"\u7372\u53D6\u6A5F\u7387\u63D0\u5347\uFF01",eventNote:"\u6D3B\u52D5\u9650\u5B9A\u4E94\u661F\u89D2\u8272\u50C5\u5728UP\u671F\u9593\uFF0C\u900F\u904E\u5C0D\u61C9\u7948\u9858\u7372\u5F97\u3002",viewDetails:"\u5177\u9AD4\u5185\u5BB9\u67E5\u770B\u3010\u8A73\u60C5\u3011"},epitomizedPath:{text:"\u795E\u9444\u5B9A\u8ECC",fatePoint:"\u547D\u5B9A\u503C",cancelPrompt:"\u662F\u5426\u78BA\u8A8D\u53D6\u6D88\u76EE\u524D\u7684\u5B9A\u8ECC\uFF1F",cancelDesc:"\u53D6\u6D88\u5F8C\uFF0C\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C\u5C07\u6703\u6E05\u7A7A\u3002",selectWeapon:"\u9078\u64C7\u5B9A\u8ECC\u6B66\u5668",chartCourseOf:"\u70BA{target}\u5B9A\u8ECC",cancelCourse:"\u53D6\u6D88\u5B9A\u8ECC",chartCourse:"\u5B9A\u8ECC",courseSetFor:"\u76EE\u524D\u5B9A\u8ECC: {selectedCourse}",description:["\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u662F\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u6240\u7279\u6709\u7684\u7948\u9858\u6A5F\u5236\uFF1A","\u5C0D\u671F\u671B\u76845\u661FUP\u6B66\u5668\u9032\u884C\u5B9A\u8ECC\u5F8C\uFF0C\u7576\u900F\u904E\u7948\u9858\u5728\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u4E2D<span>\u53D6\u5F97\u975E\u5B9A\u8ECC\u76845\u661F\u6B66\u5668\u6642\uFF0C\u5C07\u7372\u5F971\u9EDE\u547D\u5B9A\u503C</span> \u3002","\u547D\u5B9A\u503C\u5145\u6EFF\u5F8C\uFF0C\u5728\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u4E2D\u7948\u9858\u7372\u5F97\u7684\u4E0B\u4E00\u4EF65\u661F\u6B66\u5668\u5C07\u6703\u662F\u900F\u904E\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u9078\u5B9A\u7684\u6B66\u5668\u3002","\u5728\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u4E2D\u7948\u9858<span>\u53D6\u5F97\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u7684\u6B66\u5668\u6642\uFF0C\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C\u5C07\u6703\u6E05\u9664</span>\u3002","\u7576\u672A\u901A\u904E\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u7948\u9858\u5C07\u4E0D\u6703\u7D2F\u7A4D\u547D\u5B9A\u503C\u3002","\u6B66\u5668\u7684\u5B9A\u8ECC\u72C0\u614B\u53EF\u4EE5\u66F4\u63DB\uFF0C\u4E5F\u53EF\u4EE5\u53D6\u6D88\u5B9A\u8ECC\u3002 <span>\u66F4\u63DB\u6216\u53D6\u6D88\u6642\uFF0C\u6703\u6E05\u9664\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C</span>\u3002","<span>\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u7D50\u675F\u6642\uFF0C\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C\u4E5F\u5C07\u6E05\u9664</span>\u3002"]},result:{skip:"\u8DF3\u904E",meteorFailed:"\u7948\u9858\u52D5\u756B\u8F09\u5165\u5931\u6557",new:"\u65B0",convertion:"\u8F49\u5316",title:"{item} \u7948\u9858\u7ED3\u679C"}},K={heading:"\u89D2\u8272\u88DD\u626E",default:"Default",setOutfit:"\u8A2D\u7F6E\u88DD\u626E",owned:"\u5DF2\u64C1\u6709",purchasePrompt:"\u60A8\u9084\u6C92\u6709\u6B64\u88DD\u626E\u5C0D\u61C9\u7684\u89D2\u8272\uFF0C\u60A8\u78BA\u5B9A\u8981\u8CFC\u8CB7\u6B64\u88DD\u626E\u55CE\uFF1F",promptInfo:"\u7372\u5F97\u76F8\u61C9\u7684\u89D2\u8272\u5F8C\uFF0C\u60A8\u4ECD\u7136\u53EF\u4EE5\u4F7F\u7528\u6B64\u88DD\u626E",obtained:"New Outfit Obtained",unlocked:"{character}: Outfit Unlocked",item:{"5-star-outrider":{name:"\u300C\u6EFF\u5206\u7684\u5075\u5BDF\u9A0E\u58EB\u300D"},"favonian-fevotion":{name:"\u98A8\u4E4B\u8654\u8B77"},"flowing-fate":{name:"\u661F\u547D\u6D41\u8F49"},"executor_s-thorns":{name:"\u8655\u5211\u68D8\u523A"},"sea-breeze-dandelion":{name:"\u6D77\u98A8\u4E4B\u5922",description:"\u7434\u7684\u590F\u65E5\u88DD\u675F\u3002 \u6E05\u6DBC\u4E0D\u5931\u512A\u96C5\uFF0C\u662F\u6D77\u6FF1\u4E4B\u904A\u7684\u7D55\u4F73\u642D\u914D\u3002"},"summertime-sparkle":{name:"\u9583\u8000\u5354\u594F",description:"\u82AD\u82AD\u62C9\u7684\u6D77\u7058\u88DD\u626E\u3002 \u6D0B\u6EA2\u8457\u590F\u65E5\u6D3B\u529B\u7684\u4FCF\u9E97\u77ED\u88D9\uFF0C\u4F3C\u4E4E\u6563\u767C\u8457\u6D77\u6D0B\u7684\u6E05\u723D\u6C23\u606F\u3002"},"opulent-splendor":{name:"\u9713\u88FE\u8E41\u8E9A",description:"\u523B\u6674\u7684\u79AE\u670D\u88DD\u626E\u3002 \u65BC\u6D77\u71C8\u7BC0\u4E4B\u826F\u8FB0\u7F8E\u666F\u4E2D\uFF0C\u5F80\u65E5\u8F9B\u52DE\u6FC3\u58A8\u6240\u7E6A\u7684\u7DDA\u689D\uFF0C\u4EA4\u7E54\u6210\u4ECA\u591C\u8F15\u76C8\u800C\u7470\u9E97\u7684\u5BB9\u59FF\u3002"},"orchid_s-evening-gown":{name:"\u7D17\u4E2D\u5E7D\u862D",description:"\u51DD\u5149\u7684\u79AE\u670D\u88DD\u626E\u3002 \u7D3A\u85CD\u9577\u88D9\u52FE\u52D2\u51FA\u9E97\u4EBA\u512A\u96C5\u7684\u66F2\u7DDA\uFF0C\u8173\u8E1D\u4E0A\u7684\u8776\u7FFC\u53C8\u70BA\u5979\u589E\u6DFB\u4E86\u5E7E\u5206\u8F15\u76C8\u3002"},"ein-immernachtstraum":{name:"\u6975\u591C\u7D42\u5922",description:"\u7687\u5973\u83F2\u8B1D\u723E\u7684\u796D\u79AE\u670D\u88DD\u3002 \u9858\u9AD8\u8CB4\u7684\u4EBA\u6C38\u9060\u8446\u6709\u52C7\u6C23\u3001\u8AA0\u646F\u8207\u5584\u5FC3\uFF0C\u5982\u6B64\uFF0C\u90AA\u60E1\u5FC5\u7121\u6CD5\u632B\u6557\u5979\u3002"},"red-dead-of-night":{name:"\u6BB7\u7D05\u7D42\u591C",description:"\u8FEA\u76E7\u514B\u96B1\u5BC6\u884C\u52D5\u6642\u6240\u7A7F\u7684\u8863\u88DD\u4E4B\u4E00\uFF0C\u5982\u9670\u5F71\u4E4B\u4E2D\u7FFB\u9A30\u7684\u706B\u7130\u3002 \u6575\u4EBA\u8996\u91CE\u76E1\u982D\u6240\u7559\u4E0B\u7684\u6BB7\u7D05\u6B98\u75D5\uFF0C\u5373\u662F\u4ED6\u5011\u9918\u751F\u63EE\u4E4B\u4E0D\u53BB\u7684\u5922\u9B58\u3002"},"a-sobriquet-under-shade":{name:"\u8449\u96B1\u82B3\u540D",description:"\u9E97\u838E\u91CD\u904A\u9808\u5F4C\u6642\u8ACB\u4EBA\u8A02\u505A\u7684\u670D\u98FE\u3002 \u88D9\u88DD\u5E79\u7DF4\u800C\u4E0D\u5931\u512A\u96C5\uFF0C\u8207\u5979\u5B78\u751F\u6642\u4EE3\u7684\u88FD\u670D\u6709\u5E7E\u5206\u76F8\u4F3C\u4E4B\u8655\u3002"},"springbloom-missive":{name:"\u82B1\u6642\u4F86\u4FE1",description:"\u795E\u88E1\u7DBE\u83EF\u7684\u51FA\u904A\u88DD\u626E\u3002 \u6BD4\u7167\u8F15\u5C0F\u8AAA\u63D2\u756B\u4E2D\u7684\u6953\u4E39\u5973\u6027\u88DD\u675F\u800C\u88FD\u4F5C\u7684\u6D0B\u88DD\uFF0C\u4F3C\u4E4E\u80FD\u85C9\u5176\u4E00\u7ABA\u6953\u4E39\u6DD1\u5973\u7684\u751F\u6D3B\u98A8\u8C8C\u3002"},"blossoming-starlight":{name:"\u742A\u82B1\u661F\u71ED",description:"\u53EF\u8389\u51FA\u6F14\u95DC\u9375\u5287\u76EE\u6642\u6240\u7A7F\u7684\u7CBE\u7DFB\u670D\u88DD\uFF0C\u8272\u5F69\u660E\u9E97\uFF0C\u5982\u540C\u9EDE\u7DB4\u8457\u5976\u6CB9\u82B1\u6735\u548C\u660E\u7D05\u881F\u71ED\u7684\u86CB\u7CD5\uFF0C\u80FD\u5C07\u5FEB\u6A02\u8207\u7B11\u5BB9\u5E36\u5F80\u5192\u96AA\u6240\u81F3\u7684\u6BCF\u500B\u89D2\u843D\u3002"},"sailwind-shadow":{name:"\u5E06\u5F71\u904A\u98A8",description:"\u51F1\u4E9E\u5728\u821E\u53F0\u4E0A\u98FE\u6F14\u300C\u77ED\u5200\u5927\u76DC\u300D\u6642\u7684\u88DD\u626E\uFF0C\u4EE5\u300C\u5438\u775B\u300D\u70BA\u8A2D\u8A08\u539F\u5247\u7684\u83EF\u9E97\u670D\u88DD\u3002 \u4E0D\u904E\u8863\u670D\u7A7F\u8D77\u4F86\u4E26\u4E0D\u9EBB\u7169\uFF0C\u6700\u82B1\u6642\u9593\u6253\u7406\u7684\u662F\u98FE\u54C1\u8207\u77ED\u5200\u3002"}}},M={text:"\u8A73\u60C5",promotional:"UP\u7269\u54C1",itemlist:"\u7269\u54C1\u6E05\u55AE",increasedRate:"\u4EE5\u4E0B\u5185\u5BB9\u51FA\u73B0[\u6982\u7387UP!!!]",percentageDrop:"\u5360{rarity}\u661F\u51FA\u7387\u7684: {percentage}",wishDetails:"\u7948\u9858\u8A73\u60C5",probInfo:"{rarity}\u661F\u7269\u57FA\u790E\u51FA\u7387\uFF1A{singlePercentage} (\u542B\u4FDD\u5E95\u7D9C\u5408\u51FA\u7387\uFF1A{avgPercentage})",itemWishFor:"\u4EE5\u4E0B\u70BA\u7948\u79B1\u7269\u54C1\u6E05\u55AE\uFF1A",itemType:"\u985E\u578B",itemName:"\u540D\u7A31",beginnerInfo:"\u7121\u6642\u9593\u4E0A\u9650 (\u62BD\u53D620\u6B21\u5F8C\u95DC\u9589)",limited:"\u9650\u6642\u6D3B\u52D5",permanent:"\u6C38\u4E45",alert:"\u203B \u672C\u7948\u9858\u5C6C\u65BC\u300C{wishName}\u300D\uFF0C\u5176\u7948\u9858\u6B21\u6578\u4FDD\u5E95\u6703\u4E00\u76F4\u7D2F\u8A08\u5728\u300C{wishName}\u300D\u4E2D\uFF0C\u8207\u5176\u4ED6\u7948\u9858\u7684\u7948\u9858\u6B21\u6578\u4FDD\u5E95\u76F8\u4E92\u7368\u7ACB\u8A08\u7B97\uFF0C\u4E92\u4E0D\u5F71\u97FF\u3002",beginner:["\u521D\u884C\u8005\u63A8\u85A6\u7948\u9858\u70BA<span>\u6C38\u4E45</span>\u6027\u7948\u9858\u6D3B\u52D5\uFF0C\u662F\u9762\u5411\u65B0\u52A0\u5165\u63D0\u74E6\u7279\u5927\u9678\u7684\u65C5\u884C\u8005\u7684\u63A8\u85A6\u7948\u9858\u3002 \u5728\u672C\u7948\u9858\u5167\uFF0C\u5341\u9023\u6240\u6D88\u8017\u7684\u76F8\u9047\u4E4B\u7DE3\u6578\u91CF\u53EF\u4EAB8\u6298\u512A\u60E0\uFF0C\u4E14\u9996\u6B21\u5341\u9023\u5FC5\u6703\u7372\u53D6\u201C{character}\u201D\uFF0C\u7B2C\u4E8C\u6B21\u5341\u9023\u5FC5\u6703\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7684\u89D2\u8272\uFF01 \u672C\u7948\u9858\u5B58\u5728\u7948\u9858\u6B21\u6578\u4E0A\u9650\uFF0C\u6700\u9AD8\u70BA<span>20</span>\u6B21\uFF0C\u62BD\u53D620\u6B21\u5F8C<span>\u672C\u6D3B\u52D5\u7948\u9858\u4ECB\u9762\u5C07\u95DC\u9589</span>\u3002","\u203B\u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002","\u3013\u7948\u9858\u898F\u5247\u3013","5\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span> 0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u9858\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u7269\u54C1\u3002 <br> 4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA <span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>13.000%</span>\u3002 \u6700\u591A<span>10</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA<span>99.400%</span>\uFF0C\u53D6\u5F975\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA< span>0.600%</span>\u3002"],standard:["\u300C{bannerName}\u300D\u5E38\u99D0\u7948\u9858\u70BA\u6C38\u4E45\u6027\u7948\u9858\u6D3B\u52D5\uFF0C\u73A9\u5BB6\u53EF\u62BD\u53D6\u975E\u9650\u5B9A\u89D2\u8272\u8207\u6B66\u5668\u3002 <br/>\u5728\u672C\u7948\u9858\u5167\uFF0C\u6BCF10\u6B21\u7948\u9858<span>\u5FC5\u6703</span>\u7372\u5F97\u81F3\u5C111\u500B4\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002","\u203B\u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002","\u3013\u7948\u9858\u898F\u5247\u3013","5\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span> 0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u9858\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u7269\u54C1\u3002 <br> 4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA <span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>13.000%</span>\u3002 \u6700\u591A<span>10</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA<span>99.400%</span>\uFF0C\u53D6\u5F975\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA< span>0.600%</span>\u3002"],events:["\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u5DF2\u958B\u555F\u3002 \u6D3B\u52D5\u671F\u9593\u5167\uFF0C\u9650\u5B9A5\u661F\u89D2\u8272\u300C{featuredCharacter} \u300D\u4EE5\u53CA4\u661F\u89D2\u8272 {rateupCharacters} \u7684\u7948\u9858\u7372\u53D6\u6A5F\u7387\u5C07<span>\u5927\u5E45\u63D0\u5347</span>\uFF01 <span> \u203B\u4EE5\u4E0A\u89D2\u8272\u4E2D\uFF0C\u9650\u5B9A\u89D2\u8272\u4E0D\u6703\u9032\u5165\u300C\u5954\u884C\u4E16\u9593\u300D\u5E38\u99D0\u7948\u9858\u3002 </span>","\u203B \u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002","\u3013\u7948\u9858\u898F\u5247\u3013","\u30105\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C5\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.600%</span>\uFF0C\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.600%</span>\uFF0C\u6700\u591A <span>90</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u89D2\u8272\u3002 \u7576\u7948\u9858\u7372\u53D6\u52305\u661F\u89D2\u8272\u6642\uFF0C\u6709<span>50.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F5\u661FUP\u89D2\u8272\u300C{featuredCharacter}\u300D\u3002 \u82E5\u9019\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u89D2\u8272<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F5\u661FUP\u89D2\u8272\u3002","\u30104\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C\u8449\u843D\u98A8\u96A8\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span >\uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span>\uFF0C4\u661F\u7269\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>13.000%</span>\u3002 \u6700\u591A<span>10</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA<span>99.400%</span>\uFF0C\u53D6\u5F975\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA< span>0.600%</span>\u3002 \u7576\u7948\u9858\u7372\u53D6\u52304\u661F\u7269\u54C1\u6642\uFF0C\u6709<span>50.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F4\u661FUP\u89D2\u8272{rateupCharacters}\u4E2D\u7684\u4E00\u500B\u3002 \u5982\u679C\u672C\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F4\u661FUP\u89D2\u8272\u3002 \u7576\u7948\u9858\u7372\u53D6\u52304\u661FUP\u7269\u54C1\u6642\uFF0C\u6BCF\u500B\u672C\u671F4\u661FUP\u89D2\u8272\u7684\u7372\u53D6\u6A5F\u7387\u5747\u7B49\u3002"],weapons:["\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u73FE\u5DF2\u958B\u555F\u3002 \u6D3B\u52D5\u671F\u9593\u5167\uFF0C\u9650\u5B9A5\u661F\u6B66\u5668{featuredWeapon1}\u30015\u661F\u6B66\u5668{featuredWeapon2}\u4EE5\u53CA4\u661F\u6B66\u5668{rateupWeapons}\u7684\u7948\u9858\u7372\u53D6\u6A5F\u7387\u5C07<span>\u5927\u5E45\u63D0\u5347</span>\uFF01 <br/> <span> \u203B\u4EE5\u4E0A\u6B66\u5668\u4E2D\uFF0C\u9650\u5B9A\u6B66\u5668\u4E0D\u6703\u9032\u5165\u300C\u5954\u884C\u4E16\u9593\u300D\u5E38\u99D0\u7948\u9858\u3002 </span>","\u203B\u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002","\u3013\u7948\u9858\u898F\u5247\u3013","\u30105\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C5\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.700%</span>\uFF0C\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.850%</span>\uFF0C\u6700\u591A <span>80</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u89D2\u8272\u3002 \u7576\u7948\u9858\u7372\u53D6\u52305\u661F\u89D2\u8272\u6642\uFF0C\u6709<span>75.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F5\u661FUP\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u3002 \u5982\u679C\u672C\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F5\u661FUP\u6B66\u5668\u3002 <br/>\u5728\u672A\u901A\u904E\u547D\u5B9A\u503C\u9054\u5230\u6EFF\u503C\u7372\u53D6\u5B9A\u8ECC\u6B66\u5668\u7684\u60C5\u6CC1\u4E0B\uFF0C\u7576\u7948\u9858\u7372\u53D6\u52305\u661FUP\u7269\u54C1\u6642\uFF0C\u6BCF\u628A\u672C\u671F5\u661FUP\u6B66\u5668\u7684\u7372\u53D6\u6A5F\u7387\u5747\u7B49\u3002 <br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C\u53EF\u4F7F\u7528\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5C0D\u672C\u671F5\u661FUP\u6B66\u5668\u9032\u884C\u5B9A\u8ECC\uFF0C\u5B9A\u8ECC\u6B66\u5668\u7684\u9078\u64C7\u50C5\u5728\u672C\u671F\u300C{bannerName}\u300D \u6D3B\u52D5\u7948\u9858\u4E2D\u751F\u6548\u3002 <br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C\u4F7F\u7528\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5B9A\u8ECC\u6B66\u5668\u5F8C\uFF0C\u7576\u53D6\u5F97\u5230\u76845\u661F\u6B66\u5668\u70BA\u975E\u76EE\u524D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u7372\u5F971\u9EDE\u547D\u5B9A\u503C \uFF0C\u547D\u5B9A\u503C\u9054\u5230<span>\u6EFF\u503C</span>\u5F8C\uFF0C\u5728\u672C\u7948\u9858\u4E2D\u7372\u5F97\u7684\u4E0B\u4E00\u628A5\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u70BA\u7576\u524D\u5B9A\u8ECC\u6B66\u5668\u3002 \u7576\u53D6\u5F97\u76EE\u524D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u7121\u8AD6\u76EE\u524D\u547D\u5B9A\u503C\u662F\u5426\u9054\u5230\u6EFF\u503C\uFF0C\u90FD\u6703\u91CD\u8A2D\u70BA<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u7A4D\u3002 <br/>\u672A\u4F7F\u7528\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u5C07<span>\u4E0D\u6703</span>\u7D2F\u7A4D\u547D\u5B9A\u503C\u3002 <br/>\u5B9A\u8ECC\u6B66\u5668\u53EF\u9032\u884C\u66F4\u63DB\u6216\u53D6\u6D88\u3002 \u66F4\u63DB\u6216\u53D6\u6D88\u76EE\u524D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u547D\u5B9A\u503C\u5C07\u6703\u91CD\u8A2D\u70BA<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u7A4D\u3002 <br/>\u203B\u672C\u7948\u9858\u4E2D\u7684\u547D\u5B9A\u503C\u50C5\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\u751F\u6548\uFF0C\u7948\u9858\u7D50\u675F\u5F8C\u547D\u5B9A\u503C\u5C07\u6703\u91CD\u7F6E\u70BA<span>0</span>\uFF0C\u91CD\u65B0 \u7D2F\u8A08\u3002","\u30104\u661F\u7269\u54C1\u3011","\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>6.000%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>3.000%</span> \uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>3.000%</span>\uFF0C4\u661F\u7269\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>14.500%</span>\u3002 \u6700\u591A10\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA99.300%\uFF0C\u7372\u53D65\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA0.700%\u3002 <br/> \u7576\u7948\u9858\u7372\u53D6\u52304\u661F\u7269\u54C1\u6642\uFF0C\u6709<span>75.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F4\u661FUP\u6B66\u5668{rateupWeapons}\u4E2D\u7684\u4E00\u500B\u3002 \u5982\u679C\u672C\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F4\u661FUP\u6B66\u5668\u3002 \u7576\u7948\u9858\u7372\u53D6\u52304\u661FUP\u7269\u54C1\u6642\uFF0C\u6BCF\u628A\u672C\u671F4\u661FUP\u6B66\u5668\u7684\u7372\u53D6\u6A5F\u7387\u5747\u7B49\u3002"],convertion:{fiveStar:"\u7948\u9858\u7372\u5F975\u661F\u6B66\u5668\u6642\uFF0C\u6703\u540C\u6642\u7372\u5F9710\u500B{starglitter}\u4F5C\u70BA\u526F\u7522\u7269\uFF1B",fourStar:"\u7372\u5F974\u661F\u6B66\u5668\u6642\uFF0C\u6703\u540C\u6642\u7372\u5F972\u500B{starglitter}\u4F5C\u70BA\u526F\u7522\u7269\uFF1B",threeStar:"\u7372\u5F973\u661F\u6B66\u5668\u6642\uFF0C\u6703\u540C\u6642\u7372\u5F9715\u500B{stardust}\u4F5C\u70BA\u526F\u7522\u7269\u3002"},duplicate:{heading:"\u3013\u82E5\u7372\u5F97\u91CD\u8907\u89D2\u8272\u3013",text:"\u7121\u8AD6\u900F\u904E\u4F55\u7A2E\u65B9\u5F0F\uFF08\u5305\u542B\u4F46\u4E0D\u9650\u65BC\u7948\u9858\u3001\u5546\u57CE\u514C\u63DB\u3001\u7CFB\u7D71\u8D08\u9001\u7B49\uFF09\u7B2C2~7\u6B21\u7372\u5F97\u76F8\u540C{rarity}\u661F\u89D2\u8272\u6642\uFF0C\u6BCF\u6B21\u5C07\u8F49\u5316\u70BA1\u500B{stellaFortuna}\u548C10\u500B{starglitter} \uFF1B\u7B2C8\u6B21\u53CA\u4E4B\u5F8C\u7372\u5F97\uFF0C\u5C07\u50C5\u8F49\u63DB\u70BA25\u500B{starglitter}\u3002"}},O={title:"\u7948\u9858\u6B77\u53F2",text:"\u6B77\u53F2\u7D00\u9304",resetButton:"\u91CD\u7F6E",resetPromptTitle:"\u91CD\u7F6E\u7D00\u9304\uFF1F",resetPrompt:"\u5B83\u9084\u6703\u5F9E\u60A8\u7684\u5EAB\u5B58\u4E2D\u522A\u9664\u8207 {bannerName} \u5361\u6C60\u76F8\u95DC\u7684\u6240\u6709\u89D2\u8272\u548C\u6B66\u5668\u3002 <br /> \u4F60\u78BA\u5B9A\u8981\u91CD\u7F6E\u55CE\uFF1F",resetSuccess:"\u5DF2\u6210\u529F\u91CD\u7F6E\uFF01",keepPity:"Don't reset Pity and Guaranteed Status",selectWish:"\u7948\u9858\u985E\u578B\u9078\u64C7:",disclaimer:"\u6211\u5011\u5F9E\u4E0D\u5C07\u60A8\u7684\u8CC7\u6599\u4FDD\u5B58\u5728\u96F2\u7AEF\u5132\u5B58\u4E2D\u3002 \u6240\u6709\u8CC7\u6599\u90FD\u5132\u5B58\u5230 IndexedDB\uFF0C\u9019\u8868\u793A\u8CC7\u6599\u4FDD\u5B58\u5728\u60A8\u7684\u700F\u89BD\u5668\u5132\u5B58\u4E2D\u3002 \u9664\u975E\u60A8\u900F\u904E\u522A\u9664/\u91CD\u7F6E\u6309\u9215\u624B\u52D5\u522A\u9664\u5B83\u6216\u6E05\u9664\u700F\u89BD\u5668\u6578\u64DA\uFF0C\u5426\u5247\u5B83\u6C38\u9060\u4E0D\u6703\u522A\u9664\u3002",currentPity:"\u76EE\u524D\u5DF2\u588A:",totalPull:"\u7E3D\u5171\u62BD\u53D6:",totalSpend:"\u5DF2\u82B1\u8D39:",filterTxt:"\u7BE9\u9078",filter:"{rarity} \u661F",filterAll:"\u5168\u90E8",pity:"\u5DF2\u588A",timeReceived:"\u7948\u9858\u6642\u9593",waiting:"\u8ACB\u7A0D\u7B49",noData:"\u7121\u53EF\u7528\u6578\u64DA",untracked:"\u672A\u8FFD\u8E2A",item:"\u7269\u54C1",win:"\u5C0F\u4FDD\u5E95",lose:"\u6B6A",guaranteed:"\u5927\u4FDD\u5E95",selected:"\u5DF2\u5B9A\u8ECC",olderLayout:"\u820A\u5E03\u5C40",switchv2:"\u5207\u6362\u5230\u65B0\u7248\u5E03\u5C40"},L={text:"\u5546\u57CE",paimonBargains:"\u5875\u8F1D\u514C\u63DB",fateNeeded:"\u7F3A\u5C11{rollQty}\u500B{currency}\uFF0C",primoNeeded:"\u662F\u5426\u6D88\u8017{primoPrice}\u539F\u77F3\u8CFC\u8CB7\uFF1F",purchaseUpto:"\u9650\u8CFC 1",purchaseConfirm:"\u78BA\u8A8D\u8CFC\u8CB7",exchangeHeading:"\u514C\u63DB\u7269\u54C1",purchaseHeading:"\u8CFC\u8CB7\u7269\u54C1",purchaseButton:"\u8CFC\u8CB7",pay:"\u652F\u4ED8",product:"\u7522\u54C1",consume:"\u6D88\u8017",selectPayment:"\u9078\u64C7\u652F\u4ED8\u65B9\u5F0F",unrealWallet:"\u85CD\u7DA0\u8272\u4FEE\u6539\u5668\u7834\u89E3\u7248",convertPrimo:"\u81EA\u52D5\u8F49\u63DB\u70BA\u539F\u77F3\uFF1F",proceedPayment:"\u78BA\u8A8D\u4EA4\u6613",qty:"\u6578\u91CF",insufficient:"\u8CA8\u5E63\u4E0D\u8DB3",crystalTopup:"\u51DD\u53D6\u7D50\u6676",initialBonus:"Initial Topup Bonus",bonus:"Bonus",buyGenesisHeading:"\u8CFC\u8CB7\u5275\u4E16\u7D50\u6676",recomendedHeading:"\u63A8\u85A6\u5546\u54C1",paimonHeading:"\u5875\u8F1D\u514C\u63DB",welkinNote:"\u53EF\u7D2F\u8A08\u8CFC\u8CB7",limitedOffer:"\u9650\u6642\u63D0\u4F9B\u8CFC\u8CB7",noLimitTime:"\u5237\u65B0\u6642\u9593\uFF1A\u4E0D\u6703\u5237\u65B0",paymentChilde:"Childe",paymentTears:"Tears",paymentWakaranai:"Wakaranai",recomended:{welkin:"\u7A7A\u6708\u795D\u798F",newOutfit:"\u89D2\u8272\u88DD\u626E \xB7 \u65B0\u88DD",dayRemaining:"\u5269\u9918 {days} \u5929",alreadyClaimed:"\u672C\u65E5\u5DF2\u9818\u53D6",instantlyGet:"\u8CFC\u8CB7\u5373\u53EF\u7372\u5F97",dailyGift:"\u6BCF\u65E5\u8D60\u9001",obtainTotal:"*\u6709\u6548\u671F\u9650\u6301\u7E8C30\u5929\uFF01 \u7D2F\u8A08\u53EF\u7372\u5F97{totalGenesis}\u5275\u4E16\u7D50\u6676\u548C{totalPrimo}\u539F\u77F3\uFF01",claimingBlessing:"\u9EDE\u64CA\u9818\u53D6\u4ECA\u65E5\u7A7A\u6708\u795D\u798F\u734E\u52F5",issuedPurchase:"\u8CFC\u8CB7\u6642\u7372\u5F97",collect:"\u6BCF\u65E5\u767B\u5165\u734E\u52F5"},exchange:{starglitter:"\u7121\u4E3B\u7684\u661F\u8F1D",stardust:"\u7121\u4E3B\u7684\u661F\u5875",primogem:"\u539F\u77F3\u8CFC\u8CB7"},item:{genesis:"\u5275\u4E16\u7D50\u6676",primogem:"\u539F\u77F3",intertwined:"\u7CFE\u7E8F\u4E4B\u7DE3",acquaint:"\u76F8\u9047\u4E4B\u7DE3",starglitter:"\u7121\u4E3B\u7684\u661F\u8F1D",stardust:"\u7121\u4E3B\u7684\u661F\u5875"},description:{intertwined:"\u9023\u7D50\u5922\u60F3\u7684\u547D\u904B\u4E4B\u7A2E\u3002 \u7DE3\u77F3\u8F1D\u5149\u80FD\u8B93\u672C\u7121\u4EA4\u96C6\u7684\u547D\u904B\u4EA4\u932F\uFF0C\u8B93\u5F7C\u6B64\u7684\u5922\u60F3\u76F8\u9023\uFF0C\u6B63\u5982\u9019\u7A2E\u5149\u8F1D\u5C07\u7FA4\u661F\u9023\u6210\u5FC3\u4E4B\u6240\u5411\u7684\u5716\u5F62\u3002",acquaint:"\u9EDE\u4EAE\u661F\u7A7A\u7684\u5E0C\u671B\u4E4B\u7A2E\u3002 \u7121\u8AD6\u76F8\u9694\u591A\u9060\uFF0C\u547D\u5B9A\u76F8\u9047\u7684\u4EBA\u90FD\u6703\u53D7\u7DE3\u77F3\u8F1D\u5149\u7684\u6307\u5F15\uFF0C\u5728\u661F\u7A7A\u4E0B\u76F8\u6703\u3002"}},z={text:"\u5009\u5EAB",unsetOutfit:"\u672A\u8A2D\u7F6E\u88DD\u626E",setOutfit:"\u8A2D\u7F6E\u89D2\u8272\u88DD\u626E",refinement:"\u7CBE\u7149\u7B49\u7D1A {count}",constellation:"\u547D\u4E4B\u5EA7\u5C64\u6578 {count}",extra:"{count} \u5DF2\u6EFF\u4E26\u6EA2\u51FA",firstSummon:"\u9996\u6B21\u7372\u5F97: {date}",notOwned:"\u5C1A\u672A\u64C1\u6709",sort:"\u6392\u5E8F",rarity:"\u7A00\u6709\u5EA6",name:"\u540D\u5B57",quantity:"\u6578\u91CF",element:"\u5143\u7D20",release:"Release Date",type:"\u985E\u578B",owned:"\u5DF2\u7372\u5F97",showAllOption:"\u986F\u793A\u6240\u6709{item}"},H={no:"\u5426",yes:"\u662F",text:"\u9078\u55AE",feedback:"Feedback",options:"\u9078\u9805",updates:"\u66F4\u65B0\u6B77\u53F2",customBanner:"Custom Banner",backupRestore:"Backup & Restore",language:"\u8A9E\u8A00",currency:"\u8CA8\u5E63",fates:"Number of Wishes",unlimited:"Unlimited",manual:"Manual Input",mute:"\u505C\u7528\u97F3\u983B\u97F3\u6548",switchBanner:"\u5207\u63DB\u5361\u6C60",showAllitems:"\u5728\u5EAB\u5B58\u4E2D\u986F\u793A\u6240\u6709\u7269\u54C1",animatedbg:"\u52D5\u756B\u80CC\u666F",autoskip:"\u81EA\u52D5\u8DF3\u904E\u7948\u9858\u52D5\u756B",multiRoll:"Number per multi-roll",factoryReset:"\u6E05\u9664\u8CC7\u6599\u4E26\u6062\u5FA9\u9810\u8A2D",resetTitle:"\u6062\u5FA9\u9810\u8A2D",rotate:"\u65CB\u8F49\u8A2D\u5099\u4EE5\u7372\u5F97\u66F4\u597D\u9AD4\u9A57",keepSetting:"Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",clearCache:"\u6E05\u7A7A\u5FEB\u53D6 ( {size} ) \uFF1F <small>\u52FE\u9078\u672C\u9805\u4E26\u6062\u5FA9\u5F8C\u5C07\u6703\u91CD\u8F09\u8CC7\u6E90\uFF01</small>",resetButton:"\u73FE\u5728\u91CD\u7F6E",resetPrompt:"\u60A8\u78BA\u5B9A\u6E05\u9664<strong>\u6240\u6709\u8CC7\u6599</strong>\u4E26\u6062\u5FA9\u9810\u8A2D\u55CE\uFF1F",resetSuccess:"\u5DF2\u6210\u529F\u91CD\u7F6E",proAccess:"Pro Access",getpro:"Get Pro Access",removeKey:"Remove Key",removeKeyConfirm:"Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",getNewKey:"\u5728\u9019\u88E1\u7372\u5F97\u4E00\u500B\u65B0\u7684\uFF01",noKey:"\u6C92\u6709\u8D0A\u52A9\u78BC\uFF1F",verifyFail:"\u7121\u6CD5\u9A57\u8B49\u8D0A\u52A9\u78BC\uFF0C\u8ACB\u6AA2\u67E5\u60A8\u7684\u7DB2\u8DEF\u9023\u63A5\uFF01",invalidKey:"\u60A8\u7684\u8D0A\u52A9\u78BC\u7121\u6548",keyExpired1:"Expired Key!",keyExpired2:'Your key: "{key}" has expired since {date}!',adFreeUser:"You already have access to the pro features!",inputKeyPlaceholder:"\u8F38\u5165\u8D0A\u52A9\u78BC",inputKeyTxt:"Input a Key to get more Benefits !",checkingKey:"Verifying Stored Access Key",authorNotes:"* \u6211\u9700\u8981\u5C0D\u7F6E\u5165\u5EE3\u544A\u884C\u70BA\u8868\u793A\u6B49\u610F\u3002 \u5BE6\u969B\u4E0A\u6211\u4E5F\u4E0D\u60F3\u7834\u58DE\u60A8\u7684\u64CD\u4F5C\u9AD4\u9A57\uFF0C\u4F46\u6211\u6C92\u6709\u4EFB\u4F55\u5718\u968A\u6216\u8D0A\u52A9\u5546\u4F86\u7DAD\u6301\u9019\u500B\u61C9\u7528\u7A0B\u5F0F\u7684\u904B\u4F5C\u3002 \u5982\u679C\u4F60\u4E0D\u60F3\u82B1\u9322\u7684\u8A71\uFF0C\u4F60\u4ECD\u820A\u53EF\u4EE5\u900F\u904E\u555F\u7528\u5EE3\u544A\u6514\u622A\u63D2\u4EF6\u6216\u81EA\u8A02DNS\uFF0C\u6211\u4E0D\u6703\u5C0D\u5176\u9032\u884C\u9650\u5236\u3002"},Y={title:e,character:n,weapon:a,vision:t,anemo:r,cryo:o,dendro:s,electro:i,hydro:p,geo:l,pyro:c,bow:d,catalyst:u,claymore:m,sword:h,polearm:y,extra:g,obtained:b,waiting:f,connectionFailed:w,confirmButton:P,cancelButton:v,disclaimer:B,fanmade:k,pressToContinue:C,installInstruction:S,share:N,screenshot:x,capturing:A,rewardFirstShare:U,version:I,donate:D,banner:F,editor:R,customBanner:T,backupRestore:W,wish:E,outfit:K,details:M,history:O,shop:L,inventory:z,menu:H};export{r as anemo,W as backupRestore,F as banner,d as bow,v as cancelButton,A as capturing,u as catalyst,n as character,m as claymore,P as confirmButton,w as connectionFailed,o as cryo,T as customBanner,Y as default,s as dendro,M as details,B as disclaimer,D as donate,R as editor,i as electro,g as extra,k as fanmade,l as geo,O as history,p as hydro,S as installInstruction,z as inventory,H as menu,b as obtained,K as outfit,y as polearm,C as pressToContinue,c as pyro,U as rewardFirstShare,x as screenshot,N as share,L as shop,h as sword,e as title,I as version,t as vision,f as waiting,a as weapon,E as wish};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_error.svelte-4f5ba18e.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_error.svelte-4f5ba18e.js
deleted file mode 100644
index 689276d0..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_error.svelte-4f5ba18e.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as Z,i as ee,s as te,a as f,k as n,v as se,q as S,M as ae,h as r,c as u,l as i,m as c,w as re,r as H,n as l,b as X,x as le,G as e,u as Y,f as oe,t as ne,y as ie,E as ce,F as fe,o as ue}from"../../chunks/index-c0d078cd.js";import{p as me}from"../../chunks/stores-65b20c67.js";import{R as he}from"../../chunks/RandomBackground-34695851.js";function pe(g){let p,E,o,m,b,t,y,z,I,A,k,D,B,F,T,G,_,L,q=g[0].status+"",M,N,w,x=g[0].error.message+"",R,O,$,P,V,h,C,j,d;return document.title=p="Error "+g[0].status,m=new he({}),{c(){E=f(),o=n("section"),se(m.$$.fragment),b=f(),t=n("div"),y=n("i"),z=f(),I=n("i"),A=f(),k=n("i"),D=f(),B=n("i"),F=f(),T=n("i"),G=f(),_=n("h1"),L=S("Error "),M=S(q),N=f(),w=n("h2"),R=S(x),O=f(),$=n("p"),P=S("We find some problem with the page you're looking for .."),V=f(),h=n("a"),C=n("i"),j=S(" Back To The Beginning .."),this.h()},l(a){ae('[data-svelte="svelte-h15ndx"]',document.head).forEach(r),E=u(a),o=i(a,"SECTION",{class:!0});var W=c(o);re(m.$$.fragment,W),b=u(W),t=i(W,"DIV",{class:!0});var s=c(t);y=i(s,"I",{class:!0}),c(y).forEach(r),z=u(s),I=i(s,"I",{class:!0}),c(I).forEach(r),A=u(s),k=i(s,"I",{class:!0}),c(k).forEach(r),D=u(s),B=i(s,"I",{class:!0}),c(B).forEach(r),F=u(s),T=i(s,"I",{class:!0}),c(T).forEach(r),G=u(s),_=i(s,"H1",{class:!0});var J=c(_);L=H(J,"Error "),M=H(J,q),J.forEach(r),N=u(s),w=i(s,"H2",{class:!0});var Q=c(w);R=H(Q,x),Q.forEach(r),O=u(s),$=i(s,"P",{class:!0});var U=c($);P=H(U,"We find some problem with the page you're looking for .."),U.forEach(r),V=u(s),h=i(s,"A",{href:!0,class:!0});var K=c(h);C=i(K,"I",{class:!0}),c(C).forEach(r),j=H(K," Back To The Beginning .."),K.forEach(r),s.forEach(r),W.forEach(r),this.h()},h(){l(y,"class","gi-primo-star top-left svelte-7a8fw6"),l(I,"class","gi-primo-star top-right svelte-7a8fw6"),l(k,"class","gi-primo-star bottom-left svelte-7a8fw6"),l(B,"class","gi-primo-star bottom-right svelte-7a8fw6"),l(T,"class","gi-inazuma icon-bg svelte-7a8fw6"),l(_,"class","svelte-7a8fw6"),l(w,"class","svelte-7a8fw6"),l($,"class","svelte-7a8fw6"),l(C,"class","gi-reply svelte-7a8fw6"),l(h,"href","/"),l(h,"class","svelte-7a8fw6"),l(t,"class","container svelte-7a8fw6"),l(o,"class","svelte-7a8fw6")},m(a,v){X(a,E,v),X(a,o,v),le(m,o,null),e(o,b),e(o,t),e(t,y),e(t,z),e(t,I),e(t,A),e(t,k),e(t,D),e(t,B),e(t,F),e(t,T),e(t,G),e(t,_),e(_,L),e(_,M),e(t,N),e(t,w),e(w,R),e(t,O),e(t,$),e($,P),e(t,V),e(t,h),e(h,C),e(h,j),d=!0},p(a,[v]){(!d||v&1)&&p!==(p="Error "+a[0].status)&&(document.title=p),(!d||v&1)&&q!==(q=a[0].status+"")&&Y(M,q),(!d||v&1)&&x!==(x=a[0].error.message+"")&&Y(R,x)},i(a){d||(oe(m.$$.fragment,a),d=!0)},o(a){ne(m.$$.fragment,a),d=!1},d(a){a&&r(E),a&&r(o),ie(m)}}}function _e(g,p,E){let o;ce(g,me,b=>E(0,o=b));const m=fe("isBannerLoaded");return ue(m),[o]}class Ee extends Z{constructor(p){super(),ee(this,p,_e,pe,te,{})}}export{Ee as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_layout.svelte-31cfe670.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_layout.svelte-31cfe670.js
deleted file mode 100644
index d766bbe5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_layout.svelte-31cfe670.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import{S as ge,i as _e,s as ve,a as j,e as ne,c as H,b as Y,f as G,g as we,t as $,d as ye,h as d,E as J,F as He,o as Ke,k as f,q as Q,l as m,m as y,r as X,n as r,p as x,G as c,H as ie,A as be,C as Re,I as Ue,u as ze,J as ke,K as Fe,L as Ee,v as Ie,M as qe,w as Le,N as oe,x as Se,O as Je,y as Ae,P as De,Q as Ge,R as Ye,T as Qe,U as Xe,V as Ze}from"../../chunks/index-c0d078cd.js";import{_ as xe}from"../../chunks/preload-helper-176e53da.js";import{D as $e,k as et}from"../../chunks/runtime.esm-4bf604c8.js";import{p as tt}from"../../chunks/stores-65b20c67.js";import{i as pe,m as re,a as at,b as Pe,v as Te,c as Me}from"../../chunks/app-stores-358281e6.js";import{g as ot,d as st,a as rt}from"../../chunks/outfit-bffb00d9.js";import{H as je,B as nt,l as Be,b as it,i as lt,s as ct}from"../../chunks/custom-banner-3b9921d3.js";import{c as Oe}from"../../chunks/api-cookie-d587b0da.js";import{o as dt,l as ut,r as ft,g as mt,a as pt,s as ce,b as ae,f as le}from"../../chunks/index-123e2351.js";import{c as ht,s as gt,a as _t}from"../../chunks/sync-9a12991b.js";import{H as ee,D as de,K as vt,A as ue}from"../../chunks/env-f184adc0.js";import{m as wt,a as yt}from"../../chunks/i18n-ec7c8da1.js";/* empty css                                                       */function bt(o={}){const{immediate:t=!1,onNeedRefresh:e,onOfflineReady:s,onRegistered:a,onRegisteredSW:n,onRegisterError:l}=o;let u,v,S,b;const M=async(A=!0)=>{await S,A&&u?.addEventListener("controlling",g=>{g.isUpdate&&window.location.reload()}),await b?.()};async function C(){if("serviceWorker"in navigator){const{Workbox:A,messageSW:g}=await xe(()=>import("../../chunks/workbox-window.prod.es5-9f0a6626.js"),[],import.meta.url);b=async()=>{v&&v.waiting&&await g(v.waiting,{type:"SKIP_WAITING"})},u=new A("./sw.js",{scope:"./",type:"classic"}),u.addEventListener("activated",_=>{_.isUpdate||s?.()});{const _=()=>{e?.()};u.addEventListener("waiting",_),u.addEventListener("externalwaiting",_)}u.register({immediate:t}).then(_=>{v=_,n?n("./sw.js",_):a?.(_)}).catch(_=>{l?.(_)})}}return S=C(),M}const{getListByBanner:se}=je,kt=async()=>{const o=await se("beginner"),t=await se("character-event"),e=await se("weapon-event"),s=await se("standard"),a=[...o,...t,...e,...s];a.length<1||a.map(({itemID:n})=>dt.put({itemID:n}))},Et=()=>{const o={"pity4-character-event":"events4sPity","pity5-character-event":"events5sPity","pity4-weapon-event":"weapons4sPity","pity5-weapon-event":"weapons5sPity","pity4-beginner":"beginner4sPity","pity5-beginner":"beginner5sPity","pity4-standard":"standard4sPity","pity5-standard":"standard5sPity"};Object.keys(o).forEach(t=>{const e=localStorage.getItem(o[t]);localStorage.removeItem(o[t]),e&&ut.set(t,parseInt(e))})},It=()=>{const o=localStorage.getItem("beginnerRoll");localStorage.removeItem("beginnerRoll"),o&&ft.set("beginner",parseInt(o))},Lt=()=>{const o={beginner:"beginner",events4Star:"character-event-4star",events:"character-event-5star",weapons4Star:"weapon-event-4star",weapons:"weapon-event-5star"},t=localStorage.getItem("guaranteedStatus");if(!t)return;localStorage.removeItem("guaranteedStatus");const{status:e}=JSON.parse(t);Object.keys(e).forEach(s=>{const a=e[s];mt.set(o[s],a)})},St=()=>{["primogem","genesis","intertwined","acquaint","starglitter","stardust"].forEach(t=>{const e=localStorage.getItem(t);localStorage.removeItem(t),e&&pt.set(t,parseInt(e))})},At=()=>{const o=localStorage.getItem("fatepoint");if(localStorage.removeItem("fatepoint"),!o)return;const{data:t}=JSON.parse(o),e=t.map(({patch:s,phase:a,selected:n,point:l})=>({version:s,phase:a,selected:n,point:l}));ce.set("fatepoint",e)},Dt=()=>{const o=localStorage.getItem("welkin");if(localStorage.removeItem("welkin"),!o)return;const{latestCheckIn:t,remaining:e}=JSON.parse(o),s={latestCheckIn:t,remaining:e};ce.set("welkin",s)},Pt=()=>{const o=localStorage.getItem("outfits");if(localStorage.removeItem("outfits"),!o)return;const{outfits:t}=JSON.parse(o),e=t.map(({isSet:s,name:a})=>{const{name:n}=ot(a);return{isSet:s,name:a,characterName:n}});ce.set("ownedOutfits",e)},Tt=()=>{const o=localStorage.getItem("config");if(localStorage.removeItem("config"),!o)return;const{config:t}=JSON.parse(o),e={adKey:"adKey",wishAmount:"wishAmount",topupBonus:"topupBonus",animatedBG:"animatedBG"};Object.keys(e).forEach(s=>{const a=t[s];a!=null&&ae.set(e[s],a)})},Mt=()=>{const o=localStorage.getItem("firstshare");localStorage.removeItem("firstshare"),o&&ae.set("firstTimeShare",o==="yes")},Bt=async()=>(localStorage.removeItem("storageVersion"),localStorage.removeItem("version"),Et(),It(),St(),Lt(),At(),Dt(),Pt(),Tt(),Mt(),await kt()),{addHistory:Ot,getAllHistories:Nt}=je,{getAll:Vt,put:Wt}=nt,Ct=async()=>{const o=ae.get("idbVer");if(o<3){const t=Oe.get("adKey");t&&Oe.set("accessKey",t),await ht();const e={};st.forEach(({itemID:a,name:n})=>e[n]=a),rt.forEach(({itemID:a,name:n})=>e[n]=a);const s=await Nt();for(let a=0;a<s.length;a++){const n=s[a];n.itemID=e[n.name],await Ot(n),!(a<s.length-1)&&(await Bt(),ae.set("idbVer",3))}}if(o<4){const t=await Vt();for(let e=0;e<t.length;e++){const s=t[e];!s.id||(s.shareID=s.id,delete s.id,await Wt(s))}ae.set("idbVer",4),console.log("IDB Updated")}};let fe;const me=async({release:o=!1}={})=>{try{if(!o){fe=await navigator.wakeLock.request("screen");return}await fe.release(),fe=null}catch{}},Kt=()=>{"wakeLock"in navigator&&(me(),window.addEventListener("focus",()=>me()),window.addEventListener("blur",()=>me({release:!0})))};class Rt extends ge{constructor(t){super(),_e(this,t,null,null,ve,{})}}function Ne(o){let t,e,s,a,n,l,u,v,S,b,M,C,A,g,_,O,D,k,E,B,R;return{c(){t=f("div"),e=f("div"),s=f("div"),a=Q(`An error occurred while trying to load some assets, this may affect your wish experience.
-				`),n=f("br"),l=j(),u=f("small"),v=f("small"),S=Q(`If you think this is a mistake, please contact me on
-						`),b=f("a"),M=Q(`Discord
-						`),C=Q("!"),A=j(),g=f("div"),_=f("button"),O=Q("Reload"),D=j(),k=f("button"),E=Q("Open Anyway"),this.h()},l(P){t=m(P,"DIV",{class:!0});var N=y(t);e=m(N,"DIV",{class:!0});var I=y(e);s=m(I,"DIV",{class:!0});var i=y(s);a=X(i,`An error occurred while trying to load some assets, this may affect your wish experience.
-				`),n=m(i,"BR",{}),l=H(i),u=m(i,"SMALL",{});var V=y(u);v=m(V,"SMALL",{});var U=y(v);S=X(U,`If you think this is a mistake, please contact me on
-						`),b=m(U,"A",{href:!0,style:!0});var q=y(b);M=X(q,`Discord
-						`),q.forEach(d),C=X(U,"!"),U.forEach(d),V.forEach(d),i.forEach(d),A=H(I),g=m(I,"DIV",{class:!0});var F=y(g);_=m(F,"BUTTON",{class:!0});var K=y(_);O=X(K,"Reload"),K.forEach(d),D=H(F),k=m(F,"BUTTON",{class:!0});var Z=y(k);E=X(Z,"Open Anyway"),Z.forEach(d),F.forEach(d),I.forEach(d),N.forEach(d),this.h()},h(){r(b,"href","https://discord.com/users/523179264116523018"),x(b,"color","#7289da"),r(s,"class","msg"),r(_,"class","reload svelte-o4a6oh"),r(k,"class","open svelte-o4a6oh"),r(g,"class","btn svelte-o4a6oh"),r(e,"class","modal-content svelte-o4a6oh"),r(t,"class","modal svelte-o4a6oh")},m(P,N){Y(P,t,N),c(t,e),c(e,s),c(s,a),c(s,n),c(s,l),c(s,u),c(u,v),c(v,S),c(v,b),c(b,M),c(v,C),c(e,A),c(e,g),c(g,_),c(_,O),c(g,D),c(g,k),c(k,E),B||(R=[ie(_,"click",o[8]),ie(k,"click",o[7])],B=!0)},p:be,d(P){P&&d(t),B=!1,Re(R)}}}function Ve(o){let t,e,s,a,n,l,u,v,S,b,M,C,A,g,_,O,D,k,E,B,R,P,N,I,i,V,U,q;const F=[Ht,jt],K=[];function Z(L,w){return L[4]<0?0:1}I=Z(o),i=K[I]=F[I](o);let z=o[5]&&!o[6]&&We();return{c(){t=f("div"),e=f("div"),s=f("div"),a=f("div"),n=f("i"),l=j(),u=f("i"),v=j(),S=f("i"),b=j(),M=f("i"),C=j(),A=f("i"),g=j(),_=f("i"),O=j(),D=f("i"),k=j(),E=f("div"),B=f("div"),R=j(),P=f("div"),N=j(),i.c(),V=j(),z&&z.c(),this.h()},l(L){t=m(L,"DIV",{class:!0});var w=y(t);e=m(w,"DIV",{class:!0});var p=y(e);s=m(p,"DIV",{class:!0});var h=y(s);a=m(h,"DIV",{class:!0});var T=y(a);n=m(T,"I",{class:!0}),y(n).forEach(d),l=H(T),u=m(T,"I",{class:!0}),y(u).forEach(d),v=H(T),S=m(T,"I",{class:!0}),y(S).forEach(d),b=H(T),M=m(T,"I",{class:!0}),y(M).forEach(d),C=H(T),A=m(T,"I",{class:!0}),y(A).forEach(d),g=H(T),_=m(T,"I",{class:!0}),y(_).forEach(d),O=H(T),D=m(T,"I",{class:!0}),y(D).forEach(d),T.forEach(d),k=H(h),E=m(h,"DIV",{class:!0});var te=y(E);B=m(te,"DIV",{class:!0}),y(B).forEach(d),R=H(te),P=m(te,"DIV",{class:!0,style:!0}),y(P).forEach(d),te.forEach(d),h.forEach(d),N=H(p),i.l(p),V=H(p),z&&z.l(p),p.forEach(d),w.forEach(d),this.h()},h(){r(n,"class","gi-pyro"),r(u,"class","gi-hydro"),r(S,"class","gi-anemo"),r(M,"class","gi-electro"),r(A,"class","gi-dendro"),r(_,"class","gi-cryo"),r(D,"class","gi-geo"),r(a,"class","icon"),r(B,"class","unfilled svelte-o4a6oh"),r(P,"class","filled animate svelte-o4a6oh"),x(P,"width",o[4].toFixed(2)+"%"),r(E,"class","blend svelte-o4a6oh"),r(s,"class","progress svelte-o4a6oh"),r(e,"class","content svelte-o4a6oh"),r(t,"class","loader svelte-o4a6oh")},m(L,w){Y(L,t,w),c(t,e),c(e,s),c(s,a),c(a,n),c(a,l),c(a,u),c(a,v),c(a,S),c(a,b),c(a,M),c(a,C),c(a,A),c(a,g),c(a,_),c(a,O),c(a,D),c(s,k),c(s,E),c(E,B),c(E,R),c(E,P),c(e,N),K[I].m(e,null),c(e,V),z&&z.m(e,null),q=!0},p(L,w){(!q||w&16)&&x(P,"width",L[4].toFixed(2)+"%");let p=I;I=Z(L),I===p?K[I].p(L,w):(we(),$(K[p],1,1,()=>{K[p]=null}),ye(),i=K[I],i?i.p(L,w):(i=K[I]=F[I](L),i.c()),G(i,1),i.m(e,V)),L[5]&&!L[6]?z||(z=We(),z.c(),z.m(e,null)):z&&(z.d(1),z=null)},i(L){q||(G(i),U&&U.end(1),q=!0)},o(L){$(i),U=Ue(t,le,{duration:500,delay:1e3}),q=!1},d(L){L&&d(t),K[I].d(),z&&z.d(),L&&U&&U.end()}}}function jt(o){let t,e=(o[4]>99?100:o[4].toFixed())+"",s,a,n;return{c(){t=f("div"),s=Q(e),a=Q("%"),this.h()},l(l){t=m(l,"DIV",{class:!0});var u=y(t);s=X(u,e),a=X(u,"%"),u.forEach(d),this.h()},h(){r(t,"class","text svelte-o4a6oh")},m(l,u){Y(l,t,u),c(t,s),c(t,a)},p(l,u){u&16&&e!==(e=(l[4]>99?100:l[4].toFixed())+"")&&ze(s,e)},i(l){n||ke(()=>{n=Fe(t,le,{}),n.start()})},o:be,d(l){l&&d(t)}}}function Ht(o){let t,e,s,a;return{c(){t=f("div"),e=Q("Connecting"),this.h()},l(n){t=m(n,"DIV",{class:!0});var l=y(t);e=X(l,"Connecting"),l.forEach(d),this.h()},h(){r(t,"class","text connecting svelte-o4a6oh")},m(n,l){Y(n,t,l),c(t,e),a=!0},p:be,i(n){a||(ke(()=>{s||(s=Ee(t,le,{},!0)),s.run(1)}),a=!0)},o(n){s||(s=Ee(t,le,{},!1)),s.run(0),a=!1},d(n){n&&d(t),n&&s&&s.end()}}}function We(o){let t,e,s,a,n;return{c(){t=f("div"),e=f("i"),s=j(),a=f("span"),n=Q("Rotate for better experience"),this.h()},l(l){t=m(l,"DIV",{class:!0});var u=y(t);e=m(u,"I",{class:!0}),y(e).forEach(d),s=H(u),a=m(u,"SPAN",{class:!0});var v=y(a);n=X(v,"Rotate for better experience"),v.forEach(d),u.forEach(d),this.h()},h(){r(e,"class","gi-rotate-phone svelte-o4a6oh"),r(a,"class","svelte-o4a6oh"),r(t,"class","rotate svelte-o4a6oh")},m(l,u){Y(l,t,u),c(t,e),c(t,s),c(t,a),c(a,n)},d(l){l&&d(t)}}}function Ut(o){let t,e,s,a=o[2]&&!o[3]&&Ne(o),n=!((o[0]||o[1])&&o[3]&&o[4]>=100)&&Ve(o);return{c(){a&&a.c(),t=j(),n&&n.c(),e=ne()},l(l){a&&a.l(l),t=H(l),n&&n.l(l),e=ne()},m(l,u){a&&a.m(l,u),Y(l,t,u),n&&n.m(l,u),Y(l,e,u),s=!0},p(l,[u]){l[2]&&!l[3]?a?a.p(l,u):(a=Ne(l),a.c(),a.m(t.parentNode,t)):a&&(a.d(1),a=null),(l[0]||l[1])&&l[3]&&l[4]>=100?n&&(we(),$(n,1,1,()=>{n=null}),ye()):n?(n.p(l,u),u&27&&G(n,1)):(n=Ve(l),n.c(),G(n,1),n.m(e.parentNode,e))},i(l){s||(G(n),s=!0)},o(l){$(n),s=!1},d(l){a&&a.d(l),l&&d(t),n&&n.d(l),l&&d(e)}}}function zt(o,t,e){let s,a;J(o,pe,g=>e(5,s=g)),J(o,re,g=>e(6,a=g));let{isBannerLoaded:n=!1}=t,{directLoad:l=!1}=t,u=!1,v=!1,S=-1;const b=He("loaded"),M=()=>{b(),e(3,v=!0)},C=async g=>{const _=g==="preview",O=[];let D=0;const k=_?Be("preview"):Be();for await(const R of k){D++;const{path:P,asset:N}=R,I=await it(P);I==="error"&&e(2,u=!0),O.push({url:I,name:N}),e(4,S=D/k.length*100)}const E=await Promise.all(O),B=await lt();at.update(R=>(R={},E.forEach(({url:P,name:N})=>R[N]=P),{...R,...B})),u===!1&&M()};Ke(()=>{C(l?"preview":"")});const A=()=>window.location.reload();return o.$$set=g=>{"isBannerLoaded"in g&&e(0,n=g.isBannerLoaded),"directLoad"in g&&e(1,l=g.directLoad)},[n,l,u,v,S,s,a,M,A]}class Ft extends ge{constructor(t){super(),_e(this,t,zt,Ut,ve,{isBannerLoaded:0,directLoad:1})}}const{document:W,window:he}=Ge;function qt(o){let t;return{c(){t=f("link"),this.h()},l(e){t=m(e,"LINK",{rel:!0,href:!0}),this.h()},h(){r(t,"rel","manifest"),r(t,"href","/appmanifest.json")},m(e,s){Y(e,t,s)},d(e){e&&d(t)}}}function Ce(o){let t;const e=o[13].default,s=Ye(e,o,o[12],null);return{c(){s&&s.c()},l(a){s&&s.l(a)},m(a,n){s&&s.m(a,n),t=!0},p(a,n){s&&s.p&&(!t||n&4096)&&Qe(s,e,a,a[12],t?Ze(e,a[12],n,null):Xe(a[12]),null)},i(a){t||(G(s,a),t=!0)},o(a){$(s,a),t=!1},d(a){s&&s.d(a)}}}function Jt(o){let t,e,s,a,n,l,u,v,S,b,M,C,A,g,_,O,D,k,E,B,R,P,N,I,i,V,U,q,F,K,Z,z;ke(o[14]);let L=qt();N=new Ft({props:{isBannerLoaded:o[3],directLoad:o[6]}}),V=new Rt({});let w=!o[11]&&o[4]&&Ce(o);return{c(){t=f("meta"),e=f("meta"),s=f("meta"),a=f("link"),n=f("meta"),l=f("meta"),u=f("meta"),v=f("meta"),S=f("meta"),b=f("meta"),M=f("meta"),C=f("meta"),A=f("meta"),g=f("meta"),_=f("meta"),O=f("link"),D=f("link"),k=f("link"),E=f("link"),B=f("link"),L&&L.c(),R=ne(),P=j(),Ie(N.$$.fragment),I=j(),i=f("main"),Ie(V.$$.fragment),U=j(),w&&w.c(),q=j(),F=f("a"),this.h()},l(p){const h=qe('[data-svelte="svelte-uo0i7a"]',W.head);t=m(h,"META",{name:!0,content:!0}),e=m(h,"META",{name:!0,content:!0}),s=m(h,"META",{property:!0,content:!0}),a=m(h,"LINK",{rel:!0,href:!0,title:!0}),n=m(h,"META",{property:!0,content:!0}),l=m(h,"META",{property:!0,content:!0}),u=m(h,"META",{property:!0,content:!0}),v=m(h,"META",{property:!0,content:!0}),S=m(h,"META",{property:!0,content:!0}),b=m(h,"META",{name:!0,content:!0}),M=m(h,"META",{property:!0,content:!0}),C=m(h,"META",{property:!0,content:!0}),A=m(h,"META",{name:!0,content:!0}),g=m(h,"META",{name:!0,content:!0}),_=m(h,"META",{name:!0,content:!0}),O=m(h,"LINK",{rel:!0,href:!0,as:!0,type:!0,crossorigin:!0}),D=m(h,"LINK",{rel:!0,href:!0,as:!0,type:!0,crossorigin:!0}),k=m(h,"LINK",{rel:!0,href:!0,as:!0,type:!0,crossorigin:!0}),E=m(h,"LINK",{rel:!0,href:!0,as:!0,type:!0,crossorigin:!0}),B=m(h,"LINK",{rel:!0,href:!0,as:!0,type:!0,crossorigin:!0}),L&&L.l(h),R=ne(),h.forEach(d),P=H(p),Le(N.$$.fragment,p),I=H(p),i=m(p,"MAIN",{class:!0,style:!0});var T=y(i);Le(V.$$.fragment,T),U=H(T),w&&w.l(T),q=H(T),F=m(T,"A",{href:!0,class:!0,title:!0});var te=y(F);te.forEach(d),T.forEach(d),this.h()},h(){r(t,"name","description"),r(t,"content",de),r(e,"name","keywords"),r(e,"content",vt),r(s,"property","al:web:url"),r(s,"content",ee),r(a,"rel","fluid-icon"),r(a,"href",ee+"/meta-picture.jpg"),r(a,"title",ue),r(n,"property","og:url"),r(n,"content",ee),r(l,"property","og:type"),r(l,"content","website"),r(u,"property","og:title"),r(u,"content",ue),r(v,"property","og:description"),r(v,"content",de),r(S,"property","og:image"),r(S,"content",ee+"/meta-picture.jpg"),r(b,"name","twitter:card"),r(b,"content","summary_large_image"),r(M,"property","twitter:domain"),r(M,"content",ee.replace("https://","").replace("http://","")),r(C,"property","twitter:url"),r(C,"content",ee),r(A,"name","twitter:title"),r(A,"content",ue),r(g,"name","twitter:description"),r(g,"content",de),r(_,"name","twitter:image"),r(_,"content",ee+"/meta-picture.jpg"),r(O,"rel","preload"),r(O,"href","/fonts/aaqishu.woff"),r(O,"as","font"),r(O,"type","font/woff"),r(O,"crossorigin",""),r(D,"rel","preload"),r(D,"href","/fonts/optimized_global_web.woff2"),r(D,"as","font"),r(D,"type","font/woff2"),r(D,"crossorigin",""),r(k,"rel","preload"),r(k,"href","/fonts/optimized_th_web.woff2"),r(k,"as","font"),r(k,"type","font/woff2"),r(k,"crossorigin",""),r(E,"rel","preload"),r(E,"href","/fonts/optimized_jp_web.woff2"),r(E,"as","font"),r(E,"type","font/woff2"),r(E,"crossorigin",""),r(B,"rel","preload"),r(B,"href","/fonts/optimized_zh_web.woff2"),r(B,"as","font"),r(B,"type","font/woff2"),r(B,"crossorigin",""),r(F,"href","/"),r(F,"class","uid"),r(F,"title","Try Your Luck by this Simulator"),r(i,"class",o[2]),x(i,"--screen-height",o[9]?`${o[9]}px`:"100vh"),x(i,"--screen-width",o[10]+"px"),x(i,"--genshin-font","var(--gi-"+o[5]+"-font)"),oe(i,"mobile",o[8]),oe(i,"preview",o[7])},m(p,h){c(W.head,t),c(W.head,e),c(W.head,s),c(W.head,a),c(W.head,n),c(W.head,l),c(W.head,u),c(W.head,v),c(W.head,S),c(W.head,b),c(W.head,M),c(W.head,C),c(W.head,A),c(W.head,g),c(W.head,_),c(W.head,O),c(W.head,D),c(W.head,k),c(W.head,E),c(W.head,B),L&&L.m(W.head,null),c(W.head,R),Y(p,P,h),Se(N,p,h),Y(p,I,h),Y(p,i,h),Se(V,i,null),c(i,U),w&&w.m(i,null),c(i,q),c(i,F),K=!0,Z||(z=[ie(he,"resize",o[14]),ie(F,"click",Je(o[15]))],Z=!0)},p(p,[h]){const T={};h&8&&(T.isBannerLoaded=p[3]),h&64&&(T.directLoad=p[6]),N.$set(T),!p[11]&&p[4]?w?(w.p(p,h),h&2064&&G(w,1)):(w=Ce(p),w.c(),G(w,1),w.m(i,q)):w&&(we(),$(w,1,1,()=>{w=null}),ye()),(!K||h&4)&&r(i,"class",p[2]),(!K||h&512)&&x(i,"--screen-height",p[9]?`${p[9]}px`:"100vh"),(!K||h&1024)&&x(i,"--screen-width",p[10]+"px"),(!K||h&32)&&x(i,"--genshin-font","var(--gi-"+p[5]+"-font)"),h&260&&oe(i,"mobile",p[8]),h&132&&oe(i,"preview",p[7])},i(p){K||(G(N.$$.fragment,p),G(V.$$.fragment,p),G(w),K=!0)},o(p){$(N.$$.fragment,p),$(V.$$.fragment,p),$(w),K=!1},d(p){d(t),d(e),d(s),d(a),d(n),d(l),d(u),d(v),d(S),d(b),d(M),d(C),d(A),d(g),d(_),d(O),d(D),d(k),d(E),d(B),L&&L.d(p),d(R),p&&d(P),Ae(N,p),p&&d(I),p&&d(i),Ae(V),w&&w.d(),Z=!1,Re(z)}}}function Gt(o,t,e){let s,a,n,l,u,v,S,b,M;J(o,_t,i=>e(16,s=i)),J(o,pe,i=>e(17,a=i)),J(o,Pe,i=>e(18,n=i)),J(o,tt,i=>e(19,l=i)),J(o,$e,i=>e(2,u=i)),J(o,re,i=>e(8,v=i)),J(o,Me,i=>e(9,S=i)),J(o,Te,i=>e(10,b=i)),J(o,et,i=>e(11,M=i));let{$$slots:C={},$$scope:A}=t,g,_,O=!1,D=!1;De("bannerLoaded",()=>e(3,O=!0)),De("loaded",()=>e(4,D=!0));let k="",E=!1,B=!1;const R=()=>{const i=l.url.pathname.split("/");e(6,E=!!i[1]),e(7,B=i[1]==="screen");const U=["adkey","bnlist","install","privacy-policy","screen"].includes(i[1].toLowerCase());return i[1]&&!U},P=()=>{if(n)return re.set(!0);const i=screen.orientation?.angle||0,V=i===90||i===270;re.set(V)};wt(),Ke(async()=>{if(R())return window.location.replace("/");const i=new URL(window.location.href),V=new URLSearchParams(i.search);Pe.set(V.get("pwa")==="true"||!!V.get("pwasc")),pe.set(yt()||_<601),a&&P(),window.addEventListener("orientationchange",()=>{a&&P()}),ce.initEvent(),bt(),Kt(),await Ct(),ct(),document.addEventListener("storageUpdate",()=>gt(s)),document.addEventListener("contextmenu",U=>U.preventDefault())});function N(){e(0,g=he.innerHeight),e(1,_=he.innerWidth)}const I=()=>window.location.replace("/");return o.$$set=i=>{"$$scope"in i&&e(12,A=i.$$scope)},o.$$.update=()=>{if(o.$$.dirty&4){const i=u?.toLowerCase()||"",V=i.match(/(cn|ja)/);e(5,k=V||i.includes("th")?i.split("-")[0]:"global")}o.$$.dirty&2&&Te.set(_),o.$$.dirty&1&&Me.set(g)},[g,_,u,O,D,k,E,B,v,S,b,M,A,C,N,I]}class ia extends ge{constructor(t){super(),_e(this,t,Gt,Jt,ve,{})}}export{ia as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_page.svelte-7faf7689.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_page.svelte-7faf7689.js
deleted file mode 100644
index edd45cf9..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/_page.svelte-7faf7689.js
+++ /dev/null
@@ -1 +0,0 @@
-import"../../chunks/preload-helper-176e53da.js";import"../../chunks/index-c0d078cd.js";import"../../chunks/stores-65b20c67.js";import"../../chunks/index-123e2351.js";import"../../chunks/index-0189b6d0.js";import"../../chunks/WishResult-901333c5.js";import{P as b}from"../../chunks/_page-87ee6ee5.js";import"../../chunks/app-stores-358281e6.js";import"../../chunks/audio-460a91c6.js";import"../../chunks/runtime.esm-4bf604c8.js";import"../../chunks/env-f184adc0.js";import"../../chunks/custom-banner-3b9921d3.js";import"../../chunks/ButtonModal-7ee3a4a1.js";import"../../chunks/lazyload-05dfa468.js";export{b as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/adkey/_page.svelte-0e8e16a9.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/adkey/_page.svelte-0e8e16a9.js
deleted file mode 100644
index 1607d708..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/adkey/_page.svelte-0e8e16a9.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as ve,i as we,s as be,a as w,k as u,q as M,v as ye,M as Ee,h as o,c as b,l as f,m as h,r as N,w as Se,n as l,Y as de,N as he,b as F,G as e,aj as pe,x as Ie,H as me,O as ke,f as Ae,J as Ge,t as Pe,y as We,C as Me,E as Ne,o as Oe,u as $e,K as Ke}from"../../../chunks/index-c0d078cd.js";import{h as Re}from"../../../chunks/index-123e2351.js";import{p as Te}from"../../../chunks/audio-460a91c6.js";import{a as qe}from"../../../chunks/app-stores-358281e6.js";import{a as je}from"../../../chunks/accessKey-2a3cada9.js";import{B as Ce}from"../../../chunks/ButtonModal-7ee3a4a1.js";function _e(i){let r,s,t,c,v;return{c(){r=u("span"),s=M("Wrong Access Key, please get "),t=u("a"),c=u("strong"),v=M("New One Here !"),this.h()},l(a){r=f(a,"SPAN",{class:!0});var g=h(r);s=N(g,"Wrong Access Key, please get "),t=f(g,"A",{href:!0,target:!0});var S=h(t);c=f(S,"STRONG",{});var I=h(c);v=N(I,"New One Here !"),I.forEach(o),S.forEach(o),g.forEach(o),this.h()},h(){l(t,"href","https://ko-fi.com/post/AdFree-Wish-Simulator-Enjoy-Simulator-Without-Ads-G2G2DQ57O"),l(t,"target","_blank"),l(r,"class","error svelte-rwed1l")},m(a,g){F(a,r,g),e(r,s),e(r,t),e(t,c),e(c,v)},d(a){a&&o(r)}}}function ge(i){let r,s;return{c(){r=u("span"),s=M("Congratulation, now you can enjoy the app without any ads!"),this.h()},l(t){r=f(t,"SPAN",{class:!0});var c=h(r);s=N(c,"Congratulation, now you can enjoy the app without any ads!"),c.forEach(o),this.h()},h(){l(r,"class","valid svelte-rwed1l")},m(t,c){F(t,r,c),e(r,s)},d(t){t&&o(r)}}}function De(i){let r=i[3]?"Waiting...":i[2]?"Redirecting ...":"Start Simulator",s;return{c(){s=M(r)},l(t){s=N(t,r)},m(t,c){F(t,s,c)},p(t,c){c&12&&r!==(r=t[3]?"Waiting...":t[2]?"Redirecting ...":"Start Simulator")&&$e(s,r)},d(t){t&&o(s)}}}function He(i){let r,s,t,c,v,a,g,S,I,D,R,H,d,P,O,Q,T,z,J,q,Y,X,A,y,E,Z,U,x,j,G,ee,$,K,B,te,se,ae,V,re,oe,m=i[1]&&_e(),_=i[2]&&ge();return G=new Ce({props:{disabled:i[3]||!i[0]||i[2],$$slots:{default:[De]},$$scope:{ctx:i}}}),G.$on("click",i[6]),{c(){r=w(),s=u("section"),t=u("img"),v=w(),a=u("div"),g=u("i"),S=w(),I=u("i"),D=w(),R=u("i"),H=w(),d=u("i"),P=w(),O=u("i"),Q=w(),T=u("h1"),z=M("Genshin Impact Wish Simulator"),J=w(),q=u("h2"),Y=M("This Page is only available for supporters."),X=w(),A=u("form"),y=u("div"),E=u("input"),Z=w(),m&&m.c(),U=w(),_&&_.c(),x=w(),j=u("div"),ye(G.$$.fragment),ee=w(),$=u("p"),K=u("a"),B=u("strong"),te=M("Become a supporter here"),se=M(" and get a opportunity to use the simulator without being distracted by Ads !"),this.h()},l(n){Ee('[data-svelte="svelte-1i1q7nn"]',document.head).forEach(o),r=b(n),s=f(n,"SECTION",{class:!0});var W=h(s);t=f(W,"IMG",{class:!0,src:!0,alt:!0}),v=b(W),a=f(W,"DIV",{class:!0});var p=h(a);g=f(p,"I",{class:!0}),h(g).forEach(o),S=b(p),I=f(p,"I",{class:!0}),h(I).forEach(o),D=b(p),R=f(p,"I",{class:!0}),h(R).forEach(o),H=b(p),d=f(p,"I",{class:!0}),h(d).forEach(o),P=b(p),O=f(p,"I",{class:!0}),h(O).forEach(o),Q=b(p),T=f(p,"H1",{class:!0});var ne=h(T);z=N(ne,"Genshin Impact Wish Simulator"),ne.forEach(o),J=b(p),q=f(p,"H2",{class:!0});var ie=h(q);Y=N(ie,"This Page is only available for supporters."),ie.forEach(o),X=b(p),A=f(p,"FORM",{class:!0});var L=h(A);y=f(L,"DIV",{class:!0});var C=h(y);E=f(C,"INPUT",{type:!0,placeholder:!0,class:!0}),Z=b(C),m&&m.l(C),U=b(C),_&&_.l(C),C.forEach(o),x=b(L),j=f(L,"DIV",{class:!0});var ce=h(j);Se(G.$$.fragment,ce),ce.forEach(o),L.forEach(o),ee=b(p),$=f(p,"P",{class:!0});var le=h($);K=f(le,"A",{href:!0,target:!0});var ue=h(K);B=f(ue,"STRONG",{});var fe=h(B);te=N(fe,"Become a supporter here"),fe.forEach(o),ue.forEach(o),se=N(le," and get a opportunity to use the simulator without being distracted by Ads !"),le.forEach(o),p.forEach(o),W.forEach(o),this.h()},h(){document.title="Genshin Impact Wish Simulator",l(t,"class","bg svelte-rwed1l"),de(t.src,c=i[4][`bg${i[5](1,20)}.webp`])||l(t,"src",c),l(t,"alt","background"),l(g,"class","gi-primo-star top-left svelte-rwed1l"),l(I,"class","gi-primo-star top-right svelte-rwed1l"),l(R,"class","gi-primo-star bottom-left svelte-rwed1l"),l(d,"class","gi-primo-star bottom-right svelte-rwed1l"),l(O,"class","gi-inazuma icon-bg svelte-rwed1l"),l(T,"class","svelte-rwed1l"),l(q,"class","svelte-rwed1l"),l(E,"type","text"),l(E,"placeholder","Input Access Key"),l(E,"class","svelte-rwed1l"),he(E,"error",i[1]),l(y,"class","input svelte-rwed1l"),l(j,"class","button svelte-rwed1l"),l(A,"class","form svelte-rwed1l"),l(K,"href","https://ko-fi.com/post/AdFree-Wish-Simulator-Enjoy-Simulator-Without-Ads-G2G2DQ57O"),l(K,"target","_blank"),l($,"class","svelte-rwed1l"),l(a,"class","container svelte-rwed1l"),l(s,"class","svelte-rwed1l")},m(n,k){F(n,r,k),F(n,s,k),e(s,t),e(s,v),e(s,a),e(a,g),e(a,S),e(a,I),e(a,D),e(a,R),e(a,H),e(a,d),e(a,P),e(a,O),e(a,Q),e(a,T),e(T,z),e(a,J),e(a,q),e(q,Y),e(a,X),e(a,A),e(A,y),e(y,E),pe(E,i[0]),e(y,Z),m&&m.m(y,null),e(y,U),_&&_.m(y,null),e(A,x),e(A,j),Ie(G,j,null),e(a,ee),e(a,$),e($,K),e(K,B),e(B,te),e($,se),V=!0,re||(oe=[me(E,"input",i[7]),me(A,"submit",ke(i[6]))],re=!0)},p(n,[k]){(!V||k&16&&!de(t.src,c=n[4][`bg${n[5](1,20)}.webp`]))&&l(t,"src",c),k&1&&E.value!==n[0]&&pe(E,n[0]),k&2&&he(E,"error",n[1]),n[1]?m||(m=_e(),m.c(),m.m(y,U)):m&&(m.d(1),m=null),n[2]?_||(_=ge(),_.c(),_.m(y,null)):_&&(_.d(1),_=null);const W={};k&13&&(W.disabled=n[3]||!n[0]||n[2]),k&1036&&(W.$$scope={dirty:k,ctx:n}),G.$set(W)},i(n){V||(Ae(G.$$.fragment,n),ae||Ge(()=>{ae=Ke(s,Re,{x:-200,duration:200}),ae.start()}),V=!0)},o(n){Pe(G.$$.fragment,n),V=!1},d(n){n&&o(r),n&&o(s),m&&m.d(),_&&_.d(),We(G),re=!1,Me(oe)}}}function Be(i,r,s){let t;Ne(i,qe,d=>s(4,t=d));const c=(d,P)=>(d=Math.ceil(d),P=Math.floor(P),Math.floor(Math.random()*(P-d+1))+d);let v="",a=!1,g=!1,S=!1;const I=()=>{const d=setTimeout(()=>{clearTimeout(d),window.location.replace("/")},3e3)},D=async()=>{Te(),s(3,S=!0);const{validity:d}=await je.verify(v);s(1,a=!d),s(2,g=d),s(3,S=!1),!a&&I()};Oe(()=>{const d=new URL(window.location.href),O=new URLSearchParams(d.search).get("k");s(0,v=O||"")});function H(){v=this.value,s(0,v)}return[v,a,g,S,t,c,D,H]}class Je extends ve{constructor(r){super(),we(this,r,Be,He,be,{})}}export{Je as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/bnlist/_page.svelte-42422615.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/bnlist/_page.svelte-42422615.js
deleted file mode 100644
index 5d81093d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/bnlist/_page.svelte-42422615.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as de,i as he,s as ne,k as w,q as R,a as H,l as I,m as E,r as U,h as m,c as M,n as p,p as pe,b as T,G as _,u as ee,g as Z,t as N,d as x,f as S,P as ve,o as ge,v as O,w as q,x as G,a6 as me,y as z,A as X,e as Y,ab as $e,D as be,H as te,ag as ke,ah as we,aj as se,O as Ie,C as Ee}from"../../../chunks/index-c0d078cd.js";import{l as ye,B as ae}from"../../../chunks/lazyload-05dfa468.js";import{R as Be}from"../../../chunks/RandomBackground-34695851.js";import{a as De}from"../../../chunks/env-f184adc0.js";import{o as Ae,a as W}from"../../../chunks/custom-banner-3b9921d3.js";import{t as re}from"../../../chunks/timeago-17bb7280.js";import{P as Ve}from"../../../chunks/_pagination-cd90c7ad.js";function oe(r,e,t){const l=r.slice();return l[7]=e[t].bannerName,l[8]=e[t].hostedImages!==void 0?e[t].hostedImages:{},l[9]=e[t].blocked,l[10]=e[t].id,l[11]=e[t].lastModified,l}function ce(r,e,t){const l=r.slice();return l[14]=e[t],l}function Le(r){let e,t,l,n=r[3](r[1],r[0]),a=[];for(let o=0;o<n.length;o+=1)a[o]=_e(oe(r,n,o));const u=o=>N(a[o],1,1,()=>{a[o]=null});return t=new Ve({props:{v2:!0,itemPerPage:le,activepage:r[0],dataLength:r[1].length}}),{c(){for(let o=0;o<a.length;o+=1)a[o].c();e=H(),O(t.$$.fragment)},l(o){for(let c=0;c<a.length;c+=1)a[c].l(o);e=M(o),q(t.$$.fragment,o)},m(o,c){for(let i=0;i<a.length;i+=1)a[i].m(o,c);T(o,e,c),G(t,o,c),l=!0},p(o,c){if(c&15){n=o[3](o[1],o[0]);let s;for(s=0;s<n.length;s+=1){const d=oe(o,n,s);a[s]?(a[s].p(d,c),S(a[s],1)):(a[s]=_e(d),a[s].c(),S(a[s],1),a[s].m(e.parentNode,e))}for(Z(),s=n.length;s<a.length;s+=1)u(s);x()}const i={};c&1&&(i.activepage=o[0]),c&2&&(i.dataLength=o[1].length),t.$set(i)},i(o){if(!l){for(let c=0;c<n.length;c+=1)S(a[c]);S(t.$$.fragment,o),l=!0}},o(o){a=a.filter(Boolean);for(let c=0;c<a.length;c+=1)N(a[c]);N(t.$$.fragment,o),l=!1},d(o){me(a,o),o&&m(e),z(t,o)}}}function Pe(r){let e,t,l;return{c(){e=w("div"),t=w("span"),l=R("waiting ..."),this.h()},l(n){e=I(n,"DIV",{class:!0});var a=E(e);t=I(a,"SPAN",{});var u=E(t);l=U(u,"waiting ..."),u.forEach(m),a.forEach(m),this.h()},h(){p(e,"class","row svelte-12an48w")},m(n,a){T(n,e,a),_(e,t),_(t,l)},p:X,i:X,o:X,d(n){n&&m(e)}}}function ie(r){let e=r[8][r[14]],t,l=fe(r);return{c(){l.c(),t=Y()},l(n){l.l(n),t=Y()},m(n,a){l.m(n,a),T(n,t,a)},p(n,a){a&3&&ne(e,e=n[8][n[14]])?(l.d(1),l=fe(n),l.c(),l.m(t.parentNode,t)):l.p(n,a)},d(n){n&&m(t),l.d(n)}}}function fe(r){let e,t,l,n,a,u,o,c;return{c(){e=w("a"),t=w("img"),a=H(),this.h()},l(i){e=I(i,"A",{href:!0,target:!0,rel:!0});var s=E(e);t=I(s,"IMG",{alt:!0,class:!0}),a=M(s),s.forEach(m),this.h()},h(){p(t,"alt",l=r[7]),p(t,"class","svelte-12an48w"),p(e,"href",u=W(r[8][r[14]])),p(e,"target","_blank"),p(e,"rel","noopener noreferrer")},m(i,s){T(i,e,s),_(e,t),_(e,a),o||(c=$e(n=ye.call(null,t,W(r[8][r[14]],150))),o=!0)},p(i,s){r=i,s&3&&l!==(l=r[7])&&p(t,"alt",l),n&&be(n.update)&&s&3&&n.update.call(null,W(r[8][r[14]],150)),s&3&&u!==(u=W(r[8][r[14]]))&&p(e,"href",u)},d(i){i&&m(e),o=!1,c()}}}function ue(r){let e,t=r[8][r[14]]&&ie(r);return{c(){t&&t.c(),e=Y()},l(l){t&&t.l(l),e=Y()},m(l,n){t&&t.m(l,n),T(l,e,n)},p(l,n){l[8][l[14]]?t?t.p(l,n):(t=ie(l),t.c(),t.m(e.parentNode,e)):t&&(t.d(1),t=null)},d(l){t&&t.d(l),l&&m(e)}}}function Se(r){let e,t;function l(){return r[4](r[10])}return e=new ae({props:{$$slots:{default:[Ce]},$$scope:{ctx:r}}}),e.$on("click",l),{c(){O(e.$$.fragment)},l(n){q(e.$$.fragment,n)},m(n,a){G(e,n,a),t=!0},p(n,a){r=n;const u={};a&131072&&(u.$$scope={dirty:a,ctx:r}),e.$set(u)},i(n){t||(S(e.$$.fragment,n),t=!0)},o(n){N(e.$$.fragment,n),t=!1},d(n){z(e,n)}}}function Ne(r){let e,t;return e=new ae({props:{disabled:!0,$$slots:{default:[Re]},$$scope:{ctx:r}}}),{c(){O(e.$$.fragment)},l(l){q(e.$$.fragment,l)},m(l,n){G(e,l,n),t=!0},p(l,n){const a={};n&131072&&(a.$$scope={dirty:n,ctx:l}),e.$set(a)},i(l){t||(S(e.$$.fragment,l),t=!0)},o(l){N(e.$$.fragment,l),t=!1},d(l){z(e,l)}}}function Ce(r){let e;return{c(){e=R("Block")},l(t){e=U(t,"Block")},m(t,l){T(t,e,l)},d(t){t&&m(e)}}}function Re(r){let e;return{c(){e=R("Blocked")},l(t){e=U(t,"Blocked")},m(t,l){T(t,e,l)},d(t){t&&m(e)}}}function _e(r){let e,t,l,n,a,u=r[7]+"",o,c,i,s,d=re(r[11])+"",$,P,b,k,h,B,g,D=["artURL","faceURL","thumbnail"],A=[];for(let f=0;f<3;f+=1)A[f]=ue(ce(r,D,f));const F=[Ne,Se],V=[];function J(f,v){return f[9]?0:1}return k=J(r),h=V[k]=F[k](r),{c(){e=w("div"),t=w("div");for(let f=0;f<3;f+=1)A[f].c();l=H(),n=w("div"),a=w("a"),o=R(u),i=H(),s=w("span"),$=R(d),P=H(),b=w("div"),h.c(),this.h()},l(f){e=I(f,"DIV",{class:!0,id:!0});var v=E(e);t=I(v,"DIV",{class:!0});var L=E(t);for(let j=0;j<3;j+=1)A[j].l(L);L.forEach(m),l=M(v),n=I(v,"DIV",{class:!0});var y=E(n);a=I(y,"A",{class:!0,target:!0,href:!0});var C=E(a);o=U(C,u),C.forEach(m),i=M(y),s=I(y,"SPAN",{class:!0});var K=E(s);$=U(K,d),K.forEach(m),y.forEach(m),P=M(v),b=I(v,"DIV",{class:!0});var Q=E(b);h.l(Q),Q.forEach(m),v.forEach(m),this.h()},h(){p(t,"class","col img svelte-12an48w"),p(a,"class","name svelte-12an48w"),p(a,"target","_blank"),p(a,"href",c="/?banner="+r[10]),p(s,"class","time svelte-12an48w"),p(n,"class","col info svelte-12an48w"),p(b,"class","col action svelte-12an48w"),p(e,"class","row svelte-12an48w"),p(e,"id",B=r[10])},m(f,v){T(f,e,v),_(e,t);for(let L=0;L<3;L+=1)A[L].m(t,null);_(e,l),_(e,n),_(n,a),_(a,o),_(n,i),_(n,s),_(s,$),_(e,P),_(e,b),V[k].m(b,null),g=!0},p(f,v){if(v&11){D=["artURL","faceURL","thumbnail"];let y;for(y=0;y<3;y+=1){const C=ce(f,D,y);A[y]?A[y].p(C,v):(A[y]=ue(C),A[y].c(),A[y].m(t,null))}for(;y<3;y+=1)A[y].d(1)}(!g||v&3)&&u!==(u=f[7]+"")&&ee(o,u),(!g||v&3&&c!==(c="/?banner="+f[10]))&&p(a,"href",c),(!g||v&3)&&d!==(d=re(f[11])+"")&&ee($,d);let L=k;k=J(f),k===L?V[k].p(f,v):(Z(),N(V[L],1,1,()=>{V[L]=null}),x(),h=V[k],h?h.p(f,v):(h=V[k]=F[k](f),h.c()),S(h,1),h.m(b,null)),(!g||v&3&&B!==(B=f[10]))&&p(e,"id",B)},i(f){g||(S(h),g=!0)},o(f){N(h),g=!1},d(f){f&&m(e),me(A,f),V[k].d()}}}function Ue(r){let e,t,l,n,a=r[1].length+"",u,o,c,i,s,d,$,P,b,k,h,B,g,D,A;const F=[Pe,Le],V=[];function J(f,v){return f[1].length<1?0:1}return g=J(r),D=V[g]=F[g](r),{c(){e=w("div"),t=w("div"),l=w("span"),n=R("Total: "),u=R(a),o=H(),c=w("div"),i=w("div"),s=R("Images"),d=H(),$=w("div"),P=R("Banner information"),b=H(),k=w("div"),h=R("Action"),B=H(),D.c(),this.h()},l(f){e=I(f,"DIV",{class:!0,style:!0});var v=E(e);t=I(v,"DIV",{class:!0});var L=E(t);l=I(L,"SPAN",{});var y=E(l);n=U(y,"Total: "),u=U(y,a),y.forEach(m),L.forEach(m),o=M(v),c=I(v,"DIV",{class:!0});var C=E(c);i=I(C,"DIV",{class:!0});var K=E(i);s=U(K,"Images"),K.forEach(m),d=M(C),$=I(C,"DIV",{class:!0});var Q=E($);P=U(Q,"Banner information"),Q.forEach(m),b=M(C),k=I(C,"DIV",{class:!0});var j=E(k);h=U(j,"Action"),j.forEach(m),C.forEach(m),B=M(v),D.l(v),v.forEach(m),this.h()},h(){p(t,"class","row total svelte-12an48w"),p(i,"class","col img svelte-12an48w"),p($,"class","col info svelte-12an48w"),p(k,"class","col action svelte-12an48w"),p(c,"class","row header svelte-12an48w"),p(e,"class","list"),pe(e,"--content-width","1000px")},m(f,v){T(f,e,v),_(e,t),_(t,l),_(l,n),_(l,u),_(e,o),_(e,c),_(c,i),_(i,s),_(c,d),_(c,$),_($,P),_(c,b),_(c,k),_(k,h),_(e,B),V[g].m(e,null),A=!0},p(f,[v]){(!A||v&2)&&a!==(a=f[1].length+"")&&ee(u,a);let L=g;g=J(f),g===L?V[g].p(f,v):(Z(),N(V[L],1,1,()=>{V[L]=null}),x(),D=V[g],D?D.p(f,v):(D=V[g]=F[g](f),D.c()),S(D,1),D.m(e,null))},i(f){A||(S(D),A=!0)},o(f){N(D),A=!1},d(f){f&&m(e),V[g].d()}}}let le=10;function He(r,e,t){let l=1,n=[];const a=async s=>{await Ae.block(s);const d=n.findIndex(({id:$})=>s===$);t(1,n[d].blocked=!0,n)};ve("navigation",s=>t(0,l=s));const o=(s,d=1)=>s.filter((P,b)=>{const k=b>(d-1)*le-1,h=b<le*d;return k&&h}),c=async()=>{try{const s=await fetch(De+"/storage"),{success:d,data:$=[]}=await s.json();if(!d)return;t(1,n=window._.orderBy($,["lastModified"],["desc"]))}catch(s){console.error(s),t(1,n=[])}};return ge(()=>{const s=document.createElement("script");s.src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js",document.head.append(s),s.onload=c}),[l,n,a,o,s=>a(s)]}class Me extends de{constructor(e){super(),he(this,e,He,Ue,ne,{})}}function Te(r){let e,t;return e=new Me({}),{c(){O(e.$$.fragment)},l(l){q(e.$$.fragment,l)},m(l,n){G(e,l,n),t=!0},p:X,i(l){t||(S(e.$$.fragment,l),t=!0)},o(l){N(e.$$.fragment,l),t=!1},d(l){z(e,l)}}}function je(r){let e,t,l,n,a,u,o,c,i;return u=new ae({props:{$$slots:{default:[Oe]},$$scope:{ctx:r}}}),u.$on("click",r[2]),{c(){e=w("form"),t=w("div"),l=w("input"),n=H(),a=w("div"),O(u.$$.fragment),this.h()},l(s){e=I(s,"FORM",{class:!0});var d=E(e);t=I(d,"DIV",{class:!0});var $=E(t);l=I($,"INPUT",{type:!0,class:!0}),$.forEach(m),n=M(d),a=I(d,"DIV",{class:!0});var P=E(a);q(u.$$.fragment,P),P.forEach(m),d.forEach(m),this.h()},h(){p(l,"type","text"),p(l,"class","svelte-33al2o"),p(t,"class","col"),p(a,"class","col button svelte-33al2o"),p(e,"class","svelte-33al2o")},m(s,d){T(s,e,d),_(e,t),_(t,l),se(l,r[1]),_(e,n),_(e,a),G(u,a,null),o=!0,c||(i=[te(l,"input",r[4]),te(e,"submit",Ie(r[2]))],c=!0)},p(s,d){d&2&&l.value!==s[1]&&se(l,s[1]);const $={};d&64&&($.$$scope={dirty:d,ctx:s}),u.$set($)},i(s){o||(S(u.$$.fragment,s),o=!0)},o(s){N(u.$$.fragment,s),o=!1},d(s){s&&m(e),z(u),c=!1,Ee(i)}}}function Oe(r){let e;return{c(){e=R("Show List")},l(t){e=U(t,"Show List")},m(t,l){T(t,e,l)},d(t){t&&m(e)}}}function qe(r){let e,t,l,n,a,u,o,c,i,s,d,$;t=new Be({});const P=[je,Te],b=[];function k(h,B){return h[0]?1:0}return c=k(r),i=b[c]=P[c](r),{c(){e=w("section"),O(t.$$.fragment),l=H(),n=w("div"),a=w("h1"),u=R("Control Banner"),o=H(),i.c(),this.h()},l(h){e=I(h,"SECTION",{class:!0});var B=E(e);q(t.$$.fragment,B),l=M(B),n=I(B,"DIV",{class:!0});var g=E(n);a=I(g,"H1",{class:!0});var D=E(a);u=U(D,"Control Banner"),D.forEach(m),o=M(g),i.l(g),g.forEach(m),B.forEach(m),this.h()},h(){p(a,"class","svelte-33al2o"),p(n,"class","container svelte-33al2o"),p(e,"class","svelte-33al2o")},m(h,B){T(h,e,B),G(t,e,null),_(e,l),_(e,n),_(n,a),_(a,u),_(n,o),b[c].m(n,null),s=!0,d||($=te(n,"contextmenu",ke(r[3])),d=!0)},p(h,[B]){let g=c;c=k(h),c===g?b[c].p(h,B):(Z(),N(b[g],1,1,()=>{b[g]=null}),x(),i=b[c],i?i.p(h,B):(i=b[c]=P[c](h),i.c()),S(i,1),i.m(n,null))},i(h){s||(S(t.$$.fragment,h),S(i),s=!0)},o(h){N(t.$$.fragment,h),N(i),s=!1},d(h){h&&m(e),z(t),b[c].d(),d=!1,$()}}}let Ge="1baedd25059490937a8f7a52dbaf5a7c168bc49f5bac0d7bc48bd6b58a84a421";function ze(r,e,t){let l=!1,n="";const a=async i=>{const s=new TextEncoder().encode(i),d=await crypto.subtle.digest("SHA-256",s);return Array.from(new Uint8Array(d)).map(b=>b.toString(16).padStart(2,"0")).join("")},u=async()=>{const i=await a(n.trim());t(0,l=i===Ge),!l&&t(1,n="")};function o(i){we.call(this,r,i)}function c(){n=this.value,t(1,n)}return[l,n,u,o,c]}class Ze extends de{constructor(e){super(),he(this,e,ze,qe,ne,{})}}export{Ze as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/install/_page.svelte-6780e863.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/install/_page.svelte-6780e863.js
deleted file mode 100644
index c67a1193..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/install/_page.svelte-6780e863.js
+++ /dev/null
@@ -1,73 +0,0 @@
-import{S as st,i as nt,s as ot,a as W,k as r,q as Y,M as at,h as n,c as C,l as c,m as u,r as H,n as a,N as q,a2 as Q,b as X,G as t,H as B,O as Z,A as $,C as lt,E as x,o as it}from"../../../chunks/index-c0d078cd.js";import{Y as rt}from"../../../chunks/runtime.esm-4bf604c8.js";import{A as tt}from"../../../chunks/env-f184adc0.js";import{i as ct}from"../../../chunks/app-stores-358281e6.js";const ut=`<h1>How To Install WishSimulator.App to your <span> Android Phone</span></h1>
-<h2>Why I need to Install it ?</h2>
-<p>You are not required to install it, the installed app is literally the same as the site, but I advise you to install it because it offers several advantages:</p>
-<ul>
-<li><strong>Simple to Access</strong>, you don't need to open browser and type url address manually, access the simulator directly from your HomeScreen.</li>
-<li><strong>Offline Capability</strong>, You can still open and run the simulator even if you don't have internet. But once the site has a new version, you have to connect it to the internet, the application will be updated automatically</li>
-</ul>
-<h2>Steps</h2>
-<ol>
-<li>
-<p>First, Open the site (<strong>https://wishsimulator.app</strong>) with <strong>Google Chrome</strong>.</p>
-</li>
-<li>
-<p>Wait for the site to finish loading, <strong>Click three dot</strong> on the top rignt of the browser screen</p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200664873-5d99f256-38c1-4a76-a492-329e164c8f7a.jpg" alt="three dot"></p>
-</li>
-<li>
-<p>Click <strong>Install App</strong></p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200664897-5aa28b7b-714a-4e11-9108-a65aca83fef2.jpg" alt="Install"></p>
-</li>
-<li>
-<p>Then Click the <strong>Install</strong> Button</p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200664834-e09200b7-9b44-4ab9-8639-43a9997f6f51.jpg" alt="Install Button"></p>
-</li>
-<li>
-<p>You can see the Instruction video below</p>
-<video src="https://user-images.githubusercontent.com/13815468/200663590-7497627e-3def-4ede-b883-1037e532d846.mp4" controls>
-</li>
-<li>
-<p>Congratulations, Now you can access the Simulator directly from your Homescreen !</p>
-</li>
-<li>
-<p>If You want to uninstall it, Just uninstall like a regular application. Press &amp; Hold the app Icon, then select <strong>Uninstall</strong> option.</p>
-</li>
-<li>
-<p>Alternative option, you can download and install the App from <a href="https://play.google.com/store/apps/details?id=twa.wishsimulator.app" target="_blank"><img style="width: 7rem; transform: translateY(35%)" src="/images/utility/playstore-button.webp" alt="playstore button"/></a>. But you don't need to download it if you already install WishSimulator.App directly from web, because it's literally same!</p>
-</li>
-</ol>
-`,pt=`<h1>How To Install WishSimulator.App to your <span> Windows</span></h1>
-<h2>Why I need to Install it ?</h2>
-<p>You are not required to install it, the installed app is literally the same as the site, but I advise you to install it because it offers several advantages:</p>
-<ul>
-<li><strong>Simple to Access</strong>, you don't need to open browser and type url address manually, access the simulator from your Desktop directly.</li>
-<li><strong>Offline Capability</strong>, You can still open and run the simulator even if you don't have internet. But once the site has a new version, you have to connect it to the internet, the application will be updated automatically</li>
-</ul>
-<h2>Requirement</h2>
-<ul>
-<li>You must have a browser with a chromium base, for example <strong>Google Chrome, Ms.Edge, Brave, Duckduckgo or others</strong>. <strong>Mozilla and Opera</strong> can also be used too.</li>
-</ul>
-<h2>Steps</h2>
-<ol>
-<li>
-<p>First, Open the site (<strong>https://wishsimulator.app</strong>) with one of the browsers above.</p>
-</li>
-<li>
-<p>Wait for the site to finish loading, then just navigate to the address bar, then click the install icon on the right side</p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200633549-869ae8a3-f077-4865-b120-a3e2804026b2.jpg" alt="Windows Install"></p>
-<p>You can see the video below</p>
-<video src="https://user-images.githubusercontent.com/13815468/200639254-ef34490c-e18d-4b2e-b157-a99f9b426267.mp4" controls>
-</li>
-<li>
-<p>Congratulations, Now you can access the Simulator directly from your desktop!</p>
-</li>
-<li>
-<p>If You want to uninstall it, Just uninstall like a regular application. Click start -&gt; search &quot;Genshin Impact Wish Simulator&quot; -&gt; Click <strong>Uninstall</strong> option</p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200641681-98bd462e-65f2-4ee4-8a49-227f9b8d333a.jpg" alt="OnPaste 20221109-010157"></p>
-</li>
-</ol>
-`;function ht(s){let _,p,e,m,g,l,I,A,h,i,k,f,M,d,S,N,j,b,T,P,E,y,D,G,U;return document.title=_=`
-		Install Instruction | `+s[2]("title",{default:tt})+`
-	`,{c(){p=W(),e=r("section"),m=r("header"),g=r("div"),l=r("a"),I=Y("WishSimulator.App"),A=W(),h=r("div"),i=r("button"),k=r("i"),f=Y(" Android"),M=W(),d=r("button"),S=r("i"),N=Y(" Windows"),j=W(),b=r("article"),P=W(),E=r("footer"),y=r("a"),D=Y("Start Wishing Now !"),this.h()},l(o){at('[data-svelte="svelte-12rceiw"]',document.head).forEach(n),p=C(o),e=c(o,"SECTION",{class:!0});var w=u(e);m=c(w,"HEADER",{class:!0});var F=u(m);g=c(F,"DIV",{class:!0});var J=u(g);l=c(J,"A",{href:!0});var V=u(l);I=H(V,"WishSimulator.App"),V.forEach(n),J.forEach(n),F.forEach(n),A=C(w),h=c(w,"DIV",{class:!0});var O=u(h);i=c(O,"BUTTON",{class:!0});var L=u(i);k=c(L,"I",{class:!0}),u(k).forEach(n),f=H(L," Android"),L.forEach(n),M=C(O),d=c(O,"BUTTON",{class:!0});var R=u(d);S=c(R,"I",{class:!0}),u(S).forEach(n),N=H(R," Windows"),R.forEach(n),O.forEach(n),j=C(w),b=c(w,"ARTICLE",{class:!0});var et=u(b);et.forEach(n),P=C(w),E=c(w,"FOOTER",{class:!0});var z=u(E);y=c(z,"A",{href:!0,class:!0});var K=u(y);D=H(K,"Start Wishing Now !"),K.forEach(n),z.forEach(n),w.forEach(n),this.h()},h(){a(l,"href","/"),a(g,"class","brand"),a(m,"class","svelte-y6ol5v"),a(k,"class","gi-android svelte-y6ol5v"),a(i,"class","svelte-y6ol5v"),q(i,"active",s[0]==="android"),a(S,"class","gi-windows svelte-y6ol5v"),a(d,"class","svelte-y6ol5v"),q(d,"active",s[0]==="windows"),a(h,"class","select-device svelte-y6ol5v"),a(b,"class",T=Q(s[0])+" svelte-y6ol5v"),a(y,"href","/"),a(y,"class","svelte-y6ol5v"),a(E,"class","svelte-y6ol5v"),a(e,"class","svelte-y6ol5v")},m(o,v){X(o,p,v),X(o,e,v),t(e,m),t(m,g),t(g,l),t(l,I),t(e,A),t(e,h),t(h,i),t(i,k),t(i,f),t(h,M),t(h,d),t(d,S),t(d,N),t(e,j),t(e,b),b.innerHTML=s[1],t(e,P),t(e,E),t(E,y),t(y,D),G||(U=[B(l,"click",Z(s[4])),B(i,"click",s[5]),B(d,"click",s[6]),B(y,"click",Z(s[7]))],G=!0)},p(o,[v]){v&4&&_!==(_=`
-		Install Instruction | `+o[2]("title",{default:tt})+`
-	`)&&(document.title=_),v&1&&q(i,"active",o[0]==="android"),v&1&&q(d,"active",o[0]==="windows"),v&2&&(b.innerHTML=o[1]),v&1&&T!==(T=Q(o[0])+" svelte-y6ol5v")&&a(b,"class",T)},i:$,o:$,d(o){o&&n(p),o&&n(e),G=!1,lt(U)}}}function dt(s,_,p){let e,m,g;x(s,ct,f=>p(8,m=f)),x(s,rt,f=>p(2,g=f));let l="windows";const I=f=>{p(0,l=f)};it(()=>{if(m)return p(0,l="android")});const A=()=>window.location.replace("/"),h=()=>I("android"),i=()=>I("windows"),k=()=>window.location.replace("/");return s.$$.update=()=>{s.$$.dirty&1&&p(1,e=l==="android"?ut:pt)},[l,e,g,I,A,h,i,k]}class bt extends st{constructor(_){super(),nt(this,_,dt,ht,ot,{})}}export{bt as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/privacy-policy/_page.svelte-4a885c79.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/privacy-policy/_page.svelte-4a885c79.js
deleted file mode 100644
index 31ac165d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/privacy-policy/_page.svelte-4a885c79.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import{S as H,i as q,s as G,a as b,k as p,q as I,M as L,h as o,c as S,l as y,m as d,r as W,n as u,b as k,G as a,A,E as O}from"../../../chunks/index-c0d078cd.js";import{Y as R}from"../../../chunks/runtime.esm-4bf604c8.js";import{A as C}from"../../../chunks/env-f184adc0.js";const $=`<h2>Privacy Policy</h2>
-<p>WishSimulator.App operates the <em>https://wishsimulator.app</em> website, which provides the Free SERVICE.</p>
-<p>This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service, the WishSimulator.App website.</p>
-<p>If you choose to use our Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that we collect are used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy. Our Privacy Policy was created with the help of the <a href="https://www.privacypolicytemplate.net/">Privacy Policy Template Generator</a>.</p>
-<p>The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at <em>https://wishsimulator.app</em>, unless otherwise defined in this Privacy Policy.</p>
-<h2>Information Collection and Use</h2>
-<p>WishSimulator.App does not collect or store any personally identifiable information about you.</p>
-<p>However, the app may use third party services that may collect information used to identify you. The information that these third party services request will be retained on your device and is not collected by me in any way.</p>
-<h2>Service Providers</h2>
-<p>We may employ third-party companies and individuals due to the following reasons:</p>
-<ul>
-<li>To facilitate our Service</li>
-<li>To provide the Service on our behalf</li>
-<li>To perform Service-related services; or</li>
-<li>To assist us in analyzing how our Service is used.</li>
-</ul>
-<p>We want to inform our Service users that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.</p>
-<h2>Links to Other Sites</h2>
-<p>Our Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over, and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.</p>
-<h2>Changes to This Privacy Policy</h2>
-<p>We may update our Privacy Policy from time to time. Thus, we advise you to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately, after they are posted on this page.</p>
-<h2>Contact Us</h2>
-<p>If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact the author at admin@wishsimulator.app.</p>
-<p>This privacy policy page was created at <a href="https://privacypolicytemplate.net">privacypolicytemplate.net</a> and modified/generated by <strong>App Privacy Policy Generator</strong></p>
-`;function M(m){let s,r,e,t,n,P,w,l,g,_,c;return document.title=s=`
-		Privacy Policy | `+m[0]("title",{default:C})+`
-	`,{c(){r=b(),e=p("section"),t=p("header"),n=p("h1"),P=I("Privacy Policy for WishSimulator.App"),w=b(),l=p("h2"),g=I("Genshin Impact Wish Simulator"),_=b(),c=p("article"),this.h()},l(i){L('[data-svelte="svelte-avd0f7"]',document.head).forEach(o),r=S(i),e=y(i,"SECTION",{class:!0});var v=d(e);t=y(v,"HEADER",{class:!0});var f=d(t);n=y(f,"H1",{class:!0});var T=d(n);P=W(T,"Privacy Policy for WishSimulator.App"),T.forEach(o),w=S(f),l=y(f,"H2",{class:!0});var E=d(l);g=W(E,"Genshin Impact Wish Simulator"),E.forEach(o),f.forEach(o),_=S(v),c=y(v,"ARTICLE",{class:!0});var x=d(c);x.forEach(o),v.forEach(o),this.h()},h(){u(n,"class","svelte-15i5hk1"),u(l,"class","svelte-15i5hk1"),u(t,"class","svelte-15i5hk1"),u(c,"class","svelte-15i5hk1"),u(e,"class","svelte-15i5hk1")},m(i,h){k(i,r,h),k(i,e,h),a(e,t),a(t,n),a(n,P),a(t,w),a(t,l),a(l,g),a(e,_),a(e,c),c.innerHTML=$},p(i,[h]){h&1&&s!==(s=`
-		Privacy Policy | `+i[0]("title",{default:C})+`
-	`)&&(document.title=s)},i:A,o:A,d(i){i&&o(r),i&&o(e)}}}function N(m,s,r){let e;return O(m,R,t=>r(0,e=t)),[e]}class F extends H{constructor(s){super(),q(this,s,N,M,G,{})}}export{F as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/_page.svelte-cc5d84fc.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/_page.svelte-cc5d84fc.js
deleted file mode 100644
index 82342b9a..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/_page.svelte-cc5d84fc.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as t,i as o,s,o as a}from"../../../chunks/index-c0d078cd.js";function i(e){return a(()=>window.location.replace("/")),[]}class r extends t{constructor(n){super(),o(this,n,i,null,s,{})}}export{r as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/chars/_page.svelte-35d178b5.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/chars/_page.svelte-35d178b5.js
deleted file mode 100644
index 1918c646..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/chars/_page.svelte-35d178b5.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as n,i as c,s as i,E as p,o as u}from"../../../../chunks/index-c0d078cd.js";import{p as l}from"../../../../chunks/stores-65b20c67.js";import{g as m}from"../../../../chunks/navigation-45e4daee.js";function f(t,r,o){let s;p(t,l,e=>o(0,s=e));const{url:a}=s;return u(()=>{const e=a.href.replace("/chars?a","/wishitem?a");return m(e)}),[]}class $ extends n{constructor(r){super(),c(this,r,f,null,i,{})}}export{$ as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/wishitem/_page.svelte-8e5d743d.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/wishitem/_page.svelte-8e5d743d.js
deleted file mode 100644
index ed9abca2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/wishitem/_page.svelte-8e5d743d.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import{S as O,i as $,s as P,k as d,a as S,M as W,l as h,h as f,c as q,m as C,n as p,G as E,b as w,f as g,t as v,d as I,E as A,o as N,v as R,w as G,x as L,y as Y,g as j}from"../../../../chunks/index-c0d078cd.js";import{p as z}from"../../../../chunks/stores-65b20c67.js";import{g as B}from"../../../../chunks/navigation-45e4daee.js";import{Y as F}from"../../../../chunks/runtime.esm-4bf604c8.js";import{A as b}from"../../../../chunks/env-f184adc0.js";import{d as H,a as J}from"../../../../chunks/outfit-bffb00d9.js";import{W as K,d as Q}from"../../../../chunks/WishResult-901333c5.js";function D(l){let n,a;return n=new K({props:{list:l[0],isOutfit:l[2],skip:!0,standalone:!0}}),{c(){R(n.$$.fragment)},l(t){G(n.$$.fragment,t)},m(t,o){L(n,t,o),a=!0},p(t,o){const c={};o&1&&(c.list=t[0]),o&4&&(c.isOutfit=t[2]),n.$set(c)},i(t){a||(g(n.$$.fragment,t),a=!0)},o(t){v(n.$$.fragment,t),a=!1},d(t){Y(n,t)}}}function U(l){let n,a,t,o,c,m,u;document.title=n=`
-		`+l[3](`${l[1]}.name`)+" | "+l[3]("title")+`
-	`;let e=l[0].length>0&&D(l);return{c(){a=d("meta"),t=d("meta"),o=d("meta"),c=S(),m=d("section"),e&&e.c(),this.h()},l(s){const i=W('[data-svelte="svelte-h0ssec"]',document.head);a=h(i,"META",{name:!0,content:!0}),t=h(i,"META",{property:!0,content:!0}),o=h(i,"META",{property:!0,content:!0}),i.forEach(f),c=q(s),m=h(s,"SECTION",{class:!0});var r=C(m);e&&e.l(r),r.forEach(f),this.h()},h(){p(a,"name","title"),p(a,"content",b),p(t,"property","og:title"),p(t,"content",b),p(o,"property","twitter:title"),p(o,"content",b),p(m,"class","svelte-1bfm8fx")},m(s,i){E(document.head,a),E(document.head,t),E(document.head,o),w(s,c,i),w(s,m,i),e&&e.m(m,null),u=!0},p(s,[i]){(!u||i&10)&&n!==(n=`
-		`+s[3](`${s[1]}.name`)+" | "+s[3]("title")+`
-	`)&&(document.title=n),s[0].length>0?e?(e.p(s,i),i&1&&g(e,1)):(e=D(s),e.c(),g(e,1),e.m(m,null)):e&&(j(),v(e,1,1,()=>{e=null}),I())},i(s){u||(g(e),u=!0)},o(s){v(e),u=!1},d(s){f(a),f(t),f(o),s&&f(c),s&&f(m),e&&e.d()}}}function V(l,n,a){let t,o;A(l,z,r=>a(4,t=r)),A(l,F,r=>a(3,o=r));let c=[],m="",u=!1;const{url:e}=t,s=r=>{const{name:_,type:y,useOutfit:M}=r;a(1,m=_),a(2,u=M);const T=(y==="character"?H:J).find(k=>k.name===_);return{...r,...T}};return N(()=>{try{const r=e.searchParams.get("a");if(!r)throw new Error("no Data");const _=Q.single(r),y=s(_);a(0,c=[y])}catch{console.error("something Wrong"),B("/")}}),[c,m,u,o]}class ot extends O{constructor(n){super(),$(this,n,V,U,P,{})}}export{ot as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/wishlist/_page.svelte-4dd908c0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/wishlist/_page.svelte-4dd908c0.js
deleted file mode 100644
index 8be952da..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/components/pages/screen/wishlist/_page.svelte-4dd908c0.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as $,i as b,s as v,k as D,l as w,m as y,h as u,n as k,b as E,f as l,t as i,d as S,E as W,o as C,v as M,w as P,x as R,y as q,g as x}from"../../../../chunks/index-c0d078cd.js";import{p as A}from"../../../../chunks/stores-65b20c67.js";import{g as I}from"../../../../chunks/navigation-45e4daee.js";import{d as N,a as O}from"../../../../chunks/outfit-bffb00d9.js";import{W as T,d as j}from"../../../../chunks/WishResult-901333c5.js";function f(r){let t,a;return t=new T({props:{list:r[0],skip:!0,standalone:!0}}),{c(){M(t.$$.fragment)},l(e){P(t.$$.fragment,e)},m(e,s){R(t,e,s),a=!0},p(e,s){const n={};s&1&&(n.list=e[0]),t.$set(n)},i(e){a||(l(t.$$.fragment,e),a=!0)},o(e){i(t.$$.fragment,e),a=!1},d(e){q(t,e)}}}function z(r){let t,a,e=r[0].length>1&&f(r);return{c(){t=D("section"),e&&e.c(),this.h()},l(s){t=w(s,"SECTION",{class:!0});var n=y(t);e&&e.l(n),n.forEach(u),this.h()},h(){k(t,"class","svelte-1bfm8fx")},m(s,n){E(s,t,n),e&&e.m(t,null),a=!0},p(s,[n]){s[0].length>1?e?(e.p(s,n),n&1&&l(e,1)):(e=f(s),e.c(),l(e,1),e.m(t,null)):e&&(x(),i(e,1,1,()=>{e=null}),S())},i(s){a||(l(e),a=!0)},o(s){i(e),a=!1},d(s){s&&u(t),e&&e.d()}}}function B(r,t,a){let e;W(r,A,o=>a(1,e=o));let s=[];const{url:n}=e,p=o=>o.map(m=>{const{type:_,name:g}=m,h=(_==="character"?N:O).find(d=>d.name===g);return{...m,...h}});return C(()=>{try{const o=n.searchParams.get("a");if(!o)throw new Error("no Data");const c=j.multi(o);a(0,s=p(c)||[])}catch(o){console.error("something Wrong",o),I("/")}}),[s]}class U extends ${constructor(t){super(),b(this,t,B,z,v,{})}}export{U as default};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/modules/pages/_layout.js-04cad6c0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/modules/pages/_layout.js-04cad6c0.js
deleted file mode 100644
index c6f253fc..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/modules/pages/_layout.js-04cad6c0.js
+++ /dev/null
@@ -1 +0,0 @@
-import{p}from"../../chunks/_layout-0ebf6292.js";export{p as prerender};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/start-6e2b2fa2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/start-6e2b2fa2.js
deleted file mode 100644
index 4edff441..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/immutable/start-6e2b2fa2.js
+++ /dev/null
@@ -1 +0,0 @@
-import{S as Ye,i as Xe,s as Ze,a as Qe,e as C,c as xe,b as K,g as ue,t as F,d as de,f as B,h as J,j as et,o as Oe,k as tt,l as rt,m as nt,n as ve,p as V,q as at,r as ot,u as st,v as H,w as Ae,x as Y,y as X,z as ie}from"./chunks/index-c0d078cd.js";import{g as Be,f as Je,s as G,a as Se,b as it,i as lt}from"./chunks/singletons-67e52e76.js";import{_ as U}from"./chunks/preload-helper-176e53da.js";function ct(n,e){return n==="/"||e==="ignore"?n:e==="never"?n.endsWith("/")?n.slice(0,-1):n:e==="always"&&!n.endsWith("/")?n+"/":n}function ft(n){return n.split("%25").map(decodeURI).join("%25")}function ut(n){for(const e in n)n[e]=decodeURIComponent(n[e]);return n}const dt=["href","pathname","search","searchParams","toString","toJSON"];function pt(n,e){const r=new URL(n);for(const s of dt){let o=r[s];Object.defineProperty(r,s,{get(){return e(),o},enumerable:!0,configurable:!0})}return ht(r),r}function ht(n){Object.defineProperty(n,"hash",{get(){throw new Error("Cannot access event.url.hash. Consider using `$page.url.hash` inside a component instead")}})}const _t="/__data.json";function mt(n){return n.replace(/\/$/,"")+_t}function gt(n){let e=5381;if(typeof n=="string"){let r=n.length;for(;r;)e=e*33^n.charCodeAt(--r)}else if(ArrayBuffer.isView(n)){const r=new Uint8Array(n.buffer,n.byteOffset,n.byteLength);let s=r.length;for(;s;)e=e*33^r[--s]}else throw new TypeError("value must be a string or TypedArray");return(e>>>0).toString(36)}const pe=window.fetch;window.fetch=(n,e)=>{if((n instanceof Request?n.method:e?.method||"GET")!=="GET"){const s=new URL(n instanceof Request?n.url:n.toString(),document.baseURI).href;te.delete(s)}return pe(n,e)};const te=new Map;function wt(n,e){const r=We(n,e),s=document.querySelector(r);if(s?.textContent){const{body:o,...d}=JSON.parse(s.textContent),t=s.getAttribute("data-ttl");return t&&te.set(r,{body:o,init:d,ttl:1e3*Number(t)}),Promise.resolve(new Response(o,d))}return pe(n,e)}function yt(n,e,r){if(te.size>0){const s=We(n,r),o=te.get(s);if(o){if(performance.now()<o.ttl)return new Response(o.body,o.init);te.delete(s)}}return pe(e,r)}function We(n,e){let s=`script[data-sveltekit-fetched][data-url=${JSON.stringify(n instanceof Request?n.url:n)}]`;return e?.body&&(typeof e.body=="string"||ArrayBuffer.isView(e.body))&&(s+=`[data-hash="${gt(e.body)}"]`),s}const bt=/^(\[)?(\.\.\.)?(\w+)(?:=(\w+))?(\])?$/;function vt(n){const e=[],r=[],s=[];let o=!0;return{pattern:n==="/"?/^\/$/:new RegExp(`^${kt(n).map((t,u,m)=>{const _=/^\[\.\.\.(\w+)(?:=(\w+))?\]$/.exec(t);if(_)return e.push(_[1]),r.push(_[2]),s.push(!1),"(?:/(.*))?";const g=/^\[\[(\w+)(?:=(\w+))?\]\]$/.exec(t);if(g)return e.push(g[1]),r.push(g[2]),s.push(!0),"(?:/([^/]+))?";const y=u===m.length-1;return t?"/"+t.split(/\[(.+?)\](?!\])/).map((A,I)=>{if(I%2){if(A.startsWith("x+"))return Ee(String.fromCharCode(parseInt(A.slice(2),16)));if(A.startsWith("u+"))return Ee(String.fromCharCode(...A.slice(2).split("-").map(Z=>parseInt(Z,16))));const D=bt.exec(A);if(!D)throw new Error(`Invalid param: ${A}. Params and matcher names can only have underscores and alphanumeric characters.`);const[,j,ne,M,ae]=D;return e.push(M),r.push(ae),s.push(!!j),ne?"(.*?)":j?"([^/]*)?":"([^/]+?)"}return y&&A.includes(".")&&(o=!1),Ee(A)}).join(""):void 0}).join("")}${o?"/?":""}$`),names:e,types:r,optional:s}}function Et(n){return!/^\([^)]+\)$/.test(n)}function kt(n){return n.slice(1).split("/").filter(Et)}function Rt(n,{names:e,types:r,optional:s},o){const d={};for(let t=0;t<e.length;t+=1){const u=e[t],m=r[t];let _=n[t+1];if(_||!s[t]){if(m){const g=o[m];if(!g)throw new Error(`Missing "${m}" param matcher`);if(!g(_))return}d[u]=_??""}}return d}function Ee(n){return n.normalize().replace(/[[\]]/g,"\\$&").replace(/%/g,"%25").replace(/\//g,"%2[Ff]").replace(/\?/g,"%3[Ff]").replace(/#/g,"%23").replace(/[.*+?^${}()|\\]/g,"\\$&")}function Ot(n,e,r,s){const o=new Set(e);return Object.entries(r).map(([u,[m,_,g]])=>{const{pattern:y,names:R,types:z,optional:A}=vt(u),I={id:u,exec:D=>{const j=y.exec(D);if(j)return Rt(j,{names:R,types:z,optional:A},s)},errors:[1,...g||[]].map(D=>n[D]),layouts:[0,..._||[]].map(t),leaf:d(m)};return I.errors.length=I.layouts.length=Math.max(I.errors.length,I.layouts.length),I});function d(u){const m=u<0;return m&&(u=~u),[m,n[u]]}function t(u){return u===void 0?u:[o.has(u),n[u]]}}function St(n){let e,r,s;var o=n[0][0];function d(t){return{props:{data:t[2],form:t[1]}}}return o&&(e=new o(d(n))),{c(){e&&H(e.$$.fragment),r=C()},l(t){e&&Ae(e.$$.fragment,t),r=C()},m(t,u){e&&Y(e,t,u),K(t,r,u),s=!0},p(t,u){const m={};if(u&4&&(m.data=t[2]),u&2&&(m.form=t[1]),o!==(o=t[0][0])){if(e){ue();const _=e;F(_.$$.fragment,1,0,()=>{X(_,1)}),de()}o?(e=new o(d(t)),H(e.$$.fragment),B(e.$$.fragment,1),Y(e,r.parentNode,r)):e=null}else o&&e.$set(m)},i(t){s||(e&&B(e.$$.fragment,t),s=!0)},o(t){e&&F(e.$$.fragment,t),s=!1},d(t){t&&J(r),e&&X(e,t)}}}function It(n){let e,r,s;var o=n[0][0];function d(t){return{props:{data:t[2],$$slots:{default:[Lt]},$$scope:{ctx:t}}}}return o&&(e=new o(d(n))),{c(){e&&H(e.$$.fragment),r=C()},l(t){e&&Ae(e.$$.fragment,t),r=C()},m(t,u){e&&Y(e,t,u),K(t,r,u),s=!0},p(t,u){const m={};if(u&4&&(m.data=t[2]),u&523&&(m.$$scope={dirty:u,ctx:t}),o!==(o=t[0][0])){if(e){ue();const _=e;F(_.$$.fragment,1,0,()=>{X(_,1)}),de()}o?(e=new o(d(t)),H(e.$$.fragment),B(e.$$.fragment,1),Y(e,r.parentNode,r)):e=null}else o&&e.$set(m)},i(t){s||(e&&B(e.$$.fragment,t),s=!0)},o(t){e&&F(e.$$.fragment,t),s=!1},d(t){t&&J(r),e&&X(e,t)}}}function Lt(n){let e,r,s;var o=n[0][1];function d(t){return{props:{data:t[3],form:t[1]}}}return o&&(e=new o(d(n))),{c(){e&&H(e.$$.fragment),r=C()},l(t){e&&Ae(e.$$.fragment,t),r=C()},m(t,u){e&&Y(e,t,u),K(t,r,u),s=!0},p(t,u){const m={};if(u&8&&(m.data=t[3]),u&2&&(m.form=t[1]),o!==(o=t[0][1])){if(e){ue();const _=e;F(_.$$.fragment,1,0,()=>{X(_,1)}),de()}o?(e=new o(d(t)),H(e.$$.fragment),B(e.$$.fragment,1),Y(e,r.parentNode,r)):e=null}else o&&e.$set(m)},i(t){s||(e&&B(e.$$.fragment,t),s=!0)},o(t){e&&F(e.$$.fragment,t),s=!1},d(t){t&&J(r),e&&X(e,t)}}}function ze(n){let e,r=n[5]&&Ge(n);return{c(){e=tt("div"),r&&r.c(),this.h()},l(s){e=rt(s,"DIV",{id:!0,"aria-live":!0,"aria-atomic":!0,style:!0});var o=nt(e);r&&r.l(o),o.forEach(J),this.h()},h(){ve(e,"id","svelte-announcer"),ve(e,"aria-live","assertive"),ve(e,"aria-atomic","true"),V(e,"position","absolute"),V(e,"left","0"),V(e,"top","0"),V(e,"clip","rect(0 0 0 0)"),V(e,"clip-path","inset(50%)"),V(e,"overflow","hidden"),V(e,"white-space","nowrap"),V(e,"width","1px"),V(e,"height","1px")},m(s,o){K(s,e,o),r&&r.m(e,null)},p(s,o){s[5]?r?r.p(s,o):(r=Ge(s),r.c(),r.m(e,null)):r&&(r.d(1),r=null)},d(s){s&&J(e),r&&r.d()}}}function Ge(n){let e;return{c(){e=at(n[6])},l(r){e=ot(r,n[6])},m(r,s){K(r,e,s)},p(r,s){s&64&&st(e,r[6])},d(r){r&&J(e)}}}function $t(n){let e,r,s,o,d;const t=[It,St],u=[];function m(g,y){return g[0][1]?0:1}e=m(n),r=u[e]=t[e](n);let _=n[4]&&ze(n);return{c(){r.c(),s=Qe(),_&&_.c(),o=C()},l(g){r.l(g),s=xe(g),_&&_.l(g),o=C()},m(g,y){u[e].m(g,y),K(g,s,y),_&&_.m(g,y),K(g,o,y),d=!0},p(g,[y]){let R=e;e=m(g),e===R?u[e].p(g,y):(ue(),F(u[R],1,1,()=>{u[R]=null}),de(),r=u[e],r?r.p(g,y):(r=u[e]=t[e](g),r.c()),B(r,1),r.m(s.parentNode,s)),g[4]?_?_.p(g,y):(_=ze(g),_.c(),_.m(o.parentNode,o)):_&&(_.d(1),_=null)},i(g){d||(B(r),d=!0)},o(g){F(r),d=!1},d(g){u[e].d(g),g&&J(s),_&&_.d(g),g&&J(o)}}}function At(n,e,r){let{stores:s}=e,{page:o}=e,{components:d}=e,{form:t}=e,{data_0:u=null}=e,{data_1:m=null}=e;et(s.page.notify);let _=!1,g=!1,y=null;return Oe(()=>{const R=s.page.subscribe(()=>{_&&(r(5,g=!0),r(6,y=document.title||"untitled page"))});return r(4,_=!0),R}),n.$$set=R=>{"stores"in R&&r(7,s=R.stores),"page"in R&&r(8,o=R.page),"components"in R&&r(0,d=R.components),"form"in R&&r(1,t=R.form),"data_0"in R&&r(2,u=R.data_0),"data_1"in R&&r(3,m=R.data_1)},n.$$.update=()=>{n.$$.dirty&384&&s.page.set(o)},[d,t,u,m,_,g,y,s,o]}class Pt extends Ye{constructor(e){super(),Xe(this,e,At,$t,Ze,{stores:7,page:8,components:0,form:1,data_0:2,data_1:3})}}const jt={},he=[()=>U(()=>import("./chunks/0-10f2ffe2.js"),["./chunks/0-10f2ffe2.js","./chunks/_layout-0ebf6292.js","./components/pages/_layout.svelte-31cfe670.js","./chunks/index-c0d078cd.js","./chunks/preload-helper-176e53da.js","./chunks/runtime.esm-4bf604c8.js","./chunks/index-0189b6d0.js","./chunks/stores-65b20c67.js","./chunks/singletons-67e52e76.js","./chunks/app-stores-358281e6.js","./chunks/outfit-bffb00d9.js","./chunks/index-123e2351.js","./chunks/custom-banner-3b9921d3.js","./chunks/env-f184adc0.js","./chunks/api-cookie-d587b0da.js","./chunks/sync-9a12991b.js","./chunks/i18n-ec7c8da1.js","./assets/_layout-1f2c5d23.css","./assets/Iklan-27674bcf.css"],import.meta.url),()=>U(()=>import("./chunks/1-5f40e9fe.js"),["./chunks/1-5f40e9fe.js","./components/pages/_error.svelte-4f5ba18e.js","./chunks/index-c0d078cd.js","./chunks/stores-65b20c67.js","./chunks/singletons-67e52e76.js","./chunks/index-0189b6d0.js","./chunks/RandomBackground-34695851.js","./chunks/app-stores-358281e6.js","./assets/RandomBackground-c01fc64e.css","./assets/_error-c9470412.css"],import.meta.url),()=>U(()=>import("./chunks/2-e802658e.js"),["./chunks/2-e802658e.js","./chunks/_page-87ee6ee5.js","./chunks/preload-helper-176e53da.js","./chunks/index-c0d078cd.js","./chunks/stores-65b20c67.js","./chunks/singletons-67e52e76.js","./chunks/index-0189b6d0.js","./chunks/index-123e2351.js","./chunks/WishResult-901333c5.js","./chunks/runtime.esm-4bf604c8.js","./chunks/app-stores-358281e6.js","./chunks/audio-460a91c6.js","./chunks/outfit-bffb00d9.js","./chunks/lazyload-05dfa468.js","./assets/lazyload-d703da40.css","./chunks/env-f184adc0.js","./assets/WishResult-effb9a08.css","./chunks/api-cookie-d587b0da.js","./chunks/i18n-ec7c8da1.js","./chunks/custom-banner-3b9921d3.js","./chunks/ButtonModal-7ee3a4a1.js","./assets/ButtonModal-dd0ea437.css","./assets/_page-75fbe034.css"],import.meta.url),()=>U(()=>import("./chunks/3-ec629fe3.js"),["./chunks/3-ec629fe3.js","./components/pages/adkey/_page.svelte-0e8e16a9.js","./chunks/index-c0d078cd.js","./chunks/index-123e2351.js","./chunks/audio-460a91c6.js","./chunks/app-stores-358281e6.js","./chunks/index-0189b6d0.js","./chunks/accessKey-2a3cada9.js","./chunks/api-cookie-d587b0da.js","./chunks/ButtonModal-7ee3a4a1.js","./chunks/runtime.esm-4bf604c8.js","./assets/ButtonModal-dd0ea437.css","./assets/_page-41952c63.css"],import.meta.url),()=>U(()=>import("./chunks/4-80ff4ce0.js"),["./chunks/4-80ff4ce0.js","./components/pages/bnlist/_page.svelte-42422615.js","./chunks/index-c0d078cd.js","./chunks/lazyload-05dfa468.js","./assets/lazyload-d703da40.css","./chunks/RandomBackground-34695851.js","./chunks/app-stores-358281e6.js","./chunks/index-0189b6d0.js","./assets/RandomBackground-c01fc64e.css","./chunks/env-f184adc0.js","./chunks/custom-banner-3b9921d3.js","./chunks/timeago-17bb7280.js","./chunks/_pagination-cd90c7ad.js","./assets/_pagination-660172f1.css","./assets/_page-8ecfd270.css"],import.meta.url),()=>U(()=>import("./chunks/5-f9b12e78.js"),["./chunks/5-f9b12e78.js","./components/pages/install/_page.svelte-6780e863.js","./chunks/index-c0d078cd.js","./chunks/runtime.esm-4bf604c8.js","./chunks/index-0189b6d0.js","./chunks/env-f184adc0.js","./chunks/app-stores-358281e6.js","./assets/_page-c955f7fd.css"],import.meta.url),()=>U(()=>import("./chunks/6-2e57bd17.js"),["./chunks/6-2e57bd17.js","./components/pages/privacy-policy/_page.svelte-4a885c79.js","./chunks/index-c0d078cd.js","./chunks/runtime.esm-4bf604c8.js","./chunks/index-0189b6d0.js","./chunks/env-f184adc0.js","./assets/_page-3c659a81.css"],import.meta.url),()=>U(()=>import("./chunks/7-838d287c.js"),["./chunks/7-838d287c.js","./components/pages/screen/_page.svelte-cc5d84fc.js","./chunks/index-c0d078cd.js"],import.meta.url),()=>U(()=>import("./chunks/8-d7c5761b.js"),["./chunks/8-d7c5761b.js","./components/pages/screen/chars/_page.svelte-35d178b5.js","./chunks/index-c0d078cd.js","./chunks/stores-65b20c67.js","./chunks/singletons-67e52e76.js","./chunks/index-0189b6d0.js","./chunks/navigation-45e4daee.js"],import.meta.url),()=>U(()=>import("./chunks/9-35d90427.js"),["./chunks/9-35d90427.js","./components/pages/screen/wishitem/_page.svelte-8e5d743d.js","./chunks/index-c0d078cd.js","./chunks/stores-65b20c67.js","./chunks/singletons-67e52e76.js","./chunks/index-0189b6d0.js","./chunks/navigation-45e4daee.js","./chunks/runtime.esm-4bf604c8.js","./chunks/env-f184adc0.js","./chunks/outfit-bffb00d9.js","./chunks/index-123e2351.js","./chunks/WishResult-901333c5.js","./chunks/app-stores-358281e6.js","./chunks/audio-460a91c6.js","./chunks/lazyload-05dfa468.js","./assets/lazyload-d703da40.css","./assets/WishResult-effb9a08.css","./assets/_page-38811b6b.css"],import.meta.url),()=>U(()=>import("./chunks/10-7182ee37.js"),["./chunks/10-7182ee37.js","./components/pages/screen/wishlist/_page.svelte-4dd908c0.js","./chunks/index-c0d078cd.js","./chunks/stores-65b20c67.js","./chunks/singletons-67e52e76.js","./chunks/index-0189b6d0.js","./chunks/navigation-45e4daee.js","./chunks/outfit-bffb00d9.js","./chunks/index-123e2351.js","./chunks/WishResult-901333c5.js","./chunks/runtime.esm-4bf604c8.js","./chunks/app-stores-358281e6.js","./chunks/audio-460a91c6.js","./chunks/lazyload-05dfa468.js","./assets/lazyload-d703da40.css","./chunks/env-f184adc0.js","./assets/WishResult-effb9a08.css","./assets/_page-38811b6b.css"],import.meta.url)],Nt=[],Tt={"/":[2],"/adkey":[3],"/bnlist":[4],"/install":[5],"/privacy-policy":[6],"/screen":[7],"/screen/chars":[8],"/screen/wishitem":[9],"/screen/wishlist":[10]},Ut={handleError:({error:n})=>{console.error(n)}};class Ie{constructor(e,r){this.status=e,typeof r=="string"?this.body={message:r}:r?this.body=r:this.body={message:`Error: ${e}`}}toString(){return JSON.stringify(this.body)}}class Ke{constructor(e,r){this.status=e,this.location=r}}async function Dt(n){for(const e in n)if(typeof n[e]?.then=="function")return Object.fromEntries(await Promise.all(Object.entries(n).map(async([r,s])=>[r,await s])));return n}Object.getOwnPropertyNames(Object.prototype).sort().join("\0");Object.getOwnPropertyNames(Object.prototype).sort().join("\0");const Vt=-1,qt=-2,Ct=-3,Ft=-4,Bt=-5,Jt=-6;function zt(n){if(typeof n=="number")return s(n,!0);if(!Array.isArray(n)||n.length===0)throw new Error("Invalid input");const e=n,r=Array(e.length);function s(o,d=!1){if(o===Vt)return;if(o===Ct)return NaN;if(o===Ft)return 1/0;if(o===Bt)return-1/0;if(o===Jt)return-0;if(d)throw new Error("Invalid input");if(o in r)return r[o];const t=e[o];if(!t||typeof t!="object")r[o]=t;else if(Array.isArray(t))if(typeof t[0]=="string")switch(t[0]){case"Date":r[o]=new Date(t[1]);break;case"Set":const m=new Set;r[o]=m;for(let y=1;y<t.length;y+=1)m.add(s(t[y]));break;case"Map":const _=new Map;r[o]=_;for(let y=1;y<t.length;y+=2)_.set(s(t[y]),s(t[y+1]));break;case"RegExp":r[o]=new RegExp(t[1],t[2]);break;case"Object":r[o]=Object(t[1]);break;case"BigInt":r[o]=BigInt(t[1]);break;case"null":const g=Object.create(null);r[o]=g;for(let y=1;y<t.length;y+=2)g[t[y]]=s(t[y+1]);break}else{const u=new Array(t.length);r[o]=u;for(let m=0;m<t.length;m+=1){const _=t[m];_!==qt&&(u[m]=s(_))}}else{const u={};r[o]=u;for(const m in t){const _=t[m];u[m]=s(_)}}return r[o]}return s(0)}const He="sveltekit:scroll",q="sveltekit:index",le=Ot(he,Nt,Tt,jt),Le=he[0],$e=he[1];Le();$e();let re={};try{re=JSON.parse(sessionStorage[He])}catch{}function ke(n){re[n]=Se()}function Gt({target:n,base:e,trailing_slash:r}){const s=[];let o=null;const d={before_navigate:[],after_navigate:[]};let t={branch:[],error:null,url:null},u=!1,m=!1,_=!0,g=!1,y=!1,R=!1,z=!1,A,I=history.state?.[q];I||(I=Date.now(),history.replaceState({...history.state,[q]:I},"",location.href));const D=re[I];D&&(history.scrollRestoration="manual",scrollTo(D.x,D.y));let j,ne,M;async function ae(){M=M||Promise.resolve(),await M,M=null;const a=new URL(location.href),l=ge(a,!0);o=null,await je(l,a,[])}async function Z(a,{noScroll:l=!1,replaceState:c=!1,keepFocus:i=!1,state:f={},invalidateAll:p=!1},h,w){return typeof a=="string"&&(a=new URL(a,Be(document))),we({url:a,scroll:l?Se():null,keepfocus:i,redirect_chain:h,details:{state:f,replaceState:c},nav_token:w,accepted:()=>{p&&(z=!0)},blocked:()=>{},type:"goto"})}async function Pe(a){const l=ge(a,!1);if(!l)throw new Error(`Attempted to prefetch a URL that does not belong to this app: ${a}`);return o={id:l.id,promise:Ue(l).then(c=>(c.type==="loaded"&&c.state.error&&(o=null),c))},o.promise}async function je(a,l,c,i,f={},p){ne=f;let h=a&&await Ue(a);if(h||(h=await Ce(l,{id:null},ee(new Error(`Not found: ${l.pathname}`),{url:l,params:{},route:{id:null}}),404)),l=a?.url||l,ne!==f)return!1;if(h.type==="redirect")if(c.length>10||c.includes(l.pathname))h=await oe({status:500,error:ee(new Error("Redirect loop"),{url:l,params:{},route:{id:null}}),url:l,route:{id:null}});else return Z(new URL(h.location,l).href,{},[...c,l.pathname],f),!1;else h.props?.page?.status>=400&&await G.updated.check()&&await se(l);if(s.length=0,z=!1,g=!0,i&&i.details){const{details:w}=i,E=w.replaceState?0:1;w.state[q]=I+=E,history[w.replaceState?"replaceState":"pushState"](w.state,"",l)}if(o=null,m){t=h.state,h.props.page&&(h.props.page.url=l);const w=fe();A.$set(h.props),w()}else Ne(h);if(i){const{scroll:w,keepfocus:E}=i;if(E||Re(),await ie(),_){const b=l.hash&&document.getElementById(l.hash.slice(1));w?scrollTo(w.x,w.y):b?b.scrollIntoView():scrollTo(0,0)}}else await ie();_=!0,h.props.page&&(j=h.props.page),p&&p(),g=!1}function Ne(a){t=a.state;const l=document.querySelector("style[data-sveltekit]");l&&l.remove(),j=a.props.page;const c=fe();A=new Pt({target:n,props:{...a.props,stores:G},hydrate:!0}),c();const i={from:null,to:ce("to",{params:t.params,route:{id:t.route?.id??null},url:new URL(location.href)}),willUnload:!1,type:"enter"};d.after_navigate.forEach(f=>f(i)),m=!0}async function Q({url:a,params:l,branch:c,status:i,error:f,route:p,form:h}){const w=c.filter(Boolean),E={type:"loaded",state:{url:a,params:l,branch:c,error:f,route:p},props:{components:w.map(k=>k.node.component)}};h!==void 0&&(E.props.form=h);let b={},O=!j;for(let k=0;k<w.length;k+=1){const L=w[k];b={...b,...L.data},(O||!t.branch.some(N=>N===L))&&(E.props[`data_${k}`]=b,O=O||Object.keys(L.data??{}).length>0)}if(O||(O=Object.keys(j.data).length!==Object.keys(b).length),!t.url||a.href!==t.url.href||t.error!==f||h!==void 0||O){E.props.page={error:f,params:l,route:p,status:i,url:a,form:h,data:O?b:j.data},Object.defineProperty(E.props.page,"routeId",{get(){throw new Error("$page.routeId has been replaced by $page.route.id")},enumerable:!1});const k=(L,N)=>{Object.defineProperty(E.props.page,L,{get:()=>{throw new Error(`$page.${L} has been replaced by $page.url.${N}`)}})};k("origin","origin"),k("path","pathname"),k("query","searchParams")}return E}async function _e({loader:a,parent:l,url:c,params:i,route:f,server_data_node:p}){let h=null;const w={dependencies:new Set,params:new Set,parent:!1,route:!1,url:!1},E=await a();if(E.shared?.load){let b=function(...v){for(const k of v){const{href:L}=new URL(k,c);w.dependencies.add(L)}};const O={route:{get id(){return w.route=!0,f.id}},params:new Proxy(i,{get:(v,k)=>(w.params.add(k),v[k])}),data:p?.data??null,url:pt(c,()=>{w.url=!0}),async fetch(v,k){let L;v instanceof Request?(L=v.url,k={body:v.method==="GET"||v.method==="HEAD"?void 0:await v.blob(),cache:v.cache,credentials:v.credentials,headers:v.headers,integrity:v.integrity,keepalive:v.keepalive,method:v.method,mode:v.mode,redirect:v.redirect,referrer:v.referrer,referrerPolicy:v.referrerPolicy,signal:v.signal,...k}):L=v;const N=new URL(L,c).href;return b(N),m?yt(L,N,k):wt(L,k)},setHeaders:()=>{},depends:b,parent(){return w.parent=!0,l()}};Object.defineProperties(O,{props:{get(){throw new Error("@migration task: Replace `props` with `data` stuff https://github.com/sveltejs/kit/discussions/5774#discussioncomment-3292693")},enumerable:!1},session:{get(){throw new Error("session is no longer available. See https://github.com/sveltejs/kit/discussions/5883")},enumerable:!1},stuff:{get(){throw new Error("@migration task: Remove stuff https://github.com/sveltejs/kit/discussions/5774#discussioncomment-3292693")},enumerable:!1},routeId:{get(){throw new Error("routeId has been replaced by route.id")},enumerable:!1}}),h=await E.shared.load.call(null,O)??null,h=h?await Dt(h):null}return{node:E,loader:a,server:p,shared:E.shared?.load?{type:"data",data:h,uses:w}:null,data:h??p?.data??null}}function Te(a,l,c,i,f){if(z)return!0;if(!i)return!1;if(i.parent&&a||i.route&&l||i.url&&c)return!0;for(const p of i.params)if(f[p]!==t.params[p])return!0;for(const p of i.dependencies)if(s.some(h=>h(new URL(p))))return!0;return!1}function me(a,l){return a?.type==="data"?{type:"data",data:a.data,uses:{dependencies:new Set(a.uses.dependencies??[]),params:new Set(a.uses.params??[]),parent:!!a.uses.parent,route:!!a.uses.route,url:!!a.uses.url}}:a?.type==="skip"?l??null:null}async function Ue({id:a,invalidating:l,url:c,params:i,route:f}){if(o?.id===a)return o.promise;const{errors:p,layouts:h,leaf:w}=f,E=[...h,w];p.forEach(S=>S?.().catch(()=>{})),E.forEach(S=>S?.[1]().catch(()=>{}));let b=null;const O=t.url?a!==t.url.pathname+t.url.search:!1,v=t.route?a!==t.route.id:!1,k=E.reduce((S,$,T)=>{const P=t.branch[T],W=!!$?.[0]&&(P?.loader!==$[1]||Te(S.some(Boolean),v,O,P.server?.uses,i));return S.push(W),S},[]);if(k.some(Boolean)){try{b=await Me(c,k)}catch(S){return oe({status:500,error:ee(S,{url:c,params:i,route:{id:f.id}}),url:c,route:f})}if(b.type==="redirect")return b}const L=b?.nodes;let N=!1;const ye=E.map(async(S,$)=>{if(!S)return;const T=t.branch[$],P=L?.[$];if((!P||P.type==="skip")&&S[1]===T?.loader&&!Te(N,v,O,T.shared?.uses,i))return T;if(N=!0,P?.type==="error")throw P;return _e({loader:S[1],url:c,params:i,route:f,parent:async()=>{const Fe={};for(let be=0;be<$;be+=1)Object.assign(Fe,(await ye[be])?.data);return Fe},server_data_node:me(P===void 0&&S[0]?{type:"skip"}:P??null,T?.server)})});for(const S of ye)S.catch(()=>{});const x=[];for(let S=0;S<E.length;S+=1)if(E[S])try{x.push(await ye[S])}catch($){if($ instanceof Ke)return{type:"redirect",location:$.location};let T=500,P;L?.includes($)?(T=$.status??T,P=$.error):$ instanceof Ie?(T=$.status,P=$.body):P=ee($,{params:i,url:c,route:{id:f.id}});const W=await De(S,x,p);return W?await Q({url:c,params:i,branch:x.slice(0,W.idx).concat(W.node),status:T,error:P,route:f}):await Ce(c,{id:f.id},P,T)}else x.push(void 0);return await Q({url:c,params:i,branch:x,status:200,error:null,route:f,form:l?void 0:null})}async function De(a,l,c){for(;a--;)if(c[a]){let i=a;for(;!l[i];)i-=1;try{return{idx:i+1,node:{node:await c[a](),loader:c[a],data:{},server:null,shared:null}}}catch{continue}}}async function oe({status:a,error:l,url:c,route:i}){const f={},p=await Le();let h=null;if(p.server)try{const b=await Me(c,[!0]);if(b.type!=="data"||b.nodes[0]&&b.nodes[0].type!=="data")throw 0;h=b.nodes[0]??null}catch{(c.origin!==location.origin||c.pathname!==location.pathname||u)&&await se(c)}const w=await _e({loader:Le,url:c,params:f,route:i,parent:()=>Promise.resolve({}),server_data_node:me(h)}),E={node:await $e(),loader:$e,shared:null,server:null,data:null};return await Q({url:c,params:f,branch:[w,E],status:a,error:l,route:null})}function ge(a,l){if(Ve(a))return;const c=ft(a.pathname.slice(e.length)||"/");for(const i of le){const f=i.exec(c);if(f){const p=new URL(a.origin+ct(a.pathname,r)+a.search+a.hash);return{id:p.pathname+p.search,invalidating:l,route:i,params:ut(f),url:p}}}}function Ve(a){return a.origin!==location.origin||!a.pathname.startsWith(e)}function qe({url:a,type:l,intent:c,delta:i}){let f=!1;const p={from:ce("from",{params:t.params,route:{id:t.route?.id??null},url:t.url}),to:ce("to",{params:c?.params??null,route:{id:c?.route?.id??null},url:a}),willUnload:!c,type:l};i!==void 0&&(p.delta=i);const h={...p,cancel:()=>{f=!0}};return y||d.before_navigate.forEach(w=>w(h)),f?null:p}async function we({url:a,scroll:l,keepfocus:c,redirect_chain:i,details:f,type:p,delta:h,nav_token:w,accepted:E,blocked:b}){const O=ge(a,!1),v=qe({url:a,type:p,delta:h,intent:O});if(!v){b();return}ke(I),E(),y=!0,m&&G.navigating.set(v),await je(O,a,i,{scroll:l,keepfocus:c,details:f},w,()=>{y=!1,d.after_navigate.forEach(k=>k(v)),G.navigating.set(null)})}async function Ce(a,l,c,i){return a.origin===location.origin&&a.pathname===location.pathname&&!u?await oe({status:i,error:c,url:a,route:l}):await se(a)}function se(a){return location.href=a.href,new Promise(()=>{})}return{after_navigate:a=>{Oe(()=>(d.after_navigate.push(a),()=>{const l=d.after_navigate.indexOf(a);d.after_navigate.splice(l,1)}))},before_navigate:a=>{Oe(()=>(d.before_navigate.push(a),()=>{const l=d.before_navigate.indexOf(a);d.before_navigate.splice(l,1)}))},disable_scroll_handling:()=>{(g||!m)&&(_=!1)},goto:(a,l={})=>{if("keepfocus"in l&&!("keepFocus"in l))throw new Error("`keepfocus` has been renamed to `keepFocus` (note the difference in casing)");if("noscroll"in l&&!("noScroll"in l))throw new Error("`noscroll` has been renamed to `noScroll` (note the difference in casing)");return Z(a,l,[])},invalidate:a=>{if(a===void 0)throw new Error("`invalidate()` (with no arguments) has been replaced by `invalidateAll()`");if(typeof a=="function")s.push(a);else{const{href:l}=new URL(a,location.href);s.push(c=>c.href===l)}return ae()},invalidateAll:()=>(z=!0,ae()),prefetch:async a=>{const l=new URL(a,Be(document));await Pe(l)},prefetch_routes:async a=>{const c=(a?le.filter(i=>a.some(f=>i.exec(f))):le).map(i=>Promise.all([...i.layouts,i.leaf].map(f=>f?.[1]())));await Promise.all(c)},apply_action:async a=>{if(a.type==="error"){const l=new URL(location.href),{branch:c,route:i}=t;if(!i)return;const f=await De(t.branch.length,c,i.errors);if(f){const p=await Q({url:l,params:t.params,branch:c.slice(0,f.idx).concat(f.node),status:500,error:a.error,route:i});t=p.state;const h=fe();A.$set(p.props),h(),ie().then(Re)}}else if(a.type==="redirect")Z(a.location,{invalidateAll:!0},[]);else{const l={form:a.data,page:{...j,form:a.data,status:a.status}},c=fe();A.$set(l),c(),a.type==="success"&&ie().then(Re)}},_start_router:()=>{history.scrollRestoration="manual",addEventListener("beforeunload",i=>{let f=!1;if(!y){const p={from:ce("from",{params:t.params,route:{id:t.route?.id??null},url:t.url}),to:null,willUnload:!0,type:"leave",cancel:()=>f=!0};d.before_navigate.forEach(h=>h(p))}f?(i.preventDefault(),i.returnValue=""):history.scrollRestoration="auto"}),addEventListener("visibilitychange",()=>{if(document.visibilityState==="hidden"){ke(I);try{sessionStorage[He]=JSON.stringify(re)}catch{}}});const a=i=>{const{url:f,options:p,has:h}=Je(i);if(f&&p.prefetch&&!Ve(f)){if(p.reload||h.rel_external||h.target||h.download)return;Pe(f)}};let l;const c=i=>{clearTimeout(l),l=setTimeout(()=>{i.target?.dispatchEvent(new CustomEvent("sveltekit:trigger_prefetch",{bubbles:!0}))},20)};addEventListener("touchstart",a),addEventListener("mousemove",c),addEventListener("sveltekit:trigger_prefetch",a),addEventListener("click",i=>{if(i.button||i.which!==1||i.metaKey||i.ctrlKey||i.shiftKey||i.altKey||i.defaultPrevented)return;const{a:f,url:p,options:h,has:w}=Je(i);if(!f||!p||!(f instanceof SVGAElement)&&p.protocol!==location.protocol&&!(p.protocol==="https:"||p.protocol==="http:")||w.download)return;if(h.reload||w.rel_external||w.target){qe({url:p,type:"link"})||i.preventDefault(),y=!0;return}const[b,O]=p.href.split("#");if(O!==void 0&&b===location.href.split("#")[0]){R=!0,ke(I),t.url=p,G.page.set({...j,url:p}),G.page.notify();return}we({url:p,scroll:h.noscroll?Se():null,keepfocus:!1,redirect_chain:[],details:{state:{},replaceState:p.href===location.href},accepted:()=>i.preventDefault(),blocked:()=>i.preventDefault(),type:"link"})}),addEventListener("popstate",i=>{if(i.state){if(i.state[q]===I)return;const f=i.state[q]-I;we({url:new URL(location.href),scroll:re[i.state[q]],keepfocus:!1,redirect_chain:[],details:null,accepted:()=>{I=i.state[q]},blocked:()=>{history.go(-f)},type:"popstate",delta:f})}}),addEventListener("hashchange",()=>{R&&(R=!1,history.replaceState({...history.state,[q]:++I},"",location.href))});for(const i of document.querySelectorAll("link"))i.rel==="icon"&&(i.href=i.href);addEventListener("pageshow",i=>{i.persisted&&G.navigating.set(null)})},_hydrate:async({status:a,error:l,node_ids:c,params:i,route:f,data:p,form:h})=>{u=!0;const w=new URL(location.href);let E;try{const b=c.map(async(O,v)=>{const k=p[v];return _e({loader:he[O],url:w,params:i,route:f,parent:async()=>{const L={};for(let N=0;N<v;N+=1)Object.assign(L,(await b[N]).data);return L},server_data_node:me(k)})});E=await Q({url:w,params:i,branch:await Promise.all(b),status:a,error:l,form:h,route:le.find(({id:O})=>O===f.id)??null})}catch(b){if(b instanceof Ke){await se(new URL(b.location,location.href));return}E=await oe({status:b instanceof Ie?b.status:500,error:ee(b,{url:w,params:i,route:f}),url:w,route:f})}Ne(E)}}}async function Me(n,e){const r=new URL(n);r.pathname=mt(n.pathname);const s=await pe(r.href,{headers:{"x-sveltekit-invalidated":e.map(d=>d?"1":"").join(",")}}),o=await s.json();if(!s.ok)throw new Error(o);return o.nodes?.forEach(d=>{d?.type==="data"&&(d.data=zt(d.data),d.uses={dependencies:new Set(d.uses.dependencies??[]),params:new Set(d.uses.params??[]),parent:!!d.uses.parent,route:!!d.uses.route,url:!!d.uses.url})}),o}function ee(n,e){return n instanceof Ie?n.body:Ut.handleError({error:n,event:e})??{message:e.route.id!=null?"Internal Error":"Not Found"}}const Kt=["hash","href","host","hostname","origin","pathname","port","protocol","search","searchParams","toString","toJSON"];function ce(n,e){for(const r of Kt)Object.defineProperty(e,r,{get(){throw new Error(`The navigation shape changed - ${n}.${r} should now be ${n}.url.${r}`)},enumerable:!1});return Object.defineProperty(e,"routeId",{get(){throw new Error(`The navigation shape changed - ${n}.routeId should now be ${n}.route.id`)},enumerable:!1}),e}function fe(){return()=>{}}function Re(){const n=document.querySelector("[autofocus]");if(n)n.focus();else{const e=document.body,r=e.getAttribute("tabindex");e.tabIndex=-1,e.focus({preventScroll:!0}),setTimeout(()=>{getSelection()?.removeAllRanges()}),r!==null?e.setAttribute("tabindex",r):e.removeAttribute("tabindex")}}async function Yt({env:n,hydrate:e,paths:r,target:s,trailing_slash:o}){it(r);const d=Gt({target:s,base:r.base,trailing_slash:o});lt({client:d}),e?await d._hydrate(e):d.goto(location.href,{replaceState:!0}),d._start_router()}export{Yt as start};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/version.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/version.json
deleted file mode 100644
index 6045e41c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/internal/version.json
+++ /dev/null
@@ -1 +0,0 @@
-{"version":"1707053248816"}
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/menu-active.png b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/menu-active.png
deleted file mode 100644
index 05dbc54f..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/menu-active.png and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/meta-picture.jpg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/meta-picture.jpg
deleted file mode 100644
index b789f2e0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/meta-picture.jpg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/placeholder-cdn.webp b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/placeholder-cdn.webp
deleted file mode 100644
index 1458e7fc..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/placeholder-cdn.webp and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/robots.txt b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/robots.txt
deleted file mode 100644
index 7fd85e06..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/robots.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-# https://www.robotstxt.org/robotstxt.html
-User-agent: *
-Allow: /install
-Allow: /privacy-policy
-Allow: /ads.txt
-Allow: /$
-Disallow: /
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/safari-pinned-tab.svg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/safari-pinned-tab.svg
deleted file mode 100644
index 217a6c91..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/safari-pinned-tab.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="1081.000000pt" height="1081.000000pt" viewBox="0 0 1081.000000 1081.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.14, written by Peter Selinger 2001-2017
-</metadata>
-<g transform="translate(0.000000,1081.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M14 10801 c-2 -2 -4 -2431 -4 -5398 l0 -5393 28 -1 c15 0 2444 -1
-5397 -1 l5370 -1 1 5399 1 5399 -5394 0 c-2967 0 -5397 -2 -5399 -4z"/>
-</g>
-</svg>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/result-list.ogg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/result-list.ogg
deleted file mode 100644
index 57aedb0b..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/result-list.ogg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-3star.ogg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-3star.ogg
deleted file mode 100644
index 38e81244..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-3star.ogg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-4star.ogg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-4star.ogg
deleted file mode 100644
index 90e93c9d..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-4star.ogg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-5star.ogg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-5star.ogg
deleted file mode 100644
index a4f42e79..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/reveal-5star.ogg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/wish-backsound.ogg b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/wish-backsound.ogg
deleted file mode 100644
index ce312de6..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sfx/wish-backsound.ogg and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sitemap.xml b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sitemap.xml
deleted file mode 100644
index bd6c919e..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/sitemap.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
-  <url>
-    <loc>https://wishsimulator.app</loc>
-    <changefreq>weekly</changefreq>
-    <lastmod>2023-05-23</lastmod>
-    <priority>0.8</priority>
-  </url>
-  <url>
-    <loc>https://wishsimulator.app/install</loc>
-    <changefreq>monthly</changefreq>
-    <lastmod>2023-04-08</lastmod>
-  </url>
-  <url>
-    <loc>https://wishsimulator.app/privacy-policy</loc>
-    <changefreq>monthly</changefreq>
-    <lastmod>2023-04-08</lastmod>
-  </url>
-</urlset>
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/3star-single.mp4 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/3star-single.mp4
deleted file mode 100644
index e118c340..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/3star-single.mp4 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/4star-multi.mp4 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/4star-multi.mp4
deleted file mode 100644
index bfeb4fc9..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/4star-multi.mp4 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/4star-single.mp4 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/4star-single.mp4
deleted file mode 100644
index b533f569..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/4star-single.mp4 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/5star-multi.mp4 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/5star-multi.mp4
deleted file mode 100644
index b3e92dc0..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/5star-multi.mp4 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/5star-single.mp4 b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/5star-single.mp4
deleted file mode 100644
index 6d74b85c..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/5star-single.mp4 and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/bg.webm b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/bg.webm
deleted file mode 100644
index cd3ae1c2..00000000
Binary files a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/client/videos/bg.webm and /dev/null differ
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/fallback.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/fallback.html
deleted file mode 100644
index 130c07da..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/fallback.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link rel="modulepreload" href="/internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="/internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="/internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="/internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="/internal/immutable/chunks/preload-helper-176e53da.js">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-		<script type="module" data-sveltekit-hydrate="45h">
-			import { start } from "/internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: null,
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="45h"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script></div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/adkey.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/adkey.html
deleted file mode 100644
index 4519cc78..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/adkey.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="./internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_page-41952c63.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/ButtonModal-dd0ea437.css" rel="stylesheet">
-		<link rel="modulepreload" href="./internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="./internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/adkey/_page.svelte-0e8e16a9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/audio-460a91c6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/accessKey-2a3cada9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/ButtonModal-7ee3a4a1.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "./internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 3],
-					params: {},
-					route: {"id":"/adkey"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/bnlist.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/bnlist.html
deleted file mode 100644
index 277fe0ee..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/bnlist.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="./internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_page-8ecfd270.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/lazyload-d703da40.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/RandomBackground-c01fc64e.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_pagination-660172f1.css" rel="stylesheet">
-		<link rel="modulepreload" href="./internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="./internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/bnlist/_page.svelte-42422615.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/lazyload-05dfa468.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/RandomBackground-34695851.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/timeago-17bb7280.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_pagination-cd90c7ad.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "./internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 4],
-					params: {},
-					route: {"id":"/bnlist"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/index.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/index.html
deleted file mode 100644
index cbe0ad41..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/index.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="./internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/WishResult-effb9a08.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/lazyload-d703da40.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_page-75fbe034.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/ButtonModal-dd0ea437.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/ObtainedItem-64c93daf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/ModalConvert-1cf56ccf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_modal-balance-4f630c28.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/index-99507031.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/CheckBox-4ae22161.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/index-db37b75c.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_pagination-660172f1.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/index-191c38e6.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/index-9dd1fc3f.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/index-2b8cdfa9.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/RandomBackground-c01fc64e.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/index-f0ee7e4a.css" rel="stylesheet">
-		<link rel="modulepreload" href="./internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="./internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_page.svelte-7faf7689.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/WishResult-901333c5.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/audio-460a91c6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/lazyload-05dfa468.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_page-87ee6ee5.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/ButtonModal-7ee3a4a1.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="null" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="1pb5y2l">
-			import { start } from "./internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 2],
-					params: {},
-					route: {"id":"/"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="1pb5y2l"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/install.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/install.html
deleted file mode 100644
index cbee602a..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/install.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="./internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_page-c955f7fd.css" rel="stylesheet">
-		<link rel="modulepreload" href="./internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="./internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/install/_page.svelte-6780e863.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "./internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 5],
-					params: {},
-					route: {"id":"/install"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/privacy-policy.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/privacy-policy.html
deleted file mode 100644
index 4a73fc04..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/privacy-policy.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="./internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/_page-3c659a81.css" rel="stylesheet">
-		<link rel="modulepreload" href="./internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="./internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/privacy-policy/_page.svelte-4a885c79.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "./internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 6],
-					params: {},
-					route: {"id":"/privacy-policy"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen.html
deleted file mode 100644
index f805379b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen.html
+++ /dev/null
@@ -1,123 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="./internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="./internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link rel="modulepreload" href="./internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="./internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="./internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="./internal/immutable/components/pages/screen/_page.svelte-cc5d84fc.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "./internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 7],
-					params: {},
-					route: {"id":"/screen"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/chars.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/chars.html
deleted file mode 100644
index 438b3553..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/chars.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="../internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link rel="modulepreload" href="../internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="../internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="../internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="../internal/immutable/components/pages/screen/chars/_page.svelte-35d178b5.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/navigation-45e4daee.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "../internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 8],
-					params: {},
-					route: {"id":"/screen/chars"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/wishitem.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/wishitem.html
deleted file mode 100644
index 6351d222..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/wishitem.html
+++ /dev/null
@@ -1,130 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="../internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/_page-38811b6b.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/WishResult-effb9a08.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/lazyload-d703da40.css" rel="stylesheet">
-		<link rel="modulepreload" href="../internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="../internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="../internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="../internal/immutable/components/pages/screen/wishitem/_page.svelte-8e5d743d.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/navigation-45e4daee.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/WishResult-901333c5.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/audio-460a91c6.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/lazyload-05dfa468.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "../internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 9],
-					params: {},
-					route: {"id":"/screen/wishitem"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/wishlist.html b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/wishlist.html
deleted file mode 100644
index b3485be7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/prerendered/pages/screen/wishlist.html
+++ /dev/null
@@ -1,130 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-	<head>
-		<meta charset="utf-8" />
-		<meta
-			name="viewport"
-			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"
-		/>
-		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />
-		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />
-		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />
-
-		<meta property="og:type" content="profile" />
-		<meta property="profile:username" content="AguzzTN54" />
-		<meta property="twitter:card" content="summary_large_image" />
-		<meta name="author" content="AguzzTN54" />
-		<meta name="robots" content="index, follow" />
-
-		<meta name="language" content="English" />
-		<meta property="og:locale" content="en_US" />
-		<meta property="og:locale:alternate" content="id_ID" />
-		<meta property="og:locale:alternate" content="it_IT" />
-		<meta property="og:locale:alternate" content="ja_JP" />
-		<meta property="og:locale:alternate" content="pt_BR" />
-		<meta property="og:locale:alternate" content="ru_RU" />
-		<meta property="og:locale:alternate" content="th_TH" />
-		<meta property="og:locale:alternate" content="vi_VN" />
-		<meta property="og:locale:alternate" content="zh_CN" />
-		<title>Genshin Impact Wish Simulator</title>
-
-		<link rel="stylesheet" href="/icons.css" />
-		<link rel="icon" href="/favicon.ico" />
-		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
-		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
-		<meta name="msapplication-TileColor" content="#2d89ef" />
-		<meta name="theme-color" content="#ffffff" />
-
-		<meta http-equiv="content-security-policy" content="">
-		<link href="../internal/immutable/assets/_layout-1f2c5d23.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/Iklan-27674bcf.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/_page-38811b6b.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/WishResult-effb9a08.css" rel="stylesheet">
-		<link href="../internal/immutable/assets/lazyload-d703da40.css" rel="stylesheet">
-		<link rel="modulepreload" href="../internal/immutable/start-6e2b2fa2.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-c0d078cd.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/singletons-67e52e76.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-0189b6d0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/preload-helper-176e53da.js">
-		<link rel="modulepreload" href="../internal/immutable/components/pages/_layout.svelte-31cfe670.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/runtime.esm-4bf604c8.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/stores-65b20c67.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/app-stores-358281e6.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/outfit-bffb00d9.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/index-123e2351.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/custom-banner-3b9921d3.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/env-f184adc0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/api-cookie-d587b0da.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/sync-9a12991b.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/i18n-ec7c8da1.js">
-		<link rel="modulepreload" href="../internal/immutable/modules/pages/_layout.js-04cad6c0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/_layout-0ebf6292.js">
-		<link rel="modulepreload" href="../internal/immutable/components/pages/screen/wishlist/_page.svelte-4dd908c0.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/navigation-45e4daee.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/WishResult-901333c5.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/audio-460a91c6.js">
-		<link rel="modulepreload" href="../internal/immutable/chunks/lazyload-05dfa468.js"><meta name="description" content="" data-svelte="svelte-uo0i7a"><meta name="keywords" content="" data-svelte="svelte-uo0i7a"><meta property="al:web:url" content="" data-svelte="svelte-uo0i7a"><link rel="fluid-icon" href="/meta-picture.jpg" title="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:url" content="" data-svelte="svelte-uo0i7a"><meta property="og:type" content="website" data-svelte="svelte-uo0i7a"><meta property="og:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta property="og:description" content="" data-svelte="svelte-uo0i7a"><meta property="og:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><meta name="twitter:card" content="summary_large_image" data-svelte="svelte-uo0i7a"><meta property="twitter:domain" content="" data-svelte="svelte-uo0i7a"><meta property="twitter:url" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:title" content="Genshin Impact Wish Simulator" data-svelte="svelte-uo0i7a"><meta name="twitter:description" content="" data-svelte="svelte-uo0i7a"><meta name="twitter:image" content="/meta-picture.jpg" data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/aaqishu.woff" as="font" type="font/woff" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_global_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_th_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_jp_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="preload" href="/fonts/optimized_zh_web.woff2" as="font" type="font/woff2" crossorigin data-svelte="svelte-uo0i7a"><link rel="manifest" href="/appmanifest.json" data-svelte="svelte-uo0i7a">
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"></script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		</script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">
-
-
-
-
-
-
-
-
-<div class="loader svelte-o4a6oh"><div class="content svelte-o4a6oh"><div class="progress svelte-o4a6oh"><div class="icon"><i class="gi-pyro"></i>
-					<i class="gi-hydro"></i>
-					<i class="gi-anemo"></i>
-					<i class="gi-electro"></i>
-					<i class="gi-dendro"></i>
-					<i class="gi-cryo"></i>
-					<i class="gi-geo"></i></div>
-				<div class="blend svelte-o4a6oh"><div class="unfilled svelte-o4a6oh"></div>
-					<div class="filled animate svelte-o4a6oh" style="width:-1.00%"></div></div></div>
-
-			<div class="text connecting svelte-o4a6oh">Connecting</div>
-
-			</div></div>
-
-<main class="en-US" style="--screen-height: 100vh;--screen-width: undefinedpx; --genshin-font: var(--gi-global-font);">
-
-	
-	<a href="/" class="uid" title="Try Your Luck by this Simulator"></a>
-</main>
-
-
-		<script type="module" data-sveltekit-hydrate="144ob2e">
-			import { start } from "../internal/immutable/start-6e2b2fa2.js";
-
-			start({
-				env: {},
-				hydrate: {
-					status: 200,
-					error: null,
-					node_ids: [0, 10],
-					params: {},
-					route: {"id":"/screen/wishlist"},
-					data: [null,null],
-					form: null
-				},
-				paths: {"base":"","assets":""},
-				target: document.querySelector('[data-sveltekit-hydrate="144ob2e"]').parentNode,
-				trailing_slash: "never"
-			});
-		</script>
-	</div>
-	</body>
-</html>
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/appmanifest.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/appmanifest.json
deleted file mode 100644
index bce0ba27..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/appmanifest.json
+++ /dev/null
@@ -1 +0,0 @@
-{"short_name":"WishSimulator.App","start_url":"/?pwasc=homescreen","display":"fullscreen","background_color":"#ffffff","lang":"en","scope":"/","orientation":"landscape","id":"wishsimulator.app","theme_color":"#ffffff","display_override":["fullscreen","window-controls-overlay","standalone","minimal-ui","browser"],"scope_extensions":[{"origin":"wishsimulator.app"},{"origin":"wishsimulator.pages.dev"}],"categories":["games","utilities"],"dir":"auto","icons":[{"src":"./icons/icon-16x16.png","sizes":"16x16","type":"image/png"},{"src":"./icons/icon-32x32.png","sizes":"32x32","type":"image/png"},{"src":"./icons/icon-72x72.png","sizes":"72x72","type":"image/png"},{"src":"./icons/icon-96x96.png","sizes":"96x96","type":"image/png"},{"src":"./icons/icon-128x128.png","sizes":"128x128","type":"image/png"},{"src":"./icons/icon-144x144.png","sizes":"144x144","type":"image/png"},{"src":"./icons/icon-152x152.png","sizes":"152x152","type":"image/png"},{"src":"./icons/icon-192x192.png","sizes":"192x192","type":"image/png","purpose":"maskable"},{"src":"./icons/icon-256x256.png","sizes":"256x256","type":"image/png"},{"src":"./icons/icon-384x384.png","sizes":"384x384","type":"image/png","purpose":"any"},{"src":"./icons/icon-512x512.png","sizes":"512x512","type":"image/png"}],"screenshots":[{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561929-52a32a57-bd2c-473c-b25d-dcd8877ce253.jpg","label":"Section 1","type":"image/jpg"},{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561938-c8429695-d7fe-4cf2-8391-d3e78daa789c.jpg","label":"Section 2","type":"image/jpg"},{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561909-2f965a06-6cdb-45a3-92c9-646546d514f8.jpg","label":"Section 3","type":"image/jpg"},{"sizes":"591x1280","src":"https://user-images.githubusercontent.com/13815468/200561919-b76b11e2-dbda-4534-845e-48714f60fc40.jpg","label":"Section 4","type":"image/jpg"}],"handle_links":"preferred","prefer_related_applications":true,"launch_handler":{"client_mode":["focus-existing","auto"]},"related_applications":[{"platform":"webapp","url":"undefined/appmanifest.json"},{"platform":"play","url":"https://play.google.com/store/apps/details?id=twa.wishsimulator.app","id":"twa.wishsimulator.app"}],"edge_side_panel":{"preferred_width":412}}
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ButtonGeneral.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ButtonGeneral.js
deleted file mode 100644
index 430d9f63..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ButtonGeneral.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import { c as create_ssr_component, f as createEventDispatcher } from "./index.js";
-const ButtonGeneral_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "button.svelte-hp2f5i{position:relative;border:3.5px solid transparent;border-radius:50px;background-color:#e0ddd4;box-shadow:0 2px 2px 0 rgba(100, 100, 100, 0.2), 0 2px 2px 0 rgba(100, 100, 100, 0.19);padding:0.25rem 1.5rem;margin:2px 5px;transition:all 0.2s;border:solid transparent;font-size:90%}button.dark.svelte-hp2f5i{color:white;background-color:#4a5265}button.svelte-hp2f5i:hover:not(:disabled){border-color:#fff}button.svelte-hp2f5i:active:not(:disabled){animation-name:svelte-hp2f5i-colourchange;animation-duration:0.2s;animation-fill-mode:forwards;transform:scale(0.95)}@keyframes svelte-hp2f5i-colourchange{50%{color:#ffffda;background:#ede9cc}100%{border-color:darkgray;color:white;background:linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), #e0ddd4}}.mobile button.svelte-hp2f5i{margin:1px 2px;padding:0.15rem 1.3rem;font-size:90%}@media screen and (max-width: 900px){button.svelte-hp2f5i{margin:2px 5px}}@media screen and (max-width: 400px){button.svelte-hp2f5i{font-size:120%;margin:1px 2px}}",
-  map: null
-};
-const ButtonGeneral = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { disabled = false } = $$props;
-  let { dark = false } = $$props;
-  createEventDispatcher();
-  if ($$props.disabled === void 0 && $$bindings.disabled && disabled !== void 0)
-    $$bindings.disabled(disabled);
-  if ($$props.dark === void 0 && $$bindings.dark && dark !== void 0)
-    $$bindings.dark(dark);
-  $$result.css.add(css);
-  return `<button ${disabled ? "disabled" : ""} class="${["svelte-hp2f5i", dark ? "dark" : ""].join(" ").trim()}">${slots.default ? slots.default({}) : ``}
-</button>`;
-});
-export {
-  ButtonGeneral as B
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ButtonModal.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ButtonModal.js
deleted file mode 100644
index da8111d7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ButtonModal.js
+++ /dev/null
@@ -1,40 +0,0 @@
-import { c as create_ssr_component, a as subscribe, f as createEventDispatcher, d as add_attribute, e as escape } from "./index.js";
-import { Y } from "./runtime.esm.js";
-const ButtonModal_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "button.svelte-1sz47b8.svelte-1sz47b8{border-radius:40px;align-items:center;padding:0 0 0 0.3em;max-width:100%;height:2.3rem;transition:all 0.2s;position:relative;text-align:center;border:3.5px solid transparent;transition:all 0.2s;width:200px}button.light.svelte-1sz47b8.svelte-1sz47b8{background-color:#ece5d8;color:#4a5265}button.svelte-1sz47b8.svelte-1sz47b8:not(.light){color:white;background-color:#4a5265}button.svelte-1sz47b8.svelte-1sz47b8:active:not(:disabled){transform:scale(0.9);background-color:#e0ddd4 !important;border-color:rgb(195, 195, 195) !important;box-shadow:rgb(160 175 190 / 60%) 0px 0px 7px 5px;color:#fff}button.svelte-1sz47b8.svelte-1sz47b8:disabled{opacity:0.7}button.svelte-1sz47b8 i.svelte-1sz47b8{width:1.7rem;height:1.7rem;background-color:#353533;border-radius:100%;display:inline-flex;justify-content:center;align-items:center;font-size:0.8rem;position:absolute;left:2%;top:50%;transform:translateY(-50%)}button.svelte-1sz47b8.svelte-1sz47b8:hover:not(:disabled){background-color:rgb(51, 57, 71)}button.light.svelte-1sz47b8.svelte-1sz47b8:hover:not(:disabled){background-color:#c3b8a1}button.svelte-1sz47b8 i.svelte-1sz47b8{color:#ffc107}button.svelte-1sz47b8 i.gi-times.svelte-1sz47b8{color:#3f9ad1}.mobile button.svelte-1sz47b8.svelte-1sz47b8{height:2.1rem}.mobile button.svelte-1sz47b8.svelte-1sz47b8:not(.light){width:130px}@media screen and (max-width: 700px){main:not(.mobile) button.svelte-1sz47b8.svelte-1sz47b8{font-size:0.85rem}main:not(.mobile) button.svelte-1sz47b8.svelte-1sz47b8:not(.light){width:120px}}",
-  map: null
-};
-const ButtonModal = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  const isSlotpresent = $$props.$$slots;
-  let { type = "confirm" } = $$props;
-  let { text = "" } = $$props;
-  let { disabled = false } = $$props;
-  let { light = false } = $$props;
-  let { width = "" } = $$props;
-  let { icon = "" } = $$props;
-  createEventDispatcher();
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.text === void 0 && $$bindings.text && text !== void 0)
-    $$bindings.text(text);
-  if ($$props.disabled === void 0 && $$bindings.disabled && disabled !== void 0)
-    $$bindings.disabled(disabled);
-  if ($$props.light === void 0 && $$bindings.light && light !== void 0)
-    $$bindings.light(light);
-  if ($$props.width === void 0 && $$bindings.width && width !== void 0)
-    $$bindings.width(width);
-  if ($$props.icon === void 0 && $$bindings.icon && icon !== void 0)
-    $$bindings.icon(icon);
-  $$result.css.add(css);
-  $$unsubscribe_t();
-  return `<button ${disabled ? "disabled" : ""}${add_attribute("style", width ? `width:${width}` : "", 0)} class="${["svelte-1sz47b8", light ? "light" : ""].join(" ").trim()}">${icon ? `<i class="${"gi-" + escape(icon, true) + " svelte-1sz47b8"}"></i>` : `${type === "confirm" ? `<i class="${"gi-circle-o svelte-1sz47b8"}"></i>` : `<i class="${"gi-times svelte-1sz47b8"}"></i>`}`}
-
-	${isSlotpresent ? `${slots.default ? slots.default({}) : ``}` : `<span>${escape(text || (type === "confirm" ? $t("confirmButton") : $t("cancelButton")))}</span>`}
-</button>`;
-});
-export {
-  ButtonModal as B
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/RandomBackground.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/RandomBackground.js
deleted file mode 100644
index fe8a6d8f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/RandomBackground.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import { c as create_ssr_component, a as subscribe, d as add_attribute } from "./index.js";
-import { d as assets } from "./app-stores.js";
-const RandomBackground_svelte_svelte_type_style_lang = "";
-const css = {
-  code: ".bg.svelte-1ghl7jp{width:100vw;height:100%;-o-object-fit:cover;object-fit:cover;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%) scale(1.1);filter:blur(10px);-webkit-filter:blur(10px);z-index:+1}",
-  map: null
-};
-const RandomBackground = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  const random = (min, max) => {
-    min = Math.ceil(min);
-    max = Math.floor(max);
-    return Math.floor(Math.random() * (max - min + 1)) + min;
-  };
-  $$result.css.add(css);
-  $$unsubscribe_assets();
-  return `<img class="${"bg svelte-1ghl7jp"}"${add_attribute("src", $assets[`bg${random(1, 20)}.webp`], 0)} alt="${"background"}">`;
-});
-export {
-  RandomBackground as R
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/WishResult.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/WishResult.js
deleted file mode 100644
index c33c0313..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/WishResult.js
+++ /dev/null
@@ -1,1462 +0,0 @@
-import { q as assign, i as is_function, c as create_ssr_component, a as subscribe, d as add_attribute, e as escape, v as validate_component, m as missing_component, k as each, g as getContext, s as setContext, j as null_to_empty } from "./index.js";
-import { Y, D } from "./runtime.esm.js";
-import hotkeys from "hotkeys-js";
-import { d as assets, D as customData, i as isMobile, x as primogem, E as initialAmount, a as viewportHeight, v as viewportWidth } from "./app-stores.js";
-import "howler";
-import "overlayscrollbars";
-import "html-to-image";
-import { B as ButtonGeneral } from "./ButtonGeneral.js";
-import "file-saver";
-import "./env.js";
-const storageLocal = {
-  getData() {
-    const data = localStorage.getItem("WishSimulator.App");
-    if (!data)
-      return { data: {} };
-    const parsed = JSON.parse(data);
-    return parsed;
-  },
-  get(key) {
-    const { data } = this.getData();
-    return data[key] || {};
-  },
-  set(key, value) {
-    const { data } = this.getData();
-    data[key] = value;
-    localStorage.setItem("WishSimulator.App", JSON.stringify({ data }));
-  },
-  initEvent() {
-    const localStore = localStorage.setItem;
-    localStorage.setItem = function(key) {
-      if (key === "WishSimulator.App") {
-        const event = new Event("storageUpdate");
-        document.dispatchEvent(event);
-      }
-      localStore.apply(this, arguments);
-    };
-  }
-};
-const localPity = {
-  get(pityBanner) {
-    const pity = storageLocal.get("pity");
-    return pity[pityBanner] || 0;
-  },
-  set(pityBanner, value) {
-    const pity = storageLocal.get("pity");
-    pity[pityBanner] = value;
-    storageLocal.set("pity", pity);
-  }
-};
-const localBalance = {
-  all() {
-    const balance = storageLocal.get("balance");
-    return balance;
-  },
-  get(currency) {
-    const balance = storageLocal.get("balance");
-    return balance[currency] || 0;
-  },
-  set(currency, value) {
-    const balance = storageLocal.get("balance");
-    balance[currency] = value;
-    storageLocal.set("balance", balance);
-  }
-};
-const rollCounter = {
-  get(banner) {
-    const rollCount = storageLocal.get("rollCounter");
-    return rollCount[banner] || 0;
-  },
-  set(banner, rollNumber) {
-    if (!banner)
-      return;
-    const rollCount = storageLocal.get("rollCounter");
-    rollCount[banner] = rollNumber;
-    storageLocal.set("rollCounter", rollCount);
-  },
-  put(banner) {
-    if (!banner)
-      return;
-    const rollCount = storageLocal.get("rollCounter");
-    const before = rollCount[banner] || 0;
-    rollCount[banner] = before + 1;
-    storageLocal.set("rollCounter", rollCount);
-  }
-};
-const localConfig = {
-  get(key) {
-    const config = storageLocal.get("config");
-    const isValue = config[key] !== null;
-    return isValue ? config[key] : null;
-  },
-  set(key, value) {
-    const config = storageLocal.get("config");
-    config[key] = value;
-    storageLocal.set("config", config);
-  }
-};
-const owneditem = {
-  getAll() {
-    const items = storageLocal.get("ownedItem");
-    return items;
-  },
-  get(itemID) {
-    const db = this.getAll();
-    const selected = db[itemID];
-    if (!selected)
-      return { qty: 0, itemID };
-    const { manual, wish } = selected;
-    return { itemID, qty: manual + wish };
-  },
-  put({ itemID, source = "wish", qty = 1 }) {
-    const allItems = storageLocal.get("ownedItem");
-    const { manual = 0, wish = 0 } = allItems[itemID] || {};
-    allItems[itemID] = {
-      manual: source === "wish" ? manual : qty + manual,
-      wish: source === "wish" ? qty + wish : wish
-    };
-    storageLocal.set("ownedItem", allItems);
-    return allItems[itemID];
-  }
-};
-const fatepointManager = {
-  getAll() {
-    const storedData = storageLocal.get("fatepoint");
-    const allPoint = Array.isArray(storedData) ? storedData : [];
-    return allPoint;
-  },
-  restore(data) {
-    const localData = this.getAll();
-    localData.push(data);
-    storageLocal.set("fatepoint", localData);
-  },
-  init({ version, phase } = {}) {
-    this._version = version;
-    this._phase = phase;
-    const storedData = storageLocal.get("fatepoint");
-    this._db = Array.isArray(storedData) ? storedData : [];
-    this._recordIndex = this._db.findIndex((d) => d.phase === phase && d.version === version);
-    return this;
-  },
-  set(point, selectedIndex) {
-    const { _recordIndex: i, _version: version, _phase: phase, _db: db } = this;
-    const newData = { version, phase, point, selected: selectedIndex };
-    if (i < 0)
-      db.push(newData);
-    else
-      db[i] = newData;
-    storageLocal.set("fatepoint", db);
-    return;
-  },
-  getInfo() {
-    const { _recordIndex: i, _db: db } = this;
-    if (i < 0)
-      return { selected: null, point: null };
-    const { selected, point } = db[i];
-    return { selected, point };
-  },
-  remove() {
-    const { _recordIndex: i, _db: db } = this;
-    const afterRemoved = db.filter((d, index) => index !== i);
-    storageLocal.set("fatepoint", afterRemoved);
-  }
-};
-const dailyWelkin = {
-  getData() {
-    const welkin = storageLocal.get("welkin");
-    if (!welkin)
-      return { remaining: 0, diff: 0 };
-    const utc = new Date().getTime() - 3 * 3600 * 1e3;
-    const today = new Date(utc).toDateString();
-    const counter = Math.abs(new Date(today) - new Date(welkin.latestCheckIn));
-    welkin.diff = Math.ceil(counter / (1e3 * 60 * 60 * 24));
-    return welkin;
-  },
-  checkin(action = "checkin") {
-    let { remaining, latestCheckIn } = this.getData();
-    const time = new Date().getTime() - 3 * 3600 * 1e3;
-    const today = new Date(time).toDateString();
-    if (!latestCheckIn && action !== "checkin") {
-      const object2 = { remaining: 29, latestCheckIn: today };
-      storageLocal.set("welkin", object2);
-      return object2;
-    }
-    if (action !== "checkin") {
-      const days = remaining < 1 ? 29 : 30;
-      const object2 = { remaining: days + remaining, latestCheckIn: today };
-      storageLocal.set("welkin", object2);
-      return object2;
-    }
-    const counter = Math.abs(new Date(today) - new Date(latestCheckIn));
-    const diffDays = Math.ceil(counter / (1e3 * 60 * 60 * 24));
-    remaining = remaining - diffDays;
-    remaining = remaining < 0 ? 0 : remaining;
-    latestCheckIn = today;
-    const object = { remaining, latestCheckIn };
-    storageLocal.set("welkin", object);
-    return object;
-  }
-};
-const ownedOutfits = {
-  getAll() {
-    const items = storageLocal.get("ownedOutfits");
-    return Array.isArray(items) ? items : [];
-  },
-  get(outfitName) {
-    const outfits2 = this.getAll();
-    return outfits2.find(({ name }) => name === outfitName);
-  },
-  getByChar(charName) {
-    const outfits2 = this.getAll();
-    return outfits2.filter(({ characterName }) => characterName === charName);
-  },
-  set({ outfitName, isSet = true, characterName = null } = {}) {
-    const outfits2 = this.getAll().map((outfit) => {
-      if (outfit.characterName !== characterName)
-        return outfit;
-      outfit.isSet = false;
-      return outfit;
-    });
-    if (this.get(outfitName)) {
-      const index = outfits2.findIndex(({ name }) => name === outfitName);
-      outfits2[index].isSet = isSet;
-    } else {
-      outfits2.push({ name: outfitName, characterName, isSet });
-    }
-    storageLocal.set("ownedOutfits", outfits2);
-  }
-};
-const localrate = {
-  get(key) {
-    const rates = storageLocal.get("probabilityRates");
-    const isValue = rates[key] && rates[key] !== null && rates[key] !== void 0;
-    return isValue ? rates[key] : {};
-  },
-  set(key, value) {
-    const rates = storageLocal.get("probabilityRates");
-    rates[key] = value;
-    storageLocal.set("probabilityRates", rates);
-  },
-  reset(key) {
-    const rates = storageLocal.get("probabilityRates");
-    delete rates[key];
-    storageLocal.set("probabilityRates", rates);
-  }
-};
-const outfits = [
-  {
-    name: "5-star-outrider",
-    characterName: "amber",
-    rarity: 4,
-    offset: {
-      splashArt: {
-        x: 1.62,
-        y: -5.56,
-        scale: 1.46
-      },
-      wishCard: {
-        x: 66,
-        y: 37.80674157303371,
-        scale: 7.71
-      }
-    }
-  },
-  {
-    name: "favonian-fevotion",
-    characterName: "jean",
-    rarity: 4,
-    offset: {
-      splashArt: {
-        x: 2.7412280701754383,
-        y: -3.0804093567251463,
-        scale: 1.36
-      },
-      wishCard: {
-        x: 32.412623006447234,
-        y: 61.74109263657957,
-        scale: 9.17
-      }
-    }
-  },
-  {
-    name: "executor_s-thorns",
-    characterName: "rosaria",
-    rarity: 4,
-    offset: {
-      splashArt: {
-        x: -0.608187134502924,
-        y: -5.552631578947368,
-        scale: 1.24
-      },
-      wishCard: {
-        x: 11.309806582965727,
-        y: 64.11163895486936,
-        scale: 8.95
-      }
-    }
-  },
-  {
-    name: "flowing-fate",
-    characterName: "mona",
-    rarity: 4,
-    offset: {
-      splashArt: {
-        x: -1.1023391812865497,
-        y: -0.4473684210526315,
-        scale: 1.6
-      },
-      wishCard: {
-        x: 10.902612826603326,
-        y: 52.65320665083135,
-        scale: 10.88
-      }
-    }
-  },
-  {
-    release: 1.6,
-    name: "summertime-sparkle",
-    characterName: "barbara",
-    rarity: 4,
-    price: 1680,
-    offset: {
-      splashArt: {
-        x: -0.7410714285714286,
-        y: 3.386904761904762,
-        scale: 1.16
-      },
-      wishCard: {
-        x: 39.886128364389236,
-        y: 70.09178743961353,
-        scale: 8.85
-      }
-    }
-  },
-  {
-    release: 1.6,
-    name: "sea-breeze-dandelion",
-    characterName: "jean",
-    rarity: 4,
-    price: 1680,
-    promoPrice: 1350,
-    offset: {
-      splashArt: {
-        x: 0.37351190476190477,
-        y: 3.2901785714285716,
-        scale: 1.18
-      },
-      wishCard: {
-        x: -25.54865424430642,
-        y: 92.17874396135267,
-        scale: 9.93
-      },
-      storeCard: {
-        t: -15,
-        l: -30,
-        w: 125
-      }
-    }
-  },
-  {
-    release: 2.4,
-    name: "orchid_s-evening-gown",
-    characterName: "ningguang",
-    rarity: 4,
-    price: 1680,
-    offset: {
-      splashArt: {
-        x: -2.604166666666667,
-        y: 2.2738095238095237,
-        scale: 1.04
-      },
-      wishCard: {
-        x: -18.871635610766045,
-        y: 74.78985507246377,
-        scale: 7.08
-      }
-    }
-  },
-  {
-    release: 2.4,
-    name: "opulent-splendor",
-    characterName: "keqing",
-    rarity: 4,
-    price: 1680,
-    promoPrice: 1350,
-    offset: {
-      splashArt: {
-        x: 1.638392857142857,
-        y: 6.901785714285714,
-        scale: 1.1
-      },
-      wishCard: {
-        x: 39.34782608695652,
-        y: 86.33574879227052,
-        scale: 7.46
-      },
-      storeCard: {
-        t: 0,
-        l: -20,
-        w: 110
-      }
-    }
-  },
-  {
-    release: 2.8,
-    name: "ein-immernachtstraum",
-    characterName: "fischl",
-    rarity: 4,
-    price: 1680,
-    offset: {
-      splashArt: {
-        x: -2.5580357142857144,
-        y: 2.915178571428571,
-        scale: 1.04
-      },
-      wishCard: {
-        x: -34.648033126293996,
-        y: 74.1352657004831,
-        scale: 7.46
-      }
-    }
-  },
-  {
-    release: 2.8,
-    name: "red-dead-of-night",
-    characterName: "diluc",
-    rarity: 5,
-    price: 2480,
-    promoPrice: 1980,
-    offset: {
-      splashArt: {
-        x: -12.322916666666666,
-        y: -7.5773809523809526,
-        scale: 1.52
-      },
-      wishCard: {
-        x: -92.41200828157349,
-        y: 61.80434782608696,
-        scale: 11.77
-      },
-      storeCard: {
-        l: -45,
-        t: -50,
-        w: 130
-      }
-    }
-  },
-  {
-    release: 3.4,
-    name: "a-sobriquet-under-shade",
-    characterName: "lisa",
-    rarity: 4,
-    price: 1680,
-    offset: {
-      splashArt: {
-        x: 1.1770833333333333,
-        y: -0.9925595238095238,
-        scale: 1.2
-      },
-      wishCard: {
-        x: -80.76604554865425,
-        y: 63.37198067632851,
-        scale: 8.67
-      }
-    }
-  },
-  {
-    release: 3.4,
-    name: "springbloom-missive",
-    characterName: "kamisato-ayaka",
-    rarity: 4,
-    price: 1680,
-    promoPrice: 1350,
-    offset: {
-      splashArt: {
-        x: -2.3333333333333335,
-        y: -4.5773809523809526,
-        scale: 1.24
-      },
-      wishCard: {
-        x: 29.668737060041412,
-        y: 58.376811594202906,
-        scale: 8.98
-      },
-      storeCard: {
-        l: -20,
-        w: 120,
-        t: -35
-      }
-    }
-  },
-  {
-    release: 3.8,
-    name: "sailwind-shadow",
-    characterName: "kaeya",
-    rarity: 4,
-    price: 1680,
-    offset: {
-      splashArt: {
-        x: -0.9940476190476191,
-        y: -3.9821428571428577,
-        scale: 1.24
-      },
-      wishCard: {
-        x: -22.836438923395445,
-        y: 69.80193236714976,
-        scale: 9.88
-      }
-    }
-  },
-  {
-    release: 3.8,
-    name: "blossoming-starlight",
-    characterName: "klee",
-    rarity: 4,
-    price: 1680,
-    promoPrice: 1350,
-    offset: {
-      splashArt: {
-        x: 2.9925595238095237,
-        y: 10.900297619047619,
-        scale: 1.36
-      },
-      wishCard: {
-        x: 35.13457556935818,
-        y: 69.07729468599034,
-        scale: 9.88
-      },
-      storeCard: {
-        l: -20,
-        w: 120,
-        t: -25
-      }
-    }
-  }
-];
-const setActiveOutfit = (obj = {}) => {
-  if (!obj.name)
-    return obj;
-  const { name: outfitName } = ownedOutfits.getByChar(obj.name)?.find(({ isSet }) => isSet) || {};
-  if (!outfitName)
-    return obj;
-  const { offset = {} } = getSplashArtData(outfitName);
-  return { ...obj, offset, outfitName, useOutfit: true };
-};
-const getSplashArtData = (outfitName) => {
-  const findOutfit = outfits.find(({ name }) => name === outfitName);
-  const { characterName, rarity, offset } = findOutfit || {};
-  const data = { name: characterName, rarity, outfitName, offset, type: "outfit" };
-  return data;
-};
-const isNewOutfitReleased = (patch) => {
-  const filtered = outfits.filter(({ release }) => release === parseFloat(patch));
-  return filtered.length > 0;
-};
-function cubicOut(t) {
-  const f = t - 1;
-  return f * f * f + 1;
-}
-/*! *****************************************************************************
-Copyright (c) Microsoft Corporation.
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-***************************************************************************** */
-function __rest(s, e) {
-  var t = {};
-  for (var p in s)
-    if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
-      t[p] = s[p];
-  if (s != null && typeof Object.getOwnPropertySymbols === "function")
-    for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
-      if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
-        t[p[i]] = s[p[i]];
-    }
-  return t;
-}
-function crossfade(_a) {
-  var { fallback } = _a, defaults = __rest(_a, ["fallback"]);
-  const to_receive = /* @__PURE__ */ new Map();
-  const to_send = /* @__PURE__ */ new Map();
-  function crossfade2(from, node, params) {
-    const { delay = 0, duration = (d2) => Math.sqrt(d2) * 30, easing = cubicOut } = assign(assign({}, defaults), params);
-    const to = node.getBoundingClientRect();
-    const dx = from.left - to.left;
-    const dy = from.top - to.top;
-    const dw = from.width / to.width;
-    const dh = from.height / to.height;
-    const d = Math.sqrt(dx * dx + dy * dy);
-    const style = getComputedStyle(node);
-    const transform = style.transform === "none" ? "" : style.transform;
-    const opacity = +style.opacity;
-    return {
-      delay,
-      duration: is_function(duration) ? duration(d) : duration,
-      easing,
-      css: (t, u) => `
-				opacity: ${t * opacity};
-				transform-origin: top left;
-				transform: ${transform} translate(${u * dx}px,${u * dy}px) scale(${t + (1 - t) * dw}, ${t + (1 - t) * dh});
-			`
-    };
-  }
-  function transition(items, counterparts, intro) {
-    return (node, params) => {
-      items.set(params.key, {
-        rect: node.getBoundingClientRect()
-      });
-      return () => {
-        if (counterparts.has(params.key)) {
-          const { rect } = counterparts.get(params.key);
-          counterparts.delete(params.key);
-          return crossfade2(rect, node, params);
-        }
-        items.delete(params.key);
-        return fallback && fallback(node, params, intro);
-      };
-    };
-  }
-  return [
-    transition(to_send, to_receive, false),
-    transition(to_receive, to_send, true)
-  ];
-}
-const sounds = {};
-const playSfx = (sfxName = "click") => {
-  if (localConfig.get("muted"))
-    return;
-  try {
-    if (!sounds[sfxName])
-      throw new Error("No Sound effect for " + sfxName);
-    if (sfxName === "wishBacksound" && sounds[sfxName].playing())
-      return;
-    return sounds[sfxName].play();
-  } catch (e) {
-    console.error("Unable to Play Sfx : ", e.message);
-  }
-};
-const pauseSfx = (sfxName) => {
-  if (localConfig.get("muted"))
-    return;
-  try {
-    if (sfxName.includes("reveal"))
-      return sounds[sfxName].stop();
-    sounds[sfxName].pause();
-    return;
-  } catch (e) {
-    console.log("error to pause sfx");
-  }
-};
-const Icon_svelte_svelte_type_style_lang = "";
-const css$a = {
-  code: ".loader-icon.svelte-1crtzgq{position:relative;aspect-ratio:1/1}span.svelte-1crtzgq{display:block;position:absolute;top:0;left:0;width:100%;height:100%}span.svelte-1crtzgq::before,span.svelte-1crtzgq::after{content:'';display:block;position:absolute;left:0;top:0;margin:auto;width:100%;height:100%;border:calc(0.15 * var(--width)) solid var(--text-color);border-radius:50%;opacity:0.5}span.svelte-1crtzgq::before{animation:svelte-1crtzgq-loaderAnim1 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite}span.svelte-1crtzgq::after{animation:svelte-1crtzgq-loaderAnim2 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s infinite}@keyframes svelte-1crtzgq-loaderAnim1{0%{transform:scale(0);opacity:1}20%{opacity:1}100%{transform:scale(1.5);opacity:0}}@keyframes svelte-1crtzgq-loaderAnim2{0%{transform:scale(0);opacity:1}20%{opacity:1}100%{transform:scale(1);opacity:0}}",
-  map: null
-};
-const Icon = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let pic;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { type = "" } = $$props;
-  let { width = "20px" } = $$props;
-  let { height = "auto" } = $$props;
-  let { style = "" } = $$props;
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.width === void 0 && $$bindings.width && width !== void 0)
-    $$bindings.width(width);
-  if ($$props.height === void 0 && $$bindings.height && height !== void 0)
-    $$bindings.height(height);
-  if ($$props.style === void 0 && $$bindings.style && style !== void 0)
-    $$bindings.style(style);
-  $$result.css.add(css$a);
-  pic = {
-    acquaint: $assets["acquaint-fate.webp"],
-    intertwined: $assets["intertwined-fate.webp"],
-    stardust: $assets["masterless-stardust.webp"],
-    starglitter: $assets["masterless-starglitter.webp"],
-    primogem: $assets["primogem.webp"],
-    genesis: $assets["genesis.webp"]
-  };
-  $$unsubscribe_assets();
-  return `${type !== "loader" ? `<img${add_attribute("src", pic[type], 0)}${add_attribute("alt", type, 0)}${add_attribute("width", width, 0)}${add_attribute("height", height, 0)}${add_attribute("style", style, 0)}>` : `<div class="${"loader-icon svelte-1crtzgq"}" style="${"--width:" + escape(width, true) + ";width: " + escape(width, true) + ";"}"><span class="${"svelte-1crtzgq"}"></span></div>`}`;
-});
-const MyFund_svelte_svelte_type_style_lang = "";
-const NoticeMark_svelte_svelte_type_style_lang = "";
-const _icon_svelte_svelte_type_style_lang = "";
-const _button_svelte_svelte_type_style_lang = "";
-const positionToStyle = (position) => {
-  if (!position)
-    return "";
-  const cssProps = ["width", "height", "top", "bottom", "left", "right"];
-  const keyToChange = ["w", "h", "t", "b", "l", "r"];
-  const style = Object.keys(position).map((key) => {
-    const index = keyToChange.findIndex((v) => v === key);
-    const css2 = key.replace(key, cssProps[index]);
-    return `${css2}:${position[key]}%`;
-  });
-  return style.join(";");
-};
-const getCssVarPosition = ({ x, y, scale } = {}, h = 0, w = 0) => {
-  const X = !x ? "" : x / 100 * w;
-  const Y2 = !y ? "" : y / 100 * h;
-  const varX = !X ? "" : `--translate-x:${X}px;`;
-  const varY = !Y2 ? "" : `--translate-y:${Y2}px;`;
-  const varScale = !scale ? "" : `--scale:${scale};`;
-  return `${varX}${varY}${varScale}`;
-};
-const _bannerButton_svelte_svelte_type_style_lang = "";
-const _header_svelte_svelte_type_style_lang = "";
-const Anemo = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 400 420"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"}"><g transform="${"matrix(1,0,0,1,-5.68434e-14,10)"}"><circle cx="${"200"}" cy="${"200"}" r="${"200"}" style="${"fill:url(#_RadialAnemo);"}"></circle></g><path d="${"M200.023,249.356C201.285,221.689 254.948,199.235 287.064,181.699C338.894,153.398 346.889,76.826 346.889,76.826C346.889,76.826 364.313,105.277 364.313,140.952C364.313,196.476 299.029,208 271.459,211.97C243.89,215.94 206.396,236.893 206.396,270.417C206.396,303.941 244.13,309.656 244.13,309.303C256.481,297.305 269.714,304.892 269.538,305.069C235.674,324.592 201.454,397.068 200.045,400.075L200.045,400.171L200.023,400.123L200,400.171L200,400.075C198.591,397.068 164.371,324.592 130.507,305.069C130.331,304.892 143.564,297.305 155.915,309.303C155.915,309.656 193.649,303.941 193.649,270.417C193.649,236.893 156.155,215.94 128.586,211.97C101.017,208 35.733,196.476 35.733,140.952C35.733,105.277 53.156,76.826 53.156,76.826C53.156,76.826 61.151,153.398 112.982,181.699C145.097,199.235 198.761,221.689 200.023,249.356ZM200.023,327.478C199.597,328.03 193.149,336.189 183.025,338.109C183.025,338.109 199.341,356.361 200.023,373.342C200.704,356.361 217.02,338.109 217.02,338.109C206.896,336.189 200.448,328.03 200.023,327.478ZM200.023,294.038C199.292,305.884 181.001,321.411 169.67,321.411C169.67,321.501 174.368,323.85 179.788,323.85C185.19,323.85 195.746,320.351 200,314.428L200,314.364L200.023,314.396L200.045,314.364L200.045,314.428C204.299,320.351 214.856,323.85 220.257,323.85C225.677,323.85 230.375,321.501 230.375,321.411C219.044,321.411 200.753,305.884 200.023,294.038ZM263.096,280.004C246.299,280.004 231.619,274.781 231.619,259.113C231.619,243.445 243.335,236.81 253.639,236.81C269.589,236.81 297.397,259.96 327.604,259.96C357.811,259.96 392.045,231.658 392.045,184.68C392.045,167.698 386.752,153.803 386.752,153.803C386.752,153.803 360.065,195.046 340.656,206.294C321.247,217.543 306.911,219.969 285.297,219.969C263.683,219.969 220.013,227.027 220.013,267.167C220.013,283.709 232.364,296.06 246.7,296.06C265.666,296.06 263.096,280.342 263.096,280.004ZM136.949,280.004C153.746,280.004 168.426,274.781 168.426,259.113C168.426,243.445 156.711,236.81 146.406,236.81C130.456,236.81 102.648,259.96 72.441,259.96C42.234,259.96 8,231.658 8,184.68C8,167.698 13.293,153.803 13.293,153.803C13.293,153.803 39.98,195.046 59.389,206.294C78.798,217.543 93.134,219.969 114.748,219.969C136.362,219.969 180.032,227.027 180.032,267.167C180.032,283.709 167.681,296.06 153.345,296.06C134.379,296.06 136.949,280.342 136.949,280.004ZM217.303,199.715C217.303,199.715 312.651,128.929 263.975,21.808C263.614,21.447 323.1,37.66 323.1,103.998C325.684,181.537 217.303,199.715 217.303,199.715ZM182.742,199.715C182.742,199.715 87.394,128.929 136.071,21.808C136.431,21.447 76.945,37.66 76.945,103.998C74.361,181.537 182.742,199.715 182.742,199.715Z"}" style="${"fill:rgb(166,243,203);"}"></path><defs><radialGradient id="${"_RadialAnemo"}" cx="${"0"}" cy="${"0"}" r="${"1"}" gradientUnits="${"userSpaceOnUse"}" gradientTransform="${"matrix(200,0,0,200,200,200)"}"><stop offset="${"0"}" style="${"stop-color:rgb(68,183,136);stop-opacity:1"}"></stop><stop offset="${"0.48"}" style="${"stop-color:rgb(68,185,137);stop-opacity:0.73"}"></stop><stop offset="${"1"}" style="${"stop-color:rgb(69,191,141);stop-opacity:0"}"></stop></radialGradient></defs></svg>`;
-});
-const Cryo = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 400 420"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"}"><g transform="${"matrix(1,0,0,1,0,10)"}"><circle cx="${"200"}" cy="${"200"}" r="${"200"}" style="${"fill:url(#_RadialCryo);"}"></circle></g><path d="${"M199.472,229.418C199.6,232.009 202.185,274.232 235.394,318.921L235.882,318.692C240.929,316.336 246.335,314.425 251.995,313.293C251.996,313.292 251.997,313.291 251.998,313.291L252,313.292L251.995,313.293C251.489,313.577 217.449,359.788 199.423,405.219L199,406.292C199,406.292 181,358.292 146,313.292L146.073,313.299C146.831,313.374 153.406,314.114 163.025,318.602L163.422,318.063C197.094,272.252 199.466,229.292 199.466,229.292L199.472,229.418ZM199.091,268.62L199,269.292C194.101,305.222 183.199,323.148 179.366,328.514C185.591,333.196 192.266,339.311 199,347.292L199.103,347.17C200.058,346.043 207.532,337.289 219.036,328.818C215.416,323.848 204.179,305.93 199.183,269.292L199.091,268.62ZM314.684,216.483C314.677,217.064 337.677,269.649 368.008,307.975L368.726,308.878C368.726,308.878 345.896,305.08 313.79,304.958L312.666,304.955C297.631,304.938 280.625,305.735 263.008,308.097L261.685,308.277C261.669,308.306 265.521,302.68 274.797,296.189C251.974,243.693 215.672,219.975 215.672,219.975L215.784,220.033C217.757,221.045 245.706,234.982 288.332,235.001L288.936,235C295.997,234.981 303.454,234.579 311.258,233.674C311.719,227.951 312.775,222.127 314.684,216.483C314.683,216.48 314.684,216.479 314.685,216.479L314.684,216.483ZM84.071,216.081C84.385,216.775 87.032,222.839 87.954,233.414C95.95,234.325 103.587,234.721 110.812,234.729L111.412,234.729C155.202,234.646 183.519,220.317 183.519,220.317L183.413,220.385C181.234,221.792 145.96,245.142 123.862,296.247C128.587,299.508 133.103,303.334 137.037,307.809C137.038,307.81 137.039,307.811 137.04,307.811L137.04,307.813L137.037,307.809C136.718,307.62 113.402,304.959 84.005,304.899L82.913,304.898C66.502,304.901 48.276,305.726 31.141,308.243L30,308.414C30,308.414 62.569,268.825 84.04,216.014L84.071,216.081ZM149.273,239.657L148.645,239.914C122.42,250.635 103.881,252.688 93.897,252.769L93.309,252.772C90.994,252.773 89.173,252.669 87.858,252.551L87.54,252.521C86.598,260.253 84.64,269.092 81.095,278.914C81.204,278.943 93.151,280.919 107.112,287.029L107.234,286.756C109.92,280.824 119.961,262.365 148.737,240.072L149.273,239.657ZM249.544,239.963L250.08,240.378C278.747,262.586 288.821,280.99 291.551,286.993L292.227,286.708C299.259,283.774 307.672,281.162 317.63,279.378C317.601,279.271 313.471,268.286 311.731,253.497L311.65,252.789C310.408,252.921 308.546,253.059 306.08,253.076L305.501,253.078C295.664,253.071 276.914,251.152 250.171,240.22L249.544,239.963ZM203.297,208.258L240,197.414L261,210.414L240,223.414L202.588,212.36L231.258,239.605L230.5,264.292L208.742,252.605L199.5,214.229L190.258,252.605L168.5,264.292L167.742,239.605L195.64,213.093L158.726,224L137.726,211L158.726,198L196.956,209.295L167.467,181.273L168.226,156.586L189.984,168.273L199.413,207.426L208.742,168.687L230.5,157L231.258,181.687L203.297,208.258ZM368.632,113.115C366.72,115.464 335.99,153.611 315.19,204.164L314.685,205.399C314.702,205.428 311.756,199.279 310.772,188C302.997,187.114 295.562,186.715 288.517,186.686L287.914,186.685C245.389,186.638 217.307,200.063 215.319,201.041L215.206,201.097C215.206,201.097 252.054,177.917 274.863,125.167C270.138,121.906 265.622,118.08 261.689,113.604C261.686,113.603 261.685,113.602 261.685,113.601L261.689,113.604C262.011,113.796 285.902,116.521 315.812,116.516L316.909,116.514C333.031,116.475 350.83,115.632 367.585,113.17L368.726,113L368.632,113.115ZM30.147,112.024C32.165,112.349 54.865,115.888 86.06,115.923L87.191,115.922C102.322,115.898 119.393,115.042 137.04,112.601L136.998,112.66C136.554,113.279 132.625,118.604 123.929,124.689C146.04,175.547 180.802,199.395 182.949,200.834L183.054,200.903C183.054,200.903 154.878,186.031 110.996,185.878L110.394,185.877C103.154,185.874 95.495,186.273 87.468,187.204C87.006,192.926 85.951,198.75 84.042,204.395C84.042,204.396 84.042,204.397 84.042,204.398L84.04,204.399L84.042,204.395C84.049,203.809 60.686,150.399 30,112L30.147,112.024ZM200.053,15.139C201.131,17.969 218.802,63.655 252.183,106.945L253,108C253.032,108 246.445,107.493 236.454,102.911L235.975,102.689C202.987,147.267 199.714,189.296 199.542,191.874L199.534,192C199.534,192 197.897,148.838 164.006,102.911L163.606,102.371C158.419,104.832 152.847,106.83 147.005,107.999L147.002,108C147.001,108.001 147,108 147,108L147.005,107.999C147.515,107.712 182.088,60.775 200,15L200.053,15.139ZM291.614,134.385C289.119,140.006 279.221,158.696 249.989,181.342L249.452,181.757L250.08,181.5C276.829,170.565 295.582,168.647 305.417,168.642L305.985,168.644C308.217,168.659 309.955,168.773 311.186,168.893L311.277,168.164C312.251,160.608 314.196,152.016 317.63,142.5C317.523,142.471 305.944,140.556 292.266,134.668L291.614,134.385ZM107.174,133.885C100.007,136.935 91.374,139.659 81.095,141.5C81.125,141.609 85.387,152.943 87.076,168.088L87.374,168.058C88.711,167.926 90.667,167.798 93.225,167.8L93.826,167.803C103.818,167.887 122.349,169.945 148.554,180.658L149.182,180.915L148.645,180.5C120.426,158.638 110.224,140.463 107.308,134.175L107.174,133.885ZM200,74C199.92,74.08 192.236,83.438 179.964,92.474C183.585,97.444 194.821,115.361 199.817,152L199.909,152.672L200,152C204.9,116.07 215.801,98.144 219.634,92.777C213.507,88.169 206.942,82.171 200.316,74.373L200,74Z"}" style="${"fill:rgb(197,251,253);"}"></path><defs><radialGradient id="${"_RadialCryo"}" cx="${"0"}" cy="${"0"}" r="${"1"}" gradientUnits="${"userSpaceOnUse"}" gradientTransform="${"matrix(200,0,0,200,200,200)"}"><stop offset="${"0"}" style="${"stop-color:rgb(129,207,220);stop-opacity:1"}"></stop><stop offset="${"0.48"}" style="${"stop-color:rgb(129,206,219);stop-opacity:0.74"}"></stop><stop offset="${"1"}" style="${"stop-color:rgb(128,205,218);stop-opacity:0"}"></stop></radialGradient></defs></svg>`;
-});
-const Dendro_svelte_svelte_type_style_lang = "";
-const css$9 = {
-  code: ".a.svelte-he5183{fill:#a5c83b}.b.svelte-he5183{fill:none}",
-  map: null
-};
-const Dendro = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  $$result.css.add(css$9);
-  return `<svg version="${"1.2"}" xmlns="${"http://www.w3.org/2000/svg"}" viewBox="${"0 0 287 268"}"><path class="${"a svelte-he5183"}" d="${"m158.2 56.4l-15.1 17.7-15.2-17.7c-1.7-1.9-3-4.1-4-6.4-1-2.4-1.6-4.9-1.8-7.4-0.2-2.6 0.1-5.1 0.7-7.6 0.6-2.5 1.6-4.8 3-7l17.3-27.4 17.2 27.4c1.4 2.2 2.4 4.5 3 7 0.6 2.5 0.8 5 0.7 7.6-0.2 2.5-0.8 5-1.8 7.4-1 2.3-2.3 4.5-4 6.4z"}"></path><path class="${"a svelte-he5183"}" d="${"m254.1 150.7l-0.8 0.6 0.6 0.5c-6.9 39.2-38.2 56.4-56 64.9-20.1 9.7-54.8 29.5-54.8 52.8 0-23.3-34.8-43.1-54.9-52.8-17.8-8.5-49.1-25.7-56-64.9l0.6-0.5-0.8-0.6q-0.3-1.9-0.5-3.8-0.3-1.9-0.4-3.8-0.2-1.9-0.2-3.9-0.1-1.9-0.1-3.8c0-51 40.5-73.4 65.9-73.4 19.1 0 33 11.4 38.5 17q0.7 0.6 1 1.4 0.4 0.8 0.5 1.7 0.1 0.9-0.1 1.7-0.2 0.8-0.7 1.6l-4.1 6.2q-0.3 0.5-0.8 0.8-0.5 0.3-1.1 0.3-0.6 0-1.1-0.2-0.5-0.2-0.9-0.7c-5.3-6.7-21.2-22.1-48.9-11.8-20.7 7.8-33.7 27-33.7 50 0 23 14.2 56.4 51.4 70.2 37.2 13.8 46.4 36.1 46.4 36.1 0 0 9.1-22.3 46.3-36.1 37.2-13.8 51.4-47.2 51.4-70.2 0-23-13-42.2-33.7-49.9-27.7-10.4-43.6 5.1-48.9 11.7q-0.3 0.5-0.9 0.7-0.5 0.3-1.1 0.3-0.6-0.1-1.1-0.4-0.5-0.3-0.8-0.7l-4.1-6.3q-0.5-0.7-0.7-1.6-0.2-0.8-0.1-1.7 0.1-0.8 0.5-1.6 0.4-0.8 1-1.4c5.6-5.7 19.4-17.1 38.6-17.1 25.3 0 65.8 22.4 65.8 73.5q0 1.9 0 3.8-0.1 1.9-0.3 3.8-0.1 1.9-0.3 3.8-0.3 1.9-0.6 3.8z"}"></path><path class="${"a svelte-he5183"}" d="${"m32.8 151.3l-0.6 0.5q-0.2-0.5-0.2-1.1z"}"></path><path class="${"a svelte-he5183"}" d="${"m91 161.6c-4.9-4-11.3-3.7-17.6-2.8-6.4 0.8-11 5.6-11 5.6 4.5-9.2 12.3-11.9 18.6-12.5-10-11.3-15.9-24.6-9.4-38.3q0.8-1.9 2-3.6 1.1-1.8 2.5-3.3 1.4-1.5 3.1-2.8 1.6-1.3 3.4-2.3c8-4.5 22.4-7.8 39.5 9.9 0 0-20-6.7-27.2 9.9-7.2 16.7 0.2 35.2 31.9 63 0 0-19.5-9-35.8-22.8z"}"></path><path class="${"a svelte-he5183"}" d="${"m48.5 83.4l-13.2 1.8c-2.1 0.3-4.3 0.2-6.4-0.3-2.2-0.4-4.2-1.3-6-2.5-1.8-1.2-3.4-2.7-4.7-4.4-1.3-1.8-2.3-3.8-2.9-5.9l-4.7-16.8 20.3 0.9c2 0 3.9 0.5 5.7 1.2 1.8 0.8 3.5 1.8 5 3.1 1.4 1.4 2.6 2.9 3.5 4.7 0.9 1.7 1.5 3.6 1.8 5.5z"}"></path><path class="${"a svelte-he5183"}" d="${"m32.8 151.3l-0.6 0.5-7.9 6.8q-1.5 1.3-3.3 2.1-1.9 0.7-3.8 0.9-2 0.1-3.9-0.4-1.9-0.5-3.5-1.6l-10.1-6.6 10.5-7.7q1.6-1.2 3.4-1.8 1.8-0.6 3.7-0.6 2 0 3.8 0.6 1.8 0.6 3.4 1.8l7.5 5.4z"}"></path><path class="${"a svelte-he5183"}" d="${"m254.1 150.7q-0.1 0.6-0.2 1.1l-0.6-0.5z"}"></path><path class="${"a svelte-he5183"}" d="${"m159.3 184.4c31.7-27.8 39-46.3 31.9-63-7.2-16.6-27.2-10-27.2-10 17.1-17.7 31.5-14.3 39.5-9.9q1.8 1.1 3.4 2.4 1.6 1.3 3 2.8 1.4 1.5 2.6 3.2 1.1 1.8 2 3.6c6.5 13.8 0.6 27.1-9.4 38.4 6.3 0.5 14.1 3.2 18.6 12.4 0 0-4.7-4.7-11-5.6-6.4-0.8-12.7-1.1-17.6 2.8-16.3 13.9-35.8 22.9-35.8 22.9z"}"></path><path class="${"a svelte-he5183"}" d="${"m239.2 70.8c0.3-2 0.9-3.9 1.8-5.6 0.9-1.8 2.1-3.3 3.5-4.7 1.5-1.3 3.1-2.3 5-3.1 1.8-0.7 3.7-1.2 5.7-1.2l20.3-0.9-4.7 16.8c-0.6 2.1-1.6 4.1-2.9 5.8-1.3 1.8-2.9 3.3-4.7 4.5-1.8 1.2-3.8 2-6 2.5-2.1 0.5-4.3 0.6-6.4 0.3l-13.2-1.8z"}"></path><path class="${"a svelte-he5183"}" d="${"m286.3 153l-10 6.6q-1.6 1.1-3.5 1.6-1.9 0.5-3.9 0.4-2-0.2-3.8-0.9-1.8-0.7-3.3-2l-7.9-6.9-0.6-0.5 0.8-0.6 7.5-5.4q1.5-1.2 3.3-1.8 1.9-0.6 3.8-0.6 1.9 0 3.7 0.6 1.9 0.6 3.4 1.8z"}"></path><path class="${"b svelte-he5183"}" d="${"m-14-22h314.1v314.1h-314.1z"}"></path></svg>`;
-});
-const Electro = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 400 420"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"}"><g transform="${"matrix(1,0,0,1,0.5,10.915)"}"><circle cx="${"200"}" cy="${"200"}" r="${"200"}" style="${"fill:url(#_RadialElectro);"}"></circle></g><path d="${"M194.787,192.333C188.262,188.035 181.657,181.753 176.358,172.574C174.261,168.942 172.763,165.383 171.774,161.936C171.27,159.158 171,156.182 171,153C171,141.784 174.066,133.949 178.481,128.479C180.861,125.649 183.561,123.381 186.303,121.799C194.691,116.956 201.706,117.239 209.796,115.988L210,116C210,116 209.931,115.995 209.797,115.988C210.059,115.947 210.323,115.905 210.587,115.861C210.639,115.831 158.035,68.837 95.681,104.837C68.834,120.337 50.317,140.265 50.317,140.265C50.317,140.265 48.21,112.615 81.341,60C47.981,79.261 -32.672,188.524 35.679,306.911C35.679,306.911 19.588,203.04 80.21,168.04C140.831,133.04 179.662,190.296 179.662,190.296C179.662,190.296 187.318,204.66 188.697,221.705C188.721,230.311 186.816,240.478 180.701,251.069C177.506,256.604 173.76,260.851 169.745,264.014C168.781,264.66 167.776,265.285 166.726,265.892C161.405,268.964 156.503,270.732 152.019,271.523C144.304,272.509 136.988,270.865 131.756,267.844C123.514,263.086 120.221,257.001 115.244,250.738L115.183,250.617C115.183,250.617 115.203,250.657 115.242,250.735C114.99,250.418 114.733,250.1 114.472,249.782C114.42,249.752 100.024,318.806 162.378,354.806C189.225,370.306 215.742,376.378 215.742,376.378C215.742,376.378 192.849,392.028 130.718,389.643C164.078,408.904 299.029,424.119 367.38,305.732C367.38,305.732 285.471,371.603 224.849,336.603C164.227,301.603 194.397,239.347 194.397,239.347C194.397,239.347 202.025,227.112 214.656,217.57C222.394,212.435 233.1,208 247,208C252.203,208 256.849,208.743 260.96,210.042C262.729,210.806 264.521,211.706 266.333,212.751C286.892,224.621 287.466,240.815 284.535,252.017C283.477,255.584 281.983,258.795 280.527,262.218C279.828,263.528 279.267,264.425 279.017,264.812L278.875,265.026C278.875,265.026 278.926,264.953 279.017,264.812L280.167,263.07C279.769,264.024 279.376,264.996 279,266C279,266.06 346,244 346,172C346,141 338,115 338,115C338,115 363,127 392,182C392,143.479 337.702,19 201,19C201,19 299,57 299,127C299,197 230,202 230,202C220.742,202 211.172,201.362 194.787,192.333Z"}" style="${"fill:rgb(222,186,255);"}"></path><defs><radialGradient id="${"_RadialElectro"}" cx="${"0"}" cy="${"0"}" r="${"1"}" gradientUnits="${"userSpaceOnUse"}" gradientTransform="${"matrix(200,0,0,200,200,199.085)"}"><stop offset="${"0"}" style="${"stop-color:rgb(194,121,224);stop-opacity:1"}"></stop><stop offset="${"0.48"}" style="${"stop-color:rgb(195,121,225);stop-opacity:0.73"}"></stop><stop offset="${"1"}" style="${"stop-color:rgb(196,122,227);stop-opacity:0"}"></stop></radialGradient></defs></svg>`;
-});
-const Geo = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 400 420"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"}"><g transform="${"matrix(1,0,0,1,0,10)"}"><circle cx="${"200"}" cy="${"200"}" r="${"200"}" style="${"fill:url(#_RadialGeo);"}"></circle></g><path d="${"M200.197,412.606C200.197,412.606 81.644,332.209 10.517,210.212C10.409,210.027 30.803,174.081 51.742,155.411C51.687,155.411 85.883,266.425 200.72,393.589C200.562,393.589 281.709,306.03 286.765,259.194C285.983,259.194 200.72,331.358 200.72,331.358C200.72,331.358 145.359,276.973 121.128,225.819C121.128,225.819 141.114,200.187 189.195,166.001C189.195,166.001 201.104,175.926 205.074,184.969L158.758,230.182C158.758,230.182 169.552,259.697 201.699,285.658C201.987,285.37 254.123,256.933 298.579,203.862C299.268,203.862 321.323,238.668 330.972,285.536C330.628,285.536 276.707,358.322 200.197,412.606ZM200.523,8.008C200.523,8.008 319.076,88.405 390.203,210.402C390.31,210.587 369.916,246.532 348.978,265.202C349.033,265.202 314.837,154.188 200,27.024C200.158,27.024 119.011,114.583 113.955,161.419C114.737,161.419 200,89.256 200,89.256C200,89.256 255.361,143.64 279.592,194.794C279.592,194.794 259.606,220.426 211.525,254.612C211.525,254.612 199.615,244.687 195.645,235.645L241.962,190.431C241.962,190.431 231.168,160.916 199.021,134.955C198.732,135.244 146.596,163.68 102.141,216.751C101.452,216.751 79.397,181.945 69.747,135.077C70.092,135.077 124.012,62.291 200.523,8.008Z"}" style="${"fill:rgb(243,214,97);"}"></path><defs><radialGradient id="${"_RadialGeo"}" cx="${"0"}" cy="${"0"}" r="${"1"}" gradientUnits="${"userSpaceOnUse"}" gradientTransform="${"matrix(200,0,0,200,200,200)"}"><stop offset="${"0"}" style="${"stop-color:rgb(207,137,19);stop-opacity:1"}"></stop><stop offset="${"0.48"}" style="${"stop-color:rgb(206,137,19);stop-opacity:0.73"}"></stop><stop offset="${"1"}" style="${"stop-color:rgb(205,136,19);stop-opacity:0"}"></stop></radialGradient></defs></svg>`;
-});
-const Hydro = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 400 420"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"}"><g transform="${"matrix(1,0,0,1,0,10)"}"><circle cx="${"200"}" cy="${"200"}" r="${"200"}" style="${"fill:url(#_RadialHydro);"}"></circle></g><path d="${"M44.747,121.48C50.257,112.511 101.866,33 200,33C304,33 377,117 377,210C377,303 302,387 200,387C124.277,387 95,343 95,343C95,343 141,371 200,371C259,371 296,318 296,274C296,230 254.64,181 200,181C184.467,181 169.115,188 162.5,188C148.978,188 138,177.022 138,163.5C138,153.346 144.19,144.627 153,140.913L153.063,140.886C153.264,140.802 171.051,132 202,132C260.878,132 324,183.305 324,253C324,338.409 246,369 246,369C246,369 343,337 343,238C343,139 262,90 200,90C133.257,90 92.818,138.996 85.764,148.267C85.414,148.781 79.037,159 65.5,159C51.978,159 41,148.022 41,134.5C41,130.059 42.184,125.893 44.253,122.3L44.747,121.48ZM213.035,289.278C211.408,282.792 206.389,272 191,272C173.411,272 158,288 158,308C158,328 177,350 205,350C233,350 254,327 254,327C254,327 238,358 200,358C162,358 136,330 136,295C136,260 165.951,231.525 199.475,231.525C233,231.525 259,259 259,286L258.915,286.015C258.971,286.669 259,287.331 259,288C259,300.694 248.694,311 236,311C225.402,311 216.468,303.816 213.807,294.056L213.807,294.056C213.389,292.521 213.125,290.923 213.035,289.278ZM79,274C88.383,274 96,281.617 96,291C96,300.383 88.383,308 79,308C69.617,308 62,300.383 62,291C62,281.617 69.617,274 79,274ZM46.5,189C60.022,189 71,199.978 71,213.5C71,227.022 60.022,238 46.5,238C32.978,238 22,227.022 22,213.5C22,199.978 32.978,189 46.5,189Z"}" style="${"fill:rgb(7,229,254);"}"></path><defs><radialGradient id="${"_RadialHydro"}" cx="${"0"}" cy="${"0"}" r="${"1"}" gradientUnits="${"userSpaceOnUse"}" gradientTransform="${"matrix(200,0,0,200,200,200)"}"><stop offset="${"0"}" style="${"stop-color:rgb(8,158,222);stop-opacity:1"}"></stop><stop offset="${"0.48"}" style="${"stop-color:rgb(8,158,223);stop-opacity:0.73"}"></stop><stop offset="${"1"}" style="${"stop-color:rgb(8,159,224);stop-opacity:0"}"></stop></radialGradient></defs></svg>`;
-});
-const Pyro = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 400 420"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"}"><g transform="${"matrix(1,0,0,1,0,11)"}"><circle cx="${"199.5"}" cy="${"199.5"}" r="${"199.5"}" style="${"fill:url(#_RadialPyro);"}"></circle></g><path d="${"M196,22C196,22 231,59 231,83C231,107 189,116 189,153C189,172.638 212,186 212,186C212,186 198,174 198,158C198,142 210,122 240,103C240.207,103.207 232,128.445 232,144C232,184.962 271,214 271,214C271,196.725 249,189.293 249,164C249,138.707 269,121 269,121C269,121 271,155 296,177C321,199 355,229 355,264C355,299 316,324 281,344C234.697,368.135 203,399 203,399C203,399 151,358 121,342C91,326 45,303 45,271C45,239 70,207 95,175C120,143 128,124 128,124C128,124 116,171 203,198C203.138,198.138 118,200 118,272C118,302.646 137,317 137,317C137,317 82,293 82,254C82,222.237 103,203 103,203C103,203 65,222 65,258C65,294 91,308 132,329C173,350 203,372 203,372C203,372 263,328 295,315C327,302 342,275 342,262C342,231.08 306,210.5 306,210.5C306,210.5 317,235 317,256C317,277 293,338 209,338C179.256,338 155,325 145,313C135,301 137,291 137,291C137,291 138,263 169,263C177.724,263 184,266 184,266C184,266 164,275 164,298C164,321 189,330 209,330C229,330 281,319 281,270C281,221 231,203 209,194C187,185 146,171 146,132C146,93 196,72 196,22Z"}" style="${"fill:rgb(253,169,113);"}"></path><path d="${"M154,252C154,252 188,232 212,256C236,280 217,304 216,305C215,306 256,295 256,266C256,237 230,218 200,218C170,218 154,246 154,252Z"}" style="${"fill:rgb(253,169,113);"}"></path><defs><radialGradient id="${"_RadialPyro"}" cx="${"0"}" cy="${"0"}" r="${"1"}" gradientUnits="${"userSpaceOnUse"}" gradientTransform="${"matrix(200,0,0,200,200,199)"}"><stop offset="${"0"}" style="${"stop-color:rgb(212,84,22);stop-opacity:1"}"></stop><stop offset="${"0.48"}" style="${"stop-color:rgb(213,84,22);stop-opacity:0.73"}"></stop><stop offset="${"1"}" style="${"stop-color:rgb(214,85,22);stop-opacity:0"}"></stop></radialGradient></defs></svg>`;
-});
-const Bow = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 128 128"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"}"><g transform="${"matrix(0.94442,0,0,0.94442,4.27757,-0.4701)"}"><g transform="${"matrix(1.05885,-0,-0,1.05885,-4.52931,0.497767)"}"><use xlink:href="${"#_ImageBow1"}" x="${"20.069"}" y="${"20.019"}" width="${"45.409px"}" height="${"45.382px"}" transform="${"matrix(0.987158,0,0,0.986573,0,0)"}"></use></g></g><g transform="${"matrix(0.94442,0,0,0.94442,4.27757,-0.4701)"}"><g transform="${"matrix(1.05885,-0,-0,1.05885,-4.52931,0.497767)"}"><use xlink:href="${"#_ImageBow2"}" x="${"39.941"}" y="${"60.407"}" width="${"68.523px"}" height="${"48.243px"}" transform="${"matrix(0.993092,0,0,0.984541,0,0)"}"></use></g></g><g transform="${"matrix(0.954497,0,0,0.954497,4.40699,-0.764803)"}"><g transform="${"matrix(1.04767,-0,-0,1.04767,-4.61708,0.801263)"}"><use xlink:href="${"#_ImageBow3"}" x="${"72.762"}" y="${"44.826"}" width="${"17.055px"}" height="${"17.055px"}" transform="${"matrix(0.947507,0,0,0.947507,0,0)"}"></use></g></g><g transform="${"matrix(0.667805,-0.667805,0.667805,0.667805,-24.1918,61.0036)"}"><path d="${"M4,64L7,67L10,64L7,61L10,58L12,60L19.942,60L22,58L30,66L100,66L102,64L100,62L105,57L128,68.934L105,80.868L100,75.868L102,73.868L100,71.868L30,71.868L22,79.868L20,78L12,78L10,80L7,77L10,73.868L7,70.868L4,73.868L-1,68.934L4,64Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:1.06px;"}"></path></g><defs><image id="${"_ImageBow1"}" width="${"46px"}" height="${"46px"}" xlink:href="${"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAuCAYAAABXuSs3AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAFJUlEQVRogdWYS2wbRRjH/9/MxGsndRLbaZun0qRNQ+IEyVQp9ElLERceKvTAAYTgUvXCBQmkWtpaG6urilIOcOCCxAUJhITgiEQrHgda0VatkFLaRGrjtKlKorzIw7G9M8OhSaidNLbzsNPfbXd25vvp8+zs54+wzpiWLQA0AtjJOW9jjNUBCCitKpRUZQBo7lGttf40Ggn/lMu6Yh1ECUAH5/wIMQpJR9a6XK5Upa8Sfr/f4/F4YLgNuA03XIYLBIKGxs2/b6pYfyyQa5w1EZ+T7eScv6i1PmQYhqirrzM2b97MKioqIEpE1jic87xirkrctGw3ER0jojcNw+D1DfXu2rpa5vV6V7NsTqxI3LRsg4iOEtE7VVVVvLWt1aioqFhrt2XJS9y0bBcRvUpE7/oDftHW3uYutPA8OYublt3JOOv2VfrcbcE2d2Vl5Xp6ZSWruGnZxBh7i4jeDu0KGdXV1YXwysqy4qZll3PBrVJP6VNdz3YZpaWlhfLKymPFTcsOMsZONzQ0lLYH20sYY4X0ysqS4pHomTeI6HjomZBRXbMxtkYmi8RNy36Jc358/8H9RllZWTGcciLt9zctu4tz/sHefXs3tDTwSMZNy25ljEV3P7fb8Jav/5dvpcwVbS+IuYs6xti50K6QEQjkXOcUBc75CSnlMWZato9z/ll7sN1TU1NTbK9lMS17DzF6BQAYF/xcU3NT+bambRvrvMvAtOwtjDGzq6vLAAAhHdnYsrOl6NJEBMbYa9322T1LjSulana07HD5A34AWb6cWmuMjIxgYnwCo6Oj8Xg8rlYj5/f7RUdnh7HUWHNzM/P7/VsAbFlqnHOOQNX/799jxePxOC7/eXl2ZnpmXGt9VUrZA+AfAHqF3vWpZOpER2fHkoOG28DW6q1ZF9H6YfglxcfHxnHxj4tJrfU3Sqmvo5HwqjINAKZlT612jUdZJC6lxJUrVxJSyk+ikfD5tQy2lix6Kft6+xwn5fwF4EIRfHImTVwrjf47/cpxnM+jkfBK93JBSBMfHh4GgAfRSPhucXRyJ018aGjIcRxnQ2+RedLEJycnkwAGiuSSF2ni09PTADBYHJX8WBDXWiMxmzDwhIgvnOPJRBJElOo+dXKmmEK5spBxpRWIyCmmTD6kn+NaF71KzJUFUVpoUz8ZPDEZzmTNG/vLkUqlSvp6+/KawxhD47ZGiIwWeyHFB6WU3/Xe6s0rJhG9HAgENlX60pus+XRrmzjnR+evpZQ/RCPh/lznRyPhGQBf5vr8PN322f0ANmXez1lcCPF+TW1NyOv1YmBgwJmanLoFoD9fkbUiJ3HTsquUUp3BYBCiRODe3XtJAEPr7AYA0Fqrnp6ehMvlevgv7GGx7VmuW1sKwE9Ee4jove07titRIiClxOTkpAHgRiHEHcc5MzY6Vp9x+1/BOY/Pzs6Wcc6hlPJYpz/+Xkrp1Vpzl8uVLC8v18GOoGe+LTc2NgYu+GAk/FFBSoNoJHwDSyRJENGl+4P3D7fsbGH7DuwjIYTfbbhR4ioBAHfmhN5bvQkl1c8FcF4W5jjOj7dv304lZhPw+Xzwer3z0ouI9cf0xPjEsFLq2wJ7LoL//uuFoYOHjhiD9wZba+tqReZBP8/U1BSuXr6alFJ+GI2ERwrsuQgOAL/9cv7agecP81gs1ialZIILIiIopTAxMYHYnZi8fu26A+CL7lMnLxXZGQDSKyvTsls5568T0dNKKZ/WWnDBH2ilb0gpv4pGwg+KJZrJf37ysujOFyKWAAAAAElFTkSuQmCC"}"></image><image id="${"_ImageBow2"}" width="${"69px"}" height="${"49px"}" xlink:href="${"data:image/png;base64,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"}"></image><image id="${"_ImageBow3"}" width="${"18px"}" height="${"18px"}" xlink:href="${"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAW0lEQVQ4je3UsQ2AMBBDURs5XcYKa1HQMBBlbqx0RDoKlAVyElV+71eax3nd7p4RiGSTu+eyFyhpCulPh1XLAgAlQZqDRltovaAFLeh3SMB3BbONrUg2qxY+theCJRmnxjtu3QAAAABJRU5ErkJggg=="}"></image></defs></svg>`;
-});
-const Catalyst = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 128 128"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"}"><g><g transform="${"matrix(1.2822,0,0,1.2822,-28.2205,-18.909)"}"><circle cx="${"70.545"}" cy="${"64.661"}" r="${"9.273"}" style="${"fill:rgb(201,207,210);fill-opacity:0.75;"}"></circle></g><g transform="${"matrix(1.14367,0,0,1.14367,-11.8482,-9.37487)"}"><g transform="${"matrix(0.874382,-0,-0,0.874382,10.3599,8.19722)"}"><use xlink:href="${"#_ImageCatalyst1"}" x="${"2.102"}" y="${"0"}" width="${"123.803px"}" height="${"128px"}" transform="${"matrix(0.99841,0,0,1,0,0)"}"></use></g></g><g transform="${"matrix(1.14367,0,0,1.14367,-11.8482,-9.37487)"}"><path d="${"M48.349,46.587C52.573,42.417 58.375,39.841 64.774,39.841C77.681,39.841 88.159,50.319 88.159,63.226C88.159,76.132 77.681,86.61 64.774,86.61C51.868,86.61 41.39,76.132 41.39,63.226C41.39,58.303 42.914,53.734 45.516,49.964"}" style="${"fill:none;stroke:rgb(125,129,134);stroke-opacity:0.75;stroke-width:0.87px;"}"></path></g><g transform="${"matrix(1.14367,0,0,1.14367,-11.8482,-9.37487)"}"><g transform="${"matrix(1.51228,0,0,1.51228,52.5281,5.03589)"}"><path d="${"M34.246,14.195C32.915,12.864 25.757,18.944 21.513,18.944C17.268,18.944 10.22,12.864 8.779,14.195C7.339,15.526 14.807,22.914 12.868,26.928C8.9,35.14 -10.377,57.377 -15.026,63.467C-8.936,58.818 13.301,39.541 21.513,35.574C25.527,33.634 32.915,41.102 34.246,39.662C35.577,38.221 29.497,31.173 29.497,26.928C29.497,22.684 35.577,15.526 34.246,14.195Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:0.58px;"}"></path></g><g transform="${"matrix(6.12323e-17,-1,1,6.12323e-17,-15.2923,185.711)"}"><path d="${"M97.754,88.041L92.041,88.041L76.892,78.041L86.892,93.754L86.892,98.903L97.754,98.903L97.754,88.041Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:0.87px;"}"></path></g><g transform="${"matrix(6.12323e-17,-1,1,6.12323e-17,-56.3179,145.506)"}"><path d="${"M97.754,88.041L92.041,88.041L76.892,78.041L86.892,93.754L86.892,98.903L97.754,98.903L97.754,88.041Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:0.87px;"}"></path></g></g><defs><image id="${"_ImageCatalyst1"}" width="${"124px"}" height="${"128px"}" xlink:href="${"data:image/png;base64,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"}"></image></defs></g></svg>`;
-});
-const Claymore = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 128 128"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"}"><g transform="${"matrix(1.05467,0,0,1.05467,-3.23384,2.85124)"}"><g transform="${"matrix(0.948159,-0,-0,0.948159,3.06619,-2.70343)"}"><use xlink:href="${"#_ImageClaymore1"}" x="${"13.668"}" y="${"15.996"}" width="${"100.736px"}" height="${"112.128px"}" transform="${"matrix(0.997389,0,0,0.992283,0,0)"}"></use></g></g><g transform="${"matrix(1.05467,0,0,1.05467,-3.23384,2.85124)"}"><g opacity="${"0.75"}"><path d="${"M45.856,32.338C50.013,29.817 54.708,28.091 59.725,27.374"}" style="${"fill:none;stroke:rgb(125,129,134);stroke-width:0.95px;"}"></path><path d="${"M70.275,27.374C86.569,29.703 99.455,42.668 101.664,59"}" style="${"fill:none;stroke:rgb(125,129,134);stroke-width:0.95px;"}"></path><path d="${"M101.664,69C100.152,80.182 93.635,89.785 84.447,95.476"}" style="${"fill:none;stroke:rgb(125,129,134);stroke-width:0.95px;"}"></path><path d="${"M54.406,99.459C39.14,94.897 28,80.739 28,64C28,57.543 29.658,51.47 32.571,46.183"}" style="${"fill:none;stroke:rgb(125,129,134);stroke-width:0.95px;"}"></path></g></g><g transform="${"matrix(0.745768,-0.745768,0.745768,0.745768,-20.5657,49.2825)"}"><path d="${"M19,64L19,58C19,58 87.41,61.748 91.781,61.988C91.925,61.996 92.065,62.037 92.191,62.107C93.642,62.923 102.964,68.167 106.575,70.198C106.864,70.361 107.044,70.668 107.044,71C107.044,71.332 106.864,71.639 106.575,71.802C102.964,73.833 93.642,79.077 92.191,79.893C92.065,79.963 91.925,80.004 91.781,80.012C87.41,80.252 19,84 19,84L19,78L26,71L19,64Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:0.95px;"}"></path><g transform="${"matrix(0.707107,0.707107,-0.707107,0.707107,42.75,-19.5097)"}"><path d="${"M42.651,78.319L93.875,29.882L98.118,29.882L98.118,34.125L49.681,85.349L49.681,86.804L60.288,97.411L57.459,100.239L53.217,100.239L53.217,97.411L43.317,87.511L29.882,100.946L29.882,106.603L17.861,110.139L21.397,98.118L27.054,98.118L40.489,84.683L30.589,74.783L27.761,74.783L27.761,70.541L30.589,67.712L41.196,78.319L42.651,78.319Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:0.95px;"}"></path></g></g><defs><image id="${"_ImageClaymore1"}" width="${"101px"}" height="${"113px"}" xlink:href="${"data:image/png;base64,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"}"></image></defs></svg>`;
-});
-const Polearm = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 128 128"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"}"><g transform="${"matrix(0.689873,-0.689873,0.689873,0.689873,-23.6139,57.1013)"}"><g transform="${"matrix(0.724771,0.724771,-0.724771,0.724771,58.5,-24.2706)"}"><use xlink:href="${"#_ImagePolearm1"}" x="${"9"}" y="${"9"}" width="${"110px"}" height="${"110px"}"></use></g></g><g transform="${"matrix(0.851562,0,0,0.851562,11.7741,13.7254)"}"><g transform="${"matrix(1.14569,0,0,1.14569,-9.32429,-9.32429)"}"><path d="${"M47,47.898L47,42L35,42L35,54L41.789,54L67,79.211L67,86L79,86L79,74L73.102,74L47,47.898Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:1.02px;"}"></path></g><g transform="${"matrix(0.810127,-0.810127,0.810127,0.810127,-50.468,59.0381)"}"><path d="${"M6,66L23,66L24,65L51,67L53,65L59,65L63,61L68,66L81,66L85,62L77,54L135,69L77,84L85,76L81,72L68,72L63,77L59,73L53,73L51,71L24,73L23,72L6,72L3,69L6,66Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:1.02px;"}"></path></g></g><defs><image id="${"_ImagePolearm1"}" width="${"110px"}" height="${"110px"}" xlink:href="${"data:image/png;base64,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"}"></image></defs></svg>`;
-});
-const Sword = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return `<svg viewBox="${"0 0 128 128"}" version="${"1.1"}" xmlns="${"http://www.w3.org/2000/svg"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" xml:space="${"preserve"}" xmlns:serif="${"http://www.serif.com/"}" style="${"fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"}"><g transform="${"matrix(0.865166,0,0,0.865166,8.62938,9.92713)"}"><g opacity="${"0.75"}"><path d="${"M95.5,94L95.5,91.104L106.5,80.104L106.5,105L61.952,105L50.952,94L95.5,94"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M32.5,91.104L32.5,94L35.396,94L46.396,105L21.5,105L21.5,60.452L32.5,49.452L32.5,91.104"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M106.5,20L106.5,64.548L95.5,75.548L95.5,31L92.604,31L81.604,20L106.5,20Z"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M32.5,31L32.5,33.896L21.5,44.896L21.5,20L66.048,20L77.048,31L32.5,31Z"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M32.5,91.104L32.5,75.548L64,107.048L66.048,105L81.604,105L64,122.604L32.5,91.104Z"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M92.604,94L77.048,94L108.548,62.5L106.5,60.452L106.5,44.896L124.104,62.5L92.604,94Z"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M64,17.952L61.952,20L46.396,20L64,2.396L95.5,33.896L95.5,49.452L64,17.952Z"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><path d="${"M19.452,62.5L21.5,64.548L21.5,80.104L3.896,62.5L35.396,31L50.952,31L19.452,62.5Z"}" style="${"fill:rgb(201,207,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path></g></g><g transform="${"matrix(0.611765,-0.611765,0.611765,0.611765,-12.1886,31.6507)"}"><g opacity="${"0.75"}"><g transform="${"matrix(1,0,0,1,0,40)"}"><path d="${"M28,116L33.454,110.546L33.454,91L30.433,87.978L20,87.978L17.498,90.481L9.021,82.004L11.018,80.007L30,80.007L36,69.031L42,80.007L60.982,80.007L62.809,81.834L54.332,90.311L52,87.978L41.567,87.978L38.546,91L38.546,110.546L44,116L36,127L28,116Z"}" style="${"fill:rgb(199,205,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path></g><path d="${"M26.161,120.007L19,114C19,114 19,114 19,114C23.614,109.386 26.08,103.047 25.796,96.528C25.186,82.497 24.165,59 24.165,59C24.165,59 23,34 36,15L36.076,15.111C48.995,34.1 47.835,59 47.835,59C47.835,59 46.814,82.497 46.204,96.528C45.92,103.047 48.386,109.386 53,114C53,114 53,114 53,114L45.839,120.007L26.161,120.007Z"}" style="${"fill:rgb(199,205,210);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path></g></g><g transform="${"matrix(0.611765,0.611765,-0.611765,0.611765,96.557,-12.3964)"}"><path d="${"M26.161,120.007L19,114C19,114 19,114 19.001,113.999C23.637,109.363 26.241,103.075 26.241,96.519L26.241,90.752C26.241,90.752 23,34 36,15L36.076,15.111C46.013,29.717 46.392,76.075 46.038,96.699C45.909,103.172 48.423,109.419 53.002,113.997C53,114 53,114 53,114L45.839,120.007L26.161,120.007Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path><g transform="${"matrix(1,0,0,1,0,40)"}"><path d="${"M28,116L33.454,110.546L33.454,91L30.433,87.978L20,87.978L17.328,90.65L8.851,82.174L11.018,80.007L30,80.007L36,69.031L42,80.007L60.982,80.007L62.979,82.004L54.502,90.481L52,87.978L41.567,87.978L38.546,91L38.546,110.546L44,116L36,127L28,116Z"}" style="${"fill:rgb(255,253,255);stroke:rgb(125,129,134);stroke-width:1.16px;"}"></path></g></g></svg>`;
-});
-const SVGIcon = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { name = "" } = $$props;
-  const icons = {
-    anemo: Anemo,
-    cryo: Cryo,
-    dendro: Dendro,
-    electro: Electro,
-    geo: Geo,
-    hydro: Hydro,
-    pyro: Pyro,
-    bow: Bow,
-    catalyst: Catalyst,
-    claymore: Claymore,
-    polearm: Polearm,
-    sword: Sword
-  };
-  if ($$props.name === void 0 && $$bindings.name && name !== void 0)
-    $$bindings.name(name);
-  return `${name in icons ? `${validate_component(icons[name] || missing_component, "svelte:component").$$render($$result, {}, {}, {})}` : ``}`;
-});
-crossfade({
-  duration: 6400,
-  easing: cubicOut
-});
-const _itemInfo_svelte_svelte_type_style_lang = "";
-const css$8 = {
-  code: ".info.svelte-1pgmxjb.svelte-1pgmxjb{position:fixed;top:60%;display:flex;align-items:center;width:1200px;max-width:95%;z-index:+1;pointer-events:none}.info.svelte-1pgmxjb.svelte-1pgmxjb{left:50%;transform:translate(-50%, -50%)}.mobile .info.svelte-1pgmxjb.svelte-1pgmxjb{max-width:83%}.name.svelte-1pgmxjb.svelte-1pgmxjb{position:relative;z-index:+2;width:100%}.name.svelte-1pgmxjb span.svelte-1pgmxjb{color:rgba(255, 255, 255, 0.9);padding:0.2% 0 0.5%;display:block}.name.svelte-1pgmxjb span.animate.svelte-1pgmxjb{animation-delay:2s !important;animation:svelte-1pgmxjb-revealName forwards 0.8s 1;opacity:0}.name.svelte-1pgmxjb .text.animate.svelte-1pgmxjb{animation-delay:1.3s !important;animation:svelte-1pgmxjb-revealName forwards 0.8s 1;opacity:0;transform:translateX(20px)}.name.svelte-1pgmxjb .text.svelte-1pgmxjb{max-width:38%;font-size:2.5em;line-height:1.2em;color:#fff;-webkit-text-stroke:0.04rem #000}.text.svelte-1pgmxjb.svelte-1pgmxjb,.star.svelte-1pgmxjb.svelte-1pgmxjb{filter:drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.5))}.zh-CN .name.svelte-1pgmxjb .text.svelte-1pgmxjb,.ja-JP .name.svelte-1pgmxjb .text.svelte-1pgmxjb{font-size:3em}.icon.svelte-1pgmxjb.svelte-1pgmxjb{margin-top:-5px;position:relative;width:5rem}.icon.svelte-1pgmxjb svg{width:100%;height:100%}.mobile .icon.svelte-1pgmxjb.svelte-1pgmxjb{height:4rem}.icon.animate.svelte-1pgmxjb.svelte-1pgmxjb{opacity:0;animation-delay:1.2s !important;animation:svelte-1pgmxjb-revealIcon forwards 1.3s 1}.gi-star.svelte-1pgmxjb.svelte-1pgmxjb{color:#f7cf33;font-size:1.525em;display:inline-block}.gi-star.animate.svelte-1pgmxjb.svelte-1pgmxjb{opacity:0;transform:scale(5);animation:svelte-1pgmxjb-revealStar forwards 0.4s 1}.weapon-icon.svelte-1pgmxjb.svelte-1pgmxjb{background-image:linear-gradient(to right, #585a66, #bed0d4, #585a66);margin-top:-25px !important}.bonus.svelte-1pgmxjb.svelte-1pgmxjb{position:absolute;display:flex;bottom:-25vh;left:50%;transform:translateX(-50%)}.bonus.animate.svelte-1pgmxjb.svelte-1pgmxjb{opacity:0;animation:svelte-1pgmxjb-opacityChange forwards 1.5s 1}.stella.svelte-1pgmxjb.svelte-1pgmxjb,.bonus.svelte-1pgmxjb .masterless.svelte-1pgmxjb{width:3.5rem;border-radius:10%;overflow:hidden;display:block;text-align:center;position:relative;margin-left:0.5rem;margin-right:0.5rem;padding-bottom:0.5rem;box-shadow:0 0 7px rgba(255, 255, 255, 0.5), 0 0 14px rgba(255, 255, 255, 0.3),\n			0 0 30px rgba(255, 255, 255, 0.2)}.stella.svelte-1pgmxjb.svelte-1pgmxjb::after,.bonus.svelte-1pgmxjb .masterless span.svelte-1pgmxjb{width:100%;font-size:0.6rem;content:'1';display:block;position:absolute;left:0;bottom:0;color:#fff;text-align:center;background-color:rgba(0, 0, 0, 0.5)}.stella.svelte-1pgmxjb img.svelte-1pgmxjb,.bonus.svelte-1pgmxjb .masterless img.svelte-1pgmxjb{width:80%;height:auto}.stella5.svelte-1pgmxjb.svelte-1pgmxjb,.bonus.svelte-1pgmxjb .starglitter.svelte-1pgmxjb{background-image:linear-gradient(to top, #ca8937, #a47853)}.stella4.svelte-1pgmxjb.svelte-1pgmxjb{background-image:linear-gradient(to top, #a47ab9, #7e78a9)}@keyframes svelte-1pgmxjb-revealIcon{from{opacity:0}to{opacity:1}}@keyframes svelte-1pgmxjb-revealName{to{transform:translateX(0);opacity:1}}@keyframes svelte-1pgmxjb-revealStar{to{transform:scale(1);opacity:1}}@keyframes svelte-1pgmxjb-opacityChange{80%{opacity:0}85%{opacity:1}100%{opacity:1}}",
-  map: null
-};
-const Item_info = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { staticMode = false } = $$props;
-  let { custom = false } = $$props;
-  let { itemName = "" } = $$props;
-  let { chineseChar = "" } = $$props;
-  let { type = "" } = $$props;
-  let { vision = "" } = $$props;
-  let { weaponType = "" } = $$props;
-  let { outfitName = "" } = $$props;
-  let { stelaFortuna = false } = $$props;
-  let { bonusQty = 0 } = $$props;
-  let { rarity = 4 } = $$props;
-  if ($$props.staticMode === void 0 && $$bindings.staticMode && staticMode !== void 0)
-    $$bindings.staticMode(staticMode);
-  if ($$props.custom === void 0 && $$bindings.custom && custom !== void 0)
-    $$bindings.custom(custom);
-  if ($$props.itemName === void 0 && $$bindings.itemName && itemName !== void 0)
-    $$bindings.itemName(itemName);
-  if ($$props.chineseChar === void 0 && $$bindings.chineseChar && chineseChar !== void 0)
-    $$bindings.chineseChar(chineseChar);
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.vision === void 0 && $$bindings.vision && vision !== void 0)
-    $$bindings.vision(vision);
-  if ($$props.weaponType === void 0 && $$bindings.weaponType && weaponType !== void 0)
-    $$bindings.weaponType(weaponType);
-  if ($$props.outfitName === void 0 && $$bindings.outfitName && outfitName !== void 0)
-    $$bindings.outfitName(outfitName);
-  if ($$props.stelaFortuna === void 0 && $$bindings.stelaFortuna && stelaFortuna !== void 0)
-    $$bindings.stelaFortuna(stelaFortuna);
-  if ($$props.bonusQty === void 0 && $$bindings.bonusQty && bonusQty !== void 0)
-    $$bindings.bonusQty(bonusQty);
-  if ($$props.rarity === void 0 && $$bindings.rarity && rarity !== void 0)
-    $$bindings.rarity(rarity);
-  $$result.css.add(css$8);
-  $$unsubscribe_t();
-  $$unsubscribe_assets();
-  return `<div class="${"info svelte-1pgmxjb"}">${type !== "outfit" ? `<div class="${["icon vision svelte-1pgmxjb", !staticMode ? "animate" : ""].join(" ").trim()}">${validate_component(SVGIcon, "SvgIcon").$$render($$result, { name: weaponType || vision }, {}, {})}</div>` : ``}
-
-	
-	<div class="${"name svelte-1pgmxjb"}">${type === "outfit" ? `<span class="${["svelte-1pgmxjb", !staticMode ? "animate" : ""].join(" ").trim()}">${escape($t("outfit.obtained"))}</span>` : ``}
-
-		<div class="${["text svelte-1pgmxjb", !staticMode ? "animate" : ""].join(" ").trim()}">${custom ? `${escape(itemName)}` : `${type === "member" ? `${escape(chineseChar)}` : `${type === "outfit" ? `${escape($t(`outfit.item.${outfitName}.name`))}` : `${weaponType ? `${escape($t(itemName))}` : `${escape($t(`${itemName}.name`))}`}`}`}`}</div>
-
-		<div class="${"star svelte-1pgmxjb"}">${each(Array(rarity), (_, i) => {
-    return `<i class="${["gi-star svelte-1pgmxjb", !staticMode ? "animate" : ""].join(" ").trim()}" style="${"animation-delay: " + escape(2 + i * 0.15, true) + "s"}"></i>`;
-  })}</div>
-
-		${type === "outfit" ? `<span class="${["anim svelte-1pgmxjb", !staticMode ? "animate" : ""].join(" ").trim()}">${escape($t("outfit.unlocked", {
-    values: { character: $t(`${itemName}.name`) }
-  }))}</span>` : ``}</div>
-
-	
-	<div class="${["bonus svelte-1pgmxjb", !staticMode ? "animate" : ""].join(" ").trim()}">${stelaFortuna ? `<div class="${"stella stella" + escape(rarity, true) + " svelte-1pgmxjb"}"><img${add_attribute("src", $assets[`stella-fortuna-${rarity}star.webp`], 0)} alt="${"Stella Formula"}" class="${"svelte-1pgmxjb"}"></div>` : ``}
-
-		${type == "character" && bonusQty > 0 ? `<div class="${"masterless starglitter svelte-1pgmxjb"}">${validate_component(Icon, "Icon").$$render($$result, { type: "starglitter", width: "80%" }, {}, {})}
-				<span class="${"svelte-1pgmxjb"}">${escape(bonusQty)}</span></div>` : ``}</div>
-</div>`;
-});
-const encodeAndMakeLink = (string, path = "wishitem") => {
-  const encoded = window.btoa(string);
-  const link = `${window.location.origin}/screen/${path}?a=${encoded}`;
-  return link;
-};
-const encodeData = {
-  _createStringData(data) {
-    const { bonusQty, bonusType, vision, rarity, name, stelaFortuna, type, isNew, useOutfit } = data;
-    const string = `${name}/${rarity}/${vision}/${+!!stelaFortuna}/${bonusQty}/${bonusType}/${+!!useOutfit}/${type}/${+!!isNew}`;
-    return string;
-  },
-  single(data) {
-    const stringData = this._createStringData(data[0]);
-    return encodeAndMakeLink(stringData);
-  },
-  multi(data) {
-    const arrayDataStr = data.map(this._createStringData);
-    const stringData = arrayDataStr.join("|");
-    return encodeAndMakeLink(stringData, "wishlist");
-  }
-};
-const createLink = (data = []) => {
-  if (data.length > 1)
-    return encodeData.multi(data);
-  return encodeData.single(data);
-};
-const _resultListItem_svelte_svelte_type_style_lang = "";
-const css$7 = {
-  code: ".character.duplicate.svelte-yhto5y.svelte-yhto5y{animation:svelte-yhto5y-brighten forwards 1s;animation-delay:1s}.item.svelte-yhto5y.svelte-yhto5y{transition:all 0.2s;will-change:transform}.item.svelte-yhto5y.svelte-yhto5y:hover,.item.hover.svelte-yhto5y.svelte-yhto5y{transform:scale(1.04)}.item.svelte-yhto5y:hover .cover.svelte-yhto5y,.item.hover.svelte-yhto5y .cover.svelte-yhto5y{background-color:rgba(0, 0, 0, 0)}.star5.svelte-yhto5y .item-body.svelte-yhto5y{background-image:linear-gradient(\n			to bottom,\n			rgb(249, 170, 2),\n			rgb(255, 255, 255),\n			rgb(249, 170, 2)\n		)}.star4.svelte-yhto5y .item-body.svelte-yhto5y{background-image:linear-gradient(\n			to bottom,\n			rgb(196, 77, 218),\n			rgb(255, 255, 255),\n			rgb(196, 77, 218)\n		)}.new.svelte-yhto5y.svelte-yhto5y{position:absolute;z-index:10;display:block;top:3%;left:80%;transform:translateX(-50%);padding:0 0.4rem;border-radius:calc(2 / 100 * var(--card-height)) 0;color:#fffa66;background-color:#c3882a;border:1px solid #fffa66;font-size:calc(3 / 100 * var(--card-height))}.cover.svelte-yhto5y.svelte-yhto5y{display:block;position:absolute;left:0;top:0;height:100%;width:100%;transition:all 0.2s;background-color:rgba(0, 0, 0, 0.2)}.item-body.svelte-yhto5y.svelte-yhto5y{--scale:2.05;height:100%;-webkit-clip-path:url(#wishframe);clip-path:url(#wishframe);margin:0 0.5px;display:flex;justify-content:center;align-items:center;touch-action:unset;background-image:linear-gradient(to bottom, #aac8f1, #fff, #aac8f1)}.item-body.catalyst.svelte-yhto5y.svelte-yhto5y{--scale:1.3}.character.svelte-yhto5y .item-body.svelte-yhto5y{--scale:5;--translate-y:150%}.item-content.svelte-yhto5y.svelte-yhto5y{-webkit-clip-path:url(#wishframe);clip-path:url(#wishframe);transform:scaleX(0.98) scaleY(0.99);background-image:var(--bg);background-size:cover;background-position:center center;position:relative}.item-content.svelte-yhto5y.svelte-yhto5y::after{content:'';display:block;position:absolute;bottom:0;left:0;width:100%;height:50%;background-image:linear-gradient(to top, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0))}#chinese-char.svelte-yhto5y.svelte-yhto5y{font-family:'AaQiShu';position:absolute;left:50%;transform:translate(-50%, -50%);font-size:15vh;color:#2f2e2f;filter:drop-shadow(0.2rem 0.2rem 0.02rem rgb(0, 0, 0))\n	}.zoomist-image.svelte-yhto5y.svelte-yhto5y{position:absolute;transform:translate(var(--translate-x, 0px), var(--translate-y, 0px)) scale(var(--scale, 0))}.zoomist-image.weapon.svelte-yhto5y.svelte-yhto5y{width:100%;height:100%}img.svelte-yhto5y.svelte-yhto5y{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.weapon.svelte-yhto5y img.wishpic.svelte-yhto5y{filter:drop-shadow(0.2rem 0.2rem 0.02rem rgb(0, 0, 0))}.stella.svelte-yhto5y.svelte-yhto5y{margin-top:10%}.stella.svelte-yhto5y.svelte-yhto5y,.masterless.svelte-yhto5y.svelte-yhto5y{width:60%;border-radius:10%;overflow:hidden;display:flex;justify-content:center;align-items:center;aspect-ratio:1/1;position:relative;box-shadow:0 0 7px rgba(255, 255, 255, 0.7), 0 0 14px rgba(255, 255, 255, 0.5),\n			0 0 21px rgba(255, 255, 255, 0.2), 0 0 42px rgba(255, 255, 255, 1)}.stella.svelte-yhto5y.svelte-yhto5y::after,.masterless.svelte-yhto5y span.svelte-yhto5y{width:100%;font-size:calc(3 / 100 * var(--card-height));content:'1';display:block;position:absolute;left:0;bottom:0;color:#fff;text-align:center;background-color:rgba(0, 0, 0, 0.5)}.stella5.svelte-yhto5y.svelte-yhto5y,.starglitter.svelte-yhto5y.svelte-yhto5y{background-image:linear-gradient(to top, #ca8937, #a47853)}.stella4.svelte-yhto5y.svelte-yhto5y{background-image:linear-gradient(to top, #a47ab9, #7e78a9)}.info.svelte-yhto5y.svelte-yhto5y{position:absolute;bottom:10%;left:0;width:100%;z-index:10;display:flex;flex-direction:column;align-items:center}.info.svelte-yhto5y .gi-star.svelte-yhto5y{color:#f7cf33;display:inline-block;font-size:calc(3.5 / 100 * var(--card-height))}.icon.svelte-yhto5y svg{width:80%;aspect-ratio:1/1}@keyframes svelte-yhto5y-brighten{0%{filter:brightness(100%)}50%{filter:brightness(150%)}100%{filter:brightness(100%)}}",
-  map: null
-};
-const Result_list_item = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  let $assets, $$unsubscribe_assets;
-  let $customData, $$unsubscribe_customData;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_customData = subscribe(customData, (value) => $customData = value);
-  let { index } = $$props;
-  let { clientHeight } = $$props;
-  let { clientWidth } = $$props;
-  let { data = {} } = $$props;
-  const { name, rarity, weaponType, type, vision, offset, stelaFortuna, isNew, bonusType, bonusQty, useOutfit, outfitName, custom, chineseChar } = data;
-  const getCssVarPercent = (l, i) => {
-    const pos = Math.floor(100 / (l + 1) * (i + 1));
-    return `top: ${pos}%;`;
-  };
-  if ($$props.index === void 0 && $$bindings.index && index !== void 0)
-    $$bindings.index(index);
-  if ($$props.clientHeight === void 0 && $$bindings.clientHeight && clientHeight !== void 0)
-    $$bindings.clientHeight(clientHeight);
-  if ($$props.clientWidth === void 0 && $$bindings.clientWidth && clientWidth !== void 0)
-    $$bindings.clientWidth(clientWidth);
-  if ($$props.data === void 0 && $$bindings.data && data !== void 0)
-    $$bindings.data(data);
-  $$result.css.add(css$7);
-  $$unsubscribe_t();
-  $$unsubscribe_assets();
-  $$unsubscribe_customData();
-  return `<div id="${"wish" + escape(index, true)}" class="${[
-    "item star" + escape(rarity, true) + " " + escape(type, true) + " svelte-yhto5y",
-    !isNew ? "duplicate" : ""
-  ].join(" ").trim()}">${isNew ? `<div class="${"new svelte-yhto5y"}">${escape($t("wish.result.new"))}</div>` : ``}
-	<div class="${"zoomist-container item-body " + escape(weaponType || "", true) + " svelte-yhto5y"}"><div class="${"zoomist-wrapper item-content svelte-yhto5y"}" style="${"--bg: url(" + escape($assets["resultcard-bg.webp"], true) + ")"}">${custom ? (() => {
-    let { images = {}, hostedImages = {}, status, artPosition } = $customData || {}, { artURL } = status === "owned" ? images : hostedImages, { wishCard = {} } = artPosition || {};
-    return `
-				
-				
-				<div class="${"zoomist-image svelte-yhto5y"}"${add_attribute("style", getCssVarPosition(wishCard, clientHeight, clientWidth), 0)}><img${add_attribute("src", artURL, 0)}${add_attribute("alt", name, 0)} class="${"wishpic svelte-yhto5y"}" crossorigin="${"anonymous"}"></div>`;
-  })() : `${type === "member" ? `${each(chineseChar, (c, i) => {
-    return `<p id="${"chinese-char"}"${add_attribute("style", getCssVarPercent(chineseChar.length, i), 0)} class="${"svelte-yhto5y"}">${escape(c)}</p>`;
-  })}
-				
-				
-
-				` : `${type === "weapon" ? `<div class="${"zoomist-image weapon svelte-yhto5y"}"><img${add_attribute("src", $assets[name], 0)}${add_attribute("alt", name, 0)} class="${"wishpic svelte-yhto5y"}" crossorigin="${"anonymous"}"></div>
-
-				` : `<div class="${"zoomist-image svelte-yhto5y"}"${add_attribute("style", getCssVarPosition(offset?.wishCard || {}, clientHeight, clientWidth), 0)}><img${add_attribute("src", $assets[`splash-art/${useOutfit ? outfitName : name}`], 0)}${add_attribute("alt", name, 0)} class="${"wishpic svelte-yhto5y"}" crossorigin="${"anonymous"}"></div>`}`}`}
-
-			<div class="${"info svelte-yhto5y"}"><div class="${"icon svelte-yhto5y"}" style="${"width: 100%;"}">${isNew || type === "weapon" ? (() => {
-    let iconName = weaponType || vision;
-    return `
-						${validate_component(SVGIcon, "SvgIcon").$$render($$result, { name: iconName }, {}, {})}`;
-  })() : ``}</div>
-
-				${isNew && type === "character" || type === "weapon" ? `<div class="${"star"}">${each(Array(rarity), (_, i) => {
-    return `<div class="${"i gi-star svelte-yhto5y"}"></div>`;
-  })}</div>` : ``}
-
-				${type === "character" && !isNew ? `<div class="${"masterless " + escape(bonusType, true) + " svelte-yhto5y"}">${validate_component(Icon, "Icon").$$render($$result, { type: bonusType, width: "80%" }, {}, {})}
-						<span class="${"svelte-yhto5y"}">${escape(bonusQty)}</span></div>` : ``}
-
-				${stelaFortuna ? `<div class="${"stella stella" + escape(rarity, true) + " svelte-yhto5y"}"><img${add_attribute("src", $assets[`stella-fortuna-${rarity}star.webp`], 0)} alt="${"Stella Fortuna"}" class="${"svelte-yhto5y"}"></div>` : ``}</div>
-
-			${type === "character" && !isNew ? `<div class="${"cover svelte-yhto5y"}"></div>` : ``}</div></div>
-</div>`;
-});
-const ResultList_svelte_svelte_type_style_lang = "";
-const css$6 = {
-  code: ".scroll.svelte-13e6w8v.svelte-13e6w8v{width:100%;height:100%;display:block}.container.svelte-13e6w8v.svelte-13e6w8v{width:100% !important;height:100%;display:flex;justify-content:center;align-items:center}.container.animate.svelte-13e6w8v.svelte-13e6w8v::after{content:'';display:block;width:100%;height:100%;position:fixed;top:0;left:0;background-color:#fff;opacity:1;animation:svelte-13e6w8v-reveal forwards 1s 1;pointer-events:none}.close.svelte-13e6w8v.svelte-13e6w8v{position:fixed;top:15px;right:3%;z-index:10;opacity:0}.mobile .close.svelte-13e6w8v.svelte-13e6w8v{top:0.3rem;right:6%}.wishlist.svelte-13e6w8v.svelte-13e6w8v,.shadows.svelte-13e6w8v.svelte-13e6w8v{display:block;height:40vw;max-height:60vh;min-height:40vh;width:100%;padding:0 20px;white-space:nowrap;text-align:center}.item-box.animate.svelte-13e6w8v.svelte-13e6w8v,.shadow.animate.svelte-13e6w8v.svelte-13e6w8v{opacity:0;animation:svelte-13e6w8v-wishReveal forwards 0.4s 1;pointer-events:none}.mobile .wishlist.svelte-13e6w8v.svelte-13e6w8v,.mobile .shadows.svelte-13e6w8v.svelte-13e6w8v{min-height:70vh}.mobile .wishlist.svelte-13e6w8v.svelte-13e6w8v,.mobile .shadows.svelte-13e6w8v.svelte-13e6w8v{max-height:72.5vh}.item-box.svelte-13e6w8v .item,.shadow.svelte-13e6w8v.svelte-13e6w8v{height:100%;aspect-ratio:7/30;border-radius:100%;filter:drop-shadow(0px 0px 6px rgb(101, 187, 246));position:relative}.shadow5.svelte-13e6w8v.svelte-13e6w8v,.shadow4.svelte-13e6w8v.svelte-13e6w8v,.item-box.svelte-13e6w8v .item.star4,.item-box.svelte-13e6w8v .item.star5{filter:unset}.item-box.svelte-13e6w8v.svelte-13e6w8v{height:100%;display:inline-block}.shadows.svelte-13e6w8v.svelte-13e6w8v{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:-1}.shadow.svelte-13e6w8v.svelte-13e6w8v{display:inline-block;height:100%;border-radius:100%}.shadow.svelte-13e6w8v span.svelte-13e6w8v{position:absolute;left:50%;bottom:-5%;color:#fff;transform:translateX(-50%);-webkit-text-stroke:0.3px #000}.shadow.shadow5.svelte-13e6w8v.svelte-13e6w8v{box-shadow:0 0 4rem rgba(255, 255, 255, 0.5), 0 0 1rem rgb(249, 170, 2),\n			0 0 1.4rem rgb(249, 170, 2), 0 0 2rem rgb(249, 121, 2);background-color:rgb(249, 170, 2);filter:unset}.shadow.shadow4.svelte-13e6w8v.svelte-13e6w8v{box-shadow:0 0 4rem rgba(255, 255, 255, 0.6), 0 0 1rem rgb(138, 3, 161),\n			0 0 1.4rem rgb(217, 0, 255), 0 0 2rem rgb(29, 4, 255);background-color:rgb(185, 18, 214)}.convertion.svelte-13e6w8v.svelte-13e6w8v{font-size:calc(3 / 100 * var(--card-height))}@keyframes svelte-13e6w8v-wishReveal{0%{transform:translateX(150%)}100%{transform:translateX(0);opacity:1}}@keyframes svelte-13e6w8v-reveal{20%{opacity:1}99%{opacity:0}100%{opacity:0}}",
-  map: null
-};
-const ResultList = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { standalone = false } = $$props;
-  let { list = [] } = $$props;
-  let clientHeight;
-  let clientWidth;
-  let container;
-  const sortByType = (a, b) => {
-    if (a.type > b.type)
-      return 1;
-    if (b.type > a.type)
-      return -1;
-    return 0;
-  };
-  const sortByName = (a, b) => {
-    if (a.name > b.name)
-      return 1;
-    if (a.name < b.name)
-      return -1;
-    return 0;
-  };
-  let sortedWish = [];
-  const sortList = (list2) => {
-    const item = (star) => list2.filter(({ rarity }) => rarity === star).sort(sortByName).sort((a, b) => b.isNew - a.isNew).sort(sortByType);
-    const threeStar = list2.filter(({ rarity }) => rarity === 3);
-    sortedWish = [...item(5), ...item(4), ...threeStar];
-  };
-  if ($$props.standalone === void 0 && $$bindings.standalone && standalone !== void 0)
-    $$bindings.standalone(standalone);
-  if ($$props.list === void 0 && $$bindings.list && list !== void 0)
-    $$bindings.list(list);
-  $$result.css.add(css$6);
-  {
-    sortList(list);
-  }
-  $$unsubscribe_t();
-  return `<svg viewBox="${"0 0 151.000000 656.000000"}" height="${"0"}" width="${"0"}" style="${"position: absolute;"}"><clipPath id="${"wishframe"}" transform="${"scale(0.00066225165562914 0.00015455950540958)"}" clipPathUnits="${"objectBoundingBox"}"><path d="${"M734 6419 c-25 -29 -100 -76 -199 -127 -125 -64 -165 -117 -165 -217\n			0 -22 -3 -50 -6 -63 -9 -33 -83 -72 -155 -82 -68 -10 -79 -19 -79 -67 0 -24\n			-7 -37 -32 -54 -18 -12 -43 -34 -55 -48 l-22 -26 -1 -2502 c0 -1542 4 -2503 9\n			-2503 5 0 13 -9 16 -20 4 -11 23 -28 43 -38 32 -15 37 -22 40 -57 4 -49 23\n			-65 76 -65 47 0 113 -28 140 -58 12 -14 21 -45 26 -90 13 -117 54 -164 215\n			-250 55 -28 114 -66 132 -82 18 -17 35 -30 39 -30 4 0 23 15 44 34 21 19 80\n			56 131 82 153 79 197 131 210 252 4 39 13 70 25 84 27 30 93 58 140 58 53 0\n			72 16 76 65 3 35 8 42 40 57 20 10 39 27 43 38 3 11 11 20 16 20 5 0 9 961 9\n			2503 l-1 2502 -22 26 c-12 14 -37 36 -54 48 -26 17 -33 30 -33 54 0 48 -11 57\n			-79 67 -72 10 -146 49 -155 82 -3 13 -6 41 -6 63 0 100 -40 153 -165 217 -106\n			54 -153 84 -191 119 l-30 29 -20 -21z"}"></path></clipPath></svg>
-
-<div class="${"scroll svelte-13e6w8v"}"${add_attribute("this", container, 0)}><div class="${"container animate svelte-13e6w8v"}"><div class="${"wishlist svelte-13e6w8v"}" style="${"--card-height: " + escape(clientHeight, true) + "px"}">${each(sortedWish, (data, i) => {
-    return `<div class="${["item-box svelte-13e6w8v", !standalone ? "animate" : ""].join(" ").trim()}" style="${"animation-delay: " + escape(0.5 + i * 0.1, true) + "s"}">${validate_component(Result_list_item, "ResultListItem").$$render(
-      $$result,
-      {
-        data,
-        index: i,
-        clientHeight,
-        clientWidth
-      },
-      {},
-      {}
-    )}
-				</div>`;
-  })}</div>
-		<div class="${"shadows svelte-13e6w8v"}" style="${"--card-height: " + escape(clientHeight, true) + "px"}">${each(sortedWish, ({ rarity, type, isNew }, i) => {
-    return `<div class="${[
-      "shadow shadow" + escape(rarity, true) + " svelte-13e6w8v",
-      !standalone ? "animate" : ""
-    ].join(" ").trim()}" style="${"animation-delay: " + escape(0.5 + i * 0.1, true) + "s"}">${type === "character" && !isNew ? `<span class="${"convertion svelte-13e6w8v"}">${escape($t("wish.result.convertion"))} </span>` : ``}
-				</div>`;
-  })}</div></div>
-</div>`;
-});
-const _splashLight_svelte_svelte_type_style_lang = "";
-const css$5 = {
-  code: "div.svelte-gc365d{aspect-ratio:1/1}.orbs.svelte-gc365d{background-color:transparent;border-radius:100%;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0);transform-origin:0 0;opacity:0}.in.svelte-gc365d{animation:svelte-gc365d-orbsIn forwards 1}.in1.svelte-gc365d{width:100%}.in2.svelte-gc365d{width:80%}.in3.svelte-gc365d{width:40%}.in4.svelte-gc365d{width:70%}.in5.svelte-gc365d{position:fixed;transform:translate(-50%, 50%);bottom:0;width:100vw;aspect-ratio:1/1;opacity:1;animation:svelte-gc365d-orbs2 forwards 1s 1}.out.svelte-gc365d{transform:scale(0) translate(-50%, -50%);opacity:0}.out.svelte-gc365d{animation:svelte-gc365d-outOrbs forwards 1}.out1.svelte-gc365d{width:50%;background-color:rgb(254 133 63 / 5%)}.out2.svelte-gc365d{width:100%}.out3.svelte-gc365d{width:150%}.star5.in1.svelte-gc365d{background-color:rgb(254 133 63 / 5%);box-shadow:0 0 50px rgb(254 133 63 / 10%), inset 0 0 70px rgb(254 133 63 / 10%)}.star5.in2.svelte-gc365d{box-shadow:0 0 50px rgb(253 148 48 / 30%), inset 0 0 70px rgb(253 148 48 / 30%)}.star5.in3.svelte-gc365d{box-shadow:0 0 50px rgb(251 193 60 / 50%), inset 0 0 70px rgb(251 193 60 / 0%);background-image:radial-gradient(rgba(251, 193, 60, 1), rgb(251, 193, 60, 0))}.star5.in4.svelte-gc365d{box-shadow:0 0 30px rgb(253 148 48 / 10%), inset 0 0 30px rgb(253 148 48 / 10%)}.star5.in5.svelte-gc365d{background-image:radial-gradient(\n			rgba(253, 148, 48, 0.5),\n			rgb(253, 148, 48, 0),\n			rgba(253, 148, 48, 0)\n		)}.star5.out1.svelte-gc365d{box-shadow:0 0 50px rgb(251 193 60 / 50%), inset 0 0 50px rgb(251 193 60 / 50%)}.star5.out2.svelte-gc365d{box-shadow:0 0 150px rgb(255 255 255 / 50%), inset 0 0 170px rgb(255 255 255 / 50%)}.star5.out3.svelte-gc365d{box-shadow:0 0 200px rgb(253 148 48 / 60%), inset 0 0 170px rgb(253 148 48 / 60%)}.star4.in1.svelte-gc365d{background-color:rgba(241, 143, 223, 0.05);box-shadow:0 0 50px rgba(126, 20, 158, 0.1), inset 0 0 70px rgba(159, 51, 241, 0.1)}.star4.in2.svelte-gc365d{box-shadow:0 0 50px rgb(113 34 221 / 30%), inset 0 0 70px rgb(113 34 221 / 30%)}.star4.in3.svelte-gc365d{box-shadow:0 0 50px rgb(180 47 248 / 50%), inset 0 0 70px rgb(180 47 248 / 0%);background-image:radial-gradient(rgba(156, 71, 218, 1), rgb(180, 47, 248, 0))}.star4.in4.svelte-gc365d{box-shadow:0 0 30px rgb(113 34 221 / 10%), inset 0 0 30px rgb(113 34 221 / 10%)}.star4.in5.svelte-gc365d{background-image:radial-gradient(\n			rgba(156, 71, 218, 0.5),\n			rgb(156, 71, 218, 0),\n			rgba(156, 71, 218, 0)\n		)}.star4.out1.svelte-gc365d{box-shadow:0 0 50px rgb(180 47 248 / 50%), inset 0 0 50px rgb(180 47 248 / 50%)}.star4.out2.svelte-gc365d{box-shadow:0 0 150px rgb(255 255 255 / 50%), inset 0 0 170px rgb(255 255 255 / 50%)}.star4.out3.svelte-gc365d{box-shadow:0 0 200px rgb(113 34 221 / 60%), inset 0 0 170px rgb(113 34 221 / 60%)}.star3.in1.svelte-gc365d{background-color:rgba(255, 255, 255, 0.05);box-shadow:0 0 50px rgba(255, 255, 255, 0.1), inset 0 0 70px rgba(247, 237, 231, 0.1)}.star3.in2.svelte-gc365d{box-shadow:0 0 50px rgb(85 93 255 / 30%), inset 0 0 70px rgb(85 93 255 / 30%)}.star3.in3.svelte-gc365d{box-shadow:0 0 50px rgb(106 128 254 / 50%), inset 0 0 70px rgb(106 128 254 / 0%);background-image:radial-gradient(rgba(99, 124, 205, 1), rgba(99, 124, 205, 0))}.star3.in4.svelte-gc365d{box-shadow:0 0 30px rgb(85 93 255 / 10%), inset 0 0 30px rgb(85 93 255 / 10%)}.star3.in5.svelte-gc365d{background-image:radial-gradient(\n			rgba(99, 124, 205, 0.5),\n			rgba(99, 124, 205, 0),\n			rgba(99, 124, 205, 0)\n		)}.star3.out1.svelte-gc365d{box-shadow:0 0 50px rgb(157 217 252 / 50%), inset 0 0 50px rgb(157 217 252 / 50%)}.star3.out2.svelte-gc365d{box-shadow:0 0 150px rgb(255 255 255 / 50%), inset 0 0 170px rgba(99, 124, 205, 1)}.star3.out3.svelte-gc365d{box-shadow:0 0 200px rgb(85 93 255 / 60%), inset 0 0 170px rgb(85 93 255 / 60%)}@keyframes svelte-gc365d-orbsIn{0%{transform:scale(0) translate(-50%, -50%)}90%{transform:scale(1) translate(-50%, -50%);opacity:1}100%{transform:scale(1) translate(-50%, -50%);opacity:0}}@keyframes svelte-gc365d-orbs2{0%{transform:scale(0) translateX(-50%)}90%{transform:scale(1) translateX(-50%);opacity:1}100%{transform:scale(1) translateX(-50%);opacity:0}}@keyframes svelte-gc365d-outOrbs{30%{opacity:1}100%{transform:scale(2) translate(-50%, -50%);opacity:0}}",
-  map: null
-};
-const Splash_light = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { type = "" } = $$props;
-  let { rarity = 0 } = $$props;
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.rarity === void 0 && $$bindings.rarity && rarity !== void 0)
-    $$bindings.rarity(rarity);
-  $$result.css.add(css$5);
-  return `${type === "in" ? `<div class="${"star" + escape(rarity, true) + " orbs in5 svelte-gc365d"}"></div>
-	<div class="${"in star" + escape(rarity, true) + " orbs in1 svelte-gc365d"}" style="${"animation-duration: 1s;"}"></div>
-	<div class="${"in star" + escape(rarity, true) + " orbs in2 svelte-gc365d"}" style="${"animation-duration: 1.2s;"}"></div>
-	<div class="${"in star" + escape(rarity, true) + " orbs in3 svelte-gc365d"}" style="${"animation-duration: 1.1s;"}"></div>
-	<div class="${"in star" + escape(rarity, true) + " orbs in4 svelte-gc365d"}" style="${"animation-duration: .75s;"}"></div>` : ``}
-
-${type === "out" ? `<div class="${"out star" + escape(rarity, true) + " orbs out1 svelte-gc365d"}" style="${"animation-duration: 0.8s; animation-delay: .1s;"}"></div>
-	<div class="${"out star" + escape(rarity, true) + " orbs out2 svelte-gc365d"}" style="${"animation-duration: 2s;"}"></div>
-	<div class="${"out star" + escape(rarity, true) + " orbs out3 svelte-gc365d"}" style="${"animation-duration: 1.2s; animation-delay: .1s;"}"></div>` : ``}`;
-});
-const _weaponBonus_svelte_svelte_type_style_lang = "";
-const css$4 = {
-  code: ".starfate.svelte-oj7u6a.svelte-oj7u6a{justify-content:flex-end;right:0;transform:translateY(-50%);text-transform:capitalize}.starfate.svelte-oj7u6a>.icon.svelte-oj7u6a{margin-right:-25px;position:relative;z-index:+1;transform:scale(1);animation-delay:1.3s !important}.starfate.anim.svelte-oj7u6a>.icon.svelte-oj7u6a{animation:svelte-oj7u6a-starfateIcon forwards 0.4s 1;opacity:0}.starfate.starglitter.svelte-oj7u6a img{filter:drop-shadow(0 0 6px rgba(245, 193, 63, 1))}.starglitter.svelte-oj7u6a .text.svelte-oj7u6a{background-image:linear-gradient(to right, rgba(245, 193, 63, 0.9), rgba(245, 193, 63, 0.1));color:rgb(255, 255, 77)}.starfate.stardust.svelte-oj7u6a img{filter:drop-shadow(0 0 6px rgba(221, 203, 245, 1))}.stardust.svelte-oj7u6a .text.svelte-oj7u6a{background-image:linear-gradient(to right, rgba(104, 47, 173, 0.9), rgba(104, 47, 173, 0.1));color:rgb(198, 130, 214)}.starfate.svelte-oj7u6a .text.svelte-oj7u6a{width:330px;max-width:50%;padding:2px 25px;position:relative;z-index:-1;animation-delay:1.3s !important}.starfate.anim.svelte-oj7u6a .text.svelte-oj7u6a{opacity:0;animation:svelte-oj7u6a-starfateText forwards 0.7s 1}.mobile .starfate.svelte-oj7u6a .text.svelte-oj7u6a{width:230px}.starfate.svelte-oj7u6a span.svelte-oj7u6a{color:#ddd;position:absolute;top:-45%;left:25px;font-size:smaller}.starfate.svelte-oj7u6a.svelte-oj7u6a{position:fixed;top:60%;display:flex;align-items:center;width:1200px;max-width:95%;z-index:+1}@keyframes svelte-oj7u6a-starfateIcon{30%{transform:scale(1.5);opacity:1}100%{transform:scale(1);opacity:1}}@keyframes svelte-oj7u6a-starfateText{0%{transform:translateX(-10px);opacity:0}100%{transform:translateX(0px);opacity:1}}",
-  map: null
-};
-const Weapon_bonus = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $isMobile, $$unsubscribe_isMobile;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => $isMobile = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { bonusQty = 0 } = $$props;
-  let { bonusType = "stardust" } = $$props;
-  let { type } = $$props;
-  if ($$props.bonusQty === void 0 && $$bindings.bonusQty && bonusQty !== void 0)
-    $$bindings.bonusQty(bonusQty);
-  if ($$props.bonusType === void 0 && $$bindings.bonusType && bonusType !== void 0)
-    $$bindings.bonusType(bonusType);
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  $$result.css.add(css$4);
-  $$unsubscribe_isMobile();
-  $$unsubscribe_t();
-  return `${type === "weapon" && bonusQty > 1 ? `<div class="${"starfate anim " + escape(bonusType, true) + " svelte-oj7u6a"}"><div class="${"icon svelte-oj7u6a"}">${validate_component(Icon, "Icon").$$render(
-    $$result,
-    {
-      type: bonusType,
-      width: $isMobile ? "50px" : "60px"
-    },
-    {},
-    {}
-  )}</div>
-		<div class="${"text svelte-oj7u6a"}"><span class="${"svelte-oj7u6a"}">${escape($t("extra"))}</span>
-			${escape($t(`shop.item.${bonusType}`))}
-			<br> \xD7${escape(bonusQty)}</div></div>` : ``}`;
-});
-const _screenshotResult_svelte_svelte_type_style_lang = "";
-const css$3 = {
-  code: ".screenshot.svelte-1l9q1y3.svelte-1l9q1y3{width:100vw;height:var(--screen-height);position:fixed;z-index:998;top:0;left:0;display:flex;justify-content:center;align-items:center;background-color:rgba(0, 0, 0, 0.45);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.screenshot.svelte-1l9q1y3.svelte-1l9q1y3::after{content:'';display:block;width:100%;height:100%;position:fixed;top:0;left:0;background-color:#fff;pointer-events:none;animation:svelte-1l9q1y3-flash forwards 1s}.screenshot.svelte-1l9q1y3 .wrapper.svelte-1l9q1y3{width:75%;max-height:75%;display:flex;justify-content:center;align-items:center;position:relative;box-shadow:0 0 3px rgba(255, 255, 255, 0.8)}picture.svelte-1l9q1y3.svelte-1l9q1y3{display:flex;justify-content:center;align-items:center;width:100%;height:100%;padding:0.2rem;background-color:#fff}.screenshot.svelte-1l9q1y3 img.svelte-1l9q1y3{max-height:100%;max-width:100%}.divider.svelte-1l9q1y3.svelte-1l9q1y3{background-color:#fff;height:1.7rem;width:0.1rem;display:inline-block;margin:0 0.6rem}.toast.svelte-1l9q1y3.svelte-1l9q1y3{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);display:inline-block;padding:0.5rem 1rem;border-radius:0.5rem;background-color:rgba(173, 128, 65, 0.8);color:#fff;font-size:0.75rem}button.svelte-1l9q1y3.svelte-1l9q1y3:active{transform:scale(0.9)}button.svelte-1l9q1y3.svelte-1l9q1y3:active,button.svelte-1l9q1y3.svelte-1l9q1y3:hover{background-color:#fff !important}.close.svelte-1l9q1y3.svelte-1l9q1y3{position:fixed;top:30px;right:2%}.mobile .close.svelte-1l9q1y3.svelte-1l9q1y3{top:0.3rem;right:6%}.mobile .letshare.svelte-1l9q1y3.svelte-1l9q1y3{transform:scale(0.8) translate(10%, -120%)}.letshare.svelte-1l9q1y3.svelte-1l9q1y3{position:absolute;top:0;right:0;width:100%;transform:translate(0, -120%);display:flex;align-items:center;justify-content:flex-end}.letshare.svelte-1l9q1y3 button.svelte-1l9q1y3{padding:0;border-radius:100%;z-index:10;aspect-ratio:1 / 1;display:inline-flex;justify-content:center;align-items:center;line-height:0;margin:0 0.2rem;font-size:1.3rem !important;background-color:#e0ddd4;min-width:2.2rem;transition:all 0.2s}@keyframes svelte-1l9q1y3-flash{0%{opacity:1}100%{opacity:0}}",
-  map: null
-};
-const Screenshot_result = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let screenshotURL;
-  let $$unsubscribe_isMobile;
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => value);
-  let { canshare = false } = $$props;
-  let { isFirstTime = false } = $$props;
-  let { shareURL = "" } = $$props;
-  let { blob } = $$props;
-  getContext("closeShot");
-  getContext("firsTimeShare");
-  const DOMURL = window.URL || window.webkitURL;
-  if ($$props.canshare === void 0 && $$bindings.canshare && canshare !== void 0)
-    $$bindings.canshare(canshare);
-  if ($$props.isFirstTime === void 0 && $$bindings.isFirstTime && isFirstTime !== void 0)
-    $$bindings.isFirstTime(isFirstTime);
-  if ($$props.shareURL === void 0 && $$bindings.shareURL && shareURL !== void 0)
-    $$bindings.shareURL(shareURL);
-  if ($$props.blob === void 0 && $$bindings.blob && blob !== void 0)
-    $$bindings.blob(blob);
-  $$result.css.add(css$3);
-  screenshotURL = DOMURL.createObjectURL(blob);
-  $$unsubscribe_isMobile();
-  return `<div class="${"screenshot svelte-1l9q1y3"}"><button class="${"close svelte-1l9q1y3"}"><i class="${"gi-close"}"></i></button>
-
-	<div class="${"wrapper svelte-1l9q1y3"}"><div class="${"letshare svelte-1l9q1y3"}">
-
-			<button class="${"save svelte-1l9q1y3"}" title="${"Save To Your Device"}"><i class="${"gi-save"}"></i></button>
-
-			${canshare ? `<div class="${"divider svelte-1l9q1y3"}"></div>
-				<button class="${"save svelte-1l9q1y3"}" title="${"Share to Twitter"}"><i class="${"gi-twitter"}"></i></button>
-				<button class="${"save svelte-1l9q1y3"}" title="${"Share to Facebook"}"><i class="${"gi-facebook"}"></i></button>
-				<button class="${"save svelte-1l9q1y3"}" title="${"More Options"}"><i class="${"gi-dot-3"}"></i></button>` : ``}</div>
-
-		<picture class="${"svelte-1l9q1y3"}"><img${add_attribute("src", screenshotURL, 0)} alt="${"screenshot"}" class="${"svelte-1l9q1y3"}"></picture></div>
-
-	${``}
-</div>`;
-});
-const ScreenshotShare_svelte_svelte_type_style_lang = "";
-const css$2 = {
-  code: ".screenshot-button.svelte-122rc28.svelte-122rc28{width:100%}.screenshot-button.svelte-122rc28 span.svelte-122rc28{display:inline-flex;align-items:center;-webkit-text-stroke:0.02rem #000}.progress.svelte-122rc28.svelte-122rc28{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);background-color:var(--text-color);color:var(--tertiary-color);padding:2rem;border:1px solid var(--tertiary-color);border-radius:0.5rem}.progress.svelte-122rc28 .row.svelte-122rc28{display:flex;align-items:center;justify-content:center}.loading.svelte-122rc28.svelte-122rc28{border:0.2rem solid #f3f3f3;border-top:0.2rem solid var(--text-color);border-radius:50%;width:2rem;height:2rem;margin-right:1rem;animation:svelte-122rc28-spin 1s linear infinite}@keyframes svelte-122rc28-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}",
-  map: null
-};
-const ScreenshotShare = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { shareURL = "" } = $$props;
-  let { canshare = false } = $$props;
-  let blob;
-  let showResult = false;
-  let loading = false;
-  let btnTxt = canshare ? $t("share") : $t("screenshot");
-  let obtainScreen = false;
-  let isFirstTimeShare = !localConfig.get("firstTimeShare");
-  setContext("firsTimeShare", () => {
-    isFirstTimeShare = false;
-    obtainScreen = true;
-    primogem.update((v) => {
-      const newVal = v + initialAmount.shareReward;
-      localBalance.set("primogem", newVal);
-      return newVal;
-    });
-    localConfig.set("firstTimeShare", true);
-  });
-  getContext("preview");
-  const openObtained = getContext("openObtained");
-  setContext("closeShot", () => {
-    showResult = false;
-    playSfx("close");
-    if (!obtainScreen)
-      return;
-    openObtained([
-      {
-        item: "primogem",
-        qty: initialAmount.shareReward
-      }
-    ]);
-    obtainScreen = false;
-  });
-  if ($$props.shareURL === void 0 && $$bindings.shareURL && shareURL !== void 0)
-    $$bindings.shareURL(shareURL);
-  if ($$props.canshare === void 0 && $$bindings.canshare && canshare !== void 0)
-    $$bindings.canshare(canshare);
-  $$result.css.add(css$2);
-  $$unsubscribe_t();
-  return `${showResult ? `${validate_component(Screenshot_result, "ScreenshotResult").$$render(
-    $$result,
-    {
-      isFirstTime: isFirstTimeShare,
-      blob,
-      shareURL,
-      canshare
-    },
-    {},
-    {}
-  )}` : ``}
-
-${``}
-
-<div class="${"screenshot-button svelte-122rc28"}">${isFirstTimeShare && canshare ? `<span class="${"svelte-122rc28"}">${escape($t("rewardFirstShare", {
-    values: { qty: initialAmount.shareReward }
-  }))}
-			${validate_component(Icon, "Icon").$$render(
-    $$result,
-    {
-      type: "primogem",
-      width: "18px",
-      style: "margin-left: .5rem"
-    },
-    {},
-    {}
-  )}</span>` : ``}
-	${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, { disabled: loading }, {}, {
-    default: () => {
-      return `${escape(btnTxt)}`;
-    }
-  })}
-</div>`;
-});
-const _splashArt_svelte_svelte_type_style_lang = "";
-const css$1 = {
-  code: ".zoomist-wrapper.svelte-upxcv7.svelte-upxcv7,.zoomist-image.svelte-upxcv7.svelte-upxcv7{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.zoomist-wrapper.svelte-upxcv7.svelte-upxcv7{--scale:1.5;--translate-x:0px;--translate-y:0px;background-color:unset;position:relative}.zoomist-wrapper.weapon.svelte-upxcv7.svelte-upxcv7{--scale:1.1}.zoomist-image.svelte-upxcv7.svelte-upxcv7{transform:translate(var(--translate-x, 0px), var(--translate-y, 0px)) scale(var(--scale, 0))}#chinese-char.svelte-upxcv7.svelte-upxcv7{font-family:'AaQiShu';position:absolute;top:50%;left:45%;transform:translate(-50%, -50%);font-size:20vh;width:10%;word-wrap:break-word;line-height:85%;color:#1e1e1e;filter:drop-shadow(0.2rem 0.2rem 0.02rem rgb(0, 0, 0))}img.svelte-upxcv7.svelte-upxcv7{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.splash-art.anim.svelte-upxcv7.svelte-upxcv7{filter:brightness(0) opacity(0);animation:svelte-upxcv7-splashart forwards 1.5s 1}.splash-art.svelte-upxcv7.svelte-upxcv7:not(.anim){transform:translate(2%, 0)}.zoomist-image.svelte-upxcv7.svelte-upxcv7{position:relative;width:var(--width);height:var(--height)}.splash-art.svelte-upxcv7 .weapon img.svelte-upxcv7{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.splash-art.svelte-upxcv7 .weapon img.weaponbg.svelte-upxcv7{height:80%}.splash-art.svelte-upxcv7 .weapon.anim img.weaponbg.svelte-upxcv7{opacity:0;animation:svelte-upxcv7-weaponbg forwards 1.5s 1}.bow-parent.svelte-upxcv7 .weaponbg.svelte-upxcv7{transform:translate(-53%, -50%) scale(1.1) !important}.catalyst-parent.svelte-upxcv7 .weaponbg.svelte-upxcv7{height:90% !important}.anim.svelte-upxcv7 .bow.svelte-upxcv7,.anim.svelte-upxcv7 .polearm.svelte-upxcv7,.anim.svelte-upxcv7 .sword.svelte-upxcv7,.anim.svelte-upxcv7 .claymore.svelte-upxcv7,.anim.svelte-upxcv7 .catalyst.svelte-upxcv7{animation:svelte-upxcv7-weaponShadow forwards 0.1s 1;animation-delay:1.2s;filter:drop-shadow(0 0 0 rgba(0, 0, 0, 0))}.bow.svelte-upxcv7.svelte-upxcv7,.polearm.svelte-upxcv7.svelte-upxcv7,.sword.svelte-upxcv7.svelte-upxcv7,.claymore.svelte-upxcv7.svelte-upxcv7,.catalyst.svelte-upxcv7.svelte-upxcv7{filter:drop-shadow(0.6rem 0.6rem 0.05rem rgb(0, 0, 0))}.bow.svelte-upxcv7.svelte-upxcv7{height:115%}.catalyst.svelte-upxcv7.svelte-upxcv7{height:40%}.polearm.svelte-upxcv7.svelte-upxcv7{transform:translate(-53%, -35%) scale(1.2) !important}@keyframes svelte-upxcv7-splashart{0%{transform:scale(5) translate(0, -5%);filter:brightness(0)}20%{transform:scale(1);filter:brightness(0)}75%{transform:scale(1);filter:brightness(0)}95%{transform:scale(1) translate(2%, 0);filter:brightness(1)}100%{transform:scale(1) translate(2%, 0);filter:brightness(1)}}@keyframes svelte-upxcv7-weaponbg{80%{opacity:0}85%{opacity:1}100%{opacity:1}}@keyframes svelte-upxcv7-weaponShadow{to{filter:drop-shadow(0.7rem 0.6rem 0.2rem rgba(0, 0, 0, 0.7))}}",
-  map: null
-};
-const Splash_art = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $customData, $$unsubscribe_customData;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_customData = subscribe(customData, (value) => $customData = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { name } = $$props;
-  let { type } = $$props;
-  let { outfitName } = $$props;
-  let { weaponType } = $$props;
-  let { useOutfit } = $$props;
-  let { custom } = $$props;
-  let { chineseChar } = $$props;
-  let { clientHeight = 0 } = $$props;
-  let { clientWidth = 0 } = $$props;
-  let { offset = {} } = $$props;
-  if ($$props.name === void 0 && $$bindings.name && name !== void 0)
-    $$bindings.name(name);
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.outfitName === void 0 && $$bindings.outfitName && outfitName !== void 0)
-    $$bindings.outfitName(outfitName);
-  if ($$props.weaponType === void 0 && $$bindings.weaponType && weaponType !== void 0)
-    $$bindings.weaponType(weaponType);
-  if ($$props.useOutfit === void 0 && $$bindings.useOutfit && useOutfit !== void 0)
-    $$bindings.useOutfit(useOutfit);
-  if ($$props.custom === void 0 && $$bindings.custom && custom !== void 0)
-    $$bindings.custom(custom);
-  if ($$props.chineseChar === void 0 && $$bindings.chineseChar && chineseChar !== void 0)
-    $$bindings.chineseChar(chineseChar);
-  if ($$props.clientHeight === void 0 && $$bindings.clientHeight && clientHeight !== void 0)
-    $$bindings.clientHeight(clientHeight);
-  if ($$props.clientWidth === void 0 && $$bindings.clientWidth && clientWidth !== void 0)
-    $$bindings.clientWidth(clientWidth);
-  if ($$props.offset === void 0 && $$bindings.offset && offset !== void 0)
-    $$bindings.offset(offset);
-  $$result.css.add(css$1);
-  $$unsubscribe_customData();
-  $$unsubscribe_assets();
-  return `<div class="${"zoomist-wrapper splash-art anim " + escape(type, true) + " svelte-upxcv7"}" style="${"overflow: visible;"}">
-	${custom ? (() => {
-    let { images = {}, hostedImages = {}, status, artPosition } = $customData || {}, { splashArt = {} } = artPosition || {};
-    return `
-		
-		
-		<div class="${"zoomist-image svelte-upxcv7"}"${add_attribute("style", getCssVarPosition(splashArt, clientHeight, clientWidth), 0)}><img${add_attribute("alt", name, 0)} crossorigin="${"anonymous"}" class="${"svelte-upxcv7"}"></div>
-
-		`;
-  })() : `${type === "weapon" ? `<div class="${"zoomist-image weapon anim " + escape(weaponType, true) + "-parent svelte-upxcv7"}"><img${add_attribute("src", $assets[`bg-${weaponType}.webp`], 0)}${add_attribute("alt", weaponType, 0)} class="${"weaponbg svelte-upxcv7"}">
-			<img${add_attribute("alt", name, 0)} class="${escape(null_to_empty(weaponType), true) + " svelte-upxcv7"}"></div>` : `${type === "member" ? `<div class="${"zoomist-image weapon anim " + escape(weaponType, true) + "-parent svelte-upxcv7"}"><img${add_attribute("src", $assets[`bg-${weaponType}.webp`], 0)}${add_attribute("alt", weaponType, 0)} class="${"weaponbg svelte-upxcv7"}">
-			<p id="${"chinese-char"}" class="${"svelte-upxcv7"}">${escape(chineseChar)}</p></div>` : `${type === "outfit" ? `<div class="${"zoomist-image svelte-upxcv7"}"${add_attribute("style", getCssVarPosition(offset, clientHeight, clientWidth), 0)}><img${add_attribute("alt", name, 0)} crossorigin="${"anonymous"}" class="${"svelte-upxcv7"}"></div>` : `<div class="${"zoomist-image svelte-upxcv7"}"${add_attribute("style", getCssVarPosition(offset, clientHeight, clientWidth), 0)}><img${add_attribute("alt", name, 0)} crossorigin="${"anonymous"}" class="${"svelte-upxcv7"}"></div>`}`}`}`}
-</div>`;
-});
-const WishResult_svelte_svelte_type_style_lang = "";
-const css = {
-  code: ".skip.svelte-1ikxtky,.close.svelte-1ikxtky{position:fixed;top:30px;right:2%;z-index:10}.mobile .close.svelte-1ikxtky{top:0.3rem;right:6%}.skip.svelte-1ikxtky{color:#fff;font-size:1.2rem}.gi-caret-up.svelte-1ikxtky{display:inline-block;transform:rotate(90deg) translateX(-0.1rem);vertical-align:middle;margin-left:-0.5em}.mobile .skip.svelte-1ikxtky{font-size:0.8rem;right:5%;top:0.5rem}.wish-result.svelte-1ikxtky{background-size:cover;background-position:center}.wish-result.svelte-1ikxtky{width:100%;height:100%;display:flex;justify-content:center;align-items:center;position:relative}.touch-box.svelte-1ikxtky{width:100%;height:100%;position:absolute;top:0;left:0;z-index:+5}.zoomist-container.svelte-1ikxtky{aspect-ratio:1/1}.art-wrapper.svelte-1ikxtky{width:100%;height:100%}.share.svelte-1ikxtky{display:flex;width:100%;text-align:right;justify-content:flex-end;align-items:center;position:absolute;bottom:5%;right:8%;color:#fff;font-size:0.8rem;z-index:999}button.svelte-1ikxtky:active{transform:scale(0.9)}.logo.svelte-1ikxtky{display:none;transition:all 0.1.5s;z-index:999;pointer-events:none}.preview .logo.svelte-1ikxtky{display:block;width:30vh;max-width:30%;position:fixed;bottom:0px;right:2rem}.logo.cn.svelte-1ikxtky{max-height:20vh;width:20vh}",
-  map: null
-};
-const WishResult = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let wrapperHeight;
-  let $onWish, $$unsubscribe_onWish;
-  let $viewportHeight, $$unsubscribe_viewportHeight;
-  let $viewportWidth, $$unsubscribe_viewportWidth;
-  let $assets, $$unsubscribe_assets;
-  let $locale, $$unsubscribe_locale;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => $viewportHeight = value);
-  $$unsubscribe_viewportWidth = subscribe(viewportWidth, (value) => $viewportWidth = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_locale = subscribe(D, (value) => $locale = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { list = [] } = $$props;
-  let { skip = false } = $$props;
-  let { standalone = false } = $$props;
-  let { isOutfit = false } = $$props;
-  let { bannerType = "" } = $$props;
-  let preview = standalone || false;
-  setContext("preview", (val) => preview = val);
-  const lc = $locale?.toLowerCase() || "";
-  const isYuanshen = lc.match(/(cn|ja)/);
-  const splashBG = isOutfit ? $assets["outfit-background.webp"] : $assets["splash-background.webp"];
-  list = list.map(setActiveOutfit);
-  let clientHeight = 0;
-  let clientWidth = 0;
-  const calculateWrapperHeight = (vw, vh) => {
-    if (vw < vh)
-      return "80vw";
-    if (vw < vh * 1.5)
-      return "65vw";
-    return "100%";
-  };
-  let isSplashOut = false;
-  let timer;
-  const startTimer = () => {
-    clearTimeout(timer);
-    isSplashOut = false;
-    timer = setTimeout(
-      () => {
-        isSplashOut = true;
-        clearTimeout(timer);
-      },
-      1100
-    );
-  };
-  const playRevealAudio = () => {
-    startTimer();
-    if (localConfig.get("muted"))
-      return;
-    if (activeIndex > 0) {
-      const starBefore = list[activeIndex - 1].rarity;
-      pauseSfx(`reveal${starBefore}Star`);
-    }
-    const star = list[activeIndex].rarity;
-    playSfx(`reveal${star}Star`);
-  };
-  let showResultList = false;
-  let activeIndex = 0;
-  const createShareableLink = (activeIndex2, showResultList2) => {
-    const isMulti = showResultList2 && list.length > 1;
-    const link = isMulti ? createLink(list) : createLink([list[activeIndex2]]);
-    return link;
-  };
-  const showItem = (startIndex) => {
-    if (list.length === 1) {
-      if (startIndex === "start")
-        playRevealAudio();
-      return;
-    }
-    if (activeIndex > list.length - 2) {
-      showResultList = true;
-      return;
-    }
-    if (startIndex !== "start") {
-      activeIndex = activeIndex + 1;
-    }
-    playRevealAudio();
-  };
-  const closeResult = getContext("closeResult");
-  const closeHandle = () => {
-    playSfx("close");
-    closeResult();
-    return;
-  };
-  const skipHandle = () => {
-    playSfx();
-    showResultList = true;
-  };
-  const onWish = getContext("onWish");
-  $$unsubscribe_onWish = subscribe(onWish, (value) => $onWish = value);
-  hotkeys("enter,space", "index", (e) => {
-    if (!$onWish)
-      return;
-    e.preventDefault();
-    if (list.length > 1 && !showResultList)
-      showItem();
-  });
-  hotkeys("esc", "index", (e) => {
-    if (!$onWish)
-      return;
-    e.preventDefault();
-    if (list <= 1 || showResultList)
-      return closeHandle();
-    return skipHandle();
-  });
-  if ($$props.list === void 0 && $$bindings.list && list !== void 0)
-    $$bindings.list(list);
-  if ($$props.skip === void 0 && $$bindings.skip && skip !== void 0)
-    $$bindings.skip(skip);
-  if ($$props.standalone === void 0 && $$bindings.standalone && standalone !== void 0)
-    $$bindings.standalone(standalone);
-  if ($$props.isOutfit === void 0 && $$bindings.isOutfit && isOutfit !== void 0)
-    $$bindings.isOutfit(isOutfit);
-  if ($$props.bannerType === void 0 && $$bindings.bannerType && bannerType !== void 0)
-    $$bindings.bannerType(bannerType);
-  $$result.css.add(css);
-  wrapperHeight = calculateWrapperHeight($viewportWidth, $viewportHeight);
-  $$unsubscribe_onWish();
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_viewportWidth();
-  $$unsubscribe_assets();
-  $$unsubscribe_locale();
-  $$unsubscribe_t();
-  return `<div class="${["wish-result svelte-1ikxtky", preview ? "preview" : ""].join(" ").trim()}" style="${"background-image: url(" + escape(splashBG, true) + ");"}">
-	
-	<img${add_attribute("src", $assets[`genshin-logo${isYuanshen ? "-cn" : ""}.webp`], 0)} alt="${"genshin logo"}" class="${["logo svelte-1ikxtky", isYuanshen ? "cn" : ""].join(" ").trim()}">
-	
-
-	${!standalone ? `${list.length > 1 && !showResultList ? `<button class="${"skip svelte-1ikxtky"}">${escape($t("wish.result.skip"))} <i class="${"gi-caret-up svelte-1ikxtky"}"></i></button>` : `<button class="${"close svelte-1ikxtky"}"><i class="${"gi-close"}"></i></button>`}` : ``}
-
-	${showResultList && list.length > 1 ? `${validate_component(ResultList, "ResultList").$$render($$result, { list, standalone, bannerType }, {}, {})}` : `<div class="${"touch-box svelte-1ikxtky"}"></div>
-		<div class="${"zoomist-container svelte-1ikxtky"}" style="${"height: " + escape(wrapperHeight, true) + ";--width:" + escape(clientWidth, true) + "px;--height:" + escape(clientHeight, true) + "px"}">${each(list, ({ name, rarity, type, outfitName, vision, weaponType, bonusQty, bonusType, stelaFortuna, useOutfit, offset, custom, chineseChar }, i) => {
-    return `${activeIndex === i ? `<div class="${"art-wrapper svelte-1ikxtky"}">${!isSplashOut ? `${validate_component(Splash_light, "SplashLight").$$render($$result, { type: "in", rarity }, {}, {})}` : ``}
-
-						<div class="${"art-wrapper svelte-1ikxtky"}">${validate_component(Splash_art, "SplashArt").$$render(
-      $$result,
-      {
-        offset: offset?.splashArt,
-        custom,
-        name,
-        type,
-        outfitName,
-        weaponType,
-        useOutfit,
-        clientHeight,
-        clientWidth,
-        chineseChar
-      },
-      {},
-      {}
-    )}</div>
-
-						${validate_component(Item_info, "ItemInfo").$$render(
-      $$result,
-      {
-        itemName: name,
-        type,
-        outfitName,
-        rarity,
-        vision,
-        bonusQty,
-        weaponType,
-        stelaFortuna,
-        custom,
-        chineseChar
-      },
-      {},
-      {}
-    )}
-						${validate_component(Weapon_bonus, "WeaponBonus").$$render($$result, { type, bonusQty, bonusType }, {}, {})}
-						${isSplashOut ? `${validate_component(Splash_light, "SplashLight").$$render($$result, { type: "out", rarity }, {}, {})}` : ``}
-					</div>` : ``}`;
-  })}</div>`}
-
-	${!standalone ? `${list[activeIndex].rarity > 3 || showResultList && list.length > 1 ? `<div class="${"share svelte-1ikxtky"}">${validate_component(ScreenshotShare, "ScreenshotShare").$$render(
-    $$result,
-    {
-      canshare: true,
-      shareURL: createShareableLink(activeIndex, showResultList)
-    },
-    {},
-    {}
-  )}</div>` : ``}` : ``}
-</div>`;
-});
-export {
-  Icon as I,
-  SVGIcon as S,
-  WishResult as W,
-  localPity as a,
-  positionToStyle as b,
-  Item_info as c,
-  localConfig as d,
-  localBalance as e,
-  fatepointManager as f,
-  pauseSfx as g,
-  dailyWelkin as h,
-  isNewOutfitReleased as i,
-  localrate as l,
-  owneditem as o,
-  playSfx as p,
-  rollCounter as r
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/app-stores.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/app-stores.js
deleted file mode 100644
index 8ec374fc..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/app-stores.js
+++ /dev/null
@@ -1,104 +0,0 @@
-import { w as writable } from "./index2.js";
-const version = "4.3";
-const wishPhase = 2;
-const initialAmount = {
-  primogem: 1e4,
-  fates: 1e4,
-  genesis: 1e4,
-  shareReward: 1e4
-};
-const probabilityRates = {
-  "character-event": {
-    baseRate5: 0.6,
-    max5: 90,
-    hard5: 74,
-    baseRate4: 5.1,
-    max4: 10,
-    hard4: 9,
-    winRate: 50,
-    charRate: 50
-  },
-  "weapon-event": {
-    baseRate5: 0.7,
-    max5: 80,
-    hard5: 63,
-    baseRate4: 6.6,
-    max4: 10,
-    hard4: 9,
-    winRate: 75,
-    charRate: 50,
-    selectedRate: 50
-  },
-  standard: {
-    baseRate5: 0.6,
-    max5: 90,
-    hard5: 74,
-    baseRate4: 5.1,
-    max4: 10,
-    hard4: 9,
-    charRate: 50
-  }
-};
-const { fates, genesis: igen, primogem: ipri } = initialAmount;
-const preloadVersion = writable({ patch: version, phase: wishPhase });
-const activeVersion = writable({ patch: version, phase: wishPhase });
-const bannerList = writable([]);
-const activeBanner = writable(0);
-const showBeginner = writable(true);
-const beginnerRemaining = writable(20);
-const isFatepointSystem = writable(false);
-const course = writable({ selected: null, point: 0 });
-const primogem = writable(ipri);
-const acquaint = writable(fates);
-const intertwined = writable(fates);
-const stardust = writable(0);
-const starglitter = writable(0);
-const wishAmount = writable("default");
-const multipull = writable(10);
-const proUser = writable(false);
-const mobileMode = writable(false);
-const isMobile = writable(false);
-const isPWA = writable(false);
-const viewportHeight = writable(0);
-const viewportWidth = writable(0);
-const notice = writable([]);
-const assets = writable([]);
-const toastMsg = writable([]);
-const editorMode = writable(false);
-const editID = writable(0);
-const customData = writable({});
-const isCustomBanner = writable(false);
-const memberList = writable([]);
-export {
-  multipull as A,
-  preloadVersion as B,
-  proUser as C,
-  customData as D,
-  initialAmount as E,
-  viewportHeight as a,
-  isPWA as b,
-  memberList as c,
-  assets as d,
-  beginnerRemaining as e,
-  activeBanner as f,
-  bannerList as g,
-  activeVersion as h,
-  isMobile as i,
-  course as j,
-  isFatepointSystem as k,
-  acquaint as l,
-  mobileMode as m,
-  notice as n,
-  intertwined as o,
-  probabilityRates as p,
-  editorMode as q,
-  starglitter as r,
-  showBeginner as s,
-  toastMsg as t,
-  stardust as u,
-  viewportWidth as v,
-  wishAmount as w,
-  primogem as x,
-  isCustomBanner as y,
-  editID as z
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/de-DE.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/de-DE.js
deleted file mode 100644
index 60ecf97f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/de-DE.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Genshin Impact Gebets-Simulator";
-const character = "Charakter";
-const weapon = "Waffe";
-const vision = "G\xF6ttliches Auge";
-const anemo = "Anemo";
-const cryo = "Kryo";
-const dendro = "Dendro";
-const electro = "Elektro";
-const hydro = "Hydro";
-const geo = "Geo";
-const pyro = "Pyro";
-const bow = "Bogen";
-const catalyst = "Katalysator";
-const claymore = "Zweih\xE4nder";
-const sword = "Schwert";
-const polearm = "Stangenwaffe";
-const extra = "Extra";
-const obtained = "Erhalten";
-const waiting = "Warten";
-const connectionFailed = "Verbindung fehlgeschlagen!";
-const confirmButton = "Best\xE4tigen";
-const cancelButton = "Abbrechen";
-const disclaimer = "Alle Medien, die auf dieser Seite benutzt wurden, geh\xF6ren miHoYo.";
-const fanmade = "Dies ist eine reine Fananwendung, viel Spa\xDF damit!";
-const pressToContinue = "Klicke in den leeren Bereich um fortzufahren!";
-const installInstruction = "Anleitung zum Installieren auf dem Startbildschirm/Desktop";
-const share = "Teilen";
-const screenshot = "Foto machen";
-const capturing = "Erfassen";
-const rewardFirstShare = "Belohnung f\xFCr erstes Mal teilen: {qty}";
-const version = "Version";
-const donate = "Spenden";
-const banner = {
-  beginner: "Anf\xE4ngergebet",
-  wanderlust: "Wanderlust",
-  "epitome-invocation": "G\xF6ttliches Werk",
-  "adrift-in-the-harbor": "Fl\xFCchtige Bekanntschaft",
-  "auric-blaze": "Sengende Sonne und gl\xFChendes Gold",
-  "azure-excursion": "Fluss der blassen Bl\xE4tter",
-  "ballad-in-goblets": "Balladen in Bechern",
-  "born-of-ocean-swell": "Stunde der Wogen",
-  "caution-in-confidence": "Verhaltene Zuversicht",
-  "chanson-of-many-waters": "Chanson der Str\xF6me",
-  "conjuring-chiaroscuro": "Conjuring Chiaroscuro",
-  "dance-of-lantern": "Tanz der Laternen",
-  "decree-of-the-deeps": "Gebot \xFCber die Meerestiefen",
-  "discerner-of-enigmas": "L\xFCftung himmlischer Geheimnisse",
-  "drifting-luminescence": "Treibende Perle",
-  "everbloom-violet": "Violette Bl\xFCtenwolken",
-  "farewell-of-snezhnaya": "Lebe wohl, winterliche Stadt",
-  "from-ashes-reborn": "Aus der Glut wiedergeboren",
-  "gentry-of-hermitage": "Abgeschiedener Adel",
-  "immaculate-pulse": "Pulsierendes Leben",
-  "in-the-name-of-the-rosula": "Im Namen der Rosula",
-  "invitation-to-mundane-life": "Bombastische Einladung",
-  "leaves-in-the-wind": "Bl\xE4tter im Wind",
-  "moment-of-bloom": "Augenblick des Erbl\xFChens",
-  "oni_s-royale": "Onibankett",
-  "reign-of-serenity": "Im Schatten der Welt",
-  "secretum-secretorum": "R\xE4tselhafte Worte",
-  "sparkling-steps": "Flammende Schritte",
-  "tapestry-of-golden-flames": "Flammengalaxie",
-  "tempestuous-destiny": "St\xFCrmisches Schicksal",
-  "the-heron_s-court": "Kranichhof",
-  "the-moongrass-enlightenment": "Erleuchtung des Mondgrases",
-  "the-transcendent-one-returns": "R\xFCckkehr aus der Abgeschiedenheit",
-  "twilight-arbiter": "Schiedsspruch der D\xE4mmerung",
-  "twirling-lotus": "Wirbelnder Lotos",
-  "viridescent-vigil": "Wachgang im Dickicht"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "Gebet",
-  rollButton: "Gebet {count}",
-  stellaFortuna: "Stella Fortuna",
-  loadFailed: "Laden des Banners fehlgeschlagen! <br /> Bitte wechsel zu einem anderen Banner oder \xFCberpr\xFCfe deine Internetverbindung, um Fehler zu verhindern!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banner",
-    allBanner: "Alle Banner",
-    previous: "Vorheriger Banner",
-    findBanner: "Finde einen Banner",
-    group: "Gruppe",
-    beginner: "Anf\xE4ngergebet",
-    "character-event": "Figurenaktionsgebet",
-    "weapon-event": "Waffenaktionsgebet",
-    standard: "Standardgebet",
-    wishDescription: "Alle 10 Ziehungen erh\xE4ltst du sicher Objekte mit mindestens vier Sternen",
-    novice: "Gebet f\xFCr Anf\xE4nger",
-    up: "UP!",
-    beginnerSet: "20% Rabatt auf 10er-Set. Bei erster Zehnerziehung erh\xE4ltst du sicher folgende Figur: {character}.",
-    beginnerNote: '"Ich wei\xDF genau wie man sich als Magd zu verhalten hat"',
-    beginnerChance: "Verbleibende M\xF6glichkeiten: {chances}",
-    standardNote: "Standardgebet haben kein Zeitlimit.",
-    allWeaponTypes: "Alle Waffentypen",
-    etc: "etc.",
-    probIncreased: "H\xF6here Wahrscheinlichkeit!",
-    eventNote: "Die limitierten Figuren mit f\xFCnft Sternen gibt es nur w\xE4hrend des jeweiligen Aktionszeitraums \xFCber das entsprechende Gebet.",
-    viewDetails: "W\xE4hle 'Details', um mehr zu erfahren."
-  },
-  epitomizedPath: {
-    text: "G\xF6ttlicher Kurs",
-    fatePoint: "Schicksalspunkte",
-    cancelPrompt: "Willst du den aktuellen Kurs abbrechen?",
-    cancelDesc: "Nach dem Abbrechen werden deine gesammelten Schicksalspunkte zur\xFCckgesetzt.",
-    selectWeapon: "Gew\xE4hlte Waffe",
-    chartCourseOf: "Kurs zu {target} setzen",
-    cancelCourse: "Kurs abbrechen",
-    chartCourse: "Kurs setzen",
-    courseSetFor: "Aktueller Kurs: {selectedCourse}",
-    description: [
-      '"G\xF6ttlicher Kurs" ist ein besonderer Gebetsmechanismus des neusten Aktionsgebets "G\xF6ttliches Werk".',
-      "Sobald du einen Kurs zu deiner gew\xE4hlten Waffe gesetzt hast, erh\xE4ltst du einen Schicksalspunkt, <span> wenn du eine 5-Sterne-Waffe erh\xE4ltst, die nicht von dir gew\xE4hlt ist</span>.",
-      'Sobald du genug Schicksalspunkte gesammelt hast, wird deine n\xE4chste 5-Sterne-Waffe diejenige sein, du die durch "G\xF6ttlicher Kurs" gew\xE4hlt hast.',
-      '<span>Deine Schicksalspunkte werden zur\xFCckgesetzt</span>, wenn du eine Waffe von "G\xF6ttlicher Kurs" w\xE4hrend des Aktionsgebets "G\xF6ttliches Werk" erh\xE4ltst.',
-      "Wenn du keine Waffe ausw\xE4hlst, werden deine Gebete keine Schicksalspunkte ansammeln.",
-      "Du kannst deine Auswahl \xE4ndern oder abbrechen. Dadurch werden deine gesammelten Schicksalspunkte zur\xFCckgesetzt.",
-      'Wenn das Aktionsgebet "G\xF6ttliches Werk" beendet ist, werden auch deine gesammelten Schicksalspunkte zur\xFCckgesetzt.'
-    ]
-  },
-  result: {
-    skip: "\xDCberspringen",
-    meteorFailed: "Meteor Animation l\xE4dt nicht",
-    "new": "Neu",
-    convertion: "Umgewandelt",
-    title: "Ergebnis des Gebets f\xFCr {item} und andere"
-  }
-};
-const outfit = {
-  heading: "Figurenzierde",
-  "default": "Standart",
-  setOutfit: "Outfit ausw\xE4hlen",
-  owned: "Bereits vorhanden",
-  purchasePrompt: "Du hast die Figur f\xFCr dieses Outfit nicht, bist du sicher das du es kaufen m\xF6chtest?",
-  promptInfo: "Du kannst dieses Outfit verwenden, nachdem du die Figur freigeschaltet hast",
-  obtained: "Neues Outfit erhalten",
-  unlocked: "{character}: Outfit freigeschaltet",
-  item: {
-    "5-star-outrider": {
-      name: "5-Sterne-Kundschafter"
-    },
-    "favonian-fevotion": {
-      name: "Ritterliche Hingabe"
-    },
-    "flowing-fate": {
-      name: "Flie\xDFendes Schicksal"
-    },
-    "executor_s-thorns": {
-      name: "Vollstreckerdornen"
-    },
-    "sea-breeze-dandelion": {
-      name: "Traum von der Meeresbrise",
-      description: "Jeans Sommerkleidung. Leicht und k\xFChl, aber deswegen nicht weniger elegant. Die perfekte Wahl f\xFCr einen Ausflug ans Meer."
-    },
-    "summertime-sparkle": {
-      name: "Gl\xE4nzende Darbietung",
-      description: "Barbaras Strandmode. Dieser h\xFCbsche Rock strotzt vor sommerlicher Lebensfreude und tr\xE4gt eine k\xFChle Meeresbrise mit sich."
-    },
-    "opulent-splendor": {
-      name: "\xDCppige Pracht",
-      description: "Keqings formelle Kleidung. Inmitten der wundersch\xF6nen Morgend\xE4mmerung des Laternenrituals verflechten sich die in tagelanger harter Arbeit gewebten F\xE4den zu einer leichten und doch pr\xE4chtigen Erscheinung."
-    },
-    "orchid_s-evening-gown": {
-      name: "Orchideen-Abendkleid",
-      description: "Ningguangs formelle Kleidung. Der lange t\xFCrkisfarbene Rock umspielt ihre eleganten Kurven, und die Schmetterlingsfl\xFCgel an ihren Kn\xF6cheln verleihen dem Outfit einen Hauch von leichter Anmut."
-    },
-    "ein-immernachtstraum": {
-      name: "Ein Immernachtstraum",
-      description: "Ein festliches Gewand f\xFCr die Prinzessin. M\xF6ge sie, die Edle, f\xFCr immer ihren Mut, ihre Aufrichtigkeit und ihre G\xFCte bewahren, so dass kein \xDCbel sie je \xFCberw\xE4ltigen kann."
-    },
-    "red-dead-of-night": {
-      name: "Blutrote Nacht",
-      description: "Eines der Outfits, die Diluc bei verdeckten Aktionen tr\xE4gt, gleicht einer Flamme, die in den Schatten tanzt. Die purpurroten Spuren, die sie an den R\xE4ndern der Sicht des Feindes hinterl\xE4sst, werden ihn f\xFCr immer in seinen Albtr\xE4umen verfolgen."
-    },
-    "a-sobriquet-under-shade": {
-      name: "Weisheit unter dem Gr\xFCn",
-      description: "Die Kleidung, die Lisa eigens bestellt hat, als sie Sumeru wieder besuchte. Das Kleid ist praktisch, aber auch elegant und hat eine leichte \xC4hnlichkeit mit ihrer Studentenuniform."
-    },
-    "springbloom-missive": {
-      name: "Botschaft der Bl\xFCtezeit",
-      description: "Kamisato Ayakas Kleidung. Das Kleid orientiert sich an der Kleidung der Frauen in Fontaine, welche auf den Illustrationen einer kurzen Erz\xE4hlung zu sehen ist, und gibt einen kurzen Einblick ins Leben der dortigen Adeligen."
-    },
-    "blossoming-starlight": {
-      name: "Bl\xFCtenreines Sternenlicht",
-      description: "Klees exquisites Kost\xFCm, welches sie nur zu den wichtigsten Auff\xFChrungen tr\xE4gt. Mit seinen leuchtenden Farben erinnert es an eine mit cremefarbenen Blumen und roten Kerzen verzierte Torte. Hiermit tr\xE4gt Klee Freude und ein L\xE4cheln in jede Ecke dieser Welt, wohin ihr Abenteuer sie auch f\xFChren mag."
-    },
-    "sailwind-shadow": {
-      name: "Schatten flatternder Segel",
-      description: "Kaeyas Kost\xFCm aus seiner Darbietung als \u201EGro\xDFer R\xE4uber Kurzklinge\u201C. Ein pr\xE4chtiges Kleidungsst\xFCck, das als absoluter \u201EHingucker\u201C entworfen wurde. Das Kost\xFCm selbst ist nicht aufwendig anzuziehen; ganz anders sieht es da allerdings mit den Accessoires und dem Messer aus."
-    }
-  }
-};
-const details = {
-  text: "Detailierte Erl\xE4uterung",
-  promotional: "H\xF6here Wahrscheinlichkeit",
-  itemlist: "Objektliste",
-  increasedRate: "Bessere Wahrscheinlichkeiten!",
-  percentageDrop: "Wahrscheinlichkeit f\xFCr {rarity}-Sterne-Objekte: {percentage}",
-  wishDetails: "Details",
-  probInfo: "Basiswahrscheinlichkeit f\xFCr {rarity}-Sterne-Objekte: {singlePercentage} (Garantie: {avgPercentage})",
-  itemWishFor: "Objekte, die bei den Gebeten zu erhalten sind:",
-  itemType: "Kategorie",
-  itemName: "Name",
-  beginnerInfo: "Kein Zeitlimit (Endet nach 20 Gebeten)",
-  limited: "Zeitlich begrenzte Aktion",
-  permanent: "Permanent",
-  alert: "\u203B Dies ist ein {wishName}. Die Anzahl der W\xFCnsche, die garantiert werden, wird nur innerhalb dieses Ereignisses kumuliert und ist unabh\xE4ngig von der Garantie bei anderen Gebeten.",
-  beginner: [
-    "Das Anf\xE4ngergebet hat keine zeitliche Begrenzung und richtet sich an Reisende, die k\xFCrzlich in Teyvat gelandet sind. Nur Nicht-exklusive Figuren und Waffen sind hier erh\xE4ltlich. <br /> In Anf\xE4ngerwunsch kosten 10-Wunsch-Sets <span> 20%</span> weniger Vorbestimmtes Schicksal, und dein erstes 10-W\xFCnsche-Set enth\xE4lt garantiert {character}, und dein zweites 10-W\xFCnsche-Set enth\xE4lt garantiert einen <span> anderen </span> min. 4-Sterne Charakter! <br/> Das Anf\xE4ngergebet endet nach <span> 20 </span> Gebeten. Nachdem es geendet hat, wird das Gebet verschwinden.",
-    "\u203BIm Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln.",
-    " Regeln ",
-    "Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Objekten = <span> 0.600%</span> <br /> Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Objekten = <span> 5.100%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) = <span> 13.000%</span>;"
-  ],
-  standard: [
-    'Das Standardwgebet "{bannerName}" ist immer verf\xFCgbar. Hier k\xF6nnen Reisende nicht limitierte Figuren und Waffen ziehen.<br/> Alle 10 Ziehungen bei diesem Gebet gibt es <span>auf jeden Fall</span> mindestens 1 Objekt mit 4 oder mehr Sternen.',
-    "\u203BIm Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln.",
-    "\u3013Regeln\u3013",
-    "Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Objekten = <span>0.600%</span>; Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Figuren = <span>0.300%</span>, und die Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Waffen = <span>0.300%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 5-Sterne Gegenstand = <span>1.600%</span>; Nach h\xF6chstens <span>90</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall ein 5-Sterne-Objekt. <br> Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Objekten = <span>5.100%</span>; Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Figuren = <span>2.550%</span>, und Basiswahrscheinlichkeit zum Ziehen von 4-Sterne-Waffen = <span>2.550%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 4-Sterne-Gegenst\xE4nden  = <span>13.000%</span>; Nach h\xF6chstens <span>10</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall ein 4-Sterne-Objekt.; Wahrscheinlichkeit ein 4-Sterne-Objekt durch die Garantie zu erhalten = <span>99.400%</span>, und Wahrscheinlichkeit ein 5-Sterne-Objekt durch die Garantie zu erhalten = <span>0.600%</span>. "
-  ],
-  events: [
-    'Das Aktionsgebet "{bannerName}" ist jetzt verf\xFCgbar. W\xE4hrend des Aktionszeitraums, steigt die Wahrscheinlichkeit zum Ziehen der <span>limitierten</span> 5-Sterne-Figur {featuredCharacter} sowie der 4-Sterne-Figuren {rateupCharacters} <span>stark an</span>! <br/> <span> \u203B Hinweis: Die limitierten Figuren dieser Aktion werden nicht im Standartgebet "Wanderlust" verf\xFCgbar sein.</span>',
-    "\u203B Im Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln.",
-    "\u3013Regeln\u3013",
-    "5-Sterne-Objekte",
-    'F\xFCr Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit eine 5-Sterne-Figur zu erhalten = <span> 0.600% </span>; Gesamtwahrscheinlichkeit (inkl. Garantie) = <span>1.600%</span>; e-Figuren = <span>0.300%</span>, und die Basiswahrscheinlichkeit zum Ziehen von 5-Sterne-Waffen = <span>0.300%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 5-Sterne Gegenstand = <span>1.600%</span>; Nach h\xF6chstens <span>90</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall ein 5-Sterne-Objekt.<br/> Sobald du bei einem Gebet eine 5-Sterne-Figur ziehst, besteht die Wahrscheinlichkeit von <span> 50.000%</span>, die Aktionsfigur {featuredCharacter} zu erhalten. Wenn du bei diesem Gebet eine 5-Sterne-Figure ziehst, die keine Aktionsfigur ist, bekommst du beim n\xE4chsten Ziehen einer 5-Sterne-Figur <span>auf jeden Fall</span> eine Aktionsfigur.',
-    "4-Sterne-Objekte",
-    'F\xFCr das Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit ein 4-Sterne-Objekt zu erhalten = <span> 5.100%</span>; Basiswahrscheinlichkeit eine 4-Sterne-Figur zu erhalten = <span>2.550%</span>, und Basiswahrscheinlichkeit eine 4-Sterne-Waffe zu erhalten = <span>2.550%</span>; Basiswahrscheinlichkeit einen 4-Sterne-Gegenstand zu erhalten = <span> 13.000%</span>; Nach h\xF6chsten <span>10<span> Gebeten erh\xE4ltst du aufgrund der Garantie mindestens 1 4-Sterne-Objekt.; Wahrscheinlichkeit ein 4-Sterne-Objekt durch die Garantie zu erhalten = <span>99.400%</span>, und Wahrscheinlichkeit ein 5-Sterne-Objekt durch die Garantie zu erhalten = <span>0.600%</span>. <br/> Sobald du bei einem Gebet eine 5-Sterne-Figur ziehst, besteht die Wahrscheinlichkeit von <span>50.000%</span> eine der Aktionsfiguren {rateupCharacters} zu erhalten. Wenn du bei diesem Gebet ein 4-Sterne-Objekt ziehst, das keine Aktionsfigur ist, bekommst du beim n\xE4chsten Ziehen eines 4-Sterne-Objektes <span>auf jeden Fall</span> eine Aktionsfigur. Wenn du beim Gebet ein 4-Sterne-Aktionsobjekt erh\xE4ltst, ist die Wahrscheinlichkeit zum Erhalten aller 4-Sterne-Aktionsfiguren bei diesem Gebet identisch.'
-  ],
-  weapons: [
-    'Das Aktionsgebet "{bannerName}" ist nun verf\xFCgbar. W\xE4hrend des Aktionszeitraums, steigt die Wahrscheinlichkeit zum Ziehen der <span>limitierten</span> 5-Sterne-Waffen {featuredWeapon1} und {featuredWeapon2} sowie der <span>limitierten</span> 4-Sterne-Waffen {rateupWeapons} <span>stark an</span>! <br/> <span> \u203B Hinweis: Die limitierten Waffen dieser Aktion werden nicht im Standartgebet "Wanderlust" verf\xFCgbar sein.</span>',
-    "\u203B Im Normalfall besteht dieselbe Basiswahrscheinlichkeit f\xFCr alle Figuren oder Waffen. Richte dich bei erh\xF6hten Wahrscheinlichkeiten, Garantien oder \xC4hnlichem bitte nach den jeweiligen Regeln.",
-    " Regeln ",
-    "5-Sterne-Objekte",
-    'F\xFCr Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit eine 5-Sterne-Waffe zu erhalten = <span>0.700%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) = <span>1.850%</span>; Nach h\xF6chstens <span>80</span> Gebeten erh\xE4ltst du aufgrund der Garantie auf jeden Fall eine 5-Sterne-Waffe<br/> Sobald du beim Gebet eine 5-Sterne-Waffe ziehst, besteht die Wahrscheinlichkeit von <span>75.000%</span>, eine der 5-Sterne-Aktionswaffen {featuredWeapon1} oder {featuredWeapon2} zu bekommen. Wenn du eine 5-Sterne-Waffe ziehst die keine Aktionswaffe ist, bekommst du beim n\xE4chsten Ziehen einer 5-Sterne-Waffe <span>auf jeden Fall</span> eine 5-Sterne-Aktionswaffe. Wenn du beim Aktionsgebet "G\xF6ttliches Werk" nach dem Setzen eines Kurses auf eine Waffe mithilfe von "G\xF6ttlicher Kurs" eine 5-Sterne-Waffe erh\xE4ltst, die nicht die ist, auf die du den Kurs gesetzt hast, erh\xE4ltst du 1 Schicksalspunkt. Sobald du die <span>maximale</span> Menge an Schicksalspunkten gesammelt hast, wird die n\xE4chste 5-Sterne-Waffe, die du bei dem Gebet ziehst, <span>auf jeden Fall</span> die Waffe sein, auf die du den Kurs gesetzt hast. Sobald du beim Gebet die Waffe erh\xE4ltst, auf die du den Kurs gesetzt hast, werden alle Schicksalspunkte wieder auf <span>0</span> gesetzt, egal ob du bereits die maximale Menge an Schicksalspunkten erreicht hast oder nicht. Danach kannst du erneut Schicksalspunkte sammeln. Wenn du nicht mithilfe von "G\xF6ttlicher Kurs" auf eine bestimmte Waffe setzt, sammelst du auch <span>keine</span> Schicksalspunkte an.<br/> Die Waffe, auf die du den Kurs gesetzt hast, kannst du wechseln oder komplett zur\xFCcksetzen. Bei beiden Vorg\xE4ngen werden die bisher gesammelten Schicksalspunkte auf <span>0</span> zur\xFCckgesetzt. Danach kannst du erneut Schicksalspunkte sammeln.<br/> \u203B Hinweis: Die Schicksalspunkte dieses Gebets sind nur f\xFCr das aktuelle Aktionsgebet "G\xF6ttliches Werk" g\xFCltig. Sobald das Gebet endet, werden die Schicksalspunkte wieder auf <span>0</span> gesetzt und du kannst sie erneut sammeln.',
-    "4-Sterne-Objekte",
-    'F\xFCr Aktionsgebet "{bannerName}": Basiswahrscheinlichkeit ein 4-Sterne-Objekt zu erhalten = <span>6.000%</span>; Basiswahrscheinlichkeit ein 4-Sterne-Charakter zu erhalten = <span>3.000%</span>, und Basiswahrscheinlichkeit eine 4-Sterne-Waffe zu erhalten = <span>3.000%</span>; Gesamtwahrscheinlichkeit (inkl. Garantie) f\xFCr Ziehen von 4-Sterne Gegenstand = <span>14.500%</span>; Nach h\xF6chsten <span>10<span> Gebeten erh\xE4ltst du aufgrund der Garantie mindestens 1 4-Sterne-Objekt.; Wahrscheinlichkeit ein 4-Sterne-Objekt durch die Garantie zu erhalten = <span>99.300%</span>, und Wahrscheinlichkeit ein 5-Sterne-Objekt durch die Garantie zu erhalten = <span>0.700%</span>. <br/> Sobald du bei einem Gebet ein 4-Sterne-Gegenstand ziehst, besteht die Wahrscheinlichkeit von <span>75.000%</span> eine der Aktionswaffen {rateupWeapons} zu erhalten. Wenn du bei diesem Gebet ein 4-Sterne-Objekt ziehst, das keine Aktionswaffe ist, bekommst du beim n\xE4chsten Ziehen eines 4-Sterne-Objektes <span>auf jeden Fall</span> eine Aktionswaffe. Wenn du beim Gebet eine 4-Sterne-Aktionswaffe erh\xE4ltst, ist die Wahrscheinlichkeit zum Erhalten aller 4-Sterne-Aktionswaffen bei diesem Gebet identisch.'
-  ],
-  convertion: {
-    fiveStar: "Wenn du 5-Sterne-Waffen bei diesem Gebet erh\xE4ltst, bekommst du zus\xE4tzlich {starglitter} x10;",
-    fourStar: "Wenn du 4-Sterne-Waffen bei diesem Gebet erh\xE4ltst, bekommst du zus\xE4tzlich {starglitter} x2;",
-    threeStar: "Wenn du 3-Sterne-Waffen bei diesem Gebet erh\xE4ltst, bekommst du zus\xE4tzlich {stardust} x15."
-  },
-  duplicate: {
-    heading: " Vorhandene Characters\u3013",
-    text: "Sobald du eine {rarity}-Sterne Figur das zweite bis siebte Mal, auf welche Weise auch immer, erh\xE4ltst, wird diese Figur in je 1 {stellaFortuna} der jeweiligen Figur und {starglitter} {constBonus} umgewandelt; Beim achten Mal wird die Figur in {starglitter} {fullConstBonus} umgewandelt."
-  }
-};
-const history = {
-  title: "Gebetsverlauf",
-  text: "Verlauf",
-  resetButton: "L\xF6schen",
-  resetPromptTitle: "Verlauf l\xF6schen?",
-  resetPrompt: 'Es werden auch alle Figuren und Waffen des "{bannerName}" Banners aus deinem Inventar gel\xF6scht. <br /> Bist du sicher, dass du alles zur\xFCcksetzen m\xF6chtest?',
-  resetSuccess: "Erfolgreich zur\xFCckgesetzt!",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "Gebetskategorie:",
-  disclaimer: "Wir speichern niemals Daten im Cloudspeicher. Alle Daten werden bei IndexedDB gespeichert, das hei\xDFt die Daten werden in deinem Browserspeicher gespeichert. Sie gehen niemals verloren, au\xDFer du l\xF6schst sie manuell durch den L\xF6schen/Zur\xFCcksetzen Knopf oder leerst deinen Browserspeicher.",
-  currentPity: "Aktuelle Pity:",
-  totalPull: "Zuge insgesamt:",
-  totalSpend: "Insgesamt ausgegeben:",
-  filterTxt: "Filter",
-  filter: "{rarity} Sterne",
-  filterAll: "Alle",
-  pity: "Pity",
-  timeReceived: "Erhalten am",
-  waiting: "Warte",
-  noData: "Keine Daten verf\xFCgbar.",
-  untracked: "Kein Verlauf",
-  item: "Item",
-  win: "Gewonnenes 50/50",
-  lose: "Verlorenes 50/50",
-  guaranteed: "Garantiert",
-  selected: "Ausgew\xE4hlte Waffe",
-  olderLayout: "Altes Layout",
-  switchv2: "Wechsel zum neuen Layout"
-};
-const shop = {
-  text: "Shop",
-  paimonBargains: "Rares f\xFCr Staub und Glanz",
-  fateNeeded: "{rollQty} {currency} zu wenig.",
-  primoNeeded: "Mit {primoPrice} Urgestein kaufen?",
-  purchaseUpto: "1x erh\xE4ltlich",
-  purchaseConfirm: "Kauf best\xE4tigen",
-  exchangeHeading: "Items umwandeln",
-  purchaseHeading: "Items kaufen",
-  purchaseButton: "Kaufen",
-  pay: "Zahlen",
-  product: "Produkt",
-  consume: "Verbrauchen",
-  selectPayment: "Zahlungsart w\xE4hlen",
-  unrealWallet: "Keine reale W\xE4hrung",
-  convertPrimo: "Automatisch in Urgestein umwandeln?",
-  proceedPayment: "Zahlung abschlie\xDFen",
-  qty: "Anzahl",
-  insufficient: "Unzureichende Zahlmittel",
-  crystalTopup: "Kristalle aufladen",
-  initialBonus: "Inklusive Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "Kaufe Sch\xF6pfungskristalle",
-  recomendedHeading: "Empfohlene Waren",
-  paimonHeading: "H\xE4ndler",
-  welkinNote: "Kann mehrmals gekauft werden",
-  limitedOffer: "Zeitlich begrenztes Angebot",
-  noLimitTime: "Keine limitierten Angebote verf\xFCgbar",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "Mondsegen",
-    newOutfit: "Neue Figurenzierde",
-    dayRemaining: "Tage verbleibend: {days}",
-    alreadyClaimed: "Heute bereits gekauft",
-    instantlyGet: "Sofort erh\xE4ltlich",
-    dailyGift: "T\xE4gliches Geschenk",
-    obtainTotal: "Erhalte insgesamt {totalGenesis} Sch\xF6pfungskristalle und {totalPrimo} Urgestein \xFCber 30 Tage verteilt",
-    claimingBlessing: "Klicke um deinen t\xE4glichen Mondsegen abzuholen!",
-    issuedPurchase: "Fehler beim Kauf",
-    collect: "Sammle f\xFCr 30 Tage t\xE4gliche Login-Belohnungen"
-  },
-  exchange: {
-    starglitter: "Mit Sternenglanz kaufen",
-    stardust: "Mit Sternenstaub kaufen",
-    primogem: "Mit Urgestein kaufen"
-  },
-  item: {
-    genesis: "Sch\xF6pfungskristalle",
-    primogem: "Urgestein",
-    intertwined: "Verwobenes Schicksal",
-    acquaint: "Vorbestimmtes Schicksal",
-    starglitter: "Herrenloser Sternenglanz",
-    stardust: "Herrenloser Sternenstaub"
-  },
-  description: {
-    intertwined: "Ein Samen des Schicksals, der Tr\xE4ume verbindet. Sein Glanz kann Schicksale miteinander verflechten und die Tr\xE4ume von Menschen zusammenf\xFChren. Es ist dieser Glanz, der die Sterne Bilder des Herzens formen l\xE4sst.",
-    acquaint: "Ein Samen, des Hoffnung zwischen den Sternen aufblinken l\xE4sst. Egal wie weit Menschen voneinander entfernt sind, so wird dieser Schein den Menschen, die f\xFCreinander bestimmt sind, den Weg weisen, sodass sie sich unter dem Sternenhimmel treffen."
-  }
-};
-const inventory = {
-  text: "Inventar",
-  unsetOutfit: "Outfit ablegen",
-  setOutfit: "Outfit anlegen",
-  refinement: "Verfeinerung {count}",
-  constellation: "Konstellation {count}",
-  extra: "{count} Zus\xE4tzlich",
-  firstSummon: "Erstmals erhalten am: {date}",
-  notOwned: "Noch nicht erhalten",
-  sort: "Sortieren",
-  rarity: "Seltenheit",
-  name: "Name",
-  quantity: "Menge",
-  element: "Element",
-  release: "Erscheinungsdatum",
-  type: "Typ",
-  owned: "In Besitz",
-  showAllOption: "Zeige alle {item}s"
-};
-const menu = {
-  no: "Nein",
-  yes: "Ja",
-  text: "Men\xFC",
-  feedback: "Feedback",
-  options: "Optionen",
-  updates: "Updateverlauf",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "Sprache",
-  currency: "W\xE4hrung",
-  fates: "Anzahl der Gebete",
-  unlimited: "Unbegrenzt",
-  manual: "Benutzerdefiniert",
-  mute: "Audio & Soundeffekte stummschalten",
-  switchBanner: "Banner wechseln",
-  showAllitems: "Alle Gegenst\xE4nde im Inventar zeigen",
-  autoskip: "Splash Art automatisch \xFCberspringen",
-  animatedbg: "Animierter Hintergrund",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "Daten l\xF6schen und Startzustand herstellen",
-  resetTitle: "Auf Werkseinstellungen zur\xFCcksetzen",
-  rotate: "Drehen f\xFCr ein besseres Erlebnis",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Zwischenspeicher leeren ( {size} )? <small>Zwischengespeicherten Dateien werden danach erneut heruntergeladen! </small>",
-  resetButton: "Jetzt Zur\xFCcksetzen",
-  resetPrompt: "Bist du dir sicher dass du <strong> alle Daten </strong> l\xF6schen willst and zu den Standarteinstellungen zur\xFCckkehren m\xF6chtest?",
-  resetSuccess: "Erfolgreich zur\xFCckgesetzt!",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Neuen Schl\xFCssel hier erhalten!",
-  noKey: "Du hast keinen Schl\xFCssel?",
-  verifyFail: "Verifizierung des AdKeys fehlgeschlagen, \xDCberpr\xFCfe deine Verbindung!",
-  invalidKey: "Dein Schl\xFCssel ist ung\xFCltig",
-  keyExpired1: "Schl\xFCssel abgelaufen!",
-  keyExpired2: 'Dein Schl\xFCssel: "{key}" ist seit dem {date} abgelaufen!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Schl\xFCssel eingeben",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* Ich entschuldige mich f\xFCr die Werbung. Eigentlich m\xF6chte ich dir dein Wunscherlebnis nicht verderben, aber ich habe kein Team oder Sponsor, um diese App am Leben zu erhalten. Wenn ihr nichts ausgeben wollt, k\xF6nnt ihr immer noch den Werbeblocker einschalten oder einfach eine benutzerdefinierte DNS verwenden, ich werde es euch nicht verbieten."
-};
-const deDE = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  deDE as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/en-US.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/en-US.js
deleted file mode 100644
index bcd08b87..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/en-US.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Genshin Impact Wish Simulator";
-const character = "Character";
-const weapon = "Weapon";
-const vision = "Vision";
-const anemo = "Anemo";
-const cryo = "Cryo";
-const dendro = "Dendro";
-const electro = "Electro";
-const hydro = "Hydro";
-const geo = "Geo";
-const pyro = "Pyro";
-const bow = "Bow";
-const catalyst = "Catalyst";
-const claymore = "Claymore";
-const sword = "Sword";
-const polearm = "Polearm";
-const extra = "Extra";
-const obtained = "Obtained";
-const waiting = "Waiting";
-const connectionFailed = "Connection Failed!";
-const confirmButton = "Confirm";
-const cancelButton = "Cancel";
-const disclaimer = "All assets used in this site are owned by miHoYo.";
-const fanmade = "This is purely a fan made Application, enjoy it !";
-const pressToContinue = "Press anywhere in the blank area to continue";
-const installInstruction = "Instructions to Install to Home Screen/Desktop";
-const share = "Share";
-const screenshot = "Take Picture";
-const capturing = "Capturing";
-const rewardFirstShare = "Reward for first share : {qty}";
-const version = "Version";
-const donate = "Donate";
-const banner = {
-  beginner: "Beginners' Wish",
-  wanderlust: "Wanderlust Invocation",
-  "epitome-invocation": "Epitome Invocation",
-  "adrift-in-the-harbor": "Adrift in The Harbor",
-  "auric-blaze": "Auric Blaze",
-  "azure-excursion": "Azure Excursion",
-  "ballad-in-goblets": "Ballad in Goblets",
-  "born-of-ocean-swell": "Born of Ocean Swell",
-  "caution-in-confidence": "Caution in Confidence",
-  "chanson-of-many-waters": "Chanson of Many Waters",
-  "conjuring-chiaroscuro": "Conjuring Chiaroscuro",
-  "dance-of-lantern": "Dance of Lantern",
-  "decree-of-the-deeps": "Decree of the Deeps",
-  "discerner-of-enigmas": "Discerner of Enigmas",
-  "drifting-luminescence": "Drifting Luminescence",
-  "everbloom-violet": "Everbloom Violet",
-  "farewell-of-snezhnaya": "Farewell of Snezhnaya",
-  "from-ashes-reborn": "From Ashes Reborn",
-  "gentry-of-hermitage": "Gentry of Hermitage",
-  "immaculate-pulse": "Immaculate Pulse",
-  "in-the-name-of-the-rosula": "In the Name of the Rosula",
-  "invitation-to-mundane-life": "Invitation to Mundane Life",
-  "leaves-in-the-wind": "Leaves in The Wind",
-  "moment-of-bloom": "Moment of Bloom",
-  "oni_s-royale": "Oni's Royale",
-  "reign-of-serenity": "Reign of Serenity",
-  "secretum-secretorum": "Secretum Secretorum",
-  "sparkling-steps": "Sparkling Steps",
-  "tapestry-of-golden-flames": "Tapestry of Golden Flames",
-  "tempestuous-destiny": "Tempestuous Destiny",
-  "the-heron_s-court": "The Heron's Court",
-  "the-moongrass-enlightenment": "The Moongrass' Enlightenment",
-  "the-transcendent-one-returns": "The Transcendent One Returns",
-  "twilight-arbiter": "Twilight Arbiter",
-  "twirling-lotus": "Twirling Lotus",
-  "viridescent-vigil": "Viridescent Vigil"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "Wish",
-  rollButton: "Wish {count}",
-  stellaFortuna: "Stella Fortuna",
-  loadFailed: "Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banner",
-    allBanner: "All Banners",
-    previous: "Previous Banner",
-    findBanner: "Find a Banner",
-    group: "Group",
-    beginner: "Beginners' Wish",
-    "character-event": "Character Event Wish",
-    "weapon-event": "Weapons Wish",
-    standard: "Standard Wish",
-    wishDescription: "Every 10 wishes is guaranteed to include at least one 4-star or higher item",
-    novice: "Novice Wishes",
-    up: "UP!",
-    beginnerSet: "10-set 20% off. First 10-set will receive {character}.",
-    beginnerNote: '"As a dutiful maid would."',
-    beginnerChance: "Chances Remaining: {chances}",
-    standardNote: "Standard wishes have no time limit.",
-    allWeaponTypes: "All Weapon Types",
-    etc: "etc.",
-    probIncreased: "Probability increased !",
-    eventNote: "5-Star event-exclusive characters can only be obtained in the specified wish during the specified time period(s).",
-    viewDetails: "View Details for more."
-  },
-  epitomizedPath: {
-    text: "Epitomized Path",
-    fatePoint: "Fate Points",
-    cancelPrompt: "Do you wish to cancel your curent Course ?",
-    cancelDesc: "Cancelation will reset your accumulated Fate Points",
-    selectWeapon: "Select Weapon",
-    chartCourseOf: "Chart Course of {target}",
-    cancelCourse: "Cancel Course",
-    chartCourse: "Chart Course",
-    courseSetFor: "Course Set For: {selectedCourse}",
-    description: [
-      '"Epitomized Path" is a wish mechanic in "Epitome Invocation". Travelers can chart a course towards a specific 5-Star promotional weapon they hope to obtain.',
-      "Once you have charted a course towards your chosen weapon, you will obtain 1 Fate Point upon <span> receiving a 5-Star weapon that is not the one that you chose</span>. You can obtain a maximum of 2 Fate Points.",
-      `Once you've reached the maximum amount of Fate Points, the next 5-Star weapon you choose will be the one you have chosen through "Epitomized Path".`,
-      "When you obtain the chosen weapon in Epitome Invocation through Epitomized Path, <span> the accumulated Fate Points will be cleared </span>.",
-      "If you do not use Epitomized Path to obtain a weapon, you will not accumulate Fate Points.",
-      "The charted course towards a certain weapon can be changed or cancelled. However, after doing so, any current Fate Points will be cleared.",
-      "At the end of the current period of Epitome Invocation, any current Fate Points will be cleared."
-    ]
-  },
-  result: {
-    skip: "Skip",
-    meteorFailed: "Meteor Animation Failed to Load",
-    "new": "New",
-    convertion: "Convert",
-    title: "Wish Result for {item} et al"
-  }
-};
-const outfit = {
-  heading: "Character Outfits",
-  "default": "Default",
-  setOutfit: "Set Outfit",
-  owned: "Already Owned",
-  purchasePrompt: "You don't have a character for this costume yet, are you sure to purchase this costume?",
-  promptInfo: "You still can use this costume after getting the right character",
-  obtained: "New Outfit Obtained",
-  unlocked: "{character}: Outfit Unlocked",
-  item: {
-    "5-star-outrider": {
-      name: "5-Star Outrider"
-    },
-    "favonian-fevotion": {
-      name: "Favonian Devotion"
-    },
-    "flowing-fate": {
-      name: "Flowing Fate"
-    },
-    "executor_s-thorns": {
-      name: "Executor's Thorns"
-    },
-    "sea-breeze-dandelion": {
-      name: "Sea Breeze Dandelion",
-      description: "Jean's summer wear. Light and cool, but no less elegant for it. The perfect choice for a trip to the seaside."
-    },
-    "summertime-sparkle": {
-      name: "Summertime Sparkle",
-      description: "Barbara's beach attire. This pretty skirt brims with summer vitality and carries with it a cool ocean breeze."
-    },
-    "opulent-splendor": {
-      name: "Opulent Splendor",
-      description: "Keqing's formal wear. Amidst the beautiful dawn of the Lantern Rite, the threads weaved by days of hard work intertwine into a light yet magnificent appearance."
-    },
-    "orchid_s-evening-gown": {
-      name: "Orchid's Evening Gown",
-      description: "Ningguang's formal wear. The long cyan skirt traces her elegant curves, and the butterfly wings at her ankles lend the outfit a touch of light grace."
-    },
-    "ein-immernachtstraum": {
-      name: "Ein Immernachtstraum",
-      description: "A ceremonial outfit for the Prinzessin. May she who is noble retain her courage, sincerity, and kindness forever, such that no evil shall ever overcome her."
-    },
-    "red-dead-of-night": {
-      name: "Red Dead of Night",
-      description: "One of the outfits Diluc wears during covert actions, it resembles a flame dancing in the shadows. The crimson red traces it leaves behind at the edges of the enemy's vision will scar their nightmares forever."
-    },
-    "a-sobriquet-under-shade": {
-      name: "A Sobriquet Under Shade",
-      description: "An outfit Lisa had someone commission for her when she revisited Sumeru. A perfect balance between practicality and elegance, the dress bears a resemblance to Lisa\u2019s old uniform from the Akademiya days."
-    },
-    "springbloom-missive": {
-      name: "Springbloom Missive",
-      description: "Ayaka\u2019s travel outfit. Its design is based on the Fontaine dresses depicted in light novel illustrations and seems to reflect the lifestyle of proper ladies who live in that nation."
-    },
-    "blossoming-starlight": {
-      name: "Blossoming Starlight",
-      description: "An exquisite outfit Klee wears only for the most important performances. The colors are brilliant, like a cake adorned with cream flowers and crowned with scarlet candles. With it comes happiness and smiles that will fill your adventures."
-    },
-    "sailwind-shadow": {
-      name: "Sailwind Shadow",
-      description: `Kaeya's outfit from his role as the "Dagger Bandit" in the play. Though flamboyant and designed to be as eye-catching as possible, it isn't difficult to put on, though it does take some time to get all the accessories and daggers sorted.`
-    }
-  }
-};
-const details = {
-  text: "Details",
-  promotional: "Promotional Items",
-  itemlist: "List of Items",
-  increasedRate: "Increased Drop Rates",
-  percentageDrop: "Percentage of {rarity}-Star Item Drops: {percentage}",
-  wishDetails: "Wish Details",
-  probInfo: "Base Probability for {rarity}-Star Item Drops: {singlePercentage} (Incl. guarantee: {avgPercentage})",
-  itemWishFor: "Item to wish for :",
-  itemType: "Item Type",
-  itemName: "Item Name",
-  beginnerInfo: "No time limit (Closes after 20 wishes)",
-  limited: "Limited Time Event",
-  permanent: "Permanent",
-  alert: "\u203B This is a {wishName}. The wish guarantee count is accumulated within this event only and is independent of the guarantee counts of other wishes.",
-  beginner: [
-    "Beginners' <span> Wish </span> has no time limit and is aimed at Travelers who have recently landed in Teyvat. Non-promotional characters and weapons are available. <br /> In Beginners' Wish, 10-wish sets cost <span> 20%</span> less Acquaint Fate, and your first 10-wish set is guaranteed to include {character} , and your second 10-wish set is guaranteed to include one <span> other </span> min. 4-Star character! <br/> Beginners' Wish expires after <span> 20 </span> attempts. After the wish expires, the page will disappear.",
-    "\u203BIn most cases, the base probability of all characters and weapons is evenly distributed. If there is a boost or guarantee in effect, please refer to the corresponding rules.",
-    "\u3013Rules\u3013",
-    "Base probability of winning 5-Star character = <span> 0.600%</span> <br /> Base probability of winning 4-Star character = <span> 5.100%</span>; consolidated probability (incl. guarantee) = <span> 13.000%</span>;"
-  ],
-  standard: [
-    '"{bannerName}" is a standard wish with no time limit. Non-event-exclusive characters and weapons are available.<br/> In this wish, <span>guaranteed</span> to win 4-star or above item at least once per 10 attempts.',
-    "\u203BIn most cases, the base probability of all characters and weapons is evenly distributed. If there is a boost or guarantee in effect, please refer to the corresponding rules.",
-    "\u3013Rules\u3013",
-    "Base probability of winning 5-star item = <span>0.600%</span>; base probability of winning 5-star character = <span>0.300%</span>, and base probability of winning 5-star weapon = <span>0.300%</span>; consolidated probability (incl. guarantee) of winning 5-star item = <span>1.600%</span>; guaranteed to win 5-star item at least once per <span>90</span> attempts. <br> Base probability of winning 4-star item = <span>5.100%</span>; base probability of winning 4-star character = <span>2.550%</span>, and base probability of winning 4-star weapon = <span>2.550%</span>; consolidated probability (incl. guarantee) of winning 4-star item = <span>13.000%</span>; guaranteed to win 4-star or above item at least once per <span>10</span> attempts; probability of winning 4-star item through the guarantee = <span>99.400%</span>, and probability of winning 5-star item through the guarantee = <span>0.600%</span>. "
-  ],
-  events: [
-    'Event Wish "{bannerName}" is now available. During this event wish, the  <span>event-exclusive</span> 5-star character {featuredCharacter} as well as 4-star characters {rateupCharacters} will get a <span> huge drop-rate boost</span>! <br/> <span> \u203B Of the above characters, the event-exclusive character will not be available in the standard wish "Wanderlust Invocation."</span>',
-    "\u203B In most cases, drifting base probability of all characters and weapons is evenly distributed. If driftingre is a boost or guarantee in effect, please refer to drifting corresponding rules.",
-    "\u3013Rules\u3013",
-    "5-Star Items",
-    'For Event Wish "{bannerName}": Base probability of winning 5-star character = <span> 0.600% </span>; consolidated probability (incl. guarantee) = <span>1.600%</span>; guaranteed to win 5-star character at least once per <span> 90</span> attempts.<br/> The first time you win a 5-star item in this event wish, there is a <span> 50.000%</span> chance it will be the promotional character {featuredCharacter}. If the first 5-star character you win in this event wish is not the promotional character, then the next 5-star character you win is <span> guaranteed</span> to be the promotional character.',
-    "4-Star Items",
-    'For Event Wish  "{bannerName}": Base probability of winning 4-star item = <span> 5.100%</span>; base probability of winning 4-star character = <span>2.550%</span>, and base probability of winning 4-star weapon = <span>2.550%</span>; consolidated probability (incl. guarantee) of winning 4-star item = <span> 13.000%</span>; guaranteed to win 4-star or above item at least once per 10 attempts; probability of winning 4-star item through the guarantee = <span>99.400%</span>, and probability of winning 5-star item through the guarantee = <span>0.600%</span>. <br/> The first time you win a 4-star item in this event wish, there is a <span>50.000%</span> chance it will be one of the featured characters {rateupCharacters}. If the first 4-star item you win in this event wish is not one of the featured characters, then the next 4-star item you win is <span>guaranteed</span> to be a featured character. When you win a featured 4-star item, the probability of obtaining each featured 4-star character is equal between all of them.'
-  ],
-  weapons: [
-    'Event Wish "{bannerName}" is now available. During this event wish, the <span>event-exclusive</span> 5-star weapon {featuredWeapon1} and the 5-star weapon {featuredWeapon2} as well as the <span>event-exclusive</span> 4-star weapon {rateupWeapons}  will get a <span>huge drop-rate boost!</span> <br/> <span> \u203B Of the above weapons, the event-exclusive weapons will not be available in the standard wish "Wanderlust Invocation."</span>',
-    "\u203B In most cases, the base probability of all characters and weapons is evenly distributed. If there is a boost or guarantee in effect, please refer to the corresponding rules.",
-    "\u3013Rules\u3013",
-    "5-Star Items",
-    'For Event Wish "{bannerName}": Base probability of winning 5-star weapon = <span>0.700%</span>; consolidated probability (incl. guarantee) = <span>1.850%</span>; guaranteed to win 5-star weapon at least once per <span>80</span> attempts.<br/> The first time you win a 5-star weapon in this event wish, there is a <span>75.000%</span> chance it will be one of the promotional weapons {featuredWeapon1} and {featuredWeapon2}. If the first 5-star weapon you win in this event wish is not one of the promotional weapons, then the next 5-star weapon you win is <span>guaranteed</span> to be a promotional weapon. In the event that you obtain a promotional 5-star item through a wish without having maximum Fate Points, the probability of obtaining each promotional 5-star weapon is equal between all of them. <br/> For Event Wish "{bannerName}", you can chart a course towards your chosen promotional 5-star weapon with "Epitomized Path." The choice of weapon will only be valid for this period of Event Wish "{bannerName}". <br/> For Event Wish "{bannerName}", after charting a course towards a chosen weapon with "Epitomized Path," if you obtain a 5-star weapon that was not your chosen weapon, you will receive 1 Fate Point. Once you have reached the <span>maximum amount</span> of Fate Points, the next 5-star weapon will be <span>guaranteed</span> to be your chosen weapon. Once you have obtained the chosen weapon, the number of Fate Points will reset to <span>0</span> whether or not you have reached maximum points, and you will have to accumulate them again. If you do not use the "Epitomized Path" to chart a course towards a chosen weapon, you will <span>not</span> receive Fate Points. <br/> After charting a course towards a chosen weapon, you can change your choice or cancel it altogether, but doing so will reset the Fate Points to <span>0</span> and you will have to accumulate them again. <br/> \u203B The Fate Points for this Wish are only valid for the current period of Event Wish "Epitome Invocation". Once the Wish event is over, the number of Fate Points will reset to <span>0</span>, and you will have to accumulate them again',
-    "4-Star Items",
-    'For Event Wish "{bannerName}": Base probability of winning 4-star item = <span>6.000%</span>; base probability of winning 4-star character = <span>3.000%</span>, and base probability of winning 4-star weapon = <span>3.000%</span>; consolidated probability (incl. guarantee) of winning 4-star item = <span>14.500%</span>; guaranteed to win 4-star or above item at least once per <span>10</span> attempts; probability of winning 4-star item through the guarantee = <span>99.300%</span>, and probability of winning 5-star item through the guarantee = <span>0.700%</span>. <br/> The first time you win a 4-star item in this event wish, there is a <span>75.000%</span> chance it will be one of the featured weapons {rateupWeapons}. If the first 4-star item you win in this event wish is not one of the featured weapons, then the next 4-star item you win is <span>guaranteed</span> to be a featured weapon. When you win a featured 4-star item, the probability of obtaining each featured 4-star weapon is equal between all of them.'
-  ],
-  convertion: {
-    fiveStar: "5-Star weapons won in this wish come with {starglitter} \xD710;",
-    fourStar: "4-star weapons won in this wish come with {starglitter} \xD72;",
-    threeStar: "3-star weapons won in this wish come with {stardust} \xD715."
-  },
-  duplicate: {
-    heading: "\u3013Duplicate Characters\u3013",
-    text: "On obtaining a {rarity}-Star character that you already own (whether obtained in a wish, redeemed at the shop, or awarded by the game): The 2nd - 7th time you obtain the character, it will be converted into that character's {stellaFortuna} \xD71 and {starglitter} {constBonus}; from the 8th time onwards it will be converted into {starglitter} {fullConstBonus}."
-  }
-};
-const history = {
-  title: "Wish History",
-  text: "History",
-  resetButton: "Clear",
-  resetPromptTitle: "Clear History ?",
-  resetPrompt: 'Are You Sure to Remove the Characters and Weapons related to "{bannerName}" Banner from your Inventory.',
-  resetSuccess: "Reset Successful !",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "Select Wish Type:",
-  disclaimer: "We Never save your data on cloud storage. All data was stored to IndexedDB, it means the data is saved on your browser storage. It will never delete till you delete it manualy through delete/reset button or clear the browser data.",
-  currentPity: "Current Pity :",
-  totalPull: "Total Pulls :",
-  totalSpend: "Total Spent :",
-  filterTxt: "Filter",
-  filter: "{rarity} Star",
-  filterAll: "All",
-  pity: "Pity",
-  timeReceived: "Time Received",
-  waiting: "Waiting",
-  noData: "No data available .",
-  untracked: "Untracked",
-  item: "Item",
-  win: "Win 50/50",
-  lose: "Lose 50/50",
-  guaranteed: "Guaranteed",
-  selected: "Selected Weapon",
-  olderLayout: "Older Layout",
-  switchv2: "Switch to V2"
-};
-const shop = {
-  text: "Shop",
-  paimonBargains: "Paimon Bargains",
-  fateNeeded: "An Aditional {rollQty} {currency} are needed.",
-  primoNeeded: "Purchase with {primoPrice} Primogem ?",
-  purchaseUpto: "Purchase Up to 1",
-  purchaseConfirm: "Purchase Confirmation",
-  exchangeHeading: "Item To Exchange",
-  purchaseHeading: "Item To Purchase",
-  purchaseButton: "Purchase",
-  pay: "Pay",
-  product: "Product",
-  consume: "Consume",
-  selectPayment: "Select Payment Type",
-  unrealWallet: "UnReal Wallet",
-  convertPrimo: " Auto convert to primogem ?",
-  proceedPayment: "Proceed Payment",
-  qty: "Qty",
-  insufficient: "Insufficient Funds",
-  crystalTopup: "Crystal Top-Up",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "Buy Genesis Crystal",
-  recomendedHeading: "Recommended Items",
-  paimonHeading: "Paimon's Bargains",
-  welkinNote: "Can be purchased multiple times",
-  limitedOffer: "Limited Time Offer",
-  noLimitTime: "No Limit time items available",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "Blessing of the Welkin Moon",
-    newOutfit: "New Character Outfits",
-    dayRemaining: "Days remaining: {days}",
-    alreadyClaimed: "Already Claimed today",
-    instantlyGet: "Instantly Get",
-    dailyGift: "Daily Gift",
-    obtainTotal: "Obtain a total {totalGenesis} Genesis Crystal and {totalPrimo} Primogems across 30 days",
-    claimingBlessing: "Click to claim your daily Blessing of the Welkin Moon rewards",
-    issuedPurchase: "Issued on purchase",
-    collect: "Collect daily login rewards for 30 days"
-  },
-  exchange: {
-    starglitter: "Starglitter Exchange",
-    stardust: "Stardust Exchange",
-    primogem: "Exchange with Primogems"
-  },
-  item: {
-    genesis: "Genesis Crystal",
-    primogem: "Primogem",
-    intertwined: "Intertwined Fate",
-    acquaint: "Acquaint Fate",
-    starglitter: "Masterless Starglitter",
-    stardust: "Masterless Stardust"
-  },
-  description: {
-    intertwined: "A fateful stone that connects dreams. Its glimmers can entwine fates and connect dreams, just as how its glimmer links stars into the shapes of a heart's desires.",
-    acquaint: "A seed that lights up the night. No matter the distance apart, guided by the stone's glimmer, the fated will meet under the stars."
-  }
-};
-const inventory = {
-  text: "Inventory",
-  unsetOutfit: "Unset Outfit",
-  setOutfit: "Set Outfit to Character",
-  refinement: "Refinement {count}",
-  constellation: "Constellation {count}",
-  extra: "{count} Extra",
-  firstSummon: "First Summoned at : {date}",
-  notOwned: "Not Owned",
-  sort: "Sort",
-  rarity: "Rarity",
-  name: "Name",
-  quantity: "Quantity",
-  element: "Element",
-  release: "Release Date",
-  type: "Type",
-  owned: "Owned",
-  showAllOption: "Show All {item}s"
-};
-const menu = {
-  no: "No",
-  yes: "Yes",
-  text: "Menu",
-  feedback: "Feedback",
-  options: "Options",
-  updates: "Update History",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "Language",
-  currency: "Currency",
-  fates: "Number of Wishes",
-  unlimited: "Unlimited",
-  manual: "Manual Input",
-  mute: "Mute Audio and Sound Effect",
-  switchBanner: "Switch Banner",
-  showAllitems: "Show all items on Inventory",
-  autoskip: "Auto Skip Splash Art",
-  animatedbg: "Animated Background",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "Clear Data and Restore Default",
-  resetTitle: "Factory Reset",
-  rotate: "Rotate for better experience",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Clear Caches ( {size} ) ? <small> You will re-load the cached assets after this action</small>",
-  resetButton: "Reset Now",
-  resetPrompt: "Are You sure to clear <strong> All Data </strong> and restore to default ?",
-  resetSuccess: "Reset Successful",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Get a new one Here!",
-  noKey: "Don't have a key?",
-  verifyFail: "Failed to verifying Access Key, Check your Connection !",
-  invalidKey: "Your key is invalid",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Enter Key",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."
-};
-const enUS = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  enUS as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/en-US2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/en-US2.js
deleted file mode 100644
index 40e3cd6f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/en-US2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "Akuoumaru";
-const rainslasher = "Rainslasher";
-const rust = "Rust";
-const slingshot = "Slingshot";
-const verdict = "Verdict";
-const albedo = {
-  name: "Albedo",
-  title: "Kreideprinz"
-};
-const alhaitham = {
-  name: "Alhaitham",
-  title: "Admonishing Instruction"
-};
-const amber = {
-  name: "Amber",
-  title: "Outrider Knights of Favonius"
-};
-const baizhu = {
-  name: "Baizhu",
-  title: "Beyond Mortality"
-};
-const barbara = {
-  name: "Barbara",
-  title: "Knight of Favonius Deaconess"
-};
-const beidou = {
-  name: "Beidou",
-  title: "Uncrowned Lord of Ocean"
-};
-const bennett = {
-  name: "Bennett",
-  title: "Trial by Fire"
-};
-const candace = {
-  name: "Candace",
-  title: "Golden Vow"
-};
-const charlotte = {
-  name: "Charlotte",
-  title: "Lens of Verity"
-};
-const chevreuse = {
-  name: "Chevreuse",
-  title: "Executor of Justice"
-};
-const chongyun = {
-  name: "Chongyun",
-  title: "Frozen Ardor"
-};
-const collei = {
-  name: "Collei",
-  title: "Sprout of Rebirth"
-};
-const cyno = {
-  name: "Cyno",
-  title: "Judicator of Secrets"
-};
-const dehya = {
-  name: "Dehya",
-  title: "Flame-Mane"
-};
-const diluc = {
-  name: "Diluc",
-  title: "The Dark Side of Dawn"
-};
-const diona = {
-  name: "Diona",
-  title: "K\xE4tzlein Cocktail"
-};
-const dori = {
-  name: "Dori",
-  title: "Treasure of Dream Garden"
-};
-const eula = {
-  name: "Eula",
-  title: "The Sprindrift Knight"
-};
-const faruzan = {
-  name: "Faruzan",
-  title: "Enigmatic Machinist"
-};
-const fischl = {
-  name: "Fischl",
-  title: "Prinzessin der Verurteilung"
-};
-const freminet = {
-  name: "Freminet",
-  title: "Yearning for Unseen Depths"
-};
-const furina = {
-  name: "Furina",
-  title: "Endless Solo of Solitude"
-};
-const ganyu = {
-  name: "Ganyu",
-  title: "Plenilune Gaze"
-};
-const gorou = {
-  name: "Gorou",
-  title: "Canine Warrior"
-};
-const jean = {
-  name: "Jean",
-  title: "Dandelion Knight"
-};
-const kaeya = {
-  name: "Kaeya",
-  title: "Knight of Favonius Quarter Master"
-};
-const kaveh = {
-  name: "Kaveh",
-  title: "Empyrean Reflection"
-};
-const keqing = {
-  name: "Keqing",
-  title: "Driving Thunder"
-};
-const kirara = {
-  name: "Kirara",
-  title: "Cat Upon the Eaves"
-};
-const klee = {
-  name: "Klee",
-  title: "Fleeing Sunlight"
-};
-const layla = {
-  name: "Layla",
-  title: "Fantastical Evening Star"
-};
-const lisa = {
-  name: "Lisa",
-  title: "Knight of Favonius Librarian"
-};
-const lynette = {
-  name: "Lynette",
-  title: "Elegance in the Shadows"
-};
-const lyney = {
-  name: "Lyney",
-  title: "Spectacle of Phantasmagoria"
-};
-const mika = {
-  name: "Mika",
-  title: "Coordinates of Clear Frost"
-};
-const mona = {
-  name: "Mona",
-  title: "Astral Reflection"
-};
-const nahida = {
-  name: "Nahida",
-  title: "Physic of Purity"
-};
-const navia = {
-  name: "Navia",
-  title: "Helm of the Radiant Rose"
-};
-const neuvillette = {
-  name: "Neuvillette",
-  title: "Ordainer of Inexorable Judgment"
-};
-const nilou = {
-  name: "Nilou",
-  title: "Dance of Lotuslight"
-};
-const ningguang = {
-  name: "Ningguang",
-  title: "Eclipsing Star"
-};
-const noelle = {
-  name: "Noelle",
-  title: "Chivalric Blossom"
-};
-const qiqi = {
-  name: "Qiqi",
-  title: "Icy Resurrection"
-};
-const razor = {
-  name: "Razor",
-  title: "Legend of Wolvendom"
-};
-const rosaria = {
-  name: "Rosaria",
-  title: "Thorny Benevolence"
-};
-const sayu = {
-  name: "Sayu",
-  title: "Mujina Ninja"
-};
-const shenhe = {
-  name: "Shenhe",
-  title: "Lonesome Transcendence"
-};
-const sucrose = {
-  name: "Sucrose",
-  title: "Harmless Sweetie"
-};
-const tartaglia = {
-  name: "Tartaglia",
-  title: "Childe"
-};
-const thoma = {
-  name: "Thoma",
-  title: "Protector From Afar"
-};
-const tighnari = {
-  name: "Tighnari",
-  title: "Verdant Strider"
-};
-const venti = {
-  name: "Venti",
-  title: "Windborne Bard"
-};
-const wanderer = {
-  name: "Wanderer",
-  title: "Eons Adrift"
-};
-const wriothesley = {
-  name: "Wriothesley",
-  title: "Emissary of Solitary Iniquity"
-};
-const xiangling = {
-  name: "Xiangling",
-  title: "Exquisite Delicacy"
-};
-const xiao = {
-  name: "Xiao",
-  title: "Vigilant Yaksha"
-};
-const xingqiu = {
-  name: "Xingqiu",
-  title: "Juvenile Galant"
-};
-const xinyan = {
-  name: "Xinyan",
-  title: "Blazing Riff"
-};
-const yanfei = {
-  name: "Yanfei",
-  title: "Wise Innocence"
-};
-const yaoyao = {
-  name: "Yaoyao",
-  title: "Burgeoning Grace"
-};
-const yelan = {
-  name: "Yelan",
-  title: "Valley Orchid"
-};
-const yoimiya = {
-  name: "Yoimiya",
-  title: "Frolicking Flames"
-};
-const zhongli = {
-  name: "Zhongli",
-  title: "Vago Mundo"
-};
-const enUS = {
-  "a-thousand-floating-dreams": "A Thousand Floating Dreams",
-  akuoumaru,
-  "alley-hunter": "Alley Hunter",
-  "amos-bow": "Amos' Bow",
-  "aqua-simulacra": "Aqua Simulacra",
-  "aquila-favonia": "Aquila Favonia",
-  "beacon-of-the-reed-sea": "Beacon of the Reed Sea",
-  "black-tassel": "Black Tassel",
-  "bloodtained-greatsword": "Bloodtained Greatsword",
-  "calamity-queller": "Calamity Queller",
-  "cashflow-supervision": "Cashflow Supervision",
-  "cool-steel": "Cool Steel",
-  "debate-club": "Debate Club",
-  "dragon_s-bane": "Dragon's Bane",
-  "elegy-for-the-end": "Elegy for the End",
-  "emerald-orb": "Emerald Orb",
-  "engulfing-lightning": "Engulfing Lightning",
-  "everlasting-moonglow": "Everlasting Moonglow",
-  "eye-of-perception": "Eye of Perception",
-  "favonius-codex": "Favonius Codex",
-  "favonius-greatsword": "Favonius Greatsword",
-  "favonius-lance": "Favonius Lance",
-  "favonius-sword": "Favonius Sword",
-  "favonius-warbow": "Favonius Warbow",
-  "ferrous-shadow": "Ferrous Shadow",
-  "freedom-sworn": "Freedom-Sworn",
-  "haran-geppaku-futsu": "Haran Geppaku Futsu",
-  "harbinger-of-dawn": "Harbinger of Dawn",
-  "hunter_s-path": "Hunter's Path",
-  "jadefall-splendor": "Jadefall's Splendor",
-  "kagura_s-verity": "Kagura's Verity",
-  "key-of-khaj-nisut": "Key of Khaj-Nisut",
-  "light-of-foliar-incision": "Light of Foliar Incision",
-  "lion_s-roar": "Lion's Roar",
-  "lithic-blade": "Lithic Blade",
-  "lithic-spear": "Lithic Spear",
-  "lost-prayer-to-the-sacred-winds": "Lost Prayer to the Sacred Winds",
-  "magic-guide": "Magic Guide",
-  "makhaira-aquamarine": "Makhaira Aquamarine",
-  "memory-of-dust": "Memory of Dust",
-  "mistsplitter-reforged": "Mistsplitter Reforged",
-  "mitternachts-waltz": "Mitternachts Waltz",
-  "mouun_s-moon": "Mouun's Moon",
-  "polar-star": "Polar Star",
-  "portable-power-saw": "Portable Power Saw",
-  "primordial-jade-cutter": "Primordial Jade Cutter",
-  "primordial-jade-winged-spear": "Primordial Jade Winged-Spear",
-  "prospector-drill": "Prospector's Drill",
-  rainslasher,
-  "range-gauge": "Range Gauge",
-  "raven-bow": "Raven Bow",
-  "redhorn-stonethresher": "Redhorn Stonethresher",
-  rust,
-  "sacrificial-bow": "Sacrificial Bow",
-  "sacrificial-fragments": "Sacrificial Fragments",
-  "sacrificial-greatsword": "Sacrificial Greatsword",
-  "sacrificial-sword": "Sacrificial Sword",
-  "sharpshooter_s-oath": "Sharpshooter's Oath",
-  "skyrider-sword": "Skyrider Sword",
-  "skyward-atlas": "Skyward Atlas",
-  "skyward-blade": "Skyward Blade",
-  "skyward-harp": "Skyward Harp",
-  "skyward-pride": "Skyward Pride",
-  "skyward-spine": "Skyward Spine",
-  slingshot,
-  "song-of-broken-pines": "Song of Broken Pines",
-  "splendor-of-tranquil-waters": "Splendor of Tranquil Waters",
-  "staff-of-homa": "Staff of Homa",
-  "staff-of-the-scarlet-sands": "Staff of the Scarlet Sands",
-  "summit-shaper": "Summit Shaper",
-  "the-alley-flash": "The Alley Flash",
-  "the-bell": "The Bell",
-  "the-dockhands-assistant": "The Dockhand's Assistant",
-  "the-first-great-magic": "The First Great Magic",
-  "the-flute": "The Flute",
-  "the-stringless": "The Stringless",
-  "the-unforged": "The Unforged",
-  "the-widsith": "The Widsith",
-  "thrilling-tales-of-dragon-slayers": "Thrilling Tales of Dragon Slayers",
-  "thundering-pulse": "Thundering Pulse",
-  "tome-of-the-eternal-flow": "Tome of the Eternal Flow",
-  "tulaytullah_s-remembrance": "Tulaytullah's Remembrance",
-  verdict,
-  "vortex-vanquisher": "Vortex Vanquisher",
-  "wavebreaker_s-fin": "Wavebreaker's Fin",
-  "wine-and-song": "Wine and Song",
-  "wandering-evenstar": "Wandering Evenstar",
-  "wolf_s-gravestone": "Wolf's Gravestone",
-  "xiphos-moonlight": "Xiphos' Moonlight",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "Arataki Itto",
-    title: "Hanamizaka Heroics"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "Hu Tao",
-    title: "Fragrance in Thaw"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "Kaedehara Kazuha",
-    title: "Scarlet Leaves Pursue Wild Waves"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "Kamisato Ayaka",
-    title: "Frostlake Heron"
-  },
-  "kamisato-ayato": {
-    name: "Kamisato Ayato",
-    title: "Pillar of Fortitude"
-  },
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  "kujou-sara": {
-    name: "Kujou Sara",
-    title: "Crowfeather Kaburaya"
-  },
-  "kuki-shinobu": {
-    name: "Kuki Shinobu",
-    title: "Mender of Tribulations"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "Raiden Shogun",
-    title: "Plane of Euthymia"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "Sangonomiya Kokomi",
-    title: "Pearl of Wisdom"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "Shikanoin Heizou",
-    title: "Analytical Harmoni"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "Yae Miko",
-    title: "Astute Amusement"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "Yun Jin",
-    title: "Stage Lucida"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  enUS as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/env.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/env.js
deleted file mode 100644
index 08d3b449..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/env.js
+++ /dev/null
@@ -1,14 +0,0 @@
-const host = {}.VITE_HOST || "";
-const HOST = host.replace(/^\/|\/$/g, "");
-const APP_TITLE = {}.VITE_APP_TITLE || "Genshin Impact Wish Simulator";
-const DESCRIPTION = {}.VITE_DESCRIPTION || "";
-const KEYWORDS = {}.VITE_KEYWORDS || "";
-const apihost = {}.VITE_API_HOST || "";
-const API_HOST = apihost.replace(/^\/|\/$/g, "");
-export {
-  APP_TITLE as A,
-  DESCRIPTION as D,
-  HOST as H,
-  KEYWORDS as K,
-  API_HOST as a
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/fr-FR.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/fr-FR.js
deleted file mode 100644
index 129c1b85..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/fr-FR.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Simulateur de v\u0153ux Genshin Impact";
-const character = "Personnage";
-const weapon = "Arme";
-const vision = "Vision";
-const anemo = "An\xE9mo";
-const cryo = "Cryo";
-const dendro = "Dendro";
-const electro = "\xC9lectro";
-const hydro = "Hydro";
-const geo = "G\xE9o";
-const pyro = "Pyro";
-const bow = "Arc";
-const catalyst = "Catalyseur";
-const claymore = "\xC9p\xE9e \xE0 deux mains";
-const sword = "\xC9p\xE9e \xE0 une main";
-const polearm = "Arme d'hast";
-const extra = "Extra";
-const obtained = "Obtenu";
-const waiting = "En attente";
-const connectionFailed = "Connexion Echou\xE9e!";
-const confirmButton = "Confirmer";
-const cancelButton = "Annuler";
-const disclaimer = "Tous les \xE9l\xE9ments utilis\xE9s sur ce site sont la propri\xE9t\xE9 de miHoYo.";
-const fanmade = "Il s'agit simplement d'une application r\xE9alis\xE9e par un fan, amusez-vous bien !";
-const pressToContinue = "Appuyez n'importe o\xF9 dans la zone vide pour continuer";
-const installInstruction = "Instructions pour l'installation sur l'\xE9cran d'accueil/le bureau";
-const share = "Partager";
-const screenshot = "Prendre une photo";
-const capturing = "Enregistrement";
-const rewardFirstShare = "R\xE9compense pour le premier partage : {qty}";
-const version = "Version";
-const donate = "Faire un don";
-const banner = {
-  beginner: "V\u0153ux pour les d\xE9butants",
-  wanderlust: "Envie de voyage",
-  "epitome-invocation": "Incarnation divine",
-  "adrift-in-the-harbor": "Doute passager",
-  "auric-blaze": "Brasier aurique",
-  "azure-excursion": "Excursion azur\xE9e",
-  "ballad-in-goblets": "Ballade en pintes",
-  "born-of-ocean-swell": "Flots dansants",
-  "caution-in-confidence": "Prudence en toute confidence",
-  "chanson-of-many-waters": "Chant de toutes les eaux",
-  "conjuring-chiaroscuro": "Conjuring Chiaroscuro",
-  "dance-of-lantern": "Danse des lanternes",
-  "decree-of-the-deeps": "D\xE9cret des profondeurs",
-  "discerner-of-enigmas": "Discerneuse d'\xE9nigmes",
-  "drifting-luminescence": "Luminescence \xE0 la d\xE9rive",
-  "everbloom-violet": "Infinit\xE9 violette",
-  "farewell-of-snezhnaya": "Adieux au Nord",
-  "from-ashes-reborn": "Renaissant des cendres",
-  "gentry-of-hermitage": "Monts et march\xE9s",
-  "immaculate-pulse": "Pouls immacul\xE9",
-  "in-the-name-of-the-rosula": "Au nom de la Rosula",
-  "invitation-to-mundane-life": "Invitation scintillante",
-  "leaves-in-the-wind": "Feuilles dans le vent",
-  "moment-of-bloom": "Floraison \xC9carlate",
-  "oni_s-royale": "Baroud d'Oni",
-  "reign-of-serenity": "R\xE8gne de s\xE9r\xE9nit\xE9",
-  "secretum-secretorum": "Nouvelles myst\xE9rieuses",
-  "sparkling-steps": "Foul\xE9es \xE9tincelantes",
-  "tapestry-of-golden-flames": "Draperie d'\xE9tincelles dor\xE9es",
-  "tempestuous-destiny": "Destin tumultueux",
-  "the-heron_s-court": "Prestance du h\xE9ron",
-  "the-moongrass-enlightenment": "Dessillement de l'herbe lunaire",
-  "the-transcendent-one-returns": "Retour de la sublim\xE9e",
-  "twilight-arbiter": "Arbitre du cr\xE9puscule",
-  "twirling-lotus": "Lotus tournoyant",
-  "viridescent-vigil": "Veill\xE9e \xE9cologique"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "V\u0153ux",
-  rollButton: "Faire {count} v\u0153u(x)",
-  stellaFortuna: "Stella Fortuna du personnage correspondant",
-  loadFailed: "\xC9chec du chargement de la banni\xE8re ! <br /> Veuillez passer \xE0 une autre banni\xE8re ou vous reconnecter \xE0 l'internet pour \xE9viter les erreurs !",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banni\xE8re",
-    allBanner: "Toutes les banni\xE8res",
-    previous: "Banni\xE8res pr\xE9c\xE9dentes",
-    findBanner: "Trouver une banni\xE8re",
-    group: "Groupe",
-    beginner: "V\u0153ux\u2008pour les d\xE9butants",
-    "character-event": "V\u0153ux \xE9v\xE9nements de personnage",
-    "weapon-event": "V\u0153ux \xE9v\xE9nements d'arme",
-    standard: "V\u0153ux permanents",
-    wishDescription: "Garantie d'obtention d'un personnage 4* ou plus tous les 10 v\u0153ux",
-    novice: "V\u0153ux des d\xE9butants",
-    up: "UP!",
-    beginnerSet: "-20% sur 10 v\u0153ux cons\xE9cutifs. Garantie d'obtention de {character} dans la premi\xE8re s\xE9rie de 10 v\u0153ux.",
-    beginnerNote: "Comme doit l'\xEAtre une servante.",
-    beginnerChance: "Tentatives restantes: {chances}",
-    standardNote: "Standard whises have no time limit.",
-    allWeaponTypes: "Tous types d'arme",
-    etc: "etc.",
-    probIncreased: "Chance d'obtention augment\xE9e !",
-    eventNote: "Les personnages 5* exclusifs de l'\xE9v\xE9nement ne peuvent qu'\xEAtre obtenus pendant une p\xE9riode limit\xE9e par le biais de v\u0153ux sp\xE9cifiques. Pour en savoir plus, rendez-vous dans les d\xE9tails de l'\xE9v\xE9nement.",
-    viewDetails: "Pour en savoir plus, rendez-vous dans les d\xE9tails de l'\xE9v\xE9nement."
-  },
-  epitomizedPath: {
-    text: "Chemin divin",
-    fatePoint: "Points de destin",
-    cancelPrompt: "Souhaitez-vous annuler la s\xE9lection actuelle ?",
-    cancelDesc: "Vos points de destin seront r\xE9initialis\xE9s apr\xE8s l'annulation",
-    selectWeapon: "Choisir une arme",
-    chartCourseOf: "Vous obtiendez : {target}",
-    cancelCourse: "R\xE9initialiser",
-    chartCourse: "Choisir",
-    courseSetFor: "Chemin d\xE9fini pour: {selectedCourse}",
-    description: [
-      "Le Chemin divin est un nouveau m\xE9canisme inclus dans les v\u0153ux Incarnation divine:",
-      "Une fois que vous choisissez une arme 5*, vous recevez 1 point de destin <span>si l'arme 5* que vous obtenez via les v\u0153ux n'est pas celle souhait\xE9e</span>.",
-      "Une fois suffisamment de points de destin accumul\xE9s, la prochaine arme 5* que vous obtiendrez via les v\u0153ux Incarnation divine sera celle choisie dans le Chemin divin.",
-      "Vos points de destin <span>se r\xE9initialisent lorsque vous obtenez une arme du Chemin divin</span> pendant ces v\u0153ux Incarnation divine.",
-      "Vous ne cumulez pas de points de destin si vous n'avez pas choisi d'arme vers laquelle vous frayer un chemin.",
-      "Vous pouvez modifier ou annuler votre s\xE9lection, <span>mais cela r\xE9initialisera vos points de destin d\xE9j\xE0 accumul\xE9s</span>.",
-      "<span>Les points de destin acccumul\xE9s lors de ces v\u0153ux Incarnation divine disparaissent lorsque ces v\u0153ux \xE9v\xE9nements prennent fin</span>."
-    ]
-  },
-  result: {
-    skip: "Passer",
-    meteorFailed: "L'animation Meteor n'a pas pu \xEAtre charg\xE9e",
-    "new": "Nouv.",
-    convertion: "Conversion",
-    title: "R\xE9sultat des v\u0153ux pour {item}"
-  }
-};
-const outfit = {
-  heading: "Skins",
-  "default": "Default",
-  setOutfit: "Appliquer le skin",
-  owned: "D\xE9j\xE0 poss\xE9d\xE9",
-  purchasePrompt: "Vous n'avez pas encore de personnage pour ce skin, \xEAtes-vous s\xFBr de vouloir acheter ce skin ?",
-  promptInfo: "Vous pouvez toujours utiliser ce skin apr\xE8s avoir obtenu le bon personnage.",
-  obtained: "Nouveau skin obtenu",
-  unlocked: "Skin d\xE9bloqu\xE9: {character}",
-  item: {
-    "5-star-outrider": {
-      name: "5-Star Outrider"
-    },
-    "favonian-fevotion": {
-      name: "Favonian Devotion"
-    },
-    "flowing-fate": {
-      name: "Flowing Fate"
-    },
-    "executor_s-thorns": {
-      name: "Executor's Thorns"
-    },
-    "sea-breeze-dandelion": {
-      name: "R\xEAve de la brise marine",
-      description: "Tenue d'\xE9t\xE9 de Jean. L\xE9g\xE8re et d\xE9contract\xE9e, mais pas moins \xE9l\xE9gante pour autant. Elle est parfaire pour un voyage \xE0 la mer."
-    },
-    "summertime-sparkle": {
-      name: "\xC9t\xE9 radieux",
-      description: "Tenue de plage de Barbara. La jolie mini-jupe d\xE9borde de vitalit\xE9 estivale et porte la fra\xEEcheur de l'oc\xE9an."
-    },
-    "opulent-splendor": {
-      name: "Splendeur opulente",
-      description: "Tenue formelle de Keqing. Dans la splendeur du Festival des lanternes, des fils ont \xE9t\xE9 tiss\xE9s pendant des jours de labeur pour assembler cette tenue du soir pleine de l\xE9g\xE8ret\xE9 et d'\xE9l\xE9gance."
-    },
-    "orchid_s-evening-gown": {
-      name: "Robe de soir\xE9e d'orchid\xE9es",
-      description: "Tenue formelle de Ningguang. La longue jupe bleue \xE9pouse ses formes \xE9l\xE9gantes et les ailes de papillons \xE0 ses chevilles ajoutent une touche a\xE9rienne."
-    },
-    "ein-immernachtstraum": {
-      name: "Songe de la nuit \xE9ternelle",
-      description: "Tenue c\xE9r\xE9moniale de Fischl. Que celle qui est noble conserve pour toujours son courage, sa sinc\xE9rit\xE9 et sa bont\xE9, de telle sorte qu'aucun mal ne puisse jamais l'atteindre."
-    },
-    "red-dead-of-night": {
-      name: "Nuit \xE9carlate",
-      description: "Une tenue que Diluc porte lorsqu'il part en mission secr\xE8te. Elle ressemble \xE0 une flamme dansante dans l'ombre dont les traces \xE9carlates hanteront les nuits des ennemis pour le restant de leurs jours."
-    },
-    "a-sobriquet-under-shade": {
-      name: "Sobriquet \xE0 l'ombre",
-      description: "Tenue que Lisa avait command\xE9e lors d'une nouvelle visite \xE0 Sumeru. D'un \xE9quilibre parfait entre praticit\xE9 et \xE9l\xE9gance, cette robe ressemble \xE0 l'uniforme qu'elle portait lorsqu'elle \xE9tudiait \xE0 l'Acad\xE9mie."
-    },
-    "springbloom-missive": {
-      name: "Missive de floraison printani\xE8re",
-      description: "Tenue de voyage d'Ayaka. Sa conception est bas\xE9e sur les robes fontainoises repr\xE9sent\xE9es dans les romans l\xE9gers et semble refl\xE9ter le style de vie des dames respectables qui r\xE9sident dans cette nation."
-    },
-    "blossoming-starlight": {
-      name: "Lumi\xE8re stellaire en fleurs",
-      description: "Une tenue exquise que Klee ne porte que pour les performances les plus importantes. Les couleurs sont brillantes, comme un g\xE2teau \xE0 la cr\xE8me d\xE9cor\xE9 de fleurs et couronn\xE9 de bougies \xE9carlates. Avec cette tenue, bonheur et sourires combleront vos aventures !"
-    },
-    "sailwind-shadow": {
-      name: "Ombre nautique",
-      description: "La tenue que Kaeya porte en jouant le Bandit au poignard. Bien qu'il s'agisse d'une tenue flamboyante con\xE7ue pour \xEAtre aussi accrocheuse que possible, elle n'est pas difficile \xE0 enfiler, bien qu'il faille un certain temps pour arranger tous les accessoires et son poignard."
-    }
-  }
-};
-const details = {
-  text: "D\xE9tails",
-  promotional: "Objets boost\xE9s",
-  itemlist: "Liste des objets",
-  increasedRate: "Taux d'obtention augment\xE9s !",
-  percentageDrop: "Taux d'obtention lors du tirage d'un objet {rarity}* : {percentage}",
-  wishDetails: "D\xE9tails",
-  probInfo: "Taux d'obtention de base d'un objet {rarity}* : {singlePercentage} (Garantie incluse : {avgPercentage})",
-  itemWishFor: "Liste d'objets disponibles par le biais des v\u0153ux :",
-  itemType: "Type",
-  itemName: "Nom",
-  beginnerInfo: "Pas de limtie de temps (Disparait apr\xE8s 20 v\u0153ux)",
-  limited: "Ev\xE9nement \xE0 dur\xE9e limit\xE9e",
-  permanent: "Permanent",
-  alert: "\u203B Ces v\u0153ux sont des {wishName}. Les v\u0153ux effectu\xE9s lors des {wishName}, ils ne sont pas cumulables avec les v\u0153ux effectu\xE9s lors d'autres types de v\u0153ux \xE9v\xE9nements.",
-  beginner: [
-    "Les v\u0153ux <span>pour les d\xE9butants</span> n'ont pas de limite de temps et sont disponibles pour les Voyageurs r\xE9cemment arriv\xE9s en Teyvat. Aucune personnage et aucune arme \xE9v\xE9nement ne sont disponibles. <br /> Dans cette banni\xE8re un lot de 10 v\u0153ux co\xFBte <span>20%</span> de pierres en moins, Et {character} et automatiquement inclus dans votre premier lot de 10 v\u0153ux , et votre second lot de 10 v\u0153ux vous garanti un <span>autre</span> personnage 4*! <br/> La banni\xE8re expire apr\xE8s <span>20</span> v\u0153ux effectu\xE9s. Apr\xE8s l'expiration de la banni\xE8re, la page disparait.",
-    "\u203B Dans les circonstances habituelles, les taux d'obention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.",
-    "\u3013 R\xE8gles \u3013",
-    "Taux d'obtention de base d'un objet 4* :<span> 0.600%</span> <br /> Base probability of winning 4-Star character = <span> 5.100%</span>; consolidated probability (incl. guarantee) = <span> 13.000%</span>;"
-  ],
-  standard: [
-    `Les v\u0153ux permanents "{bannerName}" sont disponibles de mani\xE8re illimit\xE9e dans le temps et vous permettent d'obtenir armes et personnages non exclusifs.<br/> Chaque s\xE9rie de 10 v\u0153ux vous <span>garantit</span> l'obtention d'au moins un objet 4* ou plus.`,
-    "\u203B Dans les circonstances habituelles, les taux d'obention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.",
-    "\u3013 R\xE8gles \u3013",
-    "Taux d'obtention de base d'un objet 5* : <span>0.600%</span>. Taux d'obtention de base d'un personnage 5* : <span>0.300%</span>. Taux d'obtention d'une arme 5* : <span>0.300%</span>. Taux d'obtention total d'un objet 5* (obtention garantie incluse) : <span>1.600%</span>. L'obtention d'un objet 5* est garantie au moins une fois tous les <span>90</span> v\u0153ux. <br> Taux d'obtention d'un objet 4* : <span>5.100%</span>. Taux d'obtention de base d'un personnage 4* :  <span>2.550%</span>. Taux d'obtention de base d'une arme 4* : <span>2.550%</span>. Taux d'obention total d'un objet 4* (obtention garantie incluse) : <span>13.000%</span>. L'obtention d'un objet 4* ou plus est garantie au moins une fois tous les <span>10</span> v\u0153ux effectu\xE9s. Le taux d'obtention d'un objet 4* gr\xE2ce \xE0 la garantie d'obtention est de <span>99.400%</span> et le taux d'obtention d'un objet 5* gr\xE2ce \xE0 la garantie d'obtention est de <span>0.600%</span>. "
-  ],
-  events: [
-    `Les V\u0153ux \xE9v\xE9nements "{bannerName}" sont d\xE9sormais disponibles! Les taux d'obtention du personnage 5* suivant : {featuredCharacter} et des personnages 4* suivants :  {rateupCharacters} sont <span>fortement augment\xE9s</span>, alors tentez votre chance !`,
-    "\u203B Dans les circonstances habituelles, les taux d'obention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.",
-    "\u3013 R\xE8gles \u3013",
-    "[Objets 5*]",
-    "Taux d'obtention d'un personnage 5* : <span>0.600%</span>. Taux d'obtention total (obtention garantie incluse) : <span>1.600%</span>. L'obtention d'un personnage 5* est garantie au moins une fois tous les <span>90</span> v\u0153ux.<br/> Lorsque vous tirez un personnage 5* pour la premi\xE8re fois, il y a <span>50.000%</span> de chance qu'il s'agisse de {featuredCharacter}. Si ce n'est pas le cas, le personnage sera donc <span>garanti</span> lors de votre prochain tirage d'un personnage 5*.",
-    "Objets 4*",
-    "Taux d'obtention d'un objet 4* : <span>5.100%</span>. Taux d'obtention de base d'un personnage 4* : <span>2.550%</span>, Taux d'obtention de base d'une arme 4* : <span>2.550%</span>; Taux d'obtention total d'un objet 4* (obtention garantie incluse) : <span>13.000%</span>. L'obtention d'un objet 4* ou plus est garantie au moins une fois tous les <span>10</span> v\u0153ux effectu\xE9s. Le taux d'obtention d'un objet 4* gr\xE2ce \xE0 la garantie d'obtention est de <span>99.400%</span> et le taux d'obtention d'un objet 5* gr\xE2ce \xE0 la garantie d'obtention est de <span>0.600%</span>.<br/> Lorsque vous tirez un objet 4* pour la premi\xE8re fois, il y a <span>50.000%</span> de chance qu'il s'agisse de {rateupCharacters}. Si ce n'est pas le cas, l'un de ces personnages sera donc <span>garanti</span> lors de votre prochain tirage d'un objet 4*. Si vous obtenez un objet 4* par le biais d'un v\u0153u, la probabilt\xE9 d'obtention de chaque personnage 4* \xE0 la une est \xE9gale."
-  ],
-  weapons: [
-    `Les v\u0153ux \xE9v\xE9nements "{bannerName}" sont d\xE9sormais disponibles! Les taux d'obtention des armes 5* <span>exclusives</span> suivantes :{featuredWeapon1} et {featuredWeapon2}, des armes 4* <span>exclusives</span> suivantes {rateupWeapons} sont <span>fortement augment\xE9s</span>, alors tentez votre chance! <br/> <span> \u203B Les armes exclusives cit\xE9es ci-dessus ne seront pas disponibles  dans les v\u0153ux permanents "Envie de voyage."</span>`,
-    "\u203B Dans les circonstances habituelles, les taux d'obtention de base des personnages et des armes sont r\xE9partis \xE9quitablement. Veuillez vous r\xE9f\xE9rer aux r\xE8gles correspondantes en cas d'une augmentation du taux d'obtention ou d'une garantie d'obtention.",
-    "\u3013 R\xE8gles \u3013",
-    "[Objets 5*]",
-    `Taux d'obtention d'une arme 5* :  <span>0.700%</span>. Taux d'obtention total (obtention garantie incluse) :  <span>1.850%</span>. L'obtention d'une arme 5* est garantie au moins une fois tous les <span>80</span> v\u0153ux.<br/> Lorsque vous tirez une arme 5* pour la premi\xE8re fois, il y a <span>75.000%</span> de chance qu'il s'agisse de {featuredWeapon1} ou {featuredWeapon2}. Si ce n'est pas le cas, l'une de ces armes sera donc <span>garantie</span> lors de votre prochain tirage d'une arme 5*. Si vous obtenez une arme 5* par le biais d'un v\u0153u sans avoir atteint le nombre de points de destin max, la probabilit\xE9 d'obtention de chaque arme 5* \xE0 la une est \xE9gale.<br/> Au cours de ces V\u0153ux \xE9v\xE9nements "{bannerName}", vous pouvez vous frayer une voie vers l'arme 5* \xE0 la une que vous souhaitez obtenir avec le m\xE9canisme de  "Chemin divin.". Le choix de l'arme ne sera valide que pendant la dur\xE9e de ces V\u0153ux \xE9v\xE9nements "{bannerName}". <br/> Au cours de ces V\u0153ux \xE9v\xE9nements "{bannerName}", lorsque vous obtenez une arme 5* apr\xE8s avoir utilsi\xE9 le "Chemin divin" et que cette arme 5* obtenue n'est pas votre arme choisie, 1 point de destin vous sera accord\xE9. Une fois le <span>nombre maximum</span> de points de destin atteint, l'arme 5* que vous avez pr\xE9c\xE9demment choisie sera donc <span>garantie</span> lors de votre prochain tirage d'une arme 5*. Apr\xE8s avoir obtenu l'arme choisie, le nombre de points de destin max sera r\xE9initialis\xE9 \xE0 <span>0</span>, que vous ayez atteint ou non le nombre de points de destin max, et vous devrez les accumuler de nouveau. Si vous n'utilisez pas le "Chemin divin" pour vous frayer une voie vers une arme de votre choix, <span>aucun</span> point de destin ne vous sera accord\xE9. <br/> Il est possible de modifier ou d'annuler votre choix d'arme. Une fois modifi\xE9 ou annul\xE9, vos points de destin seront <span>r\xE9initialis\xE9s</span> par ces actions et vous devrez en cumuler \xE0 nouveau. <br/> \u203B Les points de destin obtenus au cours de ces v\u0153ux ne seront valables que pendant cette p\xE9riode de V\u0153ux \xE9v\xE9n\xE9ments "Incarnation divine". Apr\xE8s la fin de ces v\u0153ux, les points de destin seront r\xE9initialis\xE9s et vous devrez en cumuler \xE0 nouveau.`,
-    "[Objets 4*]",
-    "Taux d'obtention de base d'un objet 4* : <span>6.000%</span>. Taux d'obtention de base d'un personnage 4* : <span>3.000%</span>. Taux d'obtention de base d'une arme 4* : <span>3.000%</span>. Taux d'obtention total d'un objet 4* (obtention garantie incluse) :  <span>14.500%</span>. L'obtention d'un objet 4* ou plus est garantie au moins une fois tous les <span>10</span> v\u0153ux effectu\xE9s. Le taux d'obtention d'un objet 4* gr\xE2ce \xE0 la garantie d'obtention est de <span>99.300%</span> et le taux d'obtention d'un objet 5* gr\xE2ce \xE0 la garantie d'obtention est de <span>0.700%</span>. <br/> Lorsque vous tirez un objet 4* pour la premi\xE8re fois, il y a <span>75.000%</span> de chance qu'il s'agisse de {rateupWeapons}. Si ce n'est pas le cas, l'une de ces armes sera donc <span>garantie</span> lors de votre prochain tirage d'un objet 4*. Si vous obtenez une arme 4* par le biais d'un v\u0153u , la probabilit\xE9 de chaque arme 4* \xE0 la une est \xE9gale."
-  ],
-  convertion: {
-    fiveStar: "Les armes 5* obtenues par le biais de ces v\u0153ux s'accompagnent de 10 {starglitter}.",
-    fourStar: "Les armes 4* en double vous rapportent 2 {starglitter},",
-    threeStar: " et les armes 3*, 15 {stardust}."
-  },
-  duplicate: {
-    heading: "\u3013 Personnages en double \u3013",
-    text: "Lorsque vous obtenez un personnage {rarity}* que vous poss\xE9dez d\xE9j\xE0 (par le biais de v\u0153ux, d'achat en boutique, en r\xE9compense ou par d'autres moyens): De la 2e \xE0 la 7e obtention, vous obtenez 1 {stellaFortuna} et {constBonus} {starglitter}, puis \xE0 partir de la 8e obtention, le personnage sera converti en {fullConstBonus} {starglitter}."
-  }
-};
-const history = {
-  title: "Historique des v\u0153ux",
-  text: "Historique",
-  resetButton: "Effacer",
-  resetPromptTitle: "Effacer l'historique ?",
-  resetPrompt: 'Cela va aussi supprimer tous les personnages et toutes les armes li\xE9es \xE0 la banni\xE8re "{bannerName}" de votre inventaire. <br /> Voulez-vous vraiment r\xE9initialiser ?',
-  resetSuccess: "R\xE9initialisation r\xE9ussie !",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "S\xE9lectionner le type de v\u0153u :",
-  disclaimer: "Nous ne sauvegardons jamais vos donn\xE9es en ligne. Toutes les donn\xE9es sont stock\xE9es dans IndexedDB, ce qui veut dire que les donn\xE9es sont sauvegard\xE9es dans votre navigateur. Elle ne seront pas supprimm\xE9es tant que vous n'utilisez pas le bouton de suppression/r\xE9initialisation ou tant que vous ne videz pas le cache de votre navigateur.",
-  currentPity: "Current Pity :",
-  totalPull: "Total Pull :",
-  totalSpend: "Total d\xE9pens\xE9 :",
-  filterTxt: "Filtrer",
-  filter: "{rarity} Etoiles",
-  filterAll: "All",
-  pity: "Pity",
-  timeReceived: "Time Received",
-  waiting: "En attente",
-  noData: "Aucune donn\xE9e disponible.",
-  untracked: "Non suivi",
-  item: "Item",
-  win: "50/50 gagn\xE9",
-  lose: "50/50 perdu",
-  guaranteed: "Garanti",
-  selected: "Arme s\xE9lectionn\xE9e",
-  olderLayout: "Ancienne mise en page",
-  switchv2: "Changer pour la V2"
-};
-const shop = {
-  text: "Boutique",
-  paimonBargains: "\xC9change astral",
-  fateNeeded: "Il manque {rollQty} {currency} requis.",
-  primoNeeded: "Acheter avec {primoPrice} primo-gemmes ?",
-  purchaseUpto: "1 disponible(s)",
-  purchaseConfirm: "Confirmation d'achat",
-  exchangeHeading: "Echange contre objet",
-  purchaseHeading: "Objet",
-  purchaseButton: "Acheter",
-  pay: "Payer",
-  product: "Produit",
-  consume: "Consommer",
-  selectPayment: "S\xE9lectionnez le moyen de paiement",
-  unrealWallet: "Portefeuille irr\xE9el",
-  convertPrimo: " Convertir automatiquement en primo-gemmes ?",
-  proceedPayment: "Payer",
-  qty: "Quantit\xE9",
-  insufficient: "Vous n'avez pas assez de ressources.",
-  crystalTopup: "Recharge cristaux",
-  initialBonus: "Bonus d'achat initial",
-  bonus: "Bonus",
-  buyGenesisHeading: "Acheter des Cristaux primaires",
-  recomendedHeading: "Produits recommand\xE9s",
-  paimonHeading: "Echange astral",
-  welkinNote: "Peut \xEAtre achet\xE9 plusieurs fois",
-  limitedOffer: "Offre \xE0 dur\xE9e limit\xE9e",
-  noLimitTime: "Aucun objet \xE0 dur\xE9e limit\xE9e disponible",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "Faveur de l'astre de la nuit",
-    newOutfit: "Nouveaux skins",
-    dayRemaining: "Jours restants: {days}",
-    alreadyClaimed: "(R\xE9cup\xE9r\xE9 aujourd'hui)",
-    instantlyGet: "Inclus avec l'achat",
-    dailyGift: "et chaque jour :",
-    obtainTotal: "* Valide pendant 30 jours!<br> Obtenez un total de {totalGenesis} cristaux primaires et {totalPrimo} primo-gemmes!",
-    claimingBlessing: "Cliquez pour r\xE9cup\xE9rer votre r\xE9compense journali\xE8re de Faveur de l'astre de la nuit",
-    issuedPurchase: "Re\xE7us lors de l'achat",
-    collect: "R\xE9cup\xE9rez votre r\xE9compense journali\xE8re pendant 30 jours"
-  },
-  exchange: {
-    starglitter: "Echange Ast\xE9ries",
-    stardust: "Echange Astrions",
-    primogem: "Echange primo-gemmes"
-  },
-  item: {
-    genesis: "Cristaux primaires",
-    primogem: "Primo-gemme",
-    intertwined: "Pierre de la fatalit\xE9",
-    acquaint: "Pierre de la destin\xE9e",
-    starglitter: "ast\xE9ries libres",
-    stardust: "astrion libres"
-  },
-  description: {
-    intertwined: "Une graine du destin qui relie les r\xEAves. La lueur de la pierre de la fatalit\xE9 peut faire s'entrelacer les sorts qui ne devraient pas se croiser. C'est gr\xE2ce \xE0 cette lueur que les \xE9toiles peuvent former l'image de vote c\u0153ur.",
-    acquaint: "Une graine d'espoir qui illumine le ciel \xE9toil\xE9. Peu importe la distance qui les s\xE9pare l'un de l'autre, ceux qui sont destin\xE9s \xE0 se rencontrer seront guid\xE9s par la lueur de la pierre de la fatalit\xE9 et se retrouveront enfin sous le ciel \xE9toil\xE9."
-  }
-};
-const inventory = {
-  text: "Inventaire",
-  unsetOutfit: "Retirer un skin",
-  setOutfit: "Appliquer un skin sur un personnage",
-  refinement: "Raffinement {count}",
-  constellation: "Constellation {count}",
-  extra: "{count} Extra",
-  firstSummon: "Premi\xE8re invocation le : {date}",
-  notOwned: "Non poss\xE9d\xE9",
-  sort: "Trier",
-  rarity: "Raret\xE9",
-  name: "Nom",
-  quantity: "Quantit\xE9",
-  element: "El\xE9ment",
-  release: "Date de sortie",
-  type: "Type",
-  owned: "Poss\xE9d\xE9",
-  showAllOption: "Afficher tous/toutes les {item}s"
-};
-const menu = {
-  no: "Non",
-  yes: "Oui",
-  text: "Menu",
-  feedback: "Feedback",
-  options: "Options",
-  updates: "Historique des mises \xE0 jour",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "Langue",
-  currency: "Monnaie",
-  fates: "Nombre de V\u0153ux",
-  unlimited: "Illimit\xE9",
-  manual: "Saisie manuelle",
-  mute: "D\xE9sactiver la musique et les effets sonores",
-  switchBanner: "Changer de banni\xE8re",
-  showAllitems: "Afficher tous les objets dans l'inventaire",
-  autoskip: "Passer automatiquement le Splash Art",
-  animatedbg: "Arri\xE8re-plan anim\xE9",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "Effacer les donn\xE9es et restaurer les valeurs par d\xE9faut",
-  resetTitle: "R\xE9initialisation d'usine",
-  rotate: "Tourner pour une meilleure exp\xE9rience",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Nettoyer le cache ( {size} ) ? <small> Vous devrez re-t\xE9l\xE9charger toutes les ressources en cache apr\xE8s cette ation! </small>",
-  resetButton: "R\xE9initialier maintenant",
-  resetPrompt: "Voulez-vous vraiment supprimer <strong> Toutes les Donn\xE9es </strong> et restaurer l'\xE9tat par d\xE9faut?",
-  resetSuccess: "R\xE9initialisation r\xE9ussie",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Obtenez-en une nouvelle ici !",
-  noKey: "Vous n'avez pas de cl\xE9 ?",
-  verifyFail: "V\xE9rification de l'AdKey \xE9chou\xE9e, V\xE9rifieez votre connexion !",
-  invalidKey: "Votre cl\xE9 est invalide",
-  keyExpired1: "Cl\xE9 expir\xE9e !",
-  keyExpired2: 'Votre cl\xE9: "{key}" est expir\xE9e depuis le {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Entrez la cl\xE9",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* Je suis d\xE9sol\xE9 pour les publicit\xE9s. En fait, je ne veux pas g\xE2cher votre exp\xE9rience de navigation, mais je n'ai pas d'\xE9quipe ou de sponsor pour maintenir cette application en vie. Si vous ne voulez rien d\xE9penser, vous pouvez toujours activer le bloqueur de publicit\xE9 ou simplement utiliser des DNS personnalis\xE9s, je ne vous l'interdirai pas."
-};
-const frFR = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  frFR as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/hooks.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/hooks.js
deleted file mode 100644
index 8b137891..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/hooks.js
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/id-ID.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/id-ID.js
deleted file mode 100644
index 6ed0cec8..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/id-ID.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Simulator Permohonan Genshin Impact";
-const character = "Karakter";
-const weapon = "Senjata";
-const vision = "Vision";
-const anemo = "Anemo";
-const cryo = "Cryo";
-const dendro = "Dendro";
-const electro = "Electro";
-const hydro = "Hydro";
-const geo = "Geo";
-const pyro = "Pyro";
-const bow = "Bow";
-const catalyst = "Catalyst";
-const claymore = "Claymore";
-const sword = "Sword";
-const polearm = "Polearm";
-const extra = "Extra";
-const obtained = "Mendapatkan";
-const waiting = "Tunggu";
-const connectionFailed = "Koneksi Gagal!";
-const confirmButton = "OK";
-const cancelButton = "Batalkan";
-const disclaimer = "Semua aset yang digunakan di situs ini adalah milik Mihoyo.";
-const fanmade = "Aplikasi ini murni buatan Fan, enjoy aja!";
-const pressToContinue = "Tekan di area kosong untuk melanjutkan";
-const installInstruction = "Cara menginstall ke beranda Smartphone/Desktop";
-const share = "Bagikan";
-const screenshot = "Ambil Gambar";
-const capturing = "Memproses";
-const rewardFirstShare = "Hadiah membagikan pertama kali : {qty}";
-const version = "Versi";
-const donate = "Donasi";
-const banner = {
-  beginner: "Permohonan Pemula",
-  wanderlust: "Wanderlust Invocation",
-  "epitome-invocation": "Epitome Invocation",
-  "adrift-in-the-harbor": "Misteri Keabadian",
-  "auric-blaze": "Kilauan Bara Api Surya",
-  "azure-excursion": "Ketenangan Riak Air",
-  "ballad-in-goblets": "Syair Dalam Piala",
-  "born-of-ocean-swell": "Tarian Gulungan Ombak",
-  "caution-in-confidence": "Perintah dan Siasat",
-  "chanson-of-many-waters": "Kidung Semesta Perairan",
-  "conjuring-chiaroscuro": "Muslihat Bayang dan Terang",
-  "dance-of-lantern": "Tarian Lentera",
-  "decree-of-the-deeps": "Titah di Kedalaman Lautan",
-  "discerner-of-enigmas": "Sang Pengungkap Misteri",
-  "drifting-luminescence": "Mutiara di Atas Laut",
-  "everbloom-violet": "Lembayung Sakura",
-  "farewell-of-snezhnaya": "Sampai Jumpa Snezhnaya",
-  "from-ashes-reborn": "Inkarnasi Sisa Bara Api",
-  "gentry-of-hermitage": "Bangsawan dan Pertapa",
-  "immaculate-pulse": "Hati Semurni Mutiara",
-  "in-the-name-of-the-rosula": "Ikrar Sekuntum Mawar",
-  "invitation-to-mundane-life": "Panggilan Cahaya",
-  "leaves-in-the-wind": "Dedaunan di Tengah Angin",
-  "moment-of-bloom": "Bunga Bersemi",
-  "oni_s-royale": "Perjamuan Oni",
-  "reign-of-serenity": "Sang Penguasa Tunggal",
-  "secretum-secretorum": "Enigma Kehidupan",
-  "sparkling-steps": "Percikan Langkah Api",
-  "tapestry-of-golden-flames": "Pijar Api di Angkasa",
-  "tempestuous-destiny": "Lilitan Takdir Menggelora",
-  "the-heron_s-court": "Pelataran Bangau Putih",
-  "the-moongrass-enlightenment": "Anugerah Kebijaksanaan Rumput Rembulan",
-  "the-transcendent-one-returns": "Kembali ke Dunia Fana",
-  "twilight-arbiter": "Hakim Senja",
-  "twirling-lotus": "Tarian Limbai Teratai",
-  "viridescent-vigil": "Langkah Suaka Rimba"
-};
-const editor = {
-  bannerConfig: "Konfigurasi {banner}",
-  baseRate: "Probabilitas Dasar {rarity}\u2605:",
-  maxPity: "Piti Maksimal {rarity}\u2605:",
-  hardPity: "Tingkatkan probabilitas {rarity}\u2605 pada piti:",
-  currentPity: "Pity {rarity}\u2605 saat ini",
-  winRate: "Probabilitas mendapat item RateUP:",
-  charRate: "Probabilitas mendapat Karakter dibanding Senjata",
-  nonRateup: "(Item 4\u2605 saat kalah)",
-  selectedRate: "Probabilitas mendapat senjata terpilih:",
-  guaranteedSystem: "Sistem Jaminan",
-  backToDefault: "Pengaturan Default",
-  resetPrompt: 'Apakah kamu yakin akan mereset pengaturan probabilitas untuk <b>"{banner}"</b>?',
-  "default": "Aktif",
-  never: "NonAktif",
-  always: "Selalu"
-};
-const customBanner = {
-  title: "Buat Bannermu Sendiri",
-  deletePrompt: "Kamu yakin untuk menghapus banner ini ?",
-  ownerDeleteNote: "Jika kamu telah membagikan banner ini secara publik, Traveler tidak akan dapat mengakses banner ini lagi",
-  userDeleteNote: "Riwayat permohonan tidak akan dihapus dengan aksi ini, tetapi kamu tidak akan bisa melakukan permohonan pada banner ini lagi",
-  retry: "Ulangi",
-  findBanner: "Mencari Banner",
-  networkError: "Jaringan Eror, Cek Koneksi kamu!",
-  bannerNotFound: "Banner tidak ditemukan, <u>Banner ID</u> salah atau mungkin telah dihapus.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Mengidentifikasi Banner",
-  loadOwnedBanner: 'Kamu adalah kreator dari banner "{ownedBanner}", data banner yang tersimpan pada perangkatmu akan digunakan untuk setiap permohonan yang kamu lakukan',
-  loadReady: '"{banner}" susah siap',
-  uploading: "Sedang mengunggah {item}",
-  uploadFailed: "Gagal mengunggah, silahkan coba beberapa saat lagi!",
-  close: "Tutup",
-  almostDone: "Hampir Selesai",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Atur Koordinat",
-  next: "Selanjutnya",
-  move: "Ubah Posisi",
-  changeSplashArt: "Ubah Splash Art",
-  adjustSplashArt: "Sesuaikan Splash Art",
-  dropHere: "Drop di sini!",
-  preview: "Preview Banner",
-  generateImage: "Buat Gambar Preview",
-  notAnImage: "Content harus berupa Gambar",
-  imageTooLarge: "Ukuran gambar terlalu besar, maksimal: {maxSize}",
-  faceIcon: "Gambar Wajah",
-  addBanner: "Tambah Banner",
-  "delete": "Hapus",
-  deleteFailed: "Gagal Menghapus",
-  bannerRemoved: "Banner Berhasil Dihapus",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Informasi Banner",
-  bannerName: "Nama Banner",
-  charName: "Nama Karakter",
-  charTitle: "Gelar Karakter",
-  watermark: "Watermark",
-  completeAllField: "Isi semua kolom yang tersedia!",
-  finishAndWish: "Finish & Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Bagi",
-  rateupChar: "Karakter Rate Up",
-  yourBanners: "Banner Milikmu",
-  createBanner: "Buat Bannermu Sendiri",
-  limitation: "Kamu bukan Member, Hapus beberapa banner untuk mengaktifkan fitur Edit",
-  memberToUnlock: "Jadilah Member untuk menambah lebih banyak Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Konten Tidak Pantas!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} akan diimport ke dalam aplikasi, silahkan pilih aksi yang ingin kamu terapkan!",
-  mergeAction: "Gabung Data <small>Otomatis menghapus item duplikat dan menyisipkan item baru</small>",
-  replaceAction: "Ganti Data <small> Hapus dan ganti seluruh data saat ini. </small>",
-  dropFiles: "Drop berkas di sini",
-  autoExport: "Auto Export",
-  destination: "Target",
-  lastExport: "Export Terakhir",
-  desNotFound: "Tidak dapat menemukan Target Export, silahkan menekan tombol export kembali!"
-};
-const wish = {
-  wishTitle: "Permohonan",
-  rollButton: "Mohon {count}",
-  stellaFortuna: "Stella Fortuna",
-  loadFailed: "Gagal Memuat Banner! <br /> Silahkan ganti banner atau hubungkan kembali ke internet untuk menghindari error!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banner",
-    allBanner: "Semua Banner",
-    previous: "Banner Terdahulu",
-    findBanner: "Cari Banner",
-    group: "Grup",
-    beginner: "Permohonan Pemula",
-    "character-event": "Event Permohonan Karakter",
-    "weapon-event": "Permohonan Senjata",
-    standard: "Permohonan Standar",
-    novice: "Permohonan Pemula",
-    wishDescription: "Setiap 10 kali Permohonan pasti mendapatkan item 4\u2605 ke atas",
-    up: "UP!",
-    beginnerSet: "10-set diskon 20%. 10-set pertama pasti mendapatkan {character}.",
-    beginnerNote: '"Aku akan selalu ingat etika seorang pelayan."',
-    beginnerChance: "Sisa Kesempatan: {chances}",
-    standardNote: "Permohonan Standar tidak memiliki batas waktu.",
-    allWeaponTypes: "Semua tipe senjata",
-    etc: "dll.",
-    probIncreased: "Kesempatan untuk memperoleh ditingkatkan !",
-    eventNote: "Karakter 5\u2605 Eksklusif hanya dapat diperoleh di Event Permohonan tertentu selama periode event.",
-    viewDetails: "Tekan Rincian untuk info lebih lanjut."
-  },
-  epitomizedPath: {
-    text: "Epitomized Path",
-    fatePoint: "Poin Takdir",
-    cancelPrompt: "Apakah kamu ingin membatalkan pilihanmu saat ini ?",
-    cancelDesc: "Pembatalan akan me-reset akumulasi poin takdir",
-    selectWeapon: "Senjata yang Dipilih",
-    chartCourseOf: "Pilih {target}",
-    cancelCourse: "Batalkan Pilihan",
-    chartCourse: "Pilih",
-    courseSetFor: "Pilihan Ditentukan untuk: {selectedCourse}",
-    description: [
-      '"Epitomized Path" adalah sistem yang termasuk dalam "Epitome Invocation" ini:',
-      "Setelah kamu menentukan senjata pilihanmu, jika kamu <span> menerima senjata bintang 5 yang bukan pilihanmu</span>, kamu akan mendapatkan 1 poin takdir.",
-      'Setelah kamu mengumpulkan Poin Takdir yang cukup, senjata bintang 5 berikutnya akan menjadi senjata yang kamu pilih melalui "Epitomized Path"',
-      'Point Takdir kamu <span> akan di-reset setelah mendapatkan senjata "Epitomized Path"</span> dalam "Epitome Invocation" ini.',
-      "Jika kamu tidak memilih senjata, Poin Takdir tidak akan terkumpul dari Permohonanmu",
-      "Kamu dapat mengubah atau membatalkan pilihanmu, tetapi tindakan ini <span> akan me-reset Poin Takdir yang telah terkumpul. </span>",
-      '<span>Saat "Epitome Invocation" ini berakhir, Poin Takdir yang terkumpul juga akan di-reset</span>.'
-    ]
-  },
-  result: {
-    skip: "Lewati",
-    meteorFailed: "Animasi meteor gagal dimuat",
-    "new": "Baru",
-    convertion: "Konversi",
-    title: "Hasil Permohonan untuk {item} et al"
-  }
-};
-const outfit = {
-  heading: "Kostum Karakter",
-  "default": "Default",
-  setOutfit: "Atur Kostum",
-  owned: "Sudah Dimiliki",
-  purchasePrompt: "Kamu belum memiliki karakter untuk kostum ini, apakah kamu yakin ingin membeli kostum ini?",
-  promptInfo: "Kamu masih bisa menggunakan kostum ini setelah mendapatkan karakter yang sesuai.",
-  obtained: "Mendapatkan Kostum Baru",
-  unlocked: "Berhasil membuka kostum untuk {character}!",
-  item: {
-    "5-star-outrider": {
-      name: "5-Star Outrider"
-    },
-    "favonian-fevotion": {
-      name: "Favonian Devotion"
-    },
-    "flowing-fate": {
-      name: "Flowing Fate"
-    },
-    "executor_s-thorns": {
-      name: "Executor's Thorns"
-    },
-    "sea-breeze-dandelion": {
-      name: "Sea Breeze Dandelion",
-      description: "Pakaian yang dikenakan Jean saat musim panas. Terlihat nyaman dan santai, namun tetap elegan, sangat cocok dikenakan saat bepergian ke pantai."
-    },
-    "summertime-sparkle": {
-      name: "Summertime Sparkle",
-      description: "Pakaian pantai Barbara. Rok pendek yang indah penuh dengan vitalitas musim panas dan seolah membawa suasana udara segar dari laut."
-    },
-    "opulent-splendor": {
-      name: "Opulent Splendor",
-      description: "Pakaian resmi Keqing. Ia hadir di tengah pagi yang indah pada momen Lantern Rite. Benang yang sudah dirajut begitu lama oleh jerih payah ini, kemudian terjalin menjadi penampilan yang sederhana namun mengesankan."
-    },
-    "orchid_s-evening-gown": {
-      name: "Orchid's Evening Gown",
-      description: "Pakaian formal Ningguang. Rok cyan panjang mengikuti lekuk tubuhnya yang elegan, dan sayap kupu-kupu di pergelangan kakinya menambahkan sentuhan anggun pada pakaian ini."
-    },
-    "ein-immernachtstraum": {
-      name: "Ein Immernachtstraum",
-      description: "Pakaian upacara untuk Prinzessin. Semoga dia yang hatinya mulia selalu mempunyai keberanian, ketulusan dan kebaikan selamanya di dalam hatinya, dan agar tidak ada kejahatan yang bisa mengalahkannya."
-    },
-    "red-dead-of-night": {
-      name: "Red Dead of Night",
-      description: "Salah satu pakaian Diluc yang dia pakai saat beroperasi dalam rahasia, bagaikan kobaran api dalam gelapnya bayangan. Bekas luka berwarna merah merona di ujung penglihatan para musuh adalah mimpi buruk di sisa hidup mereka."
-    },
-    "a-sobriquet-under-shade": {
-      name: "A Sobriquet Under Shade",
-      description: "Kostum Lisa yang dipesankan oleh seseorang saat dirinya berkunjung kembali ke Sumeru. Keseimbangan sempurna antara kepraktisan dan keanggunan, modelnya lumayan mirip dengan seragam lamanya ketika masih belajar di Akademiya dulu."
-    },
-    "springbloom-missive": {
-      name: "Springbloom Missive",
-      description: "Kostum perjalanan Kamisato Ayaka. Gaun yang dirancang mengikuti model gaun para wanita Fontaine dalam ilustrasi novel ringan, yang menunjukkan sekilas gaya hidup para wanita terhormat di sana."
-    },
-    "blossoming-starlight": {
-      name: "Blossoming Starlight",
-      description: "Kostum yang dikenakan Klee hanya untuk pertunjukan penting. Warnanya sangat indah, seperti kue yang dihiasi dengan bunga-bunga krim dan lilin merah yang menawan. Dengan mengenakannya, dapat membawa kebahagiaan dan senyuman dalam petualangannya ke seluruh penjuru."
-    },
-    "sailwind-shadow": {
-      name: "Sailwind Shadow",
-      description: 'Kostum Kaeya yang dikenakan saat memerankan "Bandit Belati". Desain kostum ini sengaja dibuat agar terlihat sangat mencolok. Tapi mengenakannya pun tidak sulit, malahan aksesoris lain dan belatinya yang lebih memakan waktu saat dikenakan.'
-    }
-  }
-};
-const details = {
-  text: "Rincian",
-  promotional: "Item UP",
-  itemlist: "Daftar Item",
-  increasedRate: "Persentase Perolehan Meningkat",
-  percentageDrop: "Kemungkinan dari Persentase Perolehan {rarity}\u2605: {percentage}",
-  wishDetails: "Rincian Permohonan",
-  probInfo: "Persentase Dasar Perolehan Item {rarity}\u2605: {singlePercentage} (Termasuk Jaminan: {avgPercentage})",
-  itemWishFor: "Daftar Item Permohonan :",
-  itemType: "Jenis Item",
-  itemName: "Nama Item",
-  beginnerInfo: "Tanpa Batas Waktu (Berakhir setelah 20 Permohonan)",
-  limited: "Event Terbatas",
-  permanent: "Permanen",
-  alert: "\u203B Permohonan ini termasuk {wishName}. Hitungan jaminan Permohonan pada event ini hanya diakumulasi untuk kategori {wishName} dan terpisah dari hitungan jaminan Permohonan lainnya",
-  beginner: [
-    "Permohonan <span> Pemula </span> tidak memiliki batas waktu dan ditujukan untuk pengembara baru yang baru saja mendarat di Teyvat. Menyediakan karakter dan senjata Non-promosi. <br /> pada Permohonan Pemula, permohonan \xD710 mendapat pengurangan biaya <span> 20%</span> lebih rendah menggunakan Acquaint Fate, dan \xD710 permohonan pertama termasuk jaminan {character}, dan \xD710 permohonan kedua termasuk min. character 4\u2605 <span>lainnya</span>! Permohonan Pemula akan berakhir setelah <span> 20 </span> percobaan. Setelah permohonan berakhir, halaman ini akan berhenti ditampilkan",
-    "\u203B Dalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.",
-    "\u3013Ketentuan\u3013",
-    "Persentase dasar untuk mendapatkan item 5\u2605: <span>0,600%</span>; Persentase dasar untuk mendapatkan item 4\u2605: <span>5,100%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan): <span>13,000%</span>;"
-  ],
-  standard: [
-    '"{bannerName}" adalah Permohonan Standar tanpa batas waktu di mana Karakter dan Senjata non-eksklusif tersedia. <br/>Pada Permohonan ini, setiap 10 kali Permohonan, <span>dijamin</span> akan memberikan sebuah item 4\u2605 ke atas.',
-    "\u203B Dalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.",
-    "\u3013Ketentuan\u3013",
-    "Persentase dasar untuk mendapatkan item 5\u2605: <span>0,600%</span>; persentase dasar untuk mendapatkan Karakter 5\u2605: <span>0,300%</span>, persentase dasar untuk mendapatkan Senjata 5\u2605: <span>0,300%</span>; persentase keseluruhan untuk mendapatkan item 5\u2605 (termasuk jaminan): <span>1,600%</span>. Dijamin mendapatkan item 5\u2605 setidaknya satu kali setiap <span>90</span> kali Permohonan. <br/> Persentase dasar untuk mendapatkan item 4\u2605: <span>5,100%</span>; persentase dasar untuk mendapatkan Karakter 4\u2605: <span>2,550%</span>, persentase dasar untuk mendapatkan Senjata 4\u2605: <span>2,550%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan): <span>13,000%</span>. Dijamin mendapatkan item 4\u2605 ke atas setidaknya satu kali setiap <span>10</span> kali Permohonan. Persentase perolehan item 4\u2605 dari jaminan adalah <span>99,400%</span>, persentase perolehan item 5\u2605 dari jaminan adalah <span>0,600%</span>"
-  ],
-  events: [
-    'Event Permohonan - {bannerName} telah dimulai. Selama Event Permohonan, persentase perolehan Karakter 5\u2605 {featuredCharacter},Karakter 4\u2605 {rateupCharacters} <span> meningkat drastis! </span> <br /> <span> \u203BKarakter Eksklusif di atas tidak akan masuk ke Permohonan Standar "Wanderlust Invocation". </span>',
-    "\u203BDalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.",
-    "\u3013Ketentuan\u3013",
-    "[Item 5\u2605]",
-    "Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan Karakter 5\u2605: <span>0,600%</span>; persentase keseluruhan (termasuk jaminan): <span>1,600%</span>. Dijamin mendapatkan Karakter 5\u2605 setidaknya satu kali setiap <span>90</span> kali Permohonan. Saat kamu mendapatkan Karakter 5\u2605 dari Permohonan, ada <span>50,000%</span> kemungkinan Karakter tersebut adalah Karakter UP event ini: {featuredCharacter}. Jika Karakter 5\u2605 pertama yang kamu dapatkan dari event ini bukan Karakter UP, Karakter 5\u2605 yang kamu peroleh selanjutnya dijamin adalah Karakter UP.",
-    "[Item 4\u2605]",
-    "Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan item 4\u2605: <span>5,100%</span>; persentase dasar untuk mendapatkan Karakter 4\u2605: <span>2,550%</span>, persentase dasar untuk mendapatkan Senjata 4\u2605: <span>2,550%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan): <span>13,000%</span>. Dijamin mendapatkan item 4\u2605 ke atas setidaknya satu kali setiap <span>10</span> kali Permohonan; persentase perolehan item 4\u2605 dari jaminan adalah <span>99,400%</span>, persentase perolehan item 5\u2605 dari jaminan adalah <span>0,600%</span>. Saat kamu mendapatkan item 4\u2605 dari Permohonan, ada <span>50,000%</span> kemungkinan item tersebut adalah Karakter UP event ini: {rateupCharacters} . Jika item 4\u2605 pertama yang kamu dapatkan dari event ini bukan Karakter UP, maka item 4\u2605 yang kamu peroleh selanjutnya dijamin adalah Karakter 4\u2605 UP dari periode ini. Saat kamu mendapatkan item 4\u2605 UP dari Permohonan, persentase perolehan setiap Karakter 4\u2605 UP di event permohonan ini adalah sama rata."
-  ],
-  weapons: [
-    'Event Permohonan - {bannerName} dimulai. Selama event Permohonan ini, persentase perolehan Senjata 5\u2605 Eksklusif {featuredWeapon1} , persentase perolehan Senjata 5\u2605 {featuredWeapon2}, persentase perolehan Senjata 4\u2605 Eksklusif {rateupWeapons} meningkat drastis! <br /> <span> \u203B  Senjata Eksklusif di atas tidak akan masuk ke Permohonan Standar "Wanderlust Invocation".</span>',
-    "\u203BDalam keadaan normal, Permohonan Karakter atau Senjata dihitung berdasarkan pada persentase dasar. Untuk Permohonan dengan persentase perolehan yang meningkat, jaminan perolehan, dan lainnya, akan dihitung berdasarkan pada ketentuan yang berlaku.",
-    "\u3013Ketentuan\u3013",
-    "[Item 5\u2605]",
-    'Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan Senjata 5\u2605: <span>0,700%</span>; persentase keseluruhan (termasuk jaminan perolehan): <span>1,850%</span>. Dijamin mendapatkan Senjata 5\u2605 setidaknya satu kali setiap <span>80</span> kali Permohonan. <br/> Saat kamu mendapatkan Senjata 5\u2605 dari Permohonan, ada <span>75,000%</span> kemungkinan Senjata tersebut adalah Senjata UP event ini: {featuredWeapon1} dan {featuredWeapon2}. Jika Senjata 5\u2605 yang kamu dapatkan kali ini bukan Senjata UP, maka Senjata 5\u2605 yang kamu peroleh selanjutnya dijamin adalah Senjata UP. Jika kamu tidak memilih untuk mendapatkan Senjata tertentu dengan mengumpulkan Poin Takdir hingga maksimum, maka saat kamu mendapatkan item 5\u2605 UP, persentase perolehan semua Senjata 5\u2605 UP adalah sama rata. <br/> Dalam Event Permohonan - {bannerName}, Traveler dapat menggunakan sistem "Epitomized Path" untuk memilih Senjata 5\u2605 yang ingin didapatkan, pemilihan Senjata ini hanya berlaku selama Event Permohonan - {bannerName} berlangsung. <br/> Dalam Event Permohonan Event Permohonan - {bannerName}, setelah kamu menentukan senjata pilihanmu, jika kamu menerima Senjata 5\u2605 yang bukan pilihanmu, kamu akan mendapatkan 1 Poin Takdir. Setelah kamu mengumpulkan Poin Takdir hingga <span>maksimum</span>, maka Senjata 5\u2605 yang kamu dapatkan berikutnya pasti adalah senjata yang kamu pilih melalui "Epitomized Path". Jika kamu mendapatkan senjata pilihanmu, maka semua Poin Takdir yang kamu miliki akan kembali menjadi <span>0</span> dan dihitung ulang, terlepas apakah Poin Takdir-mu sudah maksimum atau belum. <br/>Jika kamu tidak memilih senjata dengan "Epitomized Path", maka Poin Takdir <span>tidak akan</span> terkumpul. Kamu bisa mengubah atau membatalkan pilihan senjatamu. Mengubah atau membatalkan pilihan senjatamu akan membuat semua Poin Takdir yang kamu miliki kembali menjadi <span>0</span> dan dihitung ulang. <br/> \u203B Poin Takdir di Event Permohonan ini hanya berlaku selama Event Permohonan - {bannerName} berlangsung. Setelah Event Permohonan berakhir, semua Poin Takdir yang kamu miliki akan kembali menjadi <span>0</span> dan dihitung ulang.',
-    "[Item 4\u2605]",
-    "Untuk Event Permohonan - {bannerName}, persentase dasar untuk mendapatkan item 4\u2605: <span>6,000%</span>; persentase dasar untuk mendapatkan Karakter 4\u2605: 3,000%, persentase dasar untuk mendapatkan Senjata 4\u2605: <span>3,000%</span>; persentase keseluruhan untuk mendapatkan item 4\u2605 (termasuk jaminan perolehan): <span>14,500%</span>. Dijamin mendapatkan item 4\u2605 ke atas setidaknya satu kali setiap <span>10</span> kali Permohonan. Persentase perolehan item 4\u2605 dari jaminan adalah <span>99,300%</span>, persentase perolehan item 5\u2605 dari jaminan adalah <span>0,700%</span>. Saat kamu mendapatkan item 4\u2605 dari Permohonan, ada <span>75,000%</span> kemungkinan Senjata tersebut adalah Senjata UP event ini: {rateupWeapons}. Jika item 4\u2605 yang kamu dapatkan kali ini bukan Senjata 4\u2605 UP, maka item 4\u2605 yang kamu peroleh selanjutnya dijamin adalah Senjata 4\u2605 UP pada periode kali ini. Saat kamu mendapatkan item 4\u2605 UP dari Permohonan, persentase perolehan setiap Senjata 4\u2605 UP di event permohonan ini adalah sama rata."
-  ],
-  convertion: {
-    fiveStar: "Senjata 5\u2605 yang diperoleh dari permohonan ini juga akan memberikan {starglitter} \xD710;",
-    fourStar: "Senjata 4\u2605 yang diperoleh dari permohonan ini juga akan memberikan {starglitter} \xD72;",
-    threeStar: "Senjata 3\u2605 yang diperoleh dari permohonan ini juga akan memberikan {stardust} \xD715."
-  },
-  duplicate: {
-    heading: "\u3013Karakter Duplikat\u3013",
-    text: "Saat kamu mendapat Karakter {rarity}\u2605 yang sudah dimiliki untuk ke 2-7 kalinya, tak peduli diperoleh dari mana (seperti Permohonan, ditukar di Toko, atau diberikan oleh game), Karakter duplikat tersebut akan diubah menjadi {stellaFortuna} Karakter tersebut \xD71 dan {starglitter} {constBonus}; untuk ke-8 kali dan seterusnya, Karakter duplikat tersebut akan diubah menjadi {starglitter} {fullConstBonus}."
-  }
-};
-const history = {
-  title: "Riwayat Permohonan",
-  text: "Riwayat",
-  resetButton: "Reset",
-  resetPromptTitle: "Reset Riwayat ?",
-  resetPrompt: 'Tindakan ini akan menghapus semua Karakter dan Senjata dimiliki yang berasal dari banner "{bannerName}". <br /> Yakin untuk me-Reset ?',
-  resetSuccess: "Berhasil me-Reset",
-  keepPity: "Jangan reset Piti dan status jaminan",
-  selectWish: "Jenis Permohonan ",
-  disclaimer: "Data kamu tidak akan pernah disimpan secara online, semua data akan disimpan ke IndexedDB yang artinya data akan disimpan pada browser, data ini tidak akan dihapus selama kamu tidak menghapusnya secara manual melalui tombol reset atau selama tidak menghapus data browser",
-  currentPity: "Pity saat ini :",
-  totalPull: "Total Permohonan :",
-  totalSpend: "Total Pengeluaran :",
-  filterTxt: "Filter",
-  filter: "Bintang {rarity}",
-  filterAll: "Semua",
-  pity: "Pity",
-  timeReceived: "Waktu Perolehan",
-  waiting: "Tunggu",
-  noData: "Tidak ada data .",
-  untracked: "Tidak Terlacak",
-  item: "Item",
-  win: "Menang 50/50",
-  lose: "Kalah 50/50",
-  guaranteed: "Item Jaminan",
-  selected: "Item Pilihan",
-  olderLayout: "Layout Lama",
-  switchv2: "Ganti ke V2"
-};
-const shop = {
-  text: "Toko",
-  paimonBargains: "Penukaran Paimon",
-  fateNeeded: "Tambahan {rollQty} {currency} diperlukan.",
-  primoNeeded: "Beli dengan menggunakan {primoPrice} Primogem ?",
-  purchaseUpto: "Batas Pembelian 1",
-  purchaseConfirm: "Konfirmasi Pembelian",
-  exchangeHeading: "Redeem Item",
-  purchaseHeading: "Beli Item",
-  purchaseButton: "Beli",
-  pay: "Bayar",
-  product: "Produk",
-  consume: "Mengkonsumsi",
-  selectPayment: "Pilih Jenis Pembayaran",
-  unrealWallet: "UnReal Wallet",
-  convertPrimo: "Otomatis Konversi ke Primogem?",
-  proceedPayment: "Proses Pembayaran",
-  qty: "Qty",
-  insufficient: "Saldo Tidak Cukup",
-  crystalTopup: "Top Up Crystal",
-  initialBonus: "Bonus Topup Perdana",
-  bonus: "Bonus",
-  buyGenesisHeading: "Beli Genesis Crystal",
-  recomendedHeading: "Item Rekomendasi",
-  paimonHeading: "Penukaran Paimon",
-  welkinNote: "Bisa dibeli beberapa kali",
-  limitedOffer: "Penawaran Terbatas",
-  noLimitTime: "Item tersedia tanpa batas waktu",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    blessing: "Blessing of the Welkin Moon",
-    newOutfit: "Kostum Karakter Baru",
-    dayRemaining: "Tersisa {days} hari",
-    alreadyClaimed: "Telah diperoleh hari ini",
-    instantlyGet: "Beli dan Peroleh",
-    dailyGift: "Bonus Harian",
-    obtainTotal: "*Berlaku 30 hari memberikan total {totalGenesis} Genesis Crystal dan {totalPrimo} Primogems",
-    claimingBlessing: "Tekan untuk mengklaim hadiah harian Blessing of the Welkin Moon",
-    issuedPurchase: "Pendapatan saat Pembelian",
-    collect: "Dapatkan Bonus Harian Selama 30 Hari"
-  },
-  exchange: {
-    starglitter: "Penukaran Starglitter",
-    stardust: "Penukaran Stardust",
-    primogem: "Penukaran Primogem"
-  },
-  item: {
-    genesis: "Genesis Crystal",
-    primogem: "Primogem",
-    intertwined: "Intertwined Fate",
-    acquaint: "Acquaint Fate",
-    starglitter: "Masterless Starglitter",
-    stardust: "Masterless Stardust"
-  },
-  description: {
-    intertwined: "Benih takdir yang menghubungkan mimpi.Batu menyala yang dapat menghubungkan takdir dan mimpi satu sama lain, seperti kecerahan yang menghubungkan bintang-bintang dan membentuk hati.",
-    acquaint: "Benih yang menyinari malam, Tidak peduli seberapa jauh, yang ditakdirkan akan bertemu di bawah bintang, dipandu oleh sinar batunya."
-  }
-};
-const inventory = {
-  text: "Inventaris",
-  unsetOutfit: "Lepaskan Kostum",
-  setOutfit: "Atur Kostum pada Karakter",
-  refinement: "Refinement {count}",
-  constellation: "Konstelasi {count}",
-  extra: "{count} Extra",
-  firstSummon: "Pertama kali dimiliki pada : {date}",
-  notOwned: "Tidak Dimiliki",
-  sort: "Urutkan",
-  rarity: "Rarity",
-  name: "Nama",
-  quantity: "Quantity",
-  element: "Element",
-  release: "Tgl Rilis",
-  type: "Jenis",
-  owned: "Dimiliki",
-  showAllOption: "Tampilkan Semua {item}"
-};
-const menu = {
-  no: "Tidak",
-  yes: "Ya",
-  text: "Menu",
-  feedback: "Feedback",
-  options: "Opsi",
-  updates: "Riwayat Pembaruan",
-  customBanner: "Banner Kustom",
-  backupRestore: "Backup & Restore",
-  language: "Bahasa",
-  currency: "Mata Uang",
-  fates: "Saldo",
-  unlimited: "Unlimited",
-  manual: "Manual Input",
-  mute: "Matikan Audio dan Musik",
-  switchBanner: "Ganti Banner",
-  showAllitems: "Tampilkan Semua Item pada Inventaris",
-  autoskip: "Auto Skip Splash Art",
-  animatedbg: "Animasi Background",
-  multiRoll: "Jumlah permohonan dalam sekali klik",
-  factoryReset: "Bersihkan Data dan Kembalikan Seperti Semula",
-  resetTitle: "Factory Reset",
-  rotate: "Putar untuk pengalaman yang lebih baik",
-  keepSetting: "Jangan ubah pengaturan? <small> Pity, Saldo, dan pengaturan tidak akan direset</small>",
-  clearCache: "Hapus Cache ( {size} )? <small> Asset dalam cache akan dimuat ulang setelah tindakan ini!</small>",
-  resetButton: "Reset Sekarang",
-  resetPrompt: "Apakah kamu yakin untuk menghapus <strong> Semua Data </strong> dan mengembalikan aplikasi seperti semula?",
-  resetSuccess: "Berhasil me-Reset",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Dapatkan Access Key baru di sini!",
-  noKey: "Belum memiliki Access Key?",
-  verifyFail: "Gagal terhubung untuk memverifikasi Access Key!",
-  invalidKey: "Access Key tidak valid",
-  keyExpired1: "Access Key Kadaluarsa!",
-  keyExpired2: 'Access Key "{key}" sudah kadaluarsa sejak {date}!',
-  adFreeUser: "Kamu sudah memiliki akses Pro!",
-  inputKeyPlaceholder: "Masukkan Access Key",
-  inputKeyTxt: "Masukkan Access Key untuk mendapatkan Akses Pro!",
-  checkingKey: "Sedang memverifikasi Access Key Tersimpan",
-  authorNotes: "* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."
-};
-const idID = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  idID as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/index.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/index.js
deleted file mode 100644
index 0b02f282..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/index.js
+++ /dev/null
@@ -1,182 +0,0 @@
-function noop() {
-}
-function assign(tar, src) {
-  for (const k in src)
-    tar[k] = src[k];
-  return tar;
-}
-function is_promise(value) {
-  return value && typeof value === "object" && typeof value.then === "function";
-}
-function run(fn) {
-  return fn();
-}
-function blank_object() {
-  return /* @__PURE__ */ Object.create(null);
-}
-function run_all(fns) {
-  fns.forEach(run);
-}
-function is_function(thing) {
-  return typeof thing === "function";
-}
-function safe_not_equal(a, b) {
-  return a != a ? b == b : a !== b || (a && typeof a === "object" || typeof a === "function");
-}
-function subscribe(store, ...callbacks) {
-  if (store == null) {
-    return noop;
-  }
-  const unsub = store.subscribe(...callbacks);
-  return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;
-}
-function compute_slots(slots) {
-  const result = {};
-  for (const key in slots) {
-    result[key] = true;
-  }
-  return result;
-}
-function null_to_empty(value) {
-  return value == null ? "" : value;
-}
-function set_store_value(store, ret, value) {
-  store.set(value);
-  return ret;
-}
-function custom_event(type, detail, { bubbles = false, cancelable = false } = {}) {
-  const e = document.createEvent("CustomEvent");
-  e.initCustomEvent(type, bubbles, cancelable, detail);
-  return e;
-}
-let current_component;
-function set_current_component(component) {
-  current_component = component;
-}
-function get_current_component() {
-  if (!current_component)
-    throw new Error("Function called outside component initialization");
-  return current_component;
-}
-function onDestroy(fn) {
-  get_current_component().$$.on_destroy.push(fn);
-}
-function createEventDispatcher() {
-  const component = get_current_component();
-  return (type, detail, { cancelable = false } = {}) => {
-    const callbacks = component.$$.callbacks[type];
-    if (callbacks) {
-      const event = custom_event(type, detail, { cancelable });
-      callbacks.slice().forEach((fn) => {
-        fn.call(component, event);
-      });
-      return !event.defaultPrevented;
-    }
-    return true;
-  };
-}
-function setContext(key, context) {
-  get_current_component().$$.context.set(key, context);
-  return context;
-}
-function getContext(key) {
-  return get_current_component().$$.context.get(key);
-}
-Promise.resolve();
-const ATTR_REGEX = /[&"]/g;
-const CONTENT_REGEX = /[&<]/g;
-function escape(value, is_attr = false) {
-  const str = String(value);
-  const pattern = is_attr ? ATTR_REGEX : CONTENT_REGEX;
-  pattern.lastIndex = 0;
-  let escaped = "";
-  let last = 0;
-  while (pattern.test(str)) {
-    const i = pattern.lastIndex - 1;
-    const ch = str[i];
-    escaped += str.substring(last, i) + (ch === "&" ? "&amp;" : ch === '"' ? "&quot;" : "&lt;");
-    last = i + 1;
-  }
-  return escaped + str.substring(last);
-}
-function each(items, fn) {
-  let str = "";
-  for (let i = 0; i < items.length; i += 1) {
-    str += fn(items[i], i);
-  }
-  return str;
-}
-const missing_component = {
-  $$render: () => ""
-};
-function validate_component(component, name) {
-  if (!component || !component.$$render) {
-    if (name === "svelte:component")
-      name += " this={...}";
-    throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);
-  }
-  return component;
-}
-let on_destroy;
-function create_ssr_component(fn) {
-  function $$render(result, props, bindings, slots, context) {
-    const parent_component = current_component;
-    const $$ = {
-      on_destroy,
-      context: new Map(context || (parent_component ? parent_component.$$.context : [])),
-      on_mount: [],
-      before_update: [],
-      after_update: [],
-      callbacks: blank_object()
-    };
-    set_current_component({ $$ });
-    const html = fn(result, props, bindings, slots);
-    set_current_component(parent_component);
-    return html;
-  }
-  return {
-    render: (props = {}, { $$slots = {}, context = /* @__PURE__ */ new Map() } = {}) => {
-      on_destroy = [];
-      const result = { title: "", head: "", css: /* @__PURE__ */ new Set() };
-      const html = $$render(result, props, {}, $$slots, context);
-      run_all(on_destroy);
-      return {
-        html,
-        css: {
-          code: Array.from(result.css).map((css) => css.code).join("\n"),
-          map: null
-        },
-        head: result.title + result.head
-      };
-    },
-    $$render
-  };
-}
-function add_attribute(name, value, boolean) {
-  if (value == null || boolean && !value)
-    return "";
-  const assignment = boolean && value === true ? "" : `="${escape(value, true)}"`;
-  return ` ${name}${assignment}`;
-}
-export {
-  subscribe as a,
-  safe_not_equal as b,
-  create_ssr_component as c,
-  add_attribute as d,
-  escape as e,
-  createEventDispatcher as f,
-  getContext as g,
-  compute_slots as h,
-  is_function as i,
-  null_to_empty as j,
-  each as k,
-  is_promise as l,
-  missing_component as m,
-  noop as n,
-  onDestroy as o,
-  set_store_value as p,
-  assign as q,
-  run_all as r,
-  setContext as s,
-  validate_component as v
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/index2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/index2.js
deleted file mode 100644
index c2f286ce..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/index2.js
+++ /dev/null
@@ -1,91 +0,0 @@
-import { n as noop, a as subscribe, r as run_all, b as safe_not_equal, i as is_function } from "./index.js";
-const subscriber_queue = [];
-function readable(value, start) {
-  return {
-    subscribe: writable(value, start).subscribe
-  };
-}
-function writable(value, start = noop) {
-  let stop;
-  const subscribers = /* @__PURE__ */ new Set();
-  function set(new_value) {
-    if (safe_not_equal(value, new_value)) {
-      value = new_value;
-      if (stop) {
-        const run_queue = !subscriber_queue.length;
-        for (const subscriber of subscribers) {
-          subscriber[1]();
-          subscriber_queue.push(subscriber, value);
-        }
-        if (run_queue) {
-          for (let i = 0; i < subscriber_queue.length; i += 2) {
-            subscriber_queue[i][0](subscriber_queue[i + 1]);
-          }
-          subscriber_queue.length = 0;
-        }
-      }
-    }
-  }
-  function update(fn) {
-    set(fn(value));
-  }
-  function subscribe2(run, invalidate = noop) {
-    const subscriber = [run, invalidate];
-    subscribers.add(subscriber);
-    if (subscribers.size === 1) {
-      stop = start(set) || noop;
-    }
-    run(value);
-    return () => {
-      subscribers.delete(subscriber);
-      if (subscribers.size === 0) {
-        stop();
-        stop = null;
-      }
-    };
-  }
-  return { set, update, subscribe: subscribe2 };
-}
-function derived(stores, fn, initial_value) {
-  const single = !Array.isArray(stores);
-  const stores_array = single ? [stores] : stores;
-  const auto = fn.length < 2;
-  return readable(initial_value, (set) => {
-    let inited = false;
-    const values = [];
-    let pending = 0;
-    let cleanup = noop;
-    const sync = () => {
-      if (pending) {
-        return;
-      }
-      cleanup();
-      const result = fn(single ? values[0] : values, set);
-      if (auto) {
-        set(result);
-      } else {
-        cleanup = is_function(result) ? result : noop;
-      }
-    };
-    const unsubscribers = stores_array.map((store, i) => subscribe(store, (value) => {
-      values[i] = value;
-      pending &= ~(1 << i);
-      if (inited) {
-        sync();
-      }
-    }, () => {
-      pending |= 1 << i;
-    }));
-    inited = true;
-    sync();
-    return function stop() {
-      run_all(unsubscribers);
-      cleanup();
-    };
-  });
-}
-export {
-  derived as d,
-  readable as r,
-  writable as w
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/it-IT.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/it-IT.js
deleted file mode 100644
index 76a0d567..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/it-IT.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Genshin Impact Wish Simulator";
-const character = "Personaggio";
-const weapon = "Arma";
-const vision = "Vision";
-const anemo = "Anemo";
-const cryo = "Cryo";
-const dendro = "Dendro";
-const electro = "Electro";
-const hydro = "Hydro";
-const geo = "Geo";
-const pyro = "Pyro";
-const bow = "Bow";
-const catalyst = "Catalyst";
-const claymore = "Claymore";
-const sword = "Sword";
-const polearm = "Polearm";
-const extra = "Extra";
-const obtained = "Ottenuto";
-const waiting = "Attendere";
-const connectionFailed = "Connection Failed!";
-const confirmButton = "Conferma";
-const cancelButton = "Annulla";
-const disclaimer = "Tutte le risorse usate in questo sito sono di propriet\xE0 di Mihoyo.";
-const fanmade = "Questa \xE8 un'applicazione fatta unicamente dai fan, divertiti !";
-const pressToContinue = "Premi in un punto qualsiasi dell'area vuota per continuare";
-const installInstruction = "Instructions to Install to Home Screen/Desktop";
-const share = "Condividi";
-const screenshot = "Scatta una Foto";
-const capturing = "Catturare";
-const rewardFirstShare = "Premio per la prima condivisione : {qty}";
-const version = "Versione";
-const donate = "Dona";
-const banner = {
-  beginner: "Wish per Principianti",
-  wanderlust: "Wanderlust Invocation",
-  "epitome-invocation": "Incarnazione divina",
-  "adrift-in-the-harbor": "Alla deriva nel porto",
-  "auric-blaze": "Fiamma dorata",
-  "azure-excursion": "Azure Excursion",
-  "ballad-in-goblets": "Ballad in Goblets",
-  "born-of-ocean-swell": "Born of Ocean Swell",
-  "caution-in-confidence": "Monito implacabile",
-  "chanson-of-many-waters": "Ode alle Mille Acque",
-  "conjuring-chiaroscuro": "Conjuring Chiaroscuro",
-  "dance-of-lantern": "Dance of Lantern",
-  "decree-of-the-deeps": "Decree of the Deeps",
-  "discerner-of-enigmas": "L'Enigmista",
-  "drifting-luminescence": "Drifting Luminescence",
-  "everbloom-violet": "Everbloom Violet",
-  "farewell-of-snezhnaya": "Farewell of Snezhnaya",
-  "from-ashes-reborn": "Rinato dalle ceneri",
-  "gentry-of-hermitage": "Gentry of Hermitage",
-  "immaculate-pulse": "Battito immacolato",
-  "in-the-name-of-the-rosula": "Nel nome della Rosula",
-  "invitation-to-mundane-life": "Invito alla Vita mondana",
-  "leaves-in-the-wind": "Leaves in The Wind",
-  "moment-of-bloom": "Tempo di fioritura",
-  "oni_s-royale": "Contesa di Oni",
-  "reign-of-serenity": "Reign of Serenity",
-  "secretum-secretorum": "Secretum Secretorum",
-  "sparkling-steps": "Sparkling Steps",
-  "tapestry-of-golden-flames": "Tapestry of Golden Flames",
-  "tempestuous-destiny": "Destino tempestoso",
-  "the-heron_s-court": "La corte dell'airone",
-  "the-moongrass-enlightenment": "L'illuminazione dell'Erba lunare",
-  "the-transcendent-one-returns": "Evento trascendentale",
-  "twilight-arbiter": "Giudice del crepuscolo",
-  "twirling-lotus": "Loto volteggiante",
-  "viridescent-vigil": "Viridescent Vigil"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "Wish",
-  rollButton: "Wish {count}",
-  stellaFortuna: "Stella Fortuna",
-  loadFailed: "Impossibile caricare il banner! <br /> Passa ad un altro banner o riconnettiti a Internet per evitare errori!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banner",
-    allBanner: "Tutti i Banner",
-    previous: "Banner Precedente",
-    findBanner: "Trova un Banner",
-    group: "Gruppo",
-    beginner: "Wish\u2008per Principianti",
-    "character-event": "Wish dell'Evento del Personaggio",
-    "weapon-event": "Wish per Armi",
-    standard: "Wish Standard",
-    wishDescription: "Ogni 10 wish se ne ha almeno uno a 4 o pi\xF9 stelle",
-    novice: "Wish per Principianti",
-    up: "UP!",
-    beginnerSet: "10 set hanno il 20% di sconto. Per i primi 10 set potrai ricevere {character}.",
-    beginnerNote: '"Come farebbe una cameriera rispettosa."',
-    beginnerChance: "Chance Rimaste: {chances}",
-    standardNote: "I wish standard non hanno una scadenza.",
-    allWeaponTypes: "Tutti i Tipi di Armi",
-    etc: "ecc.",
-    probIncreased: "Probabilit\xE0 aumentata !",
-    eventNote: "I personaggi a 5 stelle esclusivi dell'evento possono essere ottenuti solo nel wish specifico durante il periodo/i determinato.",
-    viewDetails: "Visualizza i Dettagli per maggiori informazioni."
-  },
-  epitomizedPath: {
-    text: "Epitomized Path",
-    fatePoint: "Punti Fato",
-    cancelPrompt: "Desideri cancellare il tuo Percorso attuale ?",
-    cancelDesc: "La cancellazione azzerer\xE0 i Punti Fato accumulati",
-    selectWeapon: "Seleziona l'Arma",
-    chartCourseOf: "Grafico del Percorso per {target}",
-    cancelCourse: "Annulla Percorso",
-    chartCourse: "Grafico del Percorso",
-    courseSetFor: "Percorso deciso per: {selectedCourse}",
-    description: [
-      `"Epitomized Path" \xE8 una meccanica dei desideri per "Epitome Invication". I viaggiatori possono tracciare un percorso verso un'arma a 5 stelle che sperano di ottenere.`,
-      "Una volta che avrai tracciato un percorso verso l'arma scelta, otterrai un Punto Fato se <span> riceverai un'arma a 5 stelle che non \xE8 quella che hai scelto</span>. Puoi ottenere un massimo di 2 Punti Fato.",
-      'Una volta che avrai raggiunto la quantit\xE0 massima di Punti Fato, la prossima arma a 5 stelle che sceglierai sar\xE0 quella scelta con "Epitomized Path".',
-      "Quando otterrai l'arma scelta in Epitome Invocation con Epitomized Path, <span> i Punti Fato accumulati verranno cancellati</span>.",
-      "Se non usi Epitomized Path per ottenere un'arma, non accumulerai Punti Fato.",
-      "Il percorso tracciato verso un'arma pu\xF2 essere modificato o annullato. Tuttavia, dopo averlo fatto, tutti i Punti Fato correnti verranno cancellati.",
-      "Al termine del periodo di Epitome Invocation, tutti i Punti Fato correnti verranno cancellati."
-    ]
-  },
-  result: {
-    skip: "Salta",
-    meteorFailed: "Errore nel caricamento dell'animazione della Meteora",
-    "new": "Nuovo",
-    convertion: "Conversione",
-    title: "Risultato del Wish per {item} e altri"
-  }
-};
-const outfit = {
-  heading: "Outfit dei personaggi",
-  "default": "Default",
-  setOutfit: "Seleziona l'Outfit",
-  owned: "Gi\xE0 in possesso",
-  purchasePrompt: "Non hai ancora un personaggio per questo outfit, sei sicuro di volerlo acquistare?",
-  promptInfo: "Potrai ancora usare questo outfit dopo aver ottenuto il personaggio giusto",
-  obtained: "New Outfit Obtained",
-  unlocked: "{character}: Outfit Unlocked",
-  item: {
-    "5-star-outrider": {
-      name: "5-Star Outrider"
-    },
-    "favonian-fevotion": {
-      name: "Favonian Devotion"
-    },
-    "flowing-fate": {
-      name: "Flowing Fate"
-    },
-    "executor_s-thorns": {
-      name: "Executor's Thorns"
-    },
-    "sea-breeze-dandelion": {
-      name: "Sea Breeze Dandelion",
-      description: "L'outfit estivo di Jean. Leggero e alla moda, ma non per questo poco elegante. La scelta perfetta per una gita al mare."
-    },
-    "summertime-sparkle": {
-      name: "Summertime Sparkle",
-      description: "L'outfit da spiaggia di Barbara. Questa graziosa gonna trabocca di vitalit\xE0 estiva e porta con s\xE9 una fresca brezza oceanica."
-    },
-    "opulent-splendor": {
-      name: "Opulent Splendor",
-      description: "L'outfit formale di Keqing. Nella splendida alba di Lantern Rite, i fili intrecciati in giorni di duro lavoro si uniscono in un aspetto leggero ma magnifico."
-    },
-    "orchid_s-evening-gown": {
-      name: "Orchid's Evening Gown",
-      description: "L'outfit formale di Ningguang. La lunga gonna ciano mette in evidenza le sue eleganti curve, e le ali di farfalla alle caviglie conferiscono un leggero tocco di grazia."
-    },
-    "ein-immernachtstraum": {
-      name: "Ein Immernachtstraum",
-      description: "L'outfit da cerimonia di Prinzessin. Possa, lei che \xE8 nobile, conservare per sempre il suo coraggio, la sua sincerit\xE0 e la sua gentilezza, in modo tale che nessun male possa mai sopraffarla."
-    },
-    "red-dead-of-night": {
-      name: "Red Dead of Night",
-      description: "Uno degli abiti che indossa Diluc durante le azioni segrete, ricorda una fiamma che danza nell'ombra. Le tracce rosso cremisi che lascia ai marigni della visuale del nemico sfregiano per sempre i loro incubi."
-    },
-    "a-sobriquet-under-shade": {
-      name: "Un nomignolo all\u2019ombra",
-      description: "Un completo commissionato da Lisa quando \xE8 tornata in visita a Sumeru. Un equilibrio perfetto tra praticit\xE0 ed eleganza, il completo assomiglia alla vecchia uniforme di Lisa ai tempi dell\u2019Akademiya."
-    },
-    "springbloom-missive": {
-      name: "Missiva primaverile",
-      description: "Il completo di viaggio di Ayaka. Il suo design si basa sugli abiti di Fontaine raffigurati nelle illustrazioni delle light novel, e sembra rispecchiare lo stile di vita delle gentildonne di quella nazione."
-    },
-    "blossoming-starlight": {
-      name: "Luce stellare fiorente",
-      description: "Un delizioso completo che Klee indossa solo per le esibizioni pi\xF9 importanti. Dai colori brillanti, sembra una torta decorata con fiori di panna e coronata da candele scarlatte. Indossandolo, la felicit\xE0 e i sorrisi riempiranno le vostre avventure."
-    },
-    "sailwind-shadow": {
-      name: "Ombra Navigavento",
-      description: 'Il completo che Kaeya indossa quando interpreta il "Bandito della Daga". Sebbene sia alquanto appariscente, non \xE8 difficile da indossare, anche se ci vuole del tempo per sistemare tutti quegli accessori e tutte quelle daghe.'
-    }
-  }
-};
-const details = {
-  text: "Dettagli",
-  promotional: "Promotional Items",
-  itemlist: "List of Items",
-  increasedRate: "Aumento del Tasso di Caduta",
-  percentageDrop: "Percentuale di caduta di oggetti a {rarity} stelle: {percentage}",
-  wishDetails: "Dettagli dei Wish",
-  probInfo: "Probabilit\xE0 base di caduta di oggetti a {rarity} stelle: {singlePercentage} (Incl. guarantee: {avgPercentage})",
-  itemWishFor: "Oggetto desiderato :",
-  itemType: "Tipo dell'Oggetto",
-  itemName: "Nome dell'Oggetto",
-  beginnerInfo: "Nessun limite di tempo (si chiude dopo 20 wish)",
-  limited: "Evento a Tempo Limitato",
-  permanent: "Permanente",
-  alert: "\u203B Questo \xE8 un {wishName}. La garanzia dei desideri viene accumulata solo all'interno di questo evento ed \xE8 indipendente dalle garanzie di altri desideri.",
-  beginner: [
-    "Il <span> Wish </span> per principianti non ha limiti di tempo ed \xE8 rivolto ai viaggiatori che sono atterrati di recente a Teyvat. Sono disponibili personaggi e armi non promozionali. <br /> Nel Wish per principianti, i set da 10 wish costano il <span> 20%</span> in meno di Acquaint Fate, e il tuo primo set da 10 wish includer\xE0 sicuramente {character} , mentre il tuo secondo set da 10 wish includer\xE0 sicuramente un <span> altro </span> personaggio min. a 4 stelle! Il Wish per Principianti sparisce dopo <span> 20 </span> tentativi. Dopo essere sparito, la pagina scomparir\xE0.",
-    "\u203B Nella maggior parte dei casi, la probabilit\xE0 di base di tutti i personaggi e le armi \xE8 distribuita uniformemente. Se \xE8 in vigore un boost o una garanzia, fare riferimento alle regole corrispondenti.",
-    "\u3013Regole\u3013",
-    "Probabilit\xE0 base di vincere un personaggio a 5 stelle = <span> 0.600%</span> <br /> Probabilit\xE0 base di vincere un personaggio a 4 stelle = <span> 5.100%</span>; probabilit\xE0 consolidata (incl. garanzia) = <span> 13.000%</span>;"
-  ],
-  standard: [
-    '"{bannerName}" \xE8 un wish standard senza limiti di tempo. Sono disponibili personaggi e armi non esclusivi per gli eventi.<br/> In questo wish, vincerai <span>sicuramente</span> un oggetto a 4 o pi\xF9 stelle almeno una volta ogni 10 tentativi.',
-    "\u203BNella maggior parte dei casi, la probabilit\xE0 base di vincere qualsiasi personaggio o arma \xE8 distribuita uniformemente. Se \xE8 attivo un potenziamento o una garanzia fare riferimento alle rispettive regole.",
-    "\u3013Regole\u3013",
-    "Probabilit\xE0 base di vincere un oggetto a 5 stelle = <span>0.600%</span>; probabilit\xE0 base di vincere un personaggio a 5 stelle = <span>0.300%</span>, e probabilit\xE0 base di vincere un'arma a 5 stelle = <span>0.300%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 5 stelle = <span>1.600%</span>; \xE8 assicurata la vittoria di un oggetto a 5 stelle almeno una volta ogni <span>90</span> tentativi. <br> Probabilit\xE0 base di vincere un oggetto a 4 stelle = <span>5.100%</span>; probabilit\xE0 base di vincere un personaggio a 4 stelle = <span>2.550%</span>, e probabilit\xE0 base di vincere un'arma a 4 stelle = <span>2.550%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 4 stelle = <span>13.000%</span>; \xE8 assicurata la vittoria di un oggetto a 4 o pi\xF9 stelle almeno una volta ogni <span>10</span> tentativi; probabilit\xE0 di vincere un oggetto a 4 stelle grazie alla garanzia = <span>99.400%</span>, e probabilit\xE0 di vincere un oggetto a 5 stelle grazie alla garanzia = <span>0.600%</span>. "
-  ],
-  events: [
-    `L'Event Wish "{bannerName}" \xE8 disponibile ora. Durante questo evento, il personaggio a 5 stelle <span>esclusivo dell'evento</span> {featuredCharacter} come i personaggi a 4 stelle {rateupCharacters} riceveranno un <span>enorme aumento della percentuale di ottenimento</span>! <br/> <span> \u203B Tra questi personaggi, il personaggio esclusivo dell'evento non sar\xE0 disponibile nel wish "Wanderlust Invocation" standard.</span>`,
-    "\u203B Nella maggior parte dei casi, la probabilit\xE0 base di vincere qualsiasi personaggio o arma \xE8 distribuita uniformemente. Se \xE8 attivo un potenziamento o una garanzia fare riferimento alle rispettive regole.",
-    "\u3013Regole\u3013",
-    "Oggetti a 5 stelle",
-    `Per l'Event Wish "{bannerName}": Probabilit\xE0 base di vincere un personaggio a 5 stelle = <span>0.600%</span>; probabilit\xE0 consolidata (incl. garanzia) = <span>1.600%</span>; \xE8 assicurata la vittoria di un personaggio a 5 stelle almeno una volta ogni <span>90</span> tentativi.<br/> C'\xE8 un <span>50.000%</span> di possibilit\xE0 che il primo oggetto a 5 stelle vinto sia il personaggio promozionale {featuredCharacter}. Se il primo personaggio a 5 stelle vinto in questo evento non \xE8 il personaggio promozionale, allora il prossimo personaggio a 5 stelle che vincerai sar\xE0 <span>sicuramente</span> il personaggio promozionale.`,
-    "Oggetti a 4 stelle",
-    `Per l'Event Wish  "{bannerName}": Probabilit\xE0 base di vincere un oggetto a 4 stelle = <span>5.100%</span>; probabilit\xE0 base di vincere un personaggio a 4 stelle = <span>2.550%</span>, e probabilit\xE0 base di vincere un'arma a 4 stelle = <span>2.550%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 4 stelle = <span>13.000%</span>; \xE8 assicurata la vittoria di un oggetto a 4 o pi\xF9 stelle almeno una volta ogni 10 tentativi; probabilit\xE0 di vincere un oggetto a 4 stelle grazie alla garanzia = <span>99.400%</span>, e probabilit\xE0 di vincere un oggetto a 5 stelle grazie alla garanzia = <span>0.600%</span>. <br/> C'\xE8 un <span>50.000%</span> di possibilit\xE0 che il primo oggetto a 4 stelle vinto sia uno dei personaggi in primo piano tra {rateupCharacters}. Se il primo oggetto a 4 stelle vinto in questo evento non \xE8 uno dei personaggi in primo piano, allora il prossimo oggetto a 4 stelle che vincerai sar\xE0 <span>sicuramente</span> un personaggio in primo piano. Quando vinci un oggetto a 4 stelle in primo piano, la probabilit\xE0 di ottenere un qualsiasi personaggio a 4 stelle in primo piano \xE8 uguale per ciascuno di loro.`
-  ],
-  weapons: [
-    `L'Event Wish "{bannerName}" \xE8 disponibile ora. Durante questo evento, l'arma a 5 stelle esclusive dell'evento {featuredWeapon1}, l'arma a 5 stelle {featuredWeapon2} e l'arma a 4 stelle esclusiva dell'evento {rateupWeapons} riceveranno un <span>enorme aumento della percentuale di ottenimento</span>! <br/> <span> \u203B Tra queste armi, le armi esclusive dell'evento non saranno disponibili nel wish "Wanderlust Invocation" standard.</span>`,
-    "\u203B Nella maggior parte dei casi, la probabilit\xE0 base di vincere qualsiasi personaggio o arma \xE8 distribuita uniformemente. Se \xE8 attivo un potenziamento o una garanzia fare riferimento alle rispettive regole.",
-    "\u3013Regole\u3013",
-    "Oggetti a 5 stelle",
-    `Per l'Event Wish "{bannerName}": probabilit\xE0 base di vincere un'arma a 5 stelle = <span>0.700%</span>; probabilit\xE0 consolidata (incl. garanzia) = <span>1.850%</span>; \xE8 assicurata la vittoria di un'arma a 5 stelle almeno una volta ogni <span>80</span> tentativi.<br/> C'\xE8 un <span>75.000%</span> di possibilit\xE0 che la prima arma a 5 stelle vinta sia una delle armi promozionali tra {featuredWeapon1} e {featuredWeapon2}. Se la prima arma a 5 stelle vinta in questo evento non \xE8 una delle armi promozionali, allora la prossima arma a 5 stelle che vincerai sar\xE0 <span>sicuramente</span> un'arma promozionale. Nel caso in cui si ottenga un oggetto promozionale a 5 stelle con un wish senza avere il massimo dei Punti Fato, la probabilit\xE0 di ottenere una qualsiasi arma a 5 stelle \xE8 uguale per ciascuna di loro. <br/> Per l'Event Wish "{bannerName}", puoi tracciare un percorso verso l'arma promozionale a 5 stelle scelta con "Epitomized Path." La scelta dell'arma sar\xE0 valida solo per il periodo dell'Event Wish "{bannerName}". <br/> Per l'Event Wish "{bannerName}", dopo aver tracciato un percorso verso un'arma scelta con "Epitomized Path," se ottieni un'arma a 5 stelle che non \xE8 l'arma scelta, riceverai 1 Punto Fato. Una volta raggiunta la <span>quantit\xE0 massima</span> di Punti Fato, l'arma a 5 stelle successiva sar\xE0 <span>sicuramente</span> l'arma scelta. Una volta ottenuta l'arma scelta, i Punti Fato si resetteranno a <span>0</span>, indipendentemente dal fatto che tu abbia raggiunto o meno il massimo dei punti, e dovrai accumularli nuovamente. Se non usi "Epitomized Path" per tracciare un percorso verso un'arma scelta, <span>not</span> riceverai Punti Fato. <br/> Dopo aver tracciato un percorso verso un'arma scelta, puoi cambiare la tua scelta o annullarla del tutto, ma cos\xEC facendo resetterai i Punti Fato a <span>0</span> e dovrai accumularli nuovamente. <br/> \u203B I Punti Fato per questo Wish in "Epitome Invocation" sono validi solo per il periodo dell'Event Wish. Al termine dell'Event Wish, i Punti Fato si resetteranno a <span>0</span>, e dovrai accumularli nuovamente.`,
-    "Oggetti a 4 stelle",
-    `Per l'Event Wish "{bannerName}": probabilit\xE0 base di vincere un oggetto a 4 stelle = <span>6.000%</span>; probabilit\xE0 base di vincere un personaggio a 4 stelle = <span>3.000%</span>, e probabilit\xE0 base di vincere un'arma a 4 stelle = <span>3.000%</span>; probabilit\xE0 consolidata (incl. garanzia) di vincere un oggetto a 4 stelle = <span>14.500%</span>; \xE8 assicurata la vittoria di un oggetto a 4 o pi\xF9 stelle almeno una volta ogni <span>10</span> tentativi; probabilit\xE0 di vincere un oggetto a 4 stelle grazie alla garanzia = <span>99.300%</span>, e probabilit\xE0 di vincere un oggetto a 5 stelle grazie alla garanzia = <span>0.700%</span>. <br/> C'\xE8 un <span>75.000%</span> di possibilit\xE0 che il primo oggetto a 4 stelle vinto sia una delle armi in primo piano tra {rateupWeapons}. Se il primo oggetto a 4 stelle vinto in questo evento non \xE8 una delle armi in primo piano, allora il prossimo oggetto a 4 stelle che vincerai sar\xE0 <span>sicuramente</span> un'arma in primo piano. Quando vinci un oggetto a 4 stelle in primo piano, la probabilit\xE0 di ottenere una qualsiasi arma a 4 stelle in primo piano \xE8 uguale per ciascuna di loro.`
-  ],
-  convertion: {
-    fiveStar: "Le armi a 5 stelle vinte con questo desiderio vengono fornite con {starglitter} \xD710;",
-    fourStar: "Le armi a 4 stelle vinte con questo desiderio vengono fornite con {starglitter} \xD72;",
-    threeStar: "Le armi a 3 stelle vinte con questo desiderio vengono fornite con {stardust} \xD715."
-  },
-  duplicate: {
-    heading: "\u3013Personaggi Duplicati\u3013",
-    text: "Se si ottiene un personaggio che si possiede gi\xE0 (ottenuto in un wish, riscattato dal negozio, o assegnato dal gioco): tra la seconda e la settima volta che si ottiene il personaggio, verr\xE0 convertito in {stellaFortuna} \xD71 del personaggio e {starglitter} {constBonus}; dall'ottava volta in poi verr\xE0 convertito in {starglitter} {fullConstBonus}."
-  }
-};
-const history = {
-  title: "Wish History",
-  text: "Cronologia",
-  resetButton: "Ripristino",
-  resetPromptTitle: "Ripristino della Cronologia ?",
-  resetPrompt: `Quest'operazione rimuover\xE0 anche tutti i personaggi e tutte le armi relativi al banner "{bannerName}" dal tuo inventario. <br /> Sei sicuro di volere ripristinare?`,
-  resetSuccess: "Ripristino effettuato con successo !",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "Seleziona il tipo di wish:",
-  disclaimer: "Non salviamo mai i tuoi data su archivi cloud. Tutti i dati sono archiviati in IndexedDB, questo significa che sono salvati nella memoria del browser. Non verranno mai eliminati finch\xE8 non li elimini manualmente con il pulsante di eliminazione/ripristino, oppure cancellando i dati del browser.",
-  currentPity: "Pity Corrente :",
-  totalPull: "Totale Tiri :",
-  totalSpend: "Totale Spesa :",
-  filterTxt: "Filtro",
-  filter: "{rarity} Stella/e",
-  filterAll: "Tutto",
-  pity: "Pity",
-  timeReceived: "Tempo Guadagnato",
-  waiting: "Attendere",
-  noData: "Nessun dato disponibile .",
-  untracked: "Non Rintracciato",
-  item: "Oggetto",
-  win: "Vittoria 50/50",
-  lose: "Perdita 50/50",
-  guaranteed: "Assicurato",
-  selected: "Oggetto Selezionato",
-  olderLayout: "Older Layout",
-  switchv2: "Switch to V2"
-};
-const shop = {
-  text: "Negozio",
-  paimonBargains: "Paimon Bargains",
-  fateNeeded: "\xC8 necessario un {rollQty} {currency} aggiuntivo.",
-  primoNeeded: "Acquista con {primoPrice} Primogem ?",
-  purchaseUpto: "Acquista fino a 1",
-  purchaseConfirm: "Conferma d'Acquisto",
-  exchangeHeading: "Oggetto da Scambiare",
-  purchaseHeading: "Oggetto da acquistare",
-  purchaseButton: "Acquista",
-  pay: "Paga",
-  product: "Prodotto",
-  consume: "Consumo",
-  selectPayment: "Seleziona il Tipo di Pagamento",
-  unrealWallet: "UnReal Wallet",
-  convertPrimo: "Convertire automaticamente in primogem ?",
-  proceedPayment: "Procedi al Pagamento",
-  qty: "Qty",
-  insufficient: "Fondi Insufficienti",
-  crystalTopup: "Crystal Top-Up",
-  initialBonus: "Bonus prima ricarica",
-  bonus: "Bonus",
-  buyGenesisHeading: "Compra Genesis Crystal",
-  recomendedHeading: "Oggetti Consigliati",
-  paimonHeading: "Paimon's Bargains",
-  welkinNote: "Pu\xF2 essere acquistato pi\xF9 volte",
-  limitedOffer: "Offerta a tempo limitato",
-  noLimitTime: "Nessun oggetto a tempo limitato disponibile",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "Blessing of the Welkin Moon",
-    newOutfit: "Nuovi outfit per i personaggi",
-    dayRemaining: "Giorni rimanenti: {days}",
-    alreadyClaimed: "Gi\xE0 Riscattato oggi",
-    instantlyGet: "Ottieni immediatamente",
-    dailyGift: "Regalo giornaliero",
-    obtainTotal: "Ottieni un totale di {totalGenesis} Genesis Crystal e {totalPrimo} Primogems in 30 giorni",
-    claimingBlessing: "Fai click per riscattare le tue ricompense giornaliere di Blessing of the Welkin Moon",
-    issuedPurchase: "Rilasciato all'acquisto",
-    collect: "Raccogli le ricompense di accesso giornaliere per 30 giorni"
-  },
-  exchange: {
-    starglitter: "Scambio Starglitter",
-    stardust: "Scambio Stardust",
-    primogem: "Scambia con Primogem"
-  },
-  item: {
-    genesis: "Genesis Crystal",
-    primogem: "Primogem",
-    intertwined: "Intertwined Fate",
-    acquaint: "Acquaint Fate",
-    starglitter: "Masterless Starglitter",
-    stardust: "Masterless Stardust"
-  },
-  description: {
-    intertwined: "Una pietra fatidica che unisce i sogni. Il suo bagliore pu\xF2 intrecciare destini e unire sogni, proprio come il suo bagliore unisce le stelle alle forme dei desideri di un cuore.",
-    acquaint: "Un seme che illumina la notte. Non importa la distanza, guidato dal bagliore della pietra, si incontrer\xE0 il fato sotto le stelle."
-  }
-};
-const inventory = {
-  text: "Inventario",
-  unsetOutfit: "Outfit Non Selezionato",
-  setOutfit: "Seleziona l'Outfit sul Personaggio",
-  refinement: "Refinement {count}",
-  constellation: "Costellazione {count}",
-  extra: "Extra {count}",
-  firstSummon: "Evocato per la prima volta alle : {date}",
-  notOwned: "Non in Possesso",
-  sort: "Ordina",
-  rarity: "Rarit\xE0",
-  name: "Nome",
-  quantity: "Quantit\xE0",
-  element: "Elemento",
-  release: "Pubblicazione",
-  type: "Tipo",
-  owned: "In Possesso",
-  showAllOption: "Mostra Tutti {item}"
-};
-const menu = {
-  no: "No",
-  yes: "S\xEC",
-  text: "Menu",
-  feedback: "Feedback",
-  options: "Opzioni",
-  updates: "Aggiorna la Cronologia",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "Lingua",
-  currency: "Moneta",
-  fates: "Numero di desideri",
-  unlimited: "Illimitata",
-  manual: "Manuale",
-  mute: "Muta Audio ed Effetti Sonori",
-  switchBanner: "Cambia Banner",
-  showAllitems: "Mostra tutti gli oggetti nell'inventario",
-  autoskip: "Auto Skip Splash Art",
-  animatedbg: "Sfondo Animato",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "Cancella i Dati e Ripristina",
-  resetTitle: "Factory Reset",
-  rotate: "Gira per un'esperienza migliore",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Clear Caches ( {size} ) ? <small>You will re-load the assets after this action!</small>",
-  resetButton: "Ripristina ora",
-  resetPrompt: "Sei sicuro di voler cancellare <strong>Tutti i Dati</strong> e ripristinare le impostazioni predefinite ?",
-  resetSuccess: "Ripristino effettuato con successo",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Get a new one Here!",
-  noKey: "Don't have a key?",
-  verifyFail: "Failed to verifying AdKey, Check your Connection",
-  invalidKey: "Your key is invalid",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Enter Key",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."
-};
-const itIT = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  itIT as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/it-IT2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/it-IT2.js
deleted file mode 100644
index fddcd06c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/it-IT2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "Spada di Akuou";
-const rainslasher = "Fendiluvio";
-const rust = "Ossidazione meschina";
-const slingshot = "Fionda";
-const verdict = "Verdetto";
-const albedo = {
-  name: "Albedo",
-  title: "Kreideprinz"
-};
-const alhaitham = {
-  name: "Alhaitham",
-  title: "Insegnamento austero"
-};
-const amber = {
-  name: "Amber",
-  title: "Campionessa di volo a vela"
-};
-const baizhu = {
-  name: "Baizhu",
-  title: "Mortalit\xE0 trascesa"
-};
-const barbara = {
-  name: "Barbara",
-  title: "Idol sfavillante"
-};
-const beidou = {
-  name: "Beidou",
-  title: "Regina dei mari senza corona"
-};
-const bennett = {
-  name: "Bennett",
-  title: "Prova del fuoco"
-};
-const candace = {
-  name: "Candace",
-  title: "Voto dorato"
-};
-const charlotte = {
-  name: "Charlotte",
-  title: "Lente della verit\xE0"
-};
-const chevreuse = {
-  name: "Chevreuse",
-  title: "Braccio armato della legge"
-};
-const chongyun = {
-  name: "Chongyun",
-  title: "Ardore ghiacciato"
-};
-const collei = {
-  name: "Collei",
-  title: "Germoglio di rinascita"
-};
-const cyno = {
-  name: "Cyno",
-  title: "Giustiziere dei segreti"
-};
-const dehya = {
-  name: "Dehya",
-  title: "Chiomardente"
-};
-const diluc = {
-  name: "Diluc",
-  title: "Lato oscuro dell'alba"
-};
-const diona = {
-  name: "Diona",
-  title: "Barista K\xE4tzlein"
-};
-const dori = {
-  name: "Dori",
-  title: "Tesoro del giardino dei sogni"
-};
-const eula = {
-  name: "Eula",
-  title: "Danza dell'onda luccicante"
-};
-const faruzan = {
-  name: "Faruzan",
-  title: "Enigmatica esperta di macchine"
-};
-const fischl = {
-  name: "Fischl",
-  title: "Prinzessin der Verurteilung!"
-};
-const freminet = {
-  name: "Freminet",
-  title: "Brama di profondit\xE0 invisibili"
-};
-const furina = {
-  name: "Furina",
-  title: "Assolo solitario e sempiterno"
-};
-const ganyu = {
-  name: "Ganyu",
-  title: "Sguardo del plenilunio"
-};
-const gorou = {
-  name: "Gorou",
-  title: "Guerriero canino"
-};
-const jean = {
-  name: "Jean",
-  title: "Cavaliere del Dente di leone"
-};
-const kaeya = {
-  name: "Kaeya",
-  title: "Spadaccino della bufera"
-};
-const kaveh = {
-  name: "Kaveh",
-  title: "Riflesso empireo"
-};
-const keqing = {
-  name: "Keqing",
-  title: "Dominatrice del tuono"
-};
-const kirara = {
-  name: "Kirara",
-  title: "Gatta sulle grondaie"
-};
-const klee = {
-  name: "Klee",
-  title: "Sole fugace"
-};
-const layla = {
-  name: "Layla",
-  title: "Stella fantastica della sera"
-};
-const lisa = {
-  name: "Lisa",
-  title: "Strega della Rosa purpurea"
-};
-const lynette = {
-  name: "Lynette",
-  title: "Eleganza nell'ombra"
-};
-const lyney = {
-  name: "Lyney",
-  title: "Spettacolo fantasmagorico"
-};
-const mika = {
-  name: "Mika",
-  title: "Coordinate del gelo solare"
-};
-const mona = {
-  name: "Mona",
-  title: "Riflesso astrale"
-};
-const nahida = {
-  name: "Nahida",
-  title: "Fisica della purezza"
-};
-const navia = {
-  name: "Navia",
-  title: "Timoniere della rosa splendente"
-};
-const neuvillette = {
-  name: "Neuvillette",
-  title: "Sentenza ineluttabile"
-};
-const nilou = {
-  name: "Nilou",
-  title: "Danza della luce di loto"
-};
-const ningguang = {
-  name: "Ningguang",
-  title: "Stella dell'eclissi"
-};
-const noelle = {
-  name: "Noelle",
-  title: "Fiore cavalleresco"
-};
-const qiqi = {
-  name: "Qiqi",
-  title: "Rinascita glaciale"
-};
-const razor = {
-  name: "Razor",
-  title: "Ragazzo lupo"
-};
-const rosaria = {
-  name: "Rosaria",
-  title: "Benevolenza spinosa"
-};
-const sayu = {
-  name: "Sayu",
-  title: "Ninja mujina"
-};
-const shenhe = {
-  name: "Shenhe",
-  title: "Trascendenza solitaria"
-};
-const sucrose = {
-  name: "Sucrose",
-  title: "Dolcezza innocua"
-};
-const tartaglia = {
-  name: "Tartaglia",
-  title: "Principe"
-};
-const thoma = {
-  name: "Thoma",
-  title: "Protettore venuto da lontano"
-};
-const tighnari = {
-  name: "Tighnari",
-  title: "Vagabondo verdeggiante"
-};
-const venti = {
-  name: "Venti",
-  title: "Bardo itinerante"
-};
-const wanderer = {
-  name: "Vagabondo",
-  title: "Eternamente perduto"
-};
-const wriothesley = {
-  name: "Wriothesley",
-  title: "Emissario di colpe silenti"
-};
-const xiangling = {
-  name: "Xiangling",
-  title: "Maestra culinaria di Liyue"
-};
-const xiao = {
-  name: "Xiao",
-  title: "Custode Yaksha"
-};
-const xingqiu = {
-  name: "Xingqiu",
-  title: "Giovane paladino"
-};
-const xinyan = {
-  name: "Xinyan",
-  title: "Melodia incandescente"
-};
-const yanfei = {
-  name: "Yanfei",
-  title: "Saggia innocenza"
-};
-const yaoyao = {
-  name: "Yaoyao",
-  title: "Grazia germogliante"
-};
-const yelan = {
-  name: "Yelan",
-  title: "Orchidea della valle"
-};
-const yoimiya = {
-  name: "Yoimiya",
-  title: "Euforia di fuochi"
-};
-const zhongli = {
-  name: "Zhongli",
-  title: "Vago mundo"
-};
-const itIT = {
-  "a-thousand-floating-dreams": "Mille sogni fluttuanti",
-  akuoumaru,
-  "alley-hunter": "Cacciatore urbano",
-  "amos-bow": "Arco di Amos",
-  "aqua-simulacra": "Aqua simulacra",
-  "aquila-favonia": "Aquila Favonia",
-  "beacon-of-the-reed-sea": "Faro del Mare dei Giunchi",
-  "black-tassel": "Pennacchio nero",
-  "bloodtained-greatsword": "Spadone insanguinato",
-  "calamity-queller": "Flagello delle calamit\xE0",
-  "cashflow-supervision": "Supervisione pecuniaria",
-  "cool-steel": "Lama fredda",
-  "debate-club": "Mazza della persuasione",
-  "dragon_s-bane": "Scacciadraghi",
-  "elegy-for-the-end": "Elegia finale",
-  "emerald-orb": "Sfera smeraldina",
-  "engulfing-lightning": "Fulmine fagocitante",
-  "everlasting-moonglow": "Luna perenne",
-  "eye-of-perception": "Occhio della percezione",
-  "favonius-codex": "Codice di Favonius",
-  "favonius-greatsword": "Spadone di Favonius",
-  "favonius-lance": "Lancia di Favonius",
-  "favonius-sword": "Spada di Favonius",
-  "favonius-warbow": "Arco da guerra di Favonius",
-  "ferrous-shadow": "Ombra di ferro",
-  "freedom-sworn": " Giuramento di libert\xE0",
-  "haran-geppaku-futsu": "Haran Geppaku Futsu",
-  "harbinger-of-dawn": "Messaggera dell'alba",
-  "hunter_s-path": "Sentiero del cacciatore",
-  "jadefall-splendor": "Splendore del Giadiluvio",
-  "kagura_s-verity": "Verit\xE0 della Kagura",
-  "key-of-khaj-nisut": "Chiave del Khaj-Nisut",
-  "light-of-foliar-incision": "Lume del Taglio frondoso",
-  "lion_s-roar": "Ruggito del leone",
-  "lithic-blade": "Lama litica",
-  "lithic-spear": "Lancia litica",
-  "lost-prayer-to-the-sacred-winds": "Origine dei venti sacri",
-  "magic-guide": "Manuale di magia",
-  "makhaira-aquamarine": "Acquamarina di Makhaira",
-  "memory-of-dust": "Memorie terrene",
-  "mistsplitter-reforged": "Squarcianebbia riforgiata",
-  "mitternachts-waltz": "Valzer notturno",
-  "mouun_s-moon": "Luna di Mouun",
-  "polar-star": "Stella polare",
-  "portable-power-saw": "Sega elettrica portatile",
-  "primordial-jade-cutter": "Spada di giada primordiale",
-  "primordial-jade-winged-spear": "Lancia di giada primordiale",
-  "prospector-drill": "Trivella mineraria",
-  rainslasher,
-  "range-gauge": "Indicatore distanziometrico",
-  "raven-bow": "Arco corvino",
-  "redhorn-stonethresher": "Spaccarocce Cornorosso",
-  rust,
-  "sacrificial-bow": "Arco sacrificale",
-  "sacrificial-fragments": "Frammenti sacrificali",
-  "sacrificial-greatsword": "Spadone sacrificale",
-  "sacrificial-sword": "Spada sacrificale",
-  "sharpshooter_s-oath": "Patto del cecchino",
-  "skyrider-sword": "Spadone del Cavalcacieli",
-  "skyward-atlas": "Atlante celeste",
-  "skyward-blade": "Lama celeste",
-  "skyward-harp": "Arpa celeste",
-  "skyward-pride": "Orgoglio celeste",
-  "skyward-spine": "Lancia d'osso celeste",
-  slingshot,
-  "song-of-broken-pines": "Canzone silvestre",
-  "splendor-of-tranquil-waters": "Fulgore delle placide acque",
-  "staff-of-homa": "Bastone di Homa",
-  "staff-of-the-scarlet-sands": "Bastone delle sabbie scarlatte",
-  "summit-shaper": "Affettavette",
-  "the-alley-flash": "Luce nei vicoli",
-  "the-bell": "Spadone del tempo",
-  "the-dockhands-assistant": "Aiutante del porto",
-  "the-first-great-magic": "Prima grande magia",
-  "the-flute": "Flauto",
-  "the-stringless": "Monocorda",
-  "the-unforged": "Spadone grezzo",
-  "the-widsith": "Sinfonia errante",
-  "thrilling-tales-of-dragon-slayers": "Epiche gesta degli Ammazzadraghi",
-  "thundering-pulse": "Battito tonante",
-  "tome-of-the-eternal-flow": "Tomo del flusso perenne",
-  "tulaytullah_s-remembrance": "Rimembranza di Tulaytullah",
-  verdict,
-  "vortex-vanquisher": "Squarciavortice",
-  "wavebreaker_s-fin": "Pinna del Frangionde",
-  "wine-and-song": "Vino e musica",
-  "wandering-evenstar": "Astro del vespro errante",
-  "wolf_s-gravestone": "Trapasso ululante",
-  "xiphos-moonlight": "Chiarore di Xiphos",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "Arataki Itto",
-    title: "Eroe di Hanamizaka"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "Hu Tao",
-    title: "Fragranza del disgelo"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "Kaedehara Kazuha",
-    title: "Vortice delle foglie scarlatte"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "Kamisato Ayaka",
-    title: "Airone dei ghiacci"
-  },
-  "kamisato-ayato": {
-    name: "Kamisato Ayato",
-    title: "Pilastro della forza d'animo"
-  },
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  "kujou-sara": {
-    name: "Kujou Sara",
-    title: "Kaburaya piumata"
-  },
-  "kuki-shinobu": {
-    name: "Kuki Shinobu",
-    title: "Risolutrice di ogni problema"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "Shogun Raiden",
-    title: "Piano dell'eutimia"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "Sangonomiya Kokomi",
-    title: "Perla di saggezza"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "Shikanoin Heizou",
-    title: "Armonia analitica"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "Yae Miko",
-    title: "Divertimento astuto"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "Yun Jin",
-    title: "Stella del palcoscenico"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  itIT as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ja-JP.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ja-JP.js
deleted file mode 100644
index 280f320f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ja-JP.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "\u539F\u795E\u7948\u9858\u30B7\u30DF\u30E5";
-const character = "\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC";
-const weapon = "\u6B66\u5668";
-const vision = "\u795E\u306E\u76EE";
-const anemo = "\u98A8";
-const cryo = "\u6C37";
-const dendro = "\u8349";
-const electro = "\u96F7";
-const hydro = "\u6C34";
-const geo = "\u5CA9";
-const pyro = "\u708E";
-const bow = "\u5F13";
-const catalyst = "\u6CD5\u5668";
-const claymore = "\u4E21\u624B\u5263";
-const sword = "\u7247\u624B\u5263";
-const polearm = "\u9577\u67C4\u6B66\u5668";
-const extra = "\u8FFD\u52A0\u5831\u916C";
-const obtained = "\u7372\u5F97";
-const waiting = "\u304A\u5F85\u3061\u304F\u3060\u3055\u3044";
-const connectionFailed = "\u63A5\u7D9A\u5931\u6557\u3002\u30E2\u30A6\u30A4\u30C1\u30C9\u30AA\u30BF\u30E1\u30B7\u30AF\u30C0\u30B5\u30A4";
-const confirmButton = "OK";
-const cancelButton = "\u30AD\u30E3\u30F3\u30BB\u30EB";
-const disclaimer = "\u3053\u306E\u30B5\u30A4\u30C8\u3067\u4F7F\u7528\u3055\u308C\u3066\u3044\u308B\u3059\u3079\u3066\u306E\u30EA\u30BD\u30FC\u30B9\u306FmiHoYo\u304C\u6240\u6709\u3057\u3066\u3044\u307E\u3059\u3002";
-const fanmade = "\u3053\u306E\u30A2\u30D7\u30EA\u306F\u30D5\u30A1\u30F3\u30E1\u30A4\u30C9\u3067\u3059\u3002\u3086\u3063\u304F\u308A\u3057\u3066\u3044\u3063\u3066\u306D\uFF01";
-const pressToContinue = "\u7A7A\u767D\u90E8\u5206\u3092\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u7D9A\u884C";
-const installInstruction = "\u30DB\u30FC\u30E0\u753B\u9762/\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u3078\u306E\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u624B\u9806";
-const share = "\u30B7\u30A7\u30A2";
-const screenshot = "\u30B9\u30AF\u30EA\u30FC\u30F3\u30B7\u30E7\u30C3\u30C8";
-const capturing = "\u53D6\u5F97\u4E2D";
-const rewardFirstShare = "\u521D\u56DE\u30B7\u30A7\u30A2\u5831\u916C : {qty}";
-const version = "Ver.";
-const donate = "\u5BC4\u4ED8";
-const banner = {
-  beginner: " \u521D\u5FC3\u8005\u5FDC\u63F4\u7948\u9858",
-  wanderlust: " \u5954\u8D70\u4E16\u9593",
-  "epitome-invocation": "\u795E\u92F3\u8CE6\u5F62",
-  "adrift-in-the-harbor": "\u9038\u4FD7\u9021\u5DE1",
-  "auric-blaze": "\u9EC4\u91D1\u3092\u7194\u304B\u3059 \u70C8\u65E5",
-  "azure-excursion": "\u82B1\u8E0F\u307F\u6B69\u3080 \u84BC\u6D41",
-  "ballad-in-goblets": "\u676F\u306B \u6CE8\u304C\u308C\u305F\u8A69",
-  "born-of-ocean-swell": "\u6CE2\u6298\u308A\u306E\u5239\u90A3",
-  "caution-in-confidence": "\u6212\u52C5\u67A2\u7B56",
-  "chanson-of-many-waters": "\u8846\u306E\u6C34\u306E\u980C\u6B4C",
-  "conjuring-chiaroscuro": "\u5149\u3068\u5F71 \u306E\u30C8\u30EA\u30C3\u30AF",
-  "dance-of-lantern": "\u9B5A\u9F8D\u706F\u663C",
-  "decree-of-the-deeps": "\u6DF5\u6D77 \u306B\u4EE4\u3059\u308B\u8005",
-  "discerner-of-enigmas": "\u5929\u3092\u8ADC\u77E5\u305B\u3057 \u767D\u8896",
-  "drifting-luminescence": "\u6D77\u539F \u306B\u6D6E\u304B\u3076\u8679\u73E0",
-  "everbloom-violet": "\u83EF\u7D2B\u6AFB\u7DCB",
-  "farewell-of-snezhnaya": "\u51AC\u56FD\u3068\u306E\u5225\u308C",
-  "from-ashes-reborn": "\u6B8B\u706B\u5909\u76F8",
-  "gentry-of-hermitage": "\u5927\u96A0\u671D\u5E02",
-  "immaculate-pulse": "\u5FC3\u73E0\u5FAA\u7405",
-  "in-the-name-of-the-rosula": "\u68D8\u8594\u8587\u306E\u8A93\u3044",
-  "invitation-to-mundane-life": "\u706F\u5BB4\u306E\u62DB\u304D",
-  "leaves-in-the-wind": "\u8FBB\u98A8\u306B\u821E\u3046 \u843D\u8449",
-  "moment-of-bloom": "\u5F7C\u5CB8\u6E80\u958B",
-  "oni_s-royale": "\u9B3C\u9580\u95D8\u5BB4",
-  "reign-of-serenity": "\u5F71\u5BC2\u306E\u5929\u4E0B\u4EBA",
-  "secretum-secretorum": "\u795E\u79D8\u306E\u751F\u606F",
-  "sparkling-steps": "\u30D5\u30EC\u30A2\u306E\u8A2A\u308C",
-  "tapestry-of-golden-flames": "\u5929\u306E\u5DDD\u306B\u54B2\u304D\u3057 \u5927\u8F2A",
-  "tempestuous-destiny": "\u4E07\u52AB\u306B\u6E21\u308B\u6C3E\u6FEB",
-  "the-heron_s-court": "\u767D\u9DFA\u306E\u5EAD",
-  "the-moongrass-enlightenment": "\u53E1\u667A\u3092\u6075\u3080 \u6708\u898B\u8349",
-  "the-transcendent-one-returns": "\u5875\u4E16\u306B\u623B\u308A\u3057\u4E00\u9DB4",
-  "twilight-arbiter": "\u51A5\u663C\u306E\u88C1\u5B9A",
-  "twirling-lotus": "\u512A\u3005\u305F\u308B \u84EE\u6B4C\u306E\u821E",
-  "viridescent-vigil": "\u6DF1\u304D\u68EE\u306E \u5DE1\u56DE\u8005"
-};
-const editor = {
-  bannerConfig: "{banner}  \u78BA\u7387\u8A2D\u5B9A",
-  baseRate: "\u2605{rarity} \u57FA\u790E\u51FA\u73FE\u78BA\u7387:",
-  maxPity: "\u2605{rarity} \u5929\u4E95:",
-  hardPity: "\u2605{rarity} \u78BA\u7387\u4E0A\u6607\u304C\u59CB\u307E\u308B\u7948\u9858\u9023\u6570:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u7372\u5F97\u78BA\u7387:",
-  charRate: "\u6B66\u5668\u3067\u306F\u306A\u304F\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u5165\u624B\u3059\u308B\u78BA\u7387",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "\u8ECC\u5B9A\u6B66\u5668\u7372\u5F97\u78BA\u7387:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "\u521D\u671F\u8A2D\u5B9A\u306B\u623B\u3059",
-  resetPrompt: '<b>"{banner}"</b> \u306E\u78BA\u7387\u8A2D\u5B9A\u3092\u521D\u671F\u8A2D\u5B9A\u306B\u623B\u3057\u307E\u3059\u304B\uFF1F',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "\u7948\u9858",
-  rollButton: "{count}\u56DE\u7948\u9858",
-  stellaFortuna: "\u8A72\u5F53\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u661F\u5C51",
-  loadFailed: "\u7948\u9858\u306E\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F! <br /> \u4ED6\u306E\u7948\u9858\u306B\u5207\u308A\u66FF\u3048\u308B\u3001\u307E\u305F\u306F\u30A4\u30F3\u30BF\u30FC\u30CD\u30C3\u30C8\u3078\u306E\u518D\u63A5\u7D9A\u3092\u304A\u8A66\u3057\u304F\u3060\u3055\u3044!",
-  loadMeteor: "\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9",
-  skipMeteor: "\u30B9\u30AD\u30C3\u30D7",
-  loadMeteorMsg: "<span>\u661F{star}\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3</span>\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u4E2D",
-  meteorNotLoaded: "\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u304C\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002\u30B9\u30E0\u30FC\u30BA\u306A\u7948\u9858\u306E\u305F\u3081\u306B\u3001\u4E8B\u524D\u306B<span>\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9</span>\u3059\u308B\u304B\u3001<span>\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u306E\u30B9\u30AD\u30C3\u30D7\u3092\u30AA\u30F3</span>\u306B\u3057\u307E\u3059",
-  preloadFilesMsg: "*\u8AAD\u307F\u8FBC\u307E\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u306F\u30D6\u30E9\u30A6\u30B6\u30B9\u30C8\u30EC\u30FC\u30B8\u306B\u4FDD\u5B58\u3055\u308C\u308B\u305F\u3081\u3001\u30B5\u30A4\u30C8\u304C\u66F4\u65B0\u3055\u308C\u308B\u307E\u3067\u518D\u5EA6\u8AAD\u307F\u8FBC\u3080\u5FC5\u8981\u306F\u3042\u308A\u307E\u305B\u3093\u3002",
-  banner: {
-    text: "\u7948\u9858",
-    allBanner: "\u5168\u3066\u306E\u7948\u9858",
-    previous: "\u904E\u53BB\u306E\u7948\u9858\u4E00\u89A7",
-    findBanner: "\u7948\u9858\u3092\u691C\u7D22",
-    group: "\u8868\u793A",
-    beginner: " \u521D\u5FC3\u8005\u5FDC\u63F4\u7948\u9858",
-    "character-event": "\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC",
-    "weapon-event": "\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u6B66\u5668",
-    standard: "\u901A\u5E38\u7948\u9858",
-    wishDescription: "\u7948\u9858\u309210\u56DE\u3059\u308B\u3068\u3001\u5FC5\u305A\u26054\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",
-    novice: "\u521D\u5FC3\u8005\u5411\u3051\u7948\u9858",
-    up: "UP!",
-    beginnerSet: "\u521D\u56DE10\u902320%\u30AA\u30D5\u3001{character}\u304C\u5FC5\u305A\u7372\u5F97\u53EF\u80FD",
-    beginnerNote: "\u300C\u30E1\u30A4\u30C9\u306E\u793C\u5100\u306B\u6C17\u3092\u3064\u3051\u307E\u3059\u3002\u300D",
-    beginnerChance: "\u6B8B\u308A\u56DE\u6570\uFF1A{chances}",
-    standardNote: "\u901A\u5E38\u7948\u9858\u306F\u671F\u9650\u304C\u3042\u308A\u307E\u305B\u3093\u3002",
-    allWeaponTypes: "\u5168\u7A2E\u985E",
-    etc: "\u306A\u3069",
-    probIncreased: "\u51FA\u73FE\u78BA\u7387\u30A2\u30C3\u30D7\uFF01",
-    eventNote: "\u30A4\u30D9\u30F3\u30C8\u9650\u5B9A\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306F\u78BA\u7387UP\u671F\u9593\u4E2D\u306B\u305D\u308C\u305E\u308C\u306E\u7948\u9858\u304B\u3089\u3057\u304B\u7372\u5F97\u3067\u304D\u307E\u305B\u3093\u3002",
-    viewDetails: "\u5177\u4F53\u7684\u306A\u5185\u5BB9\u306F\u3010\u8A73\u7D30\u3011\u304B\u3089\u78BA\u8A8D\u3067\u304D\u307E\u3059\u3002"
-  },
-  epitomizedPath: {
-    text: "\u795E\u92F3\u8ECC\u5B9A",
-    fatePoint: "\u547D\u5B9A\u5024",
-    cancelPrompt: "\u73FE\u5728\u306E\u8ECC\u5B9A\u3092\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u307E\u3059\u304B\uFF1F",
-    cancelDesc: "\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002",
-    selectWeapon: "\u8ECC\u5B9A\u3055\u308C\u305F\u6B66\u5668",
-    chartCourseOf: "{target}\u3092\u8ECC\u5B9A\u3059\u308B",
-    cancelCourse: "\u8ECC\u5B9A\u3092\u30AD\u30E3\u30F3\u30BB\u30EB",
-    chartCourse: "\u8ECC\u5B9A",
-    courseSetFor: "\u73FE\u5728\u306E\u8ECC\u5B9A: {selectedCourse}",
-    description: [
-      "\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u306F\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u306E\u7279\u5225\u4ED5\u69D8\u3067\u3059\u3002",
-      "\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u3001\u5E0C\u671B\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26055\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u305F\u5F8C\u3001\u7948\u9858\u3067<span>\u7372\u5F97\u3057\u305F\u26055\u6B66\u5668\u304C\u8ECC\u5B9A\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u30921\u70B9\u7372\u5F97\u3057\u307E\u3059</span>\u3002",
-      "\u547D\u5B9A\u5024\u304C\u4E0A\u9650\u306B\u9054\u3057\u305F\u6642\u3001\u6B21\u306B\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u5834\u5408\u3001\u5FC5\u305A\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",
-      "\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u3067\u3001\u7948\u9858\u3067<span>\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u306E\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u547D\u5B9A\u5024\u304C\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059</span>\u3002",
-      "\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F\u7D2F\u8A08\u3055\u308C\u307E\u305B\u3093\u3002",
-      "\u6B66\u5668\u306E\u8ECC\u5B9A\u72B6\u614B\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002<span>\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059</span>\u3002",
-      "<span>\u4ECA\u671F\u306E\u300C\u795E\u92F3\u8CE6\u5F62\u300D\u304C\u7D42\u4E86\u3057\u305F\u5F8C\u3001\u547D\u5B9A\u5024\u306F\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u307E\u3059</span>\u3002"
-    ]
-  },
-  result: {
-    skip: "\u30B9\u30AD\u30C3\u30D7",
-    meteorFailed: "\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u306E\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
-    "new": "\u65B0\u898F",
-    convertion: "\u5909\u63DB",
-    title: "{item} \u7948\u9858\u7D50\u679C"
-  }
-};
-const outfit = {
-  heading: "\u30AD\u30E3\u30E9\u5916\u89B3",
-  "default": "\u30C7\u30D5\u30A9\u30EB\u30C8",
-  setOutfit: "\u5207\u308A\u66FF\u3048",
-  owned: "\u6240\u6709\u6E08",
-  purchasePrompt: "\u5BFE\u5FDC\u3059\u308B\u30AD\u30E3\u30E9\u306F\u307E\u3060\u672A\u6240\u6301\u3067\u3059\u304C\u3001\u672C\u5F53\u306B\u3053\u306E\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0\u3092\u8CFC\u5165\u3057\u307E\u3059\u304B\uFF1F",
-  promptInfo: "\u307E\u305F\u5F8C\u3067\u6765\u3088\u3046\u3001\u5148\u306B\u30AD\u30E3\u30E9\u3092\u624B\u306B\u5165\u308C\u3088\u3046\uFF01",
-  obtained: "\u65B0\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0\u7372\u5F97",
-  unlocked: "{character}\u5C02\u7528\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0",
-  item: {
-    "5-star-outrider": {
-      name: "\u300C\u6E80\u70B9\u306E\u5075\u5BDF\u9A0E\u58EB\u300D"
-    },
-    "favonian-fevotion": {
-      name: "\u98A8\u306E\u52A0\u8B77"
-    },
-    "flowing-fate": {
-      name: "\u661F\u547D\u6D41\u8EE2"
-    },
-    "executor_s-thorns": {
-      name: "\u68D8\u306E\u51E6\u5211"
-    },
-    "sea-breeze-dandelion": {
-      name: "\u6D77\u98A8\u306E\u5922",
-      description: "\u590F\u3092\u30E2\u30C1\u30FC\u30D5\u306B\u3057\u305F\u30B8\u30F3\u306E\u8863\u88C5\u3002\u6DBC\u3057\u6C17\u306A\u4F5C\u308A\u3060\u304C\u3001\u540C\u6642\u306B\u512A\u96C5\u3055\u3082\u611F\u3058\u3089\u308C\u308B\u3002\u6D77\u8FBA\u306E\u65C5\u306B\u3074\u3063\u305F\u308A\u3002"
-    },
-    "summertime-sparkle": {
-      name: "\u30B5\u30DE\u30FC\u30BF\u30A4\u30E0\u30B9\u30D1\u30FC\u30AF\u30EB",
-      description: "\u6D77\u8FBA\u3092\u30E2\u30C1\u30FC\u30D5\u306B\u3057\u305F\u30D0\u30FC\u30D0\u30E9\u306E\u8863\u88C5\u3002\u590F\u306E\u6D3B\u6C17\u6EA2\u308C\u308B\u714C\u3073\u3084\u304B\u306A\u30B9\u30AB\u30FC\u30C8\u304B\u3089\u306F\u3001\u723D\u3084\u304B\u306A\u6D77\u306E\u9999\u308A\u304C\u6F02\u3063\u3066\u304F\u308B\u3002"
-    },
-    "opulent-splendor": {
-      name: "\u9713\u88FE\u306E\u821E",
-      description: "\u523B\u6674\u306E\u793C\u670D\u3002\u6D77\u706F\u796D\u306E\u4F73\u666F\u306E\u4E2D\u3001\u904E\u53BB\u306E\u82E6\u5FC3\u306B\u3088\u308A\u63CF\u304B\u308C\u305F\u7DDA\u306B\u306F\u3001\u4ECA\u5BB5\u306E\u8EFD\u3084\u304B\u3067\u9E97\u3057\u3044\u59FF\u304C\u7E54\u308A\u8FBC\u307E\u308C\u3066\u3044\u308B\u3002"
-    },
-    "orchid_s-evening-gown": {
-      name: "\u7D17\u306E\u5E7D\u862D",
-      description: "\u51DD\u5149\u306E\u793C\u670D\u3002\u7D3A\u8272\u306E\u30C9\u30EC\u30B9\u306F\u5F7C\u5973\u306E\u512A\u96C5\u3067\u7F8E\u3057\u3044\u66F2\u7DDA\u3092\u63CF\u304D\u3001\u8DB3\u9996\u3092\u98FE\u3063\u3066\u3044\u308B\u8776\u306E\u7FBD\u306F\u305F\u304A\u3084\u304B\u3055\u3092\u6F14\u51FA\u3057\u3066\u3044\u308B\u3002"
-    },
-    "ein-immernachtstraum": {
-      name: "\u6975\u591C\u306E\u771F\u5922",
-      description: "\u7687\u5973\u30D5\u30A3\u30C3\u30B7\u30E5\u30EB\u306E\u796D\u793C\u8863\u88C5\u3002\u9AD8\u8CB4\u306A\u308B\u8005\u304C\u3044\u3064\u307E\u3067\u3082\u52C7\u6C17\u3068\u8AA0\u610F\u3001\u305D\u3057\u3066\u5584\u826F\u306A\u5FC3\u3092\u6301\u3061\u7D9A\u3051\u3001\u3044\u304B\u306A\u308B\u60AA\u306B\u3082\u5C48\u3057\u306A\u3044\u3088\u3046\u306B\u3002"
-    },
-    "red-dead-of-night": {
-      name: "\u30EC\u30C3\u30C9\u30C7\u30C3\u30C9\u30FB\u30AA\u30D6\u30FB\u30CA\u30A4\u30C8",
-      description: "\u30C7\u30A3\u30EB\u30C3\u30AF\u304C\u96A0\u5BC6\u884C\u52D5\u3092\u3059\u308B\u969B\u306B\u7740\u308B\u8863\u88C5\u306E\u4E00\u3064\u3002\u305D\u308C\u306F\u307E\u308B\u3067\u3001\u5F71\u306E\u4E2D\u3067\u71C3\u3048\u308B\u708E\u306E\u3088\u3046\u3002\u6575\u306E\u76EE\u306B\u713C\u304D\u4ED8\u3044\u305F\u6DF1\u7D05\u306E\u6B8B\u75D5\u306F\u3001\u5F7C\u3089\u306B\u6D88\u3048\u308B\u3053\u3068\u306E\u306A\u3044\u60AA\u5922\u3092\u690D\u3048\u4ED8\u3051\u308B\u3002"
-    },
-    "a-sobriquet-under-shade": {
-      name: "\u8449\u306B\u96A0\u308C\u3057\u82B3\u540D",
-      description: "\u30EA\u30B5\u304C\u30B9\u30E1\u30FC\u30EB\u3092\u518D\u8A2A\u3057\u305F\u969B\u306B\u4F5C\u3089\u305B\u305F\u8863\u88C5\u3002\u670D\u88C5\u306E\u5B9F\u7528\u6027\u3068\u30A8\u30EC\u30AC\u30F3\u30B9\u306E\u30D0\u30E9\u30F3\u30B9\u306F\u7D76\u5999\u3002\u30EA\u30B5\u306E\u5B66\u751F\u6642\u4EE3\u306E\u5236\u670D\u3068\u5C11\u3057\u4F3C\u3066\u3044\u308B\u3002"
-    },
-    "springbloom-missive": {
-      name: "\u82B1\u6642\u306B\u8A2A\u308C\u305F\u624B\u7D19",
-      description: "\u795E\u91CC\u7DBE\u83EF\u306E\u304A\u51FA\u304B\u3051\u8863\u88C5\u3002\u5A2F\u697D\u5C0F\u8AAC\u306E\u633F\u7D75\u306B\u767B\u5834\u3059\u308B\u30D5\u30A9\u30F3\u30C6\u30FC\u30CC\u5973\u6027\u306E\u8863\u88C5\u3092\u30E2\u30C1\u30FC\u30D5\u306B\u3057\u305F\u6D0B\u670D\u3067\u3001\u30D5\u30A9\u30F3\u30C6\u30FC\u30CC\u306E\u8CB4\u5A66\u4EBA\u306E\u751F\u6D3B\u3092\u57A3\u9593\u898B\u3066\u3044\u308B\u3088\u3046\u306A\u6C17\u5206\u306B\u3055\u305B\u3066\u304F\u308C\u308B\u3002"
-    },
-    "blossoming-starlight": {
-      name: "\u661F\u71ED\u306B\u63FA\u308C\u308B\u721B\u82B1",
-      description: "\u30AF\u30EC\u30FC\u304C\u7279\u5B9A\u306E\u6F14\u5287\u306B\u51FA\u6F14\u3059\u308B\u969B\u306B\u7740\u308B\u4E01\u5BE7\u306A\u4F5C\u308A\u306E\u8863\u88C5\u3002\u9BAE\u3084\u304B\u306A\u8272\u3092\u3057\u3066\u304A\u308A\u3001\u307E\u308B\u3067\u30AF\u30EA\u30FC\u30E0\u306E\u82B1\u3068\u771F\u7D05\u306E\u30ED\u30A6\u30BD\u30AF\u3067\u98FE\u3089\u308C\u305F\u30B1\u30FC\u30AD\u306E\u3088\u3046\u306B\u3001\u300C\u30CF\u30C3\u30D4\u30FC\u300D\u3068\u300C\u30B9\u30DE\u30A4\u30EB\u300D\u3092\u5192\u967A\u306E\u81F3\u308B\u3068\u3053\u308D\u306B\u632F\u308A\u307E\u3044\u3066\u304F\u308C\u308B\u3002"
-    },
-    "sailwind-shadow": {
-      name: "\u5E06\u5F71\u306B\u622F\u308B\u98A8",
-      description: "\u30AC\u30A4\u30A2\u304C\u821E\u53F0\u4E0A\u3067\u300C\u77ED\u5200\u306E\u5927\u76D7\u8CCA\u300D\u3092\u6F14\u3058\u308B\u6642\u306E\u8863\u88C5\u3002\u300C\u76EE\u3092\u5F15\u304F\u300D\u3053\u3068\u3092\u30B3\u30F3\u30BB\u30D7\u30C8\u3068\u3057\u305F\u83EF\u3084\u304B\u306A\u4F5C\u308A\u3002\u3057\u304B\u3057\u3001\u7740\u7528\u306B\u306F\u305D\u3053\u307E\u3067\u624B\u9593\u304C\u304B\u304B\u3089\u305A\u3001\u3080\u3057\u308D\u4E00\u756A\u624B\u5165\u308C\u306B\u6642\u9593\u3092\u8981\u3059\u308B\u306E\u306F\u88C5\u98FE\u54C1\u3068\u77ED\u5200\u306E\u307B\u3046\u306B\u306A\u3063\u3066\u3044\u308B\u3002"
-    }
-  }
-};
-const details = {
-  text: "\u8A73\u7D30\u8AAC\u660E",
-  promotional: "\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7",
-  itemlist: "\u30E9\u30A4\u30F3\u30CA\u30C3\u30D7",
-  increasedRate: "\u4EE5\u4E0B\u306E\u30A2\u30A4\u30C6\u30E0\u300C\u51FA\u73FE\u78BA\u7387UP\uFF01\uFF01\uFF01\u300D",
-  percentageDrop: "\u2605{rarity}\u51FA\u73FE\u78BA\u7387\u306E{percentage}",
-  wishDetails: "\u7948\u9858\u306E\u8A73\u7D30\u306F\u4EE5\u4E0B\u306E\u901A\u308A\u3067\u3059\u3002",
-  probInfo: "\u2605{rarity}\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F\uFF1A{singlePercentage} (\u5929\u4E95\u3092\u542B\u3080\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\u306F\uFF1A{avgPercentage})",
-  itemWishFor: "\u30E9\u30A4\u30F3\u30CA\u30C3\u30D7\u306F\u4EE5\u4E0B\u306E\u901A\u308A\u3067\u3059\u3002",
-  itemType: "\u30BF\u30A4\u30D7",
-  itemName: "\u30BF\u30A4\u30C8\u30EB",
-  beginnerInfo: "\u671F\u9650\u306A\u3057\uFF0820\u9023\u306E\u7948\u9858\u5F8C\u306B\u7D42\u4E86\uFF09",
-  limited: "\u671F\u9593\u9650\u5B9A\u30A4\u30D9\u30F3\u30C8",
-  permanent: "\u671F\u9650\u306A\u3057",
-  alert: "\u203B\u5F53\u7948\u9858\u306F\u300C{wishName}\u300D\u3067\u3059\u3002\u7948\u9858\u56DE\u6570\u306E\u7D2F\u8A08\u306F\u300C{wishName}\u300D\u306E\u307F\u3067\u6570\u3048\u3089\u308C\u3001\u4ED6\u306E\u7948\u9858\u3068\u306F\u5225\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002",
-  beginner: [
-    "\u521D\u5FC3\u8005\u5FDC\u63F4\u7948\u9858\u306F\u65E5\u6642\u306B\u3088\u308B\u671F\u9650\u304C\u3042\u308A\u307E\u305B\u3093\u3002\u5F53\u7948\u9858\u306F\u30C6\u30A4\u30EF\u30C3\u30C8\u306E\u65B0\u7C73\u65C5\u4EBA\u5411\u3051\u306E\u5FDC\u63F4\u7948\u9858\u3068\u306A\u308A\u307E\u3059\u3002\u5F53\u7948\u9858\u3067\u306F\u300110\u9023\u3067\u6D88\u8017\u3059\u308B\u51FA\u4F1A\u3044\u306E\u7E01\u306E\u6570\u304C<span>20%\u30AA\u30D5</span>\u306B\u306A\u308A\u307E\u3059\u3002\u306A\u304A\u3001\u521D\u56DE10\u9023\u3067<span>\u5FC5\u305A</span>\u300C{character}\u300D\u304C\u51FA\u73FE\u3057\u3001\u6B21\u306E10\u9023\u3067\u5FC5\u305A<span>\u4ED6\u306E</span>\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u304C\u51FA\u73FE\u3057\u307E\u3059\uFF01\u5F53\u7948\u9858\u306F\u7948\u9858\u56DE\u6570\u306E\u4E0A\u9650\u304C\u3042\u308A\u307E\u3059\u3002\u304A\u4E00\u4EBA\u69D8<span>20\u9023</span>\u9650\u308A\u3068\u306A\u308A\u307E\u3059\u300220\u9023\u3092\u5F15\u304D\u7D42\u3048\u308B\u3053\u3068\u3067\u7948\u9858\u7D42\u4E86\u306B\u306A\u308A\u307E\u3059\u3002",
-    "\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002",
-    "\u3013\u7948\u9858\u8AAC\u660E\u3013",
-    "\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>5.100%</span>\u3067\u3059\u3002\u7DCF\u5408\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>13.000%</span>\u3067\u3059\u3002\u6700\u5927<span>10\u9023</span>\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002"
-  ],
-  standard: [
-    "\u901A\u5E38\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306F\u65E5\u6642\u306B\u3088\u308B\u671F\u9650\u304C\u3042\u308A\u307E\u305B\u3093\u3002\u5F53\u7948\u9858\u3067\u306F\u3001\u975E\u9650\u5B9A\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u304C\u51FA\u73FE\u3057\u307E\u3059\u3002\u5F53\u7948\u9858\u3067\u306F\u300110\u9023\u6BCE\u306B<span>\u5FC5\u305A</span>\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u304C\u51FA\u73FE\u3057\u307E\u3059\u3002",
-    "\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002",
-    "\u3013\u7948\u9858\u8AAC\u660E\u3013",
-    "\u26055\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.300%</span>\u3067\u3059\u3002\u26055\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.300%</span>\u3067\u3059\u3002\u26055\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>1.600%</span>\u3067\u3059\u3002\u6700\u5927<span>90</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<br>\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>5.100%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>13.000%</span>\u3067\u3059\u3002\u6700\u592710\u9023\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<span>10</span>\u9023\u306E\u78BA\u5B9A\u67A0\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>99.400%</span>\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002"
-  ],
-  events: [
-    "\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u304C\u958B\u59CB\u3055\u308C\u307E\u3057\u305F\u3002\u30A4\u30D9\u30F3\u30C8\u671F\u9593\u4E2D\u3001<span>\u9650\u5B9A</span>\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{featuredCharacter}\u300D\u3001\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{rateupCharacters}\u300D\u306E\u51FA\u73FE\u78BA\u7387\u304C<span>\u5927\u5E45\u306BUP</span>\uFF01<br/><span> \u203B\u4E0A\u8A18\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u4E2D\u3067\u3001\u9650\u5B9A\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306F\u901A\u5E38\u7948\u9858\u30FB\u300C\u5954\u8D70\u4E16\u9593\u300D\u306B\u5B9F\u88C5\u3055\u308C\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\u3002 </span>",
-    "\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002",
-    "\u3013\u7948\u9858\u8AAC\u660E\u3013",
-    "\u3010\u26055\u30A2\u30A4\u30C6\u30E0\u3011",
-    "\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>1.600%</span>\u3067\u3059\u3002\u6700\u5927<span>90</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>50.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{featuredCharacter}\u300D\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26055\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",
-    "\u3010\u26054\u30A2\u30A4\u30C6\u30E0\u3011",
-    "\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>5.100%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>2.550%</span>\u3067\u3059\u3002\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>13.000%</span>\u3067\u3059\u3002\u6700\u592710\u9023\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<span>10</span>\u9023\u306E\u78BA\u5B9A\u67A0\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>99.400%</span>\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>0.600%</span>\u3067\u3059\u3002<br>\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>50.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u300C{rateupCharacters}\u300D\u304B\u30891\u4F53\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7948\u9858\u3067\u7372\u5F97\u3067\u304D\u308B\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u51FA\u73FE\u78BA\u7387\u306F\u5747\u7B49\u3067\u3059\u3002"
-  ],
-  weapons: [
-    "\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u304C\u958B\u59CB\u3055\u308C\u307E\u3057\u305F\u3002\u30A4\u30D9\u30F3\u30C8\u671F\u9593\u4E2D\u3001<span>\u9650\u5B9A</span>\u26055\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u3001\u26054\u6B66\u5668\u300C{rateupWeapons}\u300D\u306E\u51FA\u73FE\u78BA\u7387\u304C<span>\u5927\u5E45\u306BUP</span>\uFF01<br/><span> \u203B\u4E0A\u8A18\u306E\u6B66\u5668\u306E\u4E2D\u3067\u3001\u9650\u5B9A\u6B66\u5668\u304C\u901A\u5E38\u7948\u9858\u30FB\u300C\u5954\u8D70\u4E16\u9593\u300D\u306B\u5B9F\u88C5\u3055\u308C\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\u3002 </span>",
-    "\u203B\u901A\u5E38\u3001\u5168\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u306F\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u304C\u9069\u7528\u3055\u308C\u307E\u3059\u3002\u78BA\u7387UP\u304C\u3042\u308B\u3001\u307E\u305F\u306F\u5929\u4E95\u304C\u767A\u52D5\u3057\u305F\u5834\u5408\u306E\u78BA\u7387\u306F\u3001\u8A72\u5F53\u3059\u308B\u7948\u9858\u306E\u8A73\u7D30\u8AAC\u660E\u3092\u3054\u78BA\u8A8D\u304F\u3060\u3055\u3044\u3002",
-    "\u3013\u7948\u9858\u8AAC\u660E\u3013",
-    "\u3010\u26055\u30A2\u30A4\u30C6\u30E0\u3011",
-    "\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26055\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>0.700%</span>\u3067\u3059\u3002\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>1.850%</span>\u3067\u3059\u3002\u6700\u5927<span>80</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26055\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<br/>\u26055\u6B66\u5668\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>75.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u304B\u30891\u672C\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26055\u6B66\u5668\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26055\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u547D\u5B9A\u5024\u304C\u4E0A\u9650\u306B\u9054\u3057\u3066\u3044\u306A\u3044\u72B6\u6CC1\u3067\u3001\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u5834\u5408\u3001\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u3054\u3068\u306E\u51FA\u73FE\u78BA\u7387\u306F\u5747\u7B49\u3067\u3059\u3002<br/>\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u3067\u306F\u3001\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26055\u6B66\u5668\u3092\u8ECC\u5B9A\u3067\u304D\u307E\u3059\u3002\u8ECC\u5B9A\u6B66\u5668\u306E\u9078\u629E\u306F\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u671F\u9593\u4E2D\u306E\u307F\u6709\u52B9\u3067\u3059\u3002<br/>\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u305F\u5F8C\u306B\u7372\u5F97\u3057\u305F\u26055\u6B66\u5668\u304C\u8ECC\u5B9A\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u30921\u70B9\u7372\u5F97\u3057\u307E\u3059\u3002\u547D\u5B9A\u5024\u304C<span>\u4E0A\u9650</span>\u306B\u9054\u3057\u305F\u6642\u3001\u6B21\u306B\u4ECA\u671F\u306E\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u5834\u5408\u3001<span>\u5FC5\u305A</span>\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u547D\u5B9A\u5024\u304C\u4E0A\u9650\u306B\u9054\u3057\u3066\u3044\u308B\u304B\u5426\u304B\u306B\u95A2\u308F\u3089\u305A\u3001<span>0</span>\u306B\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002<br/>\u300C\u795E\u92F3\u8ECC\u5B9A\u300D\u3092\u4F7F\u3063\u3066\u6B66\u5668\u3092\u8ECC\u5B9A\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F<span>\u7D2F\u8A08\u3055\u308C\u307E\u305B\u3093</span>\u3002<br/>\u8ECC\u5B9A\u6B66\u5668\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002\u73FE\u5728\u306E\u8ECC\u5B9A\u6B66\u5668\u3092\u5909\u66F4\u307E\u305F\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u305F\u5834\u5408\u3001\u547D\u5B9A\u5024\u306F<span>0</span>\u306B\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u518D\u30AB\u30A6\u30F3\u30C8\u3055\u308C\u307E\u3059\u3002<br/>\u203B\u4ECA\u671F\u306E\u7948\u9858\u306E\u547D\u5B9A\u5024\u306F\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u671F\u9593\u4E2D\u306E\u307F\u6709\u52B9\u3067\u3059\u3002\u4ECA\u671F\u306E\u7948\u9858\u304C\u7D42\u4E86\u3057\u305F\u5F8C\u3001\u547D\u5B9A\u5024\u306F<span>0</span>\u306B\u30EA\u30BB\u30C3\u30C8\u3055\u308C\u307E\u3059\u3002",
-    "\u3010\u26054\u30A2\u30A4\u30C6\u30E0\u3011",
-    "\u4ECA\u671F\u306E\u30A4\u30D9\u30F3\u30C8\u7948\u9858\u30FB\u300C{bannerName}\u300D\u306B\u304A\u3044\u3066\u3001\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>6.000%</span>\u3067\u3059\u3002\u26054\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>3.000%</span>\u3067\u3059\u3002\u26054\u6B66\u5668\u306E\u57FA\u790E\u51FA\u73FE\u78BA\u7387\u306F<span>3.000%</span>\u3067\u3059\u3002\u26054\u30A2\u30A4\u30C6\u30E0\u306E\u7DCF\u5408\u51FA\u73FE\u78BA\u7387\uFF08\u5929\u4E95\u3092\u542B\u3081\u3066\uFF09\u306F<span>14.500%</span>\u3067\u3059\u3002\u6700\u5927<span>10</span>\u9023\u7948\u9858\u3067\u5FC5\u305A\u26054\u3001\u307E\u305F\u306F\u305D\u308C\u4EE5\u4E0A\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002<span>10</span>\u9023\u306E\u78BA\u5B9A\u67A0\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>99.300%</span>\u3001\u26055\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3067\u304D\u308B\u78BA\u7387\u306F<span>0.700%</span>\u3067\u3059\u3002 <br/>\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u51FA\u73FE\u3057\u305F\u6642\u3001<span>75.000%</span>\u306E\u78BA\u7387\u3067\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u300C{rateupWeapons}\u300D\u304B\u30891\u672C\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7372\u5F97\u3057\u305F\u26054\u30A2\u30A4\u30C6\u30E0\u304C\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u6B66\u5668\u3067\u306F\u306A\u304B\u3063\u305F\u5834\u5408\u3001\u6B21\u306B\u5F53\u7948\u9858\u3067\u26054\u30A2\u30A4\u30C6\u30E0\u3092\u7372\u5F97\u3057\u305F\u6642\u306B<span>\u5FC5\u305A</span>\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u306E\u26054\u6B66\u5668\u3092\u7372\u5F97\u3067\u304D\u307E\u3059\u3002\u7948\u9858\u3067\u7372\u5F97\u3067\u304D\u308B\u4ECA\u671F\u306E\u30D4\u30C3\u30AF\u30A2\u30C3\u30D7\u26054\u6B66\u5668\u306E\u51FA\u73FE\u78BA\u7387\u306F\u5747\u7B49\u3067\u3059\u3002"
-  ],
-  convertion: {
-    fiveStar: "\u7948\u9858\u3067\u26055\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u540C\u6642\u306B{starglitter}\u309210\u500B\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",
-    fourStar: "\u26054\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u540C\u6642\u306B{starglitter}\u30922\u500B\u7372\u5F97\u3067\u304D\u307E\u3059\u3002",
-    threeStar: "\u26053\u6B66\u5668\u3092\u7372\u5F97\u3057\u305F\u6642\u3001\u540C\u6642\u306B{stardust}\u309215\u500B\u7372\u5F97\u3067\u304D\u307E\u3059\u3002"
-  },
-  duplicate: {
-    heading: "\u3013\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u306E\u91CD\u8907\u7372\u5F97\u3013",
-    text: "\u5404\u65B9\u6CD5\uFF08\u7948\u9858\u3001\u30B7\u30E7\u30C3\u30D7\u4EA4\u63DB\u3001\u30B7\u30B9\u30C6\u30E0\u914D\u5E03\u306A\u3069\uFF09\u3067\u3001\u2605{rarity}\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u30922\uFF5E7\u56DE\u91CD\u8907\u3057\u3066\u7372\u5F97\u3057\u305F\u6642\u3001{stellaFortuna}1\u500B\u3068\u3001{starglitter}{constBonus}\u500B\u306B\u5909\u63DB\u3055\u308C\u307E\u3059\u30028\u56DE\u76EE\u4EE5\u964D\u306E\u7372\u5F97\u3067\u306F\u3001{starglitter}{fullConstBonus}\u500B\u306B\u5909\u63DB\u3055\u308C\u307E\u3059\u3002"
-  }
-};
-const history = {
-  title: "\u7948\u9858\u5C65\u6B74",
-  text: "\u7948\u9858\u5C65\u6B74",
-  resetButton: "\u30EA\u30BB\u30C3\u30C8",
-  resetPromptTitle: "\u7948\u9858\u5C65\u6B74\u306E\u30EA\u30BB\u30C3\u30C8",
-  resetPrompt: " {bannerName} \u304B\u3089\u6392\u51FA\u3055\u308C\u305F\u3059\u3079\u3066\u306E\u30AD\u30E3\u30E9\u30AF\u30BF\u30FC\u3068\u6B66\u5668\u304C\u30A4\u30F3\u30D9\u30F3\u30C8\u30EA\u304B\u3089\u524A\u9664\u3055\u308C\u307E\u3059\u3002 \u672C\u5F53\u306B\u30EA\u30BB\u30C3\u30C8\u3057\u307E\u3059\u304B\uFF1F",
-  resetSuccess: "\u30EA\u30BB\u30C3\u30C8\u6210\u529F\uFF01",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "\u7948\u9858\u30BF\u30A4\u30D7",
-  disclaimer: "\u7948\u9858\u30C7\u30FC\u30BF\u3092\u30A4\u30F3\u30BF\u30FC\u30CD\u30C3\u30C8\u4E0A\u306B\u4FDD\u5B58\u3059\u308B\u3053\u3068\u306F\u3042\u308A\u307E\u305B\u3093\u3002IndexedDB\u3092\u5229\u7528\u3059\u308B\u305F\u3081\u3001\u30C7\u30FC\u30BF\u306F\u3059\u3079\u3066\u30D6\u30E9\u30A6\u30B6\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u306B\u4FDD\u5B58\u3055\u308C\u308B\u3053\u3068\u306B\u306A\u308A\u307E\u3059\u3002\u30E6\u30FC\u30B6\u30FC\u81EA\u8EAB\u304C\u524A\u9664/\u30EA\u30BB\u30C3\u30C8\u30DC\u30BF\u30F3\u3067\u524A\u9664\u3059\u308B\u304B\u3001\u30D6\u30E9\u30A6\u30B6\u306E\u30C7\u30FC\u30BF\u3092\u6D88\u53BB\u3057\u306A\u3044\u9650\u308A\u524A\u9664\u3055\u308C\u307E\u305B\u3093\u3002",
-  currentPity: "\u73FE\u5728\u306E\u5929\u4E95\u30AB\u30A6\u30F3\u30C8:",
-  totalPull: "\u7948\u9858\u5408\u8A08\u56DE\u6570:",
-  totalSpend: "\u6D88\u8CBB\u539F\u77F3\u7DCF\u6570:",
-  filterTxt: "\u30D5\u30A3\u30EB\u30BF\u30FC",
-  filter: "\u2605{rarity}",
-  filterAll: "\u3059\u3079\u3066",
-  pity: "\u5929\u4E95\u30AB\u30A6\u30F3\u30C8",
-  timeReceived: "\u7948\u9858\u671F\u9593",
-  waiting: "\u304A\u5F85\u3061\u304F\u3060\u3055\u3044",
-  noData: "\u30C7\u30FC\u30BF\u304C\u3042\u308A\u307E\u305B\u3093",
-  untracked: "\u30C8\u30E9\u30C3\u30AD\u30F3\u30B0\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
-  item: "\u30A2\u30A4\u30C6\u30E0",
-  win: "50%\u306B\u52DD\u5229",
-  lose: "50%\u306B\u6557\u5317",
-  guaranteed: "\u78BA\u5B9A\u7372\u5F97",
-  selected: "\u8ECC\u5B9A\u7372\u5F97",
-  olderLayout: "Ver.1\u30EC\u30A4\u30A2\u30A6\u30C8\u306B\u5207\u66FF",
-  switchv2: "Ver.2\u30EC\u30A4\u30A2\u30A6\u30C8\u306B\u5207\u66FF"
-};
-const shop = {
-  text: "\u30B7\u30E7\u30C3\u30D7",
-  paimonBargains: "\u30B9\u30BF\u30FC\u4EA4\u63DB",
-  fateNeeded: "{currency}\u304C{rollQty}\u500B\u8DB3\u308A\u307E\u305B\u3093\u304C\u3001",
-  primoNeeded: "\u539F\u77F3\u3092{primoPrice}\u500B\u4F7F\u3063\u3066\u8CFC\u5165\u3057\u307E\u3059\u304B\uFF1F",
-  purchaseUpto: "\u6570\u91CF\u9650\u5B9A 1",
-  purchaseConfirm: "\u8CFC\u5165\u78BA\u8A8D",
-  exchangeHeading: "\u30A2\u30A4\u30C6\u30E0\u3092\u4EA4\u63DB\u3059\u308B",
-  purchaseHeading: "\u30A2\u30A4\u30C6\u30E0\u3092\u4EA4\u63DB\u3059\u308B",
-  purchaseButton: "\u4EA4\u63DB",
-  pay: "\u8CFC\u5165",
-  product: "\u5546\u54C1",
-  consume: "\u6D88\u8CBB",
-  selectPayment: "\u6C7A\u6E08\u65B9\u6CD5",
-  unrealWallet: "\u30BF\u30EB\u30BF\u30EA\u30E4",
-  convertPrimo: "\u539F\u77F3\u306B\u81EA\u52D5\u5909\u63DB\u3057\u307E\u3059\u304B\uFF1F",
-  proceedPayment: "\u8CFC\u5165",
-  qty: "\u6570\u91CF",
-  insufficient: "\u30A2\u30A4\u30C6\u30E0\u4E0D\u8DB3",
-  crystalTopup: "\u7D50\u6676\u51DD\u7D50",
-  initialBonus: "\u521D\u56DE2\u500D\u30DC\u30FC\u30CA\u30B9",
-  bonus: "\u304A\u307E\u3051",
-  buyGenesisHeading: "\u5275\u4E16\u7D50\u6676\u3092\u8CFC\u5165",
-  recomendedHeading: "\u304A\u3059\u3059\u3081",
-  paimonHeading: "\u30B9\u30BF\u30FC\u4EA4\u63DB",
-  welkinNote: "\u91CD\u8907\u8CFC\u5165\u53EF\u80FD",
-  limitedOffer: "\u671F\u9593\u9650\u5B9A\u4FA1\u683C",
-  noLimitTime: "\u66F4\u65B0\u671F\u9593\uFF1A\u671F\u9650\u306A\u3057",
-  paymentChilde: "\u4FFA\u304C\u6255\u3046\u3088",
-  paymentTears: "\u305C\u3093\u3076\u30C9\u30AB\u30FC\u30F3\uFF01",
-  paymentWakaranai: "\u308F\u304B\u3089\u306A\u3044\u2026",
-  recomended: {
-    welkin: "\u7A7A\u6708\u306E\u795D\u798F",
-    newOutfit: "\u65B0\u30B3\u30B9\u30C1\u30E5\u30FC\u30E0",
-    dayRemaining: "\u6B8B\u308A {days}\u65E5",
-    alreadyClaimed: "\u672C\u65E5\u53D6\u5F97\u6E08",
-    instantlyGet: "\u8CFC\u5165\u3059\u308B\u3068\u7372\u5F97",
-    dailyGift: "\u6BCF\u65E5\u8CB0\u3048\u308B",
-    obtainTotal: "*\u6709\u6548\u671F\u965030\u65E5\uFF01\u7D2F\u8A08\u3067{totalGenesis}\u5275\u4E16\u7D50\u6676\u3068{totalPrimo}\u539F\u77F3\u304C\u7372\u5F97\u3067\u304D\u307E\u3059\uFF01",
-    claimingBlessing: "\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u5831\u916C\u3092\u7372\u5F97",
-    issuedPurchase: "\u8CFC\u5165\u3059\u308B\u3068\u7372\u5F97",
-    collect: "\u6BCE\u65E5\u8CB0\u3048\u308B"
-  },
-  exchange: {
-    starglitter: "\u30B9\u30BF\u30FC\u30E9\u30A4\u30C8\u4EA4\u63DB",
-    stardust: "\u30B9\u30BF\u30FC\u30C0\u30B9\u30C8\u4EA4\u63DB",
-    primogem: "\u539F\u77F3\u8CFC\u5165"
-  },
-  item: {
-    genesis: "\u5275\u4E16\u7D50\u6676",
-    primogem: "\u539F\u77F3",
-    intertwined: "\u7D21\u304C\u308C\u305F\u904B\u547D",
-    acquaint: "\u51FA\u4F1A\u3044\u306E\u7E01",
-    starglitter: "\u7121\u4E3B\u306E\u30B9\u30BF\u30FC\u30E9\u30A4\u30C8",
-    stardust: "\u7121\u4E3B\u306E\u30B9\u30BF\u30FC\u30C0\u30B9\u30C8"
-  },
-  description: {
-    intertwined: "\u5922\u3092\u3064\u306A\u3050\u904B\u547D\u306E\u7A2E\u3002 \u77F3\u306E\u8F1D\u304D\u306F\u672C\u6765\u4EA4\u308F\u3089\u306A\u3044\u904B\u547D\u3092\u4EA4\u5DEE\u3055\u305B\u3001\u4E92\u3044\u306E\u5922\u3092\u7E4B\u3052\u3001\u307E\u3055\u306B\u3053\u306E\u8F1D\u304D\u306F\u661F\u661F\u306E\u5FC3\u306E\u8D74\u304F\u5F62\u306B\u7E4B\u3052\u308B\u3068\u540C\u3058\u3067\u3042\u308B\u3002",
-    acquaint: "\u661F\u7A7A\u3092\u7167\u3089\u3059\u5E0C\u671B\u306E\u7A2E\u3002\u3069\u3093\u306A\u306B\u96E2\u308C\u3066\u3082\u3001\u7E01\u77F3\u306E\u5C0E\u304D\u3067\u3001\u904B\u547D\u306E\u4E8C\u4EBA\u306F\u661F\u7A7A\u306E\u4E0B\u3067\u5DE1\u308A\u4F1A\u3048\u308B\u3002"
-  }
-};
-const inventory = {
-  text: "\u30A4\u30F3\u30D9\u30F3\u30C8\u30EA",
-  unsetOutfit: "\u8863\u88C5\u89E3\u9664",
-  setOutfit: "\u8863\u88C5\u30C1\u30A7\u30F3\u30B8",
-  refinement: "\u7CBE\u932C\u30E9\u30F3\u30AF {count}",
-  constellation: "\u547D\u306E\u661F\u5EA7 {count}",
-  extra: " \u8FFD\u52A0\u6240\u6301 {count}",
-  firstSummon: "\u521D\u56DE\u7372\u5F97: {date}",
-  notOwned: "\u672A\u6240\u6301",
-  sort: "\u4E26\u3073\u66FF\u3048",
-  rarity: "\u30EC\u30A2\u5EA6",
-  name: "\u540D\u524D",
-  quantity: "\u547D\u306E\u661F\u5EA7",
-  element: "\u795E\u306E\u76EE",
-  release: "\u5B9F\u88C5\u65E5",
-  type: "\u6B66\u5668\u30BF\u30A4\u30D7",
-  owned: "\u6240\u6301",
-  showAllOption: "\u5168\u3066\u306E{item}\u3092\u8868\u793A"
-};
-const menu = {
-  no: "\u30AA\u30D5",
-  yes: "\u30AA\u30F3",
-  text: "\u30E1\u30CB\u30E5\u30FC",
-  feedback: "\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF",
-  options: "\u30AA\u30D7\u30B7\u30E7\u30F3",
-  updates: "\u66F4\u65B0\u5C65\u6B74",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "\u8A00\u8A9E",
-  currency: "\u901A\u8CA8",
-  fates: "\u7948\u9858\u56DE\u6570",
-  unlimited: "\u30A8\u30F3\u30C9\u30EC\u30B9",
-  manual: "\u30DE\u30CB\u30E5\u30A2\u30EB",
-  mute: "BGM\u30FBSE\u3092\u30DF\u30E5\u30FC\u30C8",
-  switchBanner: "\u7948\u9858\u5185\u5BB9\u306E\u5207\u66FF",
-  showAllitems: "\u30A4\u30F3\u30D9\u30F3\u30C8\u30EA\u306E\u3059\u3079\u3066\u306E\u30A2\u30A4\u30C6\u30E0\u3092\u8868\u793A",
-  autoskip: "\u7948\u9858\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u306E\u30B9\u30AD\u30C3\u30D7",
-  animatedbg: "\u30A2\u30CB\u30E1\u30FC\u30B7\u30E7\u30F3\u80CC\u666F",
-  multiRoll: "\u7948\u9858\u9023\u6570(\u30C7\u30D5\u30A9\u30EB\u30C8:10\u9023)",
-  factoryReset: "\u30C7\u30FC\u30BF\u306E\u6D88\u53BB\u3068\u521D\u671F\u5316",
-  resetTitle: "\u30C7\u30FC\u30BF\u306E\u6D88\u53BB\u3068\u521D\u671F\u5316",
-  rotate: "\u65C5\u4EBA\u3001\u753B\u9762\u3092\u6A2A\u5411\u304D\u306B\u3059\u308B\u3068\u3088\u308A\u697D\u3057\u3081\u308B\u305E\uFF01",
-  keepSetting: "\u8A2D\u5B9A\u3092\u4FDD\u6301\u3057\u305F\u307E\u307E\u6D88\u53BB <small> \u73FE\u5728\u306E\u7948\u9858\u30D0\u30CA\u30FC\u3084\u539F\u77F3\u91CF\uFF0C\u5404\u7A2E\u8A2D\u5B9A\u306F\u6D88\u53BB\u3055\u308C\u307E\u305B\u3093 </small>",
-  clearCache: "\u30AD\u30E3\u30C3\u30B7\u30E5 ( {size} ) \u3092\u30AF\u30EA\u30A2 <small>\u6D88\u53BB\u5F8C\u306F\u30DA\u30FC\u30B8\u3092\u518D\u8AAD\u307F\u8FBC\u307F\u3057\u3066\u304F\u3060\u3055\u3044</small>",
-  resetButton: "\u30EA\u30BB\u30C3\u30C8",
-  resetPrompt: "\u672C\u5F53\u306B <strong>\u3059\u3079\u3066\u306E\u30C7\u30FC\u30BF</strong> \u3092\u6D88\u53BB\u3057\u3066\u521D\u671F\u72B6\u614B\u306B\u623B\u3057\u307E\u3059\u304B\uFF1F",
-  resetSuccess: "\u30EA\u30BB\u30C3\u30C8\u6210\u529F",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "\u3053\u3061\u3089\u304B\u3089\u5165\u624B\u3067\u304D\u307E\u3059\uFF01",
-  noKey: "\u30AD\u30FC\u3092\u6301\u3063\u3066\u3044\u307E\u305B\u3093\u304B\uFF1F",
-  verifyFail: "\u30AD\u30FC\u306E\u691C\u8A3C\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u63A5\u7D9A\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\uFF01",
-  invalidKey: "\u3042\u306A\u305F\u306E\u30AD\u30FC\u306F\u6709\u52B9\u3067\u306F\u3042\u308A\u307E\u305B\u3093",
-  keyExpired1: "\u30AD\u30FC\u304C\u671F\u9650\u5207\u308C\u3067\u3059!",
-  keyExpired2: '\u3042\u306A\u305F\u306E\u30AD\u30FC: "{key}" \u306F{date}\u304B\u3089\u671F\u9650\u5207\u308C\u3067\u3059!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "\u30AD\u30FC\u3092\u5165\u529B",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "*\u5E83\u544A\u306B\u3064\u3044\u3066\u306F\u7533\u3057\u8A33\u3042\u308A\u307E\u305B\u3093\u3002\u5B9F\u969B\u3001\u3042\u306A\u305F\u304C\u671B\u3080\u3088\u3046\u306A\u4F53\u9A13\u3092\u53F0\u7121\u3057\u306B\u306F\u3057\u305F\u304F\u306A\u3044\u306E\u3067\u3059\u304C\u3001\u3053\u306E\u30A2\u30D7\u30EA\u3092\u7DAD\u6301\u3059\u308B\u305F\u3081\u306B\u7D50\u6210\u3055\u308C\u305F\u30C1\u30FC\u30E0\u3084\u30B9\u30DD\u30F3\u30B5\u30FC\u306F\u3044\u307E\u305B\u3093\u3002\u304A\u91D1\u3092\u304B\u3051\u305F\u304F\u306A\u3044\u5834\u5408\u3001\u3042\u306A\u305F\u306F\u5E83\u544A\u30D6\u30ED\u30C3\u30AB\u30FC\u3092\u30AA\u30F3\u306B\u3057\u305F\u308A\u3001\u30AB\u30B9\u30BF\u30E0 DNS \u3092\u4F7F\u7528\u3057\u305F\u308A\u3059\u308B\u3053\u3068\u3082\u3067\u304D\u307E\u3059\u3002\u7981\u6B62\u306F\u3057\u307E\u305B\u3093\u3002"
-};
-const jaJP = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  jaJP as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ja-JP2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ja-JP2.js
deleted file mode 100644
index 710048d7..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ja-JP2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "\u60E1\u738B\u4E38";
-const rainslasher = "\u96E8\u88C1";
-const rust = "\u5F13\u8535";
-const slingshot = "\u5F3E\u5F13";
-const verdict = "\u88C1\u65AD";
-const albedo = {
-  name: "\u30A2\u30EB\u30D9\u30C9",
-  title: "\u767D\u4E9C\u306E\u7533\u3057\u5B50"
-};
-const alhaitham = {
-  name: "\u30A2\u30EB\u30CF\u30A4\u30BC\u30F3",
-  title: "\u6A29\u8B00\u6559\u6212"
-};
-const amber = {
-  name: "\u30A2\u30F3\u30D0\u30FC",
-  title: "\u98DB\u884C\u30C1\u30E3\u30F3\u30D4\u30AA\u30F3"
-};
-const baizhu = {
-  name: "\u767D\u672E",
-  title: "\u9075\u751F\u5408\u548C"
-};
-const barbara = {
-  name: "\u30D0\u30FC\u30D0\u30E9",
-  title: "\u30AD\u30E9\u30AD\u30E9\u30A2\u30A4\u30C9\u30EB"
-};
-const beidou = {
-  name: "\u5317\u6597",
-  title: "\u7121\u51A0\u306E\u9F8D\u738B"
-};
-const bennett = {
-  name: "\u30D9\u30CD\u30C3\u30C8",
-  title: "\u904B\u547D\u306E\u8A66\u91D1\u77F3"
-};
-const candace = {
-  name: "\u30AD\u30E3\u30F3\u30C7\u30A3\u30B9",
-  title: "\u6D6E\u91D1\u306E\u8A93\u9858"
-};
-const charlotte = {
-  name: "\u30B7\u30E3\u30EB\u30ED\u30C3\u30C8",
-  title: "\u771F\u5B9F\u3092\u6C42\u3081\u308B\u66C7\u308A\u306A\u304D\u30E2\u30CE\u30AF\u30EB"
-};
-const chevreuse = {
-  name: "\u30B7\u30E5\u30F4\u30EB\u30FC\u30BA",
-  title: "\u53B3\u7F70\u3092\u4E0E\u3048\u308B\u6CD5\u306E\u901A\u6681\u8005"
-};
-const chongyun = {
-  name: "\u91CD\u96F2",
-  title: "\u96EA\u6D88\u306E\u8DE1"
-};
-const collei = {
-  name: "\u30B3\u30EC\u30A4",
-  title: "\u7D14\u771F\u3092\u62B1\u304F\u840C\u8616"
-};
-const cyno = {
-  name: "\u30BB\u30CE",
-  title: "\u7DD8\u79D8\u306E\u88C1\u304D"
-};
-const dehya = {
-  name: "\u30C7\u30A3\u30B7\u30A2",
-  title: "\u71BE\u9B23\u306E\u7345\u5B50"
-};
-const diluc = {
-  name: "\u30C7\u30A3\u30EB\u30C3\u30AF",
-  title: "\u30A2\u30AB\u30C4\u30AD\u30EF\u30A4\u30CA\u30EA\u30FC\u306E\u8CB4\u516C\u5B50"
-};
-const diona = {
-  name: "\u30C7\u30A3\u30AA\u30CA",
-  title: "\u30AD\u30E3\u30C3\u30C4\u30C6\u30FC\u30EB\u30B9\u30DA\u30B7\u30E3\u30EB"
-};
-const dori = {
-  name: "\u30C9\u30EA\u30FC",
-  title: "\u5922\u306E\u5EAD\u306B\u96A0\u305B\u3057\u8CA1\u5B9D"
-};
-const eula = {
-  name: "\u30A8\u30A6\u30EB\u30A2",
-  title: "\u6CE2\u6CAB\u306E\u30EF\u30EB\u30C4"
-};
-const faruzan = {
-  name: "\u30D5\u30A1\u30EB\u30B6\u30F3",
-  title: "\u6A5F\u6C42\u5C01\u79D8"
-};
-const fischl = {
-  name: "\u30D5\u30A3\u30C3\u30B7\u30E5\u30EB",
-  title: "\u65AD\u7F6A\u306E\u7687\u5973\uFF01\uFF01"
-};
-const freminet = {
-  name: "\u30D5\u30EC\u30DF\u30CD",
-  title: "\u5922\u60F3\u306E\u6D77\u3092\u6C88\u3093\u3067"
-};
-const furina = {
-  name: "\u30D5\u30EA\u30FC\u30CA",
-  title: "\u4E0D\u4F11\u306E\u30BD\u30EA\u30B9\u30C8"
-};
-const ganyu = {
-  name: "\u7518\u96E8",
-  title: "\u5FAA\u3005\u5B88\u6708"
-};
-const gorou = {
-  name: "\u30B4\u30ED\u30FC",
-  title: "\u96C4\u3005\u3057\u304D\u620E\u72AC"
-};
-const jean = {
-  name: "\u30B8\u30F3",
-  title: "\u84B2\u516C\u82F1\u9A0E\u58EB"
-};
-const kaeya = {
-  name: "\u30AC\u30A4\u30A2",
-  title: "\u5BD2\u98A8\u306E\u5263\u58EB"
-};
-const kaveh = {
-  name: "\u30AB\u30FC\u30F4\u30A7",
-  title: "\u5929\u7A79\u306E\u93E1"
-};
-const keqing = {
-  name: "\u523B\u6674",
-  title: "\u75BE\u96F7\u5FEB\u96E8"
-};
-const kirara = {
-  name: "\u7DBA\u826F\u3005",
-  title: "\u6A90\u5B87\u904A\u732B"
-};
-const klee = {
-  name: "\u30AF\u30EC\u30FC",
-  title: "\u9003\u3052\u56DE\u308B\u592A\u967D"
-};
-const layla = {
-  name: "\u30EC\u30A4\u30E9",
-  title: "\u7DBA\u601D\u3068\u591C\u661F"
-};
-const lisa = {
-  name: "\u30EA\u30B5",
-  title: "\u8594\u8587\u306E\u9B54\u5973"
-};
-const lynette = {
-  name: "\u30EA\u30CD\u30C3\u30C8",
-  title: "\u7DBA\u5F71\u3067\u9B45\u305B\u308B\u30A8\u30EC\u30AC\u30F3\u30B9"
-};
-const lyney = {
-  name: "\u30EA\u30CD",
-  title: "\u5E7B\u5149\u3067\u60D1\u308F\u3059\u30C8\u30EA\u30C3\u30AF"
-};
-const mika = {
-  name: "\u30DF\u30AB",
-  title: "\u971C\u6674\u306E\u6E2C\u91CF"
-};
-const mona = {
-  name: "\u30E2\u30CA",
-  title: "\u661F\u5929\u6C34\u93E1"
-};
-const nahida = {
-  name: "\u30CA\u30D2\u30FC\u30C0",
-  title: "\u767D\u8349\u6D44\u83EF"
-};
-const navia = {
-  name: "\u30CA\u30F4\u30A3\u30A2",
-  title: "\u8235\u3092\u9019\u3046\u30E9\u30C7\u30A3\u30A2\u30F3\u30C8\u30ED\u30FC\u30BA"
-};
-const neuvillette = {
-  name: "\u30CC\u30F4\u30A3\u30EC\u30C3\u30C8",
-  title: "\u544A\u8AED\u306E\u6F6E\u9A12"
-};
-const nilou = {
-  name: "\u30CB\u30A3\u30ED\u30A6",
-  title: "\u7D68\u6BEF\u306B\u821E\u3044\u843D\u3061\u308B\u84EE\u5149"
-};
-const ningguang = {
-  name: "\u51DD\u5149",
-  title: "\u6708\u3092\u8986\u3046\u5929\u6A29"
-};
-const noelle = {
-  name: "\u30CE\u30A8\u30EB",
-  title: "\u9A0E\u58EB\u9053\u306E\u82B1\u54B2"
-};
-const qiqi = {
-  name: "\u4E03\u4E03",
-  title: "\u51B7\u305F\u304D\u9EC4\u6CC9\u5E30\u308A"
-};
-const razor = {
-  name: "\u30EC\u30B6\u30FC",
-  title: "\u72FC\u5C11\u5E74"
-};
-const rosaria = {
-  name: "\u30ED\u30B5\u30EA\u30A2",
-  title: "\u834A\u51A0\u306E\u6069\u5178"
-};
-const sayu = {
-  name: "\u65E9\u67DA",
-  title: "\u5FCD\u3073\u306E\u91CC\u306E\u8C89"
-};
-const shenhe = {
-  name: "\u7533\u9DB4",
-  title: "\u5B64\u8FB0\u60B2\u54C0"
-};
-const sucrose = {
-  name: "\u30B9\u30AF\u30ED\u30FC\u30B9",
-  title: "\u7121\u5BB3\u306E\u7518\u5473"
-};
-const tartaglia = {
-  name: "\u30BF\u30EB\u30BF\u30EA\u30E4",
-  title: "\u300C\u516C\u5B50\u300D"
-};
-const thoma = {
-  name: "\u30C8\u30FC\u30DE",
-  title: "\u6E21\u6765\u4ECB\u8005"
-};
-const tighnari = {
-  name: "\u30C6\u30A3\u30CA\u30EA",
-  title: "\u7DD1\u571F\u900D\u9065"
-};
-const venti = {
-  name: "\u30A6\u30A7\u30F3\u30C6\u30A3",
-  title: "\u98A8\u8272\u306E\u8A69\u4EBA"
-};
-const wanderer = {
-  name: "\u653E\u6D6A\u8005",
-  title: "\u4E45\u4E16\u6D6E\u50BE"
-};
-const wriothesley = {
-  name: "\u30EA\u30AA\u30BB\u30B9\u30EA",
-  title: "\u5BC2\u7F6A\u306E\u5BC6\u4F7F"
-};
-const xiangling = {
-  name: "\u9999\u83F1",
-  title: "\u4E07\u6C11\u767E\u5473"
-};
-const xiao = {
-  name: "\u9B48",
-  title: "\u8B77\u6CD5\u591C\u53C9"
-};
-const xingqiu = {
-  name: "\u884C\u79CB",
-  title: "\u5C11\u58EE\u6C17\u92ED"
-};
-const xinyan = {
-  name: "\u8F9B\u708E",
-  title: "\u7206\u71B1\u30EA\u30BA\u30E0"
-};
-const yanfei = {
-  name: "\u7159\u7DCB",
-  title: "\u7121\u90AA\u6C17\u306A\u77E5\u6075"
-};
-const yaoyao = {
-  name: "\u30E8\u30A9\u30FC\u30E8",
-  title: "\u4ED9\u854A\u73B2\u74CF"
-};
-const yelan = {
-  name: "\u591C\u862D",
-  title: "\u5E7D\u8C37\u306B\u54B2\u304F\u862D"
-};
-const yoimiya = {
-  name: "\u5BB5\u5BAE",
-  title: "\u7409\u7114\u306B\u821E\u3046\u5927\u8F2A"
-};
-const zhongli = {
-  name: "\u937E\u96E2",
-  title: "\u6D6E\u4E16\u95CA\u6B69"
-};
-const jaJP = {
-  "a-thousand-floating-dreams": "\u5343\u591C\u306B\u6D6E\u304B\u3076\u5922",
-  akuoumaru,
-  "alley-hunter": "\u30C0\u30FC\u30AF\u30A2\u30EC\u30A4\u306E\u72E9\u4EBA",
-  "amos-bow": "\u30A2\u30E2\u30B9\u306E\u5F13",
-  "aqua-simulacra": "\u82E5\u6C34",
-  "aquila-favonia": "\u98A8\u9DF9\u5263",
-  "beacon-of-the-reed-sea": "\u8466\u6D77\u306E\u6A19",
-  "black-tassel": "\u9ED2\u7E93\u69CD",
-  "bloodtained-greatsword": "\u9F8D\u8840\u3092\u6D74\u3073\u305F\u5263",
-  "calamity-queller": "\u606F\u707D",
-  "cashflow-supervision": "\u51DB\u6D41\u306E\u76E3\u8996\u8005",
-  "cool-steel": "\u51B7\u5203",
-  "debate-club": "\u7406\u5C48\u8CAC\u3081",
-  "dragon_s-bane": "\u5323\u4E2D\u6EC5\u9F8D",
-  "elegy-for-the-end": "\u7D42\u7109\u3092\u5606\u304F\u8A69",
-  "emerald-orb": "\u7FE1\u7389\u6CD5\u73E0",
-  "engulfing-lightning": "\u8349\u8599\u306E\u7A32\u5149",
-  "everlasting-moonglow": "\u4E0D\u6EC5\u306E\u6708\u83EF",
-  "eye-of-perception": "\u662D\u5FC3",
-  "favonius-codex": "\u897F\u98A8\u79D8\u5178",
-  "favonius-greatsword": "\u897F\u98A8\u5927\u5263",
-  "favonius-lance": "\u897F\u98A8\u9577\u69CD",
-  "favonius-sword": "\u897F\u98A8\u5263",
-  "favonius-warbow": "\u897F\u98A8\u731F\u5F13",
-  "ferrous-shadow": "\u9244\u5F71\u6BB5\u5E73",
-  "freedom-sworn": "\u84BC\u53E4\u306A\u308B\u81EA\u7531\u3078\u306E\u8A93\u3044",
-  "haran-geppaku-futsu": "\u6CE2\u4E71\u6708\u767D\u7D4C\u6D25",
-  "harbinger-of-dawn": "\u9ECE\u660E\u306E\u795E\u5263",
-  "hunter_s-path": "\u72E9\u4EBA\u306E\u9053",
-  "jadefall-splendor": "\u78A7\u843D\u306E\u74CF",
-  "kagura_s-verity": "\u795E\u697D\u306E\u771F\u610F",
-  "key-of-khaj-nisut": "\u8056\u9855\u306E\u9375",
-  "lion_s-roar": "\u5323\u4E2D\u9F8D\u541F",
-  "light-of-foliar-incision": "\u8403\u5149\u306E\u88C1\u8449",
-  "lithic-blade": "\u5343\u5CA9\u53E4\u5263",
-  "lithic-spear": "\u5343\u5CA9\u9577\u69CD",
-  "lost-prayer-to-the-sacred-winds": "\u56DB\u98A8\u539F\u5178",
-  "magic-guide": "\u9B54\u5C0E\u7DD2\u8AD6",
-  "makhaira-aquamarine": "\u30DE\u30AB\u30A4\u30E9\u306E\u6C34\u8272",
-  "memory-of-dust": "\u6D6E\u4E16\u306E\u9320",
-  "mistsplitter-reforged": "\u9727\u5207\u306E\u5EFB\u5149",
-  "mitternachts-waltz": "\u5E7D\u591C\u306E\u30EF\u30EB\u30C4",
-  "mouun_s-moon": "\u66DA\u96F2\u306E\u6708",
-  "polar-star": "\u51AC\u6975\u306E\u767D\u661F",
-  "portable-power-saw": "\u643A\u5E2F\u578B\u30C1\u30A7\u30FC\u30F3\u30BD\u30FC",
-  "primordial-jade-cutter": "\u78D0\u5CA9\u7D50\u7DD1",
-  "primordial-jade-winged-spear": "\u548C\u749E\u9CF6",
-  "prospector-drill": "\u30D7\u30ED\u30B9\u30DA\u30AF\u30BF\u30FC\u30C9\u30EA\u30EB",
-  rainslasher,
-  "range-gauge": "\u30EC\u30F3\u30B8\u30B2\u30FC\u30B8",
-  "raven-bow": "\u9D09\u7FBD\u306E\u5F13",
-  "redhorn-stonethresher": "\u8D64\u89D2\u77F3\u5875\u6EC5\u7815",
-  rust,
-  "sacrificial-bow": "\u796D\u793C\u306E\u5F13",
-  "sacrificial-fragments": "\u796D\u793C\u306E\u65AD\u7247",
-  "sacrificial-greatsword": "\u796D\u793C\u306E\u5927\u5263",
-  "sacrificial-sword": "\u796D\u793C\u306E\u5263",
-  "sharpshooter_s-oath": "\u30B7\u30E3\u30FC\u30D7\u30B7\u30E5\u30FC\u30BF\u30FC\u306E\u8A93\u3044",
-  "skyrider-sword": "\u98DB\u5929\u5FA1\u5263",
-  "skyward-atlas": "\u5929\u7A7A\u306E\u5DFB",
-  "skyward-blade": "\u5929\u7A7A\u306E\u5203",
-  "skyward-harp": "\u5929\u7A7A\u306E\u7FFC",
-  "skyward-pride": "\u5929\u7A7A\u306E\u50B2",
-  "skyward-spine": "\u5929\u7A7A\u306E\u810A",
-  slingshot,
-  "song-of-broken-pines": "\u677E\u97FB\u306E\u97FF\u304F\u9803",
-  "splendor-of-tranquil-waters": "\u9759\u6C34\u6D41\u8EE2\u306E\u8F1D\u304D",
-  "staff-of-homa": "\u8B77\u6469\u306E\u6756",
-  "staff-of-the-scarlet-sands": "\u8D64\u7802\u306E\u6756",
-  "summit-shaper": "\u65AC\u5C71\u306E\u5203",
-  "the-alley-flash": "\u30C0\u30FC\u30AF\u30A2\u30EC\u30A4\u306E\u9583\u5149",
-  "the-bell": "\u9418\u306E\u5263",
-  "the-dockhands-assistant": "\u8239\u6E20\u5263",
-  "the-first-great-magic": "\u6700\u521D\u306E\u5927\u9B54\u8853",
-  "the-flute": "\u7B1B\u306E\u5263",
-  "the-stringless": "\u7D76\u5F26",
-  "the-unforged": "\u7121\u5DE5\u306E\u5263",
-  "the-widsith": "\u6D41\u6D6A\u697D\u7AE0",
-  "thrilling-tales-of-dragon-slayers": "\u9F8D\u6BBA\u3057\u306E\u82F1\u5091\u8B5A",
-  "thundering-pulse": "\u98DB\u96F7\u306E\u9CF4\u5F26",
-  "tome-of-the-eternal-flow": "\u4E45\u9060\u6D41\u8EE2\u306E\u5927\u5178",
-  "tulaytullah_s-remembrance": "\u30C8\u30A5\u30E9\u30A4\u30C8\u30A5\u30FC\u30E9\u306E\u8A18\u61B6",
-  verdict,
-  "vortex-vanquisher": "\u7834\u5929\u306E\u69CD",
-  "wavebreaker_s-fin": "\u65AC\u6CE2\u306E\u3072\u308C\u9577",
-  "wine-and-song": "\u30C0\u30FC\u30AF\u30A2\u30EC\u30A4\u306E\u9152\u3068\u8A69",
-  "wandering-evenstar": "\u5F77\u5FA8\u3048\u308B\u661F",
-  "wolf_s-gravestone": "\u72FC\u306E\u672B\u8DEF",
-  "xiphos-moonlight": "\u30B5\u30A4\u30D5\u30A9\u30B9\u306E\u6708\u660E\u304B\u308A",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "\u8352\u7027\u4E00\u6597",
-    title: "\u82B1\u5742\u8C6A\u5FEB"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "\u80E1\u6843",
-    title: "\u96EA\u6674\u6885\u9999"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "\u6953\u539F\u4E07\u8449",
-    title: "\u98A8\u6CE2\u6D41\u6D6A\u306E\u7D05\u8449"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "\u795E\u91CC\u7DBE\u83EF",
-    title: "\u767D\u9DFA\u6C37\u83EF"
-  },
-  "kamisato-ayato": {
-    name: "\u795E\u91CC\u7DBE\u4EBA",
-    title: "\u78D0\u796D\u8449\u5B88"
-  },
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  "kujou-sara": {
-    name: "\u4E5D\u6761\u88DF\u7F85",
-    title: "\u9ED2\u7FBD\u9CF4\u93D1"
-  },
-  "kuki-shinobu": {
-    name: "\u4E45\u5C90\u5FCD",
-    title: "\u7169\u60A9\u5208\u9664"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "\u96F7\u96FB\u5C06\u8ECD",
-    title: "\u4E00\u5FC3\u6D44\u571F"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "\u73CA\u745A\u5BAE\u5FC3\u6D77",
-    title: "\u771F\u73E0\u306E\u667A"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "\u9E7F\u91CE\u9662\u5E73\u85CF",
-    title: "\u4E42\u5B89\u3092\u9858\u3046\u3082\u306E"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "\u516B\u91CD\u795E\u5B50",
-    title: "\u6D6E\u4E16\u7B11\u767E\u59FF"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "\u96F2\u83EB",
-    title: "\u7D05\u7D68\u6BEF\u306B\u821E\u3046\u9E97\u59FF"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  jaJP as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/member-loader.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/member-loader.js
deleted file mode 100644
index c68d4947..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/member-loader.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import { c as memberList } from "./app-stores.js";
-let memberDB = [];
-memberList.subscribe((v) => {
-  memberDB = v;
-});
-export {
-  memberDB as m
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/pt-BR.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/pt-BR.js
deleted file mode 100644
index b5180867..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/pt-BR.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Simulador De Ora\xE7\xF5es Do Genshin Impact";
-const character = "Personagem";
-const weapon = "Arma";
-const vision = "Vis\xE3o";
-const anemo = "Anemo";
-const cryo = "Cryo";
-const dendro = "Dendro";
-const electro = "Electro";
-const hydro = "Hydro";
-const geo = "Geo";
-const pyro = "Pyro";
-const bow = "Arco";
-const catalyst = "Catalisador";
-const claymore = "Espad\xE3o";
-const sword = "Espada";
-const polearm = "Lan\xE7a";
-const extra = "Extra";
-const obtained = "Obtido";
-const waiting = "Aguardando";
-const connectionFailed = "Falha na conex\xE3o!";
-const confirmButton = "Confirmar";
-const cancelButton = "Cancelar";
-const disclaimer = "Todos os ativos utilizados neste site s\xE3o de propriedade da Mihoyo.";
-const fanmade = "Esta \xE9 uma aplica\xE7\xE3o feita por um f\xE3, aproveite-a !";
-const pressToContinue = "Pressione em qualquer espa\xE7o vazio para continuar";
-const installInstruction = "Instru\xE7\xF5es para instalar a vers\xE3o Desktop";
-const share = "Compartilhar";
-const screenshot = "Capturar tela";
-const capturing = "Capturando";
-const rewardFirstShare = "Recompensa pelo primeiro compartilhamento : {qty}";
-const version = "Vers\xE3o";
-const donate = "Doe";
-const banner = {
-  beginner: "Ora\xE7\xE3o de Novatos",
-  wanderlust: "Invoca\xE7\xE3o do Mochileiro",
-  "epitome-invocation": "Encarna\xE7\xE3o Divina",
-  "adrift-in-the-harbor": "Perguntas Tempor\xE1rias",
-  "auric-blaze": "Fulgor Dourado",
-  "azure-excursion": "Correntes Florais",
-  "ballad-in-goblets": "Poemas em Ta\xE7as",
-  "born-of-ocean-swell": "Forma\xE7\xE3o das Ondas",
-  "caution-in-confidence": "Estrat\xE9gia Imperativa",
-  "chanson-of-many-waters": "Ode \xE0s \xC1guas",
-  "conjuring-chiaroscuro": "Conjuring Chiaroscuro",
-  "dance-of-lantern": "Dan\xE7a das Lanternas",
-  "decree-of-the-deeps": "A Ordem das Profundezas",
-  "discerner-of-enigmas": "Discernidora de Enigmas",
-  "drifting-luminescence": "Luminesc\xEAncia \xE0 Deriva",
-  "everbloom-violet": "Sakura Roxa Eterna",
-  "farewell-of-snezhnaya": "Despedida para o Norte",
-  "from-ashes-reborn": "Fogo Oculto",
-  "gentry-of-hermitage": "Aristocracia Ermida",
-  "immaculate-pulse": "Cora\xE7\xE3o Imaculado",
-  "in-the-name-of-the-rosula": "Juramento Eterno da Rosa",
-  "invitation-to-mundane-life": "Convite de Chamas",
-  "leaves-in-the-wind": "Folhas ao Vento",
-  "moment-of-bloom": "Momento de Florescer",
-  "oni_s-royale": "Batalha do Reino Oni",
-  "reign-of-serenity": "Reino da Serenidade",
-  "secretum-secretorum": "Noites Enigm\xE1ticas",
-  "sparkling-steps": "Passos Flamejantes",
-  "tapestry-of-golden-flames": "Chama da Via L\xE1ctea",
-  "tempestuous-destiny": "Inundado Junto \xE0 Calamidade",
-  "the-heron_s-court": "Jardim da Gar\xE7a",
-  "the-moongrass-enlightenment": "A Sabedoria da Erva da Lua",
-  "the-transcendent-one-returns": "A Volta do Transcendente",
-  "twilight-arbiter": "\xC1rbitro do Crep\xFAsculo",
-  "twirling-lotus": "L\xF3tus Girat\xF3ria",
-  "viridescent-vigil": "Patrulha Esverdeada"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "Orar",
-  rollButton: "Orar {count}",
-  stellaFortuna: "Stella Fortuna",
-  loadFailed: "Falha ao carregar o banner! <br /> Por favor, troque para outro banner ou verifique sua conex\xE3o \xE0 internet.",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banner",
-    allBanner: "Todos os Banners",
-    previous: "Banner Anterior",
-    findBanner: "Encontre um Banner",
-    group: "Agrupar",
-    beginner: "Ora\xE7\xE3o de Novatos",
-    "character-event": "Ora\xE7\xE3o de Evento de Personagem",
-    "weapon-event": "Ora\xE7a\xF5 de Arma",
-    standard: "Desejo Comum",
-    wishDescription: "A cada 10 Ora\xE7\xF5es, \xE9 garantida a inclus\xE3o de pelo menos um item de 4 estrelas ou superior.",
-    novice: "Ora\xE7\xE3o de Novatos",
-    up: "UP!",
-    beginnerSet: "Desconto de 20% para o conjunto de 10. Garantido a obten\xE7\xE3o da Noelle",
-    beginnerNote: '"Eu sei exatamente como me comportar como uma empregada."',
-    beginnerChance: "Chance(s) Restante(s): {chances}",
-    standardNote: "Os desejos padr\xF5es n\xE3o t\xEAm limite de tempo.",
-    allWeaponTypes: "Todos os tipos de Arma",
-    etc: "etc.",
-    probIncreased: "Probabilidade aumentada!",
-    eventNote: "Os personagens ilimitados de 5 estrelas s\xF3 podem ser obtidos na ora\xE7\xE3o correspondente.",
-    viewDetails: "Leia Detalhes para mais informa\xE7\xF5es."
-  },
-  epitomizedPath: {
-    text: "Caminho Divino",
-    fatePoint: "Pontos do Destino",
-    cancelPrompt: "Deseja cancelar o caminho atual ?",
-    cancelDesc: "Cancelar ir\xE1 resetar seus Pontos do Destino acumulados",
-    selectWeapon: "Selecionar Arma",
-    chartCourseOf: "Marcar Caminho para {target}",
-    cancelCourse: "Cancelar Caminho",
-    chartCourse: "Marcar Caminho",
-    courseSetFor: "Caminho Marcado para: {selectedCourse}",
-    description: [
-      '"Caminho Divino" \xE9 uma mec\xE2nica inclu\xEDda nessa "Encarna\xE7\xE3o Divina":',
-      "Quando voc\xEA tiver marcado a arma de sua escolha, <span>se receber uma Arma de 5 estrelas que n\xE3o \xE9 a que voc\xEA escolheu, voc\xEA obter\xE1 1 Ponto do Destino</span>. Voc\xEA pode acumular at\xE9 2 Pontos do Destino.",
-      'Quando voc\xEA acumular pontos do destino suficientes, sua pr\xF3xima Arma de 5 estrelas ser\xE1 a que voc\xEA escolheu no "Caminho Divino".',
-      "Quando voc\xEA obter a arma escolhida no Caminho Divino, <span>os Pontos do Destino acumulados ser\xE3o zerados</span>.",
-      "Se voc\xEA n\xE3o usar o Caminho Divino, n\xE3o acumular\xE1 Pontos do Destino.",
-      "O caminho escolhido pode ser modificado ou cancelado. Entretanto, ao fazer isso, os Pontos do Destino ser\xE3o zerados.",
-      "No fim do per\xEDodo atual do Banner de armas, os Pontos do Destino ser\xE3o zerados."
-    ]
-  },
-  result: {
-    skip: "Pular",
-    meteorFailed: "Falha ao carregar anima\xE7\xE3o de cometa",
-    "new": "Novo",
-    convertion: "Convertido",
-    title: "Resultado da ora\xE7\xE3o para {item} et al"
-  }
-};
-const outfit = {
-  heading: "Estilos de Personagem",
-  "default": "Padr\xE3o",
-  setOutfit: "Colocar Vestimenta",
-  owned: "J\xE1 Adquirida",
-  purchasePrompt: "Voc\xEA ainda n\xE3o possui o personagem que pode usar esta vestimenta, voc\xEA t\xEAm certeza que deseja compr\xE1-la?",
-  promptInfo: "Voc\xEA ainda poder\xE1 us\xE1-la quando conseguir o personagem.",
-  obtained: "Nova Vestimenta Obtida",
-  unlocked: "{character}: Vestimenta Desbloqueada",
-  item: {
-    "5-star-outrider": {
-      name: "5-Star Outrider"
-    },
-    "favonian-fevotion": {
-      name: "Favonian Devotion"
-    },
-    "flowing-fate": {
-      name: "Flowing Fate"
-    },
-    "executor_s-thorns": {
-      name: "Executor's Thorns"
-    },
-    "sea-breeze-dandelion": {
-      name: "Sea Breeze Dandelion",
-      description: "Jean's summer wear. Light and cool, but no less elegant for it. The perfect choice for a trip to the seaside."
-    },
-    "summertime-sparkle": {
-      name: "Summertime Sparkle",
-      description: "Barbara's beach attire. This pretty skirt brims with summer vitality and carries with it a cool ocean breeze."
-    },
-    "opulent-splendor": {
-      name: "Opulent Splendor",
-      description: "Keqing's formal wear. Amidst the beautiful dawn of the Lantern Rite, the threads weaved by days of hard work intertwine into a light yet magnificent appearance."
-    },
-    "orchid_s-evening-gown": {
-      name: "Orchid's Evening Gown",
-      description: "Ningguang's formal wear. The long cyan skirt traces her elegant curves, and the butterfly wings at her ankles lend the outfit a touch of light grace."
-    },
-    "ein-immernachtstraum": {
-      name: "Ein Immernachtstraum",
-      description: "A ceremonial outfit for the Prinzessin. May she who is noble retain her courage, sincerity, and kindness forever, such that no evil shall ever overcome her."
-    },
-    "red-dead-of-night": {
-      name: "Red Dead of Night",
-      description: "One of the outfits Diluc wears during covert actions, it resembles a flame dancing in the shadows. The crimson red traces it leaves behind at the edges of the enemy's vision will scar their nightmares forever."
-    },
-    "a-sobriquet-under-shade": {
-      name: "A Sobriquet Under Shade",
-      description: "An outfit Lisa had someone commission for her when she revisited Sumeru. A perfect balance between practicality and elegance, the dress bears a resemblance to Lisa\u2019s old uniform from the Akademiya days."
-    },
-    "springbloom-missive": {
-      name: "Springbloom Missive",
-      description: "Ayaka\u2019s travel outfit. Its design is based on the Fontaine dresses depicted in light novel illustrations and seems to reflect the lifestyle of proper ladies who live in that nation."
-    },
-    "blossoming-starlight": {
-      name: "Luz Estelar Florescente",
-      description: "Uma vestimenta requintada que a Klee usa apenas para as apresenta\xE7\xF5es mais importantes. As cores s\xE3o brilhantes, como um bolo de creme decorado com flores e coroado com velas escarlates. Com ela, felicidades e sorrisos ir\xE3o encher suas aventuras."
-    },
-    "sailwind-shadow": {
-      name: "Sombra da Vela Tremulante",
-      description: "Vestimenta do Kaeya enquanto fazia o papel de Bandido da Adaga. Embora seja uma vestimenta extravagante, feita para chamar o m\xE1ximo de aten\xE7\xE3o poss\xEDvel, n\xE3o \xE9 dif\xEDcil de vestir, embora seja necess\xE1rio um bom tempo para lidar com todos os acess\xF3rios e adagas."
-    }
-  }
-};
-const details = {
-  text: "Detalhes",
-  promotional: "Itens Promocionais",
-  itemlist: "Lista de Itens",
-  increasedRate: "Taxa de Drop Aumentada",
-  percentageDrop: "Porcentagem de drop de itens {rarity} estrelas: {percentage}",
-  wishDetails: "Detalhes da Ora\xE7\xE3o",
-  probInfo: "Probabilidade de Drop e Itens de {rarity} Estrelas: {singlePercentage} (Incl. garantia: {avgPercentage})",
-  itemWishFor: "Lista de Itens da Ora\xE7\xE3o:",
-  itemType: "Tipo de Item",
-  itemName: "Nome do Item",
-  beginnerInfo: "Sem limite de tempo (Termina ap\xF3s 20 ora\xE7\xF5es)",
-  limited: "Evento de tempo limitado",
-  permanent: "Permanente",
-  alert: "\u203B Esta \xE9 uma {wishName}. A contagem de garantias \xE9 apenas para este evento e independente da contagem das outras ora\xE7\xF5es.",
-  beginner: [
-    "A ora\xE7\xE3o de <span> Novatos </span> n\xE3o t\xEAm limite de tempo e \xE9 voltada para viajantes que chegaram recentemente em Teyvat. Uma sele\xE7\xE3o limitada de personagens e armas n\xE3o promocionais est\xE1 dispon\xEDvel.<br /> Na Ora\xE7\xE3o de Novatos, o conjunto de 10 ora\xE7\xF5es gasta <span> 20%</span> menos Destinos Familiares. No primeiro conjunto de 10 ora\xE7\xF5es \xE9 garantida a obten\xE7\xE3o de {character}, e no segundo conjunto de 10 ora\xE7\xF5es \xE9 garantida a obten\xE7\xE3o de algum <span>outro</span> personagem de 4 estrelas! <br/> O Desejo de Novatos expira ap\xF3s <span>20</span> tentativas. Depois que ele expirar, a p\xE1gina ir\xE1 desaparecer.",
-    "\u203B Em circunst\xE2ncias normais, todos os personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.",
-    "\u3013Regras\u3013",
-    "Probabilidade base de obter um personagem de 5 Estrelas<span> 0,600%</span> <br /> Probabilidade base de obter um personagem de 4 Estrelas<span> 5,100%</span>; probabilidade conjunta (incl. garantia) = <span> 13,000%</span>."
-  ],
-  standard: [
-    '"{bannerName}" \xE9 uma ora\xE7\xE3o comum sem limite de tempo, onde personagens e armas n\xE3o limitadas est\xE3o dispon\xEDveis.<br/> Nesta Ora\xE7\xE3o, a cada conjunto de 10 ora\xE7\xF5es, \xE9  <span>garantido</span> que inclua pelo menos um item de 4 estrelas ou superior.',
-    "\u203BEm circunst\xE2ncias normais, todos os personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.",
-    "\u3013Rules\u3013",
-    "A probabilidade base de obter um item de 5 estrelas \xE9 de <span>0,600%</span>, a probabilidade base de obten\xE7\xE3o de um personagem 5 estrelas \xE9 de <span>0,300%</span>, a probilidade base de obten\xE7\xE3o de um personagem 5 estrelas \xE9 de <span>0,300%</span>; e a probabilidade conjunta de obter um item de 5 estrelas \xE9 de <span>1.600%</span>. \xC9 garantido um item de 5 estrelas pelo menos uma vez a cada <span>90</span> tentativas. <br>A probabilidade base de obter um item de 4 estrelas \xE9 de <span>5,100%</span>, a probabilidade base de obten\xE7\xE3o de uma arma 4 estrelas \xE9 de <span>2.550%</span>, a probabilidade base de obten\xE7\xE3o de uma arma de 4 estrelas \xE9 de <span>2,550%</span> e a probabilidade conjunta de obter um item de 4 estrelas (incl. garantia) \xE9 de <span>13,000%</span>. \xC9 gatantido um item de 4 estrelas pelo menos uma vez a cada <span>10</span> tentativas, em que a probabilidade de obten\xE7\xE3o de um item de 4 estrelas \xE9 de <span>99,400%</span>, e a probabilidade de de um item de 5 estrelas \xE9 de <span>0,600%</span>."
-  ],
-  events: [
-    'Dispon\xEDvel agora, Ora\xE7\xE3o de Evento - "{bannerName}". Durante o per\xEDodo do evento, o(a) <span>personagem limitado(a)</span> de 5 estrelas {featuredCharacter} e os personagens de 4 estrelas {rateupCharacters} receber\xE3o um <span>grande aumento na taxa de drop</span>! <br/> <span> \u203B Personagens limitados citados acima n\xE3o entrar\xE3o na Ora\xE7\xE3o Comum "Invoca\xE7\xE3o do Mochileiro."</span>',
-    "\u203B Em circunst\xE2ncias normais, todos as personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.",
-    "\u3013Rules\u3013",
-    "Itens de 5 Estrelas",
-    'Na Ora\xE7\xE3o de Evento - "{bannerName}", a probabiilidade base de obter um personagem 5 estrelas \xE9 de <span> 0,600% </span>, e a probabilidade conjunta (incl. garantia) \xE9 de <span>1,600%</span>; \xC9 garantida a obten\xE7\xE3o de um personagem 5 estrelas uma vez a cada<span> 90</span> tentativas.<br/> Ao obter um personagem 5 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1<span> 50,000%</span> de chance de ser o(a) personagem promocional {featuredCharacter}. Se o(a) primeiro personagem 5 estrelas obtido nesta Ora\xE7\xE3o de Evento n\xE3o for o(a) personagem promocional desta edi\xE7\xE3o, ent\xE3o \xE9<span> garantido</span> que o(a) pr\xF3ximo(a) personagem 5 estrelas que voc\xEA obtiver seja o(a) personagem promocional.',
-    "Itens de 4 Estrelas",
-    'Na Ora\xE7\xE3o de Evento - "{bannerName}", a probabilidade base de obter um item de 4 estrelas \xE9 de <span> 5,100%</span>, a probabilidade base de obter um personagem 4 estrelas \xE9 de <span>2,550%</span>,a probabilidade base de obter uma arma de 4 estrelas \xE9 de<span> 2,550%</span>, e a probabilidade conjunta de obter um item de 4 estrelas (incl. garantia) \xE9 de<span> 13,000%</span>. \xC9 garantido um item de 4 estrelas ou mais pelo menos uma vez a cada <span>10</span> tentativas, onde a probabilidade de obter um item de 4 estrelas atrav\xE9s da garantia \xE9 de <span>99,400%</span> e a probabilidade de obter um item de 5 estrelas \xE9 de<span> 0,600%</span>. <br/> Ao obter um item de 4 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1<span> 50,000%</span> de chance de ser o(a) personagem promocional {rateupCharacters}. Caso o primeiro item de 4 estrelas obtido nesta Ora\xE7\xE3o de Evento n\xE3o seja os personagens promocionais, ent\xE3o \xE9 <span>garantido</span> que o pr\xF3ximo item de 4 estrelas que voc\xEA obtivver seja um dos personagens promocionais desta edi\xE7\xE3o. Quando um item promocional de 4 estrelas \xE9 obtido durante as ora\xE7\xF5es, a probabilidade de obten\xE7\xE3o de qualquer personagem de 4 estrelas promocional do evento ser\xE1 igual.'
-  ],
-  weapons: [
-    'Dispon\xEDvel agora, Ora\xE7\xE3o de Evento - "{bannerName}". Durante o per\xEDodo do evento, as armas <span>limitadas</span> de 5 estrelas {featuredWeapon1}, {featuredWeapon2}, a arma <span>limitada</span> de 4 estrelas {rateupWeapons} receber\xE3o um <span>grande aumento na taxa de drop</span>! <br/> <span> \u203B Armas limitadas citadas acima n\xE3o entrar\xE3o na Ora\xE7\xE3o Comum "Invoca\xE7\xE3o do Mochileiro."</span>',
-    "\u203B Em circunst\xE2ncias normais, todos os personagens ou armas s\xE3o aplic\xE1veis \xE0s probabilidades b\xE1sicas. Em casos de probabilidades aumentadas, consulte as regras das garantias.",
-    "\u3013Regras\u3013",
-    "Itens de 5 Estrelas",
-    'Na Ora\xE7\xE3o de Evento "{bannerName}", a probabilidade base de obter uma arma 5 estrelas \xE9 de<span> 0,700%</span> e a probabilidade conjunta (incl. garantia) \xE9 de <span>1,850%</span>. \xC9 garantida a obten\xE7\xE3o de uma arma 5 estrelas uma vez a cada <span>80</span> tentativas.<br/> Ao obter uma arma de 5 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1 <span>75,000%</span> de chance de ser uma das armas promocionais de 5 estrelas desta edi\xE7\xE3o, {featuredWeapon1} ou {featuredWeapon2}. Se a primeira arma de 5 estrelas obtida nesta Ora\xE7\xE3o de Evento n\xE3o for a arma promocional, ent\xE3o \xE9 <span>garantido</span> que a pr\xF3xima arma de 5 estrelas que voc\xEA obtiver seja a arma promocional. Quando a arma selecionada \xE9 obtida antes de atingir o m\xE1ximo de Pontos do Destino, ao obter o item promocional de 5 estrelas na ora\xE7\xE3o, a probabilidade de obten\xE7\xE3o de qualquer arma 5 estrelas promocial do evento ser\xE1 igual.<br/> Durante a Ora\xE7\xE3o de Evento - "{bannerName}", utilize o "Caminho Divino." e marque um caminho para uma das armas promocionais de 5 estrelas deste evento. A arma selecionada s\xF3 ser\xE1 v\xE1lida para a Ora\xE7\xE3o de Evento - "{bannerName}". <br/> Durante a Ora\xE7\xE3o de Evento - "{bannerName}", ao obter uma arma de 5 estrelas que n\xE3o foi selecionada previamente com o "Caminho Divino", 1 Ponto do Destino ser\xE1 obtido, quando o Ponto do Destino chegar no <span>m\xE1ximo</span> a pr\xF3xima arma de 5 estrelas obtida na ora\xE7\xE3o ser\xE1 <span>certamente</span> a arma previamente selecionada. Ap\xF3s obter a arma selecionada, independente de ter ou n\xE3o alcan\xE7ado o m\xE1ximo, o Ponto do Destino ser\xE1 redefinido, para voltar a ser acumulado do <span>0</span>. <br/> Em casos onde o "Caminho Divino" n\xE3o foi utilizado para selecionar armas, <span>n\xE3o ser\xE1</span> acumulado Pontos do Destino. <br/> \xC9 poss\xEDvel trocar ou cancelar a arma selecionada. Ao trocar ou cancelar a arma selecionada, os Pontos do Destino ser\xE3o redefinidos, para voltarem a ser acumulados do <span>0</span>. \u203B Os Pontos do Destino desta ora\xE7\xE3o s\xF3 ser\xE3o v\xE1lidos na Ora\xE7\xE3o de Evento - "Encarna\xE7\xE3o Divina". Ap\xF3s o fim da ora\xE7\xE3o, os Pontos do Destino ser\xE3o redefinidos, para voltarem a ser acumulados do <span>0</span>.',
-    "Itens de 4 Estrelas",
-    'Durante a Ora\xE7\xE3o de Evento - "{bannerName}", a probabilidade base de obter um item de 4 estrelas \xE9 de <span>6,000%</span>, a probabilidade base de obten\xE7\xE3o de um personagem de 4 estrelas \xE9 de <span>3,000%</span>, a probabilidade base de obten\xE7\xE3o de uma arma de 4 estrelas \xE9 de <span>3,000%</span> e a probabilidade conjunta de obter um item de 4 estrelas (incl. garantia) \xE9 de <span>14,500%</span>. \xC9 garantido um item de 4 estrelas ou mais pelo menos uma vez a cada <span>10</span> tentativas, onde a probabilidade de obter um item de 4 estrelas atrav\xE9s da garantia \xE9 de <span>99,300%</span> e a probabilidade de obter um item de 5 estrelas \xE9 de<span>0,700%</span>. <br/> AO obter um item de 4 estrelas nesta Ora\xE7\xE3o de Evento, h\xE1 <span>75,000%</span> de chance de ser a arma promocional {rateupWeapons}. Caso o primeiro item de 4 estrelas obtido nesta Ora\xE7\xE3o de Evento n\xE3o seja as armas promocionais, ent\xE3o \xE9 <span>garantido</span> que o pr\xF3ximo item de 4 estrelas que voc\xEA obtiver seja uma das armas promocionais desta edi\xE7\xE3o. Quando um item promocional de 4 estrelas \xE9 obtido durante as ora\xE7\xE3o, a probabilidade de obten\xE7\xE3o de qualquer arma de 4 estrelas promocional do evento ser\xE1 igual.'
-  ],
-  convertion: {
-    fiveStar: "As armas de 5 estrelas obtidas nesta ora\xE7\xE3o v\xEAm com {starglitter} \xD710;",
-    fourStar: "As armas de 4 estrelas obtidas nesta ora\xE7\xE3o v\xEAm com {starglitter} \xD72;",
-    threeStar: "As armas de 3 estrelas obtidas nesta ora\xE7\xE3o v\xEAm com {stardust} \xD715."
-  },
-  duplicate: {
-    heading: "\u3013Personagens Duplicados\u3013",
-    text: "Ao obter um personagem {rarity} estrelas que voc\xEA j\xE1 possui (mesmo quando obtido em ora\xE7\xE3o, resgatado na loja ou no jogo): Na 2\xAA - 7\xAA vez que obter o personagem, ele ser\xE1 convertido na {stellaFortuna} \xD71 do personagem e {starglitter} {constBonus}; a partir da 8\xAA aquisi\xE7\xE3o, ele ser\xE1 convertido em {starglitter} {fullConstBonus}."
-  }
-};
-const history = {
-  title: "Hist\xF3rico de Ora\xE7\xF5es",
-  text: "Hist\xF3rico",
-  resetButton: "Limpar",
-  resetPromptTitle: "Limpar Hist\xF3rico ?",
-  resetPrompt: 'Esta a\xE7\xE3o tamb\xE9m vai remover todos os Personagens e Armas relacionadas ao "{bannerName}" Banner do Invent\xE1rio. <br /> Voc\xEA tem certeza de que deseja resetar ?',
-  resetSuccess: "Resetado com Sucesso",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "Tipo de Ora\xE7\xE3o",
-  disclaimer: "N\xF3s nunca salvamos dados na nuvem. Todos os dados s\xE3o guardados em IndexedDB, ou seja, no armazenamento do seu navegador. Os dados n\xE3o ser\xE3o deletados a menos que voc\xEA delete manualmente, al\xE9m de usar o bot\xE3o 'Limpar' ou limpar os dados de navega\xE7\xE3o.",
-  currentPity: "Pity atual :",
-  totalPull: "Total de ora\xE7\xF5es:",
-  totalSpend: "Total Gasto :",
-  filterTxt: "Filtrar",
-  filter: "{rarity} Estrelas",
-  filterAll: "Todos",
-  pity: "Pity",
-  timeReceived: "Recebido em",
-  waiting: "Aguardando",
-  noData: "Sem dados dispon\xEDveis.",
-  untracked: "N\xE3o rastreado",
-  item: "Item",
-  win: "Ganhar 50/50",
-  lose: "Perder 50/50",
-  guaranteed: "Garantido",
-  selected: "Arma Selecionada",
-  olderLayout: "Layout Antigo",
-  switchv2: "Voltar para a V2"
-};
-const shop = {
-  text: "Loja",
-  paimonBargains: "Barganhas da Paimon",
-  fateNeeded: "Um Adicional de {rollQty} {currency} \xE9 necess\xE1rio",
-  primoNeeded: "Comprar com {primoPrice} Gemas Essenciais ?",
-  purchaseUpto: "Limite de compras: 1",
-  purchaseConfirm: "Confirmar Compra",
-  exchangeHeading: "Trocar Item",
-  purchaseHeading: "Comprar Item",
-  purchaseButton: "Comprar",
-  pay: "Pagar",
-  product: "Produto",
-  consume: "Consume",
-  selectPayment: "Selecione a forma de Pagamento",
-  unrealWallet: "Carteira Ilimitada",
-  convertPrimo: " Converter Automaticamente para Gemas Essenciais ?",
-  proceedPayment: "Continuar para o pagamento",
-  qty: "Qtd",
-  insufficient: "Fundos Insuficientes",
-  crystalTopup: "Recarga de Cristal",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "Comprar Cristais Genesys",
-  recomendedHeading: "Recomendado",
-  paimonHeading: "Barganhas da Paimon",
-  welkinNote: "Pode ser comprado m\xFAltiplas vezes",
-  limitedOffer: "Oferta por Tempo Limitado",
-  noLimitTime: "Itens dispon\xEDveis sem limite de tempo",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "Ben\xE7\xE3o da Lua Nova",
-    newOutfit: "Novos Estilos de Personagem",
-    dayRemaining: "Dias Restantes {days}",
-    alreadyClaimed: "J\xE1 resgatado hoje",
-    instantlyGet: "Ganhe Imediatamente",
-    dailyGift: "Presente Di\xE1rio",
-    obtainTotal: "Obtenha um total de {totalGenesis} Cristais G\xEAnesis e {totalPrimo} Gemas Essenciais ao longo de 30 dias",
-    claimingBlessing: "Clique para resgatar suas recompensas di\xE1rias da Ben\xE7\xE3o da Lua Nova.",
-    issuedPurchase: "Erro ao comprar",
-    collect: "Colete recompensas por login di\xE1rio durante 30 dias."
-  },
-  exchange: {
-    starglitter: "Resgate de Brilho Estelar",
-    stardust: "Resgate de Poeira Estelar",
-    primogem: "Comprar com Gemas Essenciais"
-  },
-  item: {
-    genesis: "Cristais Genesys",
-    primogem: "Gemas Essenciais",
-    intertwined: "Destino Entrela\xE7ado",
-    acquaint: "Destino Familiar",
-    starglitter: "Brilho Estelar",
-    stardust: "Poeira Estelar"
-  },
-  description: {
-    intertwined: "Uma pedra do destino que conecta sonhos. O seu brilho pode entrela\xE7ar e conectar sonhos, assim como seu brilho pode conectar as estrelas em formatos de desejos de um cora\xE7\xE3o.",
-    acquaint: "Uma semente que pode iluminar a noite. N\xE3o importa a dist\xE2ncia, guiada pelo brilho da pedra, o sesejo do destino ser\xE1 encontrado sob as estrelas."
-  }
-};
-const inventory = {
-  text: "Invent\xF3rio",
-  unsetOutfit: "Remover Vestimenta",
-  setOutfit: "Aplicar Vestimenta ao Personagem",
-  refinement: "Refinamento {count}",
-  constellation: "Constela\xE7\xE3o {count}",
-  extra: "{count} Extra",
-  firstSummon: "Primeira invoca\xE7\xE3o em : {date}",
-  notOwned: "N\xE3o Adquirido",
-  sort: "Organizar",
-  rarity: "Raridade",
-  name: "Nome",
-  quantity: "Quantidade",
-  element: "Elemento",
-  release: "Data de lan\xE7amento",
-  type: "Type",
-  owned: "Adquirido",
-  showAllOption: "Mostrar todos os Personagens"
-};
-const menu = {
-  no: "N\xE3o",
-  yes: "Sim",
-  text: "Menu",
-  feedback: "Feedback",
-  options: "Configura\xE7\xF5es",
-  updates: "Hist\xF3rico de atualiza\xE7\xF5es",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "Idioma",
-  currency: "Moeda",
-  fates: "Number of Wishes",
-  unlimited: "Unlimited",
-  manual: "Manual Input",
-  mute: "Mutar \xE1udio e efeitos sonoros",
-  switchBanner: "Trocar Banner",
-  showAllitems: "Mostrar todos os itens no Invet\xE1rio",
-  autoskip: "Pular automaticamente anima\xE7\xE3o de ora\xE7\xE3o",
-  animatedbg: "Plano de fundo animado",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "Limpar dados e restaurar padr\xE3o",
-  resetTitle: "Limpar dados",
-  rotate: "Rotacionar para melhor experi\xEAncia",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Limpar mem\xF3ria em cach\xEA ( {size} ) ? <small> Voc\xEA precisar\xE1 baixar novamente os arquivos de cach\xEA depois desta a\xE7\xE3o!</small>",
-  resetButton: "Resetar agora",
-  resetPrompt: "Voc\xEA tem certeza que deseja limpar <strong> Todos os dados </strong> e restaurar o padr\xE3o ?",
-  resetSuccess: "Resetado com Sucesso",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Consiga uma nova Aqui!",
-  noKey: "N\xE3o pusse uma Chave de An\xFAncios?",
-  verifyFail: "Falha ao verificar a Chave de An\xFAncios, verifique sua conex\xE3o !",
-  invalidKey: "Esta chave n\xE3o \xE9 mais v\xE1lida",
-  keyExpired1: "Chave Expirada!",
-  keyExpired2: 'Sua chave: "{key}" est\xE1 expirada deste a data {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Digite a chave",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* Sentimos muito pelos an\xFAncios. N\xE3o desejamos atrapalhar sua experiencia de ora\xE7\xE3o, mas n\xE3o temos patrocinadores para manter esse aplicativo online. Se voc\xEA n\xE3o deseja nos patrocinar com an\xFAncios, voc\xEA pode ativar seu AdBlocker or usar um DNS customizado: n\xE3o o impediremos."
-};
-const ptBR = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  ptBR as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/pt-BR2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/pt-BR2.js
deleted file mode 100644
index a3c41ba5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/pt-BR2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "Akuoumaru";
-const rainslasher = "Segadeira da Chuva";
-const rust = "Enferrujado";
-const slingshot = "Estilingue";
-const verdict = "Veredito";
-const albedo = {
-  name: "Albedo",
-  title: "Pr\xEDncipe do Giz"
-};
-const alhaitham = {
-  name: "Alhaitham",
-  title: "Reprimenda Instrutiva"
-};
-const amber = {
-  name: "Amber",
-  title: "Aventureira"
-};
-const baizhu = {
-  name: "Baizhu",
-  title: "Al\xE9m da Mortalidade"
-};
-const barbara = {
-  name: "Barbara",
-  title: "\xCDdolo Radiante"
-};
-const beidou = {
-  name: "Beidou",
-  title: "Rainha do Mar Sem Coroa"
-};
-const bennett = {
-  name: "Bennett",
-  title: "Julgamento por Fogo"
-};
-const candace = {
-  name: "Candace",
-  title: "Promessa Dourada"
-};
-const charlotte = {
-  name: "Charlotte",
-  title: "Lentes em Busca da Verdade"
-};
-const chevreuse = {
-  name: "Chevreuse",
-  title: "Executora da Justi\xE7a"
-};
-const chongyun = {
-  name: "Chongyun",
-  title: "Pegadas na Neve"
-};
-const collei = {
-  name: "Collei",
-  title: "Broto de Renascimento"
-};
-const cyno = {
-  name: "Cyno",
-  title: "Juiz dos Segredos"
-};
-const dehya = {
-  name: "Dehya",
-  title: "Leoa Flamejante"
-};
-const diluc = {
-  name: "Diluc",
-  title: "Herdeiro do Adega do Alvorecer"
-};
-const diona = {
-  name: "Diona",
-  title: "Coquetel da Cauda do Gato"
-};
-const dori = {
-  name: "Dori",
-  title: "Tesouro do Jardim dos Sonhos"
-};
-const eula = {
-  name: "Eula",
-  title: "Dan\xE7a da Onda Quebradora"
-};
-const faruzan = {
-  name: "Faruzan",
-  title: "Maquinista Enigm\xE1tica"
-};
-const fischl = {
-  name: "Fischl",
-  title: "Contempla\xE7\xF5es da Estrela Noturna"
-};
-const freminet = {
-  name: "Freminet",
-  title: "Ansioso por Sonhos Profundos"
-};
-const furina = {
-  name: "Furina",
-  title: "Dan\xE7arina Solit\xE1ria Eterna"
-};
-const ganyu = {
-  name: "Ganyu",
-  title: "Defensora Devota"
-};
-const gorou = {
-  name: "Gorou",
-  title: "Guerreiro Canino"
-};
-const jean = {
-  name: "Jean",
-  title: "Cavaleira de Dandelion"
-};
-const kaeya = {
-  name: "Kaeya",
-  title: "Capit\xE3o de Cavalaria"
-};
-const kaveh = {
-  name: "Kaveh",
-  title: "Refletor Emp\xEDreo"
-};
-const keqing = {
-  name: "Keqing",
-  title: "Trov\xE3o Condutor"
-};
-const kirara = {
-  name: "Kirara",
-  title: "Gatinha dos Beirais"
-};
-const klee = {
-  name: "Klee",
-  title: "Sol Fugitivo"
-};
-const layla = {
-  name: "Layla",
-  title: "Contempla\xE7\xF5es da Estrela Noturna"
-};
-const lisa = {
-  name: "Lisa",
-  title: "Bruxa das Rosas"
-};
-const lynette = {
-  name: "Lynette",
-  title: "Eleg\xE2ncia nas Sombras"
-};
-const lyney = {
-  name: "Lyney",
-  title: "Espet\xE1culo Fantasmag\xF3rico"
-};
-const mika = {
-  name: "Mika",
-  title: "Top\xF3grafo da Geada Transl\xFAcida"
-};
-const mona = {
-  name: "Mona",
-  title: "Reflex\xE3o Astral"
-};
-const nahida = {
-  name: "Nahida",
-  title: "Pureza Restauradora"
-};
-const navia = {
-  name: "Navia",
-  title: "Leme da Rosa Radiante"
-};
-const neuvillette = {
-  name: "Neuvillette",
-  title: "Ordenador das Mar\xE9s"
-};
-const nilou = {
-  name: "Nilou",
-  title: "Dan\xE7a da Luz de L\xF3tus"
-};
-const ningguang = {
-  name: "Ningguang",
-  title: "Estrela em Eclipse"
-};
-const noelle = {
-  name: "Noelle",
-  title: "Flor da Cavalaria"
-};
-const qiqi = {
-  name: "Qiqi",
-  title: "Ressurrei\xE7\xE3o G\xE9lida"
-};
-const razor = {
-  name: "Razor",
-  title: "Menino Lobo"
-};
-const rosaria = {
-  name: "Rosaria",
-  title: "Benevol\xEAncia Espinhosa"
-};
-const sayu = {
-  name: "Sayu",
-  title: "Mujina Ninja"
-};
-const shenhe = {
-  name: "Shenhe",
-  title: "Transcend\xEAncia Solit\xE1ria"
-};
-const sucrose = {
-  name: "Sucrose",
-  title: "Do\xE7ura Inofensiva"
-};
-const tartaglia = {
-  name: "Tartaglia",
-  title: "Childe"
-};
-const thoma = {
-  name: "Thoma",
-  title: "Protetor de Longe"
-};
-const tighnari = {
-  name: "Tighnari",
-  title: "Andarilho Verdejante"
-};
-const venti = {
-  name: "Venti",
-  title: "Cantor dos Ventos Celestiais"
-};
-const wanderer = {
-  name: "Wanderer",
-  title: "Caminhante Eterno"
-};
-const wriothesley = {
-  name: "Wriothesley",
-  title: "Emiss\xE1rio da Culpa Inc\xF3gnita"
-};
-const xiangling = {
-  name: "Xiangling",
-  title: "Mestre de Culin\xE1ria de Liyue"
-};
-const xiao = {
-  name: "Xiao",
-  title: "Guardi\xE3o Yaksha"
-};
-const xingqiu = {
-  name: "Xingqiu",
-  title: "Galante Juvenil"
-};
-const xinyan = {
-  name: "Xinyan",
-  title: "Melodia Incandescente"
-};
-const yanfei = {
-  name: "Yanfei",
-  title: "Inoc\xEAncia S\xE1bia"
-};
-const yaoyao = {
-  name: "Yaoyao",
-  title: "Burgeoning Grace"
-};
-const yelan = {
-  name: "Yelan",
-  title: "Vale das Orqu\xEDdeas"
-};
-const yoimiya = {
-  name: "Yoimiya",
-  title: "Dan\xE7a das Chamas"
-};
-const zhongli = {
-  name: "Zhongli",
-  title: "Andarilho do Reino Mortal"
-};
-const ptBR = {
-  "a-thousand-floating-dreams": "Sonhos Flutuantes das Mil Noites",
-  akuoumaru,
-  "alley-hunter": "Ca\xE7ador do Beco",
-  "amos-bow": "Arco de Amos",
-  "aqua-simulacra": "Aqua Simulacra",
-  "aquila-favonia": "Falc\xE3o",
-  "beacon-of-the-reed-sea": "Sinal dos Mares",
-  "black-tassel": "Borla Preta",
-  "bloodtained-greatsword": "Espad\xE3o Sangrento",
-  "calamity-queller": "Subjugadora de Calamidades",
-  "cashflow-supervision": "Supervis\xE3o de Caixa",
-  "cool-steel": "L\xE2mina Fria",
-  "debate-club": "Pacifista",
-  "dragon_s-bane": "Perdi\xE7\xE3o do Drag\xE3o",
-  "elegy-for-the-end": "Elegia do Suspiro Final",
-  "emerald-orb": "Orbe Esmeralda",
-  "engulfing-lightning": "Luz do Cortador de Grama",
-  "everlasting-moonglow": "Fumetsu Gekka",
-  "eye-of-perception": "Olho da Percep\xE7\xE3o",
-  "favonius-codex": "Codex de Favonius",
-  "favonius-greatsword": "Espad\xE3o de Favonius",
-  "favonius-lance": "Lan\xE7a de Favonius",
-  "favonius-sword": "Espada de Favonius",
-  "favonius-warbow": "Arco de Favonius",
-  "ferrous-shadow": "Espad\xE3o de Ferro Branco",
-  "freedom-sworn": "Juramento pela Liberdade",
-  "haran-geppaku-futsu": "Maremoto da Lua de Futsu",
-  "harbinger-of-dawn": "Pren\xFAncio do Alvorecer",
-  "hunter_s-path": "Caminho do Ca\xE7ador",
-  "jadefall-splendor": "Esplendor \xCDndigo",
-  "kagura_s-verity": "Prova de Kagura",
-  "key-of-khaj-nisut": "Chave de Hierofania",
-  "light-of-foliar-incision": "Luz das Folhas Cortadas",
-  "lion_s-roar": "Rugido do Le\xE3o",
-  "lithic-blade": "Espada Antiga de Millelith",
-  "lithic-spear": "Lan\xE7a de Millelith",
-  "lost-prayer-to-the-sacred-winds": "Ora\xE7\xE3o Perdida aos Ventos Sagrados",
-  "magic-guide": "Guia de Magia",
-  "makhaira-aquamarine": "\xC1gua-Marinha de Mahara",
-  "memory-of-dust": "Mem\xF3ria da Poeira",
-  "mistsplitter-reforged": "Cortadora da Neblina Reforjada",
-  "mitternachts-waltz": "Valsa do Crep\xFAsculo",
-  "mouun_s-moon": "Lua de Mouun",
-  "polar-star": "Polar Star",
-  "portable-power-saw": "Serra El\xE9trica Port\xE1til",
-  "primordial-jade-cutter": "Cortador de Jade Primordial",
-  "primordial-jade-winged-spear": "Lan\xE7a de Jade Primitiva",
-  "prospector-drill": "Broca do Prospector",
-  rainslasher,
-  "range-gauge": "Medidor de Alcance",
-  "raven-bow": "Arco de Corvo",
-  "redhorn-stonethresher": "Chifres Vermelhos Destruidores de Pedras",
-  rust,
-  "sacrificial-bow": "Arco do Sacrif\xEDcio",
-  "sacrificial-fragments": "Mem\xF3rias de Sacrif\xEDcio",
-  "sacrificial-greatsword": "Espad\xE3o do Sacrif\xEDcio",
-  "sacrificial-sword": "Espada do Sacrif\xEDcio",
-  "sharpshooter_s-oath": "Juramento de Sagit\xE1rio",
-  "skyrider-sword": "Espad\xE3o do Cavaleiro do C\xE9u",
-  "skyward-atlas": "Atlas Celestial",
-  "skyward-blade": "Espada Celestial",
-  "skyward-harp": "Harpa Celestial",
-  "skyward-pride": "Orgulho Celestial",
-  "skyward-spine": "Espinha Celestial",
-  slingshot,
-  "song-of-broken-pines": "Can\xE7\xE3o dos Pinhos",
-  "splendor-of-tranquil-waters": "Esplendor das \xC1guas Silenciosas",
-  "staff-of-homa": "B\xE1culo de Homa",
-  "staff-of-the-scarlet-sands": "B\xE1culo das Areias Escarlates",
-  "summit-shaper": "Cortador de Montanhas",
-  "the-alley-flash": "Brilho do Beco",
-  "the-bell": "O Sino",
-  "the-dockhands-assistant": "A Doca",
-  "the-first-great-magic": "Arcana Original",
-  "the-flute": "The Flute",
-  "the-stringless": "\xDAltimo Acorde",
-  "the-unforged": "Espada \xC1spera",
-  "the-widsith": "Sinfonia dos Indolentes",
-  "thrilling-tales-of-dragon-slayers": "Hist\xF3rias Extraordin\xE1rias de Ca\xE7adores de Drag\xF5es",
-  "thundering-pulse": "Agita\xE7\xE3o Trovejante",
-  "tome-of-the-eternal-flow": "Rito do Fluxo Eterno",
-  "tulaytullah_s-remembrance": "Reminisc\xEAncias de Tulaytullah",
-  verdict,
-  "vortex-vanquisher": "Perfuradora Prism\xE1tica",
-  "wavebreaker_s-fin": "Barbatana do Quebra Ondas",
-  "wine-and-song": "Vinho e M\xFAsica",
-  "wandering-evenstar": "Estrela Itinerante",
-  "wolf_s-gravestone": "T\xFAmulo do Lobo",
-  "xiphos-moonlight": "Luz Lunar de Xiphos",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "Arataki Itto",
-    title: "Hero\xEDsmo de Hanamizaka"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "Hu Tao",
-    title: "Fragr\xE2ncia de Ameixa Descongelada"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "Kaedehara Kazuha",
-    title: "Samurai Errante que se Separa da sua Terra"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "Kamisato Ayaka",
-    title: "Transcend\xEAncia Solit\xE1ria"
-  },
-  "kamisato-ayato": {
-    name: "Kamisato Ayato",
-    title: "Pilar da Fortaleza"
-  },
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  "kujou-sara": {
-    name: "Kujou Sara",
-    title: "Flecha de Penas de Corvo"
-  },
-  "kuki-shinobu": {
-    name: "Kuki Shinobu",
-    title: "Erradicadora das Preocupa\xE7\xF5es"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "Raiden Shogun",
-    title: "Plano da Eutimia"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "Sangonomiya Kokomi",
-    title: "P\xE9rolas de Sabedoria"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "Shikanoin Heizou",
-    title: "Mente Condizente"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "Yae Miko",
-    title: "Divers\xE3o Astuta"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "Yun Jin",
-    title: "Palco L\xFAcida"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  ptBR as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ru-RU.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ru-RU.js
deleted file mode 100644
index 006ba78c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ru-RU.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "\u0421\u0438\u043C\u0443\u043B\u044F\u0442\u043E\u0440 \u043C\u043E\u043B\u0438\u0442\u0432 Genshin Impact";
-const character = "\u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439";
-const weapon = "\u041E\u0440\u0443\u0436\u0438\u0435";
-const vision = "\u042D\u043B\u0435\u043C\u0435\u043D\u0442";
-const anemo = "\u0410\u043D\u0435\u043C\u043E";
-const cryo = "\u041A\u0440\u0438\u043E";
-const dendro = "\u0414\u0435\u043D\u0434\u0440\u043E";
-const electro = "\u042D\u043B\u0435\u043A\u0442\u0440\u043E";
-const hydro = "\u041F\u0438\u0440\u043E";
-const geo = "\u0413\u0435\u043E";
-const pyro = "\u041F\u0438\u0440\u043E";
-const bow = "\u0421\u0442\u0440\u0435\u043B\u043A\u043E\u0432\u043E\u0435";
-const catalyst = "\u041A\u0430\u0442\u0430\u043B\u0438\u0437\u0430\u0442\u043E\u0440";
-const claymore = "\u0414\u0432\u0443\u0440\u0443\u0447\u043D\u043E\u0435";
-const sword = "\u041E\u0434\u043D\u043E\u0440\u0443\u0447\u043D\u043E\u0435";
-const polearm = "\u0414\u0440\u0435\u0432\u043A\u043E\u0432\u043E\u0435";
-const extra = "\u0411\u043E\u043D\u0443\u0441";
-const obtained = "\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043E:";
-const waiting = "\u041E\u0436\u0438\u0434\u0430\u0439\u0442\u0435";
-const connectionFailed = "\u041E\u0448\u0438\u0431\u043A\u0430 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F!";
-const confirmButton = "\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C";
-const cancelButton = "\u041E\u0442\u043C\u0435\u043D\u0430";
-const disclaimer = "\u0412\u0441\u0435 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C\u044B\u0435 \u043D\u0430 \u044D\u0442\u043E\u043C \u0441\u0430\u0439\u0442\u0435, \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0430\u0442 Hoyoverse.";
-const fanmade = "\u042D\u0442\u043E \u0447\u0438\u0441\u0442\u043E \u0444\u0430\u043D\u0430\u0442\u0441\u043A\u043E\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435, \u043D\u0430\u0441\u043B\u0430\u0436\u0434\u0430\u0439\u0442\u0435\u0441\u044C \u0438\u043C!";
-const pressToContinue = "\u041D\u0430\u0436\u043C\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C";
-const installInstruction = "\u0418\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u044F \u043F\u043E \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0435 \u043D\u0430 \u0413\u043B\u0430\u0432\u043D\u044B\u0439 \u044D\u043A\u0440\u0430\u043D \u0438\u043B\u0438 \u0420\u0430\u0431\u043E\u0447\u0438\u0439 \u0441\u0442\u043E\u043B";
-const share = "\u041F\u043E\u0434\u0435\u043B\u0438\u0442\u044C\u0441\u044F";
-const screenshot = "\u0421\u0434\u0435\u043B\u0430\u0442\u044C \u0444\u043E\u0442\u043E\u0433\u0440\u0430\u0444\u0438\u044E";
-const capturing = "\u0417\u0430\u0445\u0432\u0430\u0442 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F";
-const rewardFirstShare = "\u041D\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u043F\u0435\u0440\u0432\u0443\u044E \u0430\u043A\u0446\u0438\u044E: {qty}";
-const version = "\u0412\u0435\u0440\u0441\u0438\u044F";
-const donate = "\u041F\u043E\u0434\u0434\u0435\u0440\u0436\u0430\u0442\u044C";
-const banner = {
-  beginner: "\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u043D\u043E\u0432\u0438\u0447\u043A\u0430",
-  wanderlust: "\u0416\u0430\u0436\u0434\u0430 \u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0438\u0439",
-  "epitome-invocation": "\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430",
-  "adrift-in-the-harbor": "\u042D\u0444\u0435\u043C\u0435\u0440\u043D\u043E\u0435 \u043D\u0435\u0434\u043E\u0432\u0435\u0440\u0438\u0435",
-  "auric-blaze": "\u041F\u044B\u043B\u0430\u044E\u0449\u0435\u0435 \u0437\u043E\u043B\u043E\u0442\u043E",
-  "azure-excursion": "\u041B\u0430\u0437\u0443\u0440\u043D\u044B\u0439 \u043F\u043E\u0445\u043E\u0434",
-  "ballad-in-goblets": "\u0421\u0442\u0438\u0445\u0438 \u0438\u0437 \u0432\u0438\u043D\u043D\u043E\u0433\u043E \u043A\u0443\u0431\u043A\u0430",
-  "born-of-ocean-swell": "\u0420\u043E\u0436\u0434\u0451\u043D\u043D\u0430\u044F \u043C\u043E\u0440\u0441\u043A\u043E\u0439 \u043F\u0435\u043D\u043E\u0439",
-  "caution-in-confidence": "\u0421\u0434\u0435\u0440\u0436\u0430\u043D\u043D\u043E\u0435 \u0431\u043B\u0430\u0433\u043E\u0440\u0430\u0437\u0443\u043C\u0438\u0435",
-  "chanson-of-many-waters": "\u041F\u0435\u0441\u043D\u044C \u0432\u043E\u0434\u0430\u043C \u043C\u0438\u0440\u0430",
-  "conjuring-chiaroscuro": "\u0412\u043E\u043B\u0448\u0435\u0431\u0441\u0442\u0432\u043E \u0441\u0432\u0435\u0442\u0430 \u0438 \u0442\u0435\u043D\u0438",
-  "dance-of-lantern": "\u0422\u0430\u043D\u0435\u0446 \u0444\u043E\u043D\u0430\u0440\u0435\u0439",
-  "decree-of-the-deeps": "\u0417\u0430\u0432\u0435\u0442 \u0433\u043B\u0443\u0431\u0438\u043D",
-  "discerner-of-enigmas": "\u0411\u0435\u043B\u0430\u044F \u0440\u0430\u0434\u0443\u0433\u0430",
-  "drifting-luminescence": "\u0414\u0440\u0435\u0439\u0444\u0443\u044E\u0449\u0435\u0435 \u0441\u0432\u0435\u0447\u0435\u043D\u0438\u0435",
-  "everbloom-violet": "\u0412\u0435\u0447\u043D\u043E\u0446\u0432\u0435\u0442\u0443\u0449\u0438\u0439 \u043F\u0443\u0440\u043F\u0443\u0440",
-  "farewell-of-snezhnaya": "\u0417\u0438\u043C\u043D\u0435\u0435 \u0440\u0430\u0441\u0441\u0442\u0430\u0432\u0430\u043D\u0438\u0435",
-  "from-ashes-reborn": "\u041F\u0440\u0430\u0445 \u043F\u0435\u0440\u0435\u0440\u043E\u0436\u0434\u0451\u043D\u043D\u044B\u0439",
-  "gentry-of-hermitage": "\u0413\u043E\u0440\u044B \u0438 \u0440\u044B\u043D\u043A\u0438",
-  "immaculate-pulse": "\u0411\u0438\u0435\u043D\u0438\u0435 \u043C\u0443\u0434\u0440\u043E\u0433\u043E \u0441\u0435\u0440\u0434\u0446\u0430",
-  "in-the-name-of-the-rosula": "\u0412\u043E \u0438\u043C\u044F \u0440\u043E\u0437\u044B",
-  "invitation-to-mundane-life": "\u041F\u0440\u0438\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u0435 \u043A \u043C\u0438\u0440\u0441\u043A\u043E\u0439 \u0436\u0438\u0437\u043D\u0438",
-  "leaves-in-the-wind": "\u041B\u0438\u0441\u0442\u044C\u044F \u043D\u0430 \u0432\u0435\u0442\u0440\u0443",
-  "moment-of-bloom": "\u041C\u043E\u043C\u0435\u043D\u0442 \u0446\u0432\u0435\u0442\u0435\u043D\u0438\u044F",
-  "oni_s-royale": "\u041F\u0438\u0440\u0448\u0435\u0441\u0442\u0432\u043E \u043E\u0301\u043D\u0438",
-  "reign-of-serenity": "\u0413\u043E\u0441\u043F\u043E\u0434\u0441\u0442\u0432\u043E \u0431\u0435\u0437\u043C\u044F\u0442\u0435\u0436\u043D\u043E\u0441\u0442\u0438",
-  "secretum-secretorum": "\u0422\u0430\u0438\u043D\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u0441\u0435\u043A\u0440\u0435\u0442\u044B",
-  "sparkling-steps": "\u0421\u0432\u0435\u0440\u043A\u0430\u044E\u0449\u0430\u044F \u043F\u043E\u0441\u0442\u0443\u043F\u044C",
-  "tapestry-of-golden-flames": "\u0413\u043E\u0431\u0435\u043B\u0435\u043D \u0437\u043E\u043B\u043E\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u043C\u0435\u043D\u0438",
-  "tempestuous-destiny": "\u0411\u0443\u0448\u0443\u044E\u0449\u0438\u0439 \u0440\u043E\u043A",
-  "the-heron_s-court": "\u0421\u0430\u0434 \u0431\u0435\u043B\u043E\u0439 \u0446\u0430\u043F\u043B\u0438",
-  "the-moongrass-enlightenment": "\u041E\u0437\u0430\u0440\u0435\u043D\u0438\u0435 \u043B\u0443\u043D\u043D\u043E\u0439 \u0442\u0440\u0430\u0432\u044B",
-  "the-transcendent-one-returns": "\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D\u0438\u0435 \u0432 \u043C\u0438\u0440 \u0441\u043C\u0435\u0440\u0442\u043D\u044B\u0445",
-  "twilight-arbiter": "\u0421\u0443\u043C\u0435\u0440\u0435\u0447\u043D\u044B\u0439 \u0432\u0435\u0440\u0448\u0438\u0442\u0435\u043B\u044C",
-  "twirling-lotus": "\u041A\u0440\u0443\u0436\u0430\u0449\u0438\u0439\u0441\u044F \u043B\u043E\u0442\u043E\u0441",
-  "viridescent-vigil": "\u041F\u0430\u0442\u0440\u0443\u043B\u044C \u043B\u0435\u0441\u043D\u043E\u0439 \u0447\u0430\u0449\u0438"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "\u041C\u043E\u043B\u0438\u0442\u0432\u0430",
-  rollButton: "\u041F\u043E\u043C\u043E\u043B\u0438\u0442\u044C\u0441\u044F {count} \u0440\u0430\u0437",
-  stellaFortuna: "\u0423\u0434\u0430\u0447\u0443",
-  loadFailed: "Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "\u0411\u0430\u043D\u043D\u0435\u0440",
-    allBanner: "\u0412\u0441\u0435 \u0431\u0430\u043D\u043D\u0435\u0440\u044B",
-    previous: "\u041F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0438\u0439 \u0431\u0430\u043D\u043D\u0435\u0440",
-    findBanner: "\u041D\u0430\u0439\u0442\u0438 \u0431\u0430\u043D\u043D\u0435\u0440",
-    group: "\u0413\u0440\u0443\u043F\u043F\u0430",
-    beginner: "\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u043D\u043E\u0432\u0438\u0447\u043A\u0430",
-    "character-event": "\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430",
-    "weapon-event": "\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F",
-    standard: "\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0430\u044F \u041C\u043E\u043B\u0438\u0442\u0432\u0430",
-    wishDescription: "\u0417\u0430 \u043A\u0430\u0436\u0434\u044B\u0435 10 \u0441\u043E\u0432\u0435\u0440\u0448\u0451\u043D\u043D\u044B\u0445 \u041C\u043E\u043B\u0438\u0442\u0432 \u0432\u044B \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 4\u2605 \u0438\u043B\u0438 \u0432\u044B\u0448\u0435.",
-    novice: "\u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043B\u044F \u043D\u0430\u0447\u0438\u043D\u0430\u044E\u0449\u0438\u0445",
-    up: "UP!",
-    beginnerSet: "\u041D\u0430\u0431\u043E\u0440 \u0438\u0437 10 \u0432\u0435\u0449\u0435\u0439 \u0441\u043E \u0441\u043A\u0438\u0434\u043A\u043E\u0439 \u0432 20%. \u0412 \u043F\u0435\u0440\u0432\u043E\u043C \u043D\u0430\u0431\u043E\u0440\u0435 \u0432\u044B \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 {character}.",
-    beginnerNote: "\xAB\u041A\u0430\u043A \u0438 \u043F\u043E\u043B\u043E\u0436\u0435\u043D\u043E \u043F\u043E\u0447\u0442\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0439 \u0433\u043E\u0440\u043D\u0438\u0447\u043D\u043E\u0439.\xBB",
-    beginnerChance: "\u041F\u043E\u043F\u044B\u0442\u043E\u043A: {chances}",
-    standardNote: "\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u044B\u0435 \u043C\u043E\u043B\u0438\u0442\u0432\u044B \u043D\u0435 \u0438\u043C\u0435\u044E\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u0439 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438.",
-    allWeaponTypes: "\u0412\u0441\u0435 \u0442\u0438\u043F\u044B \u043E\u0440\u0443\u0436\u0438\u044F",
-    etc: "\u0438 \u0442.\u043F.",
-    probIncreased: "\u0412\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u0443\u0432\u0435\u043B\u0438\u0447\u0435\u043D\u0430!",
-    eventNote: "\u042D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 5\u2605 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u043B\u0438\u0448\u044C \u0432 \u043F\u0435\u0440\u0438\u043E\u0434 \u0434\u0430\u043D\u043D\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B.",
-    viewDetails: "\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u043E\u0441\u0442\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u0432 \u043C\u0435\u043D\u044E \xAB\u0414\u0435\u0442\u0430\u043B\u0438\xBB."
-  },
-  epitomizedPath: {
-    text: "\u041F\u0443\u0442\u044C \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F",
-    fatePoint: "\u041E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B",
-    cancelPrompt: "\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u043A\u0443\u0440\u0441?",
-    cancelDesc: "\u041E\u0442\u043C\u0435\u043D\u0430 \u043A\u0443\u0440\u0441\u0430 \u0441\u0431\u0440\u043E\u0441\u0438\u0442 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B.",
-    selectWeapon: "\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043E\u0440\u0443\u0436\u0438\u0435",
-    chartCourseOf: "\u041A\u0443\u0440\u0441 \u043D\u0430 \u043F\u0440\u0435\u0434\u043C\u0435\u0442: {target}",
-    cancelCourse: "\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u043A\u0443\u0440\u0441",
-    chartCourse: "\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043A\u0443\u0440\u0441",
-    courseSetFor: "\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u043A\u0443\u0440\u0441 \u043D\u0430: {selectedCourse}",
-    description: [
-      "\u041F\u0443\u0442\u044C \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F - \u044D\u0442\u043E \u043C\u0435\u0445\u0430\u043D\u0438\u043A\u0430, \u0432\u043A\u043B\u044E\u0447\u0451\u043D\u043D\u0430\u044F \u0432 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u0446\u0438\u043A\u043B \u043C\u043E\u043B\u0438\u0442\u0432\u044B \xAB\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430\xBB:",
-      "\u041F\u043E\u0441\u043B\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043A\u0443\u0440\u0441\u0430 \u043D\u0430 \u0436\u0435\u043B\u0430\u0435\u043C\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435, \u0435\u0441\u043B\u0438 \u0432\u044B <span>\u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605, \u043A\u043E\u0442\u043E\u0440\u043E\u0435 \u043D\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0430\u0448\u0435\u043C\u0443 \u0432\u044B\u0431\u043E\u0440\u0443</span>, \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 1 \u043E\u0447\u043A\u043E \u0421\u0443\u0434\u044C\u0431\u044B.",
-      "\u041A\u043E\u0433\u0434\u0430 \u0432\u044B \u043D\u0430\u0431\u0435\u0440\u0451\u0442\u0435 \u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u043E\u0447\u043A\u043E\u0432 \u0421\u0443\u0434\u044C\u0431\u044B, \u0432\u0430\u0448\u0435 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0435\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605 \u0431\u0443\u0434\u0435\u0442 \u0442\u0435\u043C, \u0447\u0442\u043E \u0432\u044B \u0432\u044B\u0431\u0440\u0430\u043B\u0438 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F.",
-      "<span>\u041F\u043E\u0441\u043B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F \u043C\u043E\u043B\u0438\u0442\u0432\u044B \xAB\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430\xBB \u0432\u0430\u0448\u0438 \u043E\u0447\u043A\u0438 \u0441\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B</span>.",
-      "\u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0432\u044B\u0431\u0435\u0440\u0435\u0442\u0435 \u043E\u0440\u0443\u0436\u0438\u0435, \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u043D\u0435 \u0431\u0443\u0434\u0443\u0442 \u043D\u0430\u043A\u0430\u043F\u043B\u0438\u0432\u0430\u0442\u044C\u0441\u044F.",
-      "\u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0432\u043E\u0439 \u0432\u044B\u0431\u043E\u0440. <span>\u042D\u0442\u043E \u0441\u0431\u0440\u043E\u0441\u0438\u0442 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u0432\u0430\u043C\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B</span>.",
-      "<span>\u041D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u0432\u0430\u043C\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0442\u0430\u043A\u0436\u0435 \u043E\u0431\u043D\u0443\u043B\u044F\u0442\u0441\u044F, \u043A\u043E\u0433\u0434\u0430 \u0442\u0435\u043A\u0443\u0449\u0438\u0439 \u0446\u0438\u043A\u043B \u043C\u043E\u043B\u0438\u0442\u0432\u044B \xAB\u0412\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u0435 \u0431\u043E\u0436\u0435\u0441\u0442\u0432\u0430\xBB \u0437\u0430\u043A\u043E\u043D\u0447\u0438\u0442\u0441\u044F</span>."
-    ]
-  },
-  result: {
-    skip: "\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C",
-    meteorFailed: "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0430\u043D\u0438\u043C\u0430\u0446\u0438\u044E \u0432\u044B\u043F\u0430\u0434\u0435\u043D\u0438\u044F",
-    "new": "\u041D\u043E\u0432\u043E\u0435",
-    convertion: "\u0414\u0443\u0431\u043B\u0438\u043A\u0430\u0442",
-    title: "\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u043C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043B\u044F {item}"
-  }
-};
-const outfit = {
-  heading: "\u0413\u0430\u0440\u0434\u0435\u0440\u043E\u0431",
-  "default": "Default",
-  setOutfit: "\u0421\u043C\u0435\u043D\u0438\u0442\u044C",
-  owned: "\u041F\u043E\u043B\u0443\u0447\u0435\u043D\u043E",
-  purchasePrompt: "\u0423 \u0432\u0430\u0441 \u0435\u0449\u0451 \u043D\u0435\u0442 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043A\u043E\u0441\u0442\u044E\u043C\u0430. \u0412\u0441\u0451 \u0440\u0430\u0432\u043D\u043E \u043A\u0443\u043F\u0438\u0442\u044C?",
-  promptInfo: "\u041F\u043E\u0441\u043B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043D\u0443\u0436\u043D\u043E\u0433\u043E \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u043A\u043E\u0441\u0442\u044E\u043C \u0432 \u0438\u0433\u0440\u0435.",
-  obtained: "New Outfit Obtained",
-  unlocked: "{character}: Outfit Unlocked",
-  item: {
-    "5-star-outrider": {
-      name: "\u041B\u0443\u0447\u0448\u0438\u0439 \u0441\u043A\u0430\u0443\u0442"
-    },
-    "favonian-fevotion": {
-      name: "\u041F\u043E\u043A\u0440\u043E\u0432\u0438\u0442\u0435\u043B\u044C\u0441\u0442\u0432\u043E \u0432\u0435\u0442\u0440\u0430"
-    },
-    "flowing-fate": {
-      name: "\u041A\u0440\u0443\u0433\u043E\u0432\u043E\u0440\u043E\u0442 \u0437\u0432\u0451\u0437\u0434"
-    },
-    "executor_s-thorns": {
-      name: "\u0428\u0438\u043F\u044B \u043D\u0430\u043A\u0430\u0437\u0430\u043D\u0438\u044F"
-    },
-    "sea-breeze-dandelion": {
-      name: "\u0421\u043E\u043D \u043C\u043E\u0440\u0441\u043A\u043E\u0433\u043E \u0431\u0440\u0438\u0437\u0430",
-      description: "\u041F\u043B\u044F\u0436\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u0414\u0436\u0438\u043D\u043D. \u041B\u0451\u0433\u043A\u0438\u0439 \u0438 \u043E\u0434\u043D\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E \u044D\u043B\u0435\u0433\u0430\u043D\u0442\u043D\u044B\u0439. \u0418\u0434\u0435\u0430\u043B\u044C\u043D\u044B\u0439 \u0432\u0430\u0440\u0438\u0430\u043D\u0442 \u0434\u043B\u044F \u043F\u043E\u0435\u0437\u0434\u043A\u0438 \u043D\u0430 \u043C\u043E\u0440\u0435."
-    },
-    "summertime-sparkle": {
-      name: "\u041B\u0435\u0442\u043D\u0438\u0439 \u0431\u043B\u0435\u0441\u043A",
-      description: "\u041F\u043B\u044F\u0436\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u0411\u0430\u0440\u0431\u0430\u0440\u044B. \u041F\u0440\u0435\u043A\u0440\u0430\u0441\u043D\u0430\u044F \u044E\u0431\u043A\u0430 \u043D\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u0430 \u044D\u043D\u0435\u0440\u0433\u0438\u0435\u0439 \u043B\u0435\u0442\u0430 \u0438 \u043F\u0440\u043E\u043F\u0438\u0442\u0430\u043D\u0430 \u0441\u0432\u0435\u0436\u0438\u043C \u0432\u043E\u0437\u0434\u0443\u0445\u043E\u043C \u043E\u043A\u0435\u0430\u043D\u0430."
-    },
-    "opulent-splendor": {
-      name: "\u042F\u0440\u043A\u0430\u044F \u043B\u0451\u0433\u043A\u043E\u0441\u0442\u044C",
-      description: "\u041F\u0440\u0430\u0437\u0434\u043D\u0438\u0447\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u041A\u044D \u0426\u0438\u043D. \u0412 \u0443\u0442\u0440\u0435\u043D\u043D\u0438\u0435 \u0447\u0430\u0441\u044B \u043F\u0440\u0430\u0437\u0434\u043D\u0438\u043A\u0430 \u043C\u043E\u0440\u0441\u043A\u0438\u0445 \u0444\u043E\u043D\u0430\u0440\u0435\u0439 \u043D\u0438\u0442\u0438, \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0442\u044F\u0436\u0451\u043B\u043E\u0439 \u0440\u0430\u0431\u043E\u0442\u044B, \u0441\u043F\u043B\u0435\u0442\u0430\u044E\u0442\u0441\u044F \u0432 \u043B\u0451\u0433\u043A\u0438\u0439 \u0432\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u043D\u044B\u0439 \u043E\u0431\u0440\u0430\u0437."
-    },
-    "orchid_s-evening-gown": {
-      name: "\u0424\u043B\u0451\u0440 \u043E\u0440\u0445\u0438\u0434\u0435\u0438",
-      description: "\u041F\u0440\u0430\u0437\u0434\u043D\u0438\u0447\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u041D\u0438\u043D \u0413\u0443\u0430\u043D. \u0414\u043B\u0438\u043D\u043D\u043E\u0435 \u043F\u043B\u0430\u0442\u044C\u0435 \u0446\u0432\u0435\u0442\u0430 \u0438\u043D\u0434\u0438\u0433\u043E \u043F\u043E\u0434\u0447\u0435\u0440\u043A\u0438\u0432\u0430\u0435\u0442 \u044D\u043B\u0435\u0433\u0430\u043D\u0442\u043D\u044B\u0435 \u0438\u0437\u0433\u0438\u0431\u044B \u043A\u0440\u0430\u0441\u0430\u0432\u0438\u0446\u044B, \u0430 \u043A\u0440\u044B\u043B\u044C\u044F \u0431\u0430\u0431\u043E\u0447\u043A\u0438 \u043D\u0430 \u043B\u043E\u0434\u044B\u0436\u043A\u0430\u0445 \u043F\u0440\u0438\u0434\u0430\u044E\u0442 \u043D\u0430\u0440\u044F\u0434\u0443 \u043B\u0451\u0433\u043A\u043E\u0435 \u0438\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u043E."
-    },
-    "ein-immernachtstraum": {
-      name: "\u0421\u043E\u043D \u0432\u0435\u0447\u043D\u043E\u0439 \u043D\u043E\u0447\u0438",
-      description: "\u041F\u0430\u0440\u0430\u0434\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u043F\u0440\u0438\u043D\u0446\u0435\u0441\u0441\u044B. \u0414\u0430 \u0431\u0443\u0434\u0435\u0442 \u0432\u0435\u0447\u043D\u043E \u0435\u0451 \u043C\u0443\u0436\u0435\u0441\u0442\u0432\u043E, \u0438\u0441\u043A\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u044C \u0438 \u0434\u043E\u0431\u0440\u043E\u0442\u0430, \u0434\u0430\u0431\u044B \u043D\u0438\u043A\u0430\u043A\u043E\u0435 \u0437\u043B\u043E \u043D\u0435 \u043C\u043E\u0433\u043B\u043E \u043E\u0434\u043E\u043B\u0435\u0442\u044C \u0435\u0451."
-    },
-    "red-dead-of-night": {
-      name: "\u0410\u043B\u0430\u044F \u043D\u043E\u0447\u044C",
-      description: "\u041E\u0434\u0438\u043D \u0438\u0437 \u043A\u043E\u0441\u0442\u044E\u043C\u043E\u0432, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0414\u0438\u043B\u044E\u043A \u043D\u0430\u0434\u0435\u0432\u0430\u0435\u0442 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0440\u0430\u0431\u043E\u0442\u044B \u043F\u043E\u0434 \u043F\u0440\u0438\u043A\u0440\u044B\u0442\u0438\u0435\u043C. \u041E\u043D \u043D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u0435\u0442 \u043F\u043B\u0430\u043C\u044F, \u0431\u0443\u0448\u0443\u044E\u0449\u0435\u0435 \u0432 \u0442\u0435\u043D\u0438. \u0411\u0430\u0433\u0440\u043E\u0432\u043E-\u043A\u0440\u0430\u0441\u043D\u044B\u0435 \u0441\u043B\u0435\u0434\u044B, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043E\u043D \u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 \u0437\u0430 \u0441\u043E\u0431\u043E\u0439 \u043F\u043E \u043A\u0440\u0430\u044F\u043C \u043F\u043E\u043B\u044F \u0437\u0440\u0435\u043D\u0438\u044F \u0432\u0440\u0430\u0433\u043E\u0432, \u0441\u0442\u0430\u043D\u0443\u0442 \u0438\u0445 \u0432\u0435\u0447\u043D\u044B\u043C \u043A\u043E\u0448\u043C\u0430\u0440\u043E\u043C \u043D\u0430 \u0432\u0441\u044E \u043E\u0441\u0442\u0430\u0432\u0448\u0443\u044E\u0441\u044F \u0436\u0438\u0437\u043D\u044C."
-    },
-    "a-sobriquet-under-shade": {
-      name: "\u0418\u043D\u043A\u043E\u0433\u043D\u0438\u0442\u043E \u0432 \u0442\u0435\u043D\u0438 \u043B\u0438\u0441\u0442\u0432\u044B",
-      description: "\u041D\u0430\u0440\u044F\u0434, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u043A\u0442\u043E-\u0442\u043E \u0437\u0430\u043A\u0430\u0437\u0430\u043B \u0434\u043B\u044F \u041B\u0438\u0437\u044B \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0435\u0451 \u0432\u0438\u0437\u0438\u0442\u0430 \u0432 \u0421\u0443\u043C\u0435\u0440\u0443. \u0418\u0434\u0435\u0430\u043B\u044C\u043D\u043E \u0441\u043E\u0431\u043B\u044E\u0434\u0430\u044F \u0431\u0430\u043B\u0430\u043D\u0441 \u043C\u0435\u0436\u0434\u0443 \u043F\u0440\u0430\u043A\u0442\u0438\u0447\u043D\u043E\u0441\u0442\u044C\u044E \u0438 \u044D\u043B\u0435\u0433\u0430\u043D\u0442\u043D\u043E\u0441\u0442\u044C\u044E, \u044D\u0442\u043E \u043F\u043B\u0430\u0442\u044C\u0435 \u043D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u0435\u0442 \u0444\u043E\u0440\u043C\u0443, \u043A\u043E\u0442\u043E\u0440\u0443\u044E \u041B\u0438\u0437\u0430 \u043D\u043E\u0441\u0438\u043B\u0430 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u043E\u0431\u0443\u0447\u0435\u043D\u0438\u044F \u0432 \u0410\u043A\u0430\u0434\u0435\u043C\u0438\u0438."
-    },
-    "springbloom-missive": {
-      name: "\u041F\u043E\u0441\u043B\u0430\u043D\u0438\u0435 \u0432\u0435\u0441\u0435\u043D\u043D\u0435\u0433\u043E \u0446\u0432\u0435\u0442\u0435\u043D\u0438\u044F",
-      description: "\u041D\u0430\u0440\u044F\u0434 \u0410\u044F\u043A\u0438 \u0434\u043B\u044F \u043F\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u0439. \u0415\u0433\u043E \u0444\u0430\u0441\u043E\u043D \u043D\u0430\u043F\u043E\u043C\u0438\u043D\u0430\u0435\u0442 \u043E \u043D\u0430\u0440\u044F\u0434\u0430\u0445 \u0444\u043E\u043D\u0442\u0435\u0439\u043D\u0441\u043A\u0438\u0445 \u0434\u0430\u043C \u043D\u0430 \u0438\u043B\u043B\u044E\u0441\u0442\u0440\u0430\u0446\u0438\u044F\u0445 \u0432 \u043B\u0451\u0433\u043A\u0438\u0445 \u0440\u043E\u043C\u0430\u043D\u0430\u0445. \u0421\u0443\u0434\u044F \u043F\u043E \u0432\u0441\u0435\u043C\u0443, \u043F\u043E\u0434\u043E\u0431\u043D\u0430\u044F \u043C\u043E\u0434\u0430 \u043E\u0442\u0440\u0430\u0436\u0430\u0435\u0442 \u043E\u0431\u0440\u0430\u0437 \u0436\u0438\u0437\u043D\u0438 \u0436\u0435\u043D\u0449\u0438\u043D \u0438\u0437 \u0442\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u044B."
-    },
-    "blossoming-starlight": {
-      name: "\u0426\u0432\u0435\u0442\u0443\u0449\u0438\u0439 \u0441\u0432\u0435\u0442 \u0437\u0432\u0451\u0437\u0434",
-      description: "\u0418\u0437\u044B\u0441\u043A\u0430\u043D\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434 \u041A\u043B\u0438 \u0434\u043B\u044F \u0441\u0430\u043C\u044B\u0445 \u0432\u0430\u0436\u043D\u044B\u0445 \u0432\u044B\u0441\u0442\u0443\u043F\u043B\u0435\u043D\u0438\u0439. \u042F\u0440\u043A\u0438\u0439, \u0441\u043B\u043E\u0432\u043D\u043E \u043A\u0440\u0435\u043C\u043E\u0432\u044B\u0439 \u0442\u043E\u0440\u0442, \u0443\u043A\u0440\u0430\u0448\u0435\u043D\u043D\u044B\u0439 \u0446\u0432\u0435\u0442\u0430\u043C\u0438 \u0438 \u0430\u043B\u044B\u043C\u0438 \u0441\u0432\u0435\u0447\u0430\u043C\u0438. \u0421 \u043D\u0438\u043C \u0441\u0447\u0430\u0441\u0442\u044C\u0435 \u0438 \u0443\u043B\u044B\u0431\u043A\u0438 \u043D\u0430\u043F\u043E\u043B\u043D\u044F\u0442 \u0432\u0430\u0448\u0438 \u043F\u0440\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044F."
-    },
-    "sailwind-shadow": {
-      name: "\u0422\u0435\u043D\u044C \u0432\u0435\u0442\u0440\u0430 \u0432 \u043F\u0430\u0440\u0443\u0441\u0430\u0445",
-      description: "\u041A\u043E\u0441\u0442\u044E\u043C \u041A\u044D\u0439\u0438, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u043E\u043D \u043D\u0430\u0434\u0435\u0432\u0430\u043B, \u0432\u044B\u0441\u0442\u0443\u043F\u0430\u044F \u0432 \u0440\u043E\u043B\u0438 \u0420\u0430\u0437\u0431\u043E\u0439\u043D\u0438\u043A\u0430 \u0441 \u041A\u0438\u043D\u0436\u0430\u043B\u0430\u043C\u0438. \u042D\u0442\u043E \u0432\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u043D\u044B\u0439 \u043D\u0430\u0440\u044F\u0434, \u043F\u0440\u0438\u0437\u0432\u0430\u043D\u043D\u044B\u0439 \u043F\u0440\u0438\u0432\u043B\u0435\u0447\u044C \u0432\u043D\u0438\u043C\u0430\u043D\u0438\u0435. \u041D\u0430\u0434\u0435\u0442\u044C \u043D\u0435\u0441\u043B\u043E\u0436\u043D\u043E, \u043D\u043E \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0432\u0440\u0435\u043C\u044F, \u0447\u0442\u043E\u0431\u044B \u0440\u0430\u0437\u043E\u0431\u0440\u0430\u0442\u044C\u0441\u044F \u0441\u043E \u0432\u0441\u0435\u043C\u0438 \u0430\u043A\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u0430\u043C\u0438 \u0438 \u043A\u0438\u043D\u0436\u0430\u043B\u0430\u043C\u0438."
-    }
-  }
-};
-const details = {
-  text: "\u0414\u0435\u0442\u0430\u043B\u0438",
-  promotional: "\u041F\u043E\u0432\u044B\u0448\u0435\u043D\u043D\u044B\u0439 \u0448\u0430\u043D\u0441",
-  itemlist: "\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432",
-  increasedRate: "\u0412\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432 \u043F\u043E\u0432\u044B\u0448\u0435\u043D\u0430!",
-  percentageDrop: "\u0428\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F {rarity}\u2605 : {percentage}",
-  wishDetails: "\u041F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435 \u043E \u041C\u043E\u043B\u0438\u0442\u0432\u0430\u0445",
-  probInfo: "\u0411\u0430\u0437\u043E\u0432\u044B\u0439 \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 {rarity}\u2605 : {singlePercentage} (\u0412\u043A\u043B. \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u044E: {avgPercentage})",
-  itemWishFor: "\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432, \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041C\u043E\u043B\u0438\u0442\u0432\u044B:",
-  itemType: "\u0422\u0438\u043F",
-  itemName: "\u0418\u043C\u044F",
-  beginnerInfo: "\u041D\u0435\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 (\u041E\u0442\u043A\u0440\u044B\u0442\u043E \u0434\u043E 20 \u043C\u043E\u043B\u0438\u0442\u0432)",
-  limited: "\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u043E\u0435 \u0441\u043E\u0431\u044B\u0442\u0438\u0435",
-  permanent: "\u041D\u0435\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438",
-  alert: "\u203B \u042D\u0442\u043E {wishName}. \u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043F\u044B\u0442\u043E\u043A \u0434\u043B\u044F \u043D\u0435\u0451 \u043F\u043E\u0434\u0441\u0447\u0438\u0442\u044B\u0432\u0430\u0435\u0442\u0441\u044F \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E \u0438 \u043D\u0430 \u0447\u0438\u0441\u043B\u043E \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043F\u044B\u0442\u043E\u043A \u0434\u0440\u0443\u0433\u0438\u0445 \u043C\u043E\u043B\u0438\u0442\u0432 \u043D\u0435 \u0432\u043B\u0438\u044F\u0435\u0442.",
-  beginner: [
-    " <span> \u041C\u043E\u043B\u0438\u0442\u0432\u0430</span> \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u2013 \u044D\u0442\u043E \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0430\u044F \u041C\u043E\u043B\u0438\u0442\u0432\u0430. \u041E\u043D\u0430 \u043D\u0435 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0430 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u0430 \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u043E \u0434\u043B\u044F \u0442\u0435\u0445, \u043A\u0442\u043E \u0432 \u0422\u0435\u0439\u0432\u0430\u0442\u0435 \u0441\u043E\u0432\u0441\u0435\u043C \u043D\u0435\u0434\u0430\u0432\u043D\u043E. \u0412 \u0440\u0430\u043C\u043A\u0430\u0445 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u043D\u0435 \u043B\u0438\u043C\u0438\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 \u0438 \u043E\u0440\u0443\u0436\u0438\u0435. <br /> \u0412 \u041C\u043E\u043B\u0438\u0442\u0432\u0435 \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u043D\u0430\u0431\u043E\u0440 \u0438\u0437 10 \u043C\u043E\u043B\u0438\u0442\u0432 \u0441\u0442\u043E\u0438\u0442 \u043D\u0430 <span>20%</span> \u0421\u0443\u0434\u044C\u0431\u043E\u043D\u043E\u0441\u043D\u044B\u0445 \u0432\u0441\u0442\u0440\u0435\u0447 \u043C\u0435\u043D\u044C\u0448\u0435. \u041A\u0440\u043E\u043C\u0435 \u044D\u0442\u043E\u0433\u043E, \u0437\u0430 \u043F\u0435\u0440\u0432\u044B\u0435 10 \u041C\u043E\u043B\u0438\u0442\u0432 \u0432\u044B \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \xAB\u041D\u0435\u0440\u0430\u0441\u043F\u0443\u0441\u0442\u0438\u0432\u0448\u0438\u0439\u0441\u044F \u0446\u0432\u0435\u0442\u043E\u043A\xBB \u041D\u043E\u044D\u043B\u043B\u044C (\u0413\u0435\u043E), \u0430 \u0437\u0430 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 10 \u2013 <span>\u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430</span> 4\u2605 \u0438\u043B\u0438 \u0432\u044B\u0448\u0435! \u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u0437\u0430\u043A\u0430\u043D\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u043F\u043E\u0441\u043B\u0435 <span>20</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A. \u041A\u043E\u0433\u0434\u0430 \u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u043D\u043E\u0432\u0438\u0447\u043A\u0430 \u0437\u0430\u043A\u043E\u043D\u0447\u0438\u0442\u0441\u044F, \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0441\u0442\u0430\u043D\u0435\u0442 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430.",
-    "\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.",
-    "\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013",
-    "\u0411\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = <span> 0.600%</span> <br /> \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 = <span> 5.100%</span>; \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) = <span> 13.000%</span>;"
-  ],
-  standard: [
-    '"{bannerName}" \u044D\u0442\u043E \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0430\u044F \u041C\u043E\u043B\u0438\u0442\u0432\u0430. \u041E\u043D\u0430 \u043D\u0435 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0430 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438. \u0412 \u0440\u0430\u043C\u043A\u0430\u0445 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u043D\u0435 \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 \u0438 \u043E\u0440\u0443\u0436\u0438\u0435.<br/> \u0417\u0430 \u043A\u0430\u0436\u0434\u044B\u0435 10 \u041C\u043E\u043B\u0438\u0442\u0432 \u0432\u044B <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u043D\u043E\u0433\u043E \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0438\u043B\u0438 \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605.',
-    "\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.",
-    "\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013",
-    "\u0411\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = <span>0.600%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 5\u2605 = <span>0.300%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 = <span>0.300%</span>; \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = <span>1.600%</span>; \u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u0438\u043D \u0440\u0430\u0437 \u0437\u0430 <span>90</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A. <br> \u0411\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>5.100%</span>; \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 4\u2605 = 2,550%, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 4\u2605 = <span>2.550%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>13.000%</span>. \u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0438 \u0432\u044B\u0448\u0435 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0441 <span>10</span> \u043F\u043E\u043F\u044B\u0442\u043A\u0438, \u0438 \u0432 \u044D\u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0435 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0441\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 <span>99.400%</span>, \u0430 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 - <span>0.600%</span>. "
-  ],
-  events: [
-    "\xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB \u0443\u0436\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430! \u0412\u043E \u0432\u0440\u0435\u043C\u044F \u044D\u0442\u043E\u0433\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u044F <span>\u0440\u0435\u0437\u043A\u043E \u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u0441\u044F</span> \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439: \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 \u0441\u043E\u0431\u044B\u0442\u0438\u044F 5\u2605 {featuredCharacter}, \u0430 \u0442\u0430\u043A\u0436\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 4\u2605 {rateupCharacters}.<br/> <span> \u203B \u042D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 \u0438\u0437 \u044D\u0442\u043E\u0433\u043E \u0441\u043F\u0438\u0441\u043A\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u0432 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u0435 \xAB\u0416\u0430\u0436\u0434\u0430 \u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0438\u0439\xBB.</span>",
-    "\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.",
-    "\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013",
-    "\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 5\u2605",
-    "\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 = 0,600%, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) = <span>1,600%</span>. \u0413\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 5\u2605 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u0438\u043D \u0440\u0430\u0437 \u0437\u0430 <span>90</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A.<br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u043C 5\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span> 50.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 {featuredCharacter}. \u0415\u0441\u043B\u0438 \u043F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D \u0434\u0440\u0443\u0433\u043E\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 5\u2605, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 5\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u044B\u043C \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u044B\u043C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u043C.",
-    "\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 4\u2605",
-    "\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F:{bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span> 5.100%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 4\u2605 = <span>2.550%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 4\u2605 = <span>2.550%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span> 13.000%</span>. \u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0438 \u0432\u044B\u0448\u0435 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0441 10 \u043F\u043E\u043F\u044B\u0442\u043A\u0438, \u0438 \u0432 \u044D\u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0435 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0441\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442  <span>99.400%</span>, \u0430 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 - <span>0.600%</span>. <br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u043C 4\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span>50.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u043E\u0434\u0438\u043D \u0438\u0437 \u043F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044B\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439: {rateupCharacters}. \u0415\u0441\u043B\u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 4\u2605 \u043D\u0435 \u043E\u0434\u0438\u043D \u0438\u0437 \u043F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044B\u0445, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436 4\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0438\u043C. \u041F\u0440\u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0438 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043B\u044E\u0431\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0432\u043D\u044B\u043C."
-  ],
-  weapons: [
-    "\xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB \u0443\u0436\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430! \u0412\u043E \u0432\u0440\u0435\u043C\u044F \u044D\u0442\u043E\u0433\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0435\u0433\u043E \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0435\u0437\u043A\u043E \u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u0441\u044F: \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u043E\u0435 \u0434\u043B\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605 {featuredWeapon1}; \u044D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u043E\u0435 \u0434\u043B\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605 {rateupWeapons}.<br/> <span> \u203B \u042D\u043A\u0441\u043A\u043B\u044E\u0437\u0438\u0432\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0438\u0437 \u044D\u0442\u043E\u0433\u043E \u0441\u043F\u0438\u0441\u043A\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0432 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u0435 \xAB\u0416\u0430\u0436\u0434\u0430 \u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u0438\u0439\xBB</span>",
-    "\u203B \u041F\u0440\u0438 \u043E\u0431\u044B\u0447\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445 \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u044F \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0435\u0442\u0441\u044F \u0440\u0430\u0432\u043D\u043E\u043C\u0435\u0440\u043D\u043E. \u0415\u0441\u043B\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044E\u0442 \u043A\u0430\u043A\u0438\u0435-\u043B\u0438\u0431\u043E \u0443\u0441\u0438\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0438, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u0440\u043E\u0447\u0442\u0438\u0442\u0435 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u043F\u0440\u0430\u0432\u0438\u043B\u0430.",
-    "\u3013 \u041F\u0440\u0430\u0432\u0438\u043B\u0430 \u3013",
-    "\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 5\u2605",
-    "\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 = <span>0.700%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) = <span>1.850%</span>. \u0413\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 \u043A\u0430\u043A \u043C\u0438\u043D\u0438\u043C\u0443\u043C \u043E\u0434\u0438\u043D \u0440\u0430\u0437 \u0437\u0430 <span>80</span> \u043F\u043E\u043F\u044B\u0442\u043E\u043A. <br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043E\u0440\u0443\u0436\u0438\u0435\u043C 5\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span>75.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0413\u0440\u043E\u043C\u043E\u0432\u043E\u0439 {featuredWeapon1} \u0438\u043B\u0438 {featuredWeapon2}. \u0415\u0441\u043B\u0438 \u043F\u0435\u0440\u0432\u044B\u0439 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 5\u2605 \u043D\u0435 \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0441 \u043F\u043E\u0432\u044B\u0448\u0435\u043D\u043D\u043E\u0439 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 5\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0438\u043C. \u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u043D\u0435\u0442 \u0438\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0433\u043E \u043E\u0440\u0443\u0436\u0438\u044F 5\u2605 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0441 \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C\u043E\u043C \u043E\u0447\u043A\u043E\u0432 \u0421\u0443\u0434\u044C\u0431\u044B, \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043B\u044E\u0431\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0432\u043D\u044B\u043C. <br/> \u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u0440\u043E\u043B\u043E\u0436\u0438\u0442\u044C \u043F\u0443\u0442\u044C \u043A \u043E\u0440\u0443\u0436\u0438\u044E 5\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F. \u0418\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0430\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u043E \u0442\u043E\u043B\u044C\u043A\u043E \u043D\u0430 \u0432\u0440\u0435\u043C\u044F \u043F\u0440\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB. <br/> \u0415\u0441\u043B\u0438 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u043B\u0438 \u043D\u0435 \u0442\u043E \u043E\u0440\u0443\u0436\u0438\u0435 5\u2605, \u043A \u043A\u043E\u0442\u043E\u0440\u043E\u043C\u0443 \u043F\u0440\u043E\u043B\u043E\u0436\u0438\u043B\u0438 \u043F\u0443\u0442\u044C, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0432 \u041F\u0443\u0442\u044C \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F, \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435 1 \u043E\u0447\u043A\u043E \u0421\u0443\u0434\u044C\u0431\u044B. \u0421 <span>\u043F\u043E\u043B\u043D\u044B\u043C \u043F\u043E\u043A\u0430\u0437\u0430\u0442\u0435\u043B\u0435\u043C</span> \u043E\u0447\u043A\u043E\u0432 \u0421\u0443\u0434\u044C\u0431\u044B \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u043C \u043E\u0440\u0443\u0436\u0438\u0435\u043C 5\u2605, \u043A\u043E\u0442\u043E\u0440\u043E\u0435 \u0432\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u0435, <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u0431\u0443\u0434\u0435\u0442 \u0432\u044B\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u0432\u0430\u043C\u0438 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u041F\u0443\u0442\u0438 \u0432\u043E\u043F\u043B\u043E\u0449\u0435\u043D\u0438\u044F. \u041F\u043E\u0441\u043B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0438\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0433\u043E \u043E\u0440\u0443\u0436\u0438\u044F \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B \u0434\u043E <span>0</span>, \u0430 \u0438\u0445 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u0447\u043D\u0451\u0442\u0441\u044F \u0441\u043D\u0430\u0447\u0430\u043B\u0430. <br/> \u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0432\u044B\u0431\u0440\u0430\u043B\u0438 \u043E\u0440\u0443\u0436\u0438\u0435, \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u043D\u0430\u043A\u0430\u043F\u043B\u0438\u0432\u0430\u0442\u044C\u0441\u044F <span>\u043D\u0435 \u0431\u0443\u0434\u0443\u0442</span>.<br/> \u0418\u0437\u0431\u0440\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u043C\u043E\u0436\u043D\u043E \u043F\u0435\u0440\u0435\u043D\u0430\u0437\u043D\u0430\u0447\u0438\u0442\u044C \u0438\u043B\u0438 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C. \u041F\u0440\u0438 \u044D\u0442\u043E\u043C \u0432\u0430\u0448\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B \u0434\u043E <span>0</span>, \u0430 \u0438\u0445 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u0447\u043D\u0451\u0442\u0441\u044F \u0441\u043D\u0430\u0447\u0430\u043B\u0430. <br/> \u203B \u041E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0430\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u043D\u0430 \u0432\u0440\u0435\u043C\u044F \u043F\u0440\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u0441\u043E\u0431\u044B\u0442\u0438\u044F \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB. \u041A\u043E\u0433\u0434\u0430 \u043E\u043D\u043E \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0441\u044F, \u0432\u0430\u0448\u0438 \u043E\u0447\u043A\u0438 \u0421\u0443\u0434\u044C\u0431\u044B \u0431\u0443\u0434\u0443\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D\u044B \u0434\u043E <span>0</span>, \u0430 \u0438\u0445 \u043D\u0430\u043A\u043E\u043F\u043B\u0435\u043D\u0438\u0435 \u043D\u0430\u0447\u043D\u0451\u0442\u0441\u044F \u0441\u043D\u0430\u0447\u0430\u043B\u0430.",
-    "\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B 4\u2605",
-    "\u041F\u043E\u043A\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0441\u043E\u0431\u044B\u0442\u0438\u0435 \xAB\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u043E\u0431\u044B\u0442\u0438\u044F: {bannerName}\xBB, \u0431\u0430\u0437\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>6.000%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 4\u2605 = <span>3.000%</span>, \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043E\u0440\u0443\u0436\u0438\u044F 4\u2605 = <span>3.000%</span>, \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u0430\u044F \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C (\u0441 \u0443\u0447\u0451\u0442\u043E\u043C \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0433\u043E \u043F\u0440\u0438\u0437\u0430) \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 = <span>14.500%</span>. \u041F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0438 \u0432\u044B\u0448\u0435 \u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0443\u043C \u0441 10 \u043F\u043E\u043F\u044B\u0442\u043A\u0438, \u0438 \u0432 \u044D\u0442\u043E\u043C \u0441\u043B\u0443\u0447\u0430\u0435 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u0441\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442 <span>99.300%</span>, \u0430 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 5\u2605 - <span>0.700%</span>. <br/> \u041F\u0435\u0440\u0432\u044B\u043C \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u043C \u043E\u0440\u0443\u0436\u0438\u0435\u043C 4\u2605 \u0441 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E <span>75.000%</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u043E\u0434\u0438\u043D \u0438\u0437 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u043E\u0432: {rateupWeapons}. \u0415\u0441\u043B\u0438 \u043F\u0435\u0440\u0432\u044B\u0439 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 4\u2605 \u043D\u0435 \u0443\u043A\u0430\u0437\u0430\u043D\u043D\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 \u0441 \u043F\u043E\u0432\u044B\u0448\u0435\u043D\u043D\u043E\u0439 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C\u044E \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F, \u0442\u043E \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442 4\u2605 <span>\u0433\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E</span> \u043E\u043A\u0430\u0436\u0435\u0442\u0441\u044F \u0438\u043C. \u041F\u0440\u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0438 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u0430 4\u2605 \u041C\u043E\u043B\u0438\u0442\u0432\u044B \u0448\u0430\u043D\u0441 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043B\u044E\u0431\u043E\u0435 \u043E\u0440\u0443\u0436\u0438\u0435 4\u2605 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0432\u043D\u044B\u043C."
-  ],
-  convertion: {
-    fiveStar: "\u041A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043E\u0440\u0443\u0436\u0438\u044E 5\u2605, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u043E\u043C\u0443 \u0438\u0437 \u044D\u0442\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B, \u043F\u0440\u0438\u043B\u0430\u0433\u0430\u0435\u0442\u0441\u044F {starglitter} \xD710;",
-    fourStar: "\u041A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043E\u0440\u0443\u0436\u0438\u044E 4\u2605, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u043E\u043C\u0443 \u0438\u0437 \u044D\u0442\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B, \u043F\u0440\u0438\u043B\u0430\u0433\u0430\u0435\u0442\u0441\u044F {starglitter} \xD72;",
-    threeStar: "\u041A \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u043E\u0440\u0443\u0436\u0438\u044E 3\u2605, \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043D\u043E\u043C\u0443 \u0438\u0437 \u044D\u0442\u043E\u0439 \u041C\u043E\u043B\u0438\u0442\u0432\u044B, \u043F\u0440\u0438\u043B\u0430\u0433\u0430\u0435\u0442\u0441\u044F {stardust} \xD715."
-  },
-  duplicate: {
-    heading: "\u3013 \u0414\u0443\u0431\u043B\u0438\u043A\u0430\u0442\u044B \u3013",
-    text: "\u0415\u0441\u043B\u0438 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0435\u0441\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0438 {rarity}\u2605 (\u043E\u0442\u043A\u0440\u044B\u0442\u044B\u0435 \u0432 \u0438\u0433\u0440\u0435, \u043A\u0443\u043F\u043B\u0435\u043D\u043D\u044B\u0435 \u0432 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0435 \u0438\u043B\u0438 \u0432\u044B\u0438\u0433\u0440\u0430\u043D\u043D\u044B\u0435 \u0432 \u041C\u043E\u043B\u0438\u0442\u0432\u0435), \u0442\u043E \u043D\u0430\u0447\u0438\u043D\u0430\u044F \u0441 2 \u043F\u043E 7 \u043E\u043D\u0438 \u043A\u043E\u043D\u0432\u0435\u0440\u0442\u0438\u0440\u0443\u044E\u0442\u0441\u044F \u0432 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0443\u044E \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0443 {stellaFortuna} \xD71 \u0438 {starglitter} {constBonus}. \u0417\u0430 8 \u0438 \u0434\u0430\u043B\u0435\u0435 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430 \u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C {starglitter} {fullConstBonus}."
-  }
-};
-const history = {
-  title: "\u0416\u0443\u0440\u043D\u0430\u043B \u041C\u043E\u043B\u0438\u0442\u0432",
-  text: "\u0418\u0441\u0442\u043E\u0440\u0438\u044F",
-  resetButton: "\u0421\u0431\u0440\u043E\u0441",
-  resetPromptTitle: "\u0421\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u0438\u0441\u0442\u043E\u0440\u0438\u044E?",
-  resetPrompt: '\u042D\u0442\u043E \u0442\u0430\u043A\u0436\u0435 \u0443\u0434\u0430\u043B\u0438\u0442 \u0438\u0437 \u0432\u0430\u0448\u0435\u0433\u043E \u0438\u043D\u0432\u0435\u043D\u0442\u0430\u0440\u044F \u0432\u0441\u0435\u0445 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439 \u0438 \u043E\u0440\u0443\u0436\u0438\u0435, \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0441 "{bannerName}". <br/> \u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043E\u0441\u0438\u0442\u044C?',
-  resetSuccess: "\u0421\u043F\u0440\u043E\u0441 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0451\u043D \u0443\u0441\u043F\u0435\u0448\u043D\u043E!",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "\u0422\u0438\u043F \u043C\u043E\u043B\u0438\u0442\u0432\u044B:",
-  disclaimer: "\u041C\u044B \u043D\u0438\u043A\u043E\u0433\u0434\u0430 \u043D\u0435 \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u0435\u043C \u0432\u0430\u0448\u0438 \u0434\u0430\u043D\u043D\u044B\u0435 \u0432 \u043E\u0431\u043B\u0430\u0447\u043D\u043E\u043C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435. \u0412\u0441\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u0431\u044B\u043B\u0438 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u044B \u0432 IndexedDB, \u044D\u0442\u043E \u043E\u0437\u043D\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043E \u0434\u0430\u043D\u043D\u044B\u0435 \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u044E\u0442\u0441\u044F \u0432 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 \u0432\u0430\u0448\u0435\u0433\u043E \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430. \u041E\u043D \u043D\u0438\u043A\u043E\u0433\u0434\u0430 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043B\u0435\u043D, \u043F\u043E\u043A\u0430 \u0432\u044B \u043D\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u0435 \u0435\u0433\u043E \u0432\u0440\u0443\u0447\u043D\u0443\u044E \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u043A\u043D\u043E\u043F\u043A\u0438 \u0441\u0431\u0440\u043E\u0441\u0430 \u0438\u043B\u0438 \u043D\u0435 \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430.",
-  currentPity: "\u0422\u0435\u043A\u0443\u0449\u0438\u0439 \u0433\u0430\u0440\u0430\u043D\u0442:",
-  totalPull: "\u0412\u0441\u0435\u0433\u043E \u043A\u0440\u0443\u0442\u043E\u043A:",
-  totalSpend: "\u0412\u0441\u0435\u0433\u043E \u043F\u043E\u0442\u0440\u0430\u0447\u0435\u043D\u043E:",
-  filterTxt: "\u0424\u0438\u043B\u044C\u0442\u0440",
-  filter: "{rarity}\u2605",
-  filterAll: "\u0412\u0441\u0451",
-  pity: "\u041A\u0440\u0443\u0442\u043A\u0430",
-  timeReceived: "\u0412\u0440\u0435\u043C\u044F \u043C\u043E\u043B\u0438\u0442\u0432\u044B",
-  waiting: "\u041E\u0436\u0438\u0434\u0430\u0439\u0442\u0435",
-  noData: "\u0414\u0430\u043D\u043D\u044B\u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B.",
-  untracked: "\u043D\u0435 \u043E\u0442\u0441\u043B\u0435\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F",
-  item: "\u041F\u0440\u0435\u0434\u043C\u0435\u0442",
-  win: "\u0412\u044B\u0438\u0433\u0440\u044B\u0448 50/50",
-  lose: "\u041F\u0440\u043E\u0438\u0433\u0440\u044B\u0448 50/50",
-  guaranteed: "\u0413\u0430\u0440\u0430\u043D\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u043E",
-  selected: "\u0412\u044B\u0431\u0440\u0430\u043D\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u043C\u0435\u0442",
-  olderLayout: "\u0421\u0442\u0430\u0440\u043E\u0435 \u043E\u0444\u043E\u0440\u043C\u043B\u0435\u043D\u0438\u0435",
-  switchv2: "\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043D\u0430 \u043D\u043E\u0432\u043E\u0435 \u043E\u0444\u043E\u0440\u043C\u043B\u0435\u043D\u0438\u0435"
-};
-const shop = {
-  text: "\u041C\u0430\u0433\u0430\u0437\u0438\u043D",
-  paimonBargains: "\u041C\u0430\u0433\u0430\u0437\u0438\u043D \u041F\u0430\u0439\u043C\u043E\u043D",
-  fateNeeded: "\u041D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 {rollQty} {currency}.",
-  primoNeeded: "\u041F\u043E\u043A\u0443\u043F\u043A\u0430 \u0441 {primoPrice} Primogem ?",
-  purchaseUpto: "\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E: 1",
-  purchaseConfirm: "\u041F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C \u043F\u043E\u043A\u0443\u043F\u043A\u0443",
-  exchangeHeading: "\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043F\u0440\u0435\u0434\u043C\u0435\u0442",
-  purchaseHeading: "\u041F\u0440\u0435\u0434\u043C\u0435\u0442",
-  purchaseButton: "\u041A\u0443\u043F\u0438\u0442\u044C",
-  pay: "\u041E\u043F\u043B\u0430\u0442\u0430",
-  product: "\u0422\u043E\u0432\u0430\u0440",
-  consume: "\u0421\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C: ",
-  selectPayment: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043F\u043E\u0441\u043E\u0431 \u043E\u043F\u043B\u0430\u0442\u044B",
-  unrealWallet: "\u041D\u0435\u043D\u0430\u0441\u0442\u043E\u044F\u0449\u0438\u0439 \u043A\u043E\u0448\u0435\u043B\u0435\u043A",
-  convertPrimo: "\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043F\u0440\u0435\u043E\u0431\u0440\u0430\u0437\u043E\u0432\u0430\u0442\u044C \u0432 \u041A\u0430\u043C\u043D\u0438 \u0418\u0441\u0442\u043E\u043A\u0430",
-  proceedPayment: "\u041E\u043F\u043B\u0430\u0442\u0438\u0442\u044C",
-  qty: "\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E",
-  insufficient: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u0441\u0440\u0435\u0434\u0441\u0442\u0432",
-  crystalTopup: "\u041F\u043E\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043A\u0440\u0438\u0441\u0442\u0430\u043B\u043B\u043E\u0432",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "\u041A\u0443\u043F\u0438\u0442\u044C \u041A\u0440\u0438\u0441\u0442\u0430\u043B\u043B \u0421\u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u044F",
-  recomendedHeading: "\u0420\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0435\u043C\u044B\u0435 \u0442\u043E\u0432\u0430\u0440\u044B",
-  paimonHeading: "\u041C\u0430\u0433\u0430\u0437\u0438\u043D \u041F\u0430\u0439\u043C\u043E\u043D",
-  welkinNote: "\u041C\u043E\u0436\u043D\u043E \u043A\u0443\u043F\u0438\u0442\u044C \u043D\u0435\u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u043D\u043E\u0435 \u043A\u043E\u043B-\u0432\u043E \u0440\u0430\u0437",
-  limitedOffer: "\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u043D\u043E\u0435 \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u0435",
-  noLimitTime: "\u041F\u0440\u0435\u0434\u043C\u0435\u0442\u044B \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u0431\u0435\u0437 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "\u0411\u043B\u0430\u0433\u043E\u0441\u043B\u043E\u0432\u0435\u043D\u0438\u0435 \u043F\u043E\u043B\u043E\u0439 \u043B\u0443\u043D\u044B",
-    newOutfit: "\u041D\u043E\u0432\u044B\u0435 \u043A\u043E\u0441\u0442\u044E\u043C\u044B \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0435\u0439",
-    dayRemaining: "\u041E\u0441\u0442\u0430\u043B\u043E\u0441\u044C \u0434\u043D\u0435\u0439: {days}",
-    alreadyClaimed: "\u041D\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u0441\u0435\u0433\u043E\u0434\u043D\u044F \u0443\u0436\u0435 \u043F\u043E\u043B\u0443\u0435\u043D\u043E",
-    instantlyGet: "\u0412\u0445\u043E\u0434\u0438\u0442 \u0432 \u043F\u043E\u043A\u0443\u043F\u043A\u0443",
-    dailyGift: "\u0415\u0436\u0435\u0434\u043D\u0435\u0432\u043D\u044B\u0439 \u043F\u043E\u0434\u0430\u0440\u043E\u043A",
-    obtainTotal: "\u0418\u0442\u043E\u0433 \u043D\u0430\u0433\u0440\u0430\u0434 \u0437\u0430 30 \u0434\u043D\u0435\u0439<br>\u041A\u0440\u0438\u0441\u0442\u0430\u043B\u043B\u044B \u0421\u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u044F: \xD7{totalGenesis}<br>\u041A\u0430\u043C\u043D\u0438 \u0418\u0441\u0442\u043E\u043A\u0430: \xD7{totalPrimo}",
-    claimingBlessing: "\u041D\u0430\u0436\u043C\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u043D\u0430\u0433\u0440\u0430\u0434\u044B \u0411\u043B\u0430\u0433\u043E\u0441\u043B\u043E\u0432\u0435\u043D\u0438\u044F \u043F\u043E\u043B\u043E\u0439 \u043B\u0443\u043D\u044B \u0437\u0430 \u0441\u0435\u0433\u043E\u0434\u043D\u044F.",
-    issuedPurchase: "\u0412\u044B\u0434\u0430\u0451\u0442\u0441\u044F \u043F\u0440\u0438 \u043F\u043E\u043A\u0443\u043F\u043A\u0435",
-    collect: "\u0421\u043E\u0431\u0438\u0440\u0430\u0439\u0442\u0435 \u0435\u0436\u0435\u0434\u043D\u0435\u0432\u043D\u044B\u0435 \u043D\u0430\u0433\u0440\u0430\u0434\u044B \u0437\u0430 \u0432\u0445\u043E\u0434 \u0432 \u0442\u0435\u0447\u0435\u043D\u0438\u0435 30 \u0434\u043D\u0435\u0439"
-  },
-  exchange: {
-    starglitter: "\u0417\u0432\u0451\u0437\u0434\u043D\u044B\u0439 \u0431\u043B\u0435\u0441\u043A",
-    stardust: "\u0417\u0432\u0451\u0437\u0434\u043D\u0430\u044F \u043F\u044B\u043B\u044C",
-    primogem: "\u041A\u0430\u043C\u043D\u0438 \u0418\u0441\u0442\u043E\u043A\u0430"
-  },
-  item: {
-    genesis: "\u041A\u0440\u0438\u0441\u0442\u0430\u043B\u043B \u0421\u043E\u0442\u0432\u043E\u0440\u0435\u043D\u0438\u044F",
-    primogem: "\u041A\u0430\u043C\u0435\u043D\u044C \u0418\u0441\u0442\u043E\u043A\u0430",
-    intertwined: "\u041F\u0435\u0440\u0435\u043F\u043B\u0435\u0442\u0430\u044E\u0449\u0438\u0435\u0441\u044F \u0441\u0443\u0434\u044C\u0431\u044B",
-    acquaint: "\u0421\u0443\u0434\u044C\u0431\u043E\u043D\u043E\u0441\u043D\u044B\u0435 \u0432\u0441\u0442\u0440\u0435\u0447\u0438",
-    starglitter: "\u0411\u043B\u0443\u0436\u0434\u0430\u044E\u0449\u0438\u0439 \u0437\u0432\u0451\u0437\u0434\u043D\u044B\u0439 \u0431\u043B\u0435\u0441\u043A",
-    stardust: "\u0411\u043B\u0443\u0436\u0434\u0430\u044E\u0449\u0430\u044F \u0437\u0432\u0451\u0437\u0434\u043D\u0430\u044F \u043F\u044B\u043B\u044C"
-  },
-  description: {
-    intertwined: "\u0421\u0443\u0434\u044C\u0431\u043E\u043D\u043E\u0441\u043D\u044B\u0439 \u043A\u0430\u043C\u0435\u043D\u044C, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0441\u043E\u0435\u0434\u0438\u043D\u044F\u0435\u0442 \u043C\u0435\u0447\u0442\u044B. \u0415\u0433\u043E \u0431\u043B\u0451\u043A\u043B\u043E\u0435 \u0441\u0432\u0435\u0447\u0435\u043D\u0438\u0435 \u043F\u0435\u0440\u0435\u043F\u043B\u0435\u0442\u0430\u0435\u0442 \u0441\u0443\u0434\u044C\u0431\u044B \u0438 \u0441\u043E\u0435\u0434\u0438\u043D\u044F\u0435\u0442 \u043C\u0435\u0447\u0442\u044B \u0442\u0430\u043A \u0436\u0435, \u043A\u0430\u043A \u0437\u0432\u0451\u0437\u0434\u044B \u0441\u043E\u0435\u0434\u0438\u043D\u044F\u044E\u0442\u0441\u044F \u0432 \u0441\u043E\u0437\u0432\u0435\u0437\u0434\u0438\u044F.",
-    acquaint: "\u0421\u0435\u043C\u0435\u043D\u0430 \u043D\u0430\u0434\u0435\u0436\u0434\u044B, \u043E\u0441\u0432\u0435\u0449\u0430\u044E\u0449\u0438\u0435 \u043D\u043E\u0447\u043D\u043E\u0435 \u043D\u0435\u0431\u043E. \u041D\u0435\u0441\u043C\u043E\u0442\u0440\u044F \u043D\u0430 \u0440\u0430\u0441\u0441\u0442\u043E\u044F\u043D\u0438\u0435, \u0442\u0435 \u043A\u043E\u043C\u0443 \u0441\u0443\u0436\u0434\u0435\u043D\u043E \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044C\u0441\u044F, \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043D\u0430\u0439\u0434\u0443\u0442 \u0434\u0440\u0443\u0433 \u0434\u0440\u0443\u0433\u0430 \u043F\u043E\u0434 \u0437\u0432\u0451\u0437\u0434\u0430\u043C\u0438."
-  }
-};
-const inventory = {
-  text: "\u0418\u043D\u0432\u0435\u043D\u0442\u0430\u0440\u044C",
-  unsetOutfit: "\u0421\u043D\u044F\u0442\u044C \u043D\u0430\u0440\u044F\u0434",
-  setOutfit: "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043D\u0430\u0440\u044F\u0434 \u0434\u043B\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u0436\u0430",
-  refinement: "\u0420\u0430\u043D\u0433 \u043F\u0440\u043E\u0431\u0443\u0436\u0434\u0435\u043D\u0438\u044F {count}",
-  constellation: "\u0421\u043E\u0437\u0432\u0435\u0437\u0434\u0438\u0435 {count}",
-  extra: "{count} \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0435(-\u044B\u0435)",
-  firstSummon: "\u0412\u043F\u0435\u0440\u0432\u044B\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D {date}",
-  notOwned: "\u041D\u0435 \u043F\u043E\u043B\u0443\u0447\u0435\u043D",
-  sort: "\u0424\u0438\u043B\u044C\u0442\u0440",
-  rarity: "\u041A\u0430\u0447\u0435\u0441\u0442\u0432\u043E",
-  name: "\u0418\u043C\u044F",
-  quantity: "\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E",
-  element: "\u042D\u043B\u0435\u043C\u0435\u043D\u0442",
-  release: "Release Date",
-  type: "\u0422\u0438\u043F",
-  owned: "\u041D\u0430\u043B\u0438\u0447\u0438\u0435",
-  showAllOption: "\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0435\u0445 {item}"
-};
-const menu = {
-  no: "\u041D\u0435\u0442",
-  yes: "\u0414\u0430",
-  text: "\u041C\u0435\u043D\u044E",
-  feedback: "Feedback",
-  options: "\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438",
-  updates: "\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "\u042F\u0437\u044B\u043A",
-  currency: "\u0412\u0430\u043B\u044E\u0442\u0430",
-  fates: "Number of Wishes",
-  unlimited: "Unlimited",
-  manual: "Manual Input",
-  mute: "\u0412\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0437\u0432\u0443\u043A",
-  switchBanner: "\u041F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0431\u0430\u043D\u043D\u0435\u0440",
-  showAllitems: "\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0435 \u043F\u0440\u0435\u0434\u043C\u0435\u0442\u044B \u0432 \u0438\u043D\u0432\u0435\u043D\u0442\u0430\u0440\u0435",
-  autoskip: "\u0412\u0441\u0435\u0433\u0434\u0430 \u043F\u0440\u043E\u043F\u0443\u0441\u043A\u0430\u0442\u044C \u0430\u043D\u0438\u043C\u0430\u0446\u0438\u044E \u0432\u044B\u043F\u0430\u0434\u0435\u043D\u0438\u044F",
-  animatedbg: "\u0410\u043D\u0438\u043C\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0439 \u0444\u043E\u043D",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u0434\u0430\u043D\u043D\u044B\u0445",
-  resetTitle: "\u0421\u0431\u0440\u043E\u0441 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A",
-  rotate: "\u041F\u043E\u0432\u0435\u0440\u043D\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043E\u0440\u0439\u0441\u0442\u0432\u043E \u0434\u043B\u044F \u043B\u0443\u0447\u0448\u0435\u0433\u043E \u0432\u043F\u0435\u0447\u0430\u0442\u043B\u0435\u043D\u0438\u044F",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043A\u044D\u0448 ({size})? <small>\u041F\u043E\u0441\u043B\u0435 \u044D\u0442\u043E\u0433\u043E \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F \u0432\u0441\u0435 \u0430\u0441\u0441\u0435\u0442\u044B \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u044B \u0437\u0430\u043D\u043E\u0432\u043E!</small>",
-  resetButton: "\u041F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044E",
-  resetPrompt: "\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C <strong> \u0432\u0441\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 </strong> \u0438 \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E?",
-  resetSuccess: "\u0421\u0431\u0440\u043E\u0441 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0451\u043D \u0443\u0441\u043F\u0435\u0448\u043D\u043E!",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0435\u0433\u043E \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0437\u0434\u0435\u0441\u044C!",
-  noKey: "\u0415\u0449\u0451 \u043D\u0435\u0442 \u043A\u043B\u044E\u0447\u0430?",
-  verifyFail: "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u043F\u043E\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044C \u043A\u043B\u044E\u0447, \u043F\u0440\u043E\u0432\u0440\u044C\u0442\u0435 \u0432\u0430\u0448\u0435 \u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0435.",
-  invalidKey: "\u041A\u043B\u044E\u0447 \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u0435\u043D.",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u043B\u044E\u0447",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* \u041C\u043D\u0435 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E \u043F\u043E\u043F\u0440\u043E\u0441\u0438\u0442\u044C \u043F\u0440\u043E\u0449\u0435\u043D\u0438\u044F \u0437\u0430 \u0440\u0435\u043A\u043B\u0430\u043C\u0443. \u041C\u043D\u0435 \u043D\u0435 \u0445\u043E\u0447\u0435\u0442\u0441\u044F \u043F\u043E\u0440\u0442\u0438\u0442\u044C \u0432\u0430\u0448 \u043F\u0440\u043E\u0446\u0435\u0441\u0441 \u043C\u043E\u043B\u0438\u0442\u0432\u044B, \u043D\u043E \u0443 \u043C\u0435\u043D\u044F \u043D\u0435\u0442 \u043A\u043E\u043C\u0430\u043D\u0434\u044B \u0438\u043B\u0438 \u0441\u043F\u043E\u043D\u0441\u043E\u0440\u0430 \u0434\u043B\u044F \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043D\u0438\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F. \u0415\u0441\u043B\u0438 \u0432\u044B \u043D\u0435 \u0445\u043E\u0442\u0438\u0442\u0435 \u043D\u0438\u0447\u0435\u0433\u043E \u0442\u0440\u0430\u0442\u0438\u0442\u044C, \u0432\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0434\u0431\u043B\u043E\u043A \u0438\u043B\u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0439 DNS-\u0441\u0435\u0440\u0432\u0435\u0440, \u044F \u043D\u0435 \u0431\u0443\u0434\u0443 \u0432\u0430\u043C \u0437\u0430\u043F\u0440\u0435\u0449\u0430\u0442\u044C."
-};
-const ruRU = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  ruRU as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ru-RU2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ru-RU2.js
deleted file mode 100644
index 40714e65..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/ru-RU2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "\u0410\u043A\u0443\u043E\u043C\u0430\u0440\u0443";
-const rainslasher = "\u0414\u043E\u0436\u0434\u0435\u0440\u0435\u0437";
-const rust = "\u0420\u0436\u0430\u0432\u044B\u0439 \u043B\u0443\u043A";
-const slingshot = "\u0420\u043E\u0433\u0430\u0442\u043A\u0430";
-const verdict = "\u0412\u0435\u0440\u0434\u0438\u043A\u0442";
-const albedo = {
-  name: "\u0410\u043B\u044C\u0431\u0435\u0434\u043E",
-  title: "\u041F\u0440\u0438\u043D\u0446 \u043C\u0435\u043B\u0430"
-};
-const alhaitham = {
-  name: "\u0410\u043B\u044C-\u0425\u0430\u0439\u0442\u0430\u043C",
-  title: "\u0413\u043E\u043B\u043E\u0441 \u0440\u0430\u0437\u0443\u043C\u0430"
-};
-const amber = {
-  name: "\u042D\u043C\u0431\u0435\u0440",
-  title: "\u0427\u0435\u043C\u043F\u0438\u043E\u043D \u043F\u043E\u043B\u0451\u0442\u043E\u0432"
-};
-const baizhu = {
-  name: "\u0411\u0430\u0439 \u0427\u0436\u0443",
-  title: "\u041F\u0440\u0435\u043E\u0434\u043E\u043B\u0435\u043D\u0438\u0435 \u0431\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438"
-};
-const barbara = {
-  name: "\u0411\u0430\u0440\u0431\u0430\u0440\u0430",
-  title: "\u0421\u0438\u044F\u044E\u0449\u0430\u044F \u0437\u0432\u0451\u0437\u0434\u043E\u0447\u043A\u0430"
-};
-const beidou = {
-  name: "\u0411\u044D\u0439 \u0414\u043E\u0443",
-  title: "\u0412\u043B\u0430\u0434\u044B\u0447\u0438\u0446\u0430 \u043C\u043E\u0440\u0435\u0439"
-};
-const bennett = {
-  name: "\u0411\u0435\u043D\u043D\u0435\u0442",
-  title: "\u0418\u0441\u043F\u044B\u0442\u0430\u043D\u0438\u0435 \u043E\u0433\u043D\u0451\u043C"
-};
-const candace = {
-  name: "\u041A\u0430\u043D\u0434\u0430\u043A\u0438\u044F",
-  title: "\u041F\u043E\u0437\u043E\u043B\u043E\u0447\u0435\u043D\u043D\u0430\u044F \u043A\u043B\u044F\u0442\u0432\u0430"
-};
-const charlotte = {
-  name: "\u0428\u0430\u0440\u043B\u043E\u0442\u0442\u0430",
-  title: "\u041E\u0431\u044A\u0435\u043A\u0442\u0438\u0432\u043D\u0430\u044F \u0440\u0435\u0430\u043B\u044C\u043D\u043E\u0441\u0442\u044C"
-};
-const chevreuse = {
-  name: "Chevreuse",
-  title: "Executor of Justice"
-};
-const chongyun = {
-  name: "\u0427\u0443\u043D \u042E\u043D\u044C",
-  title: "\u041C\u043E\u0440\u043E\u0437\u043D\u0430\u044F \u043F\u044B\u043B\u043A\u043E\u0441\u0442\u044C"
-};
-const collei = {
-  name: "\u041A\u043E\u043B\u043B\u0435\u0438",
-  title: "\u0420\u043E\u0441\u0442\u043E\u043A \u0432\u043E\u0437\u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F"
-};
-const cyno = {
-  name: "\u0421\u0430\u0439\u043D\u043E",
-  title: "\u0412\u0435\u0440\u0448\u0438\u0442\u0435\u043B\u044C \u0442\u0430\u0438\u043D\u0441\u0442\u0432"
-};
-const dehya = {
-  name: "\u0414\u044D\u0445\u044C\u044F",
-  title: "\u041F\u043B\u0430\u043C\u0435\u043D\u043D\u0430\u044F \u0413\u0440\u0438\u0432\u0430"
-};
-const diluc = {
-  name: "\u0414\u0438\u043B\u044E\u043A",
-  title: "\u0422\u0451\u043C\u043D\u044B\u0439 \u0440\u0430\u0441\u0441\u0432\u0435\u0442"
-};
-const diona = {
-  name: "\u0414\u0438\u043E\u043D\u0430",
-  title: "\u041A\u043E\u0448\u043A\u0438\u043D \u043A\u043E\u043A\u0442\u0435\u0439\u043B\u044C"
-};
-const dori = {
-  name: "\u0414\u043E\u0440\u0438",
-  title: "\u0421\u043E\u043A\u0440\u043E\u0432\u0438\u0449\u0435 \u0441\u0430\u0434\u0430 \u0441\u043D\u043E\u0432"
-};
-const eula = {
-  name: "\u042D\u043E\u043B\u0430",
-  title: "\u0422\u0430\u043D\u0435\u0446 \u043C\u043E\u0440\u0441\u043A\u043E\u0439 \u043F\u0435\u043D\u044B"
-};
-const faruzan = {
-  name: "\u0424\u0430\u0440\u0443\u0437\u0430\u043D",
-  title: "\u0417\u0430\u0433\u0430\u0434\u043E\u0447\u043D\u044B\u0439 \u043C\u0435\u0445\u0430\u043D\u0438\u043A"
-};
-const fischl = {
-  name: "\u0424\u0438\u0448\u043B\u044C",
-  title: "\u041F\u0440\u0438\u043D\u0446\u0435\u0441\u0441\u0430 \u043E\u0441\u0443\u0436\u0434\u0435\u043D\u0438\u044F"
-};
-const freminet = {
-  name: "\u0424\u0440\u0435\u043C\u0438\u043D\u0435",
-  title: "\u0422\u043E\u0441\u043A\u0430 \u043F\u043E \u043D\u0435\u0432\u0438\u0434\u0430\u043D\u043D\u044B\u043C \u0433\u043B\u0443\u0431\u0438\u043D\u0430\u043C"
-};
-const furina = {
-  name: "\u0424\u0443\u0440\u0438\u043D\u0430",
-  title: "\u0411\u0435\u0441\u043A\u043E\u043D\u0435\u0447\u043D\u044B\u0439 \u0442\u0430\u043D\u0435\u0446 \u043E\u0434\u0438\u043D\u043E\u0447\u0435\u0441\u0442\u0432\u0430"
-};
-const ganyu = {
-  name: "\u0413\u0430\u043D\u044C \u042E\u0439",
-  title: "\u0412\u0437\u0433\u043B\u044F\u0434 \u043F\u043E\u043B\u043D\u043E\u043B\u0443\u043D\u0438\u044F"
-};
-const gorou = {
-  name: "\u0413\u043E\u0440\u043E",
-  title: "\u041F\u0451\u0441 \u0432\u043E\u0439\u043D\u044B"
-};
-const jean = {
-  name: "\u0414\u0436\u0438\u043D\u043D",
-  title: "\u0420\u044B\u0446\u0430\u0440\u044C \u041E\u0434\u0443\u0432\u0430\u043D\u0447\u0438\u043A"
-};
-const kaeya = {
-  name: "\u041A\u044D\u0439\u0430",
-  title: "\u0417\u0438\u043C\u043D\u0438\u0439 \u043A\u043B\u0438\u043D\u043E\u043A"
-};
-const kaveh = {
-  name: "\u041A\u0430\u0432\u0435\u0445",
-  title: "\u041E\u0442\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u044D\u043C\u043F\u0438\u0440\u0435\u044F"
-};
-const keqing = {
-  name: "\u041A\u044D \u0426\u0438\u043D",
-  title: "\u0420\u0430\u0441\u043A\u0430\u0442\u044B \u0433\u0440\u043E\u043C\u0430"
-};
-const kirara = {
-  name: "\u041A\u0438\u0440\u0430\u0440\u0430",
-  title: "\u041A\u043E\u0448\u043A\u0430 \u043D\u0430 \u0433\u0440\u0435\u0431\u043D\u0435 \u043A\u0440\u044B\u0448\u0438"
-};
-const klee = {
-  name: "\u041A\u043B\u0438",
-  title: "\u0423\u0441\u043A\u043E\u043B\u044C\u0437\u0430\u044E\u0449\u0435\u0435 \u0441\u043E\u043B\u043D\u0446\u0435"
-};
-const layla = {
-  name: "\u041B\u0430\u0439\u043B\u0430",
-  title: "\u0414\u0438\u0432\u043D\u0430\u044F \u0432\u0435\u0447\u0435\u0440\u043D\u044F\u044F \u0437\u0432\u0435\u0437\u0434\u0430"
-};
-const lisa = {
-  name: "\u041B\u0438\u0437\u0430",
-  title: "\u041F\u0443\u0440\u043F\u0443\u0440\u043D\u0430\u044F \u0432\u0435\u0434\u044C\u043C\u0430"
-};
-const lynette = {
-  name: "\u041B\u0438\u043D\u0435\u0442\u0442",
-  title: "\u0418\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u043E \u0441\u0440\u0435\u0434\u0438 \u0442\u0435\u043D\u0435\u0439"
-};
-const lyney = {
-  name: "\u041B\u0438\u043D\u0438",
-  title: "\u0417\u0440\u0435\u043B\u0438\u0449\u043D\u044B\u0435 \u0444\u0430\u043D\u0442\u0430\u0441\u043C\u0430\u0433\u043E\u0440\u0438\u0438"
-};
-const mika = {
-  name: "\u041C\u0438\u043A\u0430",
-  title: "\u041A\u0430\u0440\u0442\u043E\u0433\u0440\u0430\u0444 \u0447\u0438\u0441\u0442\u043E\u0433\u043E \u0438\u043D\u0435\u044F"
-};
-const mona = {
-  name: "\u041C\u043E\u043D\u0430",
-  title: "\u0417\u0432\u0451\u0437\u0434\u043D\u043E\u0435 \u043E\u0442\u0440\u0430\u0436\u0435\u043D\u0438\u0435"
-};
-const nahida = {
-  name: "\u041D\u0430\u0445\u0438\u0434\u0430",
-  title: "\u0421\u0440\u0435\u0434\u043E\u0442\u043E\u0447\u0438\u0435 \u0447\u0438\u0441\u0442\u043E\u0442\u044B"
-};
-const navia = {
-  name: "\u041D\u0430\u0432\u0438\u044F",
-  title: "\u0428\u0442\u0443\u0440\u0432\u0430\u043B \u0446\u0432\u0435\u0442\u0443\u0449\u0435\u0439 \u0440\u043E\u0437\u044B"
-};
-const neuvillette = {
-  name: "Neuvillette",
-  title: "\u0420\u0430\u0441\u043F\u043E\u0440\u044F\u0434\u0438\u0442\u0435\u043B\u044C \u043D\u0435\u0443\u043C\u043E\u043B\u0438\u043C\u043E\u0433\u043E \u0441\u0443\u0434\u0430"
-};
-const nilou = {
-  name: "\u041D\u0438\u043B\u0443",
-  title: "\u0422\u0430\u043D\u0435\u0446 \u043B\u043E\u0442\u043E\u0441\u0430"
-};
-const ningguang = {
-  name: "\u041D\u0438\u043D \u0413\u0443\u0430\u043D",
-  title: "\u041B\u0443\u043D\u043D\u043E\u0435 \u0437\u0430\u0442\u043C\u0435\u043D\u0438\u0435"
-};
-const noelle = {
-  name: "\u041D\u043E\u044D\u043B\u043B\u044C",
-  title: "\u041D\u0435\u0440\u0430\u0441\u043F\u0443\u0441\u0442\u0438\u0432\u0448\u0438\u0439\u0441\u044F \u0446\u0432\u0435\u0442\u043E\u043A"
-};
-const qiqi = {
-  name: "\u0426\u0438 \u0426\u0438",
-  title: "\u041B\u0435\u0434\u044F\u043D\u043E\u0435 \u0432\u043E\u0441\u043A\u0440\u0435\u0448\u0435\u043D\u0438\u0435"
-};
-const razor = {
-  name: "\u0420\u044D\u0439\u0437\u043E\u0440",
-  title: "\u0418\u043D\u0441\u0442\u0438\u043D\u043A\u0442 \u0441\u0442\u0430\u0438"
-};
-const rosaria = {
-  name: "\u0420\u043E\u0437\u0430\u0440\u0438\u044F",
-  title: "\u0412\u0435\u043D\u0435\u0446 \u043C\u0438\u043B\u043E\u0441\u0442\u0438"
-};
-const sayu = {
-  name: "\u0421\u0430\u044E",
-  title: "\u041C\u0443\u0434\u0437\u0438\u043D\u0430-\u043D\u0438\u043D\u0434\u0437\u044F"
-};
-const shenhe = {
-  name: "\u0428\u044D\u043D\u044C \u0425\u044D",
-  title: "\u041E\u0434\u0438\u043D\u043E\u0447\u0435\u0441\u0442\u0432\u043E \u043F\u0440\u0435\u0432\u043E\u0441\u0445\u043E\u0434\u0441\u0442\u0432\u0430"
-};
-const sucrose = {
-  name: "\u0421\u0430\u0445\u0430\u0440\u043E\u0437\u0430",
-  title: "\u0411\u0435\u0437\u043E\u0431\u0438\u0434\u043D\u0430\u044F \u043A\u0430\u0440\u0430\u043C\u0435\u043B\u044C\u043A\u0430"
-};
-const tartaglia = {
-  name: "\u0422\u0430\u0440\u0442\u0430\u043B\u044C\u044F",
-  title: "\u0427\u0430\u0439\u043B\u044C\u0434"
-};
-const thoma = {
-  name: "\u0422\u043E\u043C\u0430",
-  title: "\u0417\u0430\u0449\u0438\u0442\u043D\u0438\u043A \u0438\u0437\u0434\u0430\u043B\u0435\u043A\u0430"
-};
-const tighnari = {
-  name: "\u0422\u0438\u0433\u043D\u0430\u0440\u0438",
-  title: "\u0417\u0435\u043B\u0451\u043D\u044B\u0439 \u0441\u0442\u0440\u0430\u043D\u043D\u0438\u043A"
-};
-const venti = {
-  name: "\u0412\u0435\u043D\u0442\u0438",
-  title: "\u041F\u043E\u044D\u0442 \u0432\u0435\u0442\u0440\u043E\u0432"
-};
-const wanderer = {
-  name: "\u0421\u0442\u0440\u0430\u043D\u043D\u0438\u043A",
-  title: "\u0417\u0430\u0442\u0435\u0440\u044F\u0432\u0448\u0438\u0439\u0441\u044F \u0432 \u0432\u0435\u0447\u043D\u043E\u0441\u0442\u0438"
-};
-const wriothesley = {
-  name: "\u0420\u0438\u0437\u043B\u0438",
-  title: "\u042D\u043C\u0438\u0441\u0441\u0430\u0440 \u0437\u0430\u0442\u043E\u0447\u0451\u043D\u043D\u044B\u0445 \u0437\u043B\u043E\u0434\u0435\u044F\u043D\u0438\u0439"
-};
-const xiangling = {
-  name: "\u0421\u044F\u043D \u041B\u0438\u043D",
-  title: "\u041C\u0438\u043B\u043B\u0438\u043E\u043D \u0432\u043A\u0443\u0441\u043E\u0432"
-};
-const xiao = {
-  name: "\u0421\u044F\u043E",
-  title: "\u0417\u0430\u0449\u0438\u0442\u043D\u0438\u043A \u042F\u043A\u0441\u0430"
-};
-const xingqiu = {
-  name: "\u0421\u0438\u043D \u0426\u044E",
-  title: "\u0413\u0430\u043B\u0430\u043D\u0442\u043D\u044B\u0439 \u044E\u043D\u043E\u0448\u0430"
-};
-const xinyan = {
-  name: "\u0421\u0438\u043D\u044C \u042F\u043D\u044C",
-  title: "\u041F\u043B\u0430\u043C\u0435\u043D\u043D\u0430\u044F \u043C\u0435\u043B\u043E\u0434\u0438\u044F"
-};
-const yanfei = {
-  name: "\u042F\u043D\u044C \u0424\u044D\u0439",
-  title: "\u041D\u0435\u043F\u043E\u0440\u043E\u0447\u043D\u0430\u044F \u043C\u0443\u0434\u0440\u043E\u0441\u0442\u044C"
-};
-const yaoyao = {
-  name: "\u042F\u043E \u042F\u043E",
-  title: "\u0411\u0443\u0442\u043E\u043D \u0438\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u0430"
-};
-const yelan = {
-  name: "\u0415 \u041B\u0430\u043D\u044C",
-  title: "\u041E\u0440\u0445\u0438\u0434\u0435\u044F \u0434\u043E\u043B\u0438\u043D\u044B"
-};
-const yoimiya = {
-  name: "\u0401\u0438\u043C\u0438\u044F",
-  title: "\u041F\u043B\u044F\u0448\u0443\u0449\u0438\u0435 \u043E\u0433\u043E\u043D\u044C\u043A\u0438"
-};
-const zhongli = {
-  name: "\u0427\u0436\u0443\u043D \u041B\u0438",
-  title: "\u0411\u0440\u0435\u043D\u043D\u044B\u0439 \u0441\u043A\u0438\u0442\u0430\u043B\u0435\u0446"
-};
-const ruRU = {
-  "a-thousand-floating-dreams": "\u0421\u043D\u043E\u0432\u0438\u0434\u0435\u043D\u0438\u044F \u0442\u044B\u0441\u044F\u0447\u0438 \u043D\u043E\u0447\u0435\u0439",
-  akuoumaru,
-  "alley-hunter": "\u041E\u0445\u043E\u0442\u043D\u0438\u043A \u0432\u043E \u0442\u044C\u043C\u0435",
-  "amos-bow": "\u041B\u0443\u043A \u0410\u043C\u043E\u0441\u0430",
-  "aqua-simulacra": "\u0410\u043A\u0432\u0430 \u0441\u0438\u043C\u0443\u043B\u044F\u043A\u0440\u0443\u043C",
-  "aquila-favonia": "\u041C\u0435\u0447 \u0421\u043E\u043A\u043E\u043B\u0430",
-  "beacon-of-the-reed-sea": "\u041C\u0430\u044F\u043A \u0442\u0440\u043E\u0441\u0442\u043D\u0438\u043A\u043E\u0432\u043E\u0433\u043E \u043C\u043E\u0440\u044F",
-  "black-tassel": "\u0427\u0451\u0440\u043D\u0430\u044F \u043A\u0438\u0441\u0442\u044C",
-  "bloodtained-greatsword": "\u041C\u0435\u0447 \u0434\u0440\u0430\u043A\u043E\u043D\u044C\u0435\u0439 \u043A\u0440\u043E\u0432\u0438",
-  "calamity-queller": "\u0423\u0441\u043C\u0438\u0440\u0438\u0442\u0435\u043B\u044C \u0431\u0435\u0434",
-  "cashflow-supervision": "\u041A\u0430\u0437\u043D\u0430\u0447\u0435\u0439\u0441\u043A\u0438\u0439 \u043D\u0430\u0434\u0437\u043E\u0440",
-  "cool-steel": "\u0425\u043E\u043B\u043E\u0434\u043D\u043E\u0435 \u043B\u0435\u0437\u0432\u0438\u0435",
-  "debate-club": "\u0414\u0443\u0431\u0438\u043D\u0430 \u043F\u0435\u0440\u0435\u0433\u043E\u0432\u043E\u0440\u043E\u0432",
-  "dragon_s-bane": "\u0413\u0440\u043E\u0437\u0430 \u0434\u0440\u0430\u043A\u043E\u043D\u043E\u0432",
-  "elegy-for-the-end": "\u042D\u043B\u0435\u0433\u0438\u044F \u043F\u043E\u0433\u0438\u0431\u0435\u043B\u0438",
-  "emerald-orb": "\u0418\u0437\u0443\u043C\u0440\u0443\u0434\u043D\u044B\u0439 \u0448\u0430\u0440",
-  "engulfing-lightning": "\u0421\u0438\u044F\u044E\u0449\u0430\u044F \u0436\u0430\u0442\u0432\u0430",
-  "everlasting-moonglow": "\u0412\u0435\u0447\u043D\u043E\u0435 \u043B\u0443\u043D\u043D\u043E\u0435 \u0441\u0438\u044F\u043D\u0438\u0435",
-  "eye-of-perception": "\u041E\u043A\u043E \u0441\u043E\u0437\u043D\u0430\u043D\u0438\u044F",
-  "favonius-codex": "\u041A\u043E\u0434\u0435\u043A\u0441 \u0424\u0430\u0432\u043E\u043D\u0438\u044F",
-  "favonius-greatsword": "\u0414\u0432\u0443\u0440\u0443\u0447\u043D\u044B\u0439 \u043C\u0435\u0447 \u0424\u0430\u0432\u043E\u043D\u0438\u044F",
-  "favonius-lance": "\u041A\u043E\u043F\u044C\u0451 \u0424\u0430\u0432\u043E\u043D\u0438\u044F",
-  "favonius-sword": "\u041C\u0435\u0447 \u0424\u0430\u0432\u043E\u043D\u0438\u044F",
-  "favonius-warbow": "\u0411\u043E\u0435\u0432\u043E\u0439 \u043B\u0443\u043A \u0424\u0430\u0432\u043E\u043D\u0438\u044F",
-  "ferrous-shadow": "\u041C\u0435\u0442\u0430\u043B\u043B\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0442\u0435\u043D\u044C",
-  "freedom-sworn": "\u041A\u043B\u044F\u0442\u0432\u0430 \u0441\u0432\u043E\u0431\u043E\u0434\u044B",
-  "haran-geppaku-futsu": "\u0425\u0430\u0440\u0430\u043D \u0433\u044D\u043F\u043F\u0430\u043A\u0443 \u0444\u0443\u0446\u0443",
-  "harbinger-of-dawn": "\u041F\u0440\u0435\u0434\u0432\u0435\u0441\u0442\u043D\u0438\u043A \u0437\u0430\u0440\u0438",
-  "hunter_s-path": "\u041E\u0445\u043E\u0442\u043D\u0438\u0447\u044C\u044F \u0442\u0440\u043E\u043F\u0430",
-  "jadefall-splendor": "\u0412\u0435\u043B\u0438\u043A\u043E\u043B\u0435\u043F\u0438\u0435 \u043B\u0430\u0437\u0443\u0440\u043D\u043E\u0433\u043E \u0441\u0432\u043E\u0434\u0430",
-  "kagura_s-verity": "\u0418\u0441\u0442\u0438\u043D\u0430 \u043A\u0430\u0433\u0443\u0440\u0430",
-  "key-of-khaj-nisut": "\u041A\u043B\u044E\u0447 \u0425\u0430\u0434\u0436-\u043D\u0438\u0441\u0443\u0442",
-  "lion_s-roar": "\u0414\u0440\u0430\u043A\u043E\u043D\u0438\u0439 \u0440\u044B\u043A",
-  "light-of-foliar-incision": "\u0421\u0432\u0435\u0442 \u043B\u0438\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0433\u043E \u0440\u0430\u0437\u0440\u0435\u0437\u0430",
-  "lithic-blade": "\u041A\u0430\u043C\u0435\u043D\u043D\u044B\u0439 \u043C\u0435\u0447",
-  "lithic-spear": "\u041A\u0430\u043C\u0435\u043D\u043D\u043E\u0435 \u043A\u043E\u043F\u044C\u0451",
-  "lost-prayer-to-the-sacred-winds": "\u041C\u043E\u043B\u0438\u0442\u0432\u0430 \u0441\u0432\u044F\u0442\u044B\u043C \u0432\u0435\u0442\u0440\u0430\u043C",
-  "magic-guide": "\u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0441\u0442\u0432\u043E \u043F\u043E \u043C\u0430\u0433\u0438\u0438",
-  "makhaira-aquamarine": "\u0410\u043A\u0432\u0430\u043C\u0430\u0440\u0438\u043D \u043C\u0430\u0445\u0430\u0439\u0440\u044B",
-  "memory-of-dust": "\u041F\u0430\u043C\u044F\u0442\u044C \u043E \u043F\u044B\u043B\u0438",
-  "mistsplitter-reforged": "\u0420\u0430\u0441\u0441\u0435\u043A\u0430\u044E\u0449\u0438\u0439 \u0442\u0443\u043C\u0430\u043D",
-  "mitternachts-waltz": "\u0412\u0430\u043B\u044C\u0441 \u041D\u0438\u0440\u0432\u0430\u043D\u044B \u041D\u043E\u0447\u0438",
-  "mouun_s-moon": "\u041B\u0443\u043D\u0430 \u041C\u043E\u0443\u043D",
-  "polar-star": "\u041F\u043E\u043B\u044F\u0440\u043D\u0430\u044F \u0437\u0432\u0435\u0437\u0434\u0430",
-  "portable-power-saw": "\u041F\u0435\u0440\u0435\u043D\u043E\u0441\u043D\u0430\u044F \u043C\u043E\u0442\u043E\u043F\u0438\u043B\u0430",
-  "primordial-jade-cutter": "\u0414\u0440\u0430\u0433\u043E\u0446\u0435\u043D\u043D\u044B\u0439 \u043E\u043C\u0443\u0442",
-  "primordial-jade-winged-spear": "\u041D\u0435\u0444\u0440\u0438\u0442\u043E\u0432\u044B\u0439 \u043A\u043E\u0440\u0448\u0443\u043D",
-  "prospector-drill": "\u0411\u0443\u0440 \u0440\u0443\u0434\u043E\u0438\u0441\u043A\u0430\u0442\u0435\u043B\u044F",
-  rainslasher,
-  "range-gauge": "\u0414\u0430\u043B\u044C\u043D\u043E\u043C\u0435\u0440",
-  "raven-bow": "\u041B\u0443\u043A \u0432\u043E\u0440\u043E\u043D\u0430",
-  "redhorn-stonethresher": "\u041A\u0440\u0430\u0441\u043D\u043E\u0440\u043E\u0433\u0438\u0439 \u043A\u0430\u043C\u043D\u0435\u0440\u0443\u0431",
-  rust,
-  "sacrificial-bow": "\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0439 \u043B\u0443\u043A",
-  "sacrificial-fragments": "\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0435 \u043C\u0435\u043C\u0443\u0430\u0440\u044B",
-  "sacrificial-greatsword": "\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0439 \u0434\u0432\u0443\u0440\u0443\u0447\u043D\u044B\u0439 \u043C\u0435\u0447",
-  "sacrificial-sword": "\u0426\u0435\u0440\u0435\u043C\u043E\u043D\u0438\u0430\u043B\u044C\u043D\u044B\u0439 \u043C\u0435\u0447",
-  "sharpshooter_s-oath": "\u041A\u043B\u044F\u0442\u0432\u0430 \u0441\u0442\u0440\u0435\u043B\u043A\u0430",
-  "skyrider-sword": "\u041C\u0435\u0447 \u043D\u0435\u0431\u0435\u0441\u043D\u043E\u0433\u043E \u0432\u0441\u0430\u0434\u043D\u0438\u043A\u0430",
-  "skyward-atlas": "\u041D\u0435\u0431\u0435\u0441\u043D\u044B\u0439 \u0430\u0442\u043B\u0430\u0441",
-  "skyward-blade": "\u041D\u0435\u0431\u0435\u0441\u043D\u044B\u0439 \u043C\u0435\u0447",
-  "skyward-harp": "\u041D\u0435\u0431\u0435\u0441\u043D\u043E\u0435 \u043A\u0440\u044B\u043B\u043E",
-  "skyward-pride": "\u041D\u0435\u0431\u0435\u0441\u043D\u043E\u0435 \u0432\u0435\u043B\u0438\u0447\u0438\u0435",
-  "skyward-spine": "\u041D\u0435\u0431\u0435\u0441\u043D\u0430\u044F \u043E\u0441\u044C",
-  slingshot,
-  "song-of-broken-pines": "\u041F\u0435\u0441\u043D\u044C \u0440\u0430\u0437\u0431\u0438\u0442\u044B\u0445 \u0441\u043E\u0441\u0435\u043D",
-  "splendor-of-tranquil-waters": "\u0411\u043B\u0435\u0441\u043A \u0442\u0438\u0445\u0438\u0445 \u0432\u043E\u0434",
-  "staff-of-homa": "\u041F\u043E\u0441\u043E\u0445 \u0425\u043E\u043C\u044B",
-  "staff-of-the-scarlet-sands": "\u041F\u043E\u0441\u043E\u0445 \u0430\u043B\u044B\u0445 \u043F\u0435\u0441\u043A\u043E\u0432",
-  "summit-shaper": "\u041A\u0440\u043E\u043C\u0441\u0430\u0442\u0435\u043B\u044C \u043F\u0438\u043A\u043E\u0432",
-  "the-alley-flash": "\u0412\u0441\u043F\u044B\u0448\u043A\u0430 \u0432\u043E \u0442\u044C\u043C\u0435",
-  "the-bell": "\u041C\u0435\u0447-\u043A\u043E\u043B\u043E\u043A\u043E\u043B",
-  "the-dockhands-assistant": "\u0412\u0435\u0440\u0444\u044C",
-  "the-first-great-magic": "\u041F\u0435\u0440\u0432\u044B\u0439 \u0432\u0435\u043B\u0438\u043A\u0438\u0439 \u0444\u043E\u043A\u0443\u0441",
-  "the-flute": "\u041C\u0435\u0447-\u0444\u043B\u0435\u0439\u0442\u0430",
-  "the-stringless": "\u0411\u0435\u0441\u0441\u0442\u0440\u0443\u043D\u043D\u044B\u0439",
-  "the-unforged": "\u041D\u0435\u043A\u043E\u0432\u0430\u043D\u044B\u0439",
-  "the-widsith": "\u041F\u0435\u0441\u043D\u044C \u0441\u0442\u0440\u0430\u043D\u043D\u0438\u043A\u0430",
-  "thrilling-tales-of-dragon-slayers": "\u042D\u043F\u043E\u0441 \u043E \u0434\u0440\u0430\u043A\u043E\u043D\u043E\u0431\u043E\u0440\u0446\u0430\u0445",
-  "thundering-pulse": "\u0413\u0440\u043E\u043C\u043E\u0432\u043E\u0439 \u043F\u0443\u043B\u044C\u0441",
-  "tome-of-the-eternal-flow": "\u041E\u0431\u0440\u044F\u0434 \u0432\u0435\u0447\u043D\u043E\u0433\u043E \u0442\u0435\u0447\u0435\u043D\u0438\u044F",
-  "tulaytullah_s-remembrance": "\u0412\u043E\u0441\u043F\u043E\u043C\u0438\u043D\u0430\u043D\u0438\u044F \u0422\u0443\u043B\u0430\u0439\u0442\u0443\u043B\u043B\u044B",
-  verdict,
-  "vortex-vanquisher": "\u041F\u043E\u043A\u043E\u0440\u0438\u0442\u0435\u043B\u044C \u0432\u0438\u0445\u0440\u044F",
-  "wavebreaker_s-fin": "\u0420\u0435\u0436\u0443\u0449\u0438\u0439 \u0432\u043E\u043B\u043D\u044B \u043F\u043B\u0430\u0432\u043D\u0438\u043A",
-  "wine-and-song": "\u0412\u0438\u043D\u043E \u0438 \u043F\u0435\u0441\u043D\u0438",
-  "wandering-evenstar": "\u0421\u043A\u0438\u0442\u0430\u044E\u0449\u0430\u044F\u0441\u044F \u0437\u0432\u0435\u0437\u0434\u0430",
-  "wolf_s-gravestone": "\u0412\u043E\u043B\u0447\u044C\u044F \u043F\u043E\u0433\u0438\u0431\u0435\u043B\u044C",
-  "xiphos-moonlight": "\u041B\u0443\u043D\u043D\u043E\u0435 \u0441\u0438\u044F\u043D\u0438\u0435 \u043A\u0441\u0438\u0444\u043E\u0441\u0430",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "\u0418\u0442\u0442\u043E",
-    title: "\u0413\u0435\u0440\u043E\u0439 \u0425\u0430\u043D\u0430\u043C\u0438\u0434\u0437\u0430\u043A\u0438"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "\u0425\u0443 \u0422\u0430\u043E",
-    title: "\u0412\u0435\u0441\u0435\u043D\u043D\u0438\u0439 \u0430\u0440\u043E\u043C\u0430\u0442"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "\u041A\u0430\u0434\u0437\u0443\u0445\u0430",
-    title: "\u0411\u0430\u0433\u0440\u044F\u043D\u044B\u0435 \u043B\u0438\u0441\u0442\u044C\u044F \u0438 \u043D\u0435\u0438\u0441\u0442\u043E\u0432\u044B\u0435 \u0432\u043E\u043B\u043D\u044B"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "\u0410\u044F\u043A\u0430",
-    title: "\u0418\u043D\u0435\u0435\u0432\u0430\u044F \u0446\u0430\u043F\u043B\u044F"
-  },
-  "kamisato-ayato": {
-    name: "\u0410\u044F\u0442\u043E",
-    title: "\u041E\u043F\u043B\u043E\u0442 \u0441\u0442\u043E\u0439\u043A\u043E\u0441\u0442\u0438"
-  },
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  "kujou-sara": {
-    name: "\u0421\u0430\u0440\u0430",
-    title: "\u041A\u0430\u0431\u0443\u0440\u0430\u044F \u0432\u043E\u0440\u043E\u043D\u044C\u0435\u0433\u043E \u043F\u0435\u0440\u0430"
-  },
-  "kuki-shinobu": {
-    name: "\u0421\u0438\u043D\u043E\u0431\u0443",
-    title: "\u0418\u0437\u0431\u0430\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u0438\u0446\u0430"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "\u0420\u0430\u0439\u0434\u044D\u043D",
-    title: "\u0426\u0430\u0440\u0441\u0442\u0432\u043E \u044D\u0432\u0442\u044E\u043C\u0438\u0438"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "\u041A\u043E\u043A\u043E\u043C\u0438",
-    title: "\u0416\u0435\u043C\u0447\u0443\u0436\u0438\u043D\u0430 \u043C\u0443\u0434\u0440\u043E\u0441\u0442\u0438"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "\u0425\u044D\u0439\u0434\u0437\u043E",
-    title: "\u041D\u0435\u0432\u043E\u0437\u043C\u0443\u0442\u0438\u043C\u043E\u0435 \u0441\u043F\u043E\u043A\u043E\u0439\u0441\u0442\u0432\u0438\u0435"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "\u042F\u044D \u041C\u0438\u043A\u043E",
-    title: "\u041E\u0437\u043E\u0440\u043D\u043E\u0435 \u043B\u0443\u043A\u0430\u0432\u0441\u0442\u0432\u043E"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "\u042E\u043D\u044C \u0426\u0437\u0438\u043D\u044C",
-    title: "\u0418\u0437\u044F\u0449\u0435\u0441\u0442\u0432\u043E \u043D\u0430 \u0441\u0446\u0435\u043D\u0435"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  ruRU as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/runtime.esm.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/runtime.esm.js
deleted file mode 100644
index 7a784070..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/runtime.esm.js
+++ /dev/null
@@ -1,235 +0,0 @@
-import { d as derived, w as writable } from "./index2.js";
-import t from "deepmerge";
-import o from "intl-messageformat";
-const r = {}, i = (e, n, t2) => t2 ? (n in r || (r[n] = {}), e in r[n] || (r[n][e] = t2), t2) : t2, l = (e, n) => {
-  if (null == n)
-    return;
-  if (n in r && e in r[n])
-    return r[n][e];
-  const t2 = E(n);
-  for (let o2 = 0; o2 < t2.length; o2++) {
-    const r2 = c(t2[o2], e);
-    if (r2)
-      return i(e, n, r2);
-  }
-};
-let a;
-const s = writable({});
-function u(e) {
-  return e in a;
-}
-function c(e, n) {
-  if (!u(e))
-    return null;
-  const t2 = function(e2) {
-    return a[e2] || null;
-  }(e);
-  return function(e2, n2) {
-    if (null == n2)
-      return;
-    if (n2 in e2)
-      return e2[n2];
-    const t3 = n2.split(".");
-    let o2 = e2;
-    for (let e3 = 0; e3 < t3.length; e3++)
-      if ("object" == typeof o2) {
-        if (e3 > 0) {
-          const n3 = t3.slice(e3, t3.length).join(".");
-          if (n3 in o2) {
-            o2 = o2[n3];
-            break;
-          }
-        }
-        o2 = o2[t3[e3]];
-      } else
-        o2 = void 0;
-    return o2;
-  }(t2, n);
-}
-function m(e, ...n) {
-  delete r[e], s.update((o2) => (o2[e] = t.all([o2[e] || {}, ...n]), o2));
-}
-derived([s], ([e]) => Object.keys(e));
-s.subscribe((e) => a = e);
-const d = {};
-function g(e) {
-  return d[e];
-}
-function h(e) {
-  return null != e && E(e).some((e2) => {
-    var n;
-    return null === (n = g(e2)) || void 0 === n ? void 0 : n.size;
-  });
-}
-function w(e, n) {
-  const t2 = Promise.all(n.map((n2) => (function(e2, n3) {
-    d[e2].delete(n3), 0 === d[e2].size && delete d[e2];
-  }(e, n2), n2().then((e2) => e2.default || e2))));
-  return t2.then((n2) => m(e, ...n2));
-}
-const p = {};
-function b(e) {
-  if (!h(e))
-    return e in p ? p[e] : Promise.resolve();
-  const n = function(e2) {
-    return E(e2).map((e3) => {
-      const n2 = g(e3);
-      return [e3, n2 ? [...n2] : []];
-    }).filter(([, e3]) => e3.length > 0);
-  }(e);
-  return p[e] = Promise.all(n.map(([e2, n2]) => w(e2, n2))).then(() => {
-    if (h(e))
-      return b(e);
-    delete p[e];
-  }), p[e];
-}
-function y(e, n) {
-  g(e) || function(e2) {
-    d[e2] = /* @__PURE__ */ new Set();
-  }(e);
-  const t2 = g(e);
-  g(e).has(n) || (u(e) || s.update((n2) => (n2[e] = {}, n2)), t2.add(n));
-}
-/*! *****************************************************************************
-Copyright (c) Microsoft Corporation.
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-***************************************************************************** */
-function v(e, n) {
-  var t2 = {};
-  for (var o2 in e)
-    Object.prototype.hasOwnProperty.call(e, o2) && n.indexOf(o2) < 0 && (t2[o2] = e[o2]);
-  if (null != e && "function" == typeof Object.getOwnPropertySymbols) {
-    var r2 = 0;
-    for (o2 = Object.getOwnPropertySymbols(e); r2 < o2.length; r2++)
-      n.indexOf(o2[r2]) < 0 && Object.prototype.propertyIsEnumerable.call(e, o2[r2]) && (t2[o2[r2]] = e[o2[r2]]);
-  }
-  return t2;
-}
-function O({ locale: e, id: n }) {
-  console.warn(`[svelte-i18n] The message "${n}" was not found in "${E(e).join('", "')}".${h(P()) ? "\n\nNote: there are at least one loader still registered to this locale that wasn't executed." : ""}`);
-}
-const j = { fallbackLocale: null, loadingDelay: 200, formats: { number: { scientific: { notation: "scientific" }, engineering: { notation: "engineering" }, compactLong: { notation: "compact", compactDisplay: "long" }, compactShort: { notation: "compact", compactDisplay: "short" } }, date: { short: { month: "numeric", day: "numeric", year: "2-digit" }, medium: { month: "short", day: "numeric", year: "numeric" }, long: { month: "long", day: "numeric", year: "numeric" }, full: { weekday: "long", month: "long", day: "numeric", year: "numeric" } }, time: { short: { hour: "numeric", minute: "numeric" }, medium: { hour: "numeric", minute: "numeric", second: "numeric" }, long: { hour: "numeric", minute: "numeric", second: "numeric", timeZoneName: "short" }, full: { hour: "numeric", minute: "numeric", second: "numeric", timeZoneName: "short" } } }, warnOnMissingMessages: true, handleMissingMessage: void 0, ignoreTag: true };
-function M() {
-  return j;
-}
-function $(e) {
-  const { formats: n } = e, t2 = v(e, ["formats"]), o2 = e.initialLocale || e.fallbackLocale;
-  return t2.warnOnMissingMessages && (delete t2.warnOnMissingMessages, null == t2.handleMissingMessage ? t2.handleMissingMessage = O : console.warn('[svelte-i18n] The "warnOnMissingMessages" option is deprecated. Please use the "handleMissingMessage" option instead.')), Object.assign(j, t2, { initialLocale: o2 }), n && ("number" in n && Object.assign(j.formats.number, n.number), "date" in n && Object.assign(j.formats.date, n.date), "time" in n && Object.assign(j.formats.time, n.time)), D.set(o2);
-}
-const k = writable(false);
-let T;
-const L = writable(null);
-function x(e) {
-  return e.split("-").map((e2, n, t2) => t2.slice(0, n + 1).join("-")).reverse();
-}
-function E(e, n = M().fallbackLocale) {
-  const t2 = x(e);
-  return n ? [.../* @__PURE__ */ new Set([...t2, ...x(n)])] : t2;
-}
-function P() {
-  return null != T ? T : void 0;
-}
-L.subscribe((e) => {
-  T = null != e ? e : void 0, "undefined" != typeof window && null != e && document.documentElement.setAttribute("lang", e);
-});
-const D = Object.assign(Object.assign({}, L), { set: (e) => {
-  if (e && function(e2) {
-    if (null == e2)
-      return;
-    const n = E(e2);
-    for (let e3 = 0; e3 < n.length; e3++) {
-      const t2 = n[e3];
-      if (u(t2))
-        return t2;
-    }
-  }(e) && h(e)) {
-    const { loadingDelay: n } = M();
-    let t2;
-    return "undefined" != typeof window && null != P() && n ? t2 = window.setTimeout(() => k.set(true), n) : k.set(true), b(e).then(() => {
-      L.set(e);
-    }).finally(() => {
-      clearTimeout(t2), k.set(false);
-    });
-  }
-  return L.set(e);
-} }), F = () => "undefined" == typeof window ? null : window.navigator.language || window.navigator.languages[0], C = (e) => {
-  const n = /* @__PURE__ */ Object.create(null);
-  return (t2) => {
-    const o2 = JSON.stringify(t2);
-    return o2 in n ? n[o2] : n[o2] = e(t2);
-  };
-}, G = (e, n) => {
-  const { formats: t2 } = M();
-  if (e in t2 && n in t2[e])
-    return t2[e][n];
-  throw new Error(`[svelte-i18n] Unknown "${n}" ${e} format.`);
-}, J = C((e) => {
-  var { locale: n, format: t2 } = e, o2 = v(e, ["locale", "format"]);
-  if (null == n)
-    throw new Error('[svelte-i18n] A "locale" must be set to format numbers');
-  return t2 && (o2 = G("number", t2)), new Intl.NumberFormat(n, o2);
-}), U = C((e) => {
-  var { locale: n, format: t2 } = e, o2 = v(e, ["locale", "format"]);
-  if (null == n)
-    throw new Error('[svelte-i18n] A "locale" must be set to format dates');
-  return t2 ? o2 = G("date", t2) : 0 === Object.keys(o2).length && (o2 = G("date", "short")), new Intl.DateTimeFormat(n, o2);
-}), V = C((e) => {
-  var { locale: n, format: t2 } = e, o2 = v(e, ["locale", "format"]);
-  if (null == n)
-    throw new Error('[svelte-i18n] A "locale" must be set to format time values');
-  return t2 ? o2 = G("time", t2) : 0 === Object.keys(o2).length && (o2 = G("time", "short")), new Intl.DateTimeFormat(n, o2);
-}), _ = (e = {}) => {
-  var { locale: n = P() } = e, t2 = v(e, ["locale"]);
-  return J(Object.assign({ locale: n }, t2));
-}, q = (e = {}) => {
-  var { locale: n = P() } = e, t2 = v(e, ["locale"]);
-  return U(Object.assign({ locale: n }, t2));
-}, B = (e = {}) => {
-  var { locale: n = P() } = e, t2 = v(e, ["locale"]);
-  return V(Object.assign({ locale: n }, t2));
-}, H = C((e, n = P()) => new o(e, n, M().formats, { ignoreTag: M().ignoreTag })), K = (e, n = {}) => {
-  var t2, o2, r2, i2;
-  let a2 = n;
-  "object" == typeof e && (a2 = e, e = a2.id);
-  const { values: s2, locale: u2 = P(), default: c2 } = a2;
-  if (null == u2)
-    throw new Error("[svelte-i18n] Cannot format a message without first setting the initial locale.");
-  let m2 = l(e, u2);
-  if (m2) {
-    if ("string" != typeof m2)
-      return console.warn(`[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof m2}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`), m2;
-  } else
-    m2 = null !== (i2 = null !== (r2 = null === (o2 = (t2 = M()).handleMissingMessage) || void 0 === o2 ? void 0 : o2.call(t2, { locale: u2, id: e, defaultValue: c2 })) && void 0 !== r2 ? r2 : c2) && void 0 !== i2 ? i2 : e;
-  if (!s2)
-    return m2;
-  let f = m2;
-  try {
-    f = H(m2, u2).format(s2);
-  } catch (n2) {
-    console.warn(`[svelte-i18n] Message "${e}" has syntax error:`, n2.message);
-  }
-  return f;
-}, Q = (e, n) => B(n).format(e), R = (e, n) => q(n).format(e), W = (e, n) => _(n).format(e), X = (e, n = P()) => l(e, n), Y = derived([D, s], () => K);
-derived([D], () => Q);
-derived([D], () => R);
-derived([D], () => W);
-const oe = derived([D, s], () => X);
-export {
-  $,
-  D,
-  F,
-  Y,
-  k,
-  oe as o,
-  y
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/stores.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/stores.js
deleted file mode 100644
index ace8e897..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/stores.js
+++ /dev/null
@@ -1,46 +0,0 @@
-import { g as getContext } from "./index.js";
-const getStores = () => {
-  const stores = getContext("__svelte__");
-  const readonly_stores = {
-    page: {
-      subscribe: stores.page.subscribe
-    },
-    navigating: {
-      subscribe: stores.navigating.subscribe
-    },
-    updated: stores.updated
-  };
-  Object.defineProperties(readonly_stores, {
-    preloading: {
-      get() {
-        console.error("stores.preloading is deprecated; use stores.navigating instead");
-        return {
-          subscribe: stores.navigating.subscribe
-        };
-      },
-      enumerable: false
-    },
-    session: {
-      get() {
-        removed_session();
-        return {};
-      },
-      enumerable: false
-    }
-  });
-  return readonly_stores;
-};
-const page = {
-  subscribe(fn) {
-    const store = getStores().page;
-    return store.subscribe(fn);
-  }
-};
-function removed_session() {
-  throw new Error(
-    "stores.session is no longer available. See https://github.com/sveltejs/kit/discussions/5883"
-  );
-}
-export {
-  page as p
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/th-TH.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/th-TH.js
deleted file mode 100644
index 82c0d7c8..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/th-TH.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Genshin Impact Wish Simulator";
-const character = "\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23";
-const weapon = "\u0E2D\u0E32\u0E27\u0E38\u0E18";
-const vision = "\u0E18\u0E32\u0E15\u0E38";
-const anemo = "\u0E25\u0E21";
-const cryo = "\u0E19\u0E49\u0E33\u0E41\u0E02\u0E47\u0E07";
-const dendro = "\u0E44\u0E21\u0E49";
-const electro = "\u0E44\u0E1F\u0E1F\u0E49\u0E32";
-const hydro = "\u0E19\u0E49\u0E33";
-const geo = "\u0E2B\u0E34\u0E19";
-const pyro = "\u0E44\u0E1F";
-const bow = "\u0E18\u0E19\u0E39";
-const catalyst = "\u0E2A\u0E37\u0E48\u0E2D\u0E40\u0E27\u0E17";
-const claymore = "\u0E14\u0E32\u0E1A\u0E43\u0E2B\u0E0D\u0E48";
-const sword = "\u0E14\u0E32\u0E1A";
-const polearm = "\u0E2B\u0E2D\u0E01";
-const extra = "Extra";
-const obtained = "\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A";
-const waiting = "\u0E17\u0E35\u0E48\u0E23\u0E2D";
-const connectionFailed = "Connection Failed!";
-const confirmButton = "\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19";
-const cancelButton = "\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01";
-const disclaimer = "\u0E17\u0E23\u0E31\u0E1E\u0E22\u0E4C\u0E2A\u0E34\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E35\u0E48\u0E43\u0E0A\u0E49\u0E43\u0E19\u0E40\u0E27\u0E47\u0E1A\u0E44\u0E0B\u0E15\u0E4C\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07 Hoyoverse";
-const fanmade = "\u0E19\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E41\u0E2D\u0E1B\u0E1E\u0E25\u0E34\u0E40\u0E04\u0E0A\u0E31\u0E48\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E42\u0E14\u0E22\u0E41\u0E1F\u0E19 \u0E46 \u0E25\u0E49\u0E27\u0E19 \u0E46 \u0E2A\u0E19\u0E38\u0E01\u0E01\u0E31\u0E1A\u0E21\u0E31\u0E19!";
-const pressToContinue = "\u0E01\u0E14\u0E17\u0E35\u0E48\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49\u0E43\u0E19\u0E0A\u0E48\u0E2D\u0E07\u0E27\u0E48\u0E32\u0E07\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E15\u0E48\u0E2D";
-const installInstruction = "Instructions to Install to Home Screen/Desktop";
-const share = "\u0E41\u0E1A\u0E48\u0E07\u0E1B\u0E31\u0E19";
-const screenshot = "\u0E16\u0E48\u0E32\u0E22\u0E20\u0E32\u0E1E";
-const capturing = "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E08\u0E31\u0E1A";
-const rewardFirstShare = "\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E41\u0E0A\u0E23\u0E4C\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01: {qty}";
-const version = "\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E0A\u0E31\u0E48\u0E19";
-const donate = "\u0E1A\u0E23\u0E34\u0E08\u0E32\u0E04";
-const banner = {
-  beginner: "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",
-  wanderlust: "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E41\u0E2B\u0E48\u0E07\u0E01\u0E32\u0E23\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07",
-  "epitome-invocation": "\u0E2A\u0E23\u0E23\u0E04\u0E4C\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E40\u0E0B\u0E35\u0E22\u0E19",
-  "adrift-in-the-harbor": "\u0E21\u0E48\u0E32\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E21\u0E06\u0E32",
-  "auric-blaze": "\u0E2A\u0E38\u0E23\u0E34\u0E22\u0E31\u0E19\u0E2A\u0E35\u0E17\u0E2D\u0E07 \u0E17\u0E35\u0E48\u0E41\u0E1C\u0E14\u0E40\u0E1C\u0E32",
-  "azure-excursion": "\u0E22\u0E48\u0E33\u0E1A\u0E38\u0E1B\u0E1C\u0E32\u0E18\u0E32\u0E23\u0E32\u0E04\u0E23\u0E32\u0E21",
-  "ballad-in-goblets": "\u0E16\u0E49\u0E27\u0E22\u0E41\u0E2B\u0E48\u0E07\u0E1A\u0E17\u0E01\u0E27\u0E35",
-  "born-of-ocean-swell": "\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E22\u0E41\u0E2B\u0E48\u0E07 \u0E40\u0E01\u0E25\u0E35\u0E22\u0E27\u0E04\u0E25\u0E37\u0E48\u0E19",
-  "caution-in-confidence": "\u0E40\u0E25\u0E48\u0E2B\u0E4C\u0E25\u0E31\u0E1A\u0E27\u0E32\u0E08\u0E32\u0E25\u0E27\u0E07",
-  "chanson-of-many-waters": "\u0E02\u0E31\u0E1A\u0E02\u0E32\u0E19\u0E25\u0E33\u0E40\u0E19\u0E32\u0E18\u0E32\u0E23",
-  "conjuring-chiaroscuro": "\u0E01\u0E25\u0E21\u0E32\u0E22\u0E32\u0E41\u0E2A\u0E07\u0E40\u0E07\u0E32",
-  "dance-of-lantern": "\u0E01\u0E32\u0E23\u0E40\u0E15\u0E49\u0E19\u0E23\u0E33 \u0E43\u0E19 \u0E41\u0E2A\u0E07\u0E42\u0E04\u0E21",
-  "decree-of-the-deeps": "\u0E1A\u0E31\u0E0D\u0E0A\u0E32\u0E41\u0E2B\u0E48\u0E07 \u0E2B\u0E49\u0E27\u0E07\u0E2A\u0E21\u0E38\u0E17\u0E23",
-  "discerner-of-enigmas": "\u0E23\u0E38\u0E49\u0E07\u0E2B\u0E21\u0E2D\u0E01 \u0E01\u0E25\u0E32\u0E07\u0E40\u0E27\u0E2B\u0E32",
-  "drifting-luminescence": "\u0E44\u0E02\u0E48\u0E21\u0E38\u0E01\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E22\u0E23\u0E38\u0E49\u0E07",
-  "everbloom-violet": "\u0E01\u0E25\u0E1A\u0E38\u0E1B\u0E1C\u0E32\u0E21\u0E48\u0E27\u0E07",
-  "farewell-of-snezhnaya": "\u0E1A\u0E2D\u0E01\u0E25\u0E32\u0E41\u0E14\u0E19\u0E40\u0E2B\u0E19\u0E37\u0E2D",
-  "from-ashes-reborn": "\u0E44\u0E1F\u0E01\u0E31\u0E25\u0E1B\u0E4C \u0E1C\u0E25\u0E32\u0E0D\u0E21\u0E25\u0E17\u0E34\u0E19",
-  "gentry-of-hermitage": "\u0E02\u0E38\u0E19\u0E40\u0E02\u0E32\u0E41 \u0E25\u0E30\u0E40\u0E21\u0E37\u0E2D\u0E07\u0E43\u0E2B\u0E0D\u0E48",
-  "immaculate-pulse": "\u0E01\u0E32\u0E23\u0E38\u0E13\u0E22\u0E4C\u0E1A\u0E23\u0E34\u0E2A\u0E38\u0E17\u0E18\u0E34\u0E4C",
-  "in-the-name-of-the-rosula": "\u0E1B\u0E0F\u0E34\u0E0D\u0E32\u0E13\u0E41\u0E2B\u0E48\u0E07 \u0E01\u0E38\u0E2B\u0E25\u0E32\u0E1A\u0E2B\u0E19\u0E32\u0E21",
-  "invitation-to-mundane-life": "\u0E04\u0E33\u0E40\u0E0A\u0E34\u0E0D\u0E2D\u0E31 \u0E19\u0E2A\u0E27\u0E48\u0E32\u0E07\u0E44\u0E2A\u0E27",
-  "leaves-in-the-wind": "\u0E43\u0E1A\u0E44\u0E21\u0E49\u0E23\u0E48\u0E27\u0E07 \u0E15\u0E32\u0E21\u0E2A\u0E32\u0E22\u0E25\u0E21",
-  "moment-of-bloom": "\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25 \u0E32\u0E41\u0E2B\u0E48\u0E07 \u0E01\u0E32\u0E23\u0E1C\u0E25\u0E34\u0E1A\u0E32\u0E19",
-  "oni_s-royale": "\u0E2B\u0E49\u0E27\u0E07\u0E2D\u0E2A\u0E39\u0E23 \u0E1B\u0E23\u0E30\u0E08\u0E31\u0E0D\u0E1A\u0E32\u0E19",
-  "reign-of-serenity": "\u0E1A\u0E31\u0E25\u0E25\u0E31\u0E07\u0E01\u0E4C\u0E41\u0E2B\u0E48\u0E07\u0E19\u0E34\u0E23\u0E31\u0E19\u0E14\u0E23\u0E4C",
-  "secretum-secretorum": "\u0E04\u0E27\u0E32\u0E21\u0E25\u0E31\u0E1A\u0E43\u0E19\u0E2B\u0E49\u0E27\u0E07\u0E25\u0E36\u0E01",
-  "sparkling-steps": "\u0E01\u0E49\u0E32\u0E27\u0E22\u0E48\u0E32\u0E07\u0E1E\u0E23\u0E48\u0E32\u0E07\u0E1E\u0E23\u0E32\u0E22",
-  "tapestry-of-golden-flames": "\u0E17\u0E30\u0E40\u0E25\u0E14\u0E32\u0E27\u0E41\u0E2B\u0E48 \u0E07\u0E40\u0E1B\u0E25\u0E27\u0E40\u0E1E\u0E25\u0E34\u0E07",
-  "tempestuous-destiny": "\u0E0A\u0E30\u0E15\u0E32 \u0E2D\u0E31\u0E19\u0E17\u0E38\u0E01\u0E02\u0E4C\u0E40\u0E02\u0E47\u0E0D",
-  "the-heron_s-court": "\u0E15\u0E33\u0E2B\u0E19\u0E31\u0E01\u0E01\u0E23\u0E30\u0E40 \u0E23\u0E35\u0E22\u0E19\u0E02\u0E32\u0E27",
-  "the-moongrass-enlightenment": "\u0E2B\u0E0D\u0E49\u0E32\u0E41\u0E2A\u0E07\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C \u0E1B\u0E23\u0E30\u0E17\u0E32\u0E19\u0E1B\u0E31\u0E0D\u0E0D\u0E32",
-  "the-transcendent-one-returns": "\u0E08\u0E32\u0E01\u0E1E\u0E31\u0E19\u0E18\u0E19\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E39\u0E48 \u0E41\u0E14\u0E19\u0E21\u0E19\u0E38\u0E29\u0E22\u0E4C",
-  "twilight-arbiter": "\u0E15\u0E38\u0E25\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E19\u0E18\u0E22\u0E32",
-  "twirling-lotus": "\u0E19\u0E34\u0E42\u0E25\u0E15\u0E1A\u0E25\u0E40\u0E23\u0E34\u0E07\u0E23\u0E30\u0E1A\u0E33",
-  "viridescent-vigil": "\u0E1E\u0E34\u0E17\u0E31\u0E01\u0E29\u0E4C\u0E44\u0E1E\u0E23\u0E27\u0E31\u0E19"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19",
-  rollButton: "\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 {count}",
-  stellaFortuna: "\u0E14\u0E27\u0E07\u0E14\u0E32\u0E27\u0E41\u0E2B\u0E48\u0E07\u0E0A\u0E35\u0E27\u0E34\u0E15\u0E02\u0E2D\u0E07\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E14\u0E31\u0E07",
-  loadFailed: "\u0E42\u0E2B\u0E25\u0E14\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08! <br /> \u0E42\u0E1B\u0E23\u0E14\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E44\u0E1B\u0E43\u0E0A\u0E49\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E2D\u0E37\u0E48\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E2D\u0E34\u0E19\u0E40\u0E17\u0E2D\u0E23\u0E4C\u0E40\u0E19\u0E47\u0E15\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E2B\u0E25\u0E35\u0E01\u0E40\u0E25\u0E35\u0E48\u0E22\u0E07\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C",
-    allBanner: "\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
-    previous: "\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C\u0E01\u0E48\u0E2D\u0E19\u0E2B\u0E19\u0E49\u0E32",
-    findBanner: "\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C",
-    group: "\u0E01\u0E25\u0E38\u0E48\u0E21",
-    beginner: "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",
-    "character-event": "\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23",
-    "weapon-event": "\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18",
-    standard: "\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E16\u0E32\u0E27\u0E23",
-    wishDescription: "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E17\u0E38\u0E01 10 \u0E14\u0E23\u0E34\u0E07 \u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E27\u0E48\u0E32\u0E21\u0E35\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E2A\u0E35\u0E48\u0E14\u0E32\u0E27 \u0E2B\u0E23\u0E37\u0E2D\u0E2A\u0E39\u0E07\u0E01\u0E27\u0E32\u0E2D\u0E2D\u0E01\u0E41\u0E19\u0E48\u0E19\u0E2D\u0E19",
-    novice: "\u0E2A\u0E32\u0E21\u0E40\u0E13\u0E23\u0E2A\u0E27\u0E14\u0E21\u0E19\u0E15\u0E4C",
-    up: "UP!",
-    beginnerSet: "\u0E25\u0E14\u0E1E\u0E34\u0E40\u0E28\u0E29 20%. \u0E40\u0E0A\u0E47\u0E15 10 \u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23: {character}",
-    beginnerNote: '"\u0E43\u0E19\u0E10\u0E32\u0E19\u0E30\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E32\u0E27\u0E43\u0E0A\u0E49\u0E17\u0E35\u0E48\u0E0B\u0E37\u0E48\u0E2D\u0E2A\u0E31\u0E15\u0E22\u0E4C\u0E08\u0E30"',
-    beginnerChance: "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E25\u0E37\u0E2D\u0E2D\u0E22\u0E39\u0E48: {chances}",
-    standardNote: "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E21\u0E32\u0E15\u0E23\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14",
-    allWeaponTypes: "\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E38\u0E01\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17",
-    etc: "\u0E41\u0E25\u0E30\u0E2D\u0E37\u0E48\u0E19 \u0E46",
-    probIncreased: "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E43\u0E19\u0E01\u0E32\u0E23\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19!",
-    eventNote: "\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E08\u0E4D\u0E32\u0E01\u0E31\u0E14\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E2B\u0E32\u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E2D\u0E14\u0E04\u0E25\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E19 \u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32 UP \u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19",
-    viewDetails: '\u0E14\u0E39\u0E17\u0E35\u0E48 "\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14" \u0E2A\u0E4D\u0E32\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21'
-  },
-  epitomizedPath: {
-    text: "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E",
-    fatePoint: "\u0E41\u0E15\u0E49\u0E21\u0E01\u0E23\u0E23\u0E21",
-    cancelPrompt: "\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?",
-    cancelDesc: "\u0E01\u0E32\u0E23\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E08\u0E30\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E04\u0E30\u0E41\u0E19\u0E19\u0E2A\u0E30\u0E2A\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
-    selectWeapon: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18",
-    chartCourseOf: "\u0E40\u0E25\u0E37\u0E2D\u0E01 {target}",
-    cancelCourse: "\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01",
-    chartCourse: "\u0E40\u0E25\u0E37\u0E2D\u0E01",
-    courseSetFor: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01: {selectedCourse}",
-    description: [
-      '"Epitomized Path" is a wish mechanic in "Epitome Invocation". Travelers can chart a course towards a specific 5-Star promotional weapon they hope to obtain.',
-      "Once you have charted a course towards your chosen weapon, you will obtain 1 Fate Point upon <span> receiving a 5-Star weapon that is not the one that you chose</span>. You can obtain a maximum of 2 Fate Points.",
-      `Once you've reached the maximum amount of Fate Points, the next 5-Star weapon you choose will be the one you have chosen through "Epitomized Path".`,
-      "When you obtain the chosen weapon in Epitome Invocation through Epitomized Path, <span> the accumulated Fate Points will be cleared </span>.",
-      "If you do not use Epitomized Path to obtain a weapon, you will not accumulate Fate Points.",
-      "The charted course towards a certain weapon can be changed or cancelled. However, after doing so, any current Fate Points will be cleared.",
-      "At the end of the current period of Epitome Invocation, any current Fate Points will be cleared."
-    ]
-  },
-  result: {
-    skip: "\u0E02\u0E49\u0E32\u0E21",
-    meteorFailed: "\u0E42\u0E2B\u0E25\u0E14\u0E41\u0E2D\u0E19\u0E34\u0E40\u0E21\u0E0A\u0E31\u0E48\u0E19\u0E14\u0E32\u0E27\u0E15\u0E01\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08",
-    "new": "\u0E43\u0E2B\u0E21\u0E48",
-    convertion: "\u0E01\u0E32\u0E23\u0E41\u0E1B\u0E25\u0E07",
-    title: "\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E17\u0E35\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A {item} et al"
-  }
-};
-const outfit = {
-  heading: "\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21",
-  "default": "\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",
-  setOutfit: "\u0E0A\u0E38\u0E14\u0E40\u0E0B\u0E47\u0E17",
-  owned: "\u0E21\u0E35\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E41\u0E25\u0E49\u0E27",
-  purchasePrompt: "\u0E04\u0E38\u0E13\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E38\u0E14\u0E19\u0E35\u0E49 \u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E2B\u0E23\u0E37\u0E2D\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E0A\u0E38\u0E14\u0E19\u0E35\u0E49?",
-  promptInfo: "\u0E04\u0E38\u0E13\u0E22\u0E31\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E41\u0E15\u0E48\u0E07\u0E01\u0E32\u0E22\u0E19\u0E35\u0E49\u0E44\u0E14\u0E49\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
-  obtained: "\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E0A\u0E38\u0E14\u0E43\u0E2B\u0E21\u0E48\u0E41\u0E25\u0E49\u0E27",
-  unlocked: "{character}: \u0E1B\u0E25\u0E14\u0E25\u0E47\u0E2D\u0E04\u0E0A\u0E38\u0E14\u0E41\u0E25\u0E49\u0E27",
-  item: {
-    "5-star-outrider": {
-      name: "\u0E2D\u0E31\u0E28\u0E27\u0E34\u0E19\u0E25\u0E32\u0E14\u0E15\u0E23\u0E30\u0E40\u0E27\u0E19\u0E43\u0E08\u0E40\u0E01\u0E34\u0E19\u0E23\u0E49\u0E2D\u0E22"
-    },
-    "favonian-fevotion": {
-      name: "\u0E2A\u0E32\u0E22\u0E25\u0E21\u0E41\u0E2B\u0E48\u0E07\u0E04\u0E27\u0E32\u0E21\u0E20\u0E31\u0E01\u0E14\u0E35"
-    },
-    "flowing-fate": {
-      name: "\u0E14\u0E27\u0E07\u0E14\u0E32\u0E27\u0E41\u0E2B\u0E48\u0E07\u0E0A\u0E35\u0E27\u0E34\u0E15\u0E17\u0E35\u0E48\u0E41\u0E1B\u0E23\u0E1C\u0E31\u0E19"
-    },
-    "executor_s-thorns": {
-      name: "\u0E40\u0E1E\u0E0A\u0E0C\u0E06\u0E32\u0E15\u0E1B\u0E23\u0E32\u0E1A\u0E2D\u0E18\u0E23\u0E23\u0E21"
-    },
-    "sea-breeze-dandelion": {
-      name: "\u0E04\u0E27\u0E32\u0E21\u0E1D\u0E31\u0E19\u0E43\u0E19\u0E2A\u0E32\u0E22\u0E25\u0E21\u0E41\u0E2B\u0E48\u0E07\u0E17\u0E49\u0E2D\u0E07\u0E17\u0E30\u0E40\u0E25",
-      description: "\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E2B\u0E19\u0E49\u0E32\u0E23\u0E49\u0E2D\u0E19\u0E02\u0E2D\u0E07 Jean \u0E17\u0E35\u0E48\u0E14\u0E39\u0E40\u0E22\u0E47\u0E19\u0E2A\u0E1A\u0E32\u0E22\u0E41\u0E15\u0E48\u0E22\u0E31\u0E07\u0E04\u0E07\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E07\u0E48\u0E32\u0E07\u0E32\u0E21\u0E40\u0E2D\u0E32\u0E44\u0E27\u0E49 \u0E40\u0E1B\u0E47\u0E19\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E01\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E44\u0E1B\u0E40\u0E17\u0E35\u0E48\u0E22\u0E27\u0E17\u0E30\u0E40\u0E25\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14"
-    },
-    "summertime-sparkle": {
-      name: "\u0E0B\u0E31\u0E21\u0E40\u0E21\u0E2D\u0E23\u0E4C\u0E0B\u0E48\u0E32\u0E17\u0E49\u0E32\u0E23\u0E49\u0E2D\u0E19",
-      description: "\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E0A\u0E32\u0E22\u0E2B\u0E32\u0E14\u0E02\u0E2D\u0E07 Barbara \u0E01\u0E23\u0E30\u0E42\u0E1B\u0E23\u0E07\u0E2A\u0E31\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E2A\u0E27\u0E22\u0E07\u0E32\u0E21 \u0E17\u0E35\u0E48\u0E40\u0E15\u0E47\u0E21\u0E44\u0E1B\u0E14\u0E49\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E14\u0E43\u0E2A\u0E02\u0E2D\u0E07\u0E24\u0E14\u0E39\u0E23\u0E49\u0E2D\u0E19 \u0E41\u0E25\u0E30\u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E08\u0E30\u0E41\u0E1C\u0E48\u0E0B\u0E48\u0E32\u0E19\u0E01\u0E25\u0E34\u0E48\u0E19\u0E2D\u0E32\u0E22 \u0E2D\u0E31\u0E19\u0E40\u0E22\u0E47\u0E19\u0E2A\u0E14\u0E0A\u0E37\u0E48\u0E19\u0E02\u0E2D\u0E07\u0E17\u0E30\u0E40\u0E25\u0E2D\u0E35\u0E01\u0E14\u0E49\u0E27\u0E22"
-    },
-    "opulent-splendor": {
-      name: "\u0E23\u0E31\u0E28\u0E21\u0E35\u0E23\u0E38\u0E49\u0E07\u0E40\u0E08\u0E34\u0E14\u0E08\u0E23\u0E31\u0E2A",
-      description: "\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E0A\u0E38\u0E14\u0E1E\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07 Keqing \u0E17\u0E48\u0E32\u0E21\u0E01\u0E25\u0E32\u0E07\u0E1A\u0E23\u0E23\u0E22\u0E32\u0E01\u0E32\u0E28\u0E2D\u0E31\u0E19\u0E07\u0E14\u0E07\u0E32\u0E21\u0E02\u0E2D\u0E07\u0E07\u0E32\u0E19\u0E40\u0E17\u0E28\u0E01\u0E32\u0E25 Lantern Rite \u0E04\u0E27\u0E32\u0E21\u0E40\u0E2B\u0E19\u0E37\u0E48\u0E2D\u0E22\u0E22\u0E32\u0E01\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E27\u0E31\u0E19\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E1C\u0E48\u0E32\u0E19\u0E21\u0E32 \u0E2B\u0E25\u0E48\u0E2D\u0E2B\u0E25\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E40\u0E01\u0E34\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E27\u0E32\u0E21\u0E07\u0E14\u0E07\u0E32\u0E21\u0E43\u0E19\u0E04\u0E48\u0E33\u0E04\u0E37\u0E19\u0E19\u0E35\u0E49"
-    },
-    "orchid_s-evening-gown": {
-      name: "\u0E01\u0E25\u0E49\u0E27\u0E22\u0E44\u0E21\u0E49\u0E2D\u0E19\u0E18\u0E01\u0E32\u0E23",
-      description: "\u0E04\u0E2D\u0E2A\u0E15\u0E39\u0E21\u0E0A\u0E38\u0E14\u0E1E\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07 Ningguang \u0E0A\u0E38\u0E14\u0E40\u0E14\u0E23\u0E2A\u0E2A\u0E35\u0E1F\u0E49\u0E32\u0E04\u0E23\u0E32\u0E21\u0E15\u0E31\u0E27\u0E22\u0E32\u0E27\u0E0A\u0E48\u0E27\u0E22\u0E02\u0E31\u0E1A\u0E40\u0E19\u0E49\u0E19\u0E23\u0E39\u0E1B\u0E23\u0E48\u0E32\u0E07\u0E2A\u0E38\u0E14\u0E2A\u0E07\u0E48\u0E32\u0E07\u0E32\u0E21\u0E43\u0E2B\u0E49\u0E40\u0E14\u0E48\u0E19\u0E0A\u0E31\u0E14 \u0E41\u0E25\u0E30\u0E1B\u0E35\u0E01\u0E1C\u0E35\u0E40\u0E2A\u0E37\u0E49\u0E2D\u0E17\u0E35\u0E48\u0E02\u0E49\u0E2D\u0E40\u0E17\u0E49\u0E32\u0E0A\u0E48\u0E27\u0E22\u0E40\u0E2A\u0E23\u0E34\u0E21\u0E04\u0E27\u0E32\u0E21\u0E2D\u0E48\u0E2D\u0E19\u0E2B\u0E27\u0E32\u0E19\u0E43\u0E2B\u0E49\u0E40\u0E18\u0E2D\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B\u0E2D\u0E35\u0E01"
-    },
-    "ein-immernachtstraum": {
-      name: "\u0E2B\u0E49\u0E27\u0E07\u0E1D\u0E31\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E23\u0E31\u0E15\u0E15\u0E34\u0E01\u0E32\u0E25",
-      description: "\u0E0A\u0E38\u0E14\u0E1E\u0E34\u0E18\u0E35\u0E01\u0E32\u0E23\u0E02\u0E2D\u0E07\u0E40\u0E08\u0E49\u0E32\u0E2B\u0E0D\u0E34\u0E07 Fischl \u0E02\u0E2D\u0E43\u0E2B\u0E49\u0E1C\u0E39\u0E49\u0E2A\u0E39\u0E07\u0E28\u0E31\u0E01\u0E14\u0E34\u0E4C\u0E40\u0E1B\u0E35\u0E48\u0E22\u0E21\u0E44\u0E1B\u0E14\u0E49\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E01\u0E25\u0E49\u0E32\u0E2B\u0E32\u0E0D \u0E08\u0E23\u0E34\u0E07\u0E43\u0E08 \u0E41\u0E25\u0E30\u0E40\u0E21\u0E15\u0E15\u0E32\u0E15\u0E25\u0E2D\u0E14\u0E44\u0E1B \u0E04\u0E27\u0E32\u0E21\u0E0A\u0E31\u0E48\u0E27\u0E23\u0E49\u0E32\u0E22\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E25\u0E32\u0E22\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E22\u0E2D\u0E21\u0E28\u0E34\u0E42\u0E23\u0E23\u0E32\u0E1A\u0E15\u0E48\u0E2D\u0E40\u0E18\u0E2D"
-    },
-    "red-dead-of-night": {
-      name: "\u0E40\u0E1E\u0E25\u0E34\u0E07\u0E21\u0E2B\u0E31\u0E19\u0E15\u0E4C\u0E23\u0E31\u0E15\u0E15\u0E34\u0E01\u0E32\u0E25",
-      description: "\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48 Diluc \u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E2D\u0E01\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E01\u0E32\u0E23\u0E25\u0E31\u0E1A \u0E23\u0E32\u0E27\u0E01\u0E31\u0E1A\u0E40\u0E1B\u0E25\u0E27\u0E44\u0E1F\u0E17\u0E35\u0E48\u0E25\u0E38\u0E01\u0E42\u0E0A\u0E19\u0E17\u0E48\u0E32\u0E21\u0E01\u0E25\u0E32\u0E07\u0E40\u0E07\u0E32\u0E21\u0E37\u0E14 \u0E23\u0E48\u0E2D\u0E07\u0E23\u0E2D\u0E22\u0E2A\u0E35\u0E41\u0E14\u0E07\u0E40\u0E02\u0E49\u0E21\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E1B\u0E25\u0E32\u0E22\u0E17\u0E31\u0E28\u0E19\u0E27\u0E34\u0E2A\u0E31\u0E22\u0E02\u0E2D\u0E07\u0E28\u0E31\u0E15\u0E23\u0E39 \u0E04\u0E37\u0E2D\u0E1D\u0E31\u0E19\u0E23\u0E49\u0E32\u0E22\u0E17\u0E35\u0E48\u0E08\u0E30\u0E04\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E01\u0E31\u0E1A\u0E1E\u0E27\u0E01\u0E40\u0E02\u0E32\u0E44\u0E1B\u0E15\u0E25\u0E2D\u0E14\u0E0A\u0E35\u0E27\u0E34\u0E15"
-    },
-    "a-sobriquet-under-shade": {
-      name: "\u0E19\u0E32\u0E21\u0E41\u0E2B\u0E48\u0E07\u0E04\u0E27\u0E32\u0E21\u0E20\u0E31\u0E01\u0E14\u0E35",
-      description: "\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48 Lisa \u0E2A\u0E31\u0E48\u0E07\u0E15\u0E31\u0E14\u0E02\u0E13\u0E30\u0E21\u0E32\u0E40\u0E22\u0E37\u0E2D\u0E19 Sumeru \u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E0A\u0E38\u0E14\u0E01\u0E23\u0E30\u0E42\u0E1B\u0E23\u0E07\u0E17\u0E35\u0E48\u0E14\u0E39\u0E40\u0E23\u0E35\u0E22\u0E1A\u0E07\u0E48\u0E32\u0E22\u0E41\u0E15\u0E48\u0E2A\u0E07\u0E48\u0E32\u0E07\u0E32\u0E21 \u0E04\u0E25\u0E49\u0E32\u0E22\u0E04\u0E25\u0E36\u0E07\u0E01\u0E31\u0E1A\u0E22\u0E39\u0E19\u0E34\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E43\u0E19\u0E2A\u0E21\u0E31\u0E22\u0E40\u0E23\u0E35\u0E22\u0E19\u0E02\u0E2D\u0E07\u0E40\u0E18\u0E2D"
-    },
-    "springbloom-missive": {
-      name: "\u0E2A\u0E32\u0E23\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E22\u0E32\u0E21\u0E14\u0E2D\u0E01\u0E44\u0E21\u0E49\u0E1C\u0E25\u0E34\u0E1A\u0E32\u0E19",
-      description: "\u0E0A\u0E38\u0E14\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E02\u0E2D\u0E07 Kamisato Ayaka \u0E17\u0E33\u0E02\u0E36\u0E49\u0E19\u0E42\u0E14\u0E22\u0E2D\u0E49\u0E32\u0E07\u0E2D\u0E34\u0E07\u0E08\u0E32\u0E01\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E41\u0E15\u0E48\u0E07\u0E01\u0E32\u0E22\u0E02\u0E2D\u0E07\u0E2B\u0E0D\u0E34\u0E07\u0E0A\u0E32\u0E27 Fontaine \u0E43\u0E19\u0E20\u0E32\u0E1E\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A\u0E44\u0E25\u0E17\u0E4C\u0E42\u0E19\u0E40\u0E27\u0E25 \u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E08\u0E30\u0E2A\u0E30\u0E17\u0E49\u0E2D\u0E19\u0E16\u0E36\u0E07\u0E27\u0E34\u0E16\u0E35\u0E0A\u0E35\u0E27\u0E34\u0E15\u0E2A\u0E38\u0E20\u0E32\u0E1E\u0E2A\u0E15\u0E23\u0E35\u0E02\u0E2D\u0E07 Fontaine \u0E44\u0E14\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E14\u0E35"
-    },
-    "blossoming-starlight": {
-      name: "\u0E1B\u0E23\u0E30\u0E01\u0E32\u0E22\u0E14\u0E32\u0E27\u0E2A\u0E30\u0E1E\u0E23\u0E31\u0E48\u0E07",
-      description: "\u0E0A\u0E38\u0E14\u0E41\u0E2A\u0E19\u0E1B\u0E23\u0E30\u0E13\u0E35\u0E15\u0E17\u0E35\u0E48 Klee \u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E15\u0E2D\u0E19\u0E41\u0E2A\u0E14\u0E07\u0E25\u0E30\u0E04\u0E23\u0E09\u0E32\u0E01\u0E2A\u0E33\u0E04\u0E31\u0E0D \u0E21\u0E31\u0E19\u0E21\u0E35\u0E2A\u0E35\u0E2A\u0E31\u0E19\u0E07\u0E14\u0E07\u0E32\u0E21\u0E2A\u0E14\u0E43\u0E2A \u0E23\u0E32\u0E27\u0E01\u0E31\u0E1A\u0E40\u0E04\u0E49\u0E01\u0E17\u0E35\u0E48\u0E1B\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E14\u0E49\u0E27\u0E22\u0E14\u0E2D\u0E01\u0E44\u0E21\u0E49\u0E04\u0E23\u0E35\u0E21\u0E2A\u0E14\u0E01\u0E31\u0E1A\u0E40\u0E17\u0E35\u0E22\u0E19\u0E2A\u0E35\u0E41\u0E14\u0E07 \u0E21\u0E31\u0E19\u0E08\u0E30\u0E19\u0E33\u0E1E\u0E32\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E38\u0E02\u0E41\u0E25\u0E30\u0E23\u0E2D\u0E22\u0E22\u0E34\u0E49\u0E21 \u0E2A\u0E39\u0E48\u0E17\u0E31\u0E48\u0E27\u0E17\u0E38\u0E01\u0E41\u0E2B\u0E48\u0E07\u0E2B\u0E19\u0E17\u0E35\u0E48\u0E1C\u0E08\u0E0D\u0E20\u0E31\u0E22\u0E44\u0E1B\u0E16\u0E36\u0E07\u0E40\u0E25\u0E22\u0E25\u0E48\u0E30"
-    },
-    "sailwind-shadow": {
-      name: "\u0E40\u0E07\u0E32\u0E19\u0E32\u0E27\u0E32\u0E25\u0E48\u0E2D\u0E07\u0E25\u0E21",
-      description: '\u0E0A\u0E38\u0E14\u0E17\u0E35\u0E48 Kaeya \u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E15\u0E2D\u0E19\u0E02\u0E36\u0E49\u0E19\u0E41\u0E2A\u0E14\u0E07 "\u0E08\u0E2D\u0E21\u0E42\u0E08\u0E23\u0E14\u0E32\u0E1A\u0E2A\u0E31\u0E49\u0E19" \u0E1A\u0E19\u0E40\u0E27\u0E17\u0E35 \u0E0A\u0E38\u0E14\u0E2D\u0E31\u0E19\u0E41\u0E2A\u0E19\u0E15\u0E23\u0E30\u0E01\u0E32\u0E23\u0E15\u0E32\u0E19\u0E35\u0E49 \u0E16\u0E39\u0E01\u0E2D\u0E2D\u0E01\u0E41\u0E1A\u0E1A\u0E42\u0E14\u0E22\u0E43\u0E0A\u0E49\u0E2B\u0E25\u0E31\u0E01\u0E01\u0E32\u0E23\u0E27\u0E48\u0E32 "\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E36\u0E07\u0E14\u0E39\u0E14\u0E2A\u0E32\u0E22\u0E15\u0E32" \u0E41\u0E15\u0E48\u0E16\u0E36\u0E07\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E31\u0E49\u0E19 \u0E27\u0E34\u0E18\u0E35\u0E2A\u0E27\u0E21\u0E43\u0E2A\u0E48\u0E01\u0E47\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E22\u0E38\u0E48\u0E07\u0E22\u0E32\u0E01\u0E2D\u0E30\u0E44\u0E23\u0E19\u0E31\u0E01 \u0E2A\u0E48\u0E27\u0E19\u0E17\u0E35\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E2A\u0E35\u0E22\u0E40\u0E27\u0E25\u0E32\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E21\u0E32\u0E01\u0E2A\u0E38\u0E14 \u0E40\u0E2B\u0E47\u0E19\u0E04\u0E07\u0E08\u0E30\u0E21\u0E35\u0E41\u0E04\u0E48\u0E2A\u0E48\u0E27\u0E19\u0E02\u0E2D\u0E07\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E1B\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E01\u0E31\u0E1A\u0E14\u0E32\u0E1A\u0E2A\u0E31\u0E49\u0E19\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19'
-    }
-  }
-};
-const details = {
-  text: "\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",
-  promotional: "\u0E44\u0E2D\u0E40\u0E17\u0E21 UP",
-  itemlist: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E2D\u0E40\u0E17\u0E21",
-  increasedRate: '\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E15\u0E48\u0E2D\u0E44\u0E1B\u0E19\u0E35\u0E49\u0E04\u0E37\u0E2D "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A UP!!!"',
-  percentageDrop: "\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2A\u0E38\u0E48\u0E21\u0E44\u0E14\u0E49\u0E44\u0E2D\u0E40\u0E17\u0E21 {rarity} \u0E14\u0E32\u0E27\u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A:{percentage}",
-  wishDetails: "\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19",
-  probInfo: "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E2D\u0E2D\u0E01\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27:{singlePercentage} (\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35:{avgPercentage})",
-  itemWishFor: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19:",
-  itemType: "\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17",
-  itemName: "\u0E0A\u0E37\u0E48\u0E2D",
-  beginnerInfo: "\u0E40\u0E1B\u0E34\u0E14\u0E16\u0E32\u0E27\u0E23 (\u0E08\u0E30\u0E1B\u0E34\u0E14\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E1A 20 \u0E04\u0E23\u0E31\u0E49\u0E07)",
-  limited: "\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E08\u0E33\u0E01\u0E31\u0E14\u0E40\u0E27\u0E25\u0E32",
-  permanent: "\u0E40\u0E1B\u0E34\u0E14\u0E16\u0E32\u0E27\u0E23",
-  alert: "\u203B \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19{wishName}\u0E2D\u0E32\u0E27\u0E38\u0E18 \u0E08\u0E33\u0E19\u0E27\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E23\u0E32\u0E23\u0E16\u0E19\u0E32\u0E08\u0E30\u0E2A\u0E30\u0E2A\u0E21\u0E20\u0E32\u0E22\u0E43\u0E19\u0E40\u0E2B\u0E15\u0E38\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E19\u0E35\u0E49\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19\u0E41\u0E25\u0E30\u0E44\u0E21\u0E48\u0E02\u0E36\u0E49\u0E19\u0E01\u0E31\u0E1A\u0E08\u0E33\u0E19\u0E27\u0E19\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E23\u0E32\u0E23\u0E16\u0E19\u0E32\u0E2D\u0E37\u0E48\u0E19 \u0E46",
-  beginner: [
-    "<span>\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E19\u0E30\u0E19\u0E33</span> \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19 \u0E40\u0E1B\u0E47\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E16\u0E32\u0E27\u0E23 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E41\u0E19\u0E30\u0E19\u0E33\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E19\u0E31\u0E01\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E17\u0E35\u0E48\u0E40\u0E1E\u0E34\u0E48\u0E07\u0E21\u0E32\u0E16\u0E36\u0E07\u0E42\u0E25\u0E01\u0E41\u0E2B\u0E48\u0E07 Teyvat \u0E19\u0E31\u0E01\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18 <br /> \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E19\u0E35\u0E49 \u0E2B\u0E32\u0E01\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E2A\u0E34\u0E1A\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E34\u0E14\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E19\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A<span>\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14 20%</span>\u0E41\u0E25\u0E30\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E2A\u0E34\u0E1A\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01\u0E08\u0E30\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {character}!\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E34\u0E14\u0E40\u0E0B\u0E47\u0E15\u0E2A\u0E34\u0E1A\u0E04\u0E23\u0E31\u0E49\u0E07\u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19 \u0E08\u0E30\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23<span>\u0E2D\u0E37\u0E48\u0E19 \u0E46</span> \u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48\u0E23\u0E30\u0E14\u0E31\u0E1A 4 \u0E14\u0E32\u0E27\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B! \u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E43\u0E19\u0E40\u0E0B\u0E47\u0E15\u0E19\u0E35\u0E49\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 <span>20 \u0E04\u0E23\u0E31\u0E49\u0E07</span> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E1A 20 \u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E25\u0E49\u0E27 \u0E2B\u0E19\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49\u0E08\u0E30\u0E1B\u0E34\u0E14\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34",
-    "\u203B \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49",
-    "\u3013\u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u3013",
-    "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 <span> 0.600%</span> <br /> \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 <span> 5.100%</span>; \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) <span> 13.000%</span> \u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E21\u0E32\u0E01\u0E2A\u0E38\u0E14 <span>10 \u0E04\u0E23\u0E31\u0E49\u0E07</span> \u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48 4 \u0E14\u0E32\u0E27\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B"
-  ],
-  standard: [
-    '"{bannerName}" \u0E40\u0E1B\u0E47\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E16\u0E32\u0E27\u0E23 \u0E0B\u0E36\u0E48\u0E07\u0E19\u0E31\u0E01\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18.<br/> \u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E19\u0E35\u0E49 \u0E17\u0E38\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 10 \u0E04\u0E23\u0E31\u0E49\u0E07\u0E08\u0E30<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 1 \u0E2D\u0E31\u0E19 \u0E2B\u0E23\u0E37\u0E2D\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E19\u0E49\u0E2D\u0E22 1 \u0E15\u0E31\u0E27',
-    "\u203B \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49",
-    "\u3013 \u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u3013",
-    "\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.300%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.300%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>1.600%</span> \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>90</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 <br> \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>5.100%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>13.000%</span> \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>10</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>99.400%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span>"
-  ],
-  events: [
-    '\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E44\u0E14\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19\u0E41\u0E25\u0E49\u0E27 \u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27<span>\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14</span> {featuredCharacter} \u0E41\u0E25\u0E30\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 {rateupCharacters} \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E08\u0E30<span>\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19</span>! <br/> <span> \u203B \u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14\u0E14\u0E49\u0E32\u0E19\u0E1A\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E16\u0E32\u0E27\u0E23 "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E01\u0E32\u0E23\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07"</span>',
-    "\u203B \u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49",
-    "\u3013 \u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u3013",
-    "[\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27]",
-    '\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span> \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>1.600%</span> \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span> 90</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27<br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>50.000%</span> \u0E17\u0E35\u0E48\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 {featuredCharacter}\u0E2B\u0E32\u0E01\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49',
-    "[\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27]",
-    '\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19  "{bannerName}"\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span> 5.100%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>2.550%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span> 13.000%</span>\u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>10</span>\u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>99.400%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>0.600%</span>. <br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>50.000%</span> \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 {rateupCharacters}\u0E2B\u0E32\u0E01\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 UP \u0E08\u0E30\u0E21\u0E35\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14'
-  ],
-  weapons: [
-    '\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E44\u0E14\u0E49\u0E40\u0E23\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19\u0E41\u0E25\u0E49\u0E27 \u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E40\u0E27\u0E25\u0E32\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 <span>\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14</span> {featuredWeapon1}, {featuredWeapon2} \u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 <span>\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14</span> {rateupWeapons} \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E08\u0E30<span>\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E02\u0E36\u0E49\u0E19!</span> <br/> <span> \u203B\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E25\u0E34\u0E21\u0E34\u0E40\u0E15\u0E47\u0E14\u0E14\u0E49\u0E32\u0E19\u0E1A\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E1B\u0E23\u0E32\u0E01\u0E0F\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E16\u0E32\u0E27\u0E23 "\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E01\u0E32\u0E23\u0E40\u0E14\u0E34\u0E19\u0E17\u0E32\u0E07"</span>',
-    "\u203B\u0E42\u0E14\u0E22\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E01\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 \u0E40\u0E0A\u0E48\u0E19 \u0E01\u0E32\u0E23\u0E40\u0E01\u0E34\u0E14\u0E40\u0E23\u0E17 UP, \u0E01\u0E32\u0E23\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E15\u0E48\u0E32\u0E07 \u0E46 \u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E01\u0E0E\u0E01\u0E15\u0E34\u0E01\u0E32\u0E17\u0E35\u0E48\u0E23\u0E30\u0E1A\u0E38\u0E44\u0E27\u0E49",
-    "\u3013\u0E01\u0E15\u0E34\u0E01\u0E32\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u3013",
-    "[\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27]",
-    '\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E37\u0E2D <span>0.700%</span>\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>1.850%</span>; \u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>80</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27<br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>75.000%</span> \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 {featuredWeapon1}, {featuredWeapon2}\u0E2B\u0E32\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49<span>\u0E41\u0E19\u0E48\u0E19\u0E2D\u0E19</span> \u0E2B\u0E32\u0E01\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E16\u0E36\u0E07\u0E15\u0E32\u0E21\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27 \u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E41\u0E15\u0E48\u0E25\u0E30\u0E0A\u0E34\u0E49\u0E19\u0E08\u0E30\u0E21\u0E35\u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E19 <br/> \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}"\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 \u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49 "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E" \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E43\u0E19\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E44\u0E14\u0E49 \u0E42\u0E14\u0E22\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E08\u0E30\u0E21\u0E35\u0E1C\u0E25\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19 \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 <br/> \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}"\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49 "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E" \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23 \u0E2B\u0E32\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E21\u0E32\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32 1 \u0E41\u0E15\u0E49\u0E21 \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32 <span>\u0E40\u0E15\u0E47\u0E21</span>\u0E41\u0E25\u0E49\u0E27 \u0E2D\u0E32\u0E27\u0E38\u0E18\u0E23\u0E30\u0E14\u0E31\u0E1A 5 \u0E14\u0E32\u0E27\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B<span>\u0E08\u0E30\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E43\u0E19\u0E02\u0E13\u0E30\u0E19\u0E31\u0E49\u0E19 \u0E41\u0E25\u0E30\u0E2B\u0E32\u0E01\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E27\u0E49\u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E08\u0E30\u0E40\u0E15\u0E47\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E01\u0E47\u0E15\u0E32\u0E21 \u0E08\u0E30\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19 <span>0</span> \u0E41\u0E25\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2A\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E21\u0E48 <br/>\u0E2B\u0E32\u0E01\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E17\u0E33\u0E01\u0E32\u0E23\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E1C\u0E48\u0E32\u0E19 "\u0E27\u0E34\u0E16\u0E35\u0E41\u0E2B\u0E48\u0E07\u0E40\u0E17\u0E1E" \u0E08\u0E30<span>\u0E44\u0E21\u0E48\u0E21\u0E35</span>\u0E01\u0E32\u0E23\u0E2A\u0E30\u0E2A\u0E21\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32 <br/>\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E44\u0E14\u0E49 \u0E0B\u0E36\u0E48\u0E07\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E41\u0E25\u0E49\u0E27 \u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E17\u0E35\u0E48\u0E2A\u0E30\u0E2A\u0E21\u0E21\u0E32\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19 <span>0</span> \u0E41\u0E25\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2A\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E21\u0E48 <br/>\u203B\u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E08\u0E30\u0E21\u0E35\u0E1C\u0E25\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E43\u0E19 \u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E23\u0E2D\u0E1A\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19 \u0E2B\u0E25\u0E31\u0E07\u0E08\u0E32\u0E01\u0E17\u0E35\u0E48\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E2A\u0E34\u0E49\u0E19\u0E2A\u0E38\u0E14\u0E25\u0E07 \u0E04\u0E48\u0E32\u0E0A\u0E30\u0E15\u0E32\u0E17\u0E35\u0E48\u0E2A\u0E30\u0E2A\u0E21\u0E44\u0E27\u0E49\u0E08\u0E30\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E40\u0E1B\u0E47\u0E19 <span>0</span> \u0E41\u0E25\u0E30\u0E40\u0E23\u0E34\u0E48\u0E21\u0E2A\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E21\u0E48',
-    "[\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27]",
-    '\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 "{bannerName}" \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>6.000%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>3.000%</span>, \u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>3.000%</span>\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E42\u0E14\u0E22\u0E23\u0E27\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35) \u0E04\u0E37\u0E2D <span>14.500%</span>\u0E42\u0E14\u0E22\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E21\u0E48\u0E40\u0E01\u0E34\u0E19 <span>10</span> \u0E04\u0E23\u0E31\u0E49\u0E07 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B \u0E0B\u0E36\u0E48\u0E07\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E04\u0E37\u0E2D <span>99.300%</span>\u0E42\u0E2D\u0E01\u0E32\u0E2A\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 5 \u0E14\u0E32\u0E27\u0E04\u0E37\u0E2D <span>0.700%</span>. <br/> \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19 \u0E08\u0E30\u0E21\u0E35\u0E42\u0E2D\u0E01\u0E32\u0E2A <span>75.000%</span>\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E43\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP 4 \u0E14\u0E32\u0E27\u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49 {rateupWeapons} \u0E2B\u0E32\u0E01\u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E44\u0E2D\u0E40\u0E17\u0E21 4 \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E15\u0E48\u0E2D\u0E44\u0E1B <span>\u0E01\u0E32\u0E23\u0E31\u0E19\u0E15\u0E35</span>\u0E27\u0E48\u0E32\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E2D\u0E32\u0E27\u0E38\u0E18 UP 4 \u0E14\u0E32\u0E27 \u0E43\u0E19\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21\u0E19\u0E35\u0E49 \u0E41\u0E25\u0E30\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E44\u0E14\u0E49\u0E2D\u0E32\u0E27\u0E38\u0E18 UP 4 \u0E14\u0E32\u0E27\u0E41\u0E25\u0E49\u0E27 \u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E17\u0E35\u0E48\u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 UP \u0E23\u0E30\u0E14\u0E31\u0E1A 4 \u0E14\u0E32\u0E27\u0E41\u0E15\u0E48\u0E25\u0E30\u0E0A\u0E34\u0E49\u0E19\u0E08\u0E30\u0E21\u0E35\u0E04\u0E27\u0E32\u0E21\u0E19\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E19'
-  ],
-  convertion: {
-    fiveStar: "\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 5 \u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {starglitter} \u0E2D\u0E35\u0E01 10 \u0E2D\u0E31\u0E19;",
-    fourStar: "\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 4 \u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {starglitter} \u0E2D\u0E35\u0E01 2 \u0E2D\u0E31\u0E19;",
-    threeStar: "\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E2D\u0E32\u0E27\u0E38\u0E18 3 \u0E14\u0E32\u0E27 \u0E08\u0E30\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A {stardust} \u0E2D\u0E35\u0E01 15 \u0E2D\u0E31\u0E19;"
-  },
-  duplicate: {
-    heading: "\u3013 \u0E01\u0E32\u0E23\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E0B\u0E49\u0E33 \u3013",
-    text: "\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 {rarity} \u0E14\u0E32\u0E27 \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E41\u0E25\u0E49\u0E27 \u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E08\u0E30\u0E14\u0E49\u0E27\u0E22\u0E27\u0E34\u0E18\u0E35\u0E43\u0E14\u0E01\u0E47\u0E15\u0E32\u0E21 (\u0E23\u0E27\u0E21\u0E16\u0E36\u0E07\u0E41\u0E15\u0E48\u0E44\u0E21\u0E48\u0E08\u0E33\u0E01\u0E31\u0E14\u0E40\u0E1E\u0E35\u0E22\u0E07 \u0E01\u0E32\u0E23\u0E2D\u0E18\u0E34\u0E29\u0E10\u0E32\u0E19, \u0E01\u0E32\u0E23\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E08\u0E32\u0E01\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32, \u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E08\u0E32\u0E01\u0E40\u0E01\u0E21 \u0E2F\u0E25\u0E2F) \u0E40\u0E21\u0E37\u0E48\u0E2D\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23 5 \u0E14\u0E32\u0E27 \u0E0B\u0E49\u0E33\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48 2-7 \u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E1B\u0E47\u0E19{stellaFortuna}\u0E01\u0E25\u0E48\u0E32\u0E27 1 \u0E14\u0E27\u0E07 \u0E41\u0E25\u0E30 {starglitter} {constBonus} \u0E2D\u0E31\u0E19; \u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48 8 \u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E19\u0E44\u0E1B \u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E40\u0E1B\u0E47\u0E19 {starglitter} {fullConstBonus} \u0E2D\u0E31\u0E19"
-  }
-};
-const history = {
-  title: "\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34",
-  text: "\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34",
-  resetButton: "\u0E0A\u0E31\u0E14\u0E40\u0E08\u0E19",
-  resetPromptTitle: "\u0E25\u0E49\u0E32\u0E07\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01 ?",
-  resetPrompt: '\u0E19\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E19\u0E35\u0E49\u0E22\u0E31\u0E07\u0E25\u0E1A\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E41\u0E25\u0E30\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E35\u0E48\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E02\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E1A\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C "{bannerName}" \u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E0A\u0E48\u0E2D\u0E07\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E2D\u0E07\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 <br /> \u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E08\u0E30\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15 ?',
-  resetSuccess: "\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08 !",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17:",
-  disclaimer: "\u0E40\u0E23\u0E32\u0E44\u0E21\u0E48\u0E40\u0E04\u0E22\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E1A\u0E19\u0E17\u0E35\u0E48\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1A\u0E19\u0E04\u0E25\u0E32\u0E27\u0E14\u0E4C \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E16\u0E39\u0E01\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49\u0E43\u0E19 IndexedDB \u0E2B\u0E21\u0E32\u0E22\u0E04\u0E27\u0E32\u0E21\u0E27\u0E48\u0E32\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E16\u0E39\u0E01\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E44\u0E27\u0E49\u0E43\u0E19\u0E17\u0E35\u0E48\u0E08\u0E31\u0E14\u0E40\u0E01\u0E47\u0E1A\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E21\u0E31\u0E19\u0E08\u0E30\u0E44\u0E21\u0E48\u0E25\u0E1A\u0E08\u0E19\u0E01\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E08\u0E30\u0E25\u0E1A\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07\u0E1C\u0E48\u0E32\u0E19\u0E1B\u0E38\u0E48\u0E21\u0E25\u0E1A/\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E2B\u0E23\u0E37\u0E2D\u0E25\u0E49\u0E32\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1A\u0E23\u0E32\u0E27\u0E4C\u0E40\u0E0B\u0E2D\u0E23\u0E4C",
-  currentPity: "Current Pity :",
-  totalPull: "\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E01\u0E32\u0E0A\u0E32 :",
-  totalSpend: "\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E08\u0E48\u0E32\u0E22\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 :",
-  filterTxt: "\u0E01\u0E23\u0E2D\u0E07",
-  filter: "{rarity} \u0E14\u0E32\u0E27",
-  filterAll: "\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
-  pity: "Pity",
-  timeReceived: "\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A",
-  waiting: "\u0E17\u0E35\u0E48\u0E23\u0E2D",
-  noData: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25",
-  untracked: "Untracked",
-  item: "\u0E2A\u0E34\u0E48\u0E07\u0E02\u0E2D\u0E07",
-  win: "\u0E0A\u0E19\u0E30 50/50",
-  lose: "\u0E41\u0E1E\u0E49 50/50",
-  guaranteed: "\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19",
-  selected: "\u0E2D\u0E32\u0E27\u0E38\u0E18\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01",
-  olderLayout: "\u0E40\u0E04\u0E49\u0E32\u0E42\u0E04\u0E23\u0E07\u0E17\u0E35\u0E48\u0E40\u0E01\u0E48\u0E32\u0E01\u0E27\u0E48\u0E32",
-  switchv2: "Switch to V2"
-};
-const shop = {
-  text: "\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32",
-  paimonBargains: "\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32 Paimon",
-  fateNeeded: "\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 {rollQty} {currency} \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
-  primoNeeded: "\u0E0B\u0E37\u0E49\u0E2D\u0E14\u0E49\u0E27\u0E22 {primoPrice} Primogem?",
-  purchaseUpto: "\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 1",
-  purchaseConfirm: "\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E01\u0E32\u0E23\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D",
-  exchangeHeading: "\u0E44\u0E2D\u0E40\u0E17\u0E21\u0E17\u0E35\u0E48\u0E08\u0E30\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19",
-  purchaseHeading: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E08\u0E30\u0E0B\u0E37\u0E49\u0E2D",
-  purchaseButton: "\u0E0B\u0E37\u0E49\u0E2D",
-  pay: "\u0E08\u0E48\u0E32\u0E22",
-  product: "\u0E1C\u0E25\u0E34\u0E15\u0E20\u0E31\u0E13\u0E11\u0E4C",
-  consume: "\u0E1A\u0E23\u0E34\u0E42\u0E20\u0E04",
-  selectPayment: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19",
-  unrealWallet: "UnReal Wallet",
-  convertPrimo: "\u0E41\u0E1B\u0E25\u0E07\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E40\u0E1B\u0E47\u0E19\u0E1E\u0E23\u0E35\u0E42\u0E21\u0E40\u0E08\u0E21 ?",
-  proceedPayment: "\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19",
-  qty: "Qty",
-  insufficient: "\u0E40\u0E07\u0E34\u0E19\u0E17\u0E38\u0E19\u0E44\u0E21\u0E48\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E1E\u0E2D",
-  crystalTopup: "\u0E04\u0E23\u0E34\u0E2A\u0E15\u0E31\u0E25\u0E40\u0E15\u0E34\u0E21\u0E40\u0E07\u0E34\u0E19",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "\u0E0B\u0E37\u0E49\u0E2D\u0E04\u0E23\u0E34\u0E2A\u0E15\u0E31\u0E25",
-  recomendedHeading: "\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E41\u0E19\u0E30\u0E19\u0E33",
-  paimonHeading: "\u0E23\u0E49\u0E32\u0E19\u0E04\u0E49\u0E32 Paimon",
-  welkinNote: "\u0E0B\u0E37\u0E49\u0E2D\u0E44\u0E14\u0E49\u0E2B\u0E25\u0E32\u0E22\u0E04\u0E23\u0E31\u0E49\u0E07",
-  limitedOffer: "\u0E02\u0E49\u0E2D\u0E40\u0E2A\u0E19\u0E2D\u0E40\u0E27\u0E25\u0E32\u0E08\u0E33\u0E01\u0E31\u0E14",
-  noLimitTime: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23 \u0E08\u0E33\u0E01\u0E31\u0E14 \u0E40\u0E27\u0E25\u0E32\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "\u0E1E\u0E23\u0E41\u0E2B\u0E48\u0E07\u0E14\u0E27\u0E07\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C",
-    newOutfit: "\u0E0A\u0E38\u0E14\u0E15\u0E31\u0E27\u0E25\u0E30\u0E04\u0E23\u0E43\u0E2B\u0E21\u0E48",
-    dayRemaining: "\u0E27\u0E31\u0E19\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E25\u0E37\u0E2D: {days}",
-    alreadyClaimed: "\u0E19\u0E33\u0E44\u0E1B\u0E41\u0E25\u0E49\u0E27\u0E27\u0E31\u0E19\u0E19\u0E35\u0E49",
-    instantlyGet: "\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E17\u0E31\u0E19\u0E17\u0E35",
-    dailyGift: "\u0E02\u0E2D\u0E07\u0E02\u0E27\u0E31\u0E0D\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E27\u0E31\u0E19",
-    obtainTotal: "\u0E23\u0E31\u0E1A\u0E1C\u0E25\u0E36\u0E01\u0E23\u0E27\u0E21 {totalGenesis} Genesis Crystal \u0E41\u0E25\u0E30 {totalPrimo} primogems \u0E15\u0E25\u0E2D\u0E14 30 \u0E27\u0E31\u0E19",
-    claimingBlessing: "\u0E04\u0E25\u0E34\u0E01\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E23\u0E31\u0E1A\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E27\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E1E\u0E23\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C",
-    issuedPurchase: "\u0E2D\u0E2D\u0E01\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E0B\u0E37\u0E49\u0E2D",
-    collect: "\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E23\u0E32\u0E07\u0E27\u0E31\u0E25\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E2A\u0E39\u0E48\u0E23\u0E30\u0E1A\u0E1A\u0E23\u0E32\u0E22\u0E27\u0E31\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E27\u0E25\u0E32 30 \u0E27\u0E31\u0E19"
-  },
-  exchange: {
-    starglitter: "\u0E01\u0E32\u0E23\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19 Starglitter",
-    stardust: "\u0E01\u0E32\u0E23\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19 Stardust",
-    primogem: "\u0E41\u0E25\u0E01\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E01\u0E31\u0E1A Primogem"
-  },
-  item: {
-    genesis: "Genesis Crystal",
-    primogem: "Primogem",
-    intertwined: "Intertwined Fate",
-    acquaint: "Acquaint Fate",
-    starglitter: "Masterless Starglitter",
-    stardust: "Masterless Stardust"
-  },
-  description: {
-    intertwined: "\u0E40\u0E21\u0E25\u0E47\u0E14\u0E1E\u0E31\u0E19\u0E18\u0E38\u0E4C\u0E41\u0E2B\u0E48\u0E07\u0E42\u0E0A\u0E04\u0E0A\u0E30\u0E15\u0E32\u0E17\u0E35\u0E48\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E04\u0E27\u0E32\u0E21\u0E1D\u0E31\u0E19 \u0E04\u0E27\u0E32\u0E21\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E02\u0E2D\u0E07\u0E21\u0E31\u0E19\u0E04\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E42\u0E22\u0E07\u0E0A\u0E30\u0E15\u0E32\u0E01\u0E23\u0E23\u0E21\u0E41\u0E25\u0E30\u0E19\u0E33\u0E04\u0E27\u0E32\u0E21\u0E1D\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E1C\u0E39\u0E49\u0E04\u0E19\u0E21\u0E32\u0E23\u0E27\u0E21\u0E01\u0E31\u0E19 \u0E21\u0E31\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E07\u0E32\u0E17\u0E35\u0E48\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E14\u0E27\u0E07\u0E14\u0E32\u0E27\u0E40\u0E1B\u0E47\u0E19\u0E23\u0E39\u0E1B\u0E2B\u0E31\u0E27\u0E43\u0E08",
-    acquaint: "\u0E40\u0E21\u0E25\u0E47\u0E14\u0E41\u0E2B\u0E48\u0E07\u0E04\u0E27\u0E32\u0E21\u0E2B\u0E27\u0E31\u0E07\u0E17\u0E35\u0E48\u0E2A\u0E48\u0E2D\u0E07\u0E2A\u0E27\u0E48\u0E32\u0E07\u0E1A\u0E19 \u0E17\u0E49\u0E2D\u0E07\u0E1F\u0E49\u0E32 \u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E08\u0E30\u0E2D\u0E22\u0E39\u0E48\u0E2B\u0E48\u0E32\u0E07\u0E01\u0E31\u0E19\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E44\u0E2B\u0E19 \u0E41\u0E2A\u0E07\u0E02\u0E2D\u0E07\u0E2B\u0E34\u0E19\u0E41\u0E2B\u0E48\u0E07\u0E42\u0E0A\u0E04\u0E0A\u0E30\u0E15\u0E32\u0E19\u0E35\u0E49\u0E08\u0E30\u0E41\u0E2A\u0E14\u0E07 \u0E2B\u0E19\u0E17\u0E32\u0E07\u0E44\u0E1B\u0E2A\u0E39\u0E48\u0E1C\u0E39\u0E49\u0E04\u0E19\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E25\u0E34\u0E02\u0E34\u0E15\u0E43\u0E2B\u0E49\u0E1E\u0E1A\u0E01\u0E31\u0E19 \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E1E\u0E27\u0E01\u0E40\u0E02\u0E32\u0E08\u0E30\u0E44\u0E14\u0E49\u0E1E\u0E1A\u0E01\u0E31\u0E19\u0E43\u0E15\u0E49\u0E41\u0E2A\u0E07\u0E14\u0E32\u0E27"
-  }
-};
-const inventory = {
-  text: "\u0E0A\u0E48\u0E2D\u0E07\u0E40\u0E01\u0E47\u0E1A\u0E02\u0E2D\u0E07",
-  unsetOutfit: "\u0E04\u0E25\u0E32\u0E22",
-  setOutfit: "\u0E0A\u0E38\u0E14\u0E0A\u0E38\u0E14",
-  refinement: "Refinement {count}",
-  constellation: "Constellation {count}",
-  extra: "{count} Extra",
-  firstSummon: "\u0E40\u0E23\u0E35\u0E22\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E23\u0E01\u0E17\u0E35\u0E48: {date}",
-  notOwned: "\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07",
-  sort: "\u0E40\u0E23\u0E35\u0E22\u0E07\u0E25\u0E33\u0E14\u0E31\u0E1A",
-  rarity: "\u0E04\u0E27\u0E32\u0E21\u0E2B\u0E32\u0E22\u0E32\u0E01",
-  name: "\u0E0A\u0E37\u0E48\u0E2D",
-  quantity: "\u0E1B\u0E23\u0E34\u0E21\u0E32\u0E13",
-  element: "\u0E18\u0E32\u0E15\u0E38",
-  release: "\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E27\u0E32\u0E07\u0E08\u0E33\u0E2B\u0E19\u0E48\u0E32\u0E22",
-  type: "\u0E1E\u0E34\u0E21\u0E1E\u0E4C",
-  owned: "\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07",
-  showAllOption: "\u0E41\u0E2A\u0E14\u0E07\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 {item}"
-};
-const menu = {
-  no: "\u0E44\u0E21\u0E48",
-  yes: "\u0E43\u0E0A\u0E48",
-  text: "\u0E40\u0E21\u0E19\u0E39",
-  feedback: "Feedback",
-  options: "\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01",
-  updates: "\u0E2D\u0E31\u0E1B\u0E40\u0E14\u0E15\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "\u0E20\u0E32\u0E29\u0E32",
-  currency: "\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19",
-  fates: "\u0E08\u0E33\u0E19\u0E27\u0E19\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E23\u0E32\u0E23\u0E16\u0E19\u0E32",
-  unlimited: "\u0E44\u0E21\u0E48 \u0E08\u0E33\u0E01\u0E31\u0E14",
-  manual: "\u0E01\u0E32\u0E23\u0E1B\u0E49\u0E2D\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E14\u0E49\u0E27\u0E22\u0E15\u0E19\u0E40\u0E2D\u0E07",
-  mute: "\u0E40\u0E2A\u0E35\u0E22\u0E07\u0E1B\u0E34\u0E14\u0E40\u0E2A\u0E35\u0E22\u0E07\u0E41\u0E25\u0E30\u0E40\u0E2D\u0E1F\u0E40\u0E1F\u0E01\u0E15\u0E4C\u0E40\u0E2A\u0E35\u0E22\u0E07",
-  switchBanner: "\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1A\u0E19\u0E40\u0E19\u0E2D\u0E23\u0E4C",
-  showAllitems: "\u0E41\u0E2A\u0E14\u0E07\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E43\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E04\u0E07\u0E04\u0E25\u0E31\u0E07",
-  autoskip: "\u0E02\u0E49\u0E32\u0E21\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34 Splash Art",
-  animatedbg: "\u0E1E\u0E37\u0E49\u0E19\u0E2B\u0E25\u0E31\u0E07\u0E40\u0E04\u0E25\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E2B\u0E27",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "\u0E25\u0E49\u0E32\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E25\u0E30\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19",
-  resetTitle: "\u0E40\u0E04\u0E25\u0E35\u0E22\u0E23\u0E4C\u0E17\u0E38\u0E01\u0E2D\u0E22\u0E48\u0E32\u0E07",
-  rotate: "\u0E2B\u0E21\u0E38\u0E19\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E14\u0E35\u0E02\u0E36\u0E49\u0E19",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Clear Caches ( {size} ) ? <small>You will redownload the assets after this action!</small>",
-  resetButton: "\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E15\u0E2D\u0E19\u0E19\u0E35\u0E49",
-  resetPrompt: "\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48\u0E27\u0E48\u0E32 <strong> \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14 </strong> \u0E41\u0E25\u0E30\u0E01\u0E39\u0E49\u0E04\u0E37\u0E19\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19?",
-  resetSuccess: "\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Get a new one Here!",
-  noKey: "Don't have a key?",
-  verifyFail: "Failed to verifying AdKey, Check your Connection",
-  invalidKey: "Your key is invalid",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Enter Key",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."
-};
-const thTH = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  thTH as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/vi-VN.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/vi-VN.js
deleted file mode 100644
index 1a74bd4c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/vi-VN.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "Gi\u1EA3 L\u1EADp C\u1EA7u Nguy\u1EC7n Genshin Impact";
-const character = "Nh\xE2n V\u1EADt";
-const weapon = "V\u0169 Kh\xED";
-const vision = "Vision";
-const anemo = "Phong";
-const cryo = "B\u0103ng";
-const dendro = "Th\u1EA3o";
-const electro = "L\xF4i";
-const hydro = "Thu\u1EF7";
-const geo = "Nham";
-const pyro = "Ho\u1EA3";
-const bow = "Cung";
-const catalyst = "Ph\xE1p Kh\xED";
-const claymore = "Tr\u1ECDng Ki\u1EBFm";
-const sword = "Ki\u1EBFm";
-const polearm = "V\u0169 Kh\xED C\xE1n D\xE0i";
-const extra = "Nh\u1EADn Th\xEAm";
-const obtained = "Nh\u1EADn \u0110\u01B0\u1EE3c";
-const waiting = "\u0110ang Ch\u1EDD";
-const connectionFailed = "Connection Failed!";
-const confirmButton = "X\xE1c Nh\u1EADn";
-const cancelButton = "Hu\u1EF7";
-const disclaimer = "T\u1EA5t c\u1EA3 \u0111\u1ED3 d\xF9ng \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng trong trang n\xE0y \u0111\u1EC1u thu\u1ED9c s\u1EDF h\u1EEFu c\u1EE7a Mihoyo";
-const fanmade = "\u0110\xE2y ho\xE0n to\xE0n l\xE0 s\u1EA3n ph\u1EA9m Fan l\xE0m ra, h\xE3y t\u1EADn h\u01B0\u1EDFng n\xF3!";
-const pressToContinue = "B\u1EA5m v\xE0o kho\u1EA3ng tr\u1ED1ng \u0111\u1EC3 ti\u1EBFp t\u1EE5c";
-const installInstruction = "Instructions to Install to Home Screen/Desktop";
-const share = "Chia S\u1EBB";
-const screenshot = "Ch\u1EE5p \u1EA3nh";
-const capturing = "\u0110ang Ch\u1EE5p";
-const rewardFirstShare = "Ph\u1EA7n th\u01B0\u1EDFng cho l\u01B0\u1EE3t chia s\u1EBB \u0111\u1EA7u ti\xEAn : {qty}";
-const version = "Phi\xEAn B\u1EA3n";
-const donate = "\u1EE6ng H\u1ED9";
-const banner = {
-  beginner: "C\u1EA7u Nguy\u1EC7n D\xE0nh Cho Nh\xE0 L\u1EEF H\xE0nh M\u1EDBi",
-  wanderlust: "Du H\xE0nh Th\u1EBF Gian",
-  "epitome-invocation": "Th\xE2n h\xECnh Th\u1EA7n \u0110\xFAc",
-  "adrift-in-the-harbor": "H\u1ED9i Ng\u1ED9 N\u01A1i Tr\u1EA7n Th\u1EBF",
-  "auric-blaze": "N\u1EAFng V\xE0ng R\u1EF1c R\u1EE1",
-  "azure-excursion": "D\u1EA1o B\u01B0\u1EDBc B\xEAn Hoa",
-  "ballad-in-goblets": "B\xE0i Th\u01A1 C\u1ED1c Th\xE1nh",
-  "born-of-ocean-swell": "Kho\u1EA3nh Kh\u1EAFc D\u1EADy S\xF3ng",
-  "caution-in-confidence": "Ch\xECa Kh\xF3a S\u1EAFc L\u1EC7nh",
-  "chanson-of-many-waters": "Mu\xF4n N\u01B0\u1EDBc Ca T\u1EE5ng",
-  "conjuring-chiaroscuro": "Conjuring Chiaroscuro",
-  "dance-of-lantern": "\xC1nh \u0110\xE8n Ng\u01B0 Long",
-  "decree-of-the-deeps": "Decree of the Deeps",
-  "discerner-of-enigmas": "T\u1ED1 Ngh\xEA Hi\u1EC7n Thi\xEAn",
-  "drifting-luminescence": "H\u1ED3ng Ch\xE2u Tr\xF4i N\u1ED5i",
-  "everbloom-violet": "S\u1EAFc T\xEDm Hoa \u0110\xE0o",
-  "farewell-of-snezhnaya": "T\u1EA1m Bi\u1EC7t Th\u1EE7 \u0110\xF4 B\u0103ng",
-  "from-ashes-reborn": "Tro T\xE0n T\xE1i Sinh",
-  "gentry-of-hermitage": "\u0110\u1ED3ng C\u1ECF Th\u1ECB Th\xE0nh",
-  "immaculate-pulse": "T\xE2m S\xE1ng T\u1EF1a Ng\u1ECDc",
-  "in-the-name-of-the-rosula": "Nh\xE2n Danh Rosula",
-  "invitation-to-mundane-life": "L\u1EDDi M\u1EDDi Ph\xE1o Hoa",
-  "leaves-in-the-wind": "L\xE1 R\u1EE5ng Theo Gi\xF3",
-  "moment-of-bloom": "X\xEDch \u0110o\xE0n Khai M\u1EDF",
-  "oni_s-royale": "Qu\u1EF7 M\xF4n \u0110\u1EA5u Y\u1EBFn",
-  "reign-of-serenity": "C\xF4 \u0110\u1ED9c Gi\u1EEFa Nh\xE2n Gian",
-  "secretum-secretorum": "H\u01A1i Th\u1EDF Th\u1EA7n B\xED",
-  "sparkling-steps": "D\u1EA5u Ch\xE2n C\u1EE7a L\u1EEDa",
-  "tapestry-of-golden-flames": "Thi\xEAn H\xE0 R\u1EF1c L\u1EEDa",
-  "tempestuous-destiny": "S\xF3ng Gi\xF3 V\u1EADn M\u1EC7nh",
-  "the-heron_s-court": "B\u1EA1ch H\u1EA1c \u0110\xECnh",
-  "the-moongrass-enlightenment": "Gi\xE1c Ng\u1ED9 Nguy\u1EC7t Th\u1EA3o",
-  "the-transcendent-one-returns": "Xu\u1EA5t Tr\u1EA7n Nh\u1EADp Th\u1EBF",
-  "twilight-arbiter": "T\xE0 D\u01B0\u01A1ng Ph\xE1n Quy\u1EBFt",
-  "twirling-lotus": "C\xE1nh Sen \u0110ung \u0110\u01B0a",
-  "viridescent-vigil": "Th\u1EE7 H\u1ED9 S\u1EAFc Xanh"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  wishTitle: "C\u1EA7u Nguy\u1EC7n",
-  rollButton: "C\u1EA7u Nguy\u1EC7n {count}",
-  stellaFortuna: "Tinh Tr\u1EA7n V\xF4 Ch\u1EE7",
-  loadFailed: "Kh\xF4ng t\u1EA3i \u0111\u01B0\u1EE3c Bi\u1EC3u ng\u1EEF! <br />Vui l\xF2ng chuy\u1EC3n sang banner kh\xE1c ho\u1EB7c k\u1EBFt n\u1ED1i l\u1EA1i internet \u0111\u1EC3 tr\xE1nh sai s\xF3t!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    text: "Banner",
-    allBanner: "T\u1EA5t c\u1EA3 Banner",
-    previous: "Banner Tr\u01B0\u1EDBc",
-    findBanner: "T\xECm m\u1ED9t Banner",
-    group: "Nh\xF3m",
-    beginner: "C\u1EA7u\u2008Nguy\u1EC7n\u2008D\xE0nh\u2008Cho Nh\xE0 L\u1EEF H\xE0nh M\u1EDBi",
-    "character-event": "S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n Nh\xE2n V\u1EADt",
-    "weapon-event": "C\u1EA7u Nguy\u1EC7n V\u0169 Kh\xED",
-    standard: "C\u1EA7u Nguy\u1EC7n Th\u01B0\u1EDDng",
-    wishDescription: "M\u1ED7i khi c\u1EA7u nguy\u1EC7n 10 l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn t\u1ED1i thi\u1EC3u 1 v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn.",
-    novice: "C\u1EA7u Nguy\u1EC7n Cho Ng\u01B0\u1EDDi M\u1EDBi",
-    up: "UP!",
-    beginnerSet: "Gi\u1EA3m 20% cho 10 l\u1EA7n li\xEAn t\u1EE5c, l\u1EA7n \u0111\u1EA7u ch\u1EAFc ch\u1EAFn nh\u1EADn {character}.",
-    beginnerNote: '"T\xF4i s\u1EBD ch\xFA \xFD \u0111\u1EBFn nghi th\u1EE9c c\u1EE7a h\u1EA7u g\xE1i"',
-    beginnerChance: "S\u1ED1 l\u1EA7n c\xF2n l\u1EA1i: {chances}",
-    standardNote: "C\u1EA7u nguy\u1EC7n th\u01B0\u1EDDng l\xE0 s\u1EF1 ki\u1EC7n v\u0129nh vi\u1EC5n.",
-    allWeaponTypes: "T\u1EA5t c\u1EA3 v\u0169 kh\xED",
-    etc: "v.v.",
-    probIncreased: "T\u1EC9 L\u1EC7 C\u1EA7u Nguy\u1EC7n T\u0103ng!",
-    eventNote: "Ch\u1EC9 c\xF3 th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c c\xE1c nh\xE2n v\u1EADt 5 sao d\xE0nh ri\xEAng cho s\u1EF1 ki\u1EC7n c\u1EA7u nguy\u1EC7n \u0111\xE3 \u0111\u01B0\u1EE3c ch\u1EC9 \u0111\u1ECBnh trong kho\u1EA3ng th\u1EDDi gian c\u1EE5 th\u1EC3.",
-    viewDetails: "Xem chi ti\u1EBFt \u0111\u1EC3 bi\u1EBFt th\xEAm."
-  },
-  epitomizedPath: {
-    text: "\u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc",
-    fatePoint: "\u0110i\u1EC3m V\u1EADn M\u1EC7nh",
-    cancelPrompt: "B\u1EA1n c\xF3 mu\u1ED1n hu\u1EF7 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED n\xE0y kh\xF4ng?",
-    cancelDesc: "Hu\u1EF7 b\u1ECF s\u1EBD \u0111\u1EB7t l\u1EA1i \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u1EE7a b\u1EA1n",
-    selectWeapon: "Ch\u1ECDn V\u0169 Kh\xED",
-    chartCourseOf: "\u0110\u1ECBnh Chu\u1EA9n Cho {target}",
-    cancelCourse: "Hu\u1EF7 \u0110\u1ECBnh Chu\u1EA9n",
-    chartCourse: "\u0110\u1ECBnh Chu\u1EA9n",
-    courseSetFor: "\u0110ang \u0110\u1ECBnh Chu\u1EA9n: {selectedCourse}",
-    description: [
-      '"\u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc l\xE0 c\u01A1 ch\u1EBF c\u1EA7u nguy\u1EC7n \u1EDF Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc k\xEC n\xE0y',
-      "Sau khi \u0111\u1ECBnh chu\u1EA9n cho v\u0169 kh\xED UP 5 sao mong mu\u1ED1n, khi c\u1EA7u nguy\u1EC7n Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED 5 Sao kh\xF4ng ph\u1EA3i nh\u01B0 \u0111\xE3 \u0111\u1ECBnh chu\u1EA9n, s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c <span> 1 </span> \u0111i\u1EC3m v\u1EADn m\u1EC7nh.",
-      "Sau khi \u0111i\u1EC3m v\u1EADn m\u1EC7nh \u0111\u1EA7y, v\u0169 kh\xED 5 sao ti\u1EBFp theo nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y ch\u1EAFc ch\u1EAFn l\xE0 v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\u1EE7a l\u1EA7n n\xE0y.",
-      "Khi nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n l\u1EA7n n\xE0y, d\xF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u1EE7a l\u1EA7n \u0111\xF3 \u0111\xE3 \u0111\u1EA7y hay ch\u01B0a c\u0169ng s\u1EBD thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span> 0 </span>.",
-      "Khi ch\u01B0a s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc \u0111\u1EC3 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED, s\u1EBD kh\xF4ng t\xEDch lu\u1EF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh.",
-      "V\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\xF3 th\u1EC3 thay \u0111\u1ED5i, ho\u1EB7c hu\u1EF7 b\u1ECF. Khi thay \u0111\u1ED5i ho\u1EB7c hu\u1EF7 b\u1ECF v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n hi\u1EC7n t\u1EA1i, \u0111i\u1EC3m v\u1EADn m\u1EC7nh s\u1EBD \u0111\u01B0\u1EE3c thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span> 0 </span>.",
-      "Khi Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc k\u1EF3 n\xE0y k\u1EBFt th\xFAc, \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u0169ng s\u1EBD b\u1ECB xo\xE1 s\u1EA1ch."
-    ]
-  },
-  result: {
-    skip: "B\u1ECF Qua",
-    meteorFailed: "Ho\u1EA1t \u1EA3nh sao b\u0103ng t\u1EA3i th\u1EA5t b\u1EA1i",
-    "new": "M\u1EDBi",
-    convertion: "Chuy\u1EC3n D\u1ED5i",
-    title: "K\u1EBFt qu\u1EA3 c\u1EA7u nguy\u1EC7n cho {item}"
-  }
-};
-const outfit = {
-  heading: "Trang Ph\u1EE5c Nh\xE2n V\u1EADt",
-  "default": "V\u1EE1 n\u1EE3",
-  setOutfit: "\u0110\u1EB7t Trang Ph\u1EE5c",
-  owned: "\u0110\xE3 S\u1EDF H\u1EEFu",
-  purchasePrompt: "B\u1EA1n kh\xF4ng c\xF3 nh\xE2n v\u1EADt ph\xF9 h\u1EE3p v\u1EDBi trang ph\u1EE5c n\xE0y, b\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n mua trang ph\u1EE5c n\xE0y kh\xF4ng?",
-  promptInfo: "B\u1EA1n c\xF3 th\u1EC3 s\u1EED d\u1EE5ng trang ph\u1EE5c n\xE0y sau khi nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt ph\xF9 h\u1EE3p",
-  obtained: "Trang ph\u1EE5c m\u1EDBi thu \u0111\u01B0\u1EE3c",
-  unlocked: "{character}: M\u1EDF kh\xF3a trang ph\u1EE5c",
-  item: {
-    "5-star-outrider": {
-      name: '"K\u1EF5 S\u0129 Trinh Th\xE1m \u0110i\u1EC3m Tuy\u1EC7t \u0110\u1ED1i"'
-    },
-    "favonian-fevotion": {
-      name: "V\xF2ng Che Ch\u1EDF C\u1EE7a Gi\xF3"
-    },
-    "flowing-fate": {
-      name: "Ng\xF4i Sao L\u01B0u Chuy\u1EC3n"
-    },
-    "executor_s-thorns": {
-      name: "Gai G\xF3c K\u1EBFt \xC1n"
-    },
-    "sea-breeze-dandelion": {
-      name: "Gi\u1EA5c M\u1ED9ng Gi\xF3 Bi\u1EC3n",
-      description: "Trang ph\u1EE5c m\xF9a h\xE8 c\u1EE7a Jean. M\xE1t m\u1EBB nh\u01B0ng v\u1EABn tao nh\xE3, r\u1EA5t th\xEDch h\u1EE3p cho du l\u1ECBch b\xE3i bi\u1EC3n."
-    },
-    "summertime-sparkle": {
-      name: "M\xF9a H\xE8 R\u1EF1c R\u1EE1",
-      description: "Phong c\xE1ch b\xE3i bi\u1EC3n c\u1EE7a Barbara. V\xE1y ng\u1EAFn tr\xE0n \u0111\u1EA7y s\u1EE9c s\u1ED1ng, d\u01B0\u1EDDng nh\u01B0 to\xE1t ra h\u01A1i th\u1EDF t\u01B0\u01A1i m\xE1t c\u1EE7a \u0111\u1EA1i d\u01B0\u01A1ng."
-    },
-    "opulent-splendor": {
-      name: "V\u0169 \u0110i\u1EC7u Ngh\xEA Th\u01B0\u1EDDng",
-      description: "Trang ph\u1EE5c ch\xEDnh th\u1EE9c c\u1EE7a Keqing. Gi\u1EEFa bu\u1ED5i b\xECnh minh tuy\u1EC7t \u0111\u1EB9p c\u1EE7a L\u1EC5 h\u1ED9i \u0111\xE8n l\u1ED3ng, nh\u1EEFng s\u1EE3i ch\u1EC9 d\u1EC7t n\xEAn b\u1EDFi nh\u1EEFng ng\xE0y l\xE0m vi\u1EC7c ch\u0103m ch\u1EC9 \u0111an xen v\xE0o nhau th\xE0nh m\u1ED9t v\u1EBB ngo\xE0i nh\u1EB9 nh\xE0ng nh\u01B0ng l\u1ED9ng l\u1EABy."
-    },
-    "orchid_s-evening-gown": {
-      name: "U Lan Tinh Di\u1EC7u",
-      description: "L\u1EC5 ph\u1EE5c c\u1EE7a Ningguang. B\u1ED9 v\xE1y d\xE0i m\xE0u xanh lam t\xF4n l\xEAn \u0111\u01B0\u1EDDng n\xE9t xinh \u0111\u1EB9p trang nh\xE3, c\xE1nh b\u01B0\u1EDBm \u1EDF ph\u1EA7n ch\xE2n c\xE0ng l\xE0m t\u0103ng ph\u1EA7n thanh tho\xE1t."
-    },
-    "ein-immernachtstraum": {
-      name: "Gi\u1EA5c M\u1ED9ng \u0110\xEAm Khuya",
-      description: "Trang ph\u1EE5c nghi l\u1EC5 c\u1EE7a c\xF4ng ch\xFAa Fischl. Nguy\u1EC7n cho ng\u01B0\u1EDDi cao qu\xFD lu\xF4n gi\u1EEF v\u1EEFng can \u0111\u1EA3m, s\u1EF1 ch\xE2n th\xE0nh v\xE0 b\u1EA3n t\xEDnh l\u01B0\u01A1ng thi\u1EC7n. C\xF3 nh\u01B0 th\u1EBF th\xEC t\xE0 \xE1c m\u1EDBi kh\xF4ng th\u1EC3 n\xE0o qu\xE2t ng\xE3 c\xF4 \u1EA5y."
-    },
-    "red-dead-of-night": {
-      name: "M\xE0n \u0110\xEAm \u0110\u1ECF Th\u1EABm",
-      description: "M\u1ED9t trong nh\u1EEFng b\u1ED9 trang ph\u1EE5c m\xE0 Diluc \u0111\xE3 m\u1EB7c khi b\xED m\u1EADt h\xE0nh \u0111\u1ED9ng, tr\xF4ng nh\u01B0 ng\u1ECDn l\u1EEDa ch\xE1y trong b\xF3ng t\u1ED1i. D\u1EA5u v\u1EBFt \u0111\u1ECF th\u1EABm l\u01B0u lai trong t\u1EA7m m\u1EAFt c\u1EE7a k\u1EBB \u0111\u1ECBch, c\u0169ng ch\xEDnh l\xE0 con \xE1c m\u1ED9ng m\xE0 ch\xFAng kh\xF4ng th\u1EC3 qu\xEAn \u0111\u01B0\u1EE3c trong su\u1ED1t ph\u1EA7n \u0111\u1EDDi c\xF2n l\u1EA1i."
-    },
-    "a-sobriquet-under-shade": {
-      name: "Danh Vang Trong L\xE1",
-      description: "Trang ph\u1EE5c Lisa \u0111\xE3 \u0111\u1EB7t l\xE0m khi \u0111\u1EBFn th\u0103m Sumeru. V\xE1y g\u1ECDn g\xE0ng nh\u01B0ng kh\xF4ng k\xE9m ph\u1EA7n trang nh\xE3, c\xF3 ph\u1EA7n gi\u1ED1ng v\u1EDBi \u0111\u1ED3ng ph\u1EE5c th\u1EDDi h\u1ECDc sinh c\u1EE7a c\xF4."
-    },
-    "springbloom-missive": {
-      name: "Th\u01B0 T\u1EEB Hoa Xu\xE2n",
-      description: "Trang ph\u1EE5c \u0111i ch\u01A1i c\u1EE7a Kamisato Ayaka. B\u1ED9 v\xE1y \u0111\u01B0\u1EE3c may d\u1EF1a theo ki\u1EC3u d\xE1ng trang ph\u1EE5c n\u1EEF gi\u1EDBi Fontaine trong ti\u1EC3u thuy\u1EBFt, d\u01B0\u1EDDng nh\u01B0 c\xF3 th\u1EC3 th\xF4ng qua \u0111\xF3 \u0111\u1EC3 nh\xECn th\u1EA5y \u0111\u01B0\u1EE3c di\u1EC7n m\u1EA1o cu\u1ED9c s\u1ED1ng c\u1EE7a c\xE1c c\xF4 g\xE1i Fontaine."
-    },
-    "blossoming-starlight": {
-      name: "Hoa L\u1EEDa R\u1EF1c R\u1EE1",
-      description: "B\u1ED9 trang ph\u1EE5c xinh x\u1EAFn m\xE0 Klee \u0111\xE3 m\u1EB7c khi tham gia di\u1EC5n xu\u1EA5t trong v\u1EDF k\u1ECBch quan tr\u1ECDng. M\xE0u s\u1EAFc s\u1EB7c s\u1EE1, gi\u1ED1ng nh\u01B0 m\u1ED9t chi\u1EBFc b\xE1nh kem \u0111\u01B0\u1EE3c t\xF4 \u0111i\u1EC3m b\u1EB1ng nh\u1EEFng b\xF4ng hoa b\u1EB1ng kem c\xF9ng v\u1EDBi n\u1EBFn m\xE0u \u0111\u1ECF r\u1EF1c, c\xF3 th\u1EC3 \u0111em \u0111\u1EBFn ni\u1EC1m vui v\xE0 n\u1EE5 c\u01B0\u1EDDi tr\xEAn m\u1ECDi n\u1EBBo \u0111\u01B0\u1EDDng m\u1EA1o hi\u1EC3m."
-    },
-    "sailwind-shadow": {
-      name: "C\xE1nh Bu\u1ED3m L\u01B0\u1EDBt Gi\xF3",
-      description: 'Trang ph\u1EE5c Kaeya \u0111\xE3 m\u1EB7c khi di\u1EC5n v\u1EDF "\u0110\u1EA1o Ch\xEDch Dao G\u0103m", l\xE0 b\u1ED9 trang ph\u1EE5c l\u1ED9ng l\u1EABy \u0111\u01B0\u1EE3c thi\u1EBFt k\u1EBF v\u1EDBi nguy\xEAn t\u1EAFc "thu h\xFAt \xE1nh nh\xECn". Vi\u1EC7c m\u1EB7c trang ph\u1EE5c kh\xF4ng phi\u1EC1n ph\u1EE9c l\u1EAFm, ch\u1EC9 m\u1EA5t th\u1EDDi gian \u1EDF ch\u1ED7 g\u1EAFn trang s\u1EE9c v\xE0 dao g\u0103m.'
-    }
-  }
-};
-const details = {
-  text: "Th\xF4ng Tin Chi Ti\u1EBFt",
-  promotional: "\u0110\u1ED3 Khuy\u1EBFn M\xE3i",
-  itemlist: "Danh S\xE1ch C\xE1c \u0110\u1ED3",
-  increasedRate: "T\u1EC9 L\u1EC7 Nh\u1EADn T\u0103ng",
-  percentageDrop: "T\u1EC9 l\u1EC7 v\u1EADt ph\u1EA9m {rarity} Sao nh\u1EADn \u0111\u01B0\u1EE3c: {percentage}",
-  wishDetails: "Th\xF4ng Tin C\u1EA7u Nguy\u1EC7n",
-  probInfo: "T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n ra v\u1EADt ph\u1EA9m {rarity} sao: {singlePercentage} (B\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u: {avgPercentage})",
-  itemWishFor: "V\u1EADt Ph\u1EA9m C\u1EA7u Nguy\u1EC7n :",
-  itemType: "Lo\u1EA1i",
-  itemName: "T\xEAn",
-  beginnerInfo: "V\u0129nh Vi\u1EC5n (\u0110\xF3ng sau 20 l\u1EA7n C\u1EA7u Nguy\u1EC7n)",
-  limited: "S\u1EF1 ki\u1EC7n h\u1EA1n gi\u1EDD",
-  permanent: "V\u0129nh Vi\u1EC5n",
-  alert: "\u203B \u0110\xE2y l\xE0 m\u1ED9t {wishName}. Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v... v\xE0 \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.",
-  beginner: [
-    "<span> C\u1EA7u nguy\u1EC7n </span> \u0111\u1EC1 xu\u1EA5t cho ng\u01B0\u1EDDi m\u1EDBi l\xE0 s\u1EF1 ki\u1EC7n c\u1EA7u nguy\u1EC7n v\u0129nh vi\u1EC5n d\xE0nh cho c\xE1c Nh\xE0 L\u1EEF H\xE0nh m\u1EDBi tham gia v\xE0o h\xE0nh tr\xECnh kh\xE1m ph\xE1 \u0111\u1EA1i l\u1EE5c Teyvat. Nh\xE0 L\u1EEF H\xE0nh c\xF3 th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c nhi\u1EC1u Nh\xE2n V\u1EADt v\xE0 V\u0169 Kh\xED kh\xF4ng gi\u1EDBi h\u1EA1n. <br /> Trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y, M\u1ED1i Duy\xEAn T\u01B0\u01A1ng Ng\u1ED9 s\u1EED d\u1EE5ng trong C\u1EA7u Nguy\u1EC7n 10 l\u1EA7n li\xEAn ti\u1EBFp s\u1EBD \u0111\u01B0\u1EE3c gi\u1EA3m <span> 20%</span> \u0111\u1ED3ng th\u1EDDi 10 l\u1EA7n li\xEAn ti\u1EBFp \u0111\u1EA7u ti\xEAn <span> ch\u1EAFc ch\u1EAFn nh\u1EADn \u0111\u01B0\u1EE3c </span> {character} ,  10 l\u1EA7n li\xEAn t\u1EE5c ti\u1EBFp theo ch\u1EAFc ch\u1EAFn nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt <span> kh\xE1c </span> t\u1EEB 4 sao tr\u1EDF l\xEAn! <br/> C\u1EA7u nguy\u1EC7n n\xE0y gi\u1EDBi h\u1EA1n <span> 20 </span> l\u1EA7n, sau khi r\xFAt 20 l\u1EA7n giao di\u1EC7n C\u1EA7u Nguy\u1EC7n n\xE0y s\u1EBD \u0111\xF3ng l\u1EA1i.",
-    "Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v. \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.",
-    "\u3013Quy T\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013",
-    "T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 5 sao l\xE0 <span> 0,600%</span> <br /> T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span> 5,100%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span> 13,000%</span>;"
-  ],
-  standard: [
-    'C\u1EA7u nguy\u1EC7n th\u01B0\u1EDDng "{bannerName}" l\xE0 s\u1EF1 ki\u1EC7n v\u0129nh vi\u1EC5n, Nh\xE0 L\u1EEF H\xE0nh c\xF3 th\u1EC3 nh\u1EADn \u0111\u01B0\u1EE3c Nh\xE2n V\u1EADt v\xE0 V\u0169 Kh\xED kh\xF4ng gi\u1EDBi h\u1EA1n. <br/> Trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y, m\u1ED7i khi c\u1EA7u nguy\u1EC7n 10 l\u1EA7n <span>ch\u1EAFc ch\u1EAFn s\u1EBD </span> nh\u1EADn t\u1ED1i thi\u1EC3u 1 v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn.',
-    "\u203BTh\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v. \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.",
-    "\u3013Quy t\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013",
-    "T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 5 sao l\xE0 <span>0,600%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 5 sao l\xE0 <span>0,300%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 5 sao l\xE0 <span>0,300%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 5 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>1,600%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>90</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m 5 sao. <br> T\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 4 sao l\xE0 <span>5,100%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span>2,550%</span>,  t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 4 sao l\xE0 <span>2,550%</span,  t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 4 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>13,000%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>10</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn, trong \u0111\xF3 v\u1EADt ph\u1EA9m nh\u1EADn \u0111\u01B0\u1EE3c qua m\u1EE9c b\u1EA3o \u0111\u1EA3m ch\u1EAFc ch\u1EAFn n\xE0y l\xE0 <span>99,400%</span>\u0111\u1ED1i v\u1EDBi 4 sao v\xE0 <span>0,600%</span> \u0111\u1ED1i v\u1EDBi 5 sao. "
-  ],
-  events: [
-    'S\u1EF1 ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} \u0111\xE3 m\u1EDF. Trong th\u1EDDi gian s\u1EF1 ki\u1EC7n, t\u1EF7 l\u1EC7 c\u1EA7u nguy\u1EC7n nh\u1EADn nh\xE2n v\u1EADt 5 sao {featuredCharacter} v\xE0 nh\xE2n v\u1EADt 4 sao {rateupCharacters} s\u1EBD <span> t\u0103ng m\u1EA1nh</span>! <br/> <span> \u203B Trong c\xE1c nh\xE2n v\u1EADt \u1EDF tr\xEAn, nh\xE2n v\u1EADt gi\u1EDBi h\u1EA1n s\u1EBD kh\xF4ng v\xE0o C\u1EA7u Nguy\u1EC7n Th\u01B0\u1EDDng "Du H\xE0nh Th\u1EBF Gian".</span>',
-    "\u203B Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v. \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.",
-    "\u3013Quy t\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013",
-    "V\u1EADt Ph\u1EA9m 5 Sao",
-    "Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 5 sao l\xE0 <span> 0,600% </span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>1,600%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span> 90</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt 5 sao.<br/> hi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c nh\xE2n v\u1EADt 5 sao, c\xF3 <span> 50,000%</span> x\xE1c su\u1EA5t l\xE0 nh\xE2n v\u1EADt UP k\u1EF3 n\xE0y {featuredCharacter}. \u1EBFu nh\xE2n v\u1EADt 5 sao nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i nh\xE2n v\u1EADt UP, th\xEC nh\xE2n v\u1EADt 5 sao l\u1EA7n sau nh\u1EADn \u0111\u01B0\u1EE3c <span> ch\u1EAFc ch\u1EAFn</span> l\xE0 nh\xE2n v\u1EADt UP.",
-    "V\u1EADt Ph\u1EA9m 4 Sao",
-    "Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 4 sao l\xE0 <span> 5,100%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span>2,550%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 4 sao l\xE0 <span>2,550%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 4 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span> 13,000%</span>. C\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span> 10 </span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn, trong \u0111\xF3 v\u1EADt ph\u1EA9m nh\u1EADn \u0111\u01B0\u1EE3c qua m\u1EE9c b\u1EA3o \u0111\u1EA3m ch\u1EAFc ch\u1EAFn n\xE0y l\xE0 <span>99,400%</span> \u0111\u1ED1i v\u1EDBi 4 sao v\xE0 <span>0,600%</span> \u0111\u1ED1i v\u1EDBi 5 sao. <br/> Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m 4 sao, c\xF3 <span>50,000%</span> c\u01A1 h\u1ED9i nh\u1EADn m\u1ED9t trong c\xE1c nh\xE2n v\u1EADt UP k\u1EF3 n\xE0y {rateupCharacters}. N\u1EBFu v\u1EADt ph\u1EA9m 4 sao nh\u1EADn trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i nh\xE2n v\u1EADt UP, th\xEC v\u1EADt ph\u1EA9m \u1EDF l\u1EA7n sau <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 nh\xE2n v\u1EADt UP. Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m UP 4 sao, x\xE1c su\u1EA5t nh\u1EADn m\u1ED7i nh\xE2n v\u1EADt UP 4 sao k\u1EF3 n\xE0y l\xE0 b\u1EB1ng nhau."
-  ],
-  weapons: [
-    'S\u1EF1 ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} \u0111\xE3 m\u1EDF. Trong th\u1EDDi gian s\u1EF1 ki\u1EC7n, t\u1EF7 l\u1EC7 C\u1EA7u Nguy\u1EC7n nh\u1EADn v\u0169 kh\xED 5 sao {featuredWeapon2} v\xE0 v\u0169 kh\xED 4 sao {featuredWeapon1} v\xE0 v\u0169 kh\xED 4 sao <span>gi\u1EDBi h\u1EA1n</span> {rateupWeapons} s\u1EBD <span>t\u0103ng m\u1EA1nh!</span> <br/> <span> \u203B Trong c\xE1c v\u0169 kh\xED \u1EDF tr\xEAn, v\u0169 kh\xED gi\u1EDBi h\u1EA1n s\u1EBD kh\xF4ng v\xE0o C\u1EA7u Nguy\u1EC7n Th\u01B0\u1EDDng "Du H\xE0nh Th\u1EBF Gian".</span>',
-    "\u203B Th\xF4ng th\u01B0\u1EDDng, t\u1EA5t c\u1EA3 c\xE1c nh\xE2n v\u1EADt ho\u1EB7c v\u0169 kh\xED \u0111\u1EC1u \xE1p d\u1EE5ng t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n, nh\u01B0 k\xEDch ho\u1EA1t t\u1EF7 l\u1EC7 UP, \u0111\u1EA3m b\u1EA3o v.v... v\xE0 \u0111\u1EC1u tu\xE2n theo c\xE1c quy t\u1EAFc c\u1EE5 th\u1EC3.",
-    "\u3013Quy t\u1EAFc C\u1EA7u Nguy\u1EC7n\u3013",
-    "V\u1EADt ph\u1EA9m 5 sao",
-    "Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 5 sao l\xE0 <span>0,700%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>1.850%</span>, c\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>80</span> l\u1EA7n ch\u1EAFc ch\u1EAFn nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED 5 sao.<br/> Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED 5 sao, c\xF3 <span>75,000%</span> x\xE1c su\u1EA5t l\xE0 m\u1ED9t trong nh\u1EEFng v\u0169 kh\xED 5 sao UP k\u1EF3 n\xE0y {featuredWeapon1} v\xE0 {featuredWeapon2}. N\u1EBFu v\u0169 kh\xED 5 sao nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i v\u0169 kh\xED UP, th\xEC v\u0169 kh\xED 5 sao trong l\u1EA7n ti\u1EBFp theo <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 v\u0169 kh\xED UP. Trong tr\u01B0\u1EDDng h\u1EE3p \u0111i\u1EC3m v\u1EADn m\u1EC7nh ch\u01B0a \u0111\u1EA7y v\xE0 nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n, khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m UP 5 sao, x\xE1c su\u1EA5t nh\u1EADn m\u1ED7i v\u0169 kh\xED UP 5 sao c\u1EE7a k\u1EF3 n\xE0y l\xE0 b\u1EB1ng nhau. <br/> Trong k\u1EF3 S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, c\xF3 th\u1EC3 s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc ti\u1EBFn h\xE0nh \u0111\u1ECBnh chu\u1EA9n cho v\u0169 kh\xED UP 5 sao k\u1EF3 n\xE0y, l\u1EF1a ch\u1ECDn v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n ch\u1EC9 c\xF3 hi\u1EC7u l\u1EF1c trong S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName}. <br/> Trong S\u1EF1 Ki\u1EC7n {bannerName}, sau khi s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc \u0111\u1EC3 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED, khi v\u0169 kh\xED 5 sao nh\u1EADn \u0111\u01B0\u1EE3c kh\xF4ng ph\u1EA3i v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\u1EE7a l\u1EA7n n\xE0y, s\u1EBD nh\u1EADn 1 \u0111i\u1EC3m v\u1EADn m\u1EC7nh, sau khi \u0111i\u1EC3m v\u1EADn m\u1EC7nh <span>\u0111\u1EA7y</span>, v\u0169 kh\xED 5 sao ti\u1EBFp theo nh\u1EADn \u0111\u01B0\u1EE3c trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\u1EE7a l\u1EA7n n\xE0y. Khi nh\u1EADn \u0111\u01B0\u1EE3c v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n l\u1EA7n n\xE0y, d\xF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh c\u1EE7a l\u1EA7n \u0111\xF3 \u0111\xE3 \u0111\u1EA7y hay ch\u01B0a c\u0169ng s\u1EBD thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span>0</span> v\xE0 t\xEDch lu\u1EF9 t\u1EEB \u0111\u1EA7u. <br/> Khi ch\u01B0a s\u1EED d\u1EE5ng \u0110\u1ECBnh Chu\u1EA9n Th\u1EA7n \u0110\xFAc \u0111\u1EC3 \u0111\u1ECBnh chu\u1EA9n v\u0169 kh\xED, <span>s\u1EBD kh\xF4ng</span> t\xEDch lu\u1EF9 \u0111i\u1EC3m v\u1EADn m\u1EC7nh. <br/> V\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n c\xF3 th\u1EC3 thay \u0111\u1ED5i ho\u1EB7c hu\u1EF7 b\u1ECF. Khi thay \u0111\u1ED5i ho\u1EB7c hu\u1EF7 b\u1ECF v\u0169 kh\xED \u0111\u1ECBnh chu\u1EA9n hi\u1EC7n t\u1EA1i, \u0111i\u1EC3m v\u1EADn m\u1EC7nh s\u1EBD \u0111\u01B0\u1EE3c thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span>0</span>. v\xE0 t\xEDch lu\u1EF9 l\u1EA1i t\u1EEB \u0111\u1EA7u. <br/> \u203B \u0110i\u1EC3m v\u1EADn m\u1EC7nh trong c\u1EA7u nguy\u1EC7n k\u1EF3 n\xE0y ch\u1EC9 c\xF3 hi\u1EC7u l\u1EF1c trong k\u1EF3 S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n Th\xE2n H\xECnh Th\u1EA7n \u0110\xFAc n\xE0y, sau khi k\u1EBFt th\xFAc c\u1EA7u nguy\u1EC7n, \u0111i\u1EC3m v\u1EADn m\u1EC7nh s\u1EBD \u0111\u01B0\u1EE3c thi\u1EBFt l\u1EADp l\u1EA1i v\u1EC1 <span>0</span>, v\xE0 t\xEDch lu\u1EF9 t\u1EEB \u0111\u1EA7u.",
-    "V\u1EADt ph\u1EA9m 4 sao",
-    "Trong l\u1EA7n S\u1EF1 Ki\u1EC7n C\u1EA7u Nguy\u1EC7n {bannerName} n\xE0y, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u1EADt ph\u1EA9m 4 sao l\xE0 <span>6,000%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra nh\xE2n v\u1EADt 4 sao l\xE0 <span>3,000%</span>, t\u1EF7 l\u1EC7 c\u01A1 b\u1EA3n c\u1EA7u nguy\u1EC7n ra v\u0169 kh\xED 4 sao l\xE0 <span>3,000%</span>, t\u1EF7 l\u1EC7 t\u1ED5ng h\u1EE3p v\u1EADt ph\u1EA9m 4 sao (bao g\u1ED3m b\u1EA3o \u0111\u1EA3m m\u1EE9c t\u1ED1i thi\u1EC3u) l\xE0 <span>14,500%</span>. C\u1EA7u nguy\u1EC7n t\u1ED1i \u0111a <span>10</span> l\u1EA7n ch\u1EAFc ch\u1EAFn s\u1EBD nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m t\u1EEB 4 sao tr\u1EDF l\xEAn, trong \u0111\xF3 v\u1EADt ph\u1EA9m nh\u1EADn \u0111\u01B0\u1EE3c qua m\u1EE9c b\u1EA3o \u0111\u1EA3m n\xE0y l\xE0 <span>99.300%</span> \u0111\u1ED1i v\u1EDBi 4 sao v\xE0 <span>0,700%</span> \u0111\u1ED1i v\u1EDBi 5 sao. <br/> Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m 4 sao, c\xF3 <span>75,000%</span> c\u01A1 h\u1ED9i nh\u1EADn m\u1ED9t trong nh\u1EEFng v\u0169 kh\xED UP k\u1EF3 n\xE0y l\xE0 {rateupWeapons}. N\u1EBFu v\u1EADt ph\u1EA9m 4 sao nh\u1EADn trong l\u1EA7n c\u1EA7u nguy\u1EC7n n\xE0y kh\xF4ng ph\u1EA3i v\u0169 kh\xED UP k\u1EF3 n\xE0y, th\xEC v\u1EADt ph\u1EA9m 4 sao \u1EDF l\u1EA7n sau <span>ch\u1EAFc ch\u1EAFn</span> l\xE0 v\u0169 kh\xED UP k\u1EF3 n\xE0y. Khi c\u1EA7u nguy\u1EC7n nh\u1EADn \u0111\u01B0\u1EE3c v\u1EADt ph\u1EA9m UP 4 sao, x\xE1c su\u1EA5t nh\u1EADn m\u1ED7i v\u0169 kh\xED UP 4 sao k\u1EF3 n\xE0y l\xE0 b\u1EB1ng nhau."
-  ],
-  convertion: {
-    fiveStar: "Khi c\u1EA7u nguy\u1EC7n nh\u1EADn v\u0169 kh\xED 5 sao s\u1EBD \u0111\u1ED3ng th\u1EDDi nh\u1EADn s\u1EA3n v\u1EADt ph\u1EE5 l\xE0 10 {starglitter};",
-    fourStar: "Khi nh\u1EADn v\u0169 kh\xED 4 sao s\u1EBD \u0111\u1ED3ng th\u1EDDi nh\u1EADn s\u1EA3n v\u1EADt ph\u1EE5 l\xE0 2 {starglitter};",
-    threeStar: "Khi nh\u1EADn v\u0169 kh\xED 3 sao s\u1EBD \u0111\u1ED3ng th\u1EDDi nh\u1EADn s\u1EA3n v\u1EADt ph\u1EE5 l\xE0 15 {stardust}."
-  },
-  duplicate: {
-    heading: "\u3013N\u1EBFu Nh\u1EADn Tr\xF9ng Nh\xE2n V\u1EADt\u3013",
-    text: "Khi nh\u1EADn nh\xE2n v\u1EADt {rarity} sao tr\xF9ng nhau \u1EDF l\u1EA7n th\u1EE9 2 \u0111\u1EBFn 7 b\u1EB1ng b\u1EA5t k\u1EF3 c\xE1ch n\xE0o (Bao g\u1ED3m nh\u01B0ng kh\xF4ng gi\u1EDBi h\u1EA1n \u1EDF c\u1EA7u nguy\u1EC7n, \u0111\u1ED5i \u1EDF C\u1EEDa H\xE0ng, h\u1EC7 th\u1ED1ng t\u1EB7ng v.v...), m\u1ED7i l\u1EA7n nh\u01B0 v\u1EADy s\u1EBD chuy\u1EC3n th\xE0nh 1 {stellaFortuna} v\xE0 {constBonus} {starglitter}, L\u1EA7n th\u1EE9 8 tr\u1EDF \u0111i s\u1EBD chuy\u1EC3n th\xE0nh {fullConstBonus} {starglitter}."
-  }
-};
-const history = {
-  title: "L\u1ECBch S\u1EED C\u1EA7u Nguy\u1EC7n",
-  text: "L\u1ECBch S\u1EED",
-  resetButton: "Xo\xE1 L\u1ECBch S\u1EED",
-  resetPromptTitle: "Xo\xE1 L\u1ECBch S\u1EED ?",
-  resetPrompt: '\u0110i\u1EC1u n\xE0y c\u0169ng xo\xE1 t\u1EA5t c\u1EA3 v\u0169 kh\xED v\xE0 nh\xE2n v\u1EADt li\xEAn quan \u0111\u1EBFn Banner "{bannerName}" \u1EDF trong t\xFAi \u0111\u1ED3 c\u1EE7a b\u1EA1n. <br /> B\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n xo\xE1 l\u1ECBch s\u1EED kh\xF4ng ?',
-  resetSuccess: "Xo\xE1 l\u1ECBch s\u1EED th\xE0nh c\xF4ng !",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "Ch\u1ECDn lo\u1EA1i C\u1EA7u Nguy\u1EC7n:",
-  disclaimer: "Ch\xFAng t\xF4i kh\xF4ng bao gi\u1EDD l\u01B0u tr\u1EEF th\xF4ng tin c\u1EE7a b\u1EA1n l\xEAn \u0111\xE1m m\xE2y. T\u1EA5t c\u1EA3 d\u1EEF li\u1EC7u \u0111\u01B0\u1EE3c l\u01B0u tr\u1EEF \u1EDF IndexedDB, \u0111i\u1EC1u \u0111\xF3 c\xF3 ngh\u0129a l\xE0 t\u1EA5t c\u1EA3 d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n \u0111\u01B0\u1EE3c l\u01B0u \u1EDF tr\xECnh duy\u1EC7t. N\xF3 s\u1EBD kh\xF4ng bao gi\u1EDD b\u1ECB xo\xE1 cho \u0111\u1EBFn khi b\u1EA1n xo\xE1 n\xF3 th\u1EE7 c\xF4ng qua n\xFAt xo\xE1/\u0111\u1EB7t l\u1EA1i ho\u1EB7c n\xFAt xo\xE1 d\u1EEF li\u1EC7u tr\xECnh duy\u1EC7t.",
-  currentPity: "T\u1ED5n h\u1EA1i hi\u1EC7n t\u1EA1i :",
-  totalPull: "T\u1ED5ng S\u1ED1 L\u01B0\u1EE3ng :",
-  totalSpend: "Ti\xEAu T\u1ED5ng C\u1ED9ng :",
-  filterTxt: "B\u1ED9 L\u1ECDc",
-  filter: "{rarity} Sao",
-  filterAll: "T\u1EA5t C\u1EA3",
-  pity: "T\u1ED5n H\u1EA1i",
-  timeReceived: "Th\u1EDDi gian nh\u1EADn \u0111\u01B0\u1EE3c",
-  waiting: "\u0110ang Ch\u1EDD",
-  noData: "Kh\xF4ng C\xF3 D\u1EEF Li\u1EC7u .",
-  untracked: "Kh\xF4ng \u0110\u01B0\u1EE3c Theo D\xF5i",
-  item: "Item",
-  win: "Th\u1EAFng 50/50",
-  lose: "Thua 50/50",
-  guaranteed: "\u0110\u01B0\u1EE3c \u0110\u1EA3m B\u1EA3o",
-  selected: "V\u0169 kh\xED \u0110\xE3 Ch\u1ECDn",
-  olderLayout: "Ki\u1EC3u C\u0169 H\u01A1n",
-  switchv2: "Chuy\u1EC3n Sang V2"
-};
-const shop = {
-  text: "C\u1EEDa H\xE0ng",
-  paimonBargains: "\u0110\u1ED5i B\u1EE5i \xC1nh S\xE1ng",
-  fateNeeded: "C\u1EA7n th\xEAm {rollQty} {currency} n\u1EEFa.",
-  primoNeeded: "Thanh to\xE1n v\u1EDBi {primoPrice} Nguy\xEAn th\u1EA1ch ?",
-  purchaseUpto: "Thanh To\xE1n L\xEAn T\u1EDBi 1",
-  purchaseConfirm: "X\xE1c Nh\u1EADn Thanh To\xE1n",
-  exchangeHeading: "V\u1EADt Ph\u1EA9m C\u1EA7n \u0110\u1ED5i",
-  purchaseHeading: "V\u1EADt Ph\u1EA9m C\u1EA7n Thanh To\xE1n",
-  purchaseButton: "Thanh To\xE1n",
-  pay: "Tr\u1EA3 Ti\u1EC1n",
-  product: "S\u1EA3n Ph\u1EA9m",
-  consume: "Ti\xEAu T\u1ED1n",
-  selectPayment: "L\u1EF1a ch\u1ECDn lo\u1EA1i h\xECnh thanh to\xE1n",
-  unrealWallet: "V\xED kh\xF4ng c\xF3 th\u1EADt (unReal Wallet)",
-  convertPrimo: " T\u1EF1 \u0111\u1ED9ng chuy\u1EC3n th\xE0nh nguy\xEAn th\u1EA1ch ?",
-  proceedPayment: "Ti\u1EBFn h\xE0nh thanh to\xE1n",
-  qty: "S\u1ED1 l\u01B0\u1EE3ng",
-  insufficient: "Kh\xF4ng \u0110\u1EE7 Ti\u1EC1n",
-  crystalTopup: "Crystal Top-Up",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "Mua \u0110\xE1 S\xE1ng Th\u1EBF",
-  recomendedHeading: "V\u1EADt Ph\u1EA9m Khuy\u1EBFn Ngh\u1ECB",
-  paimonHeading: "\u0110\u1ED5i B\u1EE5i \xC1nh S\xE1ng",
-  welkinNote: "C\xF3 th\u1EC3 thanh to\xE1n nhi\u1EC1u l\u1EA7n",
-  limitedOffer: "Khuy\u1EBFn M\xE3i Gi\u1EDBi H\u1EA1n",
-  noLimitTime: "Kh\xF4ng c\xF3 th\u1EDDi gian gi\u1EDBi h\u1EA1n",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "Kh\xF4ng Nguy\u1EC7t Ch\xFAc Ph\xFAc",
-    newOutfit: "Trang ph\u1EE5c nh\xE2n v\u1EADt m\u1EDBi",
-    dayRemaining: "S\u1ED1 Ng\xE0y C\xF2n L\u1EA1i: {days}",
-    alreadyClaimed: "\u0110\xE3 Nh\u1EADn H\xF4m Nay",
-    instantlyGet: "Nh\u1EADn Ngay L\u1EADp T\u1EE9c",
-    dailyGift: "Qu\xE0 H\u1EB1ng Ng\xE0y",
-    obtainTotal: "Nh\u1EADn t\u1ED5ng c\u1ED9ng {totalGenesis} \u0110\xE1 S\xE1ng Th\u1EBF v\xE0 {totalPrimo} nguy\xEAn th\u1EA1ch trong 30 ng\xE0y",
-    claimingBlessing: "B\u1EA5m \u0111\u1EC3 nh\u1EADn ph\u1EA7n th\u01B0\u1EDFng Kh\xF4ng Nguy\u1EC7t Ch\xFAc Ph\xFAc h\u1EB1ng ng\xE0y c\u1EE7a b\u1EA1n",
-    issuedPurchase: "\u0110\u01B0\u1EE3c Nh\u1EADn Khi Mua",
-    collect: "Nh\u1EADn ph\u1EA7n th\u01B0\u1EDFng \u0111\u0103ng nh\u1EADp h\u1EB1ng ng\xE0y trong 30 ng\xE0y"
-  },
-  exchange: {
-    starglitter: "\u0110\u1ED5i Tinh Huy V\xF4 Ch\u1EE7",
-    stardust: "\u0110\u1ED5i Tinh Tr\u1EA7n V\xF4 Ch\u1EE7",
-    primogem: "\u0110\u1ED5i v\u1EDBi Nguy\xEAn Th\u1EA1ch"
-  },
-  item: {
-    genesis: "\u0110\xE1 S\xE1ng Th\u1EBF",
-    primogem: "Nguy\xEAn Th\u1EA1ch",
-    intertwined: "M\u1ED1i Duy\xEAn V\u01B0\u01A1ng V\u1EA5n",
-    acquaint: "M\u1ED1i Duy\xEAn T\u01B0\u01A1ng Ng\u1ED9",
-    starglitter: "Tinh Huy V\xF4 Ch\u1EE7",
-    stardust: "Tinh Tr\u1EA7n V\xF4 Ch\u1EE7"
-  },
-  description: {
-    intertwined: "H\u1EA1t gi\u1ED1ng v\u1EADn m\u1EC7nh k\u1EBFt n\u1ED1i \u01B0\u1EDBc m\u01A1. \xC1nh s\xE1ng c\u1EE7a duy\xEAn th\u1EA1ch k\u1EBFt n\u1ED1i nhi\u1EC1u v\u1EADn m\u1EC7nh, g\u1EAFn li\u1EC1n \u01B0\u1EDBc m\u01A1 c\u1EE7a \u0111\xF4i b\xEAn, c\u0169ng gi\u1ED1ng nh\u01B0 \xE1nh s\xE1ng n\xE0y k\u1EBFt n\u1ED1i nh\u1EEFng ch\xF2m sao k\u1EBFt th\xE0nh h\xECnh \u1EA3nh m\xE0 trong l\xF2ng h\u01B0\u1EDBng \u0111\u1EBFn.",
-    acquaint: "Th\u1EAFp s\xE1ng h\u1EA1t gi\u1ED1ng hy v\u1ECDng tr\xEAn b\u1EA7u tr\u1EDDi. B\u1EA5t k\u1EC3 xa c\xE1ch bao nhi\xEAu, ng\u01B0\u1EDDi \u0111\xE3 \u0111\u01B0\u1EE3c v\u1EADn m\u1EC7nh an b\xE0i \u0111\u1EC1u s\u1EBD \u0111\u01B0\u1EE3c \xE1nh s\xE1ng c\u1EE7a duy\xEAn th\u1EA1ch d\u1EABn l\u1ED1i, g\u1EB7p nhau d\u01B0\u1EDBi tr\u1EDDi \u0111\u1EA5t n\xE0y."
-  }
-};
-const inventory = {
-  text: "T\xFAi \u0110\u1ED3",
-  unsetOutfit: "Trang ph\u1EE5c ch\u01B0a \u0111\u01B0\u1EE3c ch\u1ECDn",
-  setOutfit: "\xC1p d\u1EE5ng trang ph\u1EE5c cho nh\xE2n v\u1EADt",
-  refinement: "S\xE0ng l\u1ECDc {count}",
-  constellation: "S\u1ED1 l\u01B0\u1EE3ng ch\xF2m sao {count}",
-  extra: "Nh\u1EADn th\xEAm {count}",
-  firstSummon: "\u0110\u01B0\u1EE3c m\u1EDF l\u1EA7n \u0111\u1EA7u v\xE0o l\xFAc : {date}",
-  notOwned: "Ch\u01B0a S\u1EDF H\u1EEFu",
-  sort: "Ph\xE2n Lo\u1EA1i",
-  rarity: "\u0110\u1ED9 Hi\u1EBFm",
-  name: "T\xEAn",
-  quantity: "S\u1ED1 L\u01B0\u1EE3ng",
-  element: "Nguy\xEAn T\u1ED1",
-  release: "Release Date",
-  type: "Lo\u1EA1i",
-  owned: "\u0110\xE3 s\u1EDF H\u1EEFu",
-  showAllOption: "Hi\u1EC7n t\u1EA5t c\u1EA3 {item} v\u1EADt ph\u1EA9m"
-};
-const menu = {
-  no: "Kh\xF4ng",
-  yes: "C\xF3",
-  text: "Menu",
-  feedback: "Feedback",
-  options: "Tu\u1EF3 Ch\u1ECDn",
-  updates: "L\u1ECBch S\u1EED C\u1EADp Nh\u1EADt",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "Ng\xF4n Ng\u1EEF",
-  currency: "\u0110\u01A1n V\u1ECBTi\u1EC1n T\u1EC7",
-  fates: "S\u1ED1 \u0111i\u1EC1u \u01B0\u1EDBc",
-  unlimited: "V\xF4 h\u1EA1n",
-  manual: "Nh\u1EADp th\u1EE7 c\xF4ng",
-  mute: "T\u1EAFt Ti\u1EBFng \xC2m Thanh V\xE0 Hi\u1EC7u \u1EE8ng \xC2m Thanh",
-  switchBanner: "\u0110\u1ED5i Banner",
-  showAllitems: "Hi\u1EC7n t\u1EA5t c\u1EA3 v\u1EADt ph\u1EA9m trong t\xFAi \u0111\u1ED3",
-  autoskip: "T\u1EF1 \u0111\u1ED9ng b\u1ECF qua Splash Art",
-  animatedbg: "H\xECnh n\u1EC1n chuy\u1EC3n \u0111\u1ED9ng",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "Xo\xE1 s\u1EA1ch d\u1EEF li\u1EC7u v\xE0 kh\xF4i ph\u1EE5c c\xE0i \u0111\u1EB7t g\u1ED1c",
-  resetTitle: "Factory Reset",
-  rotate: "Xoay thi\u1EBFt b\u1ECB cho tr\u1EA3i nghi\u1EC7m t\u1ED1t h\u01A1n",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "Clear Caches ( {size} ) ? <small>You will re-load the assets after this action!</small>",
-  resetButton: "Xo\xE1 s\u1EA1ch ngay l\u1EADp t\u1EE9c",
-  resetPrompt: "B\u1EA1n c\xF3 ch\u1EAFc mu\u1ED1n xo\xE1 <strong> T\u1EA5t c\u1EA3 d\u1EEF li\u1EC7u </strong> v\xE0 kh\xF4i ph\u1EE5c c\xE0i \u0111\u1EB7t g\u1ED1c ?",
-  resetSuccess: "\u0110\u1EB7t l\u1EA1i th\xE0nh c\xF4ng",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "Get a new one Here!",
-  noKey: "Don't have a key?",
-  verifyFail: "Failed to verifying AdKey, Check your Connection",
-  invalidKey: "Your key is invalid",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "Enter Key",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* I need to say sorry about the ads. Actually I don't want to ruin your wishing experience, but I don't have any Team or Sponsor to keep this app alive. If you don't want to spend anythings, You can still turn on the Ad Blocker or just use custom DNS, I will not forbid you."
-};
-const viVN = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  viVN as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/vi-VN2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/vi-VN2.js
deleted file mode 100644
index 2767ba8f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/vi-VN2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "Akuoumaru";
-const rainslasher = "V\u0169 T\xE0i";
-const rust = "Cung R\u1EC9 S\xE9t";
-const slingshot = "N\u1ECF K\xE9o";
-const verdict = "Ph\xE1n Quy\u1EBFt";
-const albedo = {
-  name: "Albedo",
-  title: "Kreideprinz"
-};
-const alhaitham = {
-  name: "Alhaitham",
-  title: "L\u1EDDi Khuy\xEAn T\u1EADn T\xECnh"
-};
-const amber = {
-  name: "Amber",
-  title: "Qu\xE1n Qu\xE2n Bay L\u01B0\u1EE3n"
-};
-const baizhu = {
-  name: "Baizhu",
-  title: "Sinh T\u1EED Giao H\xF2a"
-};
-const barbara = {
-  name: "Barbara",
-  title: "Th\u1EA7n T\u01B0\u1EE3ng T\u1ECFa S\xE1ng"
-};
-const beidou = {
-  name: "Beidou",
-  title: "Long V\u01B0\u01A1ng Kh\xF4ng V\u01B0\u01A1ng Mi\u1EC7n"
-};
-const bennett = {
-  name: "Bennett",
-  title: "Th\u1EED Th\xE1ch C\u1EE7a L\u1EEDa"
-};
-const candace = {
-  name: "Candace",
-  title: "Th\u1EC1 Nguy\u1EC7n \xC1nh Kim"
-};
-const charlotte = {
-  name: "Charlotte",
-  title: "\u1ED0ng K\xEDnh S\u1EF1 Th\u1EADt"
-};
-const chevreuse = {
-  name: "Chevreuse",
-  title: "Ng\u01B0\u1EDDi Th\u1EF1c Thi C\xF4ng L\xFD"
-};
-const chongyun = {
-  name: "Chongyun",
-  title: "B\xF2ng H\xECnh B\u0103ng Gi\xE1"
-};
-const collei = {
-  name: "Collei",
-  title: "M\u1EA7m Non T\xE1i Sinh"
-};
-const cyno = {
-  name: "Cyno",
-  title: "Ph\xE1n Quy\u1EBFt \u1EA8n M\u1EADt"
-};
-const dehya = {
-  name: "Dehya",
-  title: "S\u01B0 T\u1EED L\u1EEDa"
-};
-const diluc = {
-  name: "Diluc",
-  title: "M\u1EB7t T\u1ED1i C\u1EE7a B\xECnh Minh"
-};
-const diona = {
-  name: "Diona",
-  title: "\u0110\u1EB7c Ch\u1EBF Qu\xE1n R\u01B0\u1EE3u \u0110u\xF4i M\xE8o"
-};
-const dori = {
-  name: "Dori",
-  title: "Kho B\xE1u V\u01B0\u1EDDn M\u01A1"
-};
-const eula = {
-  name: "Eula",
-  title: "V\u0169 \u0110i\u1EC7u B\u1ECDt Bi\u1EC3n"
-};
-const faruzan = {
-  name: "Faruzan",
-  title: "Ng\u01B0\u1EDDi Gi\u1EA3i B\xED \u1EA8n"
-};
-const fischl = {
-  name: "Fischl",
-  title: "C\xF4ng Ch\xFAa \u0110\u1ECBnh T\u1ED9i"
-};
-const freminet = {
-  name: "Freminet",
-  title: "Kh\xE1t Khao Ch\xECm \u0110\u1EAFm"
-};
-const furina = {
-  name: "Furina",
-  title: "\u0110\u1ED9c Di\u1EC5n V\xF4 T\u1EADn"
-};
-const ganyu = {
-  name: "Ganyu",
-  title: "Ng\u01B0\u1EDDi B\u1EA3o V\u1EC7 T\u1EADn T\xE2m"
-};
-const gorou = {
-  name: "Gorou",
-  title: "Chi\u1EBFn Khuy\u1EC3n Nanh Nh\u1ECDn"
-};
-const jean = {
-  name: "Jean",
-  title: "K\u1EF5 S\u0129 B\u1ED3 C\xF4ng Anh"
-};
-const kaeya = {
-  name: "Kaeya",
-  title: "H\xE0n Phong Ki\u1EBFm S\u0129"
-};
-const kaveh = {
-  name: "Kaveh",
-  title: "L\u0103ng K\xEDnh V\xF2m Tr\u1EDDi"
-};
-const keqing = {
-  name: "Keqing",
-  title: "S\u1EA5m Ch\u1EDBp Tr\u01B0\u1EDBc C\u01A1n M\u01B0a"
-};
-const kirara = {
-  name: "Kirara",
-  title: "M\xE8o Leo N\xF3c Nh\xE0"
-};
-const klee = {
-  name: "Klee",
-  title: "M\u1EB7t Tr\u1EDDi Ch\u1EA1y Tr\u1ED1n"
-};
-const layla = {
-  name: "Layla",
-  title: "Sao \u0110\xEAm K\u1EF3 \u1EA2o"
-};
-const lisa = {
-  name: "Lisa",
-  title: "Ma N\u1EEF T\u01B0\u1EDDng Vi"
-};
-const lynette = {
-  name: "Lynette",
-  title: "B\xF3ng H\xECnh Trang Nh\xE3"
-};
-const lyney = {
-  name: "Lyney",
-  title: "\u1EA2o \u1EA2nh Ngo\u1EA1n M\u1EE5c"
-};
-const mika = {
-  name: "Mika",
-  title: "D\u1EA5u Hi\u1EC7u S\u01B0\u01A1ng Mai"
-};
-const mona = {
-  name: "Mona",
-  title: "Th\u1EE7y K\xEDnh Thi\xEAn Tinh"
-};
-const nahida = {
-  name: "Nahida",
-  title: "K\u1EBFt Tinh B\u1EA1ch Th\u1EA3o"
-};
-const navia = {
-  name: "Navia",
-  title: "B\xE1nh L\xE1i Hoa L\u1EC7"
-};
-const neuvillette = {
-  name: "Neuvillette",
-  title: "Ti\u1EBFng S\xF3ng Ph\xE1n Quy\u1EBFt"
-};
-const nilou = {
-  name: "Nilou",
-  title: "V\u0169 \u0110i\u1EC7u \xC1nh Sen"
-};
-const ningguang = {
-  name: "Ningguang",
-  title: "Y\u1EC3m Nguy\u1EC7t Thi\xEAn Quy\u1EC1n"
-};
-const noelle = {
-  name: "Noelle",
-  title: "\u0110\xF3a Hoa Ch\u01B0a Vinh Danh"
-};
-const qiqi = {
-  name: "Qiqi",
-  title: "\u0110\xEAm H\u1ED3n V\u1EC1 L\u1EA1nh Gi\xE1"
-};
-const razor = {
-  name: "Razor",
-  title: "Thi\u1EBFu Ni\xEAn S\xF3i"
-};
-const rosaria = {
-  name: "Rosaria",
-  title: "\xC2n \u0110i\u1EC1n M\u0169 Gai"
-};
-const sayu = {
-  name: "Sayu",
-  title: "Ninja Mujina"
-};
-const shenhe = {
-  name: "Shenhe",
-  title: "Thi\xEAn Th\u1EC3 C\xF4 \u0110\u1ED9c"
-};
-const sucrose = {
-  name: "Sucrose",
-  title: "\u0110\u1ED9 Ng\u1ECDt V\xF4 H\u1EA1i"
-};
-const tartaglia = {
-  name: "Tartaglia",
-  title: "Childe"
-};
-const thoma = {
-  name: "Thoma",
-  title: "Ng\u01B0\u1EDDi B\u1EA3o V\u1EC7 Ph\u01B0\u01A1ng Xa"
-};
-const tighnari = {
-  name: "Tighnari",
-  title: "D\u1EA1o B\u01B0\u1EDBc R\u1EEBng Xanh"
-};
-const venti = {
-  name: "Venti",
-  title: "Nh\xE0 Th\u01A1 C\xF3 M\xE0u C\u1EE7a Gi\xF3"
-};
-const wanderer = {
-  name: "K\u1EBB Lang Thang",
-  title: "\u0110o\u1EA1n Tuy\u1EC7t Th\u1EBF Gian"
-};
-const wriothesley = {
-  name: "Wriothesley",
-  title: "S\u1EE9 Gi\u1EA3 T\u1ED9i Danh \u1EA8n M\u1EADt"
-};
-const xiangling = {
-  name: "Xiangling",
-  title: "V\u1EA1n D\xE2n B\xE1ch V\u1ECB"
-};
-const xiao = {
-  name: "Xiao",
-  title: "H\u1ED9 Ph\xE1p D\u1EA1 Xoa"
-};
-const xingqiu = {
-  name: "Xingqiu",
-  title: "Tu\u1ED5i Tr\u1EBB T\xE0i Cao"
-};
-const xinyan = {
-  name: "Xinyan",
-  title: "Giai \u0110i\u1EC7u N\xF3ng B\u1ECFng"
-};
-const yanfei = {
-  name: "Yanfei",
-  title: "C\u01A1 Tr\xED Ng\xE2y Th\u01A1"
-};
-const yaoyao = {
-  name: "Yaoyao",
-  title: "Nh\u1EE5y Hoa Ho\u1EA1t B\xE1t"
-};
-const yelan = {
-  name: "Yelan",
-  title: "Lan Sinh U C\u1ED1c"
-};
-const yoimiya = {
-  name: "Yoimiya",
-  title: "V\u0169 \u0110i\u1EC7u B\xE3o L\u1EEDa"
-};
-const zhongli = {
-  name: "Zhongli",
-  title: "Nham V\u01B0\u01A1ng \u0110\u1EBF Qu\xE2n"
-};
-const viVN = {
-  "a-thousand-floating-dreams": "C\xF5i M\u1ED9ng Ng\xE0n \u0110\xEAm",
-  akuoumaru,
-  "alley-hunter": "Th\u1EE3 S\u0103n H\u1EBBm T\u1ED1i",
-  "amos-bow": "Cung Amos",
-  "aqua-simulacra": "Nh\u01B0\u1EE3c Th\u1EE7y",
-  "aquila-favonia": "Phong \u01AFng Ki\u1EBFm",
-  "beacon-of-the-reed-sea": "H\u1EA3i \u0110\u0103ng B\u1EDD Bi\u1EC3n Lau",
-  "black-tassel": "H\u1EAFc Anh Th\u01B0\u01A1ng",
-  "bloodtained-greatsword": "Ki\u1EBFm Huy\u1EBFt R\u1ED3ng",
-  "calamity-queller": "H\u1EE7y Di\u1EC7t",
-  "cashflow-supervision": "Qu\u1EA3n \u0110\u1ED1c V\xE0ng R\xF2ng",
-  "cool-steel": "L\xE3nh Nh\u1EABn",
-  "debate-club": "G\u1EADy Thu Ph\u1EE5c",
-  "dragon_s-bane": "Tai \u01AF\u01A1ng C\u1EE7a R\u1ED3ng",
-  "elegy-for-the-end": "Ti\u1EBFng Th\u1EDF D\xE0i V\xF4 T\u1EADn",
-  "emerald-orb": "Qu\u1EA3 C\u1EA7u Ng\u1ECDc",
-  "engulfing-lightning": "\u0110o\u1EA1n Th\u1EA3o Tr\u01B0\u1EDDng \u0110ao",
-  "everlasting-moonglow": "V\u1EA7ng Tr\u0103ng B\u1EA5t Di\u1EC7t",
-  "eye-of-perception": "Chi\xEAu T\xE2m",
-  "favonius-codex": "T\xE2y Phong M\u1EADt \u0110i\u1EC3n",
-  "favonius-greatsword": "\u0110\u1EA1i Ki\u1EBFm T\xE2y Phong",
-  "favonius-lance": "Th\u01B0\u01A1ng T\xE2y Phong",
-  "favonius-sword": "T\xE2y Phong Ki\u1EBFm",
-  "favonius-warbow": "Cung T\xE2y Phong",
-  "ferrous-shadow": "Ki\u1EBFm Thi\u1EBFt \u1EA2nh",
-  "freedom-sworn": "L\u1EDDi Th\u1EC1 T\u1EF1 Do C\u1ED5 X\u01B0a",
-  "haran-geppaku-futsu": "Haran Geppaku Futsu",
-  "harbinger-of-dawn": "Th\u1EA7n Ki\u1EBFm L\xEA Minh",
-  "hunter_s-path": "Con \u0110\u01B0\u1EDDng Th\u1EE3 S\u0103n",
-  "jadefall-splendor": "Ng\u1ECDc B\xEDch Huy Ho\xE0ng",
-  "kagura_s-verity": "Ch\xE2n \xDD C\u1EE7a Kagura",
-  "key-of-khaj-nisut": "Ch\xECa Kh\xF3a Khaj-Nisut",
-  "lion_s-roar": "Ti\u1EBFng H\xE9t C\u1EE7a R\u1ED3ng",
-  "light-of-foliar-incision": "\xC1nh L\xE1 Ph\xE1n Quy\u1EBFt",
-  "lithic-blade": "Thi\xEAn Nham C\u1ED5 Ki\u1EBFm",
-  "lithic-spear": "Th\u01B0\u01A1ng Thi\xEAn Nham",
-  "lost-prayer-to-the-sacred-winds": "\u0110i\u1EC3n T\xEDch T\xE2y Phong",
-  "magic-guide": "T\xF3m T\u1EAFt Ma Ph\xE1p",
-  "makhaira-aquamarine": "S\u1EAFc N\u01B0\u1EDBc Makhaira",
-  "memory-of-dust": "Kh\xF3a Tr\u1EA7n Th\u1EBF",
-  "mistsplitter-reforged": "\xC1nh S\xE1ng \u0110\xEAm S\u01B0\u01A1ng M\xF9",
-  "mitternachts-waltz": "\u0110i\u1EC7u Van Ban \u0110\xEAm",
-  "mouun_s-moon": "\xC1nh Tr\u0103ng Mouun",
-  "polar-star": "Ng\xF4i Sao C\u1EF1c \u0110\xF4ng",
-  "portable-power-saw": "M\xE1y C\u01B0a C\u1EA7m Tay",
-  "primordial-jade-cutter": "B\xE0n Nham K\u1EBFt L\u1EE5c",
-  "primordial-jade-winged-spear": "H\xF2a Ph\xE1c Di\xEAn",
-  "prospector-drill": "M\u0169i Khoan Th\u0103m D\xF2",
-  rainslasher,
-  "range-gauge": "M\xE1y \u0110o C\u1EF1 Ly",
-  "raven-bow": "Cung L\xF4ng V\u1ECBt",
-  "redhorn-stonethresher": "X\xEDch Gi\xE1c Ph\xE1 Th\u1EA1ch \u0110ao",
-  rust,
-  "sacrificial-bow": "Cung T\u1EBF L\u1EC5",
-  "sacrificial-fragments": "M\u1EA3nh Ch\u01B0\u01A1ng T\u1EBF L\u1EC5",
-  "sacrificial-greatsword": "\u0110\u1EA1i Ki\u1EBFm T\u1EBF L\u1EC5",
-  "sacrificial-sword": "Ki\u1EBFm T\u1EBF L\u1EC5",
-  "sharpshooter_s-oath": "L\u1EDDi Th\u1EC1 X\u1EA1 Th\u1EE7 Th\u1EA7n",
-  "skyrider-sword": "Ki\u1EBFm Phi Thi\xEAn",
-  "skyward-atlas": "Quy\u1EC3n Thi\xEAn Kh\xF4ng",
-  "skyward-blade": "Thi\xEAn Kh\xF4ng Ki\u1EBFm",
-  "skyward-harp": "C\xE1nh Thi\xEAn Kh\xF4ng",
-  "skyward-pride": "Thi\xEAn Kh\xF4ng Ki\xEAu Ng\u1EA1o",
-  "skyward-spine": "X\u01B0\u01A1ng S\u1ED1ng Thi\xEAn Kh\xF4ng",
-  slingshot,
-  "song-of-broken-pines": "Ti\u1EBFng Gi\xF3 Trong R\u1EEBng Th\xF4ng",
-  "splendor-of-tranquil-waters": "S\u1EAFc N\u01B0\u1EDBc L\u1ED9ng L\u1EABy",
-  "staff-of-homa": "Tr\u01B0\u1EE3ng H\u1ED9 Ma",
-  "staff-of-the-scarlet-sands": "Quy\u1EC1n Tr\u01B0\u1EE3ng C\xE1t \u0110\u1ECF",
-  "summit-shaper": "Ki\u1EBFm Ch\u01B0\u1EDBc Phong",
-  "the-alley-flash": "Tia S\xE1ng N\u01A1i H\u1EBBm T\u1ED1i",
-  "the-bell": "Ki\u1EBFm Chu\xF4ng",
-  "the-dockhands-assistant": "Ki\u1EBFm B\u1EBFn T\xE0u",
-  "the-first-great-magic": "M\xE0n \u1EA2o Thu\u1EADt \u0110\u1EA7u Ti\xEAn",
-  "the-flute": "Ki\u1EBFm S\xE1o",
-  "the-stringless": "Tuy\u1EC7t Huy\u1EC1n",
-  "the-unforged": "Ki\u1EBFm V\xF4 C\xF4ng",
-  "the-widsith": "Ch\u01B0\u01A1ng Nh\u1EA1c Lang Thang",
-  "thrilling-tales-of-dragon-slayers": "C\xE2u Chuy\u1EC7n Di\u1EC7t R\u1ED3ng",
-  "thundering-pulse": "S\u1EA5m S\xE9t Rung \u0110\u1ED9ng",
-  "tome-of-the-eternal-flow": "Nghi Th\u1EE9c D\xF2ng Ch\u1EA3y V\u0129nh H\u1EB1ng",
-  "tulaytullah_s-remembrance": "H\u1ED3i \u1EE8c Tulaytullah",
-  verdict,
-  "vortex-vanquisher": "Gi\xE1o N\u1ECBnh Th\u1EA7n",
-  "wavebreaker_s-fin": "V\xE2y C\xE1 Ch\u1EBB S\xF3ng",
-  "wine-and-song": "R\u01B0\u1EE3u V\xE0 Th\u01A1 N\u01A1i H\u1EBBm T\u1ED1i",
-  "wandering-evenstar": "Sao \u0110\xEAm Rong Ru\u1ED5i",
-  "wolf_s-gravestone": "\u0110\u01B0\u1EDDng C\xF9ng C\u1EE7a S\xF3i",
-  "xiphos-moonlight": "\xC1nh Tr\u0103ng Xiphos",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "Arataki Itto",
-    title: "Qu\xE1i Ki\u1EC7t Hanamizaka"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "Hu Tao",
-    title: "Tuy\u1EBFt T\u1EC5 Mai H\u01B0\u01A1ng"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "Kaedehara Kazuha",
-    title: "L\xE1 \u0110\u1ECF \u0110u\u1ED5i S\xF3ng"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "Kamisato Ayaka",
-    title: "B\u1EA1ch H\u1EA1c S\u01B0\u01A1ng Hoa"
-  },
-  "kamisato-ayato": {
-    name: "Kamisato Ayato",
-    title: "Tr\u1EE5 C\u1ED9t V\u1EEFng V\xE0ng"
-  },
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  "kujou-sara": {
-    name: "Kujou Sara",
-    title: "H\u1EAFc V\u0169 Ti\u1EC5n"
-  },
-  "kuki-shinobu": {
-    name: "Kuki Shinobu",
-    title: "G\u1EA1t B\u1ECF Phi\u1EC1n N\xE3o"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "Raiden Shogun",
-    title: "Nh\u1EA5t T\xE2m T\u1ECBnh Th\u1ED5"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "Sangonomiya Kokomi",
-    title: "Tr\xED Tu\u1EC7 Tr\xE2n Ch\xE2u"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "Shikanoin Heizou",
-    title: "Con Tim Giao H\xF2a"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "Yae Miko",
-    title: "Ti\u1EBFu Ng\u1EA1o Th\u1EBF Gian"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "Yun Jin",
-    title: "M\u1EF9 Nh\xE2n Tr\xEAn S\xE2n Kh\u1EA5u"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  viVN as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-CN.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-CN.js
deleted file mode 100644
index 5158bc8f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-CN.js
+++ /dev/null
@@ -1,578 +0,0 @@
-const title = "\u539F\u795E\u7948\u613F\u6A21\u62DF\u5668";
-const character = "\u89D2\u8272";
-const weapon = "\u6B66\u5668";
-const vision = "\u795E\u4E4B\u773C";
-const anemo = "\u98CE";
-const cryo = "\u51B0";
-const dendro = "\u8349";
-const electro = "\u96F7";
-const hydro = "\u6C34";
-const geo = "\u5CA9";
-const pyro = "\u706B";
-const bow = "\u5F13";
-const catalyst = "\u6CD5\u5668";
-const claymore = "\u53CC\u624B\u5251";
-const sword = "\u5355\u624B\u5251";
-const polearm = "\u957F\u67C4\u6B66\u5668";
-const extra = "\u989D\u5916\u83B7\u5F97";
-const obtained = "\u5DF2\u83B7\u5F97";
-const waiting = "\u8BF7\u7A0D\u7B49";
-const connectionFailed = "\u8FDE\u63A5\u5931\u8D25\uFF01";
-const confirmButton = "\u786E\u8BA4";
-const cancelButton = "\u53D6\u6D88";
-const disclaimer = "\u672C\u7F51\u7AD9\u4F7F\u7528\u7684\u6240\u6709\u8D44\u6E90\u5747\u5F52\u7C73\u54C8\u6E38\u6240\u6709\u3002";
-const fanmade = "\u8FD9\u662F\u4E00\u4E2A\u7C89\u4E1D\u5236\u4F5C\u7684\u5E94\u7528\uFF0C\u5C3D\u60C5\u4EAB\u53D7\u5427\uFF01";
-const pressToContinue = "\u70B9\u51FB\u7A7A\u767D\u533A\u57DF\u7EE7\u7EED";
-const installInstruction = "\u5B89\u88C5\u5230\u4E3B\u5C4F\u5E55/\u684C\u9762\u7684\u6559\u7A0B";
-const share = "\u5206\u4EAB";
-const screenshot = "\u622A\u56FE";
-const capturing = "\u6B63\u5728\u622A\u56FE";
-const rewardFirstShare = "\u9996\u6B21\u5206\u4EAB : {qty}";
-const version = "\u7248\u672C";
-const donate = "\u6350\u8D60";
-const banner = {
-  beginner: " \u521D\u884C\u8005\u63A8\u8350\u7948\u613F",
-  wanderlust: " \u5954\u884C\u4E16\u95F4",
-  "epitome-invocation": "\u795E\u94F8\u8D4B\u5F62",
-  "adrift-in-the-harbor": "\u6D6E\u751F\u5B70\u6765",
-  "auric-blaze": "\u70C8\u9633\u70C1\u91D1",
-  "azure-excursion": "\u82CD\u6D41\u8E0F\u82B1",
-  "ballad-in-goblets": "\u676F\u88C5\u4E4B\u8BD7",
-  "born-of-ocean-swell": "\u6D6A\u6D8C\u4E4B\u77AC",
-  "caution-in-confidence": "\u6555\u8BEB\u67A2\u8C0B",
-  "chanson-of-many-waters": "\u4F17\u6C34\u7684\u9882\u8BD7",
-  "conjuring-chiaroscuro": "\u5149\u4E0E\u5F71\u7684\u620F\u672F",
-  "dance-of-lantern": "\u9C7C\u9F99\u706F\u663C",
-  "decree-of-the-deeps": "\u6E0A\u6D77\u754C\u4EE4",
-  "discerner-of-enigmas": "\u7D20\u9713\u4F23\u5929",
-  "drifting-luminescence": "\u6D6E\u5CB3\u8679\u73E0",
-  "everbloom-violet": "\u534E\u7D2B\u6A31\u7EEF",
-  "farewell-of-snezhnaya": "\u6682\u522B\u51AC\u90FD",
-  "from-ashes-reborn": "\u4F59\u706B\u53D8\u76F8",
-  "gentry-of-hermitage": "\u9675\u85AE\u5E02\u671D",
-  "immaculate-pulse": "\u5FC3\u73E0\u5FAA\u7405",
-  "in-the-name-of-the-rosula": "\u523A\u73AB\u7684\u94ED\u8A93",
-  "invitation-to-mundane-life": "\u70DF\u706B\u4E4B\u9080",
-  "leaves-in-the-wind": "\u53F6\u843D\u98CE\u968F",
-  "moment-of-bloom": "\u8D64\u56E2\u5F00\u65F6",
-  "oni_s-royale": "\u9B3C\u95E8\u6597\u5BB4",
-  "reign-of-serenity": "\u5F71\u5BC2\u5929\u4E0B\u4EBA",
-  "secretum-secretorum": "\u6DF1\u79D8\u4E4B\u606F",
-  "sparkling-steps": "\u95EA\u7130\u7684\u9A7B\u8DB3",
-  "tapestry-of-golden-flames": "\u7130\u8272\u5929\u6CB3",
-  "tempestuous-destiny": "\u52AB\u4E2D\u6CDB\u6EE5",
-  "the-heron_s-court": "\u767D\u9E6D\u4E4B\u5EAD",
-  "the-moongrass-enlightenment": "\u6708\u8349\u7684\u8D50\u6167",
-  "the-transcendent-one-returns": "\u51FA\u5C18\u5165\u4E16",
-  "twilight-arbiter": "\u96F3\u88C1\u51A5\u662D",
-  "twirling-lotus": "\u7FE9\u821E\u6B48\u83B2",
-  "viridescent-vigil": "\u5DE1\u5FA1\u8619\u835F"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  rollButton: "\u7948\u613F{count}\u6B21",
-  stellaFortuna: "\u5BF9\u5E94\u89D2\u8272\u7684\u547D\u661F",
-  loadFailed: "Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    wishTitle: "\u7948\u613F",
-    text: "\u5361\u6C60",
-    allBanner: "\u5168\u90E8\u5361\u6C60",
-    previous: "\u5F80\u671F\u5361\u6C60",
-    findBanner: "\u641C\u7D22\u5361\u6C60",
-    group: "\u5206\u7EC4",
-    beginner: " \u521D\u884C\u8005\u63A8\u8350\u7948\u613F",
-    "character-event": "\u89D2\u8272\u6D3B\u52A8\u7948\u613F",
-    "weapon-event": "\u6B66\u5668\u6D3B\u52A8\u7948\u613F",
-    standard: "\u5E38\u9A7B\u7948\u613F",
-    wishDescription: "\u6BCF\u5341\u6B21\u7948\u613F\u5FC5\u51FA\u56DB\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002",
-    novice: "\u65B0\u624B\u7948\u613F",
-    up: "UP!",
-    beginnerSet: "\u5341\u8FDE8\u6298\uFF0C\u9996\u6B21\u5FC5\u5F97{character}",
-    beginnerNote: "\u300C\u6211\u4F1A\u6CE8\u610F\u5973\u4EC6\u7684\u793C\u4EEA\u3002\u300D",
-    beginnerChance: "\u5269\u4F59\u6B21\u6570\uFF1A{chances}",
-    standardNote: "\u5E38\u9A7B\u7948\u613F\uFF0C\u6C38\u4E45\u6027\u7948\u613F\u6D3B\u52A8\u3002",
-    allWeaponTypes: "\u5168\u90E8\u7C7B\u578B",
-    etc: "\u7B49",
-    probIncreased: "\u83B7\u53D6\u6982\u7387\u63D0\u5347\uFF01",
-    eventNote: "\u6D3B\u52A8\u9650\u5B9A\u4E94\u661F\u89D2\u8272\u4EC5\u5728UP\u671F\u95F4\uFF0C\u901A\u8FC7\u5BF9\u5E94\u7948\u613F\u83B7\u5F97\u3002",
-    viewDetails: "\u5177\u4F53\u5185\u5BB9\u67E5\u770B\u3010\u8BE6\u60C5\u3011"
-  },
-  epitomizedPath: {
-    text: "\u795E\u94F8\u5B9A\u8F68",
-    fatePoint: "\u547D\u5B9A\u503C",
-    cancelPrompt: "\u662F\u5426\u786E\u8BA4\u53D6\u6D88\u5F53\u524D\u7684\u5B9A\u8F68\uFF1F",
-    cancelDesc: "\u53D6\u6D88\u540E\uFF0C\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C\u5C06\u6E05\u7A7A\u3002",
-    selectWeapon: "\u9009\u62E9\u5B9A\u8F68\u6B66\u5668",
-    chartCourseOf: "\u4E3A{target}\u5B9A\u8F68",
-    cancelCourse: "\u53D6\u6D88\u5B9A\u8F68",
-    chartCourse: "\u5B9A\u8F68",
-    courseSetFor: "\u5F53\u524D\u5B9A\u8F68: {selectedCourse}",
-    description: [
-      "\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u662F\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u6240\u7279\u6709\u7684\u7948\u613F\u673A\u5236\uFF1A",
-      "\u5BF9\u671F\u671B\u76845\u661FUP\u6B66\u5668\u8FDB\u884C\u5B9A\u8F68\u540E\uFF0C\u5F53\u901A\u8FC7\u7948\u613F\u5728\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u4E2D<span>\u83B7\u53D6\u975E\u5B9A\u8F68\u76845\u661F\u6B66\u5668\u65F6\uFF0C\u5C06\u83B7\u5F971\u70B9\u547D\u5B9A\u503C</span>\u3002",
-      "\u547D\u5B9A\u503C\u5145\u6EE1\u540E\uFF0C\u5728\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u4E2D\u7948\u613F\u83B7\u5F97\u7684\u4E0B\u4E00\u4EF65\u661F\u6B66\u5668\u5C06\u4F1A\u662F\u901A\u8FC7\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u9009\u5B9A\u7684\u6B66\u5668\u3002",
-      "\u5728\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u4E2D\u7948\u613F<span>\u83B7\u5F97\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u7684\u6B66\u5668\u65F6\uFF0C\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C\u5C06\u4F1A\u6E05\u9664</span>\u3002",
-      "\u672A\u901A\u8FC7\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u7948\u613F\u5C06\u4E0D\u4F1A\u7D2F\u79EF\u547D\u5B9A\u503C\u3002",
-      "\u6B66\u5668\u7684\u5B9A\u8F68\u72B6\u6001\u53EF\u4EE5\u8FDB\u884C\u66F4\u6362\uFF0C\u4E5F\u53EF\u4EE5\u53D6\u6D88\u5B9A\u8F68\u3002<span>\u66F4\u6362\u6216\u53D6\u6D88\u65F6\uFF0C\u4F1A\u6E05\u9664\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C</span>\u3002",
-      "<span>\u672C\u671F\u300C\u795E\u94F8\u8D4B\u5F62\u300D\u7ED3\u675F\u65F6\uFF0C\u5DF2\u79EF\u7D2F\u7684\u547D\u5B9A\u503C\u4E5F\u5C06\u6E05\u9664</span>\u3002"
-    ]
-  },
-  result: {
-    skip: "\u8DF3\u8FC7",
-    meteorFailed: "\u7948\u613F\u52A8\u753B\u52A0\u8F7D\u5931\u8D25",
-    "new": "\u65B0",
-    convertion: "\u8F6C\u5316",
-    title: "{item} \u7948\u613F\u7ED3\u679C"
-  }
-};
-const outfit = {
-  heading: "\u89D2\u8272\u88C5\u626E",
-  "default": "\u9ED8\u8BA4",
-  setOutfit: "\u8BBE\u7F6E\u88C5\u626E",
-  owned: "\u5DF2\u62E5\u6709",
-  purchasePrompt: "\u60A8\u8FD8\u6CA1\u6709\u6B64\u88C5\u626E\u5BF9\u5E94\u7684\u89D2\u8272\uFF0C\u60A8\u786E\u5B9A\u8981\u8D2D\u4E70\u6B64\u88C5\u626E\u5417\uFF1F",
-  promptInfo: "\u83B7\u5F97\u76F8\u5E94\u7684\u89D2\u8272\u540E\uFF0C\u60A8\u4ECD\u7136\u53EF\u4EE5\u4F7F\u7528\u6B64\u88C5\u626E",
-  obtained: "New Outfit Obtained",
-  unlocked: "{character}: Outfit Unlocked",
-  item: {
-    "5-star-outrider": {
-      name: "\u300C\u6EE1\u5206\u7684\u4FA6\u5BDF\u9A91\u58EB\u300D"
-    },
-    "favonian-fevotion": {
-      name: "\u98CE\u4E4B\u8654\u62A4"
-    },
-    "flowing-fate": {
-      name: "\u661F\u547D\u6D41\u8F6C"
-    },
-    "executor_s-thorns": {
-      name: "\u5904\u5211\u68D8\u523A"
-    },
-    "sea-breeze-dandelion": {
-      name: "\u6D77\u98CE\u4E4B\u68A6",
-      description: "\u7434\u7684\u590F\u65E5\u88C5\u675F\u3002\u6E05\u51C9\u800C\u4E0D\u5931\u4F18\u96C5\uFF0C\u662F\u6D77\u6EE8\u4E4B\u6E38\u7684\u7EDD\u4F73\u642D\u914D\u3002"
-    },
-    "summertime-sparkle": {
-      name: "\u95EA\u8000\u534F\u594F",
-      description: "\u82AD\u82AD\u62C9\u7684\u6D77\u6EE9\u88C5\u626E\u3002\u6D0B\u6EA2\u7740\u590F\u65E5\u6D3B\u529B\u7684\u4FCF\u4E3D\u77ED\u88D9\uFF0C\u4F3C\u4E4E\u6563\u53D1\u7740\u6D77\u6D0B\u7684\u6E05\u723D\u6C14\u606F\u3002"
-    },
-    "opulent-splendor": {
-      name: "\u9713\u88FE\u8E41\u8DF9",
-      description: "\u523B\u6674\u7684\u793C\u670D\u88C5\u626E\u3002\u4E8E\u6D77\u706F\u8282\u4E4B\u826F\u8FB0\u7F8E\u666F\u4E2D\uFF0C\u5F80\u65E5\u8F9B\u52B3\u6D53\u58A8\u6240\u7ED8\u7684\u7EBF\u6761\uFF0C\u4EA4\u7EC7\u6210\u4ECA\u591C\u8F7B\u76C8\u800C\u7470\u4E3D\u7684\u5BB9\u59FF\u3002"
-    },
-    "orchid_s-evening-gown": {
-      name: "\u7EB1\u4E2D\u5E7D\u5170",
-      description: "\u51DD\u5149\u7684\u793C\u670D\u88C5\u626E\u3002\u7EC0\u84DD\u957F\u88D9\u52FE\u52D2\u51FA\u4E3D\u4EBA\u4F18\u96C5\u7684\u66F2\u7EBF\uFF0C\u811A\u8E1D\u4E0A\u7684\u8776\u7FFC\u53C8\u4E3A\u5979\u5E73\u6DFB\u4E86\u51E0\u5206\u8F7B\u76C8\u3002"
-    },
-    "ein-immernachtstraum": {
-      name: "\u6781\u591C\u7EC8\u68A6",
-      description: "\u7687\u5973\u83F2\u8C22\u5C14\u7684\u796D\u793C\u7740\u88C5\u3002\u613F\u9AD8\u8D35\u7684\u4EBA\u6C38\u8FDC\u8446\u6709\u52C7\u6C14\u3001\u8BDA\u631A\u4E0E\u5584\u5FC3\uFF0C\u5982\u6B64\uFF0C\u90AA\u6076\u5FC5\u65E0\u6CD5\u632B\u8D25\u5979\u3002"
-    },
-    "red-dead-of-night": {
-      name: "\u6BB7\u7EA2\u7EC8\u591C",
-      description: "\u8FEA\u5362\u514B\u9690\u79D8\u884C\u52A8\u65F6\u6240\u7A7F\u7684\u8863\u88C5\u4E4B\u4E00\uFF0C\u5982\u9634\u5F71\u4E4B\u4E2D\u7FFB\u817E\u7684\u706B\u7130\u3002\u654C\u4EBA\u89C6\u91CE\u5C3D\u5934\u6240\u7559\u4E0B\u7684\u6BB7\u7EA2\u6B8B\u75D5\uFF0C\u5373\u662F\u4ED6\u4EEC\u4F59\u751F\u6325\u4E4B\u4E0D\u53BB\u7684\u68A6\u9B47\u3002"
-    },
-    "a-sobriquet-under-shade": {
-      name: "\u53F6\u9690\u82B3\u540D",
-      description: "\u4E3D\u838E\u91CD\u6E38\u987B\u5F25\u65F6\u8BF7\u4EBA\u8BA2\u505A\u7684\u670D\u9970\u3002\u88D9\u88C5\u5E72\u7EC3\u800C\u4E0D\u5931\u4F18\u96C5\uFF0C\u4E0E\u5979\u5B66\u751F\u65F6\u4EE3\u7684\u5236\u670D\u6709\u51E0\u5206\u76F8\u4F3C\u4E4B\u5904\u3002"
-    },
-    "springbloom-missive": {
-      name: "\u82B1\u65F6\u6765\u4FE1",
-      description: "\u795E\u91CC\u7EEB\u534E\u7684\u51FA\u6E38\u88C5\u626E\u3002\u6BD4\u7167\u8F7B\u5C0F\u8BF4\u63D2\u753B\u4E2D\u7684\u67AB\u4E39\u5973\u6027\u88C5\u675F\u800C\u5236\u4F5C\u7684\u6D0B\u88C5\uFF0C\u4F3C\u4E4E\u80FD\u501F\u5176\u4E00\u7AA5\u67AB\u4E39\u6DD1\u5973\u7684\u751F\u6D3B\u98CE\u8C8C\u3002"
-    },
-    "blossoming-starlight": {
-      name: "\u742A\u82B1\u661F\u70DB",
-      description: "\u53EF\u8389\u51FA\u6F14\u5173\u952E\u5267\u76EE\u65F6\u6240\u7A7F\u7684\u7CBE\u81F4\u670D\u88C5\uFF0C\u8272\u5F69\u660E\u4E3D\uFF0C\u5982\u540C\u70B9\u7F00\u7740\u5976\u6CB9\u82B1\u6735\u548C\u660E\u7EA2\u8721\u70DB\u7684\u86CB\u7CD5\uFF0C\u80FD\u5C06\u5FEB\u4E50\u4E0E\u7B11\u5BB9\u5E26\u5F80\u5192\u9669\u6240\u81F3\u7684\u6BCF\u4E2A\u89D2\u843D\u3002"
-    },
-    "sailwind-shadow": {
-      name: "\u5E06\u5F71\u6E38\u98CE",
-      description: "\u51EF\u4E9A\u5728\u821E\u53F0\u4E0A\u9970\u6F14\u300C\u77ED\u5200\u5927\u76D7\u300D\u65F6\u7684\u88C5\u626E\uFF0C\u4EE5\u300C\u5438\u775B\u300D\u4E3A\u8BBE\u8BA1\u539F\u5219\u7684\u534E\u4E3D\u670D\u88C5\u3002\u4E0D\u8FC7\u8863\u670D\u7A7F\u8D77\u6765\u5E76\u4E0D\u9EBB\u70E6\uFF0C\u6700\u82B1\u65F6\u95F4\u6253\u7406\u7684\u662F\u9970\u54C1\u4E0E\u77ED\u5200\u3002"
-    }
-  }
-};
-const details = {
-  text: "\u8BE6\u60C5",
-  promotional: "UP\u7269\u54C1",
-  itemlist: "\u7269\u54C1\u6E05\u5355",
-  increasedRate: "\u4EE5\u4E0B\u5185\u5BB9\u51FA\u73B0[\u6982\u7387UP!!!]",
-  percentageDrop: "\u5360{rarity}\u661F\u51FA\u7387\u7684: {percentage}",
-  wishDetails: "\u7948\u613F\u8BE6\u60C5",
-  probInfo: "{rarity}\u661F\u7269\u54C1\u57FA\u7840\u51FA\u7387\uFF1A{singlePercentage} (\u542B\u4FDD\u5E95\u7EFC\u5408\u51FA\u7387\uFF1A{avgPercentage})",
-  itemWishFor: "\u4EE5\u4E0B\u4E3A\u7948\u613F\u7269\u54C1\u6E05\u5355\uFF1A",
-  itemType: "\u7C7B\u578B",
-  itemName: "\u540D\u79F0",
-  beginnerInfo: "\u65E0\u65F6\u95F4\u4E0A\u9650 (\u62BD\u53D620\u6B21\u540E\u5173\u95ED)",
-  limited: "\u9650\u65F6\u6D3B\u52A8",
-  permanent: "\u6C38\u4E45",
-  alert: "\u203B \u672C\u7948\u613F\u5C5E\u4E8E\u300C{wishName}\u300D\uFF0C\u5176\u7948\u613F\u6B21\u6570\u4FDD\u5E95\u4F1A\u4E00\u76F4\u7D2F\u8BA1\u5728\u300C{wishName}\u300D\u4E2D\uFF0C\u4E0E\u5176\u4ED6\u7948\u613F\u7684\u7948\u613F\u6B21\u6570\u4FDD\u5E95\u76F8\u4E92\u72EC\u7ACB\u8BA1\u7B97\uFF0C\u4E92\u4E0D\u5F71\u54CD\u3002",
-  beginner: [
-    "\u521D\u884C\u8005\u63A8\u8350\u7948\u613F\u4E3A<span>\u6C38\u4E45</span>\u6027\u7948\u613F\u6D3B\u52A8\uFF0C\u662F\u9762\u5411\u65B0\u52A0\u5165\u63D0\u74E6\u7279\u5927\u9646\u7684\u65C5\u884C\u8005\u7684\u63A8\u8350\u7948\u613F\u3002\u5728\u672C\u7948\u613F\u5185\uFF0C\u5341\u8FDE\u6240\u6D88\u8017\u7684\u76F8\u9047\u4E4B\u7F18\u6570\u91CF\u53EF\u4EAB\u53D78\u6298\u4F18\u60E0\uFF0C\u4E14\u9996\u6B21\u5341\u8FDE\u5FC5\u4F1A\u83B7\u53D6\u300C{character}\u300D\uFF0C\u7B2C\u4E8C\u6B21\u5341\u8FDE\u5FC5\u4F1A\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7684\u89D2\u8272\uFF01\u672C\u7948\u613F\u5B58\u5728\u7948\u613F\u6B21\u6570\u4E0A\u9650\uFF0C\u6700\u9AD8\u4E3A<span>20</span>\u6B21\uFF0C\u62BD\u53D620\u6B21\u540E<span>\u672C\u6D3B\u52A8\u7948\u613F\u754C\u9762\u5C06\u5173\u95ED</span>\u3002",
-    "\u203B\u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002",
-    "\u3013\u7948\u613F\u89C4\u5219\u3013",
-    "5\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u613F\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u7269\u54C1\u3002<br> 4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>13.000%</span>\u3002\u6700\u591A<span>10</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>99.400%</span>\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>0.600%</span>\u3002"
-  ],
-  standard: [
-    "\u300C{bannerName}\u300D\u5E38\u9A7B\u7948\u613F\u4E3A\u6C38\u4E45\u6027\u7948\u613F\u6D3B\u52A8\uFF0C\u73A9\u5BB6\u53EF\u4EE5\u62BD\u53D6\u975E\u9650\u5B9A\u89D2\u8272\u4E0E\u6B66\u5668\u3002<br/>\u5728\u672C\u7948\u613F\u5185\uFF0C\u6BCF10\u6B21\u7948\u613F<span>\u5FC5\u4F1A</span>\u83B7\u5F97\u81F3\u5C111\u4E2A4\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002",
-    "\u203B\u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002",
-    "\u3013\u7948\u613F\u89C4\u5219\u3013",
-    "5\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u613F\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u7269\u54C1\u3002<br> 4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>13.000%</span>\u3002\u6700\u591A<span>10</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>99.400%</span>\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>0.600%</span>\u3002"
-  ],
-  events: [
-    "\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u5DF2\u5F00\u542F\u3002\u6D3B\u52A8\u671F\u95F4\u5185\uFF0C\u9650\u5B9A5\u661F\u89D2\u8272\u300C{featuredCharacter} \u300D\u4EE5\u53CA4\u661F\u89D2\u8272 {rateupCharacters} \u7684\u7948\u613F\u83B7\u53D6\u6982\u7387\u5C06<span>\u5927\u5E45\u63D0\u5347</span>\uFF01 <span> \u203B\u4EE5\u4E0A\u89D2\u8272\u4E2D\uFF0C\u9650\u5B9A\u89D2\u8272\u4E0D\u4F1A\u8FDB\u5165\u300C\u5954\u884C\u4E16\u95F4\u300D\u5E38\u9A7B\u7948\u613F\u3002 </span>",
-    "\u203B \u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002",
-    "\u3013\u7948\u613F\u89C4\u5219\u3013",
-    "\u30105\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C5\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.600%</span>\uFF0C\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u89D2\u8272\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52305\u661F\u89D2\u8272\u65F6\uFF0C\u6709<span>50.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F5\u661FUP\u89D2\u8272\u300C{featuredCharacter}\u300D\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u89D2\u8272<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F5\u661FUP\u89D2\u8272\u3002",
-    "\u30104\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C\u53F6\u843D\u98CE\u968F\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>13.000%</span>\u3002\u6700\u591A<span>10</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>99.400%</span>\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A<span>0.600%</span>\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52304\u661F\u7269\u54C1\u65F6\uFF0C\u6709<span>50.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F4\u661FUP\u89D2\u8272{rateupCharacters}\u4E2D\u7684\u4E00\u4E2A\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F4\u661FUP\u89D2\u8272\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52304\u661FUP\u7269\u54C1\u65F6\uFF0C\u6BCF\u4E2A\u672C\u671F4\u661FUP\u89D2\u8272\u7684\u83B7\u53D6\u6982\u7387\u5747\u7B49\u3002"
-  ],
-  weapons: [
-    "\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u73B0\u5DF2\u5F00\u542F\u3002\u6D3B\u52A8\u671F\u95F4\u5185\uFF0C\u9650\u5B9A5\u661F\u6B66\u5668{featuredWeapon1}\u30015\u661F\u6B66\u5668{featuredWeapon2}\u4EE5\u53CA4\u661F\u6B66\u5668{rateupWeapons}\u7684\u7948\u613F\u83B7\u53D6\u6982\u7387\u5C06<span>\u5927\u5E45\u63D0\u5347</span>\uFF01<br/> <span> \u203B\u4EE5\u4E0A\u6B66\u5668\u4E2D\uFF0C\u9650\u5B9A\u6B66\u5668\u4E0D\u4F1A\u8FDB\u5165\u300C\u5954\u884C\u4E16\u95F4\u300D\u5E38\u9A7B\u7948\u613F\u3002</span>",
-    "\u203B\u4E00\u822C\u60C5\u51B5\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9002\u7528\u57FA\u7840\u6982\u7387\uFF0C\u5982\u89E6\u53D1\u6982\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u4F53\u89C4\u5219\u4E3A\u51C6\u3002",
-    "\u3013\u7948\u613F\u89C4\u5219\u3013",
-    "\u30105\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C5\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>0.700%</span>\uFF0C\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>1.850%</span>\uFF0C\u6700\u591A<span>80</span>\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D65\u661F\u89D2\u8272\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52305\u661F\u89D2\u8272\u65F6\uFF0C\u6709<span>75.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F5\u661FUP\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76845\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F5\u661FUP\u6B66\u5668\u3002<br/>\u5728\u672A\u901A\u8FC7\u547D\u5B9A\u503C\u8FBE\u5230\u6EE1\u503C\u83B7\u53D6\u5B9A\u8F68\u6B66\u5668\u7684\u60C5\u51B5\u4E0B\uFF0C\u5F53\u7948\u613F\u83B7\u53D6\u52305\u661FUP\u7269\u54C1\u65F6\uFF0C\u6BCF\u628A\u672C\u671F5\u661FUP\u6B66\u5668\u7684\u83B7\u53D6\u6982\u7387\u5747\u7B49\u3002<br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C\u53EF\u4F7F\u7528\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5BF9\u672C\u671F5\u661FUP\u6B66\u5668\u8FDB\u884C\u5B9A\u8F68\uFF0C\u5B9A\u8F68\u6B66\u5668\u7684\u9009\u62E9\u4EC5\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\u751F\u6548\u3002<br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C\u4F7F\u7528\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5B9A\u8F68\u6B66\u5668\u540E\uFF0C\u5F53\u83B7\u53D6\u5230\u76845\u661F\u6B66\u5668\u4E3A\u975E\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u83B7\u5F971\u70B9\u547D\u5B9A\u503C\uFF0C\u547D\u5B9A\u503C\u8FBE\u5230<span>\u6EE1\u503C</span>\u540E\uFF0C\u5728\u672C\u7948\u613F\u4E2D\u83B7\u5F97\u7684\u4E0B\u4E00\u628A5\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u4E3A\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u3002\u83B7\u53D6\u5230\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u65E0\u8BBA\u5F53\u524D\u547D\u5B9A\u503C\u662F\u5426\u8FBE\u5230\u6EE1\u503C\uFF0C\u90FD\u5C06\u4F1A\u91CD\u7F6E\u4E3A<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u8BA1\u3002<br/>\u672A\u4F7F\u7528\u300C\u795E\u94F8\u5B9A\u8F68\u300D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u5C06<span>\u4E0D\u4F1A</span>\u7D2F\u79EF\u547D\u5B9A\u503C\u3002<br/>\u5B9A\u8F68\u6B66\u5668\u53EF\u8FDB\u884C\u66F4\u6362\u6216\u53D6\u6D88\u3002\u66F4\u6362\u6216\u53D6\u6D88\u5F53\u524D\u5B9A\u8F68\u6B66\u5668\u65F6\uFF0C\u547D\u5B9A\u503C\u5C06\u4F1A\u91CD\u7F6E\u4E3A<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u8BA1\u3002<br/>\u203B\u672C\u7948\u613F\u4E2D\u7684\u547D\u5B9A\u503C\u4EC5\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\u751F\u6548\uFF0C\u7948\u613F\u7ED3\u675F\u540E\u547D\u5B9A\u503C\u5C06\u4F1A\u91CD\u7F6E\u4E3A<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u8BA1\u3002",
-    "\u30104\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52A8\u7948\u613F\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>6.000%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>3.000%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u613F\u7684\u57FA\u7840\u6982\u7387\u4E3A<span>3.000%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u613F\u7684\u7EFC\u5408\u6982\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u4E3A<span>14.500%</span>\u3002\u6700\u591A10\u6B21\u7948\u613F\u5FC5\u5B9A\u80FD\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u901A\u8FC7\u4FDD\u5E95\u83B7\u53D64\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A99.300%\uFF0C\u83B7\u53D65\u661F\u7269\u54C1\u7684\u6982\u7387\u4E3A0.700%\u3002 <br/> \u5F53\u7948\u613F\u83B7\u53D6\u52304\u661F\u7269\u54C1\u65F6\uFF0C\u6709<span>75.000%</span>\u7684\u6982\u7387\u4E3A\u672C\u671F4\u661FUP\u6B66\u5668{rateupWeapons}\u4E2D\u7684\u4E00\u4E2A\u3002\u5982\u679C\u672C\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u613F\u83B7\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u4E3A\u672C\u671F4\u661FUP\u6B66\u5668\u3002\u5F53\u7948\u613F\u83B7\u53D6\u52304\u661FUP\u7269\u54C1\u65F6\uFF0C\u6BCF\u628A\u672C\u671F4\u661FUP\u6B66\u5668\u7684\u83B7\u53D6\u6982\u7387\u5747\u7B49\u3002"
-  ],
-  convertion: {
-    fiveStar: "\u7948\u613F\u83B7\u5F975\u661F\u6B66\u5668\u65F6\uFF0C\u4F1A\u540C\u65F6\u83B7\u5F9710\u4E2A{starglitter}\u4F5C\u4E3A\u526F\u4EA7\u7269\uFF1B",
-    fourStar: "\u83B7\u5F974\u661F\u6B66\u5668\u65F6\uFF0C\u4F1A\u540C\u65F6\u83B7\u5F972\u4E2A{starglitter}\u4F5C\u4E3A\u526F\u4EA7\u7269\uFF1B",
-    threeStar: "\u83B7\u5F973\u661F\u6B66\u5668\u65F6\uFF0C\u4F1A\u540C\u65F6\u83B7\u5F9715\u4E2A{stardust}\u4F5C\u4E3A\u526F\u4EA7\u7269\u3002"
-  },
-  duplicate: {
-    heading: "\u3013\u82E5\u83B7\u5F97\u91CD\u590D\u89D2\u8272\u3013",
-    text: "\u65E0\u8BBA\u901A\u8FC7\u4F55\u79CD\u65B9\u5F0F\uFF08\u5305\u542B\u4F46\u4E0D\u9650\u4E8E\u7948\u613F\u3001\u5546\u57CE\u5151\u6362\u3001\u7CFB\u7EDF\u8D60\u9001\u7B49\uFF09\u7B2C2~7\u6B21\u83B7\u5F97\u76F8\u540C{rarity}\u661F\u89D2\u8272\u65F6\uFF0C\u6BCF\u6B21\u5C06\u8F6C\u5316\u4E3A1\u4E2A{stellaFortuna}\u548C10\u4E2A{starglitter}\uFF1B\u7B2C8\u6B21\u53CA\u4E4B\u540E\u83B7\u5F97\uFF0C\u5C06\u4EC5\u8F6C\u5316\u4E3A25\u4E2A{starglitter}\u3002"
-  }
-};
-const history = {
-  title: "\u7948\u613F\u5386\u53F2",
-  text: "\u5386\u53F2\u8BB0\u5F55",
-  resetButton: "\u91CD\u7F6E",
-  resetPromptTitle: "\u91CD\u7F6E\u8BB0\u5F55\uFF1F",
-  resetPrompt: "\u5B83\u8FD8\u4F1A\u4ECE\u60A8\u7684\u5E93\u5B58\u4E2D\u5220\u9664\u4E0E {bannerName} \u5361\u6C60\u76F8\u5173\u7684\u6240\u6709\u89D2\u8272\u548C\u6B66\u5668\u3002 <br /> \u4F60\u786E\u5B9A\u8981\u91CD\u7F6E\u5417\uFF1F",
-  resetSuccess: "\u5DF2\u6210\u529F\u91CD\u7F6E\uFF01",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "\u7948\u613F\u7C7B\u578B\u9009\u62E9:",
-  disclaimer: "\u6211\u4EEC\u4ECE\u4E0D\u5C06\u60A8\u7684\u6570\u636E\u4FDD\u5B58\u5728\u4E91\u5B58\u50A8\u4E2D\u3002 \u6240\u6709\u6570\u636E\u90FD\u5B58\u50A8\u5230 IndexedDB\uFF0C\u8FD9\u610F\u5473\u7740\u6570\u636E\u4FDD\u5B58\u5728\u60A8\u7684\u6D4F\u89C8\u5668\u5B58\u50A8\u4E2D\u3002 \u9664\u975E\u60A8\u901A\u8FC7\u5220\u9664/\u91CD\u7F6E\u6309\u94AE\u624B\u52A8\u5220\u9664\u5B83\u6216\u6E05\u9664\u6D4F\u89C8\u5668\u6570\u636E\uFF0C\u5426\u5219\u5B83\u6C38\u8FDC\u4E0D\u4F1A\u5220\u9664\u3002",
-  currentPity: "\u5F53\u524D\u5DF2\u57AB:",
-  totalPull: "\u603B\u5171\u62BD\u53D6:",
-  totalSpend: "\u5DF2\u82B1\u8D39:",
-  filterTxt: "\u7B5B\u9009",
-  filter: "{rarity} \u661F",
-  filterAll: "\u5168\u90E8",
-  pity: "\u5DF2\u57AB",
-  timeReceived: "\u7948\u613F\u65F6\u95F4",
-  waiting: "\u8BF7\u7A0D\u7B49",
-  noData: "\u65E0\u53EF\u7528\u6570\u636E",
-  untracked: "\u672A\u8FFD\u8E2A",
-  item: "\u7269\u54C1",
-  win: "\u5C0F\u4FDD\u5E95",
-  lose: "\u6B6A",
-  guaranteed: "\u5927\u4FDD\u5E95",
-  selected: "\u5DF2\u5B9A\u8F68",
-  olderLayout: "\u65E7\u5E03\u5C40",
-  switchv2: "\u5207\u6362\u5230\u65B0\u7248\u5E03\u5C40"
-};
-const shop = {
-  text: "\u5546\u57CE",
-  paimonBargains: "\u5C18\u8F89\u5151\u6362",
-  fateNeeded: "\u7F3A\u5C11{rollQty}\u4E2A{currency}\uFF0C",
-  primoNeeded: "\u662F\u5426\u6D88\u8017{primoPrice}\u539F\u77F3\u8D2D\u4E70\uFF1F",
-  purchaseUpto: "\u9650\u8D2D 1",
-  purchaseConfirm: "\u786E\u8BA4\u8D2D\u4E70",
-  exchangeHeading: "\u5151\u6362\u7269\u54C1",
-  purchaseHeading: "\u8D2D\u4E70\u7269\u54C1",
-  purchaseButton: "\u8D2D\u4E70",
-  pay: "\u652F\u4ED8",
-  product: "\u4EA7\u54C1",
-  consume: "\u6D88\u8017",
-  selectPayment: "\u9009\u62E9\u652F\u4ED8\u65B9\u5F0F",
-  unrealWallet: "\u84DD\u7EFF\u4FEE\u6539\u5668\u7834\u89E3\u7248",
-  convertPrimo: "\u81EA\u52A8\u8F6C\u6362\u4E3A\u539F\u77F3\uFF1F",
-  proceedPayment: "\u786E\u8BA4\u4EA4\u6613",
-  qty: "\u6570\u91CF",
-  insufficient: "\u8D27\u5E01\u4E0D\u8DB3",
-  crystalTopup: "\u51DD\u53D6\u7ED3\u6676",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "\u8D2D\u4E70\u521B\u4E16\u7ED3\u6676",
-  recomendedHeading: "\u63A8\u8350\u5546\u54C1",
-  paimonHeading: "\u5C18\u8F89\u5151\u6362",
-  welkinNote: "\u53EF\u7D2F\u8BA1\u8D2D\u4E70",
-  limitedOffer: "\u9650\u65F6\u63D0\u4F9B\u8D2D\u4E70",
-  noLimitTime: "\u5237\u65B0\u65F6\u95F4\uFF1A\u4E0D\u4F1A\u5237\u65B0",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "\u7A7A\u6708\u795D\u798F",
-    newOutfit: "\u89D2\u8272\u88C5\u626E \xB7 \u65B0\u88C5",
-    dayRemaining: "\u5269\u4F59 {days} \u5929",
-    alreadyClaimed: "\u672C\u65E5\u5DF2\u9886\u53D6",
-    instantlyGet: "\u8D2D\u4E70\u5373\u53EF\u83B7\u5F97",
-    dailyGift: "\u6BCF\u65E5\u8D60\u9001",
-    obtainTotal: "*\u6709\u6548\u671F\u6301\u7EED30\u5929\uFF01\u7D2F\u8BA1\u53EF\u83B7\u5F97{totalGenesis}\u521B\u4E16\u7ED3\u6676\u548C{totalPrimo}\u539F\u77F3\uFF01",
-    claimingBlessing: "\u70B9\u51FB\u9886\u53D6\u4ECA\u65E5\u7A7A\u6708\u795D\u798F\u5956\u52B1",
-    issuedPurchase: "\u8D2D\u4E70\u65F6\u83B7\u5F97",
-    collect: "\u6BCF\u65E5\u767B\u5F55\u5956\u52B1"
-  },
-  exchange: {
-    starglitter: "\u65E0\u4E3B\u7684\u661F\u8F89",
-    stardust: "\u65E0\u4E3B\u7684\u661F\u5C18",
-    primogem: "\u539F\u77F3\u8D2D\u4E70"
-  },
-  item: {
-    genesis: "\u521B\u4E16\u7ED3\u6676",
-    primogem: "\u539F\u77F3",
-    intertwined: "\u7EA0\u7F20\u4E4B\u7F18",
-    acquaint: "\u76F8\u9047\u4E4B\u7F18",
-    starglitter: "\u65E0\u4E3B\u7684\u661F\u8F89",
-    stardust: "\u65E0\u4E3B\u7684\u661F\u5C18"
-  },
-  description: {
-    intertwined: "\u8FDE\u7ED3\u68A6\u60F3\u7684\u547D\u8FD0\u4E4B\u79CD\u3002\u7F18\u77F3\u8F89\u5149\u80FD\u8BA9\u672C\u65E0\u4EA4\u96C6\u7684\u547D\u8FD0\u4EA4\u9519\uFF0C\u8BA9\u5F7C\u6B64\u7684\u68A6\u60F3\u76F8\u8FDE\uFF0C\u6B63\u5982\u8FD9\u79CD\u5149\u8F89\u5C06\u7FA4\u661F\u8FDE\u6210\u5FC3\u4E4B\u6240\u5411\u7684\u56FE\u5F62\u3002",
-    acquaint: "\u70B9\u4EAE\u661F\u7A7A\u7684\u5E0C\u671B\u4E4B\u79CD\u3002\u65E0\u8BBA\u76F8\u9694\u591A\u8FDC\uFF0C\u547D\u5B9A\u76F8\u9047\u7684\u4EBA\u90FD\u4F1A\u53D7\u7F18\u77F3\u8F89\u5149\u7684\u6307\u5F15\uFF0C\u5728\u661F\u7A7A\u4E0B\u76F8\u4F1A\u3002"
-  }
-};
-const inventory = {
-  text: "\u4ED3\u5E93",
-  unsetOutfit: "\u672A\u8BBE\u7F6E\u88C5\u626E",
-  setOutfit: "\u8BBE\u7F6E\u89D2\u8272\u88C5\u626E",
-  refinement: "\u7CBE\u70BC\u7B49\u7EA7 {count}",
-  constellation: "\u547D\u4E4B\u5EA7\u5C42\u6570 {count}",
-  extra: "{count} \u5DF2\u6EE1\u5E76\u6EA2\u51FA",
-  firstSummon: "\u9996\u6B21\u83B7\u5F97: {date}",
-  notOwned: "\u5C1A\u672A\u62E5\u6709",
-  sort: "\u6392\u5E8F",
-  rarity: "\u7A00\u6709\u5EA6",
-  name: "\u540D\u5B57",
-  quantity: "\u6570\u91CF",
-  element: "\u5143\u7D20",
-  release: "Release Date",
-  type: "\u7C7B\u578B",
-  owned: "\u5DF2\u83B7\u5F97",
-  showAllOption: "\u663E\u793A\u6240\u6709{item}"
-};
-const menu = {
-  upload: "\u4E0A\u4F20",
-  no: "\u5426",
-  yes: "\u662F",
-  text: "\u83DC\u5355",
-  feedback: "Feedback",
-  options: "\u9009\u9879",
-  updates: "\u66F4\u65B0\u5386\u53F2",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "\u8BED\u8A00",
-  currency: "\u8D27\u5E01",
-  fates: "\u62BD\u5361\u6B21\u6570",
-  unlimited: "\u65E0\u9650",
-  manual: "\u624B\u52A8\u8F93\u5165",
-  mute: "\u7981\u7528\u97F3\u9891\u97F3\u6548",
-  switchBanner: "\u5207\u6362\u5361\u6C60",
-  showAllitems: "\u5728\u5E93\u5B58\u4E2D\u663E\u793A\u6240\u6709\u7269\u54C1",
-  animatedbg: "\u52A8\u753B\u80CC\u666F",
-  autoskip: "\u81EA\u52A8\u8DF3\u8FC7\u7948\u613F\u52A8\u753B",
-  multiRoll: "\u591A\u62BD\u6B21\u6570",
-  factoryReset: "\u6E05\u9664\u6570\u636E\u5E76\u6062\u590D\u9ED8\u8BA4",
-  resetTitle: "\u6062\u590D\u9ED8\u8BA4",
-  rotate: "\u65CB\u8F6C\u8BBE\u5907\u4EE5\u83B7\u5F97\u66F4\u597D\u4F53\u9A8C",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "\u6E05\u7A7A\u7F13\u5B58 ( {size} ) \uFF1F<small>\u52FE\u9009\u672C\u9879\u5E76\u6062\u590D\u540E\u5C06\u4F1A\u91CD\u8F7D\u8D44\u6E90\uFF01</small>",
-  resetButton: "\u73B0\u5728\u91CD\u7F6E",
-  resetPrompt: "\u60A8\u786E\u5B9A\u6E05\u9664<strong>\u6240\u6709\u6570\u636E</strong>\u5E76\u6062\u590D\u9ED8\u8BA4\u5417\uFF1F",
-  resetSuccess: "\u5DF2\u6210\u529F\u91CD\u7F6E",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "\u5728\u8FD9\u91CC\u641E\u4E00\u4E2A\u65B0\u7684\uFF01",
-  noKey: "\u6CA1\u6709\u8D5E\u52A9\u7801\uFF1F",
-  verifyFail: "\u65E0\u6CD5\u9A8C\u8BC1\u8D5E\u52A9\u7801\uFF0C\u8BF7\u68C0\u67E5\u60A8\u7684\u7F51\u7EDC\u8FDE\u63A5\uFF01",
-  invalidKey: "\u60A8\u7684\u8D5E\u52A9\u7801\u65E0\u6548",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "\u8F93\u5165\u8D5E\u52A9\u7801",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* \u6211\u9700\u8981\u5BF9\u690D\u5165\u5E7F\u544A\u884C\u4E3A\u8868\u793A\u6B49\u610F\u3002\u5B9E\u9645\u4E0A\u6211\u4E5F\u4E0D\u60F3\u7834\u574F\u60A8\u7684\u64CD\u4F5C\u4F53\u9A8C\uFF0C\u4F46\u6211\u6CA1\u6709\u4EFB\u4F55\u56E2\u961F\u6216\u8D5E\u52A9\u5546\u6765\u7EF4\u6301\u8FD9\u4E2A\u5E94\u7528\u7684\u8FD0\u8425\u3002\u5982\u679C\u4F60\u4E0D\u60F3\u82B1\u94B1\u7684\u8BDD\uFF0C\u4F60\u4ECD\u65E7\u53EF\u4EE5\u901A\u8FC7\u542F\u7528\u5E7F\u544A\u62E6\u622A\u63D2\u4EF6\u6216\u8005\u81EA\u5B9A\u4E49DNS\uFF0C\u6211\u4E0D\u4F1A\u5BF9\u5176\u8FDB\u884C\u9650\u5236\u3002"
-};
-const zhCN = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  zhCN as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-CN2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-CN2.js
deleted file mode 100644
index 94e19497..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-CN2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "\u6076\u738B\u4E38";
-const rainslasher = "\u96E8\u88C1";
-const rust = "\u5F13\u85CF";
-const slingshot = "\u5F39\u5F13";
-const verdict = "\u88C1\u65AD";
-const albedo = {
-  name: "\u963F\u8D1D\u591A",
-  title: "\u767D\u57A9\u4E4B\u5B50"
-};
-const alhaitham = {
-  name: "\u827E\u5C14\u6D77\u68EE",
-  title: "\u8BF2\u97EC\u8BE4\u8A00"
-};
-const amber = {
-  name: "\u5B89\u67CF",
-  title: "\u98DE\u884C\u51A0\u519B"
-};
-const baizhu = {
-  name: "\u767D\u672F",
-  title: "\u9075\u751F\u5408\u548C"
-};
-const barbara = {
-  name: "\u82AD\u82AD\u62C9",
-  title: "\u95EA\u8000\u5076\u50CF"
-};
-const beidou = {
-  name: "\u5317\u6597",
-  title: "\u65E0\u5195\u7684\u9F99\u738B"
-};
-const bennett = {
-  name: "\u73ED\u5C3C\u7279",
-  title: "\u547D\u8FD0\u8BD5\u91D1\u77F3"
-};
-const candace = {
-  name: "\u574E\u8482\u4E1D",
-  title: "\u6D6E\u91D1\u7684\u8A93\u613F"
-};
-const charlotte = {
-  name: "\u590F\u6D1B\u8482",
-  title: "\u6717\u955C\u7D22\u771F"
-};
-const chevreuse = {
-  name: "\u590F\u6C83\u857E",
-  title: "\u660E\u5F8B\u51B3\u7F5A"
-};
-const chongyun = {
-  name: "\u91CD\u4E91",
-  title: "\u96EA\u878D\u6709\u8E2A"
-};
-const collei = {
-  name: "\u67EF\u83B1",
-  title: "\u8403\u5FF5\u521D\u8616"
-};
-const cyno = {
-  name: "\u8D5B\u8BFA",
-  title: "\u7F04\u79D8\u7684\u88C1\u9063"
-};
-const dehya = {
-  name: "\u8FEA\u5E0C\u96C5",
-  title: "\u70BD\u9B03\u4E4B\u72EE"
-};
-const diluc = {
-  name: "\u8FEA\u5362\u514B",
-  title: "\u6668\u66E6\u7684\u6697\u9762"
-};
-const diona = {
-  name: "\u8FEA\u5965\u5A1C",
-  title: "\u732B\u5C3E\u7279\u8C03"
-};
-const dori = {
-  name: "\u591A\u8389",
-  title: "\u68A6\u56ED\u85CF\u91D1"
-};
-const eula = {
-  name: "\u4F18\u83C8",
-  title: "\u6D6A\u6CAB\u7684\u65CB\u821E"
-};
-const faruzan = {
-  name: "\u73D0\u9732\u73CA",
-  title: "\u673A\u9010\u5C01\u79D8"
-};
-const fischl = {
-  name: "\u83F2\u8C22\u5C14",
-  title: "\u65AD\u7F6A\u7687\u5973\uFF01\uFF01"
-};
-const freminet = {
-  name: "\u83F2\u7C73\u5C3C",
-  title: "\u6F5C\u6000\u9050\u68A6"
-};
-const furina = {
-  name: "\u8299\u5B81\u5A1C",
-  title: "\u4E0D\u4F11\u72EC\u821E"
-};
-const ganyu = {
-  name: "\u7518\u96E8",
-  title: "\u5FAA\u5FAA\u5B88\u6708"
-};
-const gorou = {
-  name: "\u4E94\u90CE",
-  title: "\u620E\u72AC\u9535\u9535"
-};
-const jean = {
-  name: "\u7434",
-  title: "\u84B2\u516C\u82F1\u9A91\u58EB"
-};
-const kaeya = {
-  name: "\u51EF\u4E9A",
-  title: "\u5BD2\u98CE\u5251\u58EB"
-};
-const keqing = {
-  name: "\u523B\u6674",
-  title: "\u9706\u9713\u5FEB\u96E8"
-};
-const klee = {
-  name: "\u53EF\u8389",
-  title: "\u9003\u8DD1\u7684\u592A\u9633"
-};
-const kirara = {
-  name: "\u7EEE\u826F\u826F",
-  title: "\u6A90\u5B87\u732B\u6E38"
-};
-const kaveh = {
-  name: "\u5361\u7EF4",
-  title: "\u5929\u7A79\u4E4B\u955C"
-};
-const layla = {
-  name: "\u83B1\u4F9D\u62C9",
-  title: "\u7EEE\u601D\u665A\u661F"
-};
-const lisa = {
-  name: "\u4E3D\u838E",
-  title: "\u8537\u8587\u9B54\u5973"
-};
-const lynette = {
-  name: "\u7433\u59AE\u7279",
-  title: "\u4E3D\u5F71\u7EEE\u884C"
-};
-const lyney = {
-  name: "\u6797\u5C3C",
-  title: "\u60D1\u5149\u5E7B\u620F"
-};
-const mika = {
-  name: "\u7C73\u5361",
-  title: "\u6674\u971C\u7684\u6807\u7ED8"
-};
-const mona = {
-  name: "\u83AB\u5A1C",
-  title: "\u661F\u5929\u6C34\u955C"
-};
-const nahida = {
-  name: "\u7EB3\u897F\u59B2",
-  title: "\u767D\u8349\u51C0\u534E"
-};
-const navia = {
-  name: "\u5A1C\u7EF4\u5A05",
-  title: "\u660E\u82B1\u8513\u8235"
-};
-const neuvillette = {
-  name: "\u90A3\u7EF4\u83B1\u7279",
-  title: "\u8C15\u544A\u7684\u6F6E\u97F3"
-};
-const nilou = {
-  name: "\u59AE\u9732",
-  title: "\u83B2\u5149\u843D\u821E\u7B75"
-};
-const ningguang = {
-  name: "\u51DD\u5149",
-  title: "\u63A9\u6708\u5929\u6743"
-};
-const noelle = {
-  name: "\u8BFA\u827E\u5C14",
-  title: "\u672A\u53D7\u52CB\u4E4B\u82B1"
-};
-const qiqi = {
-  name: "\u4E03\u4E03",
-  title: "\u51BB\u51BB\u56DE\u9B42\u591C"
-};
-const razor = {
-  name: "\u96F7\u6CFD",
-  title: "\u72FC\u5C11\u5E74"
-};
-const rosaria = {
-  name: "\u7F57\u838E\u8389\u4E9A",
-  title: "\u68D8\u51A0\u6069\u5178"
-};
-const sayu = {
-  name: "\u65E9\u67DA",
-  title: "\u5FCD\u91CC\u4E4B\u8C89"
-};
-const shenhe = {
-  name: "\u7533\u9E64",
-  title: "\u5B64\u8FB0\u8315\u6000"
-};
-const sucrose = {
-  name: "\u7802\u7CD6",
-  title: "\u65E0\u5BB3\u751C\u5EA6"
-};
-const tartaglia = {
-  name: "\u8FBE\u8FBE\u5229\u4E9A",
-  title: "\u300C\u516C\u5B50\u300D"
-};
-const thoma = {
-  name: "\u6258\u9A6C",
-  title: "\u6E21\u6765\u4ECB\u8005"
-};
-const tighnari = {
-  name: "\u63D0\u7EB3\u91CC",
-  title: "\u6D45\u851A\u8F7B\u884C"
-};
-const venti = {
-  name: "\u6E29\u8FEA",
-  title: "\u98CE\u8272\u8BD7\u4EBA"
-};
-const wanderer = {
-  name: "\u6D41\u6D6A\u8005",
-  title: "\u4E45\u4E16\u6D6E\u503E"
-};
-const wriothesley = {
-  name: "\u83B1\u6B27\u65AF\u5229",
-  title: "\u5BC2\u7F6A\u7684\u5BC6\u4F7F"
-};
-const xiangling = {
-  name: "\u9999\u83F1",
-  title: "\u4E07\u6C11\u767E\u5473"
-};
-const xiao = {
-  name: "\u9B48",
-  title: "\u62A4\u6CD5\u591C\u53C9"
-};
-const xingqiu = {
-  name: "\u884C\u79CB",
-  title: "\u5C11\u5E74\u6625\u886B\u8584"
-};
-const xinyan = {
-  name: "\u8F9B\u7131",
-  title: "\u71E5\u70ED\u65CB\u5F8B"
-};
-const yanfei = {
-  name: "\u70DF\u7EEF",
-  title: "\u667A\u660E\u65E0\u90AA"
-};
-const yaoyao = {
-  name: "\u7476\u7476",
-  title: "\u4ED9\u854A\u73B2\u73D1"
-};
-const yelan = {
-  name: "\u591C\u5170",
-  title: "\u5170\u751F\u5E7D\u8C37"
-};
-const yoimiya = {
-  name: "\u5BB5\u5BAB",
-  title: "\u7409\u7130\u534E\u821E"
-};
-const zhongli = {
-  name: "\u949F\u79BB",
-  title: "\u5C18\u4E16\u95F2\u6E38"
-};
-const zhCN = {
-  "a-thousand-floating-dreams": "\u5343\u591C\u6D6E\u68A6",
-  akuoumaru,
-  "alley-hunter": "\u6697\u5DF7\u730E\u624B",
-  "amos-bow": "\u963F\u83AB\u65AF\u4E4B\u5F13",
-  "aqua-simulacra": "\u82E5\u6C34",
-  "aquila-favonia": "\u98CE\u9E70\u5251",
-  "beacon-of-the-reed-sea": "\u82C7\u6D77\u4FE1\u6807",
-  "black-tassel": "\u9ED1\u7F28\u67AA",
-  "bloodtained-greatsword": "\u6C90\u6D74\u9F99\u8840\u7684\u5251",
-  "calamity-queller": "\u606F\u707E",
-  "cashflow-supervision": "\u91D1\u6D41\u76D1\u7763",
-  "cool-steel": "\u51B7\u5203",
-  "debate-club": "\u4EE5\u7406\u670D\u4EBA",
-  "dragon_s-bane": "\u5323\u91CC\u706D\u8FB0",
-  "elegy-for-the-end": "\u7EC8\u672B\u55DF\u53F9\u4E4B\u8BD7",
-  "emerald-orb": "\u7FE1\u7389\u6CD5\u7403",
-  "engulfing-lightning": "\u8599\u8349\u4E4B\u7A3B\u5149",
-  "everlasting-moonglow": "\u4E0D\u706D\u6708\u534E",
-  "eye-of-perception": "\u662D\u5FC3",
-  "favonius-codex": "\u897F\u98CE\u79D8\u5178",
-  "favonius-greatsword": "\u897F\u98CE\u5927\u5251",
-  "favonius-lance": "\u897F\u98CE\u957F\u67AA",
-  "favonius-sword": "\u897F\u98CE\u5251",
-  "favonius-warbow": "\u897F\u98CE\u730E\u5F13",
-  "ferrous-shadow": "\u94C1\u5F71\u9614\u5251",
-  "freedom-sworn": "\u82CD\u53E4\u81EA\u7531\u4E4B\u8A93",
-  "haran-geppaku-futsu": "\u6CE2\u4E71\u6708\u767D\u7ECF\u6D25",
-  "harbinger-of-dawn": "\u9ECE\u660E\u795E\u5251",
-  "hunter_s-path": "\u730E\u4EBA\u4E4B\u5F84",
-  "jadefall-splendor": "\u78A7\u843D\u4E4B\u73D1",
-  "kagura_s-verity": "\u795E\u4E50\u4E4B\u771F\u610F",
-  "key-of-khaj-nisut": "\u5723\u663E\u4E4B\u94A5",
-  "lion_s-roar": "\u5323\u91CC\u9F99\u541F",
-  "light-of-foliar-incision": "\u88C1\u53F6\u8403\u5149",
-  "lithic-blade": "\u5343\u5CA9\u53E4\u5251",
-  "lithic-spear": "\u5343\u5CA9\u957F\u67AA",
-  "lost-prayer-to-the-sacred-winds": "\u56DB\u98CE\u539F\u5178",
-  "magic-guide": "\u9B54\u5BFC\u7EEA\u8BBA",
-  "makhaira-aquamarine": "\u739B\u6D77\u83C8\u7684\u6C34\u8272",
-  "memory-of-dust": "\u5C18\u4E16\u4E4B\u9501",
-  "mistsplitter-reforged": "\u96FE\u5207\u4E4B\u56DE\u5149",
-  "mitternachts-waltz": "\u5E7D\u591C\u534E\u5C14\u5179",
-  "mouun_s-moon": "\u66DA\u4E91\u4E4B\u6708",
-  "polar-star": "\u51AC\u6781\u767D\u661F",
-  "portable-power-saw": "\u4FBF\u643A\u52A8\u529B\u952F",
-  "primordial-jade-cutter": "\u78D0\u5CA9\u7ED3\u7EFF",
-  "primordial-jade-winged-spear": "\u548C\u749E\u9E22",
-  "prospector-drill": "\u52D8\u63A2\u94BB\u673A",
-  rainslasher,
-  "range-gauge": "\u6D4B\u8DDD\u89C4",
-  "raven-bow": "\u9E26\u7FBD\u5F13",
-  "redhorn-stonethresher": "\u8D64\u89D2\u77F3\u6E83\u6775",
-  rust,
-  "sacrificial-bow": "\u796D\u793C\u5F13",
-  "sacrificial-fragments": "\u796D\u793C\u6B8B\u7AE0",
-  "sacrificial-greatsword": "\u796D\u793C\u5927\u5251",
-  "sacrificial-sword": "\u796D\u793C\u5251",
-  "sharpshooter_s-oath": "\u795E\u5C04\u624B\u4E4B\u8A93",
-  "skyrider-sword": "\u98DE\u5929\u5FA1\u5251",
-  "skyward-atlas": "\u5929\u7A7A\u4E4B\u5377",
-  "skyward-blade": "\u5929\u7A7A\u4E4B\u5203",
-  "skyward-harp": "\u5929\u7A7A\u4E4B\u7FFC",
-  "skyward-pride": "\u5929\u7A7A\u4E4B\u50B2",
-  "skyward-spine": "\u5929\u7A7A\u4E4B\u810A",
-  slingshot,
-  "song-of-broken-pines": "\u677E\u7C41\u54CD\u8D77\u4E4B\u65F6",
-  "splendor-of-tranquil-waters": "\u9759\u6C34\u6D41\u6D8C\u4E4B\u8F89",
-  "staff-of-homa": "\u62A4\u6469\u4E4B\u6756",
-  "staff-of-the-scarlet-sands": "\u8D64\u6C99\u4E4B\u6756",
-  "summit-shaper": "\u65AB\u5CF0\u4E4B\u5203",
-  "the-alley-flash": "\u6697\u5DF7\u95EA\u5149",
-  "the-bell": "\u949F\u5251",
-  "the-dockhands-assistant": "\u8239\u575E\u957F\u5251",
-  "the-first-great-magic": "\u6700\u521D\u7684\u5927\u9B54\u672F",
-  "the-flute": "\u7B1B\u5251",
-  "the-stringless": "\u7EDD\u5F26",
-  "the-unforged": "\u65E0\u5DE5\u4E4B\u5251",
-  "the-widsith": "\u6D41\u6D6A\u4E50\u7AE0",
-  "thrilling-tales-of-dragon-slayers": "\u8BA8\u9F99\u82F1\u6770\u8C2D",
-  "thundering-pulse": "\u98DE\u96F7\u4E4B\u5F26\u632F",
-  "tome-of-the-eternal-flow": "\u4E45\u9060\u6D41\u8EE2\u306E\u5927\u5178",
-  "tulaytullah_s-remembrance": "\u56FE\u83B1\u675C\u62C9\u7684\u56DE\u5FC6",
-  verdict,
-  "vortex-vanquisher": "\u8D2F\u8679\u4E4B\u69CA",
-  "wavebreaker_s-fin": "\u65AD\u6D6A\u957F\u9CCD",
-  "wine-and-song": "\u6697\u5DF7\u7684\u9152\u4E0E\u8BD7",
-  "wandering-evenstar": "\u6D41\u6D6A\u7684\u665A\u661F",
-  "wolf_s-gravestone": "\u72FC\u7684\u672B\u8DEF",
-  "xiphos-moonlight": "\u897F\u798F\u65AF\u7684\u6708\u5149",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "\u8352\u6CF7\u4E00\u6597",
-    title: "\u82B1\u5742\u8C6A\u5FEB"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "\u80E1\u6843",
-    title: "\u96EA\u9701\u6885\u9999"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "\u67AB\u539F\u4E07\u53F6",
-    title: "\u7EA2\u53F6\u9010\u8352\u6CE2"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "\u795E\u91CC\u7EEB\u534E",
-    title: "\u767D\u9E6D\u971C\u534E"
-  },
-  "kamisato-ayato": {
-    name: "\u795E\u91CC\u7EEB\u4EBA",
-    title: "\u78D0\u796D\u53F6\u5B88"
-  },
-  keqing,
-  klee,
-  kirara,
-  kaveh,
-  "kujou-sara": {
-    name: "\u4E5D\u6761\u88DF\u7F57",
-    title: "\u9ED1\u7FBD\u9E23\u955D"
-  },
-  "kuki-shinobu": {
-    name: "\u4E45\u5C90\u5FCD",
-    title: "\u70E6\u607C\u5208\u9664"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "\u96F7\u7535\u5C06\u519B",
-    title: "\u4E00\u5FC3\u51C0\u571F"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "\u73CA\u745A\u5BAB\u5FC3\u6D77",
-    title: "\u771F\u73E0\u4E4B\u667A"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "\u9E7F\u91CE\u9662\u5E73\u85CF",
-    title: "\u5FC3\u671D\u4E42\u5B89"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "\u516B\u91CD\u795E\u5B50",
-    title: "\u6D6E\u4E16\u7B11\u767E\u59FF"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "\u4E91\u5807",
-    title: "\u7EA2\u6BF9\u5A75\u5A1F"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  zhCN as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-TW.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-TW.js
deleted file mode 100644
index 046dfa65..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-TW.js
+++ /dev/null
@@ -1,577 +0,0 @@
-const title = "\u539F\u795E\u7948\u9858\u6A21\u64EC\u5668";
-const character = "\u89D2\u8272";
-const weapon = "\u6B66\u5668";
-const vision = "\u795E\u4E4B\u773C";
-const anemo = "\u98A8";
-const cryo = "\u51B0";
-const dendro = "\u8349";
-const electro = "\u96F7";
-const hydro = "\u6C34";
-const geo = "\u5CA9";
-const pyro = "\u706B";
-const bow = "\u5F13";
-const catalyst = "\u6CD5\u5668";
-const claymore = "\u96D9\u624B\u528D";
-const sword = "\u55AE\u624B\u528D";
-const polearm = "\u9577\u67C4\u6B66\u5668";
-const extra = "\u984D\u5916\u7372\u5F97";
-const obtained = "\u5DF2\u7372\u5F97";
-const waiting = "\u8ACB\u7A0D\u7B49";
-const connectionFailed = "\u9023\u63A5\u5931\u6557\uFF01";
-const confirmButton = "\u78BA\u8A8D";
-const cancelButton = "\u53D6\u6D88";
-const disclaimer = "\u672C\u7DB2\u7AD9\u6240\u4F7F\u7528\u7684\u6240\u6709\u8CC7\u6E90\u5747\u70BA\u7C73\u54C8\u904A\u6240\u6709\u3002";
-const fanmade = "\u9019\u662F\u4E00\u500B\u7C89\u7D72\u88FD\u4F5C\u7684\u6A21\u64EC\u5668\uFF0C\u76E1\u60C5\u4EAB\u53D7\u5427\uFF01";
-const pressToContinue = "\u9EDE\u64CA\u7A7A\u767D\u5340\u57DF\u7E7C\u7E8C";
-const installInstruction = "\u5B89\u88DD\u5230\u684C\u9762\u7684\u6559\u5B78";
-const share = "\u5206\u4EAB";
-const screenshot = "\u622A\u5716";
-const capturing = "\u6B63\u5728\u622A\u5716";
-const rewardFirstShare = "\u9996\u6B21\u5206\u4EAB : {qty}";
-const version = "\u7248\u672C";
-const donate = "\u6350\u8D08";
-const banner = {
-  beginner: " \u521D\u884C\u8005\u63A8\u85A6\u7948\u9858",
-  wanderlust: " \u5954\u884C\u4E16\u9593",
-  "epitome-invocation": "\u795E\u9444\u8CE6\u5F62",
-  "adrift-in-the-harbor": "\u6D6E\u751F\u5B70\u4F86",
-  "auric-blaze": "\u70C8\u967D\u720D\u91D1",
-  "azure-excursion": "\u84BC\u6D41\u8E0F\u82B1",
-  "ballad-in-goblets": "\u676F\u88DD\u4E4B\u8A69",
-  "born-of-ocean-swell": "\u6D6A\u6E67\u4E4B\u77AC",
-  "caution-in-confidence": "\u6555\u8AA1\u6A1E\u8B00",
-  "chanson-of-many-waters": "\u773E\u6C34\u7684\u980C\u8A69",
-  "conjuring-chiaroscuro": "\u5149\u8207\u5F71\u7684\u6232\u8853",
-  "dance-of-lantern": "\u9B5A\u9F8D\u71C8\u665D",
-  "decree-of-the-deeps": "\u6DF5\u6D77\u754C\u4EE4",
-  "discerner-of-enigmas": "\u7D20\u9713\u4F23\u5929",
-  "drifting-luminescence": "\u6D6E\u5CB3\u8679\u73E0",
-  "everbloom-violet": "\u83EF\u7D2B\u6AFB\u7DCB",
-  "farewell-of-snezhnaya": "\u66AB\u5225\u51AC\u90FD",
-  "from-ashes-reborn": "\u9918\u706B\u8B8A\u76F8",
-  "gentry-of-hermitage": "\u9675\u85EA\u5E02\u671D",
-  "immaculate-pulse": "\u5FC3\u73E0\u5FAA\u7405",
-  "in-the-name-of-the-rosula": "\u523A\u73AB\u7684\u9298\u8A93",
-  "invitation-to-mundane-life": "\u7159\u706B\u4E4B\u9080",
-  "leaves-in-the-wind": "\u8449\u843D\u98A8\u96A8",
-  "moment-of-bloom": "\u8D64\u5718\u958B\u6642",
-  "oni_s-royale": "\u9B3C\u9580\u6597\u5BB4",
-  "reign-of-serenity": "\u5F71\u5BC2\u5929\u4E0B\u4EBA",
-  "secretum-secretorum": "\u6DF1\u79D8\u4E4B\u606F",
-  "sparkling-steps": "\u9583\u7130\u7684\u99D0\u8DB3",
-  "tapestry-of-golden-flames": "\u7130\u8272\u5929\u6CB3",
-  "tempestuous-destiny": "\u52AB\u4E2D\u6CDB\u6FEB",
-  "the-heron_s-court": "\u767D\u9DFA\u4E4B\u5EAD",
-  "the-moongrass-enlightenment": "\u6708\u8349\u7684\u8CDC\u6167",
-  "the-transcendent-one-returns": "\u51FA\u5875\u5165\u4E16",
-  "twilight-arbiter": "\u9742\u88C1\u51A5\u662D",
-  "twirling-lotus": "\u7FE9\u821E\u6B48\u84EE",
-  "viridescent-vigil": "\u5DE1\u79A6\u7FF3\u8588"
-};
-const editor = {
-  bannerConfig: "{banner} Configuration",
-  baseRate: "{rarity}-Star Base Rate:",
-  maxPity: "{rarity}-Star Max Pity:",
-  hardPity: "Boost {rarity}-Star rate starts from pity:",
-  currentPity: "{rarity}-Star Current Pity",
-  winRate: "Chance to get Featured Item:",
-  charRate: "Chance to get Character instead of Weapon",
-  nonRateup: "(When losing 4-Star Item)",
-  selectedRate: "Selected Weapon Rate:",
-  guaranteedSystem: "Guaranteed System",
-  backToDefault: "Back to Default",
-  resetPrompt: 'Are you sure to Reset <b>"{banner}"</b> probabilities back to default?',
-  "default": "Default",
-  never: "Never",
-  always: "Always"
-};
-const customBanner = {
-  title: "Customize Banner",
-  deletePrompt: "Are You Sure to delete this banner ?",
-  ownerDeleteNote: "If you've shared this banner publicly, The Travelers who have made wishes on your banner will no longer be able to access it.",
-  userDeleteNote: "The Wishing History on this banner will not be deleted, but you will not be able to pull on this banner again.",
-  retry: "Retry",
-  findBanner: "Looking for a Banner..",
-  networkError: "Network Error, Please check your Connection!",
-  bannerNotFound: "Banner not found, wrong <u>Banner ID</u> or maybe the author has removed it.",
-  invalidBanner: "Invalid Banner ID",
-  identifying: "Identifying Banner",
-  loadOwnedBanner: `You're the owner of "{ownedBanner}" banner, your local data will be used instead of the data you've shared online.`,
-  loadReady: '"{banner}" is ready to Wish',
-  uploading: "Uploading {item}",
-  uploadFailed: "Image Upload Failed, please try again later!",
-  close: "Close",
-  almostDone: "Almost Done",
-  shareText: "Come and Try Your Luck on my {character} Banner Simulator",
-  setPosition: "Set Position",
-  next: "Next",
-  move: "Move",
-  changeSplashArt: "Change Splash Art",
-  adjustSplashArt: "Adjust Splash Art",
-  dropHere: "Drop Here!",
-  preview: "Banner Preview",
-  generateImage: "Generate Image",
-  notAnImage: "Not an Image",
-  imageTooLarge: "Image is too Large, max size: {maxSize}",
-  faceIcon: "Face Icon",
-  addBanner: "Add Banner",
-  "delete": "Delete",
-  deleteFailed: "Failed to Remove",
-  bannerRemoved: "Banner Removed",
-  edit: "Edit",
-  editInfo: "Edit Info",
-  editBanner: "Edit Banner Information",
-  bannerName: "Banner Name",
-  charName: "Character Name",
-  charTitle: "Character Title",
-  watermark: "Watermark",
-  completeAllField: "Please Complete All Required Field!",
-  finishAndWish: "Finish and Wish",
-  publish: "Publish Banner",
-  updateAndShare: "Update & Share",
-  rateupChar: "Rate Up Characters",
-  yourBanners: "Your Banners",
-  createBanner: "Create a Custom Banner",
-  limitation: "You are not a member, please delete some banners to activate the editor",
-  memberToUnlock: "Become a Member to Add More Banner",
-  incomplete: "Incomplete",
-  inappropriate: "Inappropriate Content!"
-};
-const backupRestore = {
-  cloudSync: "Cloud Sync",
-  localSync: "Local Backup/Restore",
-  "import": "Import Data",
-  "export": "Export Data",
-  importAction: "{fileInfo} will be added to the App, please choose what action you want to perform!",
-  mergeAction: "Merge Data <small>Automatically remove duplicate item(s) and insert new item(s)</small>",
-  replaceAction: "Replace Data <small> Erase the current App Data and replace it with the imported one. </small>",
-  dropFiles: "Drop Your File Here",
-  autoExport: "Auto Export",
-  destination: "Destination",
-  lastExport: "Last Export",
-  desNotFound: "Cannot find backup file location, please try to Export again"
-};
-const wish = {
-  rollButton: "\u7948\u9858{count}\u6B21",
-  stellaFortuna: "\u5C0D\u61C9\u89D2\u8272\u7684\u547D\u661F",
-  loadFailed: "Failed to load Banner! <br /> Please switch to other banner or reconnect to the internet to avoid errors!",
-  loadMeteor: "Load Animation",
-  skipMeteor: "Skip Animation",
-  loadMeteorMsg: "Loading <span>{star} Star Meteor Animation </span>",
-  meteorNotLoaded: "Cannot find Meteor Animation in your storage, please <span> Load the Meteor Animation</span> first before pulling, or <span> Turn ON </span> the option to skip Animation!",
-  preloadFilesMsg: "* The loaded files will be stored in the Browser Storage, so you don't need to load them again until the site is updated.",
-  banner: {
-    wishTitle: "\u7948\u9858",
-    text: "\u5361\u6C60",
-    allBanner: "\u5168\u90E8\u5361\u6C60",
-    previous: "\u5F80\u671F\u5361\u6C60",
-    findBanner: "\u641C\u5C0B\u5361\u6C60",
-    group: "\u5206\u7EC4",
-    beginner: " \u521D\u884C\u8005\u63A8\u85A6\u7948\u9858",
-    "character-event": "\u89D2\u8272\u6D3B\u52D5\u7948\u9858",
-    "weapon-event": "\u6B66\u5668\u6D3B\u52D5\u7948\u9858",
-    standard: "\u5E38\u99D0\u7948\u9858",
-    wishDescription: "\u6BCF\u5341\u6B21\u7948\u9858\u5FC5\u51FA\u56DB\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002",
-    novice: "\u65B0\u624B\u7948\u9858",
-    up: "UP!",
-    beginnerSet: "\u5341\u90238\u6298\uFF0C\u9996\u6B21\u5FC5\u5F97{character}",
-    beginnerNote: "\u300C\u6211\u6703\u6CE8\u610F\u5973\u50D5\u7684\u79AE\u5100\u3002\u300D",
-    beginnerChance: "\u5269\u9918\u6B21\u6578\uFF1A{chances}",
-    standardNote: "\u5E38\u99D0\u7948\u9858\uFF0C\u6C38\u4E45\u6027\u7948\u9858\u6D3B\u52D5\u3002",
-    allWeaponTypes: "\u5168\u90E8\u985E\u578B",
-    etc: "\u7B49",
-    probIncreased: "\u7372\u53D6\u6A5F\u7387\u63D0\u5347\uFF01",
-    eventNote: "\u6D3B\u52D5\u9650\u5B9A\u4E94\u661F\u89D2\u8272\u50C5\u5728UP\u671F\u9593\uFF0C\u900F\u904E\u5C0D\u61C9\u7948\u9858\u7372\u5F97\u3002",
-    viewDetails: "\u5177\u9AD4\u5185\u5BB9\u67E5\u770B\u3010\u8A73\u60C5\u3011"
-  },
-  epitomizedPath: {
-    text: "\u795E\u9444\u5B9A\u8ECC",
-    fatePoint: "\u547D\u5B9A\u503C",
-    cancelPrompt: "\u662F\u5426\u78BA\u8A8D\u53D6\u6D88\u76EE\u524D\u7684\u5B9A\u8ECC\uFF1F",
-    cancelDesc: "\u53D6\u6D88\u5F8C\uFF0C\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C\u5C07\u6703\u6E05\u7A7A\u3002",
-    selectWeapon: "\u9078\u64C7\u5B9A\u8ECC\u6B66\u5668",
-    chartCourseOf: "\u70BA{target}\u5B9A\u8ECC",
-    cancelCourse: "\u53D6\u6D88\u5B9A\u8ECC",
-    chartCourse: "\u5B9A\u8ECC",
-    courseSetFor: "\u76EE\u524D\u5B9A\u8ECC: {selectedCourse}",
-    description: [
-      "\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u662F\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u6240\u7279\u6709\u7684\u7948\u9858\u6A5F\u5236\uFF1A",
-      "\u5C0D\u671F\u671B\u76845\u661FUP\u6B66\u5668\u9032\u884C\u5B9A\u8ECC\u5F8C\uFF0C\u7576\u900F\u904E\u7948\u9858\u5728\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u4E2D<span>\u53D6\u5F97\u975E\u5B9A\u8ECC\u76845\u661F\u6B66\u5668\u6642\uFF0C\u5C07\u7372\u5F971\u9EDE\u547D\u5B9A\u503C</span> \u3002",
-      "\u547D\u5B9A\u503C\u5145\u6EFF\u5F8C\uFF0C\u5728\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u4E2D\u7948\u9858\u7372\u5F97\u7684\u4E0B\u4E00\u4EF65\u661F\u6B66\u5668\u5C07\u6703\u662F\u900F\u904E\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u9078\u5B9A\u7684\u6B66\u5668\u3002",
-      "\u5728\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u4E2D\u7948\u9858<span>\u53D6\u5F97\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u7684\u6B66\u5668\u6642\uFF0C\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C\u5C07\u6703\u6E05\u9664</span>\u3002",
-      "\u7576\u672A\u901A\u904E\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u7948\u9858\u5C07\u4E0D\u6703\u7D2F\u7A4D\u547D\u5B9A\u503C\u3002",
-      "\u6B66\u5668\u7684\u5B9A\u8ECC\u72C0\u614B\u53EF\u4EE5\u66F4\u63DB\uFF0C\u4E5F\u53EF\u4EE5\u53D6\u6D88\u5B9A\u8ECC\u3002 <span>\u66F4\u63DB\u6216\u53D6\u6D88\u6642\uFF0C\u6703\u6E05\u9664\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C</span>\u3002",
-      "<span>\u672C\u671F\u300C\u795E\u9444\u8CE6\u5F62\u300D\u7D50\u675F\u6642\uFF0C\u5DF2\u7D2F\u7A4D\u7684\u547D\u5B9A\u503C\u4E5F\u5C07\u6E05\u9664</span>\u3002"
-    ]
-  },
-  result: {
-    skip: "\u8DF3\u904E",
-    meteorFailed: "\u7948\u9858\u52D5\u756B\u8F09\u5165\u5931\u6557",
-    "new": "\u65B0",
-    convertion: "\u8F49\u5316",
-    title: "{item} \u7948\u9858\u7ED3\u679C"
-  }
-};
-const outfit = {
-  heading: "\u89D2\u8272\u88DD\u626E",
-  "default": "Default",
-  setOutfit: "\u8A2D\u7F6E\u88DD\u626E",
-  owned: "\u5DF2\u64C1\u6709",
-  purchasePrompt: "\u60A8\u9084\u6C92\u6709\u6B64\u88DD\u626E\u5C0D\u61C9\u7684\u89D2\u8272\uFF0C\u60A8\u78BA\u5B9A\u8981\u8CFC\u8CB7\u6B64\u88DD\u626E\u55CE\uFF1F",
-  promptInfo: "\u7372\u5F97\u76F8\u61C9\u7684\u89D2\u8272\u5F8C\uFF0C\u60A8\u4ECD\u7136\u53EF\u4EE5\u4F7F\u7528\u6B64\u88DD\u626E",
-  obtained: "New Outfit Obtained",
-  unlocked: "{character}: Outfit Unlocked",
-  item: {
-    "5-star-outrider": {
-      name: "\u300C\u6EFF\u5206\u7684\u5075\u5BDF\u9A0E\u58EB\u300D"
-    },
-    "favonian-fevotion": {
-      name: "\u98A8\u4E4B\u8654\u8B77"
-    },
-    "flowing-fate": {
-      name: "\u661F\u547D\u6D41\u8F49"
-    },
-    "executor_s-thorns": {
-      name: "\u8655\u5211\u68D8\u523A"
-    },
-    "sea-breeze-dandelion": {
-      name: "\u6D77\u98A8\u4E4B\u5922",
-      description: "\u7434\u7684\u590F\u65E5\u88DD\u675F\u3002 \u6E05\u6DBC\u4E0D\u5931\u512A\u96C5\uFF0C\u662F\u6D77\u6FF1\u4E4B\u904A\u7684\u7D55\u4F73\u642D\u914D\u3002"
-    },
-    "summertime-sparkle": {
-      name: "\u9583\u8000\u5354\u594F",
-      description: "\u82AD\u82AD\u62C9\u7684\u6D77\u7058\u88DD\u626E\u3002 \u6D0B\u6EA2\u8457\u590F\u65E5\u6D3B\u529B\u7684\u4FCF\u9E97\u77ED\u88D9\uFF0C\u4F3C\u4E4E\u6563\u767C\u8457\u6D77\u6D0B\u7684\u6E05\u723D\u6C23\u606F\u3002"
-    },
-    "opulent-splendor": {
-      name: "\u9713\u88FE\u8E41\u8E9A",
-      description: "\u523B\u6674\u7684\u79AE\u670D\u88DD\u626E\u3002 \u65BC\u6D77\u71C8\u7BC0\u4E4B\u826F\u8FB0\u7F8E\u666F\u4E2D\uFF0C\u5F80\u65E5\u8F9B\u52DE\u6FC3\u58A8\u6240\u7E6A\u7684\u7DDA\u689D\uFF0C\u4EA4\u7E54\u6210\u4ECA\u591C\u8F15\u76C8\u800C\u7470\u9E97\u7684\u5BB9\u59FF\u3002"
-    },
-    "orchid_s-evening-gown": {
-      name: "\u7D17\u4E2D\u5E7D\u862D",
-      description: "\u51DD\u5149\u7684\u79AE\u670D\u88DD\u626E\u3002 \u7D3A\u85CD\u9577\u88D9\u52FE\u52D2\u51FA\u9E97\u4EBA\u512A\u96C5\u7684\u66F2\u7DDA\uFF0C\u8173\u8E1D\u4E0A\u7684\u8776\u7FFC\u53C8\u70BA\u5979\u589E\u6DFB\u4E86\u5E7E\u5206\u8F15\u76C8\u3002"
-    },
-    "ein-immernachtstraum": {
-      name: "\u6975\u591C\u7D42\u5922",
-      description: "\u7687\u5973\u83F2\u8B1D\u723E\u7684\u796D\u79AE\u670D\u88DD\u3002 \u9858\u9AD8\u8CB4\u7684\u4EBA\u6C38\u9060\u8446\u6709\u52C7\u6C23\u3001\u8AA0\u646F\u8207\u5584\u5FC3\uFF0C\u5982\u6B64\uFF0C\u90AA\u60E1\u5FC5\u7121\u6CD5\u632B\u6557\u5979\u3002"
-    },
-    "red-dead-of-night": {
-      name: "\u6BB7\u7D05\u7D42\u591C",
-      description: "\u8FEA\u76E7\u514B\u96B1\u5BC6\u884C\u52D5\u6642\u6240\u7A7F\u7684\u8863\u88DD\u4E4B\u4E00\uFF0C\u5982\u9670\u5F71\u4E4B\u4E2D\u7FFB\u9A30\u7684\u706B\u7130\u3002 \u6575\u4EBA\u8996\u91CE\u76E1\u982D\u6240\u7559\u4E0B\u7684\u6BB7\u7D05\u6B98\u75D5\uFF0C\u5373\u662F\u4ED6\u5011\u9918\u751F\u63EE\u4E4B\u4E0D\u53BB\u7684\u5922\u9B58\u3002"
-    },
-    "a-sobriquet-under-shade": {
-      name: "\u8449\u96B1\u82B3\u540D",
-      description: "\u9E97\u838E\u91CD\u904A\u9808\u5F4C\u6642\u8ACB\u4EBA\u8A02\u505A\u7684\u670D\u98FE\u3002 \u88D9\u88DD\u5E79\u7DF4\u800C\u4E0D\u5931\u512A\u96C5\uFF0C\u8207\u5979\u5B78\u751F\u6642\u4EE3\u7684\u88FD\u670D\u6709\u5E7E\u5206\u76F8\u4F3C\u4E4B\u8655\u3002"
-    },
-    "springbloom-missive": {
-      name: "\u82B1\u6642\u4F86\u4FE1",
-      description: "\u795E\u88E1\u7DBE\u83EF\u7684\u51FA\u904A\u88DD\u626E\u3002 \u6BD4\u7167\u8F15\u5C0F\u8AAA\u63D2\u756B\u4E2D\u7684\u6953\u4E39\u5973\u6027\u88DD\u675F\u800C\u88FD\u4F5C\u7684\u6D0B\u88DD\uFF0C\u4F3C\u4E4E\u80FD\u85C9\u5176\u4E00\u7ABA\u6953\u4E39\u6DD1\u5973\u7684\u751F\u6D3B\u98A8\u8C8C\u3002"
-    },
-    "blossoming-starlight": {
-      name: "\u742A\u82B1\u661F\u71ED",
-      description: "\u53EF\u8389\u51FA\u6F14\u95DC\u9375\u5287\u76EE\u6642\u6240\u7A7F\u7684\u7CBE\u7DFB\u670D\u88DD\uFF0C\u8272\u5F69\u660E\u9E97\uFF0C\u5982\u540C\u9EDE\u7DB4\u8457\u5976\u6CB9\u82B1\u6735\u548C\u660E\u7D05\u881F\u71ED\u7684\u86CB\u7CD5\uFF0C\u80FD\u5C07\u5FEB\u6A02\u8207\u7B11\u5BB9\u5E36\u5F80\u5192\u96AA\u6240\u81F3\u7684\u6BCF\u500B\u89D2\u843D\u3002"
-    },
-    "sailwind-shadow": {
-      name: "\u5E06\u5F71\u904A\u98A8",
-      description: "\u51F1\u4E9E\u5728\u821E\u53F0\u4E0A\u98FE\u6F14\u300C\u77ED\u5200\u5927\u76DC\u300D\u6642\u7684\u88DD\u626E\uFF0C\u4EE5\u300C\u5438\u775B\u300D\u70BA\u8A2D\u8A08\u539F\u5247\u7684\u83EF\u9E97\u670D\u88DD\u3002 \u4E0D\u904E\u8863\u670D\u7A7F\u8D77\u4F86\u4E26\u4E0D\u9EBB\u7169\uFF0C\u6700\u82B1\u6642\u9593\u6253\u7406\u7684\u662F\u98FE\u54C1\u8207\u77ED\u5200\u3002"
-    }
-  }
-};
-const details = {
-  text: "\u8A73\u60C5",
-  promotional: "UP\u7269\u54C1",
-  itemlist: "\u7269\u54C1\u6E05\u55AE",
-  increasedRate: "\u4EE5\u4E0B\u5185\u5BB9\u51FA\u73B0[\u6982\u7387UP!!!]",
-  percentageDrop: "\u5360{rarity}\u661F\u51FA\u7387\u7684: {percentage}",
-  wishDetails: "\u7948\u9858\u8A73\u60C5",
-  probInfo: "{rarity}\u661F\u7269\u57FA\u790E\u51FA\u7387\uFF1A{singlePercentage} (\u542B\u4FDD\u5E95\u7D9C\u5408\u51FA\u7387\uFF1A{avgPercentage})",
-  itemWishFor: "\u4EE5\u4E0B\u70BA\u7948\u79B1\u7269\u54C1\u6E05\u55AE\uFF1A",
-  itemType: "\u985E\u578B",
-  itemName: "\u540D\u7A31",
-  beginnerInfo: "\u7121\u6642\u9593\u4E0A\u9650 (\u62BD\u53D620\u6B21\u5F8C\u95DC\u9589)",
-  limited: "\u9650\u6642\u6D3B\u52D5",
-  permanent: "\u6C38\u4E45",
-  alert: "\u203B \u672C\u7948\u9858\u5C6C\u65BC\u300C{wishName}\u300D\uFF0C\u5176\u7948\u9858\u6B21\u6578\u4FDD\u5E95\u6703\u4E00\u76F4\u7D2F\u8A08\u5728\u300C{wishName}\u300D\u4E2D\uFF0C\u8207\u5176\u4ED6\u7948\u9858\u7684\u7948\u9858\u6B21\u6578\u4FDD\u5E95\u76F8\u4E92\u7368\u7ACB\u8A08\u7B97\uFF0C\u4E92\u4E0D\u5F71\u97FF\u3002",
-  beginner: [
-    "\u521D\u884C\u8005\u63A8\u85A6\u7948\u9858\u70BA<span>\u6C38\u4E45</span>\u6027\u7948\u9858\u6D3B\u52D5\uFF0C\u662F\u9762\u5411\u65B0\u52A0\u5165\u63D0\u74E6\u7279\u5927\u9678\u7684\u65C5\u884C\u8005\u7684\u63A8\u85A6\u7948\u9858\u3002 \u5728\u672C\u7948\u9858\u5167\uFF0C\u5341\u9023\u6240\u6D88\u8017\u7684\u76F8\u9047\u4E4B\u7DE3\u6578\u91CF\u53EF\u4EAB8\u6298\u512A\u60E0\uFF0C\u4E14\u9996\u6B21\u5341\u9023\u5FC5\u6703\u7372\u53D6\u201C{character}\u201D\uFF0C\u7B2C\u4E8C\u6B21\u5341\u9023\u5FC5\u6703\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7684\u89D2\u8272\uFF01 \u672C\u7948\u9858\u5B58\u5728\u7948\u9858\u6B21\u6578\u4E0A\u9650\uFF0C\u6700\u9AD8\u70BA<span>20</span>\u6B21\uFF0C\u62BD\u53D620\u6B21\u5F8C<span>\u672C\u6D3B\u52D5\u7948\u9858\u4ECB\u9762\u5C07\u95DC\u9589</span>\u3002",
-    "\u203B\u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002",
-    "\u3013\u7948\u9858\u898F\u5247\u3013",
-    "5\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span> 0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u9858\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u7269\u54C1\u3002 <br> 4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA <span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>13.000%</span>\u3002 \u6700\u591A<span>10</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA<span>99.400%</span>\uFF0C\u53D6\u5F975\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA< span>0.600%</span>\u3002"
-  ],
-  standard: [
-    "\u300C{bannerName}\u300D\u5E38\u99D0\u7948\u9858\u70BA\u6C38\u4E45\u6027\u7948\u9858\u6D3B\u52D5\uFF0C\u73A9\u5BB6\u53EF\u62BD\u53D6\u975E\u9650\u5B9A\u89D2\u8272\u8207\u6B66\u5668\u3002 <br/>\u5728\u672C\u7948\u9858\u5167\uFF0C\u6BCF10\u6B21\u7948\u9858<span>\u5FC5\u6703</span>\u7372\u5F97\u81F3\u5C111\u500B4\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\u3002",
-    "\u203B\u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002",
-    "\u3013\u7948\u9858\u898F\u5247\u3013",
-    "5\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.600%</span>\uFF0C5\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.300%</span>\uFF0C5\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span> 0.300%</span>\uFF0C5\u661F\u7269\u54C1\u7948\u9858\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.600%</span>\uFF0C\u6700\u591A<span>90</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u7269\u54C1\u3002 <br> 4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span>\uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA <span>2.550%</span>\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>13.000%</span>\u3002 \u6700\u591A<span>10</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA<span>99.400%</span>\uFF0C\u53D6\u5F975\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA< span>0.600%</span>\u3002"
-  ],
-  events: [
-    "\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u5DF2\u958B\u555F\u3002 \u6D3B\u52D5\u671F\u9593\u5167\uFF0C\u9650\u5B9A5\u661F\u89D2\u8272\u300C{featuredCharacter} \u300D\u4EE5\u53CA4\u661F\u89D2\u8272 {rateupCharacters} \u7684\u7948\u9858\u7372\u53D6\u6A5F\u7387\u5C07<span>\u5927\u5E45\u63D0\u5347</span>\uFF01 <span> \u203B\u4EE5\u4E0A\u89D2\u8272\u4E2D\uFF0C\u9650\u5B9A\u89D2\u8272\u4E0D\u6703\u9032\u5165\u300C\u5954\u884C\u4E16\u9593\u300D\u5E38\u99D0\u7948\u9858\u3002 </span>",
-    "\u203B \u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002",
-    "\u3013\u7948\u9858\u898F\u5247\u3013",
-    "\u30105\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C5\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.600%</span>\uFF0C\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.600%</span>\uFF0C\u6700\u591A <span>90</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u89D2\u8272\u3002 \u7576\u7948\u9858\u7372\u53D6\u52305\u661F\u89D2\u8272\u6642\uFF0C\u6709<span>50.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F5\u661FUP\u89D2\u8272\u300C{featuredCharacter}\u300D\u3002 \u82E5\u9019\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u89D2\u8272<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F5\u661FUP\u89D2\u8272\u3002",
-    "\u30104\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C\u8449\u843D\u98A8\u96A8\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>5.100%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span >\uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>2.550%</span>\uFF0C4\u661F\u7269\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>13.000%</span>\u3002 \u6700\u591A<span>10</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA<span>99.400%</span>\uFF0C\u53D6\u5F975\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA< span>0.600%</span>\u3002 \u7576\u7948\u9858\u7372\u53D6\u52304\u661F\u7269\u54C1\u6642\uFF0C\u6709<span>50.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F4\u661FUP\u89D2\u8272{rateupCharacters}\u4E2D\u7684\u4E00\u500B\u3002 \u5982\u679C\u672C\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u89D2\u8272\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F4\u661FUP\u89D2\u8272\u3002 \u7576\u7948\u9858\u7372\u53D6\u52304\u661FUP\u7269\u54C1\u6642\uFF0C\u6BCF\u500B\u672C\u671F4\u661FUP\u89D2\u8272\u7684\u7372\u53D6\u6A5F\u7387\u5747\u7B49\u3002"
-  ],
-  weapons: [
-    "\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u73FE\u5DF2\u958B\u555F\u3002 \u6D3B\u52D5\u671F\u9593\u5167\uFF0C\u9650\u5B9A5\u661F\u6B66\u5668{featuredWeapon1}\u30015\u661F\u6B66\u5668{featuredWeapon2}\u4EE5\u53CA4\u661F\u6B66\u5668{rateupWeapons}\u7684\u7948\u9858\u7372\u53D6\u6A5F\u7387\u5C07<span>\u5927\u5E45\u63D0\u5347</span>\uFF01 <br/> <span> \u203B\u4EE5\u4E0A\u6B66\u5668\u4E2D\uFF0C\u9650\u5B9A\u6B66\u5668\u4E0D\u6703\u9032\u5165\u300C\u5954\u884C\u4E16\u9593\u300D\u5E38\u99D0\u7948\u9858\u3002 </span>",
-    "\u203B\u4E00\u822C\u60C5\u6CC1\u4E0B\u6240\u6709\u89D2\u8272\u6216\u6B66\u5668\u5747\u9069\u7528\u57FA\u790E\u6A5F\u7387\uFF0C\u5982\u89F8\u767C\u6A5F\u7387UP\u3001\u4FDD\u5E95\u7B49\u4EE5\u5177\u9AD4\u898F\u5247\u70BA\u6E96\u3002",
-    "\u3013\u7948\u9858\u898F\u5247\u3013",
-    "\u30105\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C5\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>0.700%</span>\uFF0C\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>1.850%</span>\uFF0C\u6700\u591A <span>80</span>\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D65\u661F\u89D2\u8272\u3002 \u7576\u7948\u9858\u7372\u53D6\u52305\u661F\u89D2\u8272\u6642\uFF0C\u6709<span>75.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F5\u661FUP\u6B66\u5668\u300C{featuredWeapon1}\u300D\u3001\u300C{featuredWeapon2}\u300D\u3002 \u5982\u679C\u672C\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u89D2\u8272\u975E\u672C\u671F5\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76845\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F5\u661FUP\u6B66\u5668\u3002 <br/>\u5728\u672A\u901A\u904E\u547D\u5B9A\u503C\u9054\u5230\u6EFF\u503C\u7372\u53D6\u5B9A\u8ECC\u6B66\u5668\u7684\u60C5\u6CC1\u4E0B\uFF0C\u7576\u7948\u9858\u7372\u53D6\u52305\u661FUP\u7269\u54C1\u6642\uFF0C\u6BCF\u628A\u672C\u671F5\u661FUP\u6B66\u5668\u7684\u7372\u53D6\u6A5F\u7387\u5747\u7B49\u3002 <br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C\u53EF\u4F7F\u7528\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5C0D\u672C\u671F5\u661FUP\u6B66\u5668\u9032\u884C\u5B9A\u8ECC\uFF0C\u5B9A\u8ECC\u6B66\u5668\u7684\u9078\u64C7\u50C5\u5728\u672C\u671F\u300C{bannerName}\u300D \u6D3B\u52D5\u7948\u9858\u4E2D\u751F\u6548\u3002 <br/>\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C\u4F7F\u7528\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5B9A\u8ECC\u6B66\u5668\u5F8C\uFF0C\u7576\u53D6\u5F97\u5230\u76845\u661F\u6B66\u5668\u70BA\u975E\u76EE\u524D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u7372\u5F971\u9EDE\u547D\u5B9A\u503C \uFF0C\u547D\u5B9A\u503C\u9054\u5230<span>\u6EFF\u503C</span>\u5F8C\uFF0C\u5728\u672C\u7948\u9858\u4E2D\u7372\u5F97\u7684\u4E0B\u4E00\u628A5\u661F\u6B66\u5668<span>\u5FC5\u5B9A</span>\u70BA\u7576\u524D\u5B9A\u8ECC\u6B66\u5668\u3002 \u7576\u53D6\u5F97\u76EE\u524D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u7121\u8AD6\u76EE\u524D\u547D\u5B9A\u503C\u662F\u5426\u9054\u5230\u6EFF\u503C\uFF0C\u90FD\u6703\u91CD\u8A2D\u70BA<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u7A4D\u3002 <br/>\u672A\u4F7F\u7528\u300C\u795E\u9444\u5B9A\u8ECC\u300D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u5C07<span>\u4E0D\u6703</span>\u7D2F\u7A4D\u547D\u5B9A\u503C\u3002 <br/>\u5B9A\u8ECC\u6B66\u5668\u53EF\u9032\u884C\u66F4\u63DB\u6216\u53D6\u6D88\u3002 \u66F4\u63DB\u6216\u53D6\u6D88\u76EE\u524D\u5B9A\u8ECC\u6B66\u5668\u6642\uFF0C\u547D\u5B9A\u503C\u5C07\u6703\u91CD\u8A2D\u70BA<span>0</span>\uFF0C\u91CD\u65B0\u7D2F\u7A4D\u3002 <br/>\u203B\u672C\u7948\u9858\u4E2D\u7684\u547D\u5B9A\u503C\u50C5\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\u751F\u6548\uFF0C\u7948\u9858\u7D50\u675F\u5F8C\u547D\u5B9A\u503C\u5C07\u6703\u91CD\u7F6E\u70BA<span>0</span>\uFF0C\u91CD\u65B0 \u7D2F\u8A08\u3002",
-    "\u30104\u661F\u7269\u54C1\u3011",
-    "\u5728\u672C\u671F\u300C{bannerName}\u300D\u6D3B\u52D5\u7948\u9858\u4E2D\uFF0C4\u661F\u7269\u54C1\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>6.000%</span>\uFF0C4\u661F\u89D2\u8272\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>3.000%</span> \uFF0C4\u661F\u6B66\u5668\u7948\u9858\u7684\u57FA\u790E\u6A5F\u7387\u70BA<span>3.000%</span>\uFF0C4\u661F\u7269\u7948\u9858\u7684\u7D9C\u5408\u6A5F\u7387\uFF08\u542B\u4FDD\u5E95\uFF09\u70BA<span>14.500%</span>\u3002 \u6700\u591A10\u6B21\u7948\u9858\u5FC5\u5B9A\u80FD\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u6216\u4EE5\u4E0A\u7269\u54C1\uFF0C\u900F\u904E\u4FDD\u5E95\u7372\u53D64\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA99.300%\uFF0C\u7372\u53D65\u661F\u7269\u54C1\u7684\u6A5F\u7387\u70BA0.700%\u3002 <br/> \u7576\u7948\u9858\u7372\u53D6\u52304\u661F\u7269\u54C1\u6642\uFF0C\u6709<span>75.000%</span>\u7684\u6A5F\u7387\u70BA\u672C\u671F4\u661FUP\u6B66\u5668{rateupWeapons}\u4E2D\u7684\u4E00\u500B\u3002 \u5982\u679C\u672C\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1\u975E\u672C\u671F4\u661FUP\u6B66\u5668\uFF0C\u4E0B\u6B21\u7948\u9858\u7372\u53D6\u76844\u661F\u7269\u54C1<span>\u5FC5\u5B9A</span>\u70BA\u672C\u671F4\u661FUP\u6B66\u5668\u3002 \u7576\u7948\u9858\u7372\u53D6\u52304\u661FUP\u7269\u54C1\u6642\uFF0C\u6BCF\u628A\u672C\u671F4\u661FUP\u6B66\u5668\u7684\u7372\u53D6\u6A5F\u7387\u5747\u7B49\u3002"
-  ],
-  convertion: {
-    fiveStar: "\u7948\u9858\u7372\u5F975\u661F\u6B66\u5668\u6642\uFF0C\u6703\u540C\u6642\u7372\u5F9710\u500B{starglitter}\u4F5C\u70BA\u526F\u7522\u7269\uFF1B",
-    fourStar: "\u7372\u5F974\u661F\u6B66\u5668\u6642\uFF0C\u6703\u540C\u6642\u7372\u5F972\u500B{starglitter}\u4F5C\u70BA\u526F\u7522\u7269\uFF1B",
-    threeStar: "\u7372\u5F973\u661F\u6B66\u5668\u6642\uFF0C\u6703\u540C\u6642\u7372\u5F9715\u500B{stardust}\u4F5C\u70BA\u526F\u7522\u7269\u3002"
-  },
-  duplicate: {
-    heading: "\u3013\u82E5\u7372\u5F97\u91CD\u8907\u89D2\u8272\u3013",
-    text: "\u7121\u8AD6\u900F\u904E\u4F55\u7A2E\u65B9\u5F0F\uFF08\u5305\u542B\u4F46\u4E0D\u9650\u65BC\u7948\u9858\u3001\u5546\u57CE\u514C\u63DB\u3001\u7CFB\u7D71\u8D08\u9001\u7B49\uFF09\u7B2C2~7\u6B21\u7372\u5F97\u76F8\u540C{rarity}\u661F\u89D2\u8272\u6642\uFF0C\u6BCF\u6B21\u5C07\u8F49\u5316\u70BA1\u500B{stellaFortuna}\u548C10\u500B{starglitter} \uFF1B\u7B2C8\u6B21\u53CA\u4E4B\u5F8C\u7372\u5F97\uFF0C\u5C07\u50C5\u8F49\u63DB\u70BA25\u500B{starglitter}\u3002"
-  }
-};
-const history = {
-  title: "\u7948\u9858\u6B77\u53F2",
-  text: "\u6B77\u53F2\u7D00\u9304",
-  resetButton: "\u91CD\u7F6E",
-  resetPromptTitle: "\u91CD\u7F6E\u7D00\u9304\uFF1F",
-  resetPrompt: "\u5B83\u9084\u6703\u5F9E\u60A8\u7684\u5EAB\u5B58\u4E2D\u522A\u9664\u8207 {bannerName} \u5361\u6C60\u76F8\u95DC\u7684\u6240\u6709\u89D2\u8272\u548C\u6B66\u5668\u3002 <br /> \u4F60\u78BA\u5B9A\u8981\u91CD\u7F6E\u55CE\uFF1F",
-  resetSuccess: "\u5DF2\u6210\u529F\u91CD\u7F6E\uFF01",
-  keepPity: "Don't reset Pity and Guaranteed Status",
-  selectWish: "\u7948\u9858\u985E\u578B\u9078\u64C7:",
-  disclaimer: "\u6211\u5011\u5F9E\u4E0D\u5C07\u60A8\u7684\u8CC7\u6599\u4FDD\u5B58\u5728\u96F2\u7AEF\u5132\u5B58\u4E2D\u3002 \u6240\u6709\u8CC7\u6599\u90FD\u5132\u5B58\u5230 IndexedDB\uFF0C\u9019\u8868\u793A\u8CC7\u6599\u4FDD\u5B58\u5728\u60A8\u7684\u700F\u89BD\u5668\u5132\u5B58\u4E2D\u3002 \u9664\u975E\u60A8\u900F\u904E\u522A\u9664/\u91CD\u7F6E\u6309\u9215\u624B\u52D5\u522A\u9664\u5B83\u6216\u6E05\u9664\u700F\u89BD\u5668\u6578\u64DA\uFF0C\u5426\u5247\u5B83\u6C38\u9060\u4E0D\u6703\u522A\u9664\u3002",
-  currentPity: "\u76EE\u524D\u5DF2\u588A:",
-  totalPull: "\u7E3D\u5171\u62BD\u53D6:",
-  totalSpend: "\u5DF2\u82B1\u8D39:",
-  filterTxt: "\u7BE9\u9078",
-  filter: "{rarity} \u661F",
-  filterAll: "\u5168\u90E8",
-  pity: "\u5DF2\u588A",
-  timeReceived: "\u7948\u9858\u6642\u9593",
-  waiting: "\u8ACB\u7A0D\u7B49",
-  noData: "\u7121\u53EF\u7528\u6578\u64DA",
-  untracked: "\u672A\u8FFD\u8E2A",
-  item: "\u7269\u54C1",
-  win: "\u5C0F\u4FDD\u5E95",
-  lose: "\u6B6A",
-  guaranteed: "\u5927\u4FDD\u5E95",
-  selected: "\u5DF2\u5B9A\u8ECC",
-  olderLayout: "\u820A\u5E03\u5C40",
-  switchv2: "\u5207\u6362\u5230\u65B0\u7248\u5E03\u5C40"
-};
-const shop = {
-  text: "\u5546\u57CE",
-  paimonBargains: "\u5875\u8F1D\u514C\u63DB",
-  fateNeeded: "\u7F3A\u5C11{rollQty}\u500B{currency}\uFF0C",
-  primoNeeded: "\u662F\u5426\u6D88\u8017{primoPrice}\u539F\u77F3\u8CFC\u8CB7\uFF1F",
-  purchaseUpto: "\u9650\u8CFC 1",
-  purchaseConfirm: "\u78BA\u8A8D\u8CFC\u8CB7",
-  exchangeHeading: "\u514C\u63DB\u7269\u54C1",
-  purchaseHeading: "\u8CFC\u8CB7\u7269\u54C1",
-  purchaseButton: "\u8CFC\u8CB7",
-  pay: "\u652F\u4ED8",
-  product: "\u7522\u54C1",
-  consume: "\u6D88\u8017",
-  selectPayment: "\u9078\u64C7\u652F\u4ED8\u65B9\u5F0F",
-  unrealWallet: "\u85CD\u7DA0\u8272\u4FEE\u6539\u5668\u7834\u89E3\u7248",
-  convertPrimo: "\u81EA\u52D5\u8F49\u63DB\u70BA\u539F\u77F3\uFF1F",
-  proceedPayment: "\u78BA\u8A8D\u4EA4\u6613",
-  qty: "\u6578\u91CF",
-  insufficient: "\u8CA8\u5E63\u4E0D\u8DB3",
-  crystalTopup: "\u51DD\u53D6\u7D50\u6676",
-  initialBonus: "Initial Topup Bonus",
-  bonus: "Bonus",
-  buyGenesisHeading: "\u8CFC\u8CB7\u5275\u4E16\u7D50\u6676",
-  recomendedHeading: "\u63A8\u85A6\u5546\u54C1",
-  paimonHeading: "\u5875\u8F1D\u514C\u63DB",
-  welkinNote: "\u53EF\u7D2F\u8A08\u8CFC\u8CB7",
-  limitedOffer: "\u9650\u6642\u63D0\u4F9B\u8CFC\u8CB7",
-  noLimitTime: "\u5237\u65B0\u6642\u9593\uFF1A\u4E0D\u6703\u5237\u65B0",
-  paymentChilde: "Childe",
-  paymentTears: "Tears",
-  paymentWakaranai: "Wakaranai",
-  recomended: {
-    welkin: "\u7A7A\u6708\u795D\u798F",
-    newOutfit: "\u89D2\u8272\u88DD\u626E \xB7 \u65B0\u88DD",
-    dayRemaining: "\u5269\u9918 {days} \u5929",
-    alreadyClaimed: "\u672C\u65E5\u5DF2\u9818\u53D6",
-    instantlyGet: "\u8CFC\u8CB7\u5373\u53EF\u7372\u5F97",
-    dailyGift: "\u6BCF\u65E5\u8D60\u9001",
-    obtainTotal: "*\u6709\u6548\u671F\u9650\u6301\u7E8C30\u5929\uFF01 \u7D2F\u8A08\u53EF\u7372\u5F97{totalGenesis}\u5275\u4E16\u7D50\u6676\u548C{totalPrimo}\u539F\u77F3\uFF01",
-    claimingBlessing: "\u9EDE\u64CA\u9818\u53D6\u4ECA\u65E5\u7A7A\u6708\u795D\u798F\u734E\u52F5",
-    issuedPurchase: "\u8CFC\u8CB7\u6642\u7372\u5F97",
-    collect: "\u6BCF\u65E5\u767B\u5165\u734E\u52F5"
-  },
-  exchange: {
-    starglitter: "\u7121\u4E3B\u7684\u661F\u8F1D",
-    stardust: "\u7121\u4E3B\u7684\u661F\u5875",
-    primogem: "\u539F\u77F3\u8CFC\u8CB7"
-  },
-  item: {
-    genesis: "\u5275\u4E16\u7D50\u6676",
-    primogem: "\u539F\u77F3",
-    intertwined: "\u7CFE\u7E8F\u4E4B\u7DE3",
-    acquaint: "\u76F8\u9047\u4E4B\u7DE3",
-    starglitter: "\u7121\u4E3B\u7684\u661F\u8F1D",
-    stardust: "\u7121\u4E3B\u7684\u661F\u5875"
-  },
-  description: {
-    intertwined: "\u9023\u7D50\u5922\u60F3\u7684\u547D\u904B\u4E4B\u7A2E\u3002 \u7DE3\u77F3\u8F1D\u5149\u80FD\u8B93\u672C\u7121\u4EA4\u96C6\u7684\u547D\u904B\u4EA4\u932F\uFF0C\u8B93\u5F7C\u6B64\u7684\u5922\u60F3\u76F8\u9023\uFF0C\u6B63\u5982\u9019\u7A2E\u5149\u8F1D\u5C07\u7FA4\u661F\u9023\u6210\u5FC3\u4E4B\u6240\u5411\u7684\u5716\u5F62\u3002",
-    acquaint: "\u9EDE\u4EAE\u661F\u7A7A\u7684\u5E0C\u671B\u4E4B\u7A2E\u3002 \u7121\u8AD6\u76F8\u9694\u591A\u9060\uFF0C\u547D\u5B9A\u76F8\u9047\u7684\u4EBA\u90FD\u6703\u53D7\u7DE3\u77F3\u8F1D\u5149\u7684\u6307\u5F15\uFF0C\u5728\u661F\u7A7A\u4E0B\u76F8\u6703\u3002"
-  }
-};
-const inventory = {
-  text: "\u5009\u5EAB",
-  unsetOutfit: "\u672A\u8A2D\u7F6E\u88DD\u626E",
-  setOutfit: "\u8A2D\u7F6E\u89D2\u8272\u88DD\u626E",
-  refinement: "\u7CBE\u7149\u7B49\u7D1A {count}",
-  constellation: "\u547D\u4E4B\u5EA7\u5C64\u6578 {count}",
-  extra: "{count} \u5DF2\u6EFF\u4E26\u6EA2\u51FA",
-  firstSummon: "\u9996\u6B21\u7372\u5F97: {date}",
-  notOwned: "\u5C1A\u672A\u64C1\u6709",
-  sort: "\u6392\u5E8F",
-  rarity: "\u7A00\u6709\u5EA6",
-  name: "\u540D\u5B57",
-  quantity: "\u6578\u91CF",
-  element: "\u5143\u7D20",
-  release: "Release Date",
-  type: "\u985E\u578B",
-  owned: "\u5DF2\u7372\u5F97",
-  showAllOption: "\u986F\u793A\u6240\u6709{item}"
-};
-const menu = {
-  no: "\u5426",
-  yes: "\u662F",
-  text: "\u9078\u55AE",
-  feedback: "Feedback",
-  options: "\u9078\u9805",
-  updates: "\u66F4\u65B0\u6B77\u53F2",
-  customBanner: "Custom Banner",
-  backupRestore: "Backup & Restore",
-  language: "\u8A9E\u8A00",
-  currency: "\u8CA8\u5E63",
-  fates: "Number of Wishes",
-  unlimited: "Unlimited",
-  manual: "Manual Input",
-  mute: "\u505C\u7528\u97F3\u983B\u97F3\u6548",
-  switchBanner: "\u5207\u63DB\u5361\u6C60",
-  showAllitems: "\u5728\u5EAB\u5B58\u4E2D\u986F\u793A\u6240\u6709\u7269\u54C1",
-  animatedbg: "\u52D5\u756B\u80CC\u666F",
-  autoskip: "\u81EA\u52D5\u8DF3\u904E\u7948\u9858\u52D5\u756B",
-  multiRoll: "Number per multi-roll",
-  factoryReset: "\u6E05\u9664\u8CC7\u6599\u4E26\u6062\u5FA9\u9810\u8A2D",
-  resetTitle: "\u6062\u5FA9\u9810\u8A2D",
-  rotate: "\u65CB\u8F49\u8A2D\u5099\u4EE5\u7372\u5F97\u66F4\u597D\u9AD4\u9A57",
-  keepSetting: "Keep Settings? <small> Current Pity, Balance and the Settings will not be deleted </small>",
-  clearCache: "\u6E05\u7A7A\u5FEB\u53D6 ( {size} ) \uFF1F <small>\u52FE\u9078\u672C\u9805\u4E26\u6062\u5FA9\u5F8C\u5C07\u6703\u91CD\u8F09\u8CC7\u6E90\uFF01</small>",
-  resetButton: "\u73FE\u5728\u91CD\u7F6E",
-  resetPrompt: "\u60A8\u78BA\u5B9A\u6E05\u9664<strong>\u6240\u6709\u8CC7\u6599</strong>\u4E26\u6062\u5FA9\u9810\u8A2D\u55CE\uFF1F",
-  resetSuccess: "\u5DF2\u6210\u529F\u91CD\u7F6E",
-  proAccess: "Pro Access",
-  getpro: "Get Pro Access",
-  removeKey: "Remove Key",
-  removeKeyConfirm: "Are you sure to delete the current Key? You will lose all of these benefits until you re-enter the new key!",
-  getNewKey: "\u5728\u9019\u88E1\u7372\u5F97\u4E00\u500B\u65B0\u7684\uFF01",
-  noKey: "\u6C92\u6709\u8D0A\u52A9\u78BC\uFF1F",
-  verifyFail: "\u7121\u6CD5\u9A57\u8B49\u8D0A\u52A9\u78BC\uFF0C\u8ACB\u6AA2\u67E5\u60A8\u7684\u7DB2\u8DEF\u9023\u63A5\uFF01",
-  invalidKey: "\u60A8\u7684\u8D0A\u52A9\u78BC\u7121\u6548",
-  keyExpired1: "Expired Key!",
-  keyExpired2: 'Your key: "{key}" has expired since {date}!',
-  adFreeUser: "You already have access to the pro features!",
-  inputKeyPlaceholder: "\u8F38\u5165\u8D0A\u52A9\u78BC",
-  inputKeyTxt: "Input a Key to get more Benefits !",
-  checkingKey: "Verifying Stored Access Key",
-  authorNotes: "* \u6211\u9700\u8981\u5C0D\u7F6E\u5165\u5EE3\u544A\u884C\u70BA\u8868\u793A\u6B49\u610F\u3002 \u5BE6\u969B\u4E0A\u6211\u4E5F\u4E0D\u60F3\u7834\u58DE\u60A8\u7684\u64CD\u4F5C\u9AD4\u9A57\uFF0C\u4F46\u6211\u6C92\u6709\u4EFB\u4F55\u5718\u968A\u6216\u8D0A\u52A9\u5546\u4F86\u7DAD\u6301\u9019\u500B\u61C9\u7528\u7A0B\u5F0F\u7684\u904B\u4F5C\u3002 \u5982\u679C\u4F60\u4E0D\u60F3\u82B1\u9322\u7684\u8A71\uFF0C\u4F60\u4ECD\u820A\u53EF\u4EE5\u900F\u904E\u555F\u7528\u5EE3\u544A\u6514\u622A\u63D2\u4EF6\u6216\u81EA\u8A02DNS\uFF0C\u6211\u4E0D\u6703\u5C0D\u5176\u9032\u884C\u9650\u5236\u3002"
-};
-const zhTW = {
-  title,
-  character,
-  weapon,
-  vision,
-  anemo,
-  cryo,
-  dendro,
-  electro,
-  hydro,
-  geo,
-  pyro,
-  bow,
-  catalyst,
-  claymore,
-  sword,
-  polearm,
-  extra,
-  obtained,
-  waiting,
-  connectionFailed,
-  confirmButton,
-  cancelButton,
-  disclaimer,
-  fanmade,
-  pressToContinue,
-  installInstruction,
-  share,
-  screenshot,
-  capturing,
-  rewardFirstShare,
-  version,
-  donate,
-  banner,
-  editor,
-  customBanner,
-  backupRestore,
-  wish,
-  outfit,
-  details,
-  history,
-  shop,
-  inventory,
-  menu
-};
-export {
-  anemo,
-  backupRestore,
-  banner,
-  bow,
-  cancelButton,
-  capturing,
-  catalyst,
-  character,
-  claymore,
-  confirmButton,
-  connectionFailed,
-  cryo,
-  customBanner,
-  zhTW as default,
-  dendro,
-  details,
-  disclaimer,
-  donate,
-  editor,
-  electro,
-  extra,
-  fanmade,
-  geo,
-  history,
-  hydro,
-  installInstruction,
-  inventory,
-  menu,
-  obtained,
-  outfit,
-  polearm,
-  pressToContinue,
-  pyro,
-  rewardFirstShare,
-  screenshot,
-  share,
-  shop,
-  sword,
-  title,
-  version,
-  vision,
-  waiting,
-  weapon,
-  wish
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-TW2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-TW2.js
deleted file mode 100644
index 832d71b6..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/chunks/zh-TW2.js
+++ /dev/null
@@ -1,530 +0,0 @@
-const akuoumaru = "\u60E1\u738B\u4E38";
-const rainslasher = "\u96E8\u88C1";
-const rust = "\u5F13\u85CF";
-const slingshot = "\u5F48\u5F13";
-const verdict = "\u88C1\u65B7";
-const albedo = {
-  name: "\u963F\u8C9D\u591A",
-  title: "\u767D\u580A\u4E4B\u5B50"
-};
-const alhaitham = {
-  name: "\u827E\u723E\u6D77\u68EE",
-  title: "\u8AA8\u97DC\u8A64\u8A00"
-};
-const amber = {
-  name: "\u5B89\u67CF",
-  title: "\u98DB\u884C\u51A0\u8ECD"
-};
-const baizhu = {
-  name: "\u767D\u672F",
-  title: "\u9075\u751F\u5408\u548C"
-};
-const barbara = {
-  name: "\u82AD\u82AD\u62C9",
-  title: "\u9583\u8000\u5076\u50CF"
-};
-const beidou = {
-  name: "\u5317\u6597",
-  title: "\u7121\u5195\u7684\u9F8D\u738B"
-};
-const bennett = {
-  name: "\u73ED\u5C3C\u7279",
-  title: "\u547D\u904B\u8A66\u91D1\u77F3"
-};
-const candace = {
-  name: "\u574E\u8482\u7D72",
-  title: "\u6D6E\u91D1\u7684\u8A93\u9858"
-};
-const charlotte = {
-  name: "\u590F\u6D1B\u8482",
-  title: "\u6717\u93E1\u7D22\u771F"
-};
-const chevreuse = {
-  name: "\u590F\u6C83\u857E",
-  title: "\u660E\u5F8B\u6C7A\u7F70"
-};
-const chongyun = {
-  name: "\u91CD\u96F2",
-  title: "\u96EA\u878D\u6709\u8E2A"
-};
-const collei = {
-  name: "\u67EF\u840A",
-  title: "\u8403\u5FF5\u521D\u8617"
-};
-const cyno = {
-  name: "\u8CFD\u8AFE",
-  title: "\u7DD8\u79D8\u7684\u88C1\u9063"
-};
-const dehya = {
-  name: "\u8FEA\u5E0C\u96C5",
-  title: "\u71BE\u9B03\u4E4B\u7345"
-};
-const diluc = {
-  name: "\u8FEA\u76E7\u514B",
-  title: "\u6668\u66E6\u7684\u6697\u9762"
-};
-const diona = {
-  name: "\u8FEA\u5967\u5A1C",
-  title: "\u8C93\u5C3E\u7279\u8ABF"
-};
-const dori = {
-  name: "\u591A\u8389",
-  title: "\u5922\u5712\u85CF\u91D1"
-};
-const eula = {
-  name: "\u512A\u83C8",
-  title: "\u6D6A\u6CAB\u7684\u65CB\u821E"
-};
-const faruzan = {
-  name: "\u743A\u9732\u73CA",
-  title: "\u6A5F\u9010\u5C01\u79D8"
-};
-const fischl = {
-  name: "\u83F2\u8B1D\u723E",
-  title: "\u65AD\u7F6A\u7687\u5973\uFF01\uFF01"
-};
-const freminet = {
-  name: "\u83F2\u7C73\u5C3C",
-  title: "\u6F5B\u61F7\u9050\u5922"
-};
-const furina = {
-  name: "\u8299\u5BE7\u5A1C",
-  title: "\u4E0D\u4F11\u7368\u821E"
-};
-const ganyu = {
-  name: "\u7518\u96E8",
-  title: "\u5FAA\u5FAA\u5B88\u6708"
-};
-const gorou = {
-  name: "\u4E94\u90CE",
-  title: "\u620E\u72AC\u9535\u9535"
-};
-const jean = {
-  name: "\u7434",
-  title: "\u84B2\u516C\u82F1\u9A0E\u58EB"
-};
-const kaeya = {
-  name: "\u51F1\u4E9E",
-  title: "\u5BD2\u98A8\u528D\u58EB"
-};
-const keqing = {
-  name: "\u523B\u6674",
-  title: "\u9706\u9713\u5FEB\u96E8"
-};
-const klee = {
-  name: "\u53EF\u8389",
-  title: "\u9003\u8DD1\u7684\u592A\u967D"
-};
-const kirara = {
-  name: "\u7EEE\u826F\u826F",
-  title: "\u6A90\u5B87\u732B\u6E38"
-};
-const kaveh = {
-  name: "\u5361\u7EF4",
-  title: "\u5929\u7A79\u4E4B\u93E1"
-};
-const layla = {
-  name: "\u840A\u4F9D\u62C9",
-  title: "\u7DBA\u601D\u665A\u661F"
-};
-const lisa = {
-  name: "\u9E97\u838E",
-  title: "\u8537\u8587\u9B54\u5973"
-};
-const lynette = {
-  name: "\u7433\u59AE\u7279",
-  title: "\u9E97\u5F71\u9A0E\u884C"
-};
-const lyney = {
-  name: "\u6797\u5C3C",
-  title: "\u60D1\u5149\u5E7B\u6232"
-};
-const mika = {
-  name: "\u7C73\u5361",
-  title: "\u6674\u971C\u7684\u6A19\u7E6A"
-};
-const mona = {
-  name: "\u83AB\u5A1C",
-  title: "\u661F\u5929\u6C34\u955C"
-};
-const nahida = {
-  name: "\u7D0D\u897F\u59B2",
-  title: "\u767D\u8349\u6DE8\u83EF"
-};
-const navia = {
-  name: "\u5A1C\u7DAD\u5A6D",
-  title: "\u660E\u82B1\u8513\u8235"
-};
-const neuvillette = {
-  name: "\u90A3\u7DAD\u840A\u7279",
-  title: "\u8AED\u544A\u7684\u6F6E\u97F3"
-};
-const nilou = {
-  name: "\u59AE\u9732",
-  title: "\u84EE\u5149\u843D\u821E\u7B75"
-};
-const ningguang = {
-  name: "\u51DD\u5149",
-  title: "\u63A9\u6708\u5929\u6B0A"
-};
-const noelle = {
-  name: "\u8AFE\u827E\u723E",
-  title: "\u672A\u53D7\u52F3\u4E4B\u82B1"
-};
-const qiqi = {
-  name: "\u4E03\u4E03",
-  title: "\u51CD\u51CD\u56DE\u9B42\u591C"
-};
-const razor = {
-  name: "\u96F7\u6FA4",
-  title: "\u72FC\u5C11\u5E74"
-};
-const rosaria = {
-  name: "\u7F85\u838E\u8389\u9E97",
-  title: "\u68D8\u51A0\u6069\u5178"
-};
-const sayu = {
-  name: "\u65E9\u67DA",
-  title: "\u5FCD\u91CC\u4E4B\u8C89"
-};
-const shenhe = {
-  name: "\u7533\u9E64",
-  title: "\u5B64\u8FB0\u7162\u61F7"
-};
-const sucrose = {
-  name: "\u7802\u7CD6",
-  title: "\u7121\u5BB3\u751C\u5EA6"
-};
-const tartaglia = {
-  name: "\u9054\u9054\u5229\u4E9E",
-  title: "\u300C\u516C\u5B50\u300D"
-};
-const thoma = {
-  name: "\u6258\u99AC",
-  title: "\u6E21\u4F86\u4ECB\u8005"
-};
-const tighnari = {
-  name: "\u6E21\u4F86\u4ECB\u8005",
-  title: "\u6DFA\u851A\u8F15\u884C"
-};
-const venti = {
-  name: "\u6EAB\u8FEA",
-  title: "\u98A8\u8272\u8A69\u4EBA"
-};
-const wanderer = {
-  name: "\u6D41\u6D6A\u8005",
-  title: "\u4E45\u4E16\u6D6E\u503E"
-};
-const wriothesley = {
-  name: "\u840A\u6B50\u65AF\u5229",
-  title: "\u5BC2\u7F6A\u7684\u5BC6\u4F7F"
-};
-const xiangling = {
-  name: "\u9999\u83F1",
-  title: "\u842C\u6C11\u767E\u5473"
-};
-const xiao = {
-  name: "\u9B48",
-  title: "\u8B77\u6CD5\u591C\u53C9"
-};
-const xingqiu = {
-  name: "\u884C\u79CB",
-  title: "\u5C11\u5E74\u6625\u886B\u8584"
-};
-const xinyan = {
-  name: "\u8F9B\u7131",
-  title: "\u71E5\u71B1\u65CB\u5F8B"
-};
-const yanfei = {
-  name: "\u7159\u7DCB",
-  title: "\u667A\u660E\u7121\u90AA"
-};
-const yaoyao = {
-  name: "\u7476\u7476",
-  title: "\u4ED9\u854A\u73B2\u74CF"
-};
-const yelan = {
-  name: "\u591C\u862D",
-  title: "\u862D\u751F\u5E7D\u8C37"
-};
-const yoimiya = {
-  name: "\u5BB5\u5BAB",
-  title: "\u7409\u7130\u83EF\u821E"
-};
-const zhongli = {
-  name: "\u937E\u96E2",
-  title: "\u5875\u4E16\u9592\u904A"
-};
-const zhTW = {
-  "a-thousand-floating-dreams": "\u5343\u591C\u6D6E\u5922",
-  akuoumaru,
-  "alley-hunter": "\u6697\u5DF7\u7375\u624B",
-  "amos-bow": "\u963F\u83AB\u65AF\u4E4B\u5F13",
-  "aqua-simulacra": "\u82E5\u6C34",
-  "aquila-favonia": "\u98A8\u9DF9\u528D",
-  "beacon-of-the-reed-sea": "\u8466\u6D77\u4FE1\u6A19",
-  "black-tassel": "\u9ED1\u7E93\u69CD",
-  "bloodtained-greatsword": "\u6C90\u6D74\u9F8D\u8840\u7684\u528D",
-  "calamity-queller": "\u606F\u707D",
-  "cashflow-supervision": "\u91D1\u6D41\u76E3\u7763",
-  "cool-steel": "\u51B7\u5203",
-  "debate-club": "\u4EE5\u7406\u670D\u4EBA",
-  "dragon_s-bane": "\u5323\u88E1\u6EC5\u8FB0",
-  "elegy-for-the-end": "\u7D42\u672B\u55DF\u5606\u4E4B\u8A69",
-  "emerald-orb": "\u7FE1\u7389\u6CD5\u7403",
-  "engulfing-lightning": "\u8599\u8349\u4E4B\u7A3B\u5149",
-  "everlasting-moonglow": "\u4E0D\u6EC5\u6708\u83EF",
-  "eye-of-perception": "\u662D\u5FC3",
-  "favonius-codex": "\u897F\u98A8\u79D8\u5178",
-  "favonius-greatsword": "\u897F\u98A8\u5927\u528D",
-  "favonius-lance": "\u897F\u98A8\u9577\u69CD",
-  "favonius-sword": "\u897F\u98A8\u528D",
-  "favonius-warbow": "\u897F\u98A8\u7375\u5F13",
-  "ferrous-shadow": "\u9435\u5F71\u95CA\u528D",
-  "freedom-sworn": "\u84BC\u53E4\u81EA\u7531\u4E4B\u8A93",
-  "haran-geppaku-futsu": "\u6CE2\u4E71\u6708\u767D\u7ECF\u6D25",
-  "harbinger-of-dawn": "\u9ECE\u660E\u795E\u528D",
-  "hunter_s-path": "\u7375\u4EBA\u4E4B\u5F91",
-  "jadefall-splendor": "\u78A7\u843D\u4E4B\u74CF",
-  "kagura_s-verity": "\u795E\u6A02\u4E4B\u771F\u610F",
-  "key-of-khaj-nisut": "\u8056\u986F\u4E4B\u9470",
-  "lion_s-roar": "\u5323\u88E1\u9F8D\u541F",
-  "light-of-foliar-incision": "\u88C1\u8449\u8403\u5149",
-  "lithic-blade": "\u5343\u5DD6\u53E4\u528D",
-  "lithic-spear": "\u5343\u5DD6\u9577\u69CD",
-  "lost-prayer-to-the-sacred-winds": "\u56DB\u98A8\u539F\u5178",
-  "magic-guide": "\u9B54\u5C0E\u7DD2\u8AD6",
-  "makhaira-aquamarine": "\u746A\u6D77\u83C8\u7684\u6C34\u8272",
-  "memory-of-dust": "\u5875\u4E16\u4E4B\u9396",
-  "mistsplitter-reforged": "\u9727\u5207\u4E4B\u8FF4\u5149",
-  "mitternachts-waltz": "\u5E7D\u591C\u83EF\u723E\u6ECB",
-  "mouun_s-moon": "\u66DA\u96F2\u4E4B\u6708",
-  "polar-star": "\u51AC\u6975\u767D\u661F",
-  "portable-power-saw": "\u4FBF\u651C\u52D5\u529B\u92F8",
-  "primordial-jade-cutter": "\u78D0\u5CA9\u7D50\u7DA0",
-  "primordial-jade-winged-spear": "\u548C\u749E\u9CF6",
-  "prospector-drill": "\u63A2\u52D8\u947D\u5B54\u6A5F",
-  rainslasher,
-  "range-gauge": "\u6E2C\u8DDD\u898F",
-  "raven-bow": "\u9D09\u7FBD\u5F13",
-  "redhorn-stonethresher": "\u8D64\u89D2\u77F3\u6F70\u6775",
-  rust,
-  "sacrificial-bow": "\u796D\u79AE\u5F13",
-  "sacrificial-fragments": "\u796D\u79AE\u6B98\u7AE0",
-  "sacrificial-greatsword": "\u796D\u79AE\u5927\u528D",
-  "sacrificial-sword": "\u796D\u79AE\u528D",
-  "sharpshooter_s-oath": "\u795E\u5C04\u624B\u4E4B\u8A93",
-  "skyrider-sword": "\u98DB\u5929\u79A6\u528D",
-  "skyward-atlas": "\u5929\u7A7A\u4E4B\u5377",
-  "skyward-blade": "\u5929\u7A7A\u4E4B\u5203",
-  "skyward-harp": "\u5929\u7A7A\u4E4B\u7FFC",
-  "skyward-pride": "\u5929\u7A7A\u4E4B\u50B2",
-  "skyward-spine": "\u5929\u7A7A\u4E4B\u810A",
-  slingshot,
-  "song-of-broken-pines": "\u677E\u7C5F\u97FF\u8D77\u4E4B\u6642",
-  "splendor-of-tranquil-waters": "\u975C\u6C34\u6D41\u6E67\u4E4B\u8F1D",
-  "staff-of-homa": "\u8B77\u6469\u4E4B\u6756",
-  "staff-of-the-scarlet-sands": "\u8D64\u6C99\u4E4B\u6756",
-  "summit-shaper": "\u65AB\u5CF0\u4E4B\u5203",
-  "the-alley-flash": "\u6697\u5DF7\u9583\u5149",
-  "the-bell": "\u9418\u528D",
-  "the-dockhands-assistant": "\u8239\u5862\u9577\u528D",
-  "the-first-great-magic": "\u6700\u521D\u7684\u5927\u9B54\u8853",
-  "the-flute": "\u7B1B\u528D",
-  "the-stringless": "\u7D55\u5F26",
-  "the-unforged": "\u7121\u5DE5\u4E4B\u528D",
-  "the-widsith": "\u6D41\u6D6A\u6A02\u7AE0",
-  "thrilling-tales-of-dragon-slayers": "\u8A0E\u9F8D\u82F1\u5091\u8B5A",
-  "thundering-pulse": "\u98DB\u96F7\u4E4B\u5F26\u632F",
-  "tome-of-the-eternal-flow": "\u4E45\u9060\u9F8D\u5929\u767E\u79D1\u5168\u66F8",
-  "tulaytullah_s-remembrance": "\u5716\u840A\u62C9\u62C9\u7684\u56DE\u61B6",
-  verdict,
-  "vortex-vanquisher": "\u8CAB\u8679\u4E4B\u69CA",
-  "wavebreaker_s-fin": "\u65B7\u6D6A\u9577\u9C2D",
-  "wine-and-song": "\u6697\u5DF7\u7684\u9152\u8207\u8A69",
-  "wandering-evenstar": "\u6D41\u6D6A\u7684\u665A\u661F",
-  "wolf_s-gravestone": "\u72FC\u7684\u672B\u8DEF",
-  "xiphos-moonlight": "\u897F\u798F\u65AF\u7684\u6708\u5149",
-  albedo,
-  alhaitham,
-  amber,
-  "arataki-itto": {
-    name: "\u8352\u7027\u4E00\u6597",
-    title: "\u82B1\u5742\u8C6A\u5FEB"
-  },
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  "hu-tao": {
-    name: "\u80E1\u6843",
-    title: "\u96EA\u973D\u6885\u9999"
-  },
-  jean,
-  "kaedehara-kazuha": {
-    name: "\u6953\u539F\u842C\u8449",
-    title: "\u7D05\u8449\u9010\u8352\u6CE2"
-  },
-  kaeya,
-  "kamisato-ayaka": {
-    name: "\u795E\u91CC\u7DBE\u83EF",
-    title: "\u767D\u9DFA\u971C\u83EF"
-  },
-  "kamisato-ayato": {
-    name: "\u795E\u91CC\u7EEB\u4EBA",
-    title: "\u78D0\u796D\u8449\u5B88"
-  },
-  keqing,
-  klee,
-  kirara,
-  kaveh,
-  "kujou-sara": {
-    name: "\u4E5D\u689D\u88DF\u7F85",
-    title: "\u9ED1\u7FBD\u9CF4\u93D1"
-  },
-  "kuki-shinobu": {
-    name: "\u4E45\u5C90\u5FCD",
-    title: "\u7169\u60F1\u5208\u9664"
-  },
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  "raiden-shogun": {
-    name: "\u96F7\u96FB\u5C07\u8ECD",
-    title: "\u4E00\u5FC3\u6DE8\u571F"
-  },
-  razor,
-  rosaria,
-  "sangonomiya-kokomi": {
-    name: "\u73CA\u745A\u5BAB\u5FC3\u6D77",
-    title: "\u771F\u73E0\u4E4B\u667A"
-  },
-  sayu,
-  shenhe,
-  "shikanoin-heizou": {
-    name: "\u9E7F\u91CE\u9662\u5E73\u85CF",
-    title: "\u5FC3\u671D\u4E42\u5B89"
-  },
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  "yae-miko": {
-    name: "\u516B\u91CD\u795E\u5B50",
-    title: "\u6D6E\u4E16\u7B11\u767E\u59FF"
-  },
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  "yun-jin": {
-    name: "\u96F2\u5807",
-    title: "\u7D05\u6BF9\u5B0B\u5A1F"
-  },
-  zhongli
-};
-export {
-  akuoumaru,
-  albedo,
-  alhaitham,
-  amber,
-  baizhu,
-  barbara,
-  beidou,
-  bennett,
-  candace,
-  charlotte,
-  chevreuse,
-  chongyun,
-  collei,
-  cyno,
-  zhTW as default,
-  dehya,
-  diluc,
-  diona,
-  dori,
-  eula,
-  faruzan,
-  fischl,
-  freminet,
-  furina,
-  ganyu,
-  gorou,
-  jean,
-  kaeya,
-  kaveh,
-  keqing,
-  kirara,
-  klee,
-  layla,
-  lisa,
-  lynette,
-  lyney,
-  mika,
-  mona,
-  nahida,
-  navia,
-  neuvillette,
-  nilou,
-  ningguang,
-  noelle,
-  qiqi,
-  rainslasher,
-  razor,
-  rosaria,
-  rust,
-  sayu,
-  shenhe,
-  slingshot,
-  sucrose,
-  tartaglia,
-  thoma,
-  tighnari,
-  venti,
-  verdict,
-  wanderer,
-  wriothesley,
-  xiangling,
-  xiao,
-  xingqiu,
-  xinyan,
-  yanfei,
-  yaoyao,
-  yelan,
-  yoimiya,
-  zhongli
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_error.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_error.svelte.js
deleted file mode 100644
index a2f98bde..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_error.svelte.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import { c as create_ssr_component, a as subscribe, g as getContext, e as escape, v as validate_component } from "../../chunks/index.js";
-import { p as page } from "../../chunks/stores.js";
-import { R as RandomBackground } from "../../chunks/RandomBackground.js";
-const _error_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-7a8fw6.svelte-7a8fw6{width:100%;height:100%;position:relative;display:flex;justify-content:center;align-items:center}.container.svelte-7a8fw6.svelte-7a8fw6{position:relative;z-index:+1;width:80%;height:70%;background-color:#ece6de;padding:2rem;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.gi-primo-star.svelte-7a8fw6.svelte-7a8fw6{color:#fdf0ac;font-size:1.5rem;display:inline-block;position:absolute;filter:drop-shadow(0 0 7px rgba(227, 149, 48, 0.9))}.top-left.svelte-7a8fw6.svelte-7a8fw6{top:-0.8rem;left:-0.5rem;transform:rotate(-45deg)}.top-right.svelte-7a8fw6.svelte-7a8fw6{top:-0.8rem;right:-0.5rem;transform:rotate(45deg)}.bottom-left.svelte-7a8fw6.svelte-7a8fw6{bottom:-0.8rem;left:-0.5rem;transform:rotate(-135deg)}.bottom-right.svelte-7a8fw6.svelte-7a8fw6{bottom:-0.8rem;right:-0.5rem;transform:rotate(135deg)}.icon-bg.svelte-7a8fw6.svelte-7a8fw6{font-size:17em;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);color:#e4dcce;z-index:-1}h1.svelte-7a8fw6.svelte-7a8fw6{font-size:2.5rem}h2.svelte-7a8fw6.svelte-7a8fw6{font-size:1.2rem;padding:0.6rem 0}p.svelte-7a8fw6.svelte-7a8fw6{font-size:1rem}a.svelte-7a8fw6.svelte-7a8fw6{border-radius:40px;color:white;background-color:#4a5265;display:inline-flex;align-items:center;justify-content:space-between;padding:5px 4rem 5px 5px;transition:all 0.2s;margin-top:3rem}a.svelte-7a8fw6 i.svelte-7a8fw6{width:2rem;height:2rem;background-color:#353533;border-radius:100%;display:inline-flex;justify-content:center;align-items:center;font-size:1rem;margin-right:3rem;color:#ffc107}a.svelte-7a8fw6.svelte-7a8fw6:hover{background-color:rgb(51, 57, 71)}",
-  map: null
-};
-const Error = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $page, $$unsubscribe_page;
-  $$unsubscribe_page = subscribe(page, (value) => $page = value);
-  getContext("isBannerLoaded");
-  $$result.css.add(css);
-  $$unsubscribe_page();
-  return `${$$result.head += `${$$result.title = `<title>Error ${escape($page.status)}</title>`, ""}`, ""}
-
-<section class="${"svelte-7a8fw6"}">${validate_component(RandomBackground, "Background").$$render($$result, {}, {}, {})}
-	<div class="${"container svelte-7a8fw6"}"><i class="${"gi-primo-star top-left svelte-7a8fw6"}"></i>
-		<i class="${"gi-primo-star top-right svelte-7a8fw6"}"></i>
-		<i class="${"gi-primo-star bottom-left svelte-7a8fw6"}"></i>
-		<i class="${"gi-primo-star bottom-right svelte-7a8fw6"}"></i>
-		<i class="${"gi-inazuma icon-bg svelte-7a8fw6"}"></i>
-		<h1 class="${"svelte-7a8fw6"}">Error ${escape($page.status)}</h1>
-		<h2 class="${"svelte-7a8fw6"}">${escape($page.error.message)}</h2>
-		<p class="${"svelte-7a8fw6"}">We find some problem with the page you&#39;re looking for ..</p>
-		<a href="${"/"}" class="${"svelte-7a8fw6"}"><i class="${"gi-reply svelte-7a8fw6"}"></i> Back To The Beginning .. </a></div>
-</section>`;
-});
-export {
-  Error as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_layout.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_layout.js
deleted file mode 100644
index 445c451b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_layout.js
+++ /dev/null
@@ -1,4 +0,0 @@
-const prerender = true;
-export {
-  prerender
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_layout.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_layout.svelte.js
deleted file mode 100644
index 1090f334..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_layout.svelte.js
+++ /dev/null
@@ -1,171 +0,0 @@
-import { c as create_ssr_component, a as subscribe, g as getContext, e as escape, s as setContext, d as add_attribute, v as validate_component } from "../../chunks/index.js";
-import { y, $, F, D, k } from "../../chunks/runtime.esm.js";
-import { p as page } from "../../chunks/stores.js";
-import { i as isMobile, m as mobileMode, v as viewportWidth, a as viewportHeight, b as isPWA } from "../../chunks/app-stores.js";
-import "idb";
-import { H as HOST, D as DESCRIPTION, K as KEYWORDS, A as APP_TITLE } from "../../chunks/env.js";
-import { w as writable } from "../../chunks/index2.js";
-import "../../chunks/member-loader.js";
-const zoomist = "";
-const autoExport = writable(false);
-const __variableDynamicImportRuntimeHelper = (glob, path) => {
-  const v = glob[path];
-  if (v) {
-    return typeof v === "function" ? v() : Promise.resolve(v);
-  }
-  return new Promise((_, reject) => {
-    (typeof queueMicrotask === "function" ? queueMicrotask : setTimeout)(reject.bind(null, new Error("Unknown variable dynamic import: " + path)));
-  });
-};
-const supportedLocales = [
-  "zh-CN",
-  "zh-TW",
-  "de-DE",
-  "en-US",
-  "fr-FR",
-  "id-ID",
-  "it-IT",
-  "ja-JP",
-  "pt-BR",
-  "ru-RU",
-  "th-TH",
-  "vi-VN"
-];
-const itemLocales = ["zh-CN", "zh-TW", "en-US", "it-IT", "ja-JP", "pt-BR", "ru-RU", "vi-VN"];
-const checkLocale = () => {
-  const browserLocale = F();
-  const usedLocale = supportedLocales.find((langID) => langID.includes(browserLocale));
-  return usedLocale || "en-US";
-};
-const mountLocale = () => {
-  supportedLocales.forEach((langID) => {
-    y(langID, () => __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "../../locales/de-DE.json": () => import("../../chunks/de-DE.js"), "../../locales/en-US.json": () => import("../../chunks/en-US.js"), "../../locales/fr-FR.json": () => import("../../chunks/fr-FR.js"), "../../locales/id-ID.json": () => import("../../chunks/id-ID.js"), "../../locales/it-IT.json": () => import("../../chunks/it-IT.js"), "../../locales/ja-JP.json": () => import("../../chunks/ja-JP.js"), "../../locales/pt-BR.json": () => import("../../chunks/pt-BR.js"), "../../locales/ru-RU.json": () => import("../../chunks/ru-RU.js"), "../../locales/th-TH.json": () => import("../../chunks/th-TH.js"), "../../locales/vi-VN.json": () => import("../../chunks/vi-VN.js"), "../../locales/zh-CN.json": () => import("../../chunks/zh-CN.js"), "../../locales/zh-TW.json": () => import("../../chunks/zh-TW.js") }), `../../locales/${langID}.json`));
-  });
-  itemLocales.forEach((langID) => {
-    y(langID, () => __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "../../locales/items/en-US.json": () => import("../../chunks/en-US2.js"), "../../locales/items/it-IT.json": () => import("../../chunks/it-IT2.js"), "../../locales/items/ja-JP.json": () => import("../../chunks/ja-JP2.js"), "../../locales/items/pt-BR.json": () => import("../../chunks/pt-BR2.js"), "../../locales/items/ru-RU.json": () => import("../../chunks/ru-RU2.js"), "../../locales/items/vi-VN.json": () => import("../../chunks/vi-VN2.js"), "../../locales/items/zh-CN.json": () => import("../../chunks/zh-CN2.js"), "../../locales/items/zh-TW.json": () => import("../../chunks/zh-TW2.js") }), `../../locales/items/${langID}.json`));
-  });
-  const usedLocale = checkLocale();
-  $({
-    fallbackLocale: "en-US",
-    initialLocale: usedLocale
-  });
-};
-const app = "";
-const Iklan_svelte_svelte_type_style_lang = "";
-const Toast_svelte_svelte_type_style_lang = "";
-const Toasts = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return ``;
-});
-const InitialLoader_svelte_svelte_type_style_lang = "";
-const css$1 = {
-  code: ".modal.svelte-o4a6oh.svelte-o4a6oh{position:fixed;z-index:9999;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0, 0, 0, 0.5);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;justify-content:center;align-items:center;text-align:center}.modal-content.svelte-o4a6oh.svelte-o4a6oh{background-color:#fff;border-radius:0.4rem;width:500px;max-width:80%;padding:2%}.btn.svelte-o4a6oh.svelte-o4a6oh{padding-top:5%;width:100%}button.svelte-o4a6oh.svelte-o4a6oh{color:#fff;padding:2% 6%}.reload.svelte-o4a6oh.svelte-o4a6oh{background-color:#94866e}.open.svelte-o4a6oh.svelte-o4a6oh{background-color:#353533}.loader.svelte-o4a6oh.svelte-o4a6oh{display:flex;justify-content:center;align-items:center;font-size:3.2vw;color:#666666;width:100%;height:100vh;position:fixed;top:0;left:0;background-color:#fff;z-index:9998}@media screen and (max-width: 600px){.loader.svelte-o4a6oh.svelte-o4a6oh{font-size:4vh}}.content.svelte-o4a6oh.svelte-o4a6oh{display:block;text-align:center}.text.svelte-o4a6oh.svelte-o4a6oh{font-size:1rem;height:1.5rem;position:absolute;left:50%;transform:translateX(-50%);font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}.text.connecting.svelte-o4a6oh.svelte-o4a6oh::after{content:'..';display:inline-block;animation:svelte-o4a6oh-dot 4s linear infinite}.progress.svelte-o4a6oh.svelte-o4a6oh{width:-webkit-max-content;width:-moz-max-content;width:max-content;position:relative}.blend.svelte-o4a6oh.svelte-o4a6oh{mix-blend-mode:lighten;position:absolute;top:0;left:0;width:100%;height:100%}.rotate.svelte-o4a6oh.svelte-o4a6oh{position:fixed;width:100%;left:50%;bottom:20%;transform:translateX(-50%);display:flex;justify-content:center;align-items:center;flex-direction:column;color:#000}.rotate.svelte-o4a6oh span.svelte-o4a6oh{font-size:0.8rem;margin-top:1rem}.rotate.svelte-o4a6oh i.svelte-o4a6oh{animation:svelte-o4a6oh-rotatePhone 1s infinite alternate;transform-origin:center;line-height:1rem}.unfilled.svelte-o4a6oh.svelte-o4a6oh,.filled.svelte-o4a6oh.svelte-o4a6oh{display:block;position:absolute;top:0;left:0;height:100%}.unfilled.svelte-o4a6oh.svelte-o4a6oh{width:100%;background-color:#f7f7f7}.filled.svelte-o4a6oh.svelte-o4a6oh{background-color:#666666}@keyframes svelte-o4a6oh-dot{0%{content:''}33%{content:'.'}66%{content:'..'}100%{content:'...'}}@keyframes svelte-o4a6oh-rotatePhone{0%{transform:rotate(0deg)}100%{transform:rotate(-90deg)}}",
-  map: null
-};
-const InitialLoader = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $isMobile, $$unsubscribe_isMobile;
-  let $mobileMode, $$unsubscribe_mobileMode;
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => $isMobile = value);
-  $$unsubscribe_mobileMode = subscribe(mobileMode, (value) => $mobileMode = value);
-  let { isBannerLoaded = false } = $$props;
-  let { directLoad = false } = $$props;
-  let isLoaded = false;
-  let current = -1;
-  getContext("loaded");
-  if ($$props.isBannerLoaded === void 0 && $$bindings.isBannerLoaded && isBannerLoaded !== void 0)
-    $$bindings.isBannerLoaded(isBannerLoaded);
-  if ($$props.directLoad === void 0 && $$bindings.directLoad && directLoad !== void 0)
-    $$bindings.directLoad(directLoad);
-  $$result.css.add(css$1);
-  $$unsubscribe_isMobile();
-  $$unsubscribe_mobileMode();
-  return `${``}
-
-${!((isBannerLoaded || directLoad) && isLoaded && current >= 100) ? `<div class="${"loader svelte-o4a6oh"}"><div class="${"content svelte-o4a6oh"}"><div class="${"progress svelte-o4a6oh"}"><div class="${"icon"}"><i class="${"gi-pyro"}"></i>
-					<i class="${"gi-hydro"}"></i>
-					<i class="${"gi-anemo"}"></i>
-					<i class="${"gi-electro"}"></i>
-					<i class="${"gi-dendro"}"></i>
-					<i class="${"gi-cryo"}"></i>
-					<i class="${"gi-geo"}"></i></div>
-				<div class="${"blend svelte-o4a6oh"}"><div class="${"unfilled svelte-o4a6oh"}"></div>
-					<div class="${"filled animate svelte-o4a6oh"}" style="${"width:" + escape(current.toFixed(2), true) + "%"}"></div></div></div>
-
-			${`<div class="${"text connecting svelte-o4a6oh"}">Connecting</div>`}
-
-			${$isMobile && !$mobileMode ? `<div class="${"rotate svelte-o4a6oh"}"><i class="${"gi-rotate-phone svelte-o4a6oh"}"></i>
-					<span class="${"svelte-o4a6oh"}">Rotate for better experience </span></div>` : ``}</div></div>` : ``}`;
-});
-const _layout_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "@import '../../node_modules/overlayscrollbars/css/OverlayScrollbars.css';@font-face{font-family:'GI_Global_Web';src:url('/fonts/optimized_global_web.woff2') format('woff2');font-weight:normal;font-style:normal}@font-face{font-family:'GI_JA_Web';src:url('/fonts/optimized_jp_web.woff2') format('woff2');font-weight:normal;font-style:normal}@font-face{font-family:'GI_TH_Web';src:url('/fonts/optimized_th_web.woff2') format('woff2');font-weight:normal;font-style:normal}@font-face{font-family:'GI_ZH_Web';src:url('/fonts/optimized_zh_web.woff2') format('woff2');font-weight:normal;font-style:normal}@font-face{font-family:'AAQISHU';src:url('/fonts/aaqishu.woff') format('woff');font-style:normal;font-weight:normal}.os-theme-light > :global(.os-scrollbar) > :global(.os-scrollbar-track) > :global(.os-scrollbar-handle){background-color:#d2c69c;opacity:0.5}.os-theme-light > :global(.os-scrollbar) > :global(.os-scrollbar-track) > :global(.os-scrollbar-handle:hover),.os-theme-light > :global(.os-scrollbar) > :global(.os-scrollbar-track) > :global(.os-scrollbar-handle:active){background-color:#d2c69c;opacity:1}.os-theme-light > :global(.os-scrollbar-vertical){width:8px}.os-theme-light > :global(.os-scrollbar-horizontal){height:8px}main{display:block;width:var(--screen-width);height:var(--screen-height);font-family:var(--genshin-font);overflow:hidden}.uid{display:block;position:fixed;bottom:0px;right:2em;z-index:9999;color:#fff;text-shadow:0 0 1.5px rgba(0, 0, 0, 0.7);font-family:Roboto, sans-serif;pointer-events:none}.mobile .uid{right:5%}.preview .uid{pointer-events:unset;right:unset;left:1rem;bottom:1rem}",
-  map: null
-};
-const Layout = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_autoExport;
-  let $$unsubscribe_isMobile;
-  let $$unsubscribe_isPWA;
-  let $$unsubscribe_page;
-  let $locale, $$unsubscribe_locale;
-  let $mobileMode, $$unsubscribe_mobileMode;
-  let $viewportHeight, $$unsubscribe_viewportHeight;
-  let $viewportWidth, $$unsubscribe_viewportWidth;
-  let $isLoading, $$unsubscribe_isLoading;
-  $$unsubscribe_autoExport = subscribe(autoExport, (value) => value);
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => value);
-  $$unsubscribe_isPWA = subscribe(isPWA, (value) => value);
-  $$unsubscribe_page = subscribe(page, (value) => value);
-  $$unsubscribe_locale = subscribe(D, (value) => $locale = value);
-  $$unsubscribe_mobileMode = subscribe(mobileMode, (value) => $mobileMode = value);
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => $viewportHeight = value);
-  $$unsubscribe_viewportWidth = subscribe(viewportWidth, (value) => $viewportWidth = value);
-  $$unsubscribe_isLoading = subscribe(k, (value) => $isLoading = value);
-  let innerHeight;
-  let innerWidth;
-  let isBannerLoaded = false;
-  let isloaded = false;
-  setContext("bannerLoaded", () => isBannerLoaded = true);
-  setContext("loaded", () => isloaded = true);
-  let font = "";
-  let directLoad = false;
-  mountLocale();
-  $$result.css.add(css);
-  {
-    {
-      const lc = $locale?.toLowerCase() || "";
-      const isYuanshen = lc.match(/(cn|ja)/);
-      font = isYuanshen || lc.includes("th") ? lc.split("-")[0] : "global";
-    }
-  }
-  {
-    viewportWidth.set(innerWidth);
-  }
-  {
-    viewportHeight.set(innerHeight);
-  }
-  $$unsubscribe_autoExport();
-  $$unsubscribe_isMobile();
-  $$unsubscribe_isPWA();
-  $$unsubscribe_page();
-  $$unsubscribe_locale();
-  $$unsubscribe_mobileMode();
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_viewportWidth();
-  $$unsubscribe_isLoading();
-  return `
-
-${$$result.head += `<meta name="${"description"}"${add_attribute("content", DESCRIPTION, 0)} data-svelte="svelte-uo0i7a"><meta name="${"keywords"}"${add_attribute("content", KEYWORDS, 0)} data-svelte="svelte-uo0i7a"><meta property="${"al:web:url"}"${add_attribute("content", HOST, 0)} data-svelte="svelte-uo0i7a"><link rel="${"fluid-icon"}" href="${escape(HOST, true) + "/meta-picture.jpg"}"${add_attribute("title", APP_TITLE, 0)} data-svelte="svelte-uo0i7a"><meta property="${"og:url"}"${add_attribute("content", HOST, 0)} data-svelte="svelte-uo0i7a"><meta property="${"og:type"}" content="${"website"}" data-svelte="svelte-uo0i7a"><meta property="${"og:title"}"${add_attribute("content", APP_TITLE, 0)} data-svelte="svelte-uo0i7a"><meta property="${"og:description"}"${add_attribute("content", DESCRIPTION, 0)} data-svelte="svelte-uo0i7a"><meta property="${"og:image"}" content="${escape(HOST, true) + "/meta-picture.jpg"}" data-svelte="svelte-uo0i7a"><meta name="${"twitter:card"}" content="${"summary_large_image"}" data-svelte="svelte-uo0i7a"><meta property="${"twitter:domain"}"${add_attribute("content", HOST.replace("https://", "").replace("http://", ""), 0)} data-svelte="svelte-uo0i7a"><meta property="${"twitter:url"}"${add_attribute("content", HOST, 0)} data-svelte="svelte-uo0i7a"><meta name="${"twitter:title"}"${add_attribute("content", APP_TITLE, 0)} data-svelte="svelte-uo0i7a"><meta name="${"twitter:description"}"${add_attribute("content", DESCRIPTION, 0)} data-svelte="svelte-uo0i7a"><meta name="${"twitter:image"}" content="${escape(HOST, true) + "/meta-picture.jpg"}" data-svelte="svelte-uo0i7a"><link rel="${"preload"}" href="${"/fonts/aaqishu.woff"}" as="${"font"}" type="${"font/woff"}" crossorigin data-svelte="svelte-uo0i7a"><link rel="${"preload"}" href="${"/fonts/optimized_global_web.woff2"}" as="${"font"}" type="${"font/woff2"}" crossorigin data-svelte="svelte-uo0i7a"><link rel="${"preload"}" href="${"/fonts/optimized_th_web.woff2"}" as="${"font"}" type="${"font/woff2"}" crossorigin data-svelte="svelte-uo0i7a"><link rel="${"preload"}" href="${"/fonts/optimized_jp_web.woff2"}" as="${"font"}" type="${"font/woff2"}" crossorigin data-svelte="svelte-uo0i7a"><link rel="${"preload"}" href="${"/fonts/optimized_zh_web.woff2"}" as="${"font"}" type="${"font/woff2"}" crossorigin data-svelte="svelte-uo0i7a">${`<link rel="${"manifest"}" href="${"/appmanifest.json"}" data-svelte="svelte-uo0i7a">`}`, ""}
-
-${validate_component(InitialLoader, "Loader").$$render($$result, { isBannerLoaded, directLoad }, {}, {})}
-
-<main class="${[
-    escape($locale, true),
-    ($mobileMode ? "mobile" : "") + " "
-  ].join(" ").trim()}" style="${"--screen-height: " + escape($viewportHeight ? `${$viewportHeight}px` : "100vh", true) + ";--screen-width: " + escape($viewportWidth, true) + "px; --genshin-font: var(--gi-" + escape(font, true) + "-font);"}">${validate_component(Toasts, "Toasts").$$render($$result, {}, {}, {})}
-
-	${!$isLoading && isloaded ? `${slots.default ? slots.default({}) : ``}` : ``}
-	<a href="${"/"}" class="${"uid"}" title="${"Try Your Luck by this Simulator"}"></a>
-</main>`;
-});
-export {
-  Layout as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_page.svelte.js
deleted file mode 100644
index 106c827b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/_page.svelte.js
+++ /dev/null
@@ -1,5728 +0,0 @@
-import { c as create_ssr_component, a as subscribe, f as createEventDispatcher, o as onDestroy, e as escape, d as add_attribute, v as validate_component, h as compute_slots, g as getContext, j as null_to_empty, k as each, s as setContext, l as is_promise, n as noop, p as set_store_value, m as missing_component } from "../../chunks/index.js";
-import { p as page } from "../../chunks/stores.js";
-import { w as writable } from "../../chunks/index2.js";
-import hotkeys from "hotkeys-js";
-import { p as probabilityRates, t as toastMsg, n as notice, d as assets, e as beginnerRemaining, s as showBeginner, f as activeBanner, g as bannerList, h as activeVersion, j as course, k as isFatepointSystem, a as viewportHeight, m as mobileMode, w as wishAmount, l as acquaint, o as intertwined, q as editorMode, b as isPWA, i as isMobile, r as starglitter, u as stardust, x as primogem, y as isCustomBanner, z as editID, A as multipull, B as preloadVersion, C as proUser, D as customData, v as viewportWidth } from "../../chunks/app-stores.js";
-import { l as localrate, p as playSfx, a as localPity, r as rollCounter, o as owneditem, I as Icon$1, b as positionToStyle, i as isNewOutfitReleased, S as SVGIcon, c as Item_info, f as fatepointManager, d as localConfig, e as localBalance, W as WishResult, g as pauseSfx, h as dailyWelkin } from "../../chunks/WishResult.js";
-import { m as memberDB } from "../../chunks/member-loader.js";
-import { a as API_HOST, A as APP_TITLE } from "../../chunks/env.js";
-import "idb";
-import { Y, D, o as oe } from "../../chunks/runtime.esm.js";
-import "overlayscrollbars";
-import { B as ButtonModal } from "../../chunks/ButtonModal.js";
-import { B as ButtonGeneral } from "../../chunks/ButtonGeneral.js";
-import "howler";
-import "zoomist";
-import "html-to-image";
-const onlyStandard = [
-  "amber",
-  "kaeya",
-  "lisa"
-];
-const data$1 = [
-  {
-    itemID: 164,
-    name: "chevreuse",
-    vision: "pyro",
-    rarity: 4,
-    release: "4.3-2",
-    offset: {
-      splashArt: {
-        x: -0.49195710455764075,
-        y: -10.837801608579088,
-        scale: 1.09
-      },
-      wishCard: {
-        x: 7.69894534995206,
-        y: 21.16331096196868,
-        scale: 7.91
-      }
-    }
-  },
-  {
-    itemID: 162,
-    name: "navia",
-    vision: "geo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -5.14436090225564,
-        y: -0.968421052631579,
-        scale: 1.48
-      },
-      wishCard: {
-        x: -82.53611556982344,
-        y: 68.28539325842696,
-        scale: 10.9
-      },
-      button: {
-        l: 55,
-        w: 110,
-        t: 35
-      }
-    }
-  },
-  {
-    itemID: 160,
-    name: "furina",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -3.4444444444444446,
-        y: -11.197368421052632,
-        scale: 2.08
-      },
-      wishCard: {
-        x: -69.38581608415338,
-        y: 31.947743467933492,
-        scale: 13.73
-      },
-      button: {
-        l: 52,
-        w: 130,
-        t: 35
-      }
-    }
-  },
-  {
-    itemID: 159,
-    name: "charlotte",
-    vision: "cryo",
-    rarity: 4,
-    release: "4.2-1",
-    offset: {
-      splashArt: {
-        x: 0.1495956873315364,
-        y: -3.9474393530997305,
-        scale: 1.1
-      },
-      wishCard: {
-        x: -2.2293858160841533,
-        y: 39.605700712589076,
-        scale: 7.9
-      }
-    }
-  },
-  {
-    itemID: 71,
-    name: "wriothesley",
-    vision: "cryo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -3.888888888888889,
-        y: 2.038011695906433,
-        scale: 1.56
-      },
-      wishCard: {
-        x: -62.076688157448245,
-        y: 80.78859857482186,
-        scale: 12.43
-      },
-      button: {
-        l: 50,
-        w: 120,
-        t: 25
-      }
-    }
-  },
-  {
-    itemID: 70,
-    name: "neuvillette",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -2.5891812865497075,
-        y: -1.637426900584795,
-        scale: 1.45
-      },
-      wishCard: {
-        x: -12.846963013233797,
-        y: 71.27553444180522,
-        scale: 12.02
-      },
-      button: {
-        l: 54,
-        w: 105,
-        t: 20
-      }
-    }
-  },
-  {
-    itemID: 69,
-    name: "freminet",
-    vision: "cryo",
-    rarity: 4,
-    release: "4.0-2",
-    offset: {
-      splashArt: {
-        x: -4.552631578947368,
-        y: 3.0877192982456143,
-        scale: 1.5
-      },
-      wishCard: {
-        x: -106.73566338649474,
-        y: 54.09738717339667,
-        scale: 9.56
-      }
-    }
-  },
-  {
-    itemID: 68,
-    name: "lynette",
-    vision: "anemo",
-    rarity: 4,
-    release: "4.0-1",
-    offset: {
-      splashArt: {
-        x: 1.1023391812865497,
-        y: 0.10964912280701754,
-        scale: 1.36
-      },
-      wishCard: {
-        x: 2.646759416355616,
-        y: 47.96199524940617,
-        scale: 8.03
-      }
-    }
-  },
-  {
-    itemID: 67,
-    name: "lyney",
-    vision: "pyro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -1.8581871345029242,
-        y: 2.621345029239766,
-        scale: 1.76
-      },
-      wishCard: {
-        x: -37.45164574143197,
-        y: 65,
-        scale: 12.4
-      },
-      button: {
-        l: 55,
-        w: 105,
-        t: 20
-      }
-    }
-  },
-  {
-    itemID: 66,
-    name: "kirara",
-    vision: "dendro",
-    rarity: 4,
-    release: "3.7-1",
-    offset: {
-      splashArt: {
-        x: -0.5701754385964912,
-        y: 10.7953216374269,
-        scale: 1.52
-      },
-      wishCard: {
-        x: 52.96572785883949,
-        y: 87.36579572446556,
-        scale: 10.5
-      }
-    }
-  },
-  {
-    itemID: 65,
-    name: "baizhu",
-    vision: "dendro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 0.381578947368421,
-        y: 9.837719298245615,
-        scale: 1.51
-      },
-      wishCard: {
-        x: 64.92704445198507,
-        y: 75.93824228028502,
-        scale: 11.26
-      },
-      button: {
-        l: 50,
-        w: 105,
-        t: 35
-      }
-    }
-  },
-  {
-    itemID: 64,
-    name: "kaveh",
-    vision: "dendro",
-    rarity: 4,
-    release: "3.6-2",
-    offset: {
-      splashArt: {
-        x: -0.618421052631579,
-        y: -1.752923976608187,
-        scale: 1.24
-      },
-      wishCard: {
-        x: -5.039022734984731,
-        y: 84.58669833729216,
-        scale: 10.12
-      }
-    }
-  },
-  {
-    itemID: 63,
-    name: "mika",
-    vision: "cryo",
-    rarity: 4,
-    release: "3.5-2",
-    offset: {
-      splashArt: {
-        x: 0.638888888888889,
-        y: -1.6944444444444442,
-        scale: 1.09
-      },
-      wishCard: {
-        x: 37.90973871733967,
-        y: 52.26128266033254,
-        scale: 7.23
-      }
-    }
-  },
-  {
-    itemID: 62,
-    name: "dehya",
-    vision: "pyro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -2.3304093567251463,
-        y: -0.3494152046783626,
-        scale: 1.72
-      },
-      wishCard: {
-        x: -10.831353919239906,
-        y: 74.64133016627078,
-        scale: 13.16
-      },
-      button: {
-        w: 130,
-        t: 24,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 61,
-    name: "alhaitham",
-    vision: "dendro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 0.09502923976608187,
-        y: -1.4181286549707601,
-        scale: 1.28
-      },
-      wishCard: {
-        x: -6.65761791652528,
-        y: 77.5059382422803,
-        scale: 9.98
-      },
-      button: {
-        w: 130,
-        t: 24,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 60,
-    name: "yaoyao",
-    vision: "dendro",
-    rarity: 4,
-    release: "3.4-1",
-    offset: {
-      splashArt: {
-        x: -2.118421052631579,
-        y: -2.416666666666667,
-        scale: 1.2
-      },
-      wishCard: {
-        x: -21.072276891754328,
-        y: 34.06175771971496,
-        scale: 5.94
-      }
-    }
-  },
-  {
-    itemID: 59,
-    name: "wanderer",
-    vision: "anemo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 2.8084795321637426,
-        y: -0.9035087719298245,
-        scale: 1.33
-      },
-      wishCard: {
-        x: -10.851713607058025,
-        y: 57.80522565320665,
-        scale: 9.34
-      },
-      button: {
-        w: 120,
-        t: 27
-      }
-    }
-  },
-  {
-    itemID: 58,
-    name: "faruzan",
-    vision: "anemo",
-    rarity: 4,
-    release: "3.3-1",
-    offset: {
-      splashArt: {
-        x: 0.7763157894736842,
-        y: -3.3362573099415203,
-        scale: 1.32
-      },
-      wishCard: {
-        x: 29.27723108245674,
-        y: 52.073634204275535,
-        scale: 7.97
-      }
-    }
-  },
-  {
-    itemID: 57,
-    name: "layla",
-    vision: "cryo",
-    rarity: 4,
-    release: "3.2-2",
-    offset: {
-      splashArt: {
-        x: 2.103801169590643,
-        y: -2.5350877192982457,
-        scale: 1.19
-      },
-      wishCard: {
-        x: 2.9216152019002375,
-        y: 42.89786223277909,
-        scale: 6.7
-      }
-    }
-  },
-  {
-    itemID: 56,
-    name: "nahida",
-    vision: "dendro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 0.7383040935672515,
-        y: -1.6695906432748537,
-        scale: 1.53
-      },
-      wishCard: {
-        x: 41.136749236511704,
-        y: 35.771971496437054,
-        scale: 9.94
-      },
-      button: {
-        w: 130,
-        t: 30
-      }
-    }
-  },
-  {
-    itemID: 55,
-    name: "nilou",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -2.320175438596491,
-        y: -1.6754385964912282,
-        scale: 1.44
-      },
-      wishCard: {
-        x: -18.50695622667119,
-        y: 59.363420427553436,
-        scale: 9.74
-      },
-      button: {
-        w: 145,
-        t: 35,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 54,
-    name: "cyno",
-    vision: "electro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 3.491228070175439,
-        y: -9.956140350877192,
-        scale: 1.36
-      },
-      wishCard: {
-        x: -0.01017984390906006,
-        y: 42.16627078384798,
-        scale: 9.55
-      },
-      button: {
-        w: 160,
-        t: 35,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 53,
-    name: "candace",
-    vision: "hydro",
-    rarity: 4,
-    release: "3.1-1",
-    offset: {
-      splashArt: {
-        x: -1.3814016172506738,
-        y: -1.04177897574124,
-        scale: 1.44
-      },
-      wishCard: {
-        x: -21.004815409309792,
-        y: 46.05842696629214,
-        scale: 9.3
-      }
-    }
-  },
-  {
-    itemID: 52,
-    name: "dori",
-    vision: "electro",
-    rarity: 4,
-    release: "3.0-2",
-    offset: {
-      splashArt: {
-        scale: 1.36
-      },
-      wishCard: {
-        x: -27.02748557855446,
-        y: 49.93586698337292,
-        scale: 7.46
-      }
-    }
-  },
-  {
-    itemID: 51,
-    name: "tighnari",
-    vision: "dendro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -1.5555555555555556,
-        y: -1.3362573099415207,
-        scale: 1.2
-      },
-      wishCard: {
-        x: 1.170682049541907,
-        y: 61.194774346793345,
-        scale: 7.84
-      },
-      button: {
-        w: 95,
-        t: 35,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 50,
-    name: "collei",
-    vision: "dendro",
-    rarity: 4,
-    release: "3.0-1",
-    offset: {
-      splashArt: {
-        x: -0.31725146198830406,
-        y: -4.959064327485381,
-        scale: 1.31
-      },
-      wishCard: {
-        x: 66.53545978961655,
-        y: 38.87648456057007,
-        scale: 8.42
-      }
-    }
-  },
-  {
-    itemID: 49,
-    name: "shikanoin-heizou",
-    vision: "anemo",
-    rarity: 4,
-    release: "2.8-1",
-    offset: {
-      splashArt: {
-        x: 3.675438596491228,
-        y: -1.1140350877192984,
-        scale: 1.21
-      },
-      wishCard: {
-        x: -2.3006447234475735,
-        y: 44.09263657957245,
-        scale: 7.27
-      }
-    }
-  },
-  {
-    itemID: 48,
-    name: "kuki-shinobu",
-    vision: "electro",
-    rarity: 4,
-    release: "2.7-2",
-    offset: {
-      splashArt: {
-        x: 1.5526315789473684,
-        y: -0.12719298245614036,
-        scale: 1.28
-      },
-      wishCard: {
-        x: -29.491007804547,
-        y: 48.66270783847981,
-        scale: 8.03
-      }
-    }
-  },
-  {
-    itemID: 47,
-    name: "yelan",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 0.43713450292397665,
-        y: -5.400584795321637,
-        scale: 1.24
-      },
-      wishCard: {
-        x: 22.212419409569055,
-        y: 59.54394299287411,
-        scale: 9.19
-      },
-      button: {
-        w: 100,
-        t: 32,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 46,
-    name: "kamisato-ayato",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 5.092105263157895,
-        y: 0.9590643274853801,
-        scale: 1.41
-      },
-      wishCard: {
-        x: 35.41567695961995,
-        y: 74.40380047505938,
-        scale: 10.5
-      },
-      button: {
-        w: 140,
-        t: 35,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 45,
-    name: "yae-miko",
-    vision: "electro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -3.988304093567251,
-        y: -1.3157894736842104,
-        scale: 1.21
-      },
-      wishCard: {
-        x: -33.15575161180862,
-        y: 62.634204275534444,
-        scale: 8.44
-      },
-      button: {
-        w: 170,
-        t: 24,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 44,
-    name: "shenhe",
-    vision: "cryo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -6.16812865497076,
-        y: -4.779239766081871,
-        scale: 1.44
-      },
-      wishCard: {
-        x: -62.544960977265006,
-        y: 58.826603325415675,
-        scale: 9.93
-      },
-      button: {
-        w: 170,
-        t: 20,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 43,
-    name: "yun-jin",
-    vision: "geo",
-    rarity: 4,
-    release: "2.4-1",
-    offset: {
-      splashArt: {
-        x: 0.3669590643274853,
-        y: -1.6871345029239766,
-        scale: 1.2
-      },
-      wishCard: {
-        x: 9.100780454699695,
-        y: 49.19239904988124,
-        scale: 6.53
-      }
-    }
-  },
-  {
-    itemID: 42,
-    name: "arataki-itto",
-    vision: "geo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 2.3187134502923974,
-        y: -1.5526315789473684,
-        scale: 1.38
-      },
-      wishCard: {
-        x: 29.98982015609094,
-        y: 66.81710213776722,
-        scale: 9.98
-      },
-      button: {
-        w: 190,
-        t: 30,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 41,
-    name: "gorou",
-    vision: "geo",
-    rarity: 4,
-    release: "2.3-2",
-    offset: {
-      splashArt: {
-        x: 3.1052631578947367,
-        y: -0.9312865497076023,
-        scale: 1.28
-      },
-      wishCard: {
-        x: 35.54801493043773,
-        y: 49.82422802850356,
-        scale: 8.36
-      }
-    }
-  },
-  {
-    itemID: 40,
-    name: "thoma",
-    vision: "pyro",
-    rarity: 4,
-    release: "2.2-2",
-    offset: {
-      splashArt: {
-        x: -1.2514619883040936,
-        y: 0.8391812865497077,
-        scale: 1.36
-      },
-      wishCard: {
-        x: 40.6277570410587,
-        y: 58.20902612826604,
-        scale: 8.41
-      }
-    }
-  },
-  {
-    itemID: 39,
-    name: "sangonomiya-kokomi",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 2.7222222222222223,
-        y: 2.41812865497076,
-        scale: 1.21
-      },
-      wishCard: {
-        x: 20.746521886664404,
-        y: 53.70071258907364,
-        scale: 7.460000000000001
-      },
-      button: {
-        w: 180,
-        t: 25,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 38,
-    name: "raiden-shogun",
-    vision: "electro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 2.3406432748538015,
-        y: -2.334795321637427,
-        scale: 1.29
-      },
-      wishCard: {
-        x: 13.172718018323717,
-        y: 54.24228028503564,
-        scale: 8.77
-      },
-      button: {
-        w: 160,
-        t: 5
-      }
-    }
-  },
-  {
-    itemID: 37,
-    name: "kujou-sara",
-    vision: "electro",
-    rarity: 4,
-    release: "2.1-1",
-    offset: {
-      splashArt: {
-        x: 4.29093567251462,
-        y: -0.3421052631578947,
-        scale: 1.31
-      },
-      wishCard: {
-        x: 28.22870715982355,
-        y: 73.31591448931117,
-        scale: 9.45
-      }
-    }
-  },
-  {
-    itemID: 36,
-    name: "yoimiya",
-    vision: "pyro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -3.887426900584795,
-        y: -5.245614035087719,
-        scale: 1.5
-      },
-      wishCard: {
-        x: -14.211062097047847,
-        y: 40.53681710213777,
-        scale: 8.27
-      },
-      button: {
-        w: 150,
-        t: 20,
-        l: 40
-      }
-    }
-  },
-  {
-    itemID: 35,
-    name: "sayu",
-    vision: "anemo",
-    rarity: 4,
-    release: "2.0-2",
-    offset: {
-      splashArt: {
-        x: -2.3596491228070176,
-        y: -6.853801169590644,
-        scale: 1.5
-      },
-      wishCard: {
-        x: -71.29962673905668,
-        y: 42.02612826603326,
-        scale: 8.87
-      }
-    }
-  },
-  {
-    itemID: 34,
-    name: "kamisato-ayaka",
-    vision: "cryo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 1.8669590643274854,
-        y: -3.818713450292398,
-        scale: 1.61
-      },
-      wishCard: {
-        x: 14.292500848320325,
-        y: 51.496437054631826,
-        scale: 12.67
-      },
-      button: {
-        w: 82,
-        t: 32
-      }
-    }
-  },
-  {
-    itemID: 33,
-    name: "kaedehara-kazuha",
-    vision: "anemo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -1.4853801169590644,
-        y: 2.1505847953216377,
-        scale: 1.33
-      },
-      wishCard: {
-        x: 21.418391584662366,
-        y: 70.61520190023754,
-        scale: 9.52
-      },
-      button: {
-        w: 110,
-        t: 32
-      }
-    }
-  },
-  {
-    itemID: 32,
-    name: "eula",
-    vision: "cryo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 3.56140350877193,
-        y: -1.8128654970760234,
-        scale: 1.34
-      },
-      wishCard: {
-        x: 6.118086189345096,
-        y: 64.99287410926365,
-        scale: 9.74
-      },
-      button: {
-        w: 140,
-        t: 32
-      }
-    }
-  },
-  {
-    itemID: 31,
-    name: "yanfei",
-    vision: "pyro",
-    rarity: 4,
-    release: "1.5-1",
-    offset: {
-      splashArt: {
-        x: 7.014619883040934,
-        y: -0.15789473684210528,
-        scale: 1.46
-      },
-      wishCard: {
-        x: 169.04648795385137,
-        y: 59.320665083135395,
-        scale: 8.9
-      }
-    }
-  },
-  {
-    itemID: 30,
-    name: "rosaria",
-    vision: "cryo",
-    rarity: 4,
-    release: "1.4-2",
-    offset: {
-      splashArt: {
-        x: -0.608187134502924,
-        y: -5.552631578947368,
-        scale: 1.24
-      },
-      wishCard: {
-        x: 11.309806582965727,
-        y: 64.11163895486936,
-        scale: 8.95
-      }
-    }
-  },
-  {
-    itemID: 29,
-    name: "hu-tao",
-    vision: "pyro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -3.0453216374269,
-        y: 2.6067251461988303,
-        scale: 1.64
-      },
-      wishCard: {
-        x: -139.93213437393962,
-        y: 55.42992874109264,
-        scale: 11.75
-      },
-      button: {
-        w: 160,
-        t: 22
-      }
-    }
-  },
-  {
-    itemID: 28,
-    name: "xiao",
-    vision: "anemo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -0.4035087719298246,
-        y: -17.27777777777778,
-        scale: 1.56
-      },
-      wishCard: {
-        x: 14.475738038683408,
-        y: 17.52256532066508,
-        scale: 9.55
-      },
-      button: {
-        w: 120,
-        t: 30,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 27,
-    name: "ganyu",
-    vision: "cryo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 2.703216374269006,
-        y: -2.995614035087719,
-        scale: 1.36
-      },
-      wishCard: {
-        x: 14.577536477774009,
-        y: 54.7790973871734,
-        scale: 8.03
-      },
-      button: {
-        w: 200,
-        t: 25
-      }
-    }
-  },
-  {
-    itemID: 26,
-    name: "albedo",
-    vision: "geo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 0.35233918128654973,
-        y: -3.8289473684210527,
-        scale: 1.59
-      },
-      wishCard: {
-        x: -44.16016287750254,
-        y: 57.07600950118764,
-        scale: 11.09
-      },
-      button: {
-        w: 170,
-        t: 28,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 25,
-    name: "zhongli",
-    vision: "geo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 4.168128654970761,
-        y: -8.782163742690058,
-        scale: 1.61
-      },
-      wishCard: {
-        x: 41.58466236851035,
-        y: 43.56294536817102,
-        scale: 8.92
-      },
-      button: {
-        w: 120,
-        t: 25,
-        l: 70
-      }
-    }
-  },
-  {
-    itemID: 24,
-    name: "xinyan",
-    vision: "pyro",
-    rarity: 4,
-    release: "1.1-2",
-    offset: {
-      splashArt: {
-        x: -2.2017543859649122,
-        y: -3.8976608187134505,
-        scale: 1.6
-      },
-      wishCard: {
-        x: -8.245673566338649,
-        y: 48.96912114014252,
-        scale: 11.1
-      }
-    }
-  },
-  {
-    itemID: 23,
-    name: "tartaglia",
-    vision: "hydro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: 9.15204678362573,
-        y: -13.576023391812866,
-        scale: 1.73
-      },
-      wishCard: {
-        x: 67.8486596538853,
-        y: 43.60095011876485,
-        scale: 13.21
-      },
-      button: {
-        w: 160,
-        t: 22
-      }
-    }
-  },
-  {
-    itemID: 22,
-    name: "diona",
-    vision: "cryo",
-    rarity: 4,
-    release: "1.1-1",
-    offset: {
-      splashArt: {
-        scale: 1
-      },
-      wishCard: {
-        x: 53.44418052256532,
-        y: 39.942992874109265,
-        scale: 5.48
-      }
-    }
-  },
-  {
-    itemID: 21,
-    name: "klee",
-    vision: "pyro",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        scale: 1
-      },
-      wishCard: {
-        x: -3.37970817780794,
-        y: 20.831353919239906,
-        scale: 5.18
-      },
-      button: {
-        w: 110,
-        t: 32
-      }
-    }
-  },
-  {
-    itemID: 20,
-    name: "venti",
-    vision: "anemo",
-    rarity: 5,
-    offset: {
-      splashArt: {
-        x: -2.776315789473684,
-        y: -3.442982456140351,
-        scale: 1.35
-      },
-      wishCard: {
-        x: 33.0335934848999,
-        y: 43.27553444180523,
-        scale: 7.8
-      },
-      button: {
-        w: 180,
-        t: 30,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 19,
-    name: "keqing",
-    vision: "electro",
-    rarity: 5,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -7.773391812865498,
-        y: -3.5029239766081877,
-        scale: 1.4
-      },
-      wishCard: {
-        x: -52.00882253138786,
-        y: 55.12351543942992,
-        scale: 8.41
-      },
-      button: {
-        w: 150,
-        t: 22,
-        l: 50
-      }
-    }
-  },
-  {
-    itemID: 18,
-    name: "mona",
-    vision: "hydro",
-    rarity: 5,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -1.1023391812865497,
-        y: -0.4473684210526315,
-        scale: 1.6
-      },
-      wishCard: {
-        x: 10.902612826603326,
-        y: 52.65320665083135,
-        scale: 10.88
-      }
-    }
-  },
-  {
-    itemID: 17,
-    name: "qiqi",
-    vision: "cryo",
-    rarity: 5,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: 1.7865497076023393,
-        y: -6.584795321637427,
-        scale: 1.31
-      },
-      wishCard: {
-        x: 0.1526976586359009,
-        y: 32.69121140142518,
-        scale: 7.84
-      },
-      button: {
-        w: 100,
-        t: 30
-      }
-    }
-  },
-  {
-    itemID: 16,
-    name: "diluc",
-    vision: "pyro",
-    rarity: 5,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -7.963450292397662,
-        y: -22.713450292397663,
-        scale: 1.93
-      },
-      wishCard: {
-        x: -75.45300305395317,
-        y: 17.840855106888363,
-        scale: 11.36
-      }
-    }
-  },
-  {
-    itemID: 15,
-    name: "jean",
-    vision: "anemo",
-    rarity: 5,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: 2.7412280701754383,
-        y: -3.0804093567251463,
-        scale: 1.36
-      },
-      wishCard: {
-        x: 32.412623006447234,
-        y: 61.74109263657957,
-        scale: 9.17
-      },
-      button: {
-        w: 90,
-        t: 35,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 14,
-    name: "sucrose",
-    vision: "anemo",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -0.9181286549707602,
-        y: -4.638888888888889,
-        scale: 1.19
-      },
-      wishCard: {
-        x: -4.886325076348829,
-        y: 55.403800475059384,
-        scale: 8
-      }
-    }
-  },
-  {
-    itemID: 13,
-    name: "chongyun",
-    vision: "cryo",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -9.397660818713451,
-        y: -2.641812865497076,
-        scale: 1.33
-      },
-      wishCard: {
-        x: -58.33050559891415,
-        y: 52.65320665083135,
-        scale: 8.6
-      }
-    }
-  },
-  {
-    itemID: 12,
-    name: "noelle",
-    vision: "geo",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -1.2266081871345031,
-        y: -2.2002923976608186,
-        scale: 1.2
-      },
-      wishCard: {
-        x: -40.84153376314896,
-        y: 56.8978622327791,
-        scale: 7.08
-      },
-      button: {
-        w: 100,
-        t: 30
-      }
-    }
-  },
-  {
-    itemID: 11,
-    name: "bennett",
-    vision: "pyro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -1.196765498652291,
-        y: -6.913746630727763,
-        scale: 1.2
-      },
-      wishCard: {
-        x: -73.58908507223114,
-        y: 34.95505617977528,
-        scale: 7.19
-      }
-    }
-  },
-  {
-    itemID: 10,
-    name: "fischl",
-    vision: "electro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -0.10818713450292397,
-        y: -13.786549707602338,
-        scale: 1.3
-      },
-      wishCard: {
-        x: -41.808618934509674,
-        y: 31.313539192399055,
-        scale: 7.32
-      }
-    }
-  },
-  {
-    itemID: 9,
-    name: "ningguang",
-    vision: "geo",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -4.739766081871346,
-        y: -3.9356725146198834,
-        scale: 1.56
-      },
-      wishCard: {
-        x: -83.59687818120123,
-        y: 60.17577197149644,
-        scale: 10.49
-      }
-    }
-  },
-  {
-    itemID: 8,
-    name: "xingqiu",
-    vision: "hydro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -0.10526315789473684,
-        y: -3.628654970760234,
-        scale: 1.09
-      },
-      wishCard: {
-        x: -17.051238547675602,
-        y: 65.82660332541568,
-        scale: 7.65
-      }
-    }
-  },
-  {
-    itemID: 7,
-    name: "beidou",
-    vision: "electro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -2.570080862533693,
-        y: 8.859838274932613,
-        scale: 1.49
-      },
-      wishCard: {
-        x: -22.468699839486355,
-        y: 76.61123595505617,
-        scale: 10.08
-      }
-    }
-  },
-  {
-    itemID: 6,
-    name: "xiangling",
-    vision: "pyro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -3.4415204678362574,
-        y: -2.9517543859649122,
-        scale: 1.5
-      },
-      wishCard: {
-        x: 60.73294876145232,
-        y: 59.62470308788599,
-        scale: 9.16
-      }
-    }
-  },
-  {
-    itemID: 5,
-    name: "razor",
-    vision: "electro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -3.8377192982456143,
-        y: -14.513157894736842,
-        scale: 1.24
-      },
-      wishCard: {
-        x: -75.56498133695284,
-        y: 29.57007125890736,
-        scale: 8.22
-      }
-    }
-  },
-  {
-    itemID: 4,
-    name: "barbara",
-    vision: "hydro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: -1.9663072776280326,
-        y: -0.6037735849056605,
-        scale: 1.3
-      },
-      wishCard: {
-        x: -0.8042076688157448,
-        y: 52.12351543942992,
-        scale: 7.75
-      }
-    }
-  },
-  {
-    itemID: 3,
-    name: "lisa",
-    vision: "electro",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        scale: 1
-      },
-      wishCard: {
-        x: 7.695961995249406,
-        y: 68.85748218527316,
-        scale: 7.29
-      }
-    }
-  },
-  {
-    itemID: 2,
-    name: "kaeya",
-    vision: "cryo",
-    rarity: 4,
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: 1.8786549707602338,
-        y: -0.3508771929824561,
-        scale: 1.28
-      },
-      wishCard: {
-        x: -33.07431286053614,
-        y: 76.2541567695962,
-        scale: 9.2
-      }
-    }
-  },
-  {
-    itemID: 1,
-    name: "amber",
-    rarity: 4,
-    vision: "pyro",
-    release: "1.0-0",
-    offset: {
-      splashArt: {
-        x: 1.62,
-        y: -5.56,
-        scale: 1.46
-      },
-      wishCard: {
-        x: 66,
-        y: 37.80674157303371,
-        scale: 7.71
-      }
-    }
-  }
-];
-const charsDB = {
-  onlyStandard,
-  data: data$1
-};
-const data = [
-  {
-    itemID: 163,
-    name: "verdict",
-    rarity: 5,
-    weaponType: "claymore",
-    limited: true,
-    offset: {
-      button: {
-        t: 1,
-        w: 70,
-        l: 38
-      }
-    }
-  },
-  {
-    itemID: 161,
-    name: "splendor-of-tranquil-waters",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        t: -15,
-        w: 90,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 158,
-    name: "prospector-drill",
-    rarity: 4,
-    weaponType: "polearm",
-    limited: true
-  },
-  {
-    itemID: 157,
-    name: "range-gauge",
-    rarity: 4,
-    weaponType: "bow",
-    limited: true
-  },
-  {
-    itemID: 156,
-    name: "cashflow-supervision",
-    rarity: 5,
-    weaponType: "catalyst",
-    limited: true,
-    offset: {
-      button: {
-        t: 35,
-        w: 70,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 155,
-    name: "portable-power-saw",
-    rarity: 4,
-    weaponType: "claymore",
-    limited: true
-  },
-  {
-    itemID: 154,
-    name: "the-dockhands-assistant",
-    rarity: 4,
-    weaponType: "sword",
-    limited: true
-  },
-  {
-    itemID: 153,
-    name: "tome-of-the-eternal-flow",
-    rarity: 5,
-    weaponType: "catalyst",
-    limited: true,
-    offset: {
-      button: {
-        t: 15,
-        w: 80,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 152,
-    name: "the-first-great-magic",
-    rarity: 5,
-    limited: true,
-    weaponType: "bow",
-    offset: {
-      button: {
-        t: 10,
-        w: 75,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 151,
-    name: "jadefall-splendor",
-    rarity: 5,
-    limited: true,
-    weaponType: "catalyst",
-    offset: {
-      button: {
-        w: 65,
-        t: 35,
-        l: 65
-      }
-    }
-  },
-  {
-    itemID: 150,
-    name: "beacon-of-the-reed-sea",
-    rarity: 5,
-    limited: true,
-    weaponType: "claymore",
-    offset: {
-      button: {
-        t: 10,
-        w: 70,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 149,
-    name: "light-of-foliar-incision",
-    rarity: 5,
-    limited: true,
-    weaponType: "sword",
-    offset: {
-      button: {
-        t: -15,
-        w: 90,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 148,
-    name: "tulaytullah_s-remembrance",
-    rarity: 5,
-    limited: true,
-    weaponType: "catalyst",
-    offset: {
-      button: {
-        w: 70,
-        t: 30,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 147,
-    name: "a-thousand-floating-dreams",
-    rarity: 5,
-    weaponType: "catalyst",
-    limited: true,
-    offset: {
-      button: {
-        w: 70,
-        t: 30,
-        l: 65
-      }
-    }
-  },
-  {
-    itemID: 146,
-    name: "key-of-khaj-nisut",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        t: -10,
-        w: 90,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 145,
-    name: "xiphos-moonlight",
-    rarity: 4,
-    weaponType: "sword",
-    limited: true
-  },
-  {
-    itemID: 144,
-    name: "wandering-evenstar",
-    rarity: 4,
-    weaponType: "catalyst",
-    limited: true
-  },
-  {
-    itemID: 143,
-    name: "staff-of-the-scarlet-sands",
-    rarity: 5,
-    weaponType: "polearm",
-    limited: true,
-    offset: {
-      button: {
-        w: 80,
-        t: 15,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 142,
-    name: "makhaira-aquamarine",
-    rarity: 4,
-    weaponType: "claymore",
-    limited: true
-  },
-  {
-    itemID: 141,
-    name: "hunter_s-path",
-    rarity: 5,
-    weaponType: "bow",
-    limited: true,
-    offset: {
-      button: {
-        w: 70,
-        l: 35,
-        t: 0
-      }
-    }
-  },
-  {
-    itemID: 140,
-    name: "aqua-simulacra",
-    rarity: 5,
-    weaponType: "bow",
-    limited: true,
-    offset: {
-      button: {
-        t: 5,
-        w: 80,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 139,
-    name: "redhorn-stonethresher",
-    rarity: 5,
-    weaponType: "claymore",
-    limited: true,
-    offset: {
-      button: {
-        t: 10,
-        w: 80,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 138,
-    name: "haran-geppaku-futsu",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        t: -35,
-        w: 120,
-        l: 55
-      }
-    }
-  },
-  {
-    itemID: 137,
-    name: "kagura_s-verity",
-    rarity: 5,
-    weaponType: "catalyst",
-    limited: true,
-    offset: {
-      button: {
-        w: 70,
-        t: 25,
-        l: 37
-      }
-    }
-  },
-  {
-    itemID: 136,
-    name: "calamity-queller",
-    rarity: 5,
-    weaponType: "polearm",
-    limited: true,
-    offset: {
-      button: {
-        w: 80,
-        t: 10,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 135,
-    name: "mouun_s-moon",
-    rarity: 4,
-    weaponType: "bow",
-    limited: true
-  },
-  {
-    itemID: 134,
-    name: "wavebreaker_s-fin",
-    rarity: 4,
-    weaponType: "polearm",
-    limited: true
-  },
-  {
-    itemID: 133,
-    name: "polar-star",
-    rarity: 5,
-    weaponType: "bow",
-    limited: true,
-    offset: {
-      button: {
-        w: 70,
-        t: 2,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 132,
-    name: "akuoumaru",
-    rarity: 4,
-    weaponType: "claymore",
-    limited: true
-  },
-  {
-    itemID: 131,
-    name: "everlasting-moonglow",
-    rarity: 5,
-    weaponType: "catalyst",
-    limited: true,
-    offset: {
-      button: {
-        w: 70,
-        t: 40,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 130,
-    name: "engulfing-lightning",
-    rarity: 5,
-    weaponType: "polearm",
-    limited: true,
-    offset: {
-      button: {
-        w: 80,
-        t: 20,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 129,
-    name: "thundering-pulse",
-    rarity: 5,
-    limited: true,
-    weaponType: "bow",
-    offset: {
-      button: {
-        w: 70,
-        t: 10,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 128,
-    name: "mistsplitter-reforged",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        w: 90,
-        t: -22,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 127,
-    name: "freedom-sworn",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        w: 100,
-        t: -20,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 126,
-    name: "mitternachts-waltz",
-    rarity: 4,
-    weaponType: "bow",
-    limited: true
-  },
-  {
-    itemID: 125,
-    name: "song-of-broken-pines",
-    rarity: 5,
-    weaponType: "claymore",
-    limited: true,
-    offset: {
-      button: {
-        w: 80,
-        t: 10,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 124,
-    name: "alley-hunter",
-    rarity: 4,
-    weaponType: "bow",
-    limited: true
-  },
-  {
-    itemID: 123,
-    name: "elegy-for-the-end",
-    rarity: 5,
-    weaponType: "bow",
-    limited: true,
-    offset: {
-      button: {
-        w: 70,
-        t: 10,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 122,
-    name: "the-alley-flash",
-    rarity: 4,
-    weaponType: "sword",
-    limited: true
-  },
-  {
-    itemID: 121,
-    name: "wine-and-song",
-    rarity: 4,
-    weaponType: "catalyst",
-    limited: true
-  },
-  {
-    itemID: 120,
-    name: "staff-of-homa",
-    rarity: 5,
-    weaponType: "polearm",
-    limited: true,
-    offset: {
-      button: {
-        w: 90,
-        t: 15,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 119,
-    name: "lithic-blade",
-    rarity: 4,
-    weaponType: "claymore",
-    limited: true
-  },
-  {
-    itemID: 118,
-    name: "lithic-spear",
-    rarity: 4,
-    weaponType: "polearm",
-    limited: true
-  },
-  {
-    itemID: 117,
-    name: "primordial-jade-cutter",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        w: 100,
-        t: -14,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 116,
-    name: "primordial-jade-winged-spear",
-    rarity: 5,
-    weaponType: "polearm",
-    offset: {
-      button: {
-        w: 80,
-        t: 10,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 115,
-    name: "summit-shaper",
-    rarity: 5,
-    weaponType: "sword",
-    limited: true,
-    offset: {
-      button: {
-        w: 90,
-        t: -10,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 114,
-    name: "vortex-vanquisher",
-    rarity: 5,
-    weaponType: "polearm",
-    limited: true,
-    offset: {
-      button: {
-        w: 90,
-        t: 20,
-        l: 30
-      }
-    }
-  },
-  {
-    itemID: 113,
-    name: "the-unforged",
-    rarity: 5,
-    weaponType: "claymore",
-    limited: true,
-    offset: {
-      button: {
-        w: 60,
-        t: 20,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 112,
-    name: "memory-of-dust",
-    rarity: 5,
-    weaponType: "catalyst",
-    limited: true,
-    offset: {
-      button: {
-        w: 65,
-        t: 30,
-        l: 65
-      }
-    }
-  },
-  {
-    itemID: 111,
-    name: "eye-of-perception",
-    rarity: 4,
-    weaponType: "catalyst"
-  },
-  {
-    itemID: 110,
-    name: "rainslasher",
-    rarity: 4,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 109,
-    name: "rust",
-    rarity: 4,
-    weaponType: "bow"
-  },
-  {
-    itemID: 108,
-    name: "lost-prayer-to-the-sacred-winds",
-    rarity: 5,
-    weaponType: "catalyst",
-    offset: {
-      button: {
-        w: 55,
-        t: 40,
-        l: 40
-      }
-    }
-  },
-  {
-    itemID: 107,
-    name: "wolf_s-gravestone",
-    rarity: 5,
-    weaponType: "claymore",
-    offset: {
-      button: {
-        w: 80,
-        t: 15,
-        l: 65
-      }
-    }
-  },
-  {
-    itemID: 106,
-    name: "amos-bow",
-    rarity: 5,
-    weaponType: "bow",
-    offset: {
-      button: {
-        w: 70,
-        t: 0,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 105,
-    name: "aquila-favonia",
-    rarity: 5,
-    weaponType: "sword",
-    offset: {
-      button: {
-        w: 80,
-        t: -10,
-        l: 65
-      }
-    }
-  },
-  {
-    itemID: 104,
-    name: "skyward-pride",
-    rarity: 5,
-    weaponType: "claymore",
-    offset: {
-      button: {
-        w: 80,
-        t: 10,
-        l: 65
-      }
-    }
-  },
-  {
-    itemID: 103,
-    name: "skyward-atlas",
-    rarity: 5,
-    weaponType: "catalyst",
-    offset: {
-      button: {
-        w: 65,
-        t: 40,
-        l: 70
-      }
-    }
-  },
-  {
-    itemID: 102,
-    name: "skyward-harp",
-    rarity: 5,
-    weaponType: "bow",
-    offset: {
-      button: {
-        w: 70,
-        t: 10,
-        l: 35
-      }
-    }
-  },
-  {
-    itemID: 101,
-    name: "skyward-spine",
-    rarity: 5,
-    weaponType: "polearm",
-    offset: {
-      button: {
-        w: 80,
-        t: 10,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 100,
-    name: "skyward-blade",
-    rarity: 5,
-    weaponType: "sword",
-    offset: {
-      button: {
-        w: 90,
-        t: -10,
-        l: 60
-      }
-    }
-  },
-  {
-    itemID: 99,
-    name: "the-flute",
-    rarity: 4,
-    weaponType: "sword"
-  },
-  {
-    itemID: 98,
-    name: "the-widsith",
-    rarity: 4,
-    weaponType: "catalyst"
-  },
-  {
-    itemID: 97,
-    name: "dragon_s-bane",
-    rarity: 4,
-    weaponType: "polearm"
-  },
-  {
-    itemID: 96,
-    name: "lion_s-roar",
-    rarity: 4,
-    weaponType: "sword"
-  },
-  {
-    itemID: 95,
-    name: "sacrificial-bow",
-    rarity: 4,
-    weaponType: "bow"
-  },
-  {
-    itemID: 94,
-    name: "sacrificial-fragments",
-    rarity: 4,
-    weaponType: "catalyst"
-  },
-  {
-    itemID: 93,
-    name: "sacrificial-greatsword",
-    rarity: 4,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 92,
-    name: "sacrificial-sword",
-    rarity: 4,
-    weaponType: "sword"
-  },
-  {
-    itemID: 91,
-    name: "favonius-greatsword",
-    rarity: 4,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 90,
-    name: "favonius-sword",
-    rarity: 4,
-    weaponType: "sword"
-  },
-  {
-    itemID: 89,
-    name: "favonius-warbow",
-    rarity: 4,
-    weaponType: "bow"
-  },
-  {
-    itemID: 88,
-    name: "favonius-codex",
-    rarity: 4,
-    weaponType: "catalyst"
-  },
-  {
-    itemID: 87,
-    name: "favonius-lance",
-    rarity: 4,
-    weaponType: "polearm"
-  },
-  {
-    itemID: 86,
-    name: "the-bell",
-    rarity: 4,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 85,
-    name: "the-stringless",
-    rarity: 4,
-    weaponType: "bow"
-  },
-  {
-    itemID: 84,
-    name: "black-tassel",
-    rarity: 3,
-    weaponType: "polearm"
-  },
-  {
-    itemID: 83,
-    name: "bloodtained-greatsword",
-    rarity: 3,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 82,
-    name: "cool-steel",
-    rarity: 3,
-    weaponType: "sword"
-  },
-  {
-    itemID: 81,
-    name: "debate-club",
-    rarity: 3,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 80,
-    name: "emerald-orb",
-    rarity: 3,
-    weaponType: "catalyst"
-  },
-  {
-    itemID: 79,
-    name: "ferrous-shadow",
-    rarity: 3,
-    weaponType: "claymore"
-  },
-  {
-    itemID: 78,
-    name: "harbinger-of-dawn",
-    rarity: 3,
-    weaponType: "sword"
-  },
-  {
-    itemID: 77,
-    name: "magic-guide",
-    rarity: 3,
-    weaponType: "catalyst"
-  },
-  {
-    itemID: 76,
-    name: "raven-bow",
-    rarity: 3,
-    weaponType: "bow"
-  },
-  {
-    itemID: 75,
-    name: "sharpshooter_s-oath",
-    rarity: 3,
-    weaponType: "bow"
-  },
-  {
-    itemID: 74,
-    name: "skyrider-sword",
-    rarity: 3,
-    weaponType: "sword"
-  },
-  {
-    itemID: 73,
-    name: "slingshot",
-    rarity: 3,
-    weaponType: "bow"
-  },
-  {
-    itemID: 72,
-    name: "thrilling-tales-of-dragon-slayers",
-    rarity: 3,
-    weaponType: "catalyst"
-  }
-];
-let IndexedDB;
-const createEvent = () => {
-  const event = new Event("storageUpdate");
-  document.dispatchEvent(event);
-};
-const HistoryManager = {
-  async historyCount() {
-    return (await IndexedDB).count("history");
-  },
-  async getListByBanner(banner) {
-    return (await IndexedDB).getAllFromIndex("history", "banner", banner);
-  },
-  async countItem(name) {
-    return (await IndexedDB).countFromIndex("history", "name", name);
-  },
-  async getByID(itemID) {
-    return (await IndexedDB).getAllFromIndex("history", "itemID", itemID);
-  },
-  async clearHistory(banner) {
-    try {
-      const idb2 = await IndexedDB;
-      const keys = await idb2.getAllKeysFromIndex("history", "banner", banner);
-      for (let i = 0; i < keys.length; i++) {
-        await idb2.delete("history", keys[i]);
-      }
-      return "success";
-    } catch (e) {
-      return "failed";
-    }
-  },
-  async clearIDB() {
-    const idb2 = await IndexedDB;
-    const clear = await idb2.clear("history");
-    createEvent();
-    return clear;
-  },
-  async getAllHistories() {
-    return (await IndexedDB).getAll("history");
-  },
-  async addHistory(data2) {
-    if (!data2.hasOwnProperty("banner"))
-      return;
-    const idb2 = await IndexedDB;
-    const put = await idb2.put("history", data2);
-    return put;
-  },
-  async delete(id) {
-    if (!id)
-      return;
-    const idb2 = await IndexedDB;
-    const remove = await idb2.delete("history", id);
-    return remove;
-  }
-};
-const AssetManager = {
-  async put(data2) {
-    if (!data2.hasOwnProperty("key"))
-      return;
-    return (await IndexedDB).put("assets", data2);
-  },
-  async get(key) {
-    if (!key)
-      return null;
-    return (await IndexedDB).get("assets", key);
-  },
-  async delete(key) {
-    if (!key)
-      return;
-    return (await IndexedDB).delete("assets", key);
-  }
-};
-const BannerManager = {
-  async getAll() {
-    return (await IndexedDB).getAll("custombanner");
-  },
-  async put(data2 = {}) {
-    if (!("itemID" in data2))
-      return;
-    const lastModified = new Date().toISOString();
-    const idb2 = await IndexedDB;
-    const put = await idb2.put("custombanner", { lastModified, ...data2 });
-    createEvent();
-    return put;
-  },
-  async get(itemID) {
-    if (!itemID)
-      return null;
-    return (await IndexedDB).get("custombanner", itemID);
-  },
-  async getListByStatus(status) {
-    return (await IndexedDB).getAllFromIndex("custombanner", "status", status);
-  },
-  async delete(key) {
-    if (!key)
-      return;
-    const idb2 = await IndexedDB;
-    const remove = idb2.delete("custombanner", key);
-    createEvent();
-    return remove;
-  },
-  async clear() {
-    const idb2 = await IndexedDB;
-    const remove = idb2.clear("custombanner");
-    createEvent();
-    return remove;
-  }
-};
-const _getAllCookies = () => {
-  const splitted = document.cookie.split("; ");
-  const cuuid = splitted.find((row) => row.startsWith(`WishSimulator=`));
-  return cuuid ? JSON.parse(cuuid.split("=")[1]) : {};
-};
-const _setCookies = (value) => {
-  const stringToSet = JSON.stringify(value);
-  const d = new Date();
-  d.setTime(d.getTime() + 365 * 24 * 60 * 60 * 1e3);
-  let expires = "expires=" + d.toUTCString();
-  document.cookie = `WishSimulator=${stringToSet};${expires};SameSite=Lax; Secure;path=/`;
-};
-const cookie = {
-  get(cname) {
-    const result = _getAllCookies();
-    return result[cname];
-  },
-  set(cname, cvalue) {
-    const cookieNow = _getAllCookies();
-    cookieNow[cname] = cvalue;
-    _setCookies(cookieNow);
-  },
-  remove(cname) {
-    const cookieNow = _getAllCookies();
-    delete cookieNow[cname];
-    _setCookies(cookieNow);
-  },
-  clean() {
-    const d = new Date();
-    d.setTime(d.getTime() - 1 * 24 * 60 * 60 * 1e3);
-    let expires = "expires=" + d.toUTCString();
-    document.cookie = `WishSimulator=;${expires};SameSite=Lax; Secure;path=/`;
-  }
-};
-const rates = ({
-  currentPity = 0,
-  maxPity = 90,
-  baseRate = 0.6,
-  rateIncreasedAt = 74
-} = {}) => {
-  if (baseRate <= 0 && currentPity < maxPity)
-    return 0;
-  if (currentPity < rateIncreasedAt)
-    return baseRate;
-  if (currentPity >= maxPity)
-    return 100;
-  const rateIncreasedBy = (100 - baseRate) / (maxPity + 1 - rateIncreasedAt);
-  const rateBeforeCurrentPity = (currentPity + 1 - rateIncreasedAt) * rateIncreasedBy;
-  const increasedRate = rateBeforeCurrentPity + baseRate;
-  return increasedRate;
-};
-const prob = (items) => {
-  let chances = [];
-  for (let i = 0; i < items.length; i++) {
-    chances[i] = items[i].chance + (chances[i - 1] || 0);
-  }
-  const random = Math.random() * chances[chances.length - 1];
-  const result = items[chances.findIndex((chance) => chance > random)];
-  return result;
-};
-const getRate = (banner, key) => {
-  if (banner === "beginner") {
-    const initial2 = probabilityRates["character-event"];
-    return initial2[key];
-  }
-  const initial = probabilityRates[banner];
-  const local = localrate.get(banner);
-  if (!(local[key] || local[key] >= 0))
-    return initial[key];
-  const val = parseFloat(local[key]);
-  if (isNaN(val))
-    return local[key];
-  return val;
-};
-const getCharDetails = (charName) => {
-  if (!charName)
-    return {};
-  const findChar = data$1.find(({ name }) => charName === name);
-  return findChar || {};
-};
-const getWpDetails = (weaponName) => {
-  if (!weaponName)
-    return {};
-  const findWP = data.find(({ name }) => name === weaponName);
-  return findWP || {};
-};
-const idb = BannerManager;
-const localBanner = {
-  isComplete: async (itemID) => {
-    const { character, images, rateup = [], bannerName } = await idb.get(itemID) || {};
-    const { artURL } = images || {};
-    const complete = !!artURL && !!character && rateup.length > 0 && !!bannerName;
-    return complete;
-  },
-  isHostedBanner: async (itemID) => {
-    const data2 = await idb.get(itemID);
-    return "hostedImages" in data2;
-  },
-  renewImage: async ({ id = 0, newData = {}, key = "" }) => {
-    const { data: data2 = {} } = newData;
-    const { url: imageURL, delete_url } = data2;
-    const [, , , imgID, hash] = delete_url.split("/");
-    const idbData = await idb.get(id);
-    const { hostedImages = {}, imageHash = {}, imgChanged = {} } = idbData;
-    const hashList = Object.keys(imageHash).map((k) => imageHash[k].id);
-    idbData.hostedImages = hostedImages;
-    idbData.imageHash = imageHash;
-    idbData.imgChanged = imgChanged;
-    const dontRemoveImage = hashList.filter((id2) => id2 === imageHash[key]?.id).length > 1;
-    if (!dontRemoveImage) {
-      await onlineBanner.deleteImage(imageHash[key] || {});
-    }
-    idbData.hostedImages[key] = imageURL;
-    idbData.imageHash[key] = { id: imgID, hash };
-    idbData.imgChanged[key] = false;
-    return idb.put(idbData);
-  }
-};
-const onlineBanner = {
-  async _postData({ action, data: data2 = {}, id }) {
-    const body = { app: "genshin", action, data: data2, id };
-    const headers = new Headers();
-    headers.append("Content-Type", "application/json");
-    const request = await fetch(API_HOST + "/storage", {
-      method: "POST",
-      body: JSON.stringify(body),
-      headers
-    });
-    const result = await request.json();
-    return result;
-  },
-  async getData(shareID, multi = false) {
-    try {
-      if (!shareID)
-        throw new Error();
-      const response = await fetch(`${API_HOST}/storage?app=genshin&id=${shareID}`);
-      const parsed = await response.json() || {};
-      const { data: data2 = [] } = parsed;
-      if (multi === "multi")
-        return parsed;
-      parsed.data = { ...data2[0] };
-      return parsed;
-    } catch (e) {
-      console.log(e);
-      return { success: false, message: "error" };
-    }
-  },
-  async updateData(localID) {
-    try {
-      if (!localID)
-        throw new Error("no ID");
-      const date = new Date().toISOString();
-      const idbData = await idb.get(localID);
-      const localData = { ...idbData };
-      const { shareID = null, images, character, isChanged } = localData;
-      const { thumbnail } = images;
-      if (!isChanged)
-        return { status: "ok", shareID, thumbnail, character };
-      delete localData.images;
-      delete localData.imgChanged;
-      delete localData.status;
-      delete localData.isChanged;
-      delete localData.shareID;
-      localData.lastModified = date;
-      const onlineData = await this._postData({ id: shareID, action: "put", data: localData });
-      const { success, id, message } = onlineData;
-      if (!success)
-        throw new Error("Failed to Update");
-      idbData.shareID = id;
-      idbData.lastModified = date;
-      idbData.isChanged = false;
-      await idb.put(idbData);
-      return { status: "ok", shareID: id, thumbnail, message, character };
-    } catch (e) {
-      console.error(e);
-      return { status: "error" };
-    }
-  },
-  async deleteBanner(itemID) {
-    try {
-      const { shareID, status, imageHash = {} } = await idb.get(itemID) || {};
-      if (status === "cloud" || !shareID) {
-        await idb.delete(itemID);
-        return { status: "ok" };
-      }
-      const keys = Object.keys(imageHash);
-      for (let i = 0; i < keys.length; i++) {
-        const hashID = imageHash[keys[i]];
-        await this.deleteImage(hashID);
-      }
-      const { success } = await this._postData({ action: "delete", id: shareID });
-      if (!success)
-        throw new Error("Failed to Remove");
-      await idb.delete(itemID);
-      return { status: "ok" };
-    } catch (e) {
-      return { status: "error" };
-    }
-  },
-  async deleteImage({ hash, id } = {}) {
-    if (!(hash && id))
-      return;
-    try {
-      const formdata = new FormData();
-      formdata.append("action", "delete");
-      formdata.append("delete", "image");
-      formdata.append("deleting[id]", id);
-      formdata.append("deleting[hash]", hash);
-      const data2 = await fetch("https://ibb.co/json", { method: "POST", body: formdata });
-      const { status_code } = await data2.json();
-      console.log(id, hash, status_code);
-      return status_code === 200;
-    } catch (e) {
-      console.error(e);
-      return false;
-    }
-  },
-  async block(id) {
-    if (!id)
-      return;
-    try {
-      const { success } = await this._postData({ action: "block", id });
-      return success;
-    } catch (e) {
-      console.error(e);
-      return false;
-    }
-  }
-};
-const pushToast = ({
-  type = "info",
-  dismissible = false,
-  autoclose = true,
-  timeout = 3e3,
-  message = ""
-}) => {
-  const id = Math.floor(Math.random() * 1e4);
-  const toastData = { id, dismissible, autoclose, timeout, type, message };
-  toastMsg.update((all) => [toastData, ...all]);
-  if (autoclose && timeout > 1)
-    setTimeout(() => dismissToast(id), timeout);
-};
-const dismissToast = (id) => {
-  toastMsg.update((all) => all.filter((t) => t.id !== id));
-};
-const browserState = {
-  set(page2) {
-    history.pushState({ page: page2 }, null, null);
-  },
-  back() {
-    const currentPage = history.state?.page;
-    if (!currentPage)
-      return;
-    history.back();
-  }
-};
-const getNotices = () => cookie.get("notice") || [];
-const setNotices = (data2 = []) => cookie.set("notice", data2);
-const noticeMark = {
-  openNotice(key) {
-    const openedNotice = getNotices();
-    const isAlreadyOpen = openedNotice.includes(key);
-    if (isAlreadyOpen)
-      return;
-    openedNotice.push(key);
-    setNotices(openedNotice);
-    notice.set(openedNotice);
-    return;
-  },
-  onLoadCheck() {
-    const openedNotice = getNotices();
-    notice.set(openedNotice);
-  }
-};
-const ModalTpl_svelte_svelte_type_style_lang = "";
-const css$A = {
-  code: ".modal.svelte-1fzyohs.svelte-1fzyohs{position:fixed;top:0;left:0;width:100vw;height:var(--screen-height);background-color:rgba(0, 0, 0, 0.5);z-index:997;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.modal-content.svelte-1fzyohs.svelte-1fzyohs{width:35rem;max-width:90%;background-color:#fbf6ee;padding:8px;text-align:center;color:#383b40;position:relative;border-radius:0.8rem}.dark.svelte-1fzyohs .modal-content.svelte-1fzyohs{background-color:#4a5265}.mobile .modal-content.svelte-1fzyohs.svelte-1fzyohs{max-width:110vh}.container.svelte-1fzyohs.svelte-1fzyohs{width:100%;height:100%;border:2px solid #ddd5c8;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:50%;background-position:50%}.corner.svelte-1fzyohs.svelte-1fzyohs{background-image:url('data:image/webp;base64,UklGRkgFAABXRUJQVlA4WAoAAAAQAAAANgAAMQAAQUxQSAUDAAABCbRt2wYS0Kny/w+3P0T0fwL4Fh3ZUFn3RQqxyZuhoG0bpuZPuzsQImICIhX+jrAkyW7bzKp0//s6YRwAcOH8GTEBE0C5tm1FknPu+xCQWdBiZpZGclsGyAB0QONmZkqIiB/vDRpNiIgJIP6144LOBIQAaStmAqCN0E4AUphAwoCQXtEIPIiISeCiIWUUwkwECbAXfA0Pj8BSW4GwsJqTeU7uMjoa3Qtdmtt8nIH4ELgYhOx9U1hpxZw2KNQFUH23+mFBoKxI326+3UyLToG6iejNu6E8X7f3/vKHwywQsRchX96fP/74Yy5GQCVFkDI10f/wh55IHwDhYnjcvvP7u2dPao+ZXFFiTVoiVtWf/32Gvrdv/nw2/qLTFCsERiDhJu+QevH4duXe83Khb94AUskCw7CM6KmtwbiZl7ufnLJiHiJBKNy5i/gQDWjL9pu4++6wu1ffxRMEO0SsT5gHuql7P3386+P7bbPsvxodw6MRWtYVEOryej6c2/hOd9fL8vF7KfvRD4hCCMsoIKvjeH5Sx/fKbvlshHUvmlAQiJkaYNuuH8ahnPLSaYI5KDXjbNCNfS2lppc9DdRCQQcIgFrEVAsphfTCwzufEEh21t/gaCgwRfbCi7fyHtDqJAABRIvUkOV56/YCPHUpzPWC0BewVmDqEbx7e9gn97BYhGVUME+hECJcpMfD/+4W7B8PE6GsgnT0dvQzgy59fnU44EGrgQAQta4/Lq65LA+r0dZ4GLckwgMQALVsWMZ5fmZT6QDbPP/w3k0aVg3CQeWTPO8X2hNqlqVuyc82d06KUghnNjFNd8szSxF9l3Uy5/7Kb6ZIAKIm5eTH3f5xZlLe1FF9/e6mcracJaglyQ/Xdm32VopsSKUrwztD/37RcVDg7PJwHd1CRk5Zdfs8n6xr/+nzAQcleRzdBCAJcmbl0vjJnc8HTVQBwlcBBAjApnlu7//3/bCIjniLa5uu3v+m9i9m6iAKGIYHDzTgK4YUUsz0eWLQCyE0gz4NAAlfMRR7+jR/bwBWUDggHAIAAHAKAJ0BKjcAMgA+KQ6FQqGHfAYAoSygDgHbI3I4tdhHQL88A1kA2ozja3RezMIbWU3XuF8+/h9ILAYHndhrUbZy5B81xTHr3sWw+e1DsBqahnwk8nvegFg3CiwAAP7/KvhRIfulyVvAM+kd25h7/f9q48lj/8TP6ceUoTF8V1L0D7kxK/RYzWsE2gM84nd8zXc9QGLEFOT/sLorw3Yjn9KVTdhjeYf/JPghddPdW0LE5XY55VYd6No1Np9IqEu9k4ZHiHsClwKB9XL+sZKxaOfPkAx9tBWSX/EaPi0L0FT+Ia2LsLUt7Gv/94HKXgfgqAY3Dc3mrgA9914RrLuW9+/4muOcWZqBrbww2hfhuvV6OzfAOs9mDbeSCYCL8K3CPHvdT0wItSZ53JuxG9FLZCIfp0b8LJkq1OMW6TeGE5KKpvYCamNksDv1s+pAa2J18XKje5sj8hSQhZjIqh9uPJX7FZXFqLIxObNJPebhHE3gvZWar0ojALZ+1hmoJKVuJVetIsSw8Nqfb9drEU81Na8myzoyvPFjWzeCiZoWF+PHkNkeaySoSlxjDHlbQS8zky28ygG5RGkzIURZol88xyDcVVvHW05Bq5d79tZ9Nbk/ofOfzl0+Un6lPuZpn0zhr9YSAvne330OxW3f5DbKZyT+YPZstc2H5QaDYWBcyVMJ2TCXOSCq+L28GLxA8V82mMeS122MP/qzwAAAAA==');background-size:cover;width:2.35rem;aspect-ratio:1/1;font-size:1.5rem;display:inline-block;position:absolute}.top-left.svelte-1fzyohs.svelte-1fzyohs{top:-0.9rem;left:-0.9rem;transform:rotate(-90deg)}.top-right.svelte-1fzyohs.svelte-1fzyohs{top:-0.9rem;right:-0.9rem}.bottom-left.svelte-1fzyohs.svelte-1fzyohs{bottom:-0.9rem;left:-0.9rem;transform:rotate(-180deg)}.bottom-right.svelte-1fzyohs.svelte-1fzyohs{bottom:-0.9rem;right:-0.9rem;transform:rotate(90deg)}.pop-header.svelte-1fzyohs.svelte-1fzyohs{font-size:130%;margin:0.4rem 7%;padding-bottom:0.4rem;border-bottom:0.2rem solid #ddd5c8;position:relative;z-index:+1}.dark.svelte-1fzyohs .pop-header.svelte-1fzyohs{color:rgba(210, 198, 156, 1)}.mobile .pop-header.svelte-1fzyohs.svelte-1fzyohs{font-size:1rem}.pop-body.svelte-1fzyohs.svelte-1fzyohs{height:15rem;max-height:45vh;position:relative;z-index:+1;font-size:1.1rem;display:flex;justify-content:center}.dark.svelte-1fzyohs .pop-body.svelte-1fzyohs{color:#fbf6ee}.mobile .pop-body.svelte-1fzyohs.svelte-1fzyohs{height:12rem;font-size:0.9rem}.pop-footer.svelte-1fzyohs.svelte-1fzyohs{display:flex;padding:0.7rem 0;justify-content:space-around;position:relative;z-index:+1}.pop-footer.svelte-1fzyohs.svelte-1fzyohs::before{width:80%;content:'';display:block;border-top:0.2rem solid #ddd5c8;position:absolute;top:0;left:50%;transform:translateX(-50%)}.dark.svelte-1fzyohs .container.svelte-1fzyohs,.dark.svelte-1fzyohs .pop-header.svelte-1fzyohs,.dark.svelte-1fzyohs .pop-footer.svelte-1fzyohs::before{border-color:rgba(210, 198, 156, 0.6)}",
-  map: null
-};
-const ModalTpl = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$slots = compute_slots(slots);
-  let $assets, $$unsubscribe_assets;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { title = "" } = $$props;
-  let { dark = false } = $$props;
-  let { blank = false } = $$props;
-  let { disabled = false } = $$props;
-  let { confirmOnly = false } = $$props;
-  let { noDimiss = false } = $$props;
-  let content;
-  const dispatch = createEventDispatcher();
-  const confirmClick = () => dispatch("confirm");
-  const cancelClik = () => dispatch("cancel");
-  hotkeys("enter", "modal", (e) => {
-    e.preventDefault();
-    if (disabled)
-      return;
-    confirmClick();
-  });
-  hotkeys("esc", "modal", (e) => {
-    e.preventDefault();
-    cancelClik();
-  });
-  const currentScope = hotkeys.getScope();
-  hotkeys.setScope("modal");
-  onDestroy(() => hotkeys.deleteScope("modal", currentScope));
-  if ($$props.title === void 0 && $$bindings.title && title !== void 0)
-    $$bindings.title(title);
-  if ($$props.dark === void 0 && $$bindings.dark && dark !== void 0)
-    $$bindings.dark(dark);
-  if ($$props.blank === void 0 && $$bindings.blank && blank !== void 0)
-    $$bindings.blank(blank);
-  if ($$props.disabled === void 0 && $$bindings.disabled && disabled !== void 0)
-    $$bindings.disabled(disabled);
-  if ($$props.confirmOnly === void 0 && $$bindings.confirmOnly && confirmOnly !== void 0)
-    $$bindings.confirmOnly(confirmOnly);
-  if ($$props.noDimiss === void 0 && $$bindings.noDimiss && noDimiss !== void 0)
-    $$bindings.noDimiss(noDimiss);
-  $$result.css.add(css$A);
-  $$unsubscribe_assets();
-  $$unsubscribe_t();
-  return `<div class="${["modal svelte-1fzyohs", dark ? "dark" : ""].join(" ").trim()}"><div class="${"modal-content svelte-1fzyohs"}"><span class="${"corner top-left svelte-1fzyohs"}"></span>
-		<span class="${"corner top-right svelte-1fzyohs"}"></span>
-		<span class="${"corner bottom-left svelte-1fzyohs"}"></span>
-		<span class="${"corner bottom-right svelte-1fzyohs"}"></span>
-		<div class="${"container svelte-1fzyohs"}" style="${"--bg-icon:url(" + escape($assets["modal-bg-icon.png"], true) + ")"}">${blank ? `${slots.default ? slots.default({}) : ``}` : `${title ? `<h1 class="${"pop-header svelte-1fzyohs"}">${escape(title)}</h1>` : ``}
-				<div class="${"pop-body svelte-1fzyohs"}"${add_attribute("this", content, 0)}>${slots.default ? slots.default({}) : ``}</div>
-
-				<div class="${"pop-footer svelte-1fzyohs"}">${!confirmOnly ? `${validate_component(ButtonModal, "ButtonModal").$$render($$result, { light: dark, type: "cancel" }, {}, {})}` : ``}
-
-					${validate_component(ButtonModal, "ButtonModal").$$render($$result, { light: dark, type: "confirm", disabled }, {}, {
-    default: () => {
-      return `${$$slots.confirmtext ? `${slots.confirmtext ? slots.confirmtext({}) : ``}` : `${escape($t("confirmButton"))}`}`;
-    }
-  })}</div>`}</div></div>
-</div>`;
-});
-const ModalInitBanner_svelte_svelte_type_style_lang = "";
-const ModalWelcome_svelte_svelte_type_style_lang = "";
-const WelkinCheckin_svelte_svelte_type_style_lang = "";
-const css$z = {
-  code: "section.svelte-1x1789m{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99;color:#000}.container.svelte-1x1789m{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.bg.svelte-1x1789m{min-width:100vw;min-height:100%;position:absolute;z-index:-1;left:0;background-image:linear-gradient(-30deg, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.6))}.content.svelte-1x1789m{display:flex;flex-direction:column;max-width:80%;width:80%;text-align:center}.mobile .content.svelte-1x1789m{transform:scale(0.85)}h3.svelte-1x1789m{color:#e9e4d9;font-weight:100;padding:0.5rem}h4.svelte-1x1789m{color:#d0ba98;font-weight:100}.msg.svelte-1x1789m span{color:#e9e4d9}.milestone.svelte-1x1789m{display:flex;width:100%;justify-content:center}img.svelte-1x1789m{width:30%}",
-  map: null
-};
-const WelkinCheckin = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $assets, $$unsubscribe_assets;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  getContext("closeWelkin");
-  getContext("openObtained");
-  let dayRemaining;
-  $$result.css.add(css$z);
-  $$unsubscribe_assets();
-  $$unsubscribe_t();
-  return `<section class="${"svelte-1x1789m"}"><div class="${"container svelte-1x1789m"}"><div class="${"bg svelte-1x1789m"}"></div>
-		<div class="${"content svelte-1x1789m"}"><div class="${"milestone svelte-1x1789m"}"><img${add_attribute("src", $assets["welkin-moon-girl.webp"], 0)} alt="${"Welkin Moon Girl"}" class="${"svelte-1x1789m"}"></div>
-
-			<h3 class="${"title svelte-1x1789m"}">${escape($t("shop.recomended.claimingBlessing"))}</h3>
-			<h4 class="${"msg svelte-1x1789m"}"><!-- HTML_TAG_START -->${$t("shop.recomended.dayRemaining", {
-    values: { days: `<span>${dayRemaining}</span>` }
-  })}<!-- HTML_TAG_END --></h4></div></div>
-</section>`;
-});
-const itemRarity = [3, 3, 4, 4, 5, 5];
-const meteorList = [
-  "bg.webm",
-  "3star-single.mp4",
-  "4star-single.mp4",
-  "4star-multi.mp4",
-  "5star-single.mp4",
-  "5star-multi.mp4"
-];
-const loadProggress = writable({ rarity: "", progress: 0, totalItem: 0, itemNumber: 0 });
-const loadAnimation = async () => {
-  const results = [];
-  const totalItem = meteorList.length;
-  for (let i = 0; i < totalItem; i++) {
-    loadProggress.set({ rarity: itemRarity[i], progress: 0, totalItem, itemIndex: i });
-    const response = await fetch(`/videos/${meteorList[i]}`);
-    const data2 = new Response(streamResponse(response));
-    const blob = await data2.blob();
-    await AssetManager.put({ key: meteorList[i], blob });
-    const DOMURL = window.URL || window.webkitURL;
-    const blobUrl = DOMURL.createObjectURL(blob);
-    const resultObj = { asset: meteorList[i], url: blobUrl };
-    results.push(resultObj);
-  }
-  return results;
-};
-const streamResponse = (response) => {
-  const contentLength = response.headers.get("content-length");
-  return new ReadableStream({
-    start(controller) {
-      const reader = response.body.getReader();
-      readStream(controller, reader, contentLength);
-    }
-  });
-};
-let loaded = 0;
-const readStream = (controller, reader, contentLength) => {
-  reader.read().then((progressEvent) => {
-    if (progressEvent.done) {
-      controller.close();
-      loaded = 0;
-      return;
-    }
-    loadProggress.update((v) => {
-      loaded += progressEvent.value.byteLength;
-      v.progress = Math.round(loaded / contentLength * 100);
-      return v;
-    });
-    controller.enqueue(progressEvent.value);
-    readStream(controller, reader, contentLength);
-  });
-};
-const PreloadMeteor_svelte_svelte_type_style_lang = "";
-const css$y = {
-  code: "@media screen and (min-width: 900px){}@keyframes svelte-d5t2d5-dot{{content:'.'}{content:'..'}{content:'...'}{content:''}}",
-  map: null
-};
-const PreloadMeteor = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let ready;
-  let $readyToPull, $$unsubscribe_readyToPull;
-  let $$unsubscribe_loadProggress;
-  $$unsubscribe_loadProggress = subscribe(loadProggress, (value) => value);
-  const readyToPull = getContext("readyToPull");
-  $$unsubscribe_readyToPull = subscribe(readyToPull, (value) => $readyToPull = value);
-  const preloadMeteor = async () => {
-    playSfx();
-    const data2 = await loadAnimation();
-    assets.update((v) => {
-      data2.forEach(({ asset, url }) => v[asset] = url);
-      return v;
-    });
-    readyToPull.set(true);
-  };
-  if (!ready) {
-    preloadMeteor();
-  }
-  $$result.css.add(css$y);
-  ready = $readyToPull;
-  $$unsubscribe_readyToPull();
-  $$unsubscribe_loadProggress();
-  return ``;
-});
-const { addHistory } = HistoryManager;
-const roll = async (banner, WishInstance, indexOfBanner) => {
-  if (banner === "member") {
-    const randomItem2 = WishInstance.getItem(5, banner, indexOfBanner);
-    let pity2 = 1;
-    const isNew2 = false;
-    const bonusType2 = randomItem2.rarity === 3 ? "stardust" : "starglitter";
-    const bonusQty2 = 20;
-    const result2 = { pity: pity2, isNew: isNew2, bonusType: bonusType2, bonusQty: bonusQty2, ...randomItem2 };
-    return result2;
-  }
-  const pity5 = localPity.get(`pity5-${banner}`) + 1;
-  const pity4 = localPity.get(`pity4-${banner}`) + 1;
-  const maxPity = getRate(banner, "max5");
-  const rate5star = () => {
-    return rates({
-      baseRate: getRate(banner, "baseRate5"),
-      rateIncreasedAt: getRate(banner, "hard5"),
-      currentPity: pity5,
-      maxPity
-    });
-  };
-  const rate4star = () => {
-    return rates({
-      baseRate: getRate(banner, "baseRate4"),
-      currentPity: pity4,
-      rateIncreasedAt: getRate(banner, "hard4"),
-      maxPity: getRate(banner, "max4")
-    });
-  };
-  let chance5star = rate5star();
-  let chance4star = rate4star();
-  let chance3star = 100 - chance4star - chance5star;
-  if (chance3star < 0 && pity5 >= maxPity || chance5star === 100)
-    chance4star = 0;
-  if (chance3star < 0)
-    chance3star = 0;
-  if (chance4star === 100)
-    chance5star = 0;
-  const item = [
-    {
-      rarity: 3,
-      chance: chance3star
-    },
-    {
-      rarity: 4,
-      chance: chance4star
-    },
-    {
-      rarity: 5,
-      chance: chance5star
-    }
-  ];
-  const { rarity } = prob(item);
-  let pity = 1;
-  const rollQty = rollCounter.get(banner);
-  rollCounter.set(banner, rollQty + 1);
-  if (banner === "beginner") {
-    beginnerRemaining.update((v) => v < 1 ? 0 : v - 1);
-    if (rollQty >= 19)
-      showBeginner.set(false);
-  }
-  if (rarity === 5) {
-    localPity.set(`pity4-${banner}`, pity4);
-    localPity.set(`pity5-${banner}`, 0);
-    pity = pity5;
-  }
-  if (rarity === 4) {
-    localPity.set(`pity4-${banner}`, 0);
-    localPity.set(`pity5-${banner}`, pity5);
-    pity = pity4;
-  }
-  if (rarity === 3) {
-    localPity.set(`pity4-${banner}`, pity4);
-    localPity.set(`pity5-${banner}`, pity5);
-  }
-  const randomItem = WishInstance.getItem(rarity, banner, indexOfBanner);
-  const { manual, wish } = owneditem.put({ itemID: randomItem.itemID });
-  const numberOfOwnedItem = manual + wish - 1;
-  const isNew = numberOfOwnedItem < 1;
-  await saveResult({ pity, ...randomItem });
-  const isFullConstellation = numberOfOwnedItem > 6;
-  if (randomItem.type === "character" && !isNew) {
-    randomItem.stelaFortuna = !isFullConstellation;
-  }
-  const bonusType = randomItem.rarity === 3 ? "stardust" : "starglitter";
-  const bonusQty = getMilestoneQty(randomItem.rarity, randomItem.type, isFullConstellation, isNew);
-  const result = { pity, isNew, bonusType, bonusQty, ...randomItem };
-  return result;
-};
-const saveResult = async (result) => {
-  const data2 = { ...result };
-  delete data2.release;
-  delete data2.limited;
-  delete data2.offset;
-  await addHistory(data2);
-};
-const getMilestoneQty = (rarity, type, isFullConstellation, isNew) => {
-  if (type === "weapon") {
-    if (rarity === 3)
-      return 15;
-    if (rarity === 4)
-      return 2;
-    return 10;
-  }
-  if (isNew)
-    return 0;
-  if (rarity === 4)
-    return isFullConstellation ? 5 : 2;
-  return isFullConstellation ? 25 : 10;
-};
-const css$x = {
-  code: ".primogem.svelte-19jgwr3 span.svelte-19jgwr3{width:1.2rem;height:1.2rem;color:rgba(0, 0, 0, 0.7);background-color:#e0ddd4;border-radius:100%;position:absolute;right:3px;top:50%;font-size:110%;line-height:0;display:inline-flex;justify-content:center;align-items:center;transform:translateY(-50%);transition:all 0.2s}.primogem.increament.svelte-19jgwr3.svelte-19jgwr3{padding-right:2rem !important}.primogem.svelte-19jgwr3:active span.svelte-19jgwr3{transform:translateY(-50%) scale(0.9);color:#fff;border-color:darkgray}.primogem.svelte-19jgwr3:hover span.svelte-19jgwr3{border-color:#fff;box-shadow:rgb(160 175 190 / 60%) 0px 0px 7px 5px}button.svelte-19jgwr3.svelte-19jgwr3{display:inline-block;height:25px;overflow:hidden;background-color:rgba(0, 0, 0, 0.3);border-radius:50px;color:#fff;vertical-align:middle;text-align:center;position:relative;margin:0 10px 0 0;padding:0 1rem 0 1.85rem;border:0.7px solid #656565}@media screen and (max-width: 900px){button.svelte-19jgwr3.svelte-19jgwr3{height:20px;margin:0 3px}}@media screen and (max-width: 400px){.primogem.svelte-19jgwr3.svelte-19jgwr3{margin-bottom:2px}.gi-plus.svelte-19jgwr3.svelte-19jgwr3{right:2px;transform:translateY(-50%) scale(0.9)}}",
-  map: null
-};
-const MyFund = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { type = "primogem" } = $$props;
-  let { plusbutton = false } = $$props;
-  const allowAddition = type === "primogem" && plusbutton;
-  getContext("openConvertModal");
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.plusbutton === void 0 && $$bindings.plusbutton && plusbutton !== void 0)
-    $$bindings.plusbutton(plusbutton);
-  $$result.css.add(css$x);
-  return `<button class="${[
-    escape(null_to_empty(type), true) + " svelte-19jgwr3",
-    allowAddition ? "increament" : ""
-  ].join(" ").trim()}">${validate_component(Icon$1, "Icon").$$render(
-    $$result,
-    {
-      type,
-      height: "80%",
-      width: "auto",
-      style: "position: absolute; left: 5px;top: 50%; transform: translateY(-50%);"
-    },
-    {},
-    {}
-  )}
-	${slots.default ? slots.default({}) : ``}
-	${allowAddition ? `<span class="${"svelte-19jgwr3"}"><i class="${"gi-plus svelte-19jgwr3"}"></i></span>` : ``}
-</button>`;
-});
-const css$w = {
-  code: ".notice.svelte-v7y2hv{position:absolute;right:0.5rem;z-index:+1}span.svelte-v7y2hv{color:#fff;background-color:#de2f22;display:inline-flex;justify-content:center;align-items:center;border-radius:100%;aspect-ratio:1/1;font-size:xx-small;padding:0.3rem;line-height:0}.mobile span.svelte-v7y2hv{font-size:0.4rem;padding:0.25rem}",
-  map: null
-};
-const NoticeMark = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $notice, $$unsubscribe_notice;
-  $$unsubscribe_notice = subscribe(notice, (value) => $notice = value);
-  let { name = "" } = $$props;
-  let { style = "" } = $$props;
-  let active = false;
-  if ($$props.name === void 0 && $$bindings.name && name !== void 0)
-    $$bindings.name(name);
-  if ($$props.style === void 0 && $$bindings.style && style !== void 0)
-    $$bindings.style(style);
-  $$result.css.add(css$w);
-  {
-    {
-      if (!Array.isArray(name)) {
-        active = !$notice.includes(name);
-      } else {
-        const tmp = [];
-        name.forEach((n) => tmp.push($notice.includes(n)));
-        active = tmp.includes(false);
-      }
-    }
-  }
-  $$unsubscribe_notice();
-  return `${active ? `<div class="${"notice svelte-v7y2hv"}"${add_attribute("style", style, 0)}><span class="${"svelte-v7y2hv"}">i</span></div>` : ``}`;
-});
-const css$v = {
-  code: ".fatepoint-button.svelte-1vj2we9.svelte-1vj2we9{width:15vh}.mobile .fatepoint-button.svelte-1vj2we9.svelte-1vj2we9{width:18vh}.active.svelte-1vj2we9 svg.svelte-1vj2we9{filter:drop-shadow(0 0 0.5rem rgb(0, 183, 255))}@media screen and (max-width: 500px){.fatepoint-button.svelte-1vj2we9.svelte-1vj2we9{width:10vh}}.fil1.svelte-1vj2we9.svelte-1vj2we9{fill:#fefefe}.fil2.svelte-1vj2we9.svelte-1vj2we9{fill:#5f6e8b}.fil3.svelte-1vj2we9.svelte-1vj2we9{fill:transparent}.active.svelte-1vj2we9 .fil3.svelte-1vj2we9{fill:#62c5ff}.fil0.svelte-1vj2we9.svelte-1vj2we9{fill:#a0907d}",
-  map: null
-};
-const Icon = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { active = false } = $$props;
-  if ($$props.active === void 0 && $$bindings.active && active !== void 0)
-    $$bindings.active(active);
-  $$result.css.add(css$v);
-  return `<div class="${["fatepoint-button svelte-1vj2we9", active ? "active" : ""].join(" ").trim()}"><svg xmlns="${"http://www.w3.org/2000/svg"}" xml:space="${"preserve"}" width="${"100%"}" height="${"100%"}" version="${"1.1"}" style="${"shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"}" viewBox="${"0 0 508847 506460"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}" class="${"svelte-1vj2we9"}"><g id="${"Layer_x0020_1"}"><metadata id="${"CorelCorpID_0Corel-Layer"}"></metadata><circle class="${"fil0 svelte-1vj2we9"}" cx="${"254424"}" cy="${"253230"}" r="${"235000"}"></circle><path class="${"fil1 svelte-1vj2we9"}" d="${"M255693 0c13547,26247 28024,32190 42571,35155 86821,17695 155401,85552 174155,171983 3340,15397 8488,34162 36428,46862 -23707,12700 -32662,29168 -35212,42704 -17117,90856 -89026,162369 -180088,178895 -13076,2373 -26000,6154 -39547,30861 -11853,-20473 -28814,-28563 -42256,-31076 -92318,-17262 -164722,-91085 -179876,-184128 -1926,-11825 -6468,-24556 -31868,-35563 27093,-10160 29923,-25044 31812,-36761 14555,-90240 82951,-162462 171176,-182650 16150,-3695 39159,-5802 52705,-36282z"}"></path><path class="${"fil2 svelte-1vj2we9"}" d="${"M255542 30055c11940,23132 24698,28369 37519,30983 76516,15594 136957,75398 153485,151571 2944,13569 7481,30107 32104,41300 -20893,11192 -28785,25706 -31032,37635 -15086,80073 -78460,143098 -158714,157663 -11524,2091 -22915,5423 -34854,27198 -10446,-18043 -25394,-25173 -37240,-27388 -81362,-15213 -145172,-80274 -158528,-162274 -1697,-10422 -5700,-21642 -28085,-31342 23877,-8954 26371,-22072 28036,-32398 12828,-79530 73106,-143180 150860,-160972 14233,-3257 34511,-5114 46449,-31976z"}"></path><path class="${"fil1 svelte-1vj2we9"}" d="${"M330264 271900c123,-533 12562,-25081 10158,-32020 -1162,-1427 -2401,-2861 -3702,-5015 -10709,-2024 -12079,-25210 -13164,-33686 -14482,-47196 -72342,-40941 -75929,-52261 -358,-5588 -312,-4871 -670,-10459 -7941,-1020 -13237,1312 -15009,8106 -10178,3252 -5167,18577 -5501,26637 -1026,-642 -5493,-4403 -5588,-4447 -15337,-7251 -37943,31295 -36627,45876 -2865,18246 -4687,19434 -13733,25783 -2850,2000 -600,259 -2382,1933l565 8165c13533,41301 39679,48402 77665,53316 -1307,1383 991,2598 -2457,4085 -17607,7585 -16560,12591 -21001,31019 -1670,3686 -3464,12046 -2869,16028 -138,14893 63684,19907 79345,971 1836,-15767 -2789,-25064 -10248,-39071 -6148,-5850 -3857,-7275 -14719,-8437 -5230,-2021 -2896,1743 -3630,-4393 21183,67 46793,-11256 59496,-32130zm-57388 55269c4914,9251 4765,12192 14138,13865 -8154,-4650 -10703,-14461 -18651,-21822 -5039,-2075 -10340,-4118 -13672,-3026 -6579,2156 -10978,6676 -17718,15712 8536,-3503 10646,-9555 18301,-13067 7391,5619 -1300,14794 -3372,23823 -1079,4703 476,9454 2036,12648 -2369,-10300 409,-16090 6895,-17943 3642,6892 3606,8549 8908,12534 -3457,-7528 -12293,-20101 -7056,-29210 3890,-1154 4734,2232 10191,6486zm-30308 -71245c-9691,1465 -6106,3188 -12543,6960 -10988,6437 -14245,-5177 -25718,-6891 2209,18389 33672,21098 38261,-69zm30053 0c9691,1465 6106,3188 12543,6960 10987,6437 14245,-5177 25718,-6891 -2209,18389 -33672,21098 -38261,-69zm-15561 31599c6016,-1307 5913,-1191 7499,-6781 -3798,-269 -10937,-717 -14214,-158 1060,4275 2615,5911 6715,6939z"}"></path><path class="${"fil3 svelte-1vj2we9"}" d="${"M254424 68164c102209,0 185066,82857 185066,185066 0,102209 -82857,185066 -185066,185066 -102209,0 -185066,-82857 -185066,-185066 0,-102209 82857,-185066 185066,-185066zm0 28190c86640,0 156876,70236 156876,156876 0,86640 -70236,156876 -156876,156876 -86640,0 -156876,-70236 -156876,-156876 0,-86640 70236,-156876 156876,-156876z"}"></path><path class="${"fil1 svelte-1vj2we9"}" d="${"M329531 141779c3037,10634 9793,17203 20000,20000 -10634,3037 -17203,9793 -20000,20000 -3037,-10634 -9793,-17203 -20000,-20000 10634,-3037 17203,-9793 20000,-20000z"}"></path><path class="${"fil1 svelte-1vj2we9"}" d="${"M165200 297389c2278,7976 7345,12902 15000,15000 -7976,2278 -12902,7345 -15000,15000 -2278,-7976 -7345,-12902 -15000,-15000 7976,-2278 12902,-7345 15000,-15000z"}"></path><path class="${"fil1 svelte-1vj2we9"}" d="${"M362750 205788c1519,5317 4897,8602 10000,10000 -5317,1519 -8602,4897 -10000,10000 -1519,-5317 -4897,-8602 -10000,-10000 5317,-1519 8602,-4897 10000,-10000z"}"></path></g></svg>
-</div>`;
-});
-const css$u = {
-  code: "button.svelte-15mfo3k.svelte-15mfo3k{position:relative;pointer-events:initial}.point-number.svelte-15mfo3k.svelte-15mfo3k{border-radius:50px;background-color:#ece4d9;border:3px solid #fff;padding:0.2rem;width:100%;transition:all 0.2s;color:#a49a90;border:1px solid #a49a90;display:inline-flex;justify-content:center;align-items:center;position:absolute;bottom:5%;left:50%;transform:translateX(-50%)}.point-number.svelte-15mfo3k span.svelte-15mfo3k{color:#ff8700}.point-number.svelte-15mfo3k span.small.svelte-15mfo3k{font-size:calc(0.101 * var(--height));line-height:110%;display:inline-block;color:var(--text-color);padding:1% 10%}.mobile button.svelte-15mfo3k.svelte-15mfo3k{font-size:90%;padding:0 0.2rem;margin-top:auto;margin-bottom:10%}.mobile span.svelte-15mfo3k.svelte-15mfo3k:not(.small){font-size:120%}.mobile .point-number.svelte-15mfo3k.svelte-15mfo3k{padding:0.1rem}",
-  map: null
-};
-const Button = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $activeBanner, $$unsubscribe_activeBanner;
-  let $bannerList, $$unsubscribe_bannerList;
-  let $activeVersion, $$unsubscribe_activeVersion;
-  let $course, $$unsubscribe_course;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_activeBanner = subscribe(activeBanner, (value) => $activeBanner = value);
-  $$unsubscribe_bannerList = subscribe(bannerList, (value) => $bannerList = value);
-  $$unsubscribe_activeVersion = subscribe(activeVersion, (value) => $activeVersion = value);
-  $$unsubscribe_course = subscribe(course, (value) => $course = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let buttonHeight;
-  let patch, phase, type, fatepointsystem;
-  const handleEpitomizedModal = getContext("handleEpitomizedModal");
-  const handleClick = () => {
-    playSfx("exchange");
-    handleEpitomizedModal();
-    noticeMark.openNotice(`fatepoint${patch}-${phase}`);
-  };
-  hotkeys("e", "index", (e) => {
-    e.preventDefault();
-    if (!fatepointsystem || type !== "weapon-event")
-      return;
-    handleClick();
-  });
-  $$result.css.add(css$u);
-  ({ patch, phase } = $activeVersion);
-  ({ fatepointsystem, type } = $bannerList[$activeBanner]);
-  $$unsubscribe_activeBanner();
-  $$unsubscribe_bannerList();
-  $$unsubscribe_activeVersion();
-  $$unsubscribe_course();
-  $$unsubscribe_t();
-  return `${fatepointsystem ? `<button class="${"container svelte-15mfo3k"}" style="${"--height:" + escape(buttonHeight, true) + "px"}">${validate_component(NoticeMark, "NoticeMark").$$render($$result, { name: "fatepoint" + patch + "-" + phase }, {}, {})}
-		${validate_component(Icon, "EpitomizedIcon").$$render($$result, { active: $course.point === 2 }, {}, {})}
-		<div class="${"point-number svelte-15mfo3k"}">${$course.selected !== null ? `<span class="${"svelte-15mfo3k"}">${escape($course.point)}</span>/2` : `<span class="${"small svelte-15mfo3k"}">${escape($t("wish.epitomizedPath.text"))}</span>`}</div></button>` : ``}`;
-});
-const css$t = {
-  code: "button.svelte-1aipbo4.svelte-1aipbo4{display:block;background-color:var(--secondary-color);border-radius:0.25rem;width:90px;min-width:50px;aspect-ratio:2.4/1;margin:0.6em;position:relative;transition:all.2s}button.svelte-1aipbo4.svelte-1aipbo4::after,button.svelte-1aipbo4.svelte-1aipbo4::before{content:'';display:block;width:90%;height:75%;border:2.5px solid #6d8fbb;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);transition:all 0.2s}button.svelte-1aipbo4.svelte-1aipbo4::after{border-radius:0.4rem}button.svelte-1aipbo4.svelte-1aipbo4::before{border-radius:40px}button.active.svelte-1aipbo4.svelte-1aipbo4,button.svelte-1aipbo4.svelte-1aipbo4:hover{background-color:var(--tertiary-color)}button.active.svelte-1aipbo4.svelte-1aipbo4::before,button.active.svelte-1aipbo4.svelte-1aipbo4::after,button.svelte-1aipbo4.svelte-1aipbo4:hover::before,button.svelte-1aipbo4.svelte-1aipbo4:hover::after{border:2.5px solid #eee2c8}button.active.svelte-1aipbo4.svelte-1aipbo4,button.svelte-1aipbo4.svelte-1aipbo4:hover{transform:scale(1.1)}.gi-primo-star.svelte-1aipbo4.svelte-1aipbo4{left:15px;font-size:0.7rem}.gi-companion.svelte-1aipbo4.svelte-1aipbo4{right:5px;font-size:3rem;line-height:0;top:55% !important}.gi-primo-star.svelte-1aipbo4.svelte-1aipbo4,.gi-companion.svelte-1aipbo4.svelte-1aipbo4{position:absolute;top:50%;transform:translateY(-50%);color:#6d8fbb;transition:all 0.2s}.active.svelte-1aipbo4 .gi-primo-star.svelte-1aipbo4,.active.svelte-1aipbo4 .gi-companion.svelte-1aipbo4,button.svelte-1aipbo4:hover .gi-primo-star.svelte-1aipbo4,button.svelte-1aipbo4:hover .gi-companion.svelte-1aipbo4{color:#eee2c8}.picture.svelte-1aipbo4.svelte-1aipbo4{width:100%;height:150%;position:absolute;bottom:0;left:0;overflow:hidden;pointer-events:none;border-bottom-left-radius:7px;border-bottom-right-radius:7px}.wrapper.svelte-1aipbo4.svelte-1aipbo4{width:100%;height:100%;position:relative;z-index:+1;transition:all 0.2s;transform:translateY(-10%)}.mobile .wrapper.svelte-1aipbo4.svelte-1aipbo4{transform:translateY(0)}.active.svelte-1aipbo4 .wrapper.svelte-1aipbo4{transform:translateY(-25%)}.mobile .active.svelte-1aipbo4 .wrapper.svelte-1aipbo4{transform:translateY(-15%)}img.svelte-1aipbo4.svelte-1aipbo4{position:absolute;z-index:+1;left:50%;transform:translateX(-50%)}.discount.svelte-1aipbo4.svelte-1aipbo4{background-color:#8ab958;position:absolute;z-index:+2;left:50%;bottom:-5px;border-radius:20px;color:#fff;transform:scale(0.65) translateX(-50%);padding:0.2rem 0.5rem}@media screen and (min-width: 750px){.discount.svelte-1aipbo4.svelte-1aipbo4{font-size:0.7rem}}.mobile button.svelte-1aipbo4.svelte-1aipbo4{transform:scale(0.88);margin:2.5% 0;aspect-ratio:2.2/1}.mobile button.active.svelte-1aipbo4.svelte-1aipbo4{transform:scale(0.9)}",
-  map: null
-};
-const Banner_button = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let baseNoticeName;
-  let isWeapon;
-  let noticeName;
-  let $isFatepointSystem, $$unsubscribe_isFatepointSystem;
-  let $activeVersion, $$unsubscribe_activeVersion;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_isFatepointSystem = subscribe(isFatepointSystem, (value) => $isFatepointSystem = value);
-  $$unsubscribe_activeVersion = subscribe(activeVersion, (value) => $activeVersion = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { active = false } = $$props;
-  let { type = "beginner" } = $$props;
-  let { featured = [] } = $$props;
-  let { character = "" } = $$props;
-  let { index = 0 } = $$props;
-  const buttonOffset = (itemName, buttonPosition = {}) => {
-    const data$2 = type === "weapon-event" ? data : data$1;
-    const { offset = {} } = data$2.find(({ name }) => name === itemName) || {};
-    const { button = {} } = offset;
-    Object.keys(buttonPosition).forEach((key) => button[key] = buttonPosition[key]);
-    return button;
-  };
-  let patch, phase;
-  const setNotice = () => {
-    if (!active || !type.match("event"))
-      return;
-    noticeMark.openNotice(baseNoticeName);
-  };
-  createEventDispatcher();
-  if ($$props.active === void 0 && $$bindings.active && active !== void 0)
-    $$bindings.active(active);
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.featured === void 0 && $$bindings.featured && featured !== void 0)
-    $$bindings.featured(featured);
-  if ($$props.character === void 0 && $$bindings.character && character !== void 0)
-    $$bindings.character(character);
-  if ($$props.index === void 0 && $$bindings.index && index !== void 0)
-    $$bindings.index(index);
-  $$result.css.add(css$t);
-  ({ patch, phase } = $activeVersion);
-  baseNoticeName = `${patch}-${phase}-${index}`;
-  isWeapon = type === "weapon-event" && $isFatepointSystem;
-  noticeName = isWeapon ? `fatepoint${patch}-${phase}` : baseNoticeName;
-  {
-    setNotice();
-  }
-  $$unsubscribe_isFatepointSystem();
-  $$unsubscribe_activeVersion();
-  $$unsubscribe_assets();
-  return `<button class="${["button " + escape(type, true) + " svelte-1aipbo4", active ? "active" : ""].join(" ").trim()}">${type.match("event") ? `${validate_component(NoticeMark, "NoticeMark").$$render(
-    $$result,
-    {
-      name: noticeName,
-      style: "transform: translateY(-130%) translateX(50%); z-index:+10"
-    },
-    {},
-    {}
-  )}` : ``}
-	<i class="${"gi-primo-star svelte-1aipbo4"}"></i>
-	<i class="${"gi-companion svelte-1aipbo4"}"></i>
-	<div class="${"picture svelte-1aipbo4"}"><div class="${"wrapper svelte-1aipbo4"}">${type === "weapon-event" ? `${each(featured, ({ name, buttonPosition }) => {
-    return `<img${add_attribute("src", $assets[name], 0)} alt="${"Weapon Wish"}"${add_attribute("style", positionToStyle(buttonOffset(name, buttonPosition)), 0)} crossorigin="${"anonymous"}" class="${"svelte-1aipbo4"}">`;
-  })}` : `<img${add_attribute("src", $assets[`button/${character}`], 0)} alt="${escape(type, true) + " Wish"}"${add_attribute("style", positionToStyle(buttonOffset(character)), 0)} crossorigin="${"anonymous"}" class="${"svelte-1aipbo4"}">`}</div></div>
-	${type === "beginner" ? `<div class="${"discount svelte-1aipbo4"}">-20%</div>` : ``}
-</button>`;
-});
-const css$s = {
-  code: "#header.svelte-10cweyq.svelte-10cweyq{position:relative;display:block;width:100%;padding:30px 2%;z-index:5}h1.svelte-10cweyq button.svelte-10cweyq{display:inline-flex;justify-content:center;align-items:center;color:#fff;margin-left:0.7rem;line-height:0;transition:all 0.2s}h1.svelte-10cweyq button.svelte-10cweyq:hover{background-color:var(--tertiary-color);color:#3a4156}.help.svelte-10cweyq.svelte-10cweyq{border-radius:50px;border:0.15rem solid #fff;width:1.7rem;height:1.7rem}.fullscreen.svelte-10cweyq.svelte-10cweyq{border-color:transparent;transform:scale(1.3);width:1.3rem;height:1.3rem}.bg.svelte-10cweyq.svelte-10cweyq{display:none}.top.svelte-10cweyq.svelte-10cweyq{display:flex;justify-content:space-between;width:100%;position:relative}.wish-title.svelte-10cweyq.svelte-10cweyq{color:#fff;text-transform:capitalize;display:flex;align-items:center;text-align:left;font-size:110%}.wish-title.svelte-10cweyq img.svelte-10cweyq{width:30px;margin-right:15px}.budget.svelte-10cweyq.svelte-10cweyq{text-align:right;display:flex;justify-content:flex-end;align-items:center}.banner-button.svelte-10cweyq.svelte-10cweyq{text-align:center;display:flex;justify-content:center;position:relative;z-index:10}.mobile #header.svelte-10cweyq.svelte-10cweyq{padding:0 !important}.mobile .top.svelte-10cweyq.svelte-10cweyq{position:fixed;top:0;right:2%;width:calc(100% - 100px);display:flex;justify-content:space-between;padding-right:4%}.mobile .wish-title.svelte-10cweyq img.svelte-10cweyq{display:none}.mobile .banner-button.svelte-10cweyq.svelte-10cweyq{flex-direction:column;align-items:center;width:120px;margin-top:0;height:100%;justify-content:flex-start;padding-top:2.5rem;z-index:-10}.mobile .bg.svelte-10cweyq.svelte-10cweyq{display:block;position:absolute;top:0;left:50%;width:40px;background-color:rgba(0, 0, 0, 0.4);z-index:-1;transform:translateX(-50%);text-align:center;border:solid rgba(207, 186, 143, 0.5);border-width:0 2px}.bg.svelte-10cweyq>img.svelte-10cweyq{width:60%;margin-top:3px}@media screen and (min-width: 975px){main:not(.mobile) .banner-button.svelte-10cweyq.svelte-10cweyq{position:absolute;max-width:50%;top:20px;left:50%;transform:translateX(-50%);margin-top:0}}",
-  map: null
-};
-const Header = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let event;
-  let balance;
-  let unlimitedWish;
-  let headerHeightstyle;
-  let fullscreen;
-  let $onWish, $$unsubscribe_onWish;
-  let $viewportHeight, $$unsubscribe_viewportHeight;
-  let $mobileMode, $$unsubscribe_mobileMode;
-  let $activeBanner, $$unsubscribe_activeBanner;
-  let $wishAmount, $$unsubscribe_wishAmount;
-  let $acquaint, $$unsubscribe_acquaint;
-  let $intertwined, $$unsubscribe_intertwined;
-  let $assets, $$unsubscribe_assets;
-  let $editorMode, $$unsubscribe_editorMode;
-  let $t, $$unsubscribe_t;
-  let $isPWA, $$unsubscribe_isPWA;
-  let $isMobile, $$unsubscribe_isMobile;
-  let $starglitter, $$unsubscribe_starglitter;
-  let $stardust, $$unsubscribe_stardust;
-  let $primogem, $$unsubscribe_primogem;
-  let $isCustomBanner, $$unsubscribe_isCustomBanner;
-  let $bannerList, $$unsubscribe_bannerList;
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => $viewportHeight = value);
-  $$unsubscribe_mobileMode = subscribe(mobileMode, (value) => $mobileMode = value);
-  $$unsubscribe_activeBanner = subscribe(activeBanner, (value) => $activeBanner = value);
-  $$unsubscribe_wishAmount = subscribe(wishAmount, (value) => $wishAmount = value);
-  $$unsubscribe_acquaint = subscribe(acquaint, (value) => $acquaint = value);
-  $$unsubscribe_intertwined = subscribe(intertwined, (value) => $intertwined = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_editorMode = subscribe(editorMode, (value) => $editorMode = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_isPWA = subscribe(isPWA, (value) => $isPWA = value);
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => $isMobile = value);
-  $$unsubscribe_starglitter = subscribe(starglitter, (value) => $starglitter = value);
-  $$unsubscribe_stardust = subscribe(stardust, (value) => $stardust = value);
-  $$unsubscribe_primogem = subscribe(primogem, (value) => $primogem = value);
-  $$unsubscribe_isCustomBanner = subscribe(isCustomBanner, (value) => $isCustomBanner = value);
-  $$unsubscribe_bannerList = subscribe(bannerList, (value) => $bannerList = value);
-  let { bannerType = "" } = $$props;
-  getContext("chatToggle");
-  const navigate = getContext("navigate");
-  const previousClick = () => {
-    navigate("allbanners");
-    playSfx();
-  };
-  const handleMenu = getContext("handleMenu");
-  const onWish = getContext("onWish");
-  $$unsubscribe_onWish = subscribe(onWish, (value) => $onWish = value);
-  hotkeys("esc", "index", (e) => {
-    if ($onWish)
-      return;
-    e.preventDefault();
-    previousClick();
-  });
-  hotkeys("m", "index", (e) => {
-    if ($onWish)
-      return;
-    e.preventDefault();
-    handleMenu();
-  });
-  if ($$props.bannerType === void 0 && $$bindings.bannerType && bannerType !== void 0)
-    $$bindings.bannerType(bannerType);
-  $$result.css.add(css$s);
-  event = bannerType.match("event");
-  balance = event ? $intertwined : $acquaint;
-  unlimitedWish = $wishAmount === "unlimited";
-  headerHeightstyle = $mobileMode ? `height: ${$viewportHeight}px` : "";
-  fullscreen = $viewportHeight === window.screen.height;
-  $$unsubscribe_onWish();
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_mobileMode();
-  $$unsubscribe_activeBanner();
-  $$unsubscribe_wishAmount();
-  $$unsubscribe_acquaint();
-  $$unsubscribe_intertwined();
-  $$unsubscribe_assets();
-  $$unsubscribe_editorMode();
-  $$unsubscribe_t();
-  $$unsubscribe_isPWA();
-  $$unsubscribe_isMobile();
-  $$unsubscribe_starglitter();
-  $$unsubscribe_stardust();
-  $$unsubscribe_primogem();
-  $$unsubscribe_isCustomBanner();
-  $$unsubscribe_bannerList();
-  return `<div id="${"header"}"${add_attribute("style", headerHeightstyle, 0)} class="${"svelte-10cweyq"}"><div class="${"top svelte-10cweyq"}"><h1 class="${"wish-title svelte-10cweyq"}"><img${add_attribute("src", $assets["brand.png"], 0)} alt="${"Brand"}" crossorigin="${"anonymous"}" class="${"svelte-10cweyq"}">
-
-			${!$editorMode ? `<span>${escape($t("wish.wishTitle"))}</span>` : `<span>${escape($t("customBanner.title"))}</span>`}
-
-			<button class="${"help svelte-10cweyq"}" title="${"Setting"}" aria-label="${"Setting"}"><i class="${"gi-help"}"></i></button>
-			
-
-			${!$isPWA || !$isMobile ? `<button class="${"fullscreen svelte-10cweyq"}" title="${"FullScreen"}" aria-label="${"Fullscreen"}"><i class="${"gi-" + escape(!fullscreen ? "fullscreen" : "shrink", true)}"></i></button>` : ``}</h1>
-		<div class="${"budget svelte-10cweyq"}">${!$editorMode ? `<div class="${"fates"}">${$mobileMode ? `${validate_component(MyFund, "MyFund").$$render($$result, { type: "starglitter" }, {}, {
-    default: () => {
-      return `${escape($starglitter)}`;
-    }
-  })}
-						${validate_component(MyFund, "MyFund").$$render($$result, { type: "stardust" }, {}, {
-    default: () => {
-      return `${escape($stardust)}`;
-    }
-  })}` : ``}
-
-					${validate_component(MyFund, "MyFund").$$render($$result, { type: "primogem", plusbutton: true }, {}, {
-    default: () => {
-      return `${escape(unlimitedWish ? "\u221E" : $primogem)}`;
-    }
-  })}
-					${validate_component(MyFund, "MyFund").$$render($$result, { type: event ? "intertwined" : "acquaint" }, {}, {
-    default: () => {
-      return `${escape(unlimitedWish ? "\u221E" : balance)}`;
-    }
-  })}</div>
-
-				<button class="${"close"}" title="${"Change Banner"}"><i class="${"gi-close"}"></i></button>
-				<button class="${"close"}" title="${"close"}"><i class="${"gi-close"}"></i></button>` : `<button class="${"close"}" title="${"Cancel Edit"}"><i class="${"gi-close"}"></i></button>`}</div></div>
-
-	${!$editorMode && !$isCustomBanner ? `<div class="${"banner-button svelte-10cweyq"}"><div class="${"bg svelte-10cweyq"}"${add_attribute("style", headerHeightstyle, 0)}><img${add_attribute("src", $assets["brand.png"], 0)} alt="${"Brand"}" crossorigin="${"anonymous"}" class="${"svelte-10cweyq"}"></div>
-
-			${each($bannerList, ({ type, featured, character }, i) => {
-    return `${validate_component(Banner_button, "BannerButton").$$render(
-      $$result,
-      {
-        type,
-        featured,
-        character,
-        index: i,
-        active: $activeBanner === i
-      },
-      {},
-      {}
-    )}`;
-  })}
-
-			${$mobileMode && bannerType === "weapon-event" ? `${validate_component(Button, "EpitomizedButton").$$render($$result, {}, {}, {})}` : ``}</div>` : `<div class="${"banner-button svelte-10cweyq"}"></div>`}
-</div>`;
-});
-const getBannerName = (banner) => {
-  const split = banner.split("-");
-  return { name: split.slice(0, -1).join("-"), number: split[split.length - 1] };
-};
-const highlightBannerName = (bannerName, vision) => {
-  const name = bannerName;
-  const splited = name.trim().split(" ");
-  const wordCount = splited.length - 1;
-  if (wordCount < 1)
-    return `<span class="${vision}-flat">${bannerName}</span>`;
-  const modulo = wordCount % 2;
-  const halfOfTextIndex = (wordCount - modulo) / 2;
-  const frontText = splited.filter((w, i) => i <= halfOfTextIndex).join(" ");
-  const endText = splited.filter((w, i) => i > halfOfTextIndex).join(" ");
-  return `<span class="${vision}-flat">${frontText}</span> ${endText}`;
-};
-const Publisher_svelte_svelte_type_style_lang = "";
-const css$r = {
-  code: ".publisher.svelte-ru4wkb.svelte-ru4wkb{position:fixed;z-index:+20;top:0;left:0;width:var(--screen-width);height:var(--screen-height);background-color:rgba(0, 0, 0, 0.2);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;justify-content:center;align-items:center}.load-text.svelte-ru4wkb span{color:#ff9615}.container.svelte-ru4wkb.svelte-ru4wkb{width:600px;max-width:90%;background-color:#fbf6ee;border:2px solid #ddd5c8;border-radius:0.5rem;padding:3% 1.5%}.load-text.svelte-ru4wkb.svelte-ru4wkb{display:inline-block}.load-text.svelte-ru4wkb.svelte-ru4wkb::after{content:'.';position:absolute;right:0;transform:translateX(100%);bottom:0;animation:svelte-ru4wkb-dot 3s infinite}.progress-bar.svelte-ru4wkb.svelte-ru4wkb{width:100%;height:0.2rem;background-color:#ccc;margin:3% 0;position:relative;border-radius:1rem}.progress-bar.svelte-ru4wkb span.svelte-ru4wkb{border-radius:inherit;position:absolute;left:0;top:50%;transform:translateY(-50%);width:var(--per);height:120%;background-image:linear-gradient(to left, #898e9d, #4a5265);box-shadow:0 0 0.1rem #fff;transition:width 0.05s}.content.svelte-ru4wkb.svelte-ru4wkb{text-align:center}.loader.svelte-ru4wkb.svelte-ru4wkb{margin:3% 0}.report.svelte-ru4wkb.svelte-ru4wkb{padding-top:0.5rem;font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;font-style:italic}.report.svelte-ru4wkb button.svelte-ru4wkb{color:orange;font-weight:bold;font-style:inherit;transition:all 0.25s}.report.svelte-ru4wkb button.svelte-ru4wkb:hover{text-decoration:underline}@media screen and (max-width: 640px){.loader.svelte-ru4wkb.svelte-ru4wkb{margin:7% 0}}.copy-text.svelte-ru4wkb.svelte-ru4wkb,.loader.svelte-ru4wkb.svelte-ru4wkb{display:flex;align-items:center;text-align:center;justify-content:center;width:100%}.copy-text.svelte-ru4wkb label.svelte-ru4wkb{padding:2% 5%;background-color:#fff;border:1px solid #898e9d;border-radius:3rem;white-space:nowrap;width:80%;overflow:hidden;text-overflow:ellipsis}.copy-text.svelte-ru4wkb button.svelte-ru4wkb{background-color:#898e9d;color:#fff;line-height:0;padding:2% 2.5%;margin:1%;border-radius:3rem;font-size:80%;display:inline-flex;align-items:center;transition:all 0.25s}.copy-text.svelte-ru4wkb button.svelte-ru4wkb:hover{background-color:#4a5265}.shareable.svelte-ru4wkb.svelte-ru4wkb{padding:2%}.shareable.svelte-ru4wkb button.svelte-ru4wkb{padding:0;border-radius:100%;z-index:10;aspect-ratio:1 / 1;display:inline-flex;justify-content:center;align-items:center;line-height:0;margin:0 0.2rem;font-size:100%;opacity:0.75;width:2.2rem;transition:all 0.25s;color:#fff}.shareable.svelte-ru4wkb button.svelte-ru4wkb:hover{opacity:1}button.svelte-ru4wkb.svelte-ru4wkb:active{transform:scale(0.9)}.twitter.svelte-ru4wkb.svelte-ru4wkb{background-color:#1da1f2}.facebook.svelte-ru4wkb.svelte-ru4wkb{background-color:#4267b2}.save.svelte-ru4wkb.svelte-ru4wkb{background-color:#3f4349}.toast.svelte-ru4wkb.svelte-ru4wkb{position:fixed;z-index:+25;top:50%;left:50%;transform:translate(-50%, -50%);display:inline-block;padding:0.5rem 1rem;border-radius:0.5rem;background-color:rgba(173, 128, 65, 0.8);color:#fff;font-size:0.75rem}@keyframes svelte-ru4wkb-dot{0%{content:'.'}25%{content:'..'}50%{content:'...'}100%{content:''}}",
-  map: null
-};
-const Publisher = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_editID;
-  let $$unsubscribe_isMobile;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_editID = subscribe(editID, (value) => value);
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let percentage = 0;
-  let itemInProccess = "";
-  const itemName = {
-    artURL: "SplashArt",
-    faceURL: "Face",
-    thumbnail: "Banner Preview"
-  };
-  getContext("chatToggle");
-  getContext("publishError");
-  getContext("publishDone");
-  getContext("closePublisher");
-  $$result.css.add(css$r);
-  $t("customBanner.shareText");
-  $$unsubscribe_editID();
-  $$unsubscribe_isMobile();
-  $$unsubscribe_t();
-  return `${``}
-
-<div class="${"publisher svelte-ru4wkb"}"><div class="${"container svelte-ru4wkb"}">${`<div class="${"content svelte-ru4wkb"}"><caption class="${"load-text svelte-ru4wkb"}" style="${"position: relative;"}"><!-- HTML_TAG_START -->${$t("customBanner.uploading", {
-    values: {
-      item: `<span>${itemName[itemInProccess]}</span>`
-    }
-  })}<!-- HTML_TAG_END --></caption>
-				<div class="${"progress-bar svelte-ru4wkb"}" style="${"--per:" + escape(percentage, true) + "%"}"><span class="${"svelte-ru4wkb"}"></span></div></div>`}</div>
-</div>`;
-});
-const _footer_svelte_svelte_type_style_lang = "";
-const css$q = {
-  code: "#footer.svelte-6g0x8w.svelte-6g0x8w{position:relative}.red.svelte-6g0x8w.svelte-6g0x8w{color:#de2f22 !important}.footer-info.svelte-6g0x8w.svelte-6g0x8w{position:absolute;left:5%;bottom:75%;align-items:center;display:flex;flex-direction:column;pointer-events:none}.wish.svelte-6g0x8w>div.svelte-6g0x8w{display:inline-flex;align-items:center;margin-right:5px;padding:2px 20px 2px 2px;font-size:0.9rem}.wish.svelte-6g0x8w span.svelte-6g0x8w{margin-left:10px;color:#fff;text-shadow:0 0 3px rgba(0, 0, 0, 0.5)}.wish-button.svelte-6g0x8w.svelte-6g0x8w{transform:scale(1);transition:all 0.2s;color:#4a5265;text-decoration:none;z-index:+5;position:relative}.wish-button.svelte-6g0x8w.svelte-6g0x8w:active{filter:brightness(85%)}button.svelte-6g0x8w.svelte-6g0x8w:active:not(:disabled){transform:scale(0.95)}.row.svelte-6g0x8w.svelte-6g0x8w{width:100%;height:100%;padding:0 5%;display:flex;justify-content:space-between;align-items:center}.roll-button.svelte-6g0x8w.svelte-6g0x8w{text-align:right}.roll-button.svelte-6g0x8w button.svelte-6g0x8w{background-image:var(--bg);background-size:contain;background-position:center;background-repeat:no-repeat;width:230px;aspect-ratio:355/88;margin:0 5px;display:inline-flex;justify-content:center;align-items:center;flex-direction:column;color:#a49a90;transition:all 0.2s}.roll-button.svelte-6g0x8w button.svelte-6g0x8w:disabled{filter:brightness(0.5)}.roll-button.svelte-6g0x8w button .bottom.svelte-6g0x8w{display:flex;align-items:center}.discount.svelte-6g0x8w.svelte-6g0x8w{background-color:#8ab958;position:absolute;z-index:+2;left:15%;top:-5%;border-radius:20px;color:#fff;transform:scale(0.8) translateX(-50%);padding:0.2rem 0.5rem}@media screen and (min-width: 750px){.discount.svelte-6g0x8w.svelte-6g0x8w{font-size:0.7rem}.roll-button.svelte-6g0x8w.svelte-6g0x8w{white-space:nowrap}}.mobile .row.svelte-6g0x8w.svelte-6g0x8w{padding:1rem 0;align-items:flex-end}.mobile .menu-button{padding-left:1%;white-space:nowrap}.mobile .roll-button.svelte-6g0x8w.svelte-6g0x8w{margin-right:40px !important;white-space:nowrap}.mobile .roll-button.svelte-6g0x8w button.svelte-6g0x8w{font-size:0.75rem}.mobile .roll-button.svelte-6g0x8w img{transform:scale(0.7)}.mobile .bottom.svelte-6g0x8w.svelte-6g0x8w{margin-top:-3px}@media screen and (max-width: 925px){button.svelte-6g0x8w.svelte-6g0x8w{padding:2px 15px;margin:2px 5px}.roll-button.svelte-6g0x8w button.svelte-6g0x8w{width:175px;margin:0}.roll-button.svelte-6g0x8w img{transform:scale(0.8)}}@media screen and (max-width: 700px){.roll-button.svelte-6g0x8w.svelte-6g0x8w{width:100%}}@media screen and (max-width: 550px){.menu-button.svelte-6g0x8w.svelte-6g0x8w{width:100%}.roll-button.svelte-6g0x8w.svelte-6g0x8w{width:auto}}@media screen and (max-width: 400px){.roll-button.svelte-6g0x8w button.svelte-6g0x8w{width:140px;margin:0}.roll-button.svelte-6g0x8w img{transform:scale(0.7)}.roll-button.svelte-6g0x8w .bottom.svelte-6g0x8w{margin-top:-3px}}",
-  map: null
-};
-const Footer = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let isBeginner;
-  let isEvent;
-  let currencyUsed;
-  let fateType;
-  let isUnlimited;
-  let patch;
-  let openedNotices;
-  let hasNewOutfit;
-  let $editorMode, $$unsubscribe_editorMode;
-  let $onWish, $$unsubscribe_onWish;
-  let $appReady, $$unsubscribe_appReady;
-  let $t, $$unsubscribe_t;
-  let $editID, $$unsubscribe_editID;
-  let $multipull, $$unsubscribe_multipull;
-  let $activeVersion, $$unsubscribe_activeVersion;
-  let $wishAmount, $$unsubscribe_wishAmount;
-  let $acquaint, $$unsubscribe_acquaint;
-  let $intertwined, $$unsubscribe_intertwined;
-  let $mobileMode, $$unsubscribe_mobileMode;
-  let $starglitter, $$unsubscribe_starglitter;
-  let $stardust, $$unsubscribe_stardust;
-  let $assets, $$unsubscribe_assets;
-  let $readyToPull, $$unsubscribe_readyToPull;
-  $$unsubscribe_editorMode = subscribe(editorMode, (value) => $editorMode = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_editID = subscribe(editID, (value) => $editID = value);
-  $$unsubscribe_multipull = subscribe(multipull, (value) => $multipull = value);
-  $$unsubscribe_activeVersion = subscribe(activeVersion, (value) => $activeVersion = value);
-  $$unsubscribe_wishAmount = subscribe(wishAmount, (value) => $wishAmount = value);
-  $$unsubscribe_acquaint = subscribe(acquaint, (value) => $acquaint = value);
-  $$unsubscribe_intertwined = subscribe(intertwined, (value) => $intertwined = value);
-  $$unsubscribe_mobileMode = subscribe(mobileMode, (value) => $mobileMode = value);
-  $$unsubscribe_starglitter = subscribe(starglitter, (value) => $starglitter = value);
-  $$unsubscribe_stardust = subscribe(stardust, (value) => $stardust = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { bannerType = "beginner" } = $$props;
-  const onWish = getContext("onWish");
-  $$unsubscribe_onWish = subscribe(onWish, (value) => $onWish = value);
-  const readyToPull = getContext("readyToPull");
-  $$unsubscribe_readyToPull = subscribe(readyToPull, (value) => $readyToPull = value);
-  const navigate = getContext("navigate");
-  const changePage = (page2) => {
-    navigate(page2);
-    if (["inventory", "history"].includes(page2))
-      return playSfx(page2);
-    if (page2 === "shop")
-      return playSfx("shopopen");
-    return playSfx();
-  };
-  const roll2 = getContext("doRoll");
-  const handleSingleRollClick = () => {
-    if (bannerType === "member") {
-      if (!Array.isArray(memberDB) || memberDB.length == 0) {
-        alert("\u8BF7\u70B9\u51FB\u5DE6\u4E0A\u89D2\u95EE\u53F7\u53BB\u4E0A\u4F20\u540D\u5355");
-        return;
-      }
-    }
-    playSfx("roll");
-    roll2(1, bannerType);
-  };
-  const handleMultiRollClick = () => {
-    if (bannerType === "member") {
-      if (!Array.isArray(memberDB) || memberDB.length == 0) {
-        alert("\u8BF7\u70B9\u51FB\u5DE6\u4E0A\u89D2\u95EE\u53F7\u53BB\u4E0A\u4F20\u540D\u5355");
-        return;
-      }
-    }
-    playSfx("roll");
-    roll2(isBeginner ? 10 : $multipull, bannerType);
-  };
-  let showUploader = false;
-  setContext("closePublisher", () => showUploader = false);
-  setContext("publishDone", () => {
-    preloadVersion.set({ patch: "Custom", phase: $editID });
-    showUploader = false;
-    playSfx("close");
-  });
-  setContext("publishError", () => {
-    const toastMsg2 = $t("customBanner.networkError");
-    pushToast({ message: toastMsg2, type: "error" });
-    showUploader = false;
-  });
-  const appReady = getContext("appReady");
-  $$unsubscribe_appReady = subscribe(appReady, (value) => $appReady = value);
-  hotkeys("enter", "index", (e) => {
-    if (!$appReady || $onWish || $editorMode)
-      return;
-    e.preventDefault();
-    handleMultiRollClick();
-  });
-  hotkeys("shift+enter", "index", (e) => {
-    if (!$appReady || $onWish || isBeginner || $editorMode)
-      return;
-    e.preventDefault();
-    handleSingleRollClick();
-  });
-  hotkeys("s,c,h,d", "index", (e) => {
-    if (!$appReady || $onWish || $editorMode)
-      return;
-    e.preventDefault();
-    const [key] = hotkeys.getPressedKeyString();
-    const to = key.toLocaleLowerCase();
-    if (to === "s")
-      return changePage("shop");
-    if (to === "c")
-      return changePage("inventory");
-    if (to === "h")
-      return changePage("history");
-    if (to === "d")
-      return changePage("details");
-  });
-  if ($$props.bannerType === void 0 && $$bindings.bannerType && bannerType !== void 0)
-    $$bindings.bannerType(bannerType);
-  $$result.css.add(css$q);
-  isBeginner = bannerType === "beginner";
-  isEvent = bannerType.match("event");
-  currencyUsed = isEvent ? $intertwined : $acquaint;
-  fateType = isEvent ? "intertwined" : "acquaint";
-  isUnlimited = $wishAmount === "unlimited";
-  patch = $activeVersion.patch;
-  openedNotices = [`outfits-${patch}`, `recomended-${patch}`];
-  hasNewOutfit = isNewOutfitReleased(patch);
-  $$unsubscribe_editorMode();
-  $$unsubscribe_onWish();
-  $$unsubscribe_appReady();
-  $$unsubscribe_t();
-  $$unsubscribe_editID();
-  $$unsubscribe_multipull();
-  $$unsubscribe_activeVersion();
-  $$unsubscribe_wishAmount();
-  $$unsubscribe_acquaint();
-  $$unsubscribe_intertwined();
-  $$unsubscribe_mobileMode();
-  $$unsubscribe_starglitter();
-  $$unsubscribe_stardust();
-  $$unsubscribe_assets();
-  $$unsubscribe_readyToPull();
-  return `${showUploader ? `${validate_component(Publisher, "BannerPublisher").$$render($$result, {}, {}, {})}` : ``}
-
-<div id="${"footer"}" style="${"width: 100%; height: 100%"}" class="${"svelte-6g0x8w"}">${!$editorMode ? `<div class="${"footer-info svelte-6g0x8w"}">${!$mobileMode ? `${bannerType === "weapon-event" ? `${validate_component(Button, "EpitomizedButton").$$render($$result, {}, {}, {})}` : ``}
-				<div class="${"wish svelte-6g0x8w"}"><div class="${"starglitter svelte-6g0x8w"}">${validate_component(Icon$1, "Icon").$$render($$result, { type: "starglitter" }, {}, {})}
-						<span class="${"svelte-6g0x8w"}">${escape($starglitter)}</span></div>
-					<div class="${"stardust svelte-6g0x8w"}">${validate_component(Icon$1, "Icon").$$render($$result, { type: "stardust" }, {}, {})}
-						<span class="${"svelte-6g0x8w"}">${escape($stardust)}</span></div></div>` : ``}</div>` : ``}
-
-	<div class="${"row svelte-6g0x8w"}" style="${"--bg:url(" + escape($assets["button.webp"], true) + ")"}">${!$editorMode ? `<div class="${"left menu-button svelte-6g0x8w"}">${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, {}, {}, {
-    default: () => {
-      return `${hasNewOutfit ? `${validate_component(NoticeMark, "NoticeMark").$$render(
-        $$result,
-        {
-          name: openedNotices,
-          style: "transform: translateX(70%) translateY(-80%)"
-        },
-        {},
-        {}
-      )}` : ``}
-					${escape($t("shop.text"))}`;
-    }
-  })}
-
-				${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, {}, {}, {
-    default: () => {
-      return `${escape($t("inventory.text"))}`;
-    }
-  })}
-				${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, {}, {}, {
-    default: () => {
-      return `${escape($t("history.text"))}`;
-    }
-  })}</div>
-
-			<div class="${"right roll-button svelte-6g0x8w"}">${!isBeginner ? `<button class="${"single wish-button svelte-6g0x8w"}" ${$onWish || !$readyToPull ? "disabled" : ""}><div class="${"top"}">${escape($t("wish.rollButton", { values: { count: "\xD71" } }))}</div>
-						<div class="${"bottom svelte-6g0x8w"}">${validate_component(Icon$1, "Icon").$$render($$result, { type: fateType }, {}, {})}
-							<span style="${"margin-left: 7px"}" class="${["svelte-6g0x8w", currencyUsed < 1 && !isUnlimited ? "red" : ""].join(" ").trim()}">x 1
-							</span></div></button>` : ``}
-
-				<button class="${"ten wish-button svelte-6g0x8w"}" ${$onWish || !$readyToPull ? "disabled" : ""}>${bannerType === "beginner" ? `<span class="${"discount svelte-6g0x8w"}">-20%</span>` : ``}
-
-					<div class="${"top"}">${escape($t("wish.rollButton", {
-    values: {
-      count: `\xD7${isBeginner ? 10 : $multipull}`
-    }
-  }))}</div>
-
-					<div class="${"bottom svelte-6g0x8w"}">${validate_component(Icon$1, "Icon").$$render($$result, { type: fateType }, {}, {})}
-						${isBeginner ? `<span style="${"margin-left: 7px"}" class="${["svelte-6g0x8w", currencyUsed < 8 && !isUnlimited ? "red" : ""].join(" ").trim()}">x 8
-							</span>` : `<span style="${"margin-left: 7px"}" class="${["svelte-6g0x8w", currencyUsed < $multipull && !isUnlimited ? "red" : ""].join(" ").trim()}">x ${escape($multipull)}</span>`}</div></button></div>` : `<div class="${"left menu-button svelte-6g0x8w"}"></div>
-			<div class="${"right roll-button svelte-6g0x8w"}"><button class="${"wish-button svelte-6g0x8w"}" style="${"flex-direction: row; line-height: 0;"}"><i class="${"gi-primo-star"}" style="${"transform: translateX(-50%);"}"></i>
-					<span>${escape($t("customBanner.finishAndWish"))}</span></button>
-
-				<button class="${"wish-button svelte-6g0x8w"}" style="${"flex-direction: row; line-height: 0;"}"><i class="${"gi-share"}" style="${"transform: translateX(-50%);"}"></i>
-					${function(__value) {
-    if (is_promise(__value)) {
-      __value.then(null, noop);
-      return `
-						<span>${escape($t("customBanner.publish"))}</span>
-					`;
-    }
-    return function(isHosted) {
-      return `
-						${isHosted ? `<span>${escape($t("customBanner.updateAndShare"))}</span>` : `<span>${escape($t("customBanner.publish"))}</span>`}
-					`;
-    }(__value);
-  }(localBanner.isHostedBanner($editID))}</button></div>`}</div>
-</div>`;
-});
-const _outOfPrimogem_svelte_svelte_type_style_lang = "";
-const css$p = {
-  code: ".exchange.svelte-eojthv .red{color:#de2f22 !important}.exchange.svelte-eojthv .yellow{color:rgb(218, 177, 45) !important}.exchange.svelte-eojthv{width:100%;height:100%;display:flex;justify-content:center;align-items:center}",
-  map: null
-};
-const Out_of_primogem = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_multipull;
-  let $primogem, $$unsubscribe_primogem;
-  let $t, $$unsubscribe_t;
-  let $acquaint, $$unsubscribe_acquaint;
-  let $intertwined, $$unsubscribe_intertwined;
-  $$unsubscribe_multipull = subscribe(multipull, (value) => value);
-  $$unsubscribe_primogem = subscribe(primogem, (value) => $primogem = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_acquaint = subscribe(acquaint, (value) => $acquaint = value);
-  $$unsubscribe_intertwined = subscribe(intertwined, (value) => $intertwined = value);
-  let { isEventBanner = false } = $$props;
-  let { rollCost = 0 } = $$props;
-  getContext("closeModal");
-  getContext("reroll");
-  const currencyUsed = isEventBanner ? $intertwined : $acquaint;
-  const currencyName = isEventBanner ? $t("shop.item.intertwined") : $t("shop.item.acquaint");
-  const fateNeeded = rollCost - currencyUsed;
-  const primoNeeded = fateNeeded * 160;
-  const insufficientPrimo = $primogem < primoNeeded;
-  if ($$props.isEventBanner === void 0 && $$bindings.isEventBanner && isEventBanner !== void 0)
-    $$bindings.isEventBanner(isEventBanner);
-  if ($$props.rollCost === void 0 && $$bindings.rollCost && rollCost !== void 0)
-    $$bindings.rollCost(rollCost);
-  $$result.css.add(css$p);
-  $$unsubscribe_multipull();
-  $$unsubscribe_primogem();
-  $$unsubscribe_t();
-  $$unsubscribe_acquaint();
-  $$unsubscribe_intertwined();
-  return `${validate_component(ModalTpl, "ModalTpl").$$render(
-    $$result,
-    {
-      title: $t("shop.paimonBargains"),
-      disabled: insufficientPrimo
-    },
-    {},
-    {
-      default: () => {
-        return `<div class="${"exchange svelte-eojthv"}"><div><!-- HTML_TAG_START -->${$t("shop.fateNeeded", {
-          values: {
-            rollQty: `<span class="yellow">${fateNeeded}</span>`,
-            currency: currencyName
-          }
-        })}<!-- HTML_TAG_END -->
-			<br>
-
-			<!-- HTML_TAG_START -->${$t("shop.primoNeeded", {
-          values: {
-            primoPrice: `
-						<span class="${insufficientPrimo ? "red" : "yellow"}">
-							${primoNeeded}
-						</span>
-					`
-          }
-        })}<!-- HTML_TAG_END -->
-
-			${insufficientPrimo ? `<br>
-				<br>
-				<span class="${"red"}">${escape($t("shop.insufficient"))}</span>` : ``}</div></div>`;
-      }
-    }
-  )}`;
-});
-const _frameBeginner_svelte_svelte_type_style_lang = "";
-const css$o = {
-  code: ".frame-content.svelte-7m46zd.svelte-7m46zd{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width))}h1.svelte-7m46zd.svelte-7m46zd,.frame-content.svelte-7m46zd>div.svelte-7m46zd{text-align:left;position:absolute}h1.svelte-7m46zd span{color:#cba885;display:block}h1.svelte-7m46zd.svelte-7m46zd{bottom:73.5%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-7m46zd.svelte-7m46zd,.ja-JP h1.svelte-7m46zd.svelte-7m46zd{font-size:calc(6 / 100 * var(--content-width))}.info.svelte-7m46zd.svelte-7m46zd{left:0;top:36%;width:40%;height:45%;display:block;padding-left:4%}.top.svelte-7m46zd.svelte-7m46zd{color:#fff;background-color:#e79649;padding:0.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%, -15%)}.set.svelte-7m46zd.svelte-7m46zd{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-7m46zd.svelte-7m46zd{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(0.7 / 100 * var(--content-width)) 0;background-color:rgba(224, 85, 94, 0.85)}.desc.svelte-7m46zd .text.svelte-7m46zd{width:calc(32.5 / 100 * var(--content-width));padding:calc(0.3 / 100 * var(--content-width));line-height:125%}.icon.svelte-7m46zd.svelte-7m46zd{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.featured.svelte-7m46zd.svelte-7m46zd{top:65.6%;left:57.6%;color:#fff;font-size:calc(4.9 / 100 * var(--content-width));-webkit-text-stroke:0.05rem #565654;text-shadow:0 0 0.15rem #d2c69c}.ja-JP .featured.svelte-7m46zd.svelte-7m46zd,.zh-CN .featured.svelte-7m46zd.svelte-7m46zd{top:68%}.charName.svelte-7m46zd span.svelte-7m46zd:not(.up){filter:drop-shadow(0 0.3rem 0.5rem #000)}.charName.svelte-7m46zd span.up.svelte-7m46zd{color:#fff664;-webkit-text-stroke:0.05rem #e7a12e;font-size:calc(1.5 / 100 * var(--content-width));filter:drop-shadow(0 0.3rem 0.5rem #fff);position:absolute;top:0;right:0;transform:translateX(100%);text-transform:uppercase;text-shadow:0 0 0.4rem #f79c09}.char-title.svelte-7m46zd.svelte-7m46zd{left:57.6%;top:83.5%;color:#cfbc99;background-color:#39425d;padding:0.2% 1%}.chances.svelte-7m46zd.svelte-7m46zd{right:0;bottom:6.5%;color:#e7dfd0;background-color:#252d3a;padding:0.2% 2%}",
-  map: null
-};
-const Frame_beginner = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let char;
-  let $t, $$unsubscribe_t;
-  let $beginnerRemaining, $$unsubscribe_beginnerRemaining;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_beginnerRemaining = subscribe(beginnerRemaining, (value) => $beginnerRemaining = value);
-  let { character = "" } = $$props;
-  let bannerInfo;
-  if ($$props.character === void 0 && $$bindings.character && character !== void 0)
-    $$bindings.character(character);
-  $$result.css.add(css$o);
-  char = $t(`${character}.name`);
-  $$unsubscribe_t();
-  $$unsubscribe_beginnerRemaining();
-  return `<div class="${"frame-content svelte-7m46zd"}"><div class="${"top svelte-7m46zd"}">${escape($t("wish.banner.novice"))}</div>
-	<h1 class="${"card-stroke svelte-7m46zd"}"><!-- HTML_TAG_START -->${highlightBannerName($t(`banner.beginner`), "geo")}<!-- HTML_TAG_END --></h1>
-
-	<div class="${"info svelte-7m46zd"}"${add_attribute("this", bannerInfo, 0)}><div class="${"content"}"><div class="${"set svelte-7m46zd"}">${escape($t("wish.banner.beginnerSet", { values: { character: char } }))}</div>
-			<div class="${"desc svelte-7m46zd"}"><div class="${"icon svelte-7m46zd"}"><i class="${"gi-primo-star"}"></i></div>
-				<p class="${"text svelte-7m46zd"}">${escape($t("wish.banner.wishDescription"))}</p></div>
-			<div class="${"note"}">${escape($t("wish.banner.beginnerNote"))}</div></div></div>
-
-	<div class="${"featured svelte-7m46zd"}"><div class="${"charName svelte-7m46zd"}" style="${"position: relative;"}"><span class="${"svelte-7m46zd"}">${escape(char)}</span>
-			<span class="${"up svelte-7m46zd"}">${escape($t("wish.banner.up"))}</span></div></div>
-
-	<div class="${"char-title svelte-7m46zd"}">${escape($t(`${character}.title`))}</div>
-
-	<div class="${"chances svelte-7m46zd"}">${escape($t("wish.banner.beginnerChance", {
-    values: { chances: `${$beginnerRemaining}/20` }
-  }))}</div>
-</div>`;
-});
-const _frameCharacter_svelte_svelte_type_style_lang = "";
-const css$n = {
-  code: ".frame-content.svelte-1b4k6p2.svelte-1b4k6p2{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:130%}h1.svelte-1b4k6p2 span{display:block}h1.svelte-1b4k6p2.svelte-1b4k6p2,.frame-content.svelte-1b4k6p2>div.svelte-1b4k6p2{text-align:left;position:absolute}h1.svelte-1b4k6p2.svelte-1b4k6p2{bottom:67%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-1b4k6p2.svelte-1b4k6p2{font-size:calc(7 / 100 * var(--content-width))}.ja-JP h1.svelte-1b4k6p2.svelte-1b4k6p2{max-width:45%;font-size:calc(6 / 100 * var(--content-width));line-height:100%}.top.svelte-1b4k6p2.svelte-1b4k6p2{color:#fff;padding:0.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%, -15%)}.info.svelte-1b4k6p2.svelte-1b4k6p2{left:0;top:40%;width:40%;height:42%;display:block;padding-left:4%}.content.svelte-1b4k6p2.svelte-1b4k6p2{position:relative}.info.svelte-1b4k6p2 .content.svelte-1b4k6p2::after{content:'';display:block;width:calc(0.55 / 100 * var(--content-width));height:100%;background-color:#565654;position:absolute;left:calc(-3.045 / 100 * var(--content-width));top:0}.set.svelte-1b4k6p2.svelte-1b4k6p2{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-1b4k6p2.svelte-1b4k6p2{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(0.7 / 100 * var(--content-width)) 0}.icon.svelte-1b4k6p2.svelte-1b4k6p2{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.desc.svelte-1b4k6p2 .text.svelte-1b4k6p2{width:calc(32.5 / 100 * var(--content-width));padding:calc(0.3 / 100 * var(--content-width))}.character.svelte-1b4k6p2.svelte-1b4k6p2{left:54%;bottom:8%;width:calc(27 / 100 * var(--content-width))}.character.svelte-1b4k6p2 .char-name.svelte-1b4k6p2{color:#fff;display:inline-block;-webkit-text-stroke:0.02rem #565654;text-shadow:0 0 0.15rem #d2c69c;line-height:100%;position:relative;font-size:calc(11 / 100 * var(--text-width))}.zh-CN .character.svelte-1b4k6p2 .char-name.svelte-1b4k6p2{font-size:calc(17 / 100 * var(--text-width))}.ja-JP .character.svelte-1b4k6p2 .char-name.svelte-1b4k6p2{font-size:calc(15 / 100 * var(--text-width))}.char-name.svelte-1b4k6p2 span.svelte-1b4k6p2{filter:drop-shadow(0 0.3rem 0.5rem #000)}.char-name.svelte-1b4k6p2 .up.svelte-1b4k6p2{color:#fff664;-webkit-text-stroke:0.05rem #e7a12e;font-size:calc(2 / 100 * var(--content-width));filter:drop-shadow(0 0.3rem 0.5rem #fff);position:absolute;top:0;right:0;transform:translateX(100%) translateY(-50%);text-transform:uppercase;text-shadow:0 0 0.4rem #f79c09}.character.svelte-1b4k6p2 .char-title.svelte-1b4k6p2{color:#cfbc99;background-color:#39425d;margin-top:calc(3.5 / 100 * var(--content-width));padding:1% 2%;white-space:nowrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}",
-  map: null
-};
-const Frame_character = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let localeBannerName;
-  let vision;
-  let featuredC;
-  let $t, $$unsubscribe_t;
-  let $locale, $$unsubscribe_locale;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_locale = subscribe(D, (value) => $locale = value);
-  let { bannerName = "" } = $$props;
-  let { character = "" } = $$props;
-  let { textOffset = {} } = $$props;
-  let { event2 = false } = $$props;
-  let bannerInfo;
-  if ($$props.bannerName === void 0 && $$bindings.bannerName && bannerName !== void 0)
-    $$bindings.bannerName(bannerName);
-  if ($$props.character === void 0 && $$bindings.character && character !== void 0)
-    $$bindings.character(character);
-  if ($$props.textOffset === void 0 && $$bindings.textOffset && textOffset !== void 0)
-    $$bindings.textOffset(textOffset);
-  if ($$props.event2 === void 0 && $$bindings.event2 && event2 !== void 0)
-    $$bindings.event2(event2);
-  $$result.css.add(css$n);
-  localeBannerName = $t(`banner.${getBannerName(bannerName).name}`);
-  vision = getCharDetails(character).vision;
-  featuredC = `--text-width: calc(${textOffset?.w || 30} / 100 * var(--content-width));`;
-  $$unsubscribe_t();
-  $$unsubscribe_locale();
-  return `<div class="${"frame-content svelte-1b4k6p2"}"><div class="${"top bg-" + escape(vision, true) + " svelte-1b4k6p2"}">${escape($t("wish.banner.character-event"))}
-		${escape(event2 ? $locale === "ja-JP" ? "2" : "\u2014 2" : "")}</div>
-	<h1 class="${"card-stroke svelte-1b4k6p2"}"><!-- HTML_TAG_START -->${highlightBannerName(localeBannerName, vision)}<!-- HTML_TAG_END --></h1>
-
-	<div class="${"info svelte-1b4k6p2"}"${add_attribute("this", bannerInfo, 0)}><div class="${"content svelte-1b4k6p2"}"><div class="${"set card-stroke svelte-1b4k6p2"}">${escape($t("wish.banner.probIncreased"))}</div>
-			<div class="${"desc bg-" + escape(vision, true) + " svelte-1b4k6p2"}" style="${"opacity: 90%;"}"><div class="${"icon svelte-1b4k6p2"}"><i class="${"gi-primo-star"}"></i></div>
-				<div class="${"text svelte-1b4k6p2"}">${escape($t("wish.banner.wishDescription"))}</div></div>
-			<div class="${"note card-stroke"}">${escape($t("wish.banner.eventNote"))}
-				${escape($t("wish.banner.viewDetails"))}</div></div></div>
-
-	<div class="${"character svelte-1b4k6p2"}" style="${escape(featuredC, true) + escape(positionToStyle(textOffset), true)}"><div class="${"char-name svelte-1b4k6p2"}"><span class="${"svelte-1b4k6p2"}">${escape($t(`${character}.name`))}</span>
-			<span class="${"up svelte-1b4k6p2"}">${escape($t("wish.banner.up"))}</span></div>
-		<div class="${"char-title svelte-1b4k6p2"}">${escape($t(`${character}.title`))}</div></div>
-</div>`;
-});
-const _frameWeapon_svelte_svelte_type_style_lang = "";
-const css$m = {
-  code: ".frame-content.svelte-8vngkj.svelte-8vngkj{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:130%}h1.svelte-8vngkj span{display:block}h1.svelte-8vngkj.svelte-8vngkj,.frame-content.svelte-8vngkj>div.svelte-8vngkj{text-align:left;position:absolute}h1.svelte-8vngkj.svelte-8vngkj{bottom:67%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-8vngkj.svelte-8vngkj,.ja-JP h1.svelte-8vngkj.svelte-8vngkj{font-size:calc(7 / 100 * var(--content-width))}.top.svelte-8vngkj.svelte-8vngkj{color:#fff;padding:0.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%, -15%)}.info.svelte-8vngkj.svelte-8vngkj{left:4%;top:40%;width:36%;display:block}.info.svelte-8vngkj.svelte-8vngkj::after{content:'';display:block;width:calc(0.55 / 100 * var(--content-width));height:100%;background-color:#565654;position:absolute;left:calc(-3 / 100 * var(--content-width));top:0}.set.svelte-8vngkj.svelte-8vngkj{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-8vngkj.svelte-8vngkj{left:7.5%;top:49.7%;color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(0.7 / 100 * var(--content-width)) 0}.icon.svelte-8vngkj.svelte-8vngkj{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.desc.svelte-8vngkj .text.svelte-8vngkj{width:calc(32.5 / 100 * var(--content-width));padding:calc(0.3 / 100 * var(--content-width))}.note.svelte-8vngkj.svelte-8vngkj{width:85%}.featured.svelte-8vngkj.svelte-8vngkj{left:37%;top:64%;width:calc(22 / 100 * var(--content-width))}.rateup.svelte-8vngkj.svelte-8vngkj{left:70%;bottom:21%}.weapon-name.svelte-8vngkj.svelte-8vngkj{color:#fff;display:block;-webkit-text-stroke:0.015rem #000;letter-spacing:-0.05rem;line-height:100%;position:relative}.weapon-name.svelte-8vngkj span.svelte-8vngkj:not(.up){filter:drop-shadow(-0.2rem 0.2rem 0.5rem #000)}.first-wp.svelte-8vngkj.svelte-8vngkj{font-size:calc(8 / 100 * var(--text-width))}.second-wp.svelte-8vngkj.svelte-8vngkj{font-size:calc(8 / 100 * var(--text-width));margin-top:calc(0.6 / 100 * var(--content-width))}.zh-CN .first-wp.svelte-8vngkj.svelte-8vngkj,.zh-CN .second-wp.svelte-8vngkj.svelte-8vngkj,.ja-JP .first-wp.svelte-8vngkj.svelte-8vngkj,.ja-JP .second-wp.svelte-8vngkj.svelte-8vngkj{font-size:calc(11 / 100 * var(--text-width))}span.up.svelte-8vngkj.svelte-8vngkj{color:#fff664;-webkit-text-stroke:0.05rem #e7a12e;filter:drop-shadow(0 0.3rem 0.5rem #fff);font-size:calc(2 / 100 * var(--content-width));position:absolute;top:0;right:0;transform:translateX(100%) translateY(-80%);text-transform:uppercase;text-shadow:0 0 0.4rem #f79c09}.rateup.svelte-8vngkj .weapon-name.svelte-8vngkj{font-size:calc(2 / 100 * var(--content-width))}.zh-CN .rateup.svelte-8vngkj .weapon-name.svelte-8vngkj,.ja-JP .rateup.svelte-8vngkj .weapon-name.svelte-8vngkj{font-size:calc(3.5 / 100 * var(--content-width))}span.etc.svelte-8vngkj.svelte-8vngkj{font-size:calc(2 / 100 * var(--content-width));white-space:nowrap}.selected.svelte-8vngkj.svelte-8vngkj{position:absolute;bottom:0rem;right:0;max-width:80%;padding:0.2rem 1rem;color:#fff;background-color:rgba(0, 0, 0, 0.4);font-size:1rem;font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}.selected.fill.svelte-8vngkj.svelte-8vngkj{background-color:#62c5ff}",
-  map: null
-};
-const Frame_weapon = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  let $course, $$unsubscribe_course;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_course = subscribe(course, (value) => $course = value);
-  let { featured = {} } = $$props;
-  let { rateup = {} } = $$props;
-  let { textOffset = {} } = $$props;
-  const w = textOffset?.featured?.w || 29;
-  const featuredW = `--text-width: calc(${w} / 100 * var(--content-width));`;
-  if ($$props.featured === void 0 && $$bindings.featured && featured !== void 0)
-    $$bindings.featured(featured);
-  if ($$props.rateup === void 0 && $$bindings.rateup && rateup !== void 0)
-    $$bindings.rateup(rateup);
-  if ($$props.textOffset === void 0 && $$bindings.textOffset && textOffset !== void 0)
-    $$bindings.textOffset(textOffset);
-  $$result.css.add(css$m);
-  $$unsubscribe_t();
-  $$unsubscribe_course();
-  return `<div class="${"frame-content svelte-8vngkj"}"><div class="${"top bg-epitome svelte-8vngkj"}">${escape($t("wish.banner.weapon-event"))}</div>
-	<h1 class="${"svelte-8vngkj"}"><!-- HTML_TAG_START -->${highlightBannerName($t(`banner.epitome-invocation`), "epitome")}<!-- HTML_TAG_END --></h1>
-
-	<div class="${"info svelte-8vngkj"}"><div class="${"set card-stroke svelte-8vngkj"}">${escape($t("wish.banner.probIncreased"))}</div>
-		<div class="${"desc bg-epitome  svelte-8vngkj"}" style="${"opacity: 90%;"}"><div class="${"icon svelte-8vngkj"}"><i class="${"gi-primo-star"}"></i></div>
-			<div class="${"text svelte-8vngkj"}">${escape($t("wish.banner.wishDescription"))}</div></div>
-		<div class="${"note card-stroke svelte-8vngkj"}">${escape($t("wish.banner.viewDetails"))}</div></div>
-
-	<div class="${"featured svelte-8vngkj"}" style="${escape(featuredW, true) + escape(positionToStyle(textOffset?.featured), true)}"><div class="${"weapon-name first-wp svelte-8vngkj"}"><span class="${"svelte-8vngkj"}">${escape($t(`${featured[0].name}`))}</span>
-			<span class="${"up svelte-8vngkj"}">${escape($t("wish.banner.up"))}</span></div>
-		<div class="${"weapon-name second-wp svelte-8vngkj"}">${escape($t(`${featured[1].name}`))}</div></div>
-
-	<div class="${"rateup svelte-8vngkj"}"${add_attribute("style", positionToStyle(textOffset?.rateup), 0)}><div class="${"weapon-name svelte-8vngkj"}"><span class="${"svelte-8vngkj"}">${escape($t(`${rateup[0]}`))},</span>
-			<span class="${"etc svelte-8vngkj"}">${escape($t("wish.banner.etc"))}</span>
-			<span class="${"up svelte-8vngkj"}">${escape($t("wish.banner.up"))}</span></div></div>
-
-	${$course.selected !== null ? `<div class="${["selected svelte-8vngkj", $course.point === 2 ? "fill" : ""].join(" ").trim()}">${escape($t("wish.epitomizedPath.courseSetFor", {
-    values: {
-      selectedCourse: $t(featured[$course.selected]?.name)
-    }
-  }))}</div>` : ``}
-</div>`;
-});
-const _frameStandard_svelte_svelte_type_style_lang = "";
-const css$l = {
-  code: ".frame-content.svelte-1dimnlq.svelte-1dimnlq{width:100%;height:100%;position:relative;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:120%}h1.svelte-1dimnlq span{display:block}h1.svelte-1dimnlq span.old{color:#c9a07b}h1.svelte-1dimnlq.svelte-1dimnlq,.frame-content.svelte-1dimnlq>div.svelte-1dimnlq{text-align:left;position:absolute}h1.svelte-1dimnlq.svelte-1dimnlq{bottom:73.5%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width))}.zh-CN h1.svelte-1dimnlq.svelte-1dimnlq,.ja-JP h1.svelte-1dimnlq.svelte-1dimnlq{font-size:calc(7 / 100 * var(--content-width))}.info.svelte-1dimnlq.svelte-1dimnlq{left:0;top:36%;width:40%;height:45%;display:block;padding-left:4%}.top.svelte-1dimnlq.svelte-1dimnlq{color:#fff;padding:0.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%, -15%)}.old.svelte-1dimnlq .top.svelte-1dimnlq{background-color:#c9a07b}.set.svelte-1dimnlq.svelte-1dimnlq{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-1dimnlq.svelte-1dimnlq{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(0.7 / 100 * var(--content-width)) 0;background-color:rgba(101, 107, 202, 0.9)}.old.svelte-1dimnlq .desc.svelte-1dimnlq{background-color:rgba(48, 143, 148, 0.9)}.desc.svelte-1dimnlq .text.svelte-1dimnlq{width:calc(32.5 / 100 * var(--content-width));padding:calc(0.3 / 100 * var(--content-width))}.icon.svelte-1dimnlq.svelte-1dimnlq{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.group-content.svelte-1dimnlq.svelte-1dimnlq{position:relative}.item-name.svelte-1dimnlq.svelte-1dimnlq{color:#fff;-webkit-text-stroke:0.05rem #565654;text-shadow:0 0 0.15rem #d2c69c;filter:drop-shadow(0 0.3rem 0.5rem #000)}.char-title.svelte-1dimnlq.svelte-1dimnlq{color:#cfbc99;background-color:#39425d;margin-top:calc(2.8 / 100 * var(--content-width));padding:1% 7%;white-space:nowrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.qiqi.svelte-1dimnlq.svelte-1dimnlq{left:36.5%;top:78%}.mona.svelte-1dimnlq.svelte-1dimnlq{left:46%;top:21%}.keqing.svelte-1dimnlq.svelte-1dimnlq{left:61%;top:55%}.jean.svelte-1dimnlq.svelte-1dimnlq{left:44%;top:72.5%}.diluc.svelte-1dimnlq.svelte-1dimnlq{left:78%;top:10%}.keqing.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(4.5 / 100 * var(--content-width));transform:translateY(-80%)}.qiqi.svelte-1dimnlq .item-name.svelte-1dimnlq,.mona.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(3.3 / 100 * var(--content-width))}.jean.svelte-1dimnlq .item-name.svelte-1dimnlq,.diluc.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(4 / 100 * var(--content-width));margin-bottom:calc(4 / 100 * var(--content-width))}.skyward.svelte-1dimnlq.svelte-1dimnlq{left:75.1%;bottom:4.5%;width:24%;line-height:170%}.skyward.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(3.5 / 100 * var(--content-width))}.vi-VN .skyward.svelte-1dimnlq .item-name.svelte-1dimnlq{font-size:calc(3 / 100 * var(--content-width))}.item-name.svelte-1dimnlq span.svelte-1dimnlq{font-size:calc(2 / 100 * var(--content-width));white-space:nowrap}.all.svelte-1dimnlq.svelte-1dimnlq{color:#fff;background-color:#f7ab48;display:inline-block;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;font-size:calc(1.3 / 100 * var(--content-width));line-height:130%;padding:calc(0.2 / 100 * var(--content-width)) calc(2 / 100 * var(--content-width));margin-top:calc(3.8 / 100 * var(--content-width));transform:translateX(-5%)}",
-  map: null
-};
-const Frame_standard = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { bannerName = "" } = $$props;
-  const oldStd = bannerName === "wanderlust-invocation-1";
-  const chars = oldStd ? ["jean", "diluc"] : ["qiqi", "mona", "keqing"];
-  const weap = oldStd ? "skyward-blade" : "skyward-spine";
-  const highlightBannerName2 = (bannerName2) => {
-    const oldClass = oldStd ? "old" : "wanderlust-flat";
-    const splited = bannerName2.split(" ");
-    return `${splited[0]} <span class="${oldClass}"> ${splited.slice(1).join(" ")}</span>`;
-  };
-  let bannerInfo;
-  if ($$props.bannerName === void 0 && $$bindings.bannerName && bannerName !== void 0)
-    $$bindings.bannerName(bannerName);
-  $$result.css.add(css$l);
-  $$unsubscribe_t();
-  return `<div class="${["frame-content svelte-1dimnlq", oldStd ? "old" : ""].join(" ").trim()}"><div class="${"top bg-wanderlust svelte-1dimnlq"}">${escape($t("wish.banner.standard"))}</div>
-	<h1 class="${"card-stroke svelte-1dimnlq"}"><!-- HTML_TAG_START -->${highlightBannerName2($t("banner.wanderlust"))}<!-- HTML_TAG_END --></h1>
-	<div class="${"info svelte-1dimnlq"}"${add_attribute("this", bannerInfo, 0)}><div class="${"content"}"><div class="${"set card-stroke svelte-1dimnlq"}">${escape($t("wish.banner.standard"))}</div>
-
-			<div class="${"desc svelte-1dimnlq"}"><div class="${"icon svelte-1dimnlq"}"><i class="${"gi-primo-star"}"></i></div>
-				<div class="${"text svelte-1dimnlq"}">${escape($t("wish.banner.wishDescription"))}</div></div>
-			<div class="${"note card-stroke"}">${escape($t("wish.banner.standardNote"))}
-				${escape($t("wish.banner.viewDetails"))}</div></div></div>
-
-	${each(chars, (char) => {
-    return `<div class="${"group " + escape(char, true) + " svelte-1dimnlq"}"><div class="${"group-content svelte-1dimnlq"}"><div class="${"item-name svelte-1dimnlq"}">${escape($t(`${char}.name`))}</div>
-				<div class="${"char-title svelte-1dimnlq"}">${escape($t(`${char}.title`))}
-				</div></div>
-		</div>`;
-  })}
-	<div class="${"group skyward svelte-1dimnlq"}"><div class="${"group-content svelte-1dimnlq"}"><div class="${"item-name svelte-1dimnlq"}">${escape($t(weap))}
-				<span class="${"svelte-1dimnlq"}">${escape($t("wish.banner.etc"))}</span></div>
-			<div class="${"all svelte-1dimnlq"}">${escape($t("wish.banner.allWeaponTypes"))}</div></div></div>
-</div>`;
-});
-const _frameCustom_svelte_svelte_type_style_lang = "";
-const css$k = {
-  code: ".frame-content.svelte-10wsjyw.svelte-10wsjyw{width:100%;aspect-ratio:1080/533;position:absolute;color:#565654;display:block;font-size:calc(1.8 / 100 * var(--content-width));line-height:130%;bottom:0;left:0;z-index:+10}.frame-content.onBannerEdit.svelte-10wsjyw.svelte-10wsjyw{pointer-events:none;opacity:0.5}h1.svelte-10wsjyw span{display:block}h1.svelte-10wsjyw.svelte-10wsjyw,.frame-content.svelte-10wsjyw>div.svelte-10wsjyw{text-align:left;position:absolute}h1.svelte-10wsjyw.svelte-10wsjyw{bottom:67%;left:0;margin:0 4%;line-height:125%;font-size:calc(4.5 / 100 * var(--content-width));height:calc(0.23 * var(--content-height));display:flex;align-items:center}.zh-CN h1.svelte-10wsjyw.svelte-10wsjyw{font-size:calc(7 / 100 * var(--content-width))}.ja-JP h1.svelte-10wsjyw.svelte-10wsjyw{max-width:45%;font-size:calc(6 / 100 * var(--content-width));line-height:100%}.editorMode.svelte-10wsjyw h1.svelte-10wsjyw{bottom:70%}.action.svelte-10wsjyw.svelte-10wsjyw{position:absolute;top:0;right:0;opacity:0;transition:all 0.25s;display:flex;flex-direction:column;align-items:flex-end}.action.svelte-10wsjyw button.svelte-10wsjyw{color:rgba(255, 255, 255, 0.8);padding:calc(1.7 / 100 * var(--content-width)) calc(2.5 / 100 * var(--content-width));display:flex;align-items:center;line-height:0;border-radius:2%;font-size:calc(1.7 / 100 * var(--content-width));transition:all 0.25s}button.edit.svelte-10wsjyw.svelte-10wsjyw{background-color:rgba(0, 0, 0, 0.5)}button.edit.svelte-10wsjyw.svelte-10wsjyw:hover{background-color:rgba(0, 0, 0, 0.8)}button.delete.svelte-10wsjyw.svelte-10wsjyw{background-color:rgba(234, 37, 37, 0.5)}button.delete.svelte-10wsjyw.svelte-10wsjyw:hover{background-color:rgba(234, 37, 37, 1)}.action.svelte-10wsjyw i.svelte-10wsjyw{transform:translateX(-50%)}.frame-content.svelte-10wsjyw:hover .action.svelte-10wsjyw{opacity:1}.action.svelte-10wsjyw button.svelte-10wsjyw:active{transform:scale(0.9)}.top.svelte-10wsjyw.svelte-10wsjyw{color:#fff;padding:0.3% 1.4%;border-bottom-left-radius:2rem;border-top-left-radius:2rem;border-bottom-right-radius:4rem;top:0;left:0;transform:translate(-3%, -15%)}.info.svelte-10wsjyw.svelte-10wsjyw{left:0;top:40%;width:40%;height:42%;display:block;padding-left:4%}.onBannerEdit.svelte-10wsjyw .info.svelte-10wsjyw{overflow:hidden}.editorMode.svelte-10wsjyw .info.svelte-10wsjyw{top:32.5%}.content.svelte-10wsjyw.svelte-10wsjyw{position:relative}.info.svelte-10wsjyw .content.svelte-10wsjyw::after{content:'';display:block;width:calc(0.55 / 100 * var(--content-width));height:100%;background-color:#565654;position:absolute;left:calc(-3.045 / 100 * var(--content-width));top:0}.set.svelte-10wsjyw.svelte-10wsjyw{font-size:calc(2.4 / 100 * var(--content-width))}.desc.svelte-10wsjyw.svelte-10wsjyw{color:#fff;min-height:calc(9 / 100 * var(--content-height));display:flex;align-items:center;margin:calc(0.7 / 100 * var(--content-width)) 0}.icon.svelte-10wsjyw.svelte-10wsjyw{display:flex;justify-content:center;align-items:center;padding:calc(1 / 100 * var(--content-width));font-size:calc(1.1 / 100 * var(--content-width))}.desc.svelte-10wsjyw .text.svelte-10wsjyw{width:calc(32.5 / 100 * var(--content-width));padding:calc(0.3 / 100 * var(--content-width))}.character.svelte-10wsjyw.svelte-10wsjyw{--text-width:calc(30 / 100 * var(--content-width));width:calc(30 / 100 * var(--content-width));left:50%;bottom:8%}.character.svelte-10wsjyw .char-name.svelte-10wsjyw{color:#fff;display:inline-block;-webkit-text-stroke:0.02rem #565654;text-shadow:0 0 0.15rem #d2c69c;line-height:100%;position:relative;font-size:calc(11 / 100 * var(--text-width));white-space:nowrap}.zh-CN .character.svelte-10wsjyw .char-name.svelte-10wsjyw{font-size:calc(17 / 100 * var(--text-width))}.ja-JP .character.svelte-10wsjyw .char-name.svelte-10wsjyw{font-size:calc(15 / 100 * var(--text-width))}.char-name.svelte-10wsjyw span.svelte-10wsjyw{filter:drop-shadow(0 0.3rem 0.5rem #000)}.char-name.svelte-10wsjyw .up.svelte-10wsjyw{color:#fff664;-webkit-text-stroke:0.05rem #e7a12e;font-size:calc(2 / 100 * var(--content-width));filter:drop-shadow(0 0.3rem 0.5rem #fff);position:absolute;top:0;right:0;transform:translateX(100%) translateY(-50%);text-transform:uppercase;text-shadow:0 0 0.4rem #f79c09}.character.svelte-10wsjyw .char-title.svelte-10wsjyw{color:#cfbc99;background-color:#39425d;padding:1% 2%;white-space:nowrap;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.textbg.svelte-10wsjyw.svelte-10wsjyw{background-color:rgba(0, 0, 0, 0.55);width:calc(100% + (0.15 * var(--content-height)));transform:translateX(calc(7.5 / 100 * var(--content-height) * -1));height:calc(9 / 100 * var(--content-height));margin-top:calc(-3 / 100 * var(--content-height));filter:drop-shadow(0 0 calc(0.02 * var(--content-height)) #000);position:relative;z-index:-2}.stars.svelte-10wsjyw.svelte-10wsjyw{position:absolute;left:calc(7.5 / 100 * var(--content-height));bottom:-10%}.gi-star.svelte-10wsjyw.svelte-10wsjyw{color:#f7cf33;display:inline-block;font-size:calc(3.5 / 100 * var(--content-height))}.icon-vision.svelte-10wsjyw.svelte-10wsjyw{width:calc(9 / 100 * var(--content-height));transform:translate(-45%, -40%);position:absolute;left:0;top:0}.icon-vision.svelte-10wsjyw svg{width:100%;height:100%}.watermark.svelte-10wsjyw.svelte-10wsjyw{right:2%;bottom:2%;font-style:italic;color:#fff;font-size:calc(3 / 100 * var(--content-height));font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}",
-  map: null
-};
-const Frame_custom = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let disableEdit;
-  let $proUser, $$unsubscribe_proUser;
-  let $customData, $$unsubscribe_customData;
-  let $t, $$unsubscribe_t;
-  let $isCustomBanner, $$unsubscribe_isCustomBanner;
-  $$unsubscribe_proUser = subscribe(proUser, (value) => $proUser = value);
-  $$unsubscribe_customData = subscribe(customData, (value) => $customData = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_isCustomBanner = subscribe(isCustomBanner, (value) => $isCustomBanner = value);
-  let { bannerName = "" } = $$props;
-  let { character = "" } = $$props;
-  let { charTitle = "" } = $$props;
-  let { vision = "" } = $$props;
-  let { editorMode: editorMode$1 = false } = $$props;
-  let { onBannerEdit = false } = $$props;
-  let { watermark = "" } = $$props;
-  getContext("deleteBanner");
-  let infoContainer;
-  let myBannerCount = 0;
-  if ($$props.bannerName === void 0 && $$bindings.bannerName && bannerName !== void 0)
-    $$bindings.bannerName(bannerName);
-  if ($$props.character === void 0 && $$bindings.character && character !== void 0)
-    $$bindings.character(character);
-  if ($$props.charTitle === void 0 && $$bindings.charTitle && charTitle !== void 0)
-    $$bindings.charTitle(charTitle);
-  if ($$props.vision === void 0 && $$bindings.vision && vision !== void 0)
-    $$bindings.vision(vision);
-  if ($$props.editorMode === void 0 && $$bindings.editorMode && editorMode$1 !== void 0)
-    $$bindings.editorMode(editorMode$1);
-  if ($$props.onBannerEdit === void 0 && $$bindings.onBannerEdit && onBannerEdit !== void 0)
-    $$bindings.onBannerEdit(onBannerEdit);
-  if ($$props.watermark === void 0 && $$bindings.watermark && watermark !== void 0)
-    $$bindings.watermark(watermark);
-  $$result.css.add(css$k);
-  disableEdit = !$proUser && myBannerCount > 3;
-  $$unsubscribe_proUser();
-  $$unsubscribe_customData();
-  $$unsubscribe_t();
-  $$unsubscribe_isCustomBanner();
-  return `<div class="${[
-    "frame-content svelte-10wsjyw",
-    (editorMode$1 ? "editorMode" : "") + " " + (onBannerEdit ? "onBannerEdit" : "")
-  ].join(" ").trim()}"><div class="${"top bg-" + escape(vision, true) + " svelte-10wsjyw"}">${escape($t("wish.banner.character-event"))}</div>
-	<h1 class="${"card-stroke svelte-10wsjyw"}"><div class="${"wrap"}"><!-- HTML_TAG_START -->${highlightBannerName(bannerName || $t("customBanner.bannerName"), vision)}<!-- HTML_TAG_END --></div></h1>
-
-	${$isCustomBanner ? `<div class="${"action svelte-10wsjyw"}">${$customData.status === "owned" && !editorMode$1 && !disableEdit ? `<button class="${"edit svelte-10wsjyw"}"><i class="${"gi-pen svelte-10wsjyw"}"></i> <span>${escape($t("customBanner.edit"))}</span></button>` : ``}
-
-			<button class="${"delete svelte-10wsjyw"}"><i class="${"gi-delete svelte-10wsjyw"}"></i>
-				${escape($t("customBanner.delete"))}</button></div>` : ``}
-
-	<div class="${"info svelte-10wsjyw"}"${add_attribute("this", infoContainer, 0)}><div class="${"content svelte-10wsjyw"}"><div class="${"set card-stroke svelte-10wsjyw"}">${escape($t("wish.banner.probIncreased"))}</div>
-			<div class="${"desc bg-" + escape(vision, true) + " svelte-10wsjyw"}" style="${"opacity: 90%;"}"><div class="${"icon svelte-10wsjyw"}"><i class="${"gi-primo-star svelte-10wsjyw"}"></i></div>
-				<div class="${"text svelte-10wsjyw"}">${escape($t("wish.banner.wishDescription"))}</div></div>
-			<div class="${"note card-stroke"}">${escape($t("wish.banner.eventNote"))}
-				${escape($t("wish.banner.viewDetails"))}</div></div></div>
-
-	<div class="${"character svelte-10wsjyw"}"><div class="${"char-name svelte-10wsjyw"}"><span class="${"svelte-10wsjyw"}">${escape(character || $t("customBanner.charName"))}</span>
-			<span class="${"up svelte-10wsjyw"}">${escape($t("wish.banner.up"))}</span>
-
-			<div class="${"textbg svelte-10wsjyw"}"><div class="${"icon-vision " + escape(vision, true) + " filter-drop svelte-10wsjyw"}">${validate_component(SVGIcon, "SvgIcon").$$render($$result, { name: vision }, {}, {})}</div>
-				<div class="${"stars svelte-10wsjyw"}">${each(Array(5), (_) => {
-    return `<i class="${"gi-star svelte-10wsjyw"}"></i>`;
-  })}</div></div></div>
-
-		<div class="${"char-title svelte-10wsjyw"}">${escape(charTitle || $t("customBanner.charTitle"))}</div></div>
-
-	<div class="${"watermark svelte-10wsjyw"}">${escape(watermark || "")}</div>
-</div>`;
-});
-const BannerArt_svelte_svelte_type_style_lang = "";
-const css$j = {
-  code: ".main-art.svelte-1oo1z35.svelte-1oo1z35{--zoomist-slider-bar-side:calc(0.003 * var(--content-width));--zoomist-slider-bar-size:calc(0.4 * var(--content-height));--zoomist-slider-button-size:calc(0.015 * var(--content-width));--zoomist-slider-bar-color:#e9a540}img.svelte-1oo1z35.svelte-1oo1z35{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.main-art.svelte-1oo1z35.svelte-1oo1z35,.zoomist-wrapper.svelte-1oo1z35.svelte-1oo1z35,.zoomist-image.svelte-1oo1z35.svelte-1oo1z35{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;aspect-ratio:1080/533}.main-art.svelte-1oo1z35.svelte-1oo1z35{position:absolute;bottom:0;left:0}.zoomist-wrapper.svelte-1oo1z35.svelte-1oo1z35{cursor:move;background-color:unset;-webkit-mask-image:linear-gradient(to right, transparent 15%, black 40%, black 75%, transparent 85%);mask-image:linear-gradient(to right, transparent 15%, black 40%, black 75%, transparent 85%)}.zoom-slider.svelte-1oo1z35.svelte-1oo1z35{position:absolute;bottom:0;left:0;background-color:rgba(0, 0, 0, 0.75);padding:2.5%;z-index:+20;display:none}.zoomer.svelte-1oo1z35.svelte-1oo1z35{position:absolute;z-index:+20;top:0;right:0;display:flex;flex-direction:column;display:none}.zoomer.svelte-1oo1z35 button.svelte-1oo1z35,.setpos.svelte-1oo1z35.svelte-1oo1z35{font-size:calc(0.02 * var(--content-width));width:calc(0.06 * var(--content-width));display:inline-flex;justify-content:center;align-items:center;aspect-ratio:1/1;background-color:rgba(0, 0, 0, 0.75);color:#fff;opacity:0.75;transition:all 0.25s}.setpos.svelte-1oo1z35.svelte-1oo1z35:hover,.zoomer.svelte-1oo1z35 button.svelte-1oo1z35:hover:not(.zoomer-disabled){opacity:1}.setpos.svelte-1oo1z35.svelte-1oo1z35:active,.zoomer.svelte-1oo1z35 button.svelte-1oo1z35:active:not(.zoomer-disabled){opacity:1;transform:scale(0.9)}.zoomer.svelte-1oo1z35 button.zoomer-disabled{opacity:0.6;color:rgba(255, 255, 255, 0.5)}.setpos.svelte-1oo1z35.svelte-1oo1z35{position:absolute;right:0;bottom:0;z-index:+20;display:none}.onBannerEdit.svelte-1oo1z35 .zoomer.svelte-1oo1z35{display:flex}.onBannerEdit.svelte-1oo1z35 .zoom-slider.svelte-1oo1z35,.onBannerEdit.svelte-1oo1z35 .setpos.svelte-1oo1z35{display:unset}",
-  map: null
-};
-const BannerArt = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { onBannerEdit = false } = $$props;
-  let { artURL = "" } = $$props;
-  let { bannerPosition = { scale: 2, x: 0, y: 0 } } = $$props;
-  let mainArt;
-  ({
-    initScale: bannerPosition.scale || 2,
-    maxScale: 5,
-    slider: {
-      el: ".zoom-slider",
-      direction: "vertical"
-    },
-    zoomer: {
-      inEl: ".zoomin",
-      outEl: ".zoomout",
-      resetEl: null,
-      disabledClass: "zoomer-disabled"
-    }
-  });
-  getContext("editBanner");
-  getContext("setPosition");
-  if ($$props.onBannerEdit === void 0 && $$bindings.onBannerEdit && onBannerEdit !== void 0)
-    $$bindings.onBannerEdit(onBannerEdit);
-  if ($$props.artURL === void 0 && $$bindings.artURL && artURL !== void 0)
-    $$bindings.artURL(artURL);
-  if ($$props.bannerPosition === void 0 && $$bindings.bannerPosition && bannerPosition !== void 0)
-    $$bindings.bannerPosition(bannerPosition);
-  $$result.css.add(css$j);
-  return `<div class="${["main-art svelte-1oo1z35", onBannerEdit ? "onBannerEdit" : ""].join(" ").trim()}"><div class="${"zoom-slider svelte-1oo1z35"}"></div>
-	<div class="${"zoomer svelte-1oo1z35"}"><button class="${"zoomin svelte-1oo1z35"}"><i class="${"gi-zoom-in"}"></i></button>
-		<button class="${"zoomout svelte-1oo1z35"}"><i class="${"gi-zoom-out"}"></i></button></div>
-	<button class="${"setpos svelte-1oo1z35"}"><i class="${"gi-check"}"></i></button>
-
-	<div class="${"zoomist-container"}"${add_attribute("this", mainArt, 0)}><div class="${"zoomist-wrapper svelte-1oo1z35"}"><div class="${"zoomist-image svelte-1oo1z35"}"><img${add_attribute("src", artURL, 0)} alt="${"Uploaded Splash Art"}" crossorigin="${"anonymous"}" class="${"svelte-1oo1z35"}"></div></div></div>
-</div>`;
-});
-const _bannerImage_svelte_svelte_type_style_lang = "";
-const css$i = {
-  code: "picture.svelte-1f4lu7l,img.svelte-1f4lu7l{width:100%;display:block}.art-bg.svelte-1f4lu7l{position:absolute;bottom:0;left:0}.image-error.svelte-1f4lu7l{background-image:linear-gradient(to top, #eee8e3 50%, #f7f5f4)}",
-  map: null
-};
-const Banner_image = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { src = "" } = $$props;
-  let { alt = "" } = $$props;
-  let { wrapperClass = "" } = $$props;
-  let { isError = false } = $$props;
-  let { custom = false } = $$props;
-  let { vision = "" } = $$props;
-  let { artPosition = {} } = $$props;
-  getContext("imageError");
-  if ($$props.src === void 0 && $$bindings.src && src !== void 0)
-    $$bindings.src(src);
-  if ($$props.alt === void 0 && $$bindings.alt && alt !== void 0)
-    $$bindings.alt(alt);
-  if ($$props.wrapperClass === void 0 && $$bindings.wrapperClass && wrapperClass !== void 0)
-    $$bindings.wrapperClass(wrapperClass);
-  if ($$props.isError === void 0 && $$bindings.isError && isError !== void 0)
-    $$bindings.isError(isError);
-  if ($$props.custom === void 0 && $$bindings.custom && custom !== void 0)
-    $$bindings.custom(custom);
-  if ($$props.vision === void 0 && $$bindings.vision && vision !== void 0)
-    $$bindings.vision(vision);
-  if ($$props.artPosition === void 0 && $$bindings.artPosition && artPosition !== void 0)
-    $$bindings.artPosition(artPosition);
-  $$result.css.add(css$i);
-  $$unsubscribe_assets();
-  return `<div class="${[
-    "wrapper " + escape(wrapperClass, true) + " svelte-1f4lu7l",
-    isError ? "image-error" : ""
-  ].join(" ").trim()}" style="${"min-height: 100px; width: 100%;"}">${!isError ? `${custom ? `<img${add_attribute("src", $assets[`blank/${vision}`], 0)} alt="${"background banner"}" crossorigin="${"anonymous"}" class="${"art-bg svelte-1f4lu7l"}">
-			${validate_component(BannerArt, "BannerArt").$$render(
-    $$result,
-    {
-      artURL: src,
-      bannerPosition: artPosition?.banner
-    },
-    {},
-    {}
-  )}` : `<div style="${"position: relative; width: 100%;"}"><div style="${"position: relative; overflow: hidden;"}"><picture class="${"svelte-1f4lu7l"}"><img${add_attribute("src", src, 0)}${add_attribute("alt", alt, 0)} crossorigin="${"anonymous"}" class="${"svelte-1f4lu7l"}"></picture></div></div>`}` : ``}
-</div>`;
-});
-const _probabilityEditor_svelte_svelte_type_style_lang = "";
-const css$h = {
-  code: ".editor.svelte-cbzzf0.svelte-cbzzf0{background-image:linear-gradient(to top, #eee8e3 50%, #f7f5f4);display:flex;flex-direction:column;min-height:100%;width:100%;font-size:80%;position:relative}.editor.fullscreenEditor.svelte-cbzzf0.svelte-cbzzf0{width:75%;height:85%;min-height:unset}.header.svelte-cbzzf0.svelte-cbzzf0{background-color:rgba(20, 18, 15, 0.85);color:#fff;padding:1rem}.fullscreenEditor.svelte-cbzzf0 .header.svelte-cbzzf0{padding:0.75rem 1rem}.standard.svelte-cbzzf0 .header.svelte-cbzzf0{background-color:#5b61c4}.weapon-event.svelte-cbzzf0 .header.svelte-cbzzf0{background-color:#c86612}.body.svelte-cbzzf0.svelte-cbzzf0{padding:0 1% 1%;width:100%}.fullscreenEditor.svelte-cbzzf0 .body.svelte-cbzzf0{height:100%;overflow-y:auto}.footer.svelte-cbzzf0.svelte-cbzzf0{margin-top:auto;padding:0 1% 1%;text-align:right}.item.svelte-cbzzf0.svelte-cbzzf0{display:flex;align-items:center;width:100%;padding:0.2% 0 0.2% 1%;border-bottom:rgba(20, 18, 15, 0.5) 1px solid;transition:background 0.25s}.fullscreenEditor.svelte-cbzzf0 .item.svelte-cbzzf0{font-size:100%}.item.svelte-cbzzf0.svelte-cbzzf0:hover,.item.disabled.svelte-cbzzf0.svelte-cbzzf0{background-color:rgba(20, 18, 15, 0.075)}.item.disabled.svelte-cbzzf0.svelte-cbzzf0{opacity:0.3;cursor:not-allowed}input.svelte-cbzzf0.svelte-cbzzf0:disabled{cursor:not-allowed}.col.svelte-cbzzf0.svelte-cbzzf0{position:relative;display:block}.col.svelte-cbzzf0.svelte-cbzzf0:nth-child(1){flex-basis:90%;width:90%}.col.svelte-cbzzf0.svelte-cbzzf0:nth-child(2){height:1.8rem;flex-basis:10%;min-width:5rem}.fullscreenEditor.svelte-cbzzf0 .col.svelte-cbzzf0:nth-child(2){height:1.5rem}.col.percent.svelte-cbzzf0.svelte-cbzzf0:nth-child(2)::after{content:'%';background-color:#dbd7d0;height:100%;aspect-ratio:1/1;display:flex;justify-content:center;align-items:center;aspect-ratio:1/1;color:#787269;position:absolute;top:0;right:0;border-top-right-radius:3rem;border-bottom-right-radius:3rem}.select.svelte-cbzzf0 button.selected.svelte-cbzzf0,input.svelte-cbzzf0.svelte-cbzzf0{background-color:#fff;width:100%;padding:0 15%;margin-bottom:2%;font-size:80%;height:100%;display:block;border-radius:3rem;border:#c3b8a5 1px solid;outline:none;transition:all 0.2s}.percent.svelte-cbzzf0 input.svelte-cbzzf0{padding-right:35%}input.svelte-cbzzf0.svelte-cbzzf0:focus,.selection.svelte-cbzzf0.svelte-cbzzf0{box-shadow:0 0 0.4rem rgba(227, 149, 48, 0.7)}.selection.svelte-cbzzf0.svelte-cbzzf0{position:absolute;bottom:100%;left:0;width:100%;z-index:+10;background-color:#fff;border-radius:0.25rem;border:#c3b8a5 1px solid}.select.svelte-cbzzf0 button.selected.svelte-cbzzf0{font-size:90%}.selection.svelte-cbzzf0 button.svelte-cbzzf0{font-size:100%;display:block;padding:10% 15%;width:100%;text-align:left;border-bottom:#c5bcac 1px solid}button.selected.svelte-cbzzf0.svelte-cbzzf0,.selection.svelte-cbzzf0 button.svelte-cbzzf0{transition:background 0.25s}button.selected.svelte-cbzzf0.svelte-cbzzf0:hover,.selection.svelte-cbzzf0 button.svelte-cbzzf0:hover{background-color:#e8e5e0}",
-  map: null
-};
-const Probability_editor = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let baseRate4;
-  let baseRate5;
-  let charRate;
-  let winRate;
-  let selectedRate;
-  let hard4;
-  let hard5;
-  let max4;
-  let max5;
-  let guaranteed;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { type = "character-event" } = $$props;
-  let { fullscreenEditor = false } = $$props;
-  getContext("editprob");
-  getContext("showModalReset");
-  if ($$props.type === void 0 && $$bindings.type && type !== void 0)
-    $$bindings.type(type);
-  if ($$props.fullscreenEditor === void 0 && $$bindings.fullscreenEditor && fullscreenEditor !== void 0)
-    $$bindings.fullscreenEditor(fullscreenEditor);
-  $$result.css.add(css$h);
-  baseRate4 = getRate(type, "baseRate4");
-  baseRate5 = getRate(type, "baseRate5");
-  charRate = getRate(type, "charRate");
-  winRate = getRate(type, "winRate");
-  selectedRate = getRate(type, "selectedRate");
-  hard4 = getRate(type, "hard4");
-  hard5 = getRate(type, "hard5");
-  max4 = getRate(type, "max4");
-  max5 = getRate(type, "max5");
-  guaranteed = getRate(type, "guaranteed") || "default";
-  $$unsubscribe_t();
-  return `<div class="${[
-    "editor " + escape(type, true) + " svelte-cbzzf0",
-    fullscreenEditor ? "fullscreenEditor" : ""
-  ].join(" ").trim()}"><div class="${"header svelte-cbzzf0"}">${escape($t("editor.bannerConfig", {
-    values: { banner: $t(`wish.banner.${type}`) }
-  }))}</div>
-	<div class="${"body svelte-cbzzf0"}"><div class="${"item svelte-cbzzf0"}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.baseRate", { values: { rarity: 5 } }))}</div>
-			<div class="${"col percent svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", baseRate5, 0)} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${["item svelte-cbzzf0", baseRate5 >= 100 ? "disabled" : ""].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.maxPity", { values: { rarity: 5 } }))}</div>
-			<div class="${"col svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", max5, 0)} ${baseRate5 >= 100 ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${["item svelte-cbzzf0", baseRate5 >= 100 || !max5 || max5 <= 1 ? "disabled" : ""].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.hardPity", { values: { rarity: 5 } }))}</div>
-			<div class="${"col svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", hard5, 0)} ${baseRate5 >= 100 || !max5 || max5 <= 1 ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${"item svelte-cbzzf0"}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.currentPity", { values: { rarity: 5 } }))}</div>
-			<div class="${"col svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", localPity.get(`pity5-${type}`), 0)} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${["item svelte-cbzzf0", baseRate5 >= 100 || max5 <= 1 ? "disabled" : ""].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.baseRate", { values: { rarity: 4 } }))}</div>
-			<div class="${"col percent svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", baseRate4, 0)} ${baseRate5 >= 100 || max5 <= 1 ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${[
-    "item svelte-cbzzf0",
-    baseRate5 >= 100 || baseRate4 >= 100 || max5 <= 1 ? "disabled" : ""
-  ].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.maxPity", { values: { rarity: 4 } }))}</div>
-			<div class="${"col svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", max4, 0)} ${baseRate5 >= 100 || baseRate4 >= 100 || max5 <= 1 ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${[
-    "item svelte-cbzzf0",
-    baseRate5 >= 100 || baseRate4 >= 100 || !max4 || max4 <= 1 || max5 <= 1 ? "disabled" : ""
-  ].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.hardPity", { values: { rarity: 4 } }))}</div>
-			<div class="${"col svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", hard4, 0)} ${baseRate5 >= 100 || baseRate4 >= 100 || !max4 || max4 <= 1 || max5 <= 1 ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>
-
-		<div class="${"item svelte-cbzzf0"}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.currentPity", { values: { rarity: 4 } }))}</div>
-			<div class="${"col svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", localPity.get(`pity4-${type}`), 0)} class="${"svelte-cbzzf0"}"></div></div>
-
-		${type !== "standard" ? `<div class="${["item svelte-cbzzf0", guaranteed === "always" ? "disabled" : ""].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.winRate"))}</div>
-				<div class="${"col percent svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", winRate, 0)} ${guaranteed === "always" ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>` : ``}
-
-		
-		<div class="${[
-    "item svelte-cbzzf0",
-    baseRate5 >= 100 && type !== "standard" || guaranteed === "always" || winRate >= 100 ? "disabled" : ""
-  ].join(" ").trim()}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.charRate"))}
-				${type !== "standard" ? `<small>${escape($t("editor.nonRateup"))}</small>` : ``}
-				:
-			</div>
-			<div class="${"col percent svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", charRate, 0)} ${baseRate5 >= 100 && type !== "standard" || guaranteed === "always" || winRate >= 100 ? "disabled" : ""} class="${"svelte-cbzzf0"}"></div></div>
-
-		${type.match("weapon") ? `<div class="${"item svelte-cbzzf0"}"><div class="${"col svelte-cbzzf0"}">${escape($t("editor.selectedRate"))}</div>
-				<div class="${"col percent svelte-cbzzf0"}"><input type="${"number"}"${add_attribute("value", selectedRate, 0)} class="${"svelte-cbzzf0"}"></div></div>` : ``}
-
-		${type !== "standard" ? `<div class="${"item svelte-cbzzf0"}"><div class="${"col svelte-cbzzf0"}"><!-- HTML_TAG_START -->${$t("editor.guaranteedSystem")}<!-- HTML_TAG_END --></div>
-				<div class="${"col select svelte-cbzzf0"}"><button class="${"selected svelte-cbzzf0"}">${escape($t(`editor.${guaranteed}`))}</button>
-					${``}</div></div>` : ``}</div>
-	<div class="${"footer svelte-cbzzf0"}">${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, {}, {}, {
-    default: () => {
-      return `${escape($t("editor.backToDefault"))}`;
-    }
-  })}
-		${validate_component(ButtonModal, "ButtonModal").$$render($$result, {}, {}, {})}</div>
-</div>`;
-});
-const BannerCard_svelte_svelte_type_style_lang = "";
-const css$g = {
-  code: ".card.svelte-xg8c82.svelte-xg8c82,.front.svelte-xg8c82.svelte-xg8c82,.back.svelte-xg8c82.svelte-xg8c82,.frame.svelte-xg8c82.svelte-xg8c82{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;aspect-ratio:27/14}.back.svelte-xg8c82.svelte-xg8c82{position:absolute;transform:rotateX(180deg);z-index:+999;transition:all 0.5s}.editor.fullscreenEditor.svelte-xg8c82 .back.svelte-xg8c82{position:fixed;transform:unset;aspect-ratio:unset;left:0;top:0;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.25);display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.front.svelte-xg8c82.svelte-xg8c82,.back.svelte-xg8c82.svelte-xg8c82{-webkit-backface-visibility:hidden;backface-visibility:hidden}.frame.skeleton-event.svelte-xg8c82.svelte-xg8c82,.card.svelte-xg8c82 .card-image.skeleton-event{aspect-ratio:1080/533}.frame.skeleton.svelte-xg8c82.svelte-xg8c82,.card.svelte-xg8c82 .card-image.skeleton{aspect-ratio:738.55/382.95}.card.svelte-xg8c82.svelte-xg8c82{position:relative}.card.svelte-xg8c82.svelte-xg8c82:not(.fullscreenEditor){transition:transform 0.5s;transform-style:preserve-3d}.card.editor.svelte-xg8c82.svelte-xg8c82:not(.fullscreenEditor){transform:rotateX(180deg)}.editor.svelte-xg8c82 .front.svelte-xg8c82{pointer-events:none}.frame.svelte-xg8c82.svelte-xg8c82,.card.svelte-xg8c82 .card-image{position:absolute;bottom:0;left:0}.character.svelte-xg8c82.svelte-xg8c82{position:absolute;height:100%;right:0;top:0;overflow:hidden}img.splash-art.svelte-xg8c82.svelte-xg8c82{height:150%}.info.svelte-xg8c82.svelte-xg8c82{position:absolute;left:5%;bottom:8%;display:flex;align-items:center;z-index:+10}.info.svelte-xg8c82 button.svelte-xg8c82{background-color:#eee8e3;color:rgba(0, 0, 0, 0.5);border-radius:20px;border:#e2d7b6 0.1rem solid;font-size:calc(1.5 / 100 * var(--content-width));transition:background 0.25s, color 0.25s}.info.svelte-xg8c82 button.svelte-xg8c82:hover{background-color:#e0ddd4;color:rgba(0, 0, 0, 1)}.info.svelte-xg8c82 button.gear.svelte-xg8c82{width:calc(3 / 100 * var(--content-width));font-size:calc(2 / 100 * var(--content-width));aspect-ratio:1/1;display:inline-flex;justify-content:center;align-items:center;line-height:0;margin-left:calc(1 / 100 * var(--content-width))}.info.svelte-xg8c82 button.detail.svelte-xg8c82{padding:calc(0.5 / 100 * var(--content-width)) calc(2.5 / 100 * var(--content-width))}",
-  map: null
-};
-const BannerCard = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let watermark;
-  let $isCustomBanner, $$unsubscribe_isCustomBanner;
-  let $assets, $$unsubscribe_assets;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_isCustomBanner = subscribe(isCustomBanner, (value) => $isCustomBanner = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { data: data2 = {} } = $$props;
-  let { index = -1 } = $$props;
-  let { fullscreenEditor = false } = $$props;
-  let { editor = false } = $$props;
-  let type, featured, character, bannerName, rateup, textOffset, charTitle, vision, images, artPosition;
-  let clientWidth;
-  let clientHeight;
-  let imageError = false;
-  setContext("imageError", () => imageError = true);
-  getContext("editprob");
-  getContext("navigate");
-  if ($$props.data === void 0 && $$bindings.data && data2 !== void 0)
-    $$bindings.data(data2);
-  if ($$props.index === void 0 && $$bindings.index && index !== void 0)
-    $$bindings.index(index);
-  if ($$props.fullscreenEditor === void 0 && $$bindings.fullscreenEditor && fullscreenEditor !== void 0)
-    $$bindings.fullscreenEditor(fullscreenEditor);
-  if ($$props.editor === void 0 && $$bindings.editor && editor !== void 0)
-    $$bindings.editor(editor);
-  $$result.css.add(css$g);
-  ({ type, featured, character, bannerName, rateup, textOffset, charTitle, vision, images, artPosition, watermark } = data2);
-  $$unsubscribe_isCustomBanner();
-  $$unsubscribe_assets();
-  $$unsubscribe_t();
-  return `<div class="${[
-    "card svelte-xg8c82",
-    (editor ? "editor" : "") + " " + (fullscreenEditor ? "fullscreenEditor" : "")
-  ].join(" ").trim()}" style="${"--content-width:" + escape(clientWidth, true) + "px; --content-height:" + escape(clientHeight, true) + "px"}"><div class="${"back svelte-xg8c82"}">${editor ? `${validate_component(Probability_editor, "ProbEditor").$$render($$result, { type, fullscreenEditor }, {}, {})}` : ``}</div>
-	<div class="${"front svelte-xg8c82"}">${$isCustomBanner ? `${validate_component(Banner_image, "BannerImage").$$render(
-    $$result,
-    {
-      custom: true,
-      src: images?.artURL,
-      alt: bannerName,
-      wrapperClass: "card-image skeleton",
-      artPosition,
-      vision
-    },
-    {},
-    {}
-  )}
-			<div class="${"frame skeleton svelte-xg8c82"}">${validate_component(Frame_custom, "FrameCustom").$$render(
-    $$result,
-    {
-      bannerName,
-      character,
-      charTitle,
-      vision,
-      watermark
-    },
-    {},
-    {}
-  )}</div>` : `${type === "beginner" ? `${validate_component(Banner_image, "BannerImage").$$render(
-    $$result,
-    {
-      src: $assets["beginner"],
-      isError: imageError,
-      alt: "Weapon Banner",
-      wrapperClass: "card-image skeleton"
-    },
-    {},
-    {}
-  )}
-			<div class="${"frame skeleton svelte-xg8c82"}">${validate_component(Frame_beginner, "FrameBeginner").$$render($$result, { character }, {}, {})}</div>` : `${type === "weapon-event" ? `${validate_component(Banner_image, "BannerImage").$$render(
-    $$result,
-    {
-      isError: imageError,
-      src: $assets[bannerName],
-      alt: "Weapon Banner",
-      wrapperClass: "card-image skeleton-event"
-    },
-    {},
-    {}
-  )}
-			<div class="${"frame skeleton-event svelte-xg8c82"}">${validate_component(Frame_weapon, "FrameWeapon").$$render($$result, { featured, rateup, textOffset }, {}, {})}</div>` : `${type === "character-event" ? `${validate_component(Banner_image, "BannerImage").$$render(
-    $$result,
-    {
-      isError: imageError,
-      src: $assets[bannerName],
-      alt: "Character Event Banner",
-      wrapperClass: "card-image skeleton-event"
-    },
-    {},
-    {}
-  )}
-			${!bannerName || imageError ? `<div class="${"character svelte-xg8c82"}"><img class="${"splash-art svelte-xg8c82"}"${add_attribute("src", $assets[`splash-art/${character}`], 0)} alt="${"character"}" crossorigin="${"anonymous"}"></div>` : ``}
-			<div class="${"frame skeleton-event svelte-xg8c82"}">${validate_component(Frame_character, "FrameCharacter").$$render(
-    $$result,
-    {
-      character,
-      textOffset,
-      bannerName,
-      event2: index === 2
-    },
-    {},
-    {}
-  )}</div>` : `${type === "standard" ? `${validate_component(Banner_image, "BannerImage").$$render(
-    $$result,
-    {
-      isError: imageError,
-      src: $assets[bannerName],
-      alt: "Standard Banner",
-      wrapperClass: "card-image " + (imageError ? "skeleton" : "")
-    },
-    {},
-    {}
-  )}
-			<div class="${"frame svelte-xg8c82"}">${validate_component(Frame_standard, "FrameStandard").$$render($$result, { bannerName }, {}, {})}</div>` : `${type === "member" ? `${validate_component(Banner_image, "BannerImage").$$render(
-    $$result,
-    {
-      isError: imageError,
-      src: $assets[bannerName],
-      alt: "Member Banner",
-      wrapperClass: "card-image " + (imageError ? "skeleton" : "")
-    },
-    {},
-    {}
-  )}
-			<div class="${"frame svelte-xg8c82"}">${validate_component(Frame_character, "FrameCharacter").$$render($$result, { bannerName, character, textOffset }, {}, {})}</div>` : ``}`}`}`}`}`}
-
-		<div class="${"info svelte-xg8c82"}"><button class="${"detail svelte-xg8c82"}">${escape($t("details.text"))}</button>
-			${type !== "beginner" ? `<button class="${"gear svelte-xg8c82"}"><i class="${"gi-gear"}"></i></button>` : ``}</div></div>
-</div>`;
-});
-const _infoFaceButton_svelte_svelte_type_style_lang = "";
-const css$f = {
-  code: ".info.svelte-1q3ualb.svelte-1q3ualb{position:absolute;z-index:+11;left:5%;bottom:5%;display:flex;align-items:center}.info.onBannerEdit.svelte-1q3ualb.svelte-1q3ualb{pointer-events:none;opacity:0.5}.face.svelte-1q3ualb.svelte-1q3ualb{display:flex;aspect-ratio:1/1;background-color:#efeeee;border:#c5b894 calc(0.005 * var(--content-height)) solid;border-radius:5%;width:calc(0.18 * var(--content-height));position:relative}.inputFile.svelte-1q3ualb.svelte-1q3ualb{position:absolute;height:100%;width:100%;opacity:0;top:0;left:0;pointer-events:none}.overlay.svelte-1q3ualb.svelte-1q3ualb{width:100%;height:100%;background-color:rgba(0, 0, 0, 0.5);border:#e7e4de 0.1rem dashed;position:absolute;z-index:+2;top:0;left:0;display:flex;flex-direction:column;justify-content:center;text-align:center;align-items:center;opacity:0;transition:all 0.25s}.overlay.svelte-1q3ualb i.svelte-1q3ualb{color:rgba(255, 255, 255, 0.5);line-height:0;font-size:calc(2.5 / 100 * var(--content-width))}.overlay.svelte-1q3ualb span.svelte-1q3ualb{color:#fff;font-size:calc(1.3 / 100 * var(--content-width));margin-top:10%}.face.svelte-1q3ualb:hover .overlay.svelte-1q3ualb{opacity:1}.face.svelte-1q3ualb img.svelte-1q3ualb{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}img.placeholder.svelte-1q3ualb.svelte-1q3ualb{opacity:0.5}.customize.svelte-1q3ualb.svelte-1q3ualb{transform:translateX(calc(0.02 * var(--content-height)))}.customize.svelte-1q3ualb button.svelte-1q3ualb{background-color:#efeeee;color:rgba(0, 0, 0, 0.5);border-radius:20px;border:#e2d7b6 0.1rem solid;font-size:calc(1.5 / 100 * var(--content-width));transition:background 0.25s, color 0.25s;padding:calc(0.5 / 100 * var(--content-width)) calc(2.5 / 100 * var(--content-width));transition:all 0.25s}.customize.svelte-1q3ualb button.svelte-1q3ualb:hover{background-color:#e0ddd4;color:rgba(0, 0, 0, 1)}.customize.svelte-1q3ualb button.svelte-1q3ualb:active{transform:scale(0.95)}",
-  map: null
-};
-const allowedType$1 = "image/png, image/webp, image/jpeg";
-const Info_face_button = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { onBannerEdit = false } = $$props;
-  let { faceURL = "" } = $$props;
-  getContext("editInfo");
-  getContext("changeFace");
-  getContext("editSplashArt");
-  if ($$props.onBannerEdit === void 0 && $$bindings.onBannerEdit && onBannerEdit !== void 0)
-    $$bindings.onBannerEdit(onBannerEdit);
-  if ($$props.faceURL === void 0 && $$bindings.faceURL && faceURL !== void 0)
-    $$bindings.faceURL(faceURL);
-  $$result.css.add(css$f);
-  $$unsubscribe_t();
-  $$unsubscribe_assets();
-  return `<div class="${["info svelte-1q3ualb", onBannerEdit ? "onBannerEdit" : ""].join(" ").trim()}"><div class="${"pic"}"><label class="${"face svelte-1q3ualb"}" for="${"faceInput"}"><div class="${"overlay svelte-1q3ualb"}"><i class="${"gi-picture svelte-1q3ualb"}"></i>
-				<span class="${"svelte-1q3ualb"}">${escape($t("customBanner.faceIcon"))}</span></div>
-
-			${faceURL ? `<img${add_attribute("src", faceURL, 0)} alt="${"Face"}" crossorigin="${"anonymous"}" class="${"svelte-1q3ualb"}">` : `<img class="${"placeholder svelte-1q3ualb"}"${add_attribute("src", $assets["face-placeholder.webp"], 0)} alt="${"face placeholder"}" crossorigin="${"anonymous"}">`}</label>
-
-		<input class="${"inputFile svelte-1q3ualb"}" type="${"file"}" id="${"faceInput"}"${add_attribute("accept", allowedType$1, 0)}></div>
-
-	<div class="${"customize svelte-1q3ualb"}"><button class="${"detail svelte-1q3ualb"}"><i class="${"gi-pen"}"></i>
-			${escape($t("customBanner.editInfo"))}</button>
-		<br>
-		<button class="${"splashart svelte-1q3ualb"}"><i class="${"gi-pen"}"></i>
-			${escape($t("customBanner.adjustSplashArt"))}</button></div>
-</div>`;
-});
-const _splashartForm_svelte_svelte_type_style_lang = "";
-const css$e = {
-  code: ".hoverable.svelte-nxdi6f.svelte-nxdi6f{position:absolute;top:0;right:0;width:100%;height:100%;z-index:+11;transition:all 0.25s;opacity:0;display:flex;justify-content:flex-end}.hoverable.onBannerEdit.svelte-nxdi6f.svelte-nxdi6f{pointer-events:none;opacity:0}.hoverable.svelte-nxdi6f.svelte-nxdi6f:hover:not(.onBannerEdit),.hoverable.onDrag.svelte-nxdi6f.svelte-nxdi6f,.hoverable.isMobile.svelte-nxdi6f.svelte-nxdi6f:not(.onBannerEdit),.wrapper.svelte-nxdi6f.svelte-nxdi6f:hover,.isMobile.svelte-nxdi6f .wrapper.svelte-nxdi6f{opacity:1}.hoverable.onDrag.svelte-nxdi6f.svelte-nxdi6f{z-index:20}.wrapper.svelte-nxdi6f.svelte-nxdi6f{width:50%;height:100%;position:relative;display:flex;align-items:flex-end;flex-direction:column;background-image:linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.5));opacity:0;transition:all 0.25s}.button.svelte-nxdi6f.svelte-nxdi6f{color:rgba(255, 255, 255, 0.8);background-color:rgba(0, 0, 0, 0.5);border:#e7e4de 0.1rem dashed;padding:2% 3%;display:flex;align-items:center;line-height:0;border-radius:2%;margin:1%;font-size:calc(1.5 / 100 * var(--content-width));transition:all 0.25s}.button.move.svelte-nxdi6f.svelte-nxdi6f{border-style:solid;padding:1%}.button.svelte-nxdi6f i.svelte-nxdi6f{font-size:calc(2.5 / 100 * var(--content-width));margin-right:calc(1 / 100 * var(--content-width))}.button.svelte-nxdi6f.svelte-nxdi6f:active{transform:scale(0.95)}.inputFile.svelte-nxdi6f.svelte-nxdi6f{position:absolute;height:100%;width:100%;opacity:0;top:0;left:0;pointer-events:none}.onDrag.svelte-nxdi6f .inputFile.svelte-nxdi6f{pointer-events:unset}.drophere.svelte-nxdi6f.svelte-nxdi6f{pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(0, 0, 0, 0.5);display:flex;justify-content:center;align-items:center}",
-  map: null
-};
-const allowedType = "image/png, image/webp, image/jpeg";
-const Splashart_form = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  let $isMobile, $$unsubscribe_isMobile;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => $isMobile = value);
-  let { onBannerEdit = false } = $$props;
-  getContext("editBanner");
-  getContext("changeArt");
-  if ($$props.onBannerEdit === void 0 && $$bindings.onBannerEdit && onBannerEdit !== void 0)
-    $$bindings.onBannerEdit(onBannerEdit);
-  $$result.css.add(css$e);
-  $$unsubscribe_t();
-  $$unsubscribe_isMobile();
-  return `<div class="${[
-    "hoverable svelte-nxdi6f",
-    ($isMobile ? "isMobile" : "") + " " + (onBannerEdit ? "onBannerEdit" : "") + " "
-  ].join(" ").trim()}"><div class="${"wrapper svelte-nxdi6f"}">${`<label class="${"mainart button svelte-nxdi6f"}" for="${"uploadFile"}"><i class="${"gi-picture svelte-nxdi6f"}"></i>
-				<span>${escape($t("customBanner.changeSplashArt"))}</span></label>
-
-			<button class="${"button move svelte-nxdi6f"}"><i class="${"gi-move svelte-nxdi6f"}"></i> <span>${escape($t("customBanner.move"))}</span></button>`}</div>
-	${``}
-
-	<input class="${"inputFile svelte-nxdi6f"}" type="${"file"}" id="${"uploadFile"}"${add_attribute("accept", allowedType, 0)}>
-</div>`;
-});
-const _visionPicker_svelte_svelte_type_style_lang = "";
-const css$d = {
-  code: ".vision-picker.svelte-1dh2206{position:absolute;top:0;right:0;transform:translateY(-100%);display:flex;width:100%;justify-content:flex-end;z-index:+10}button.svelte-1dh2206{font-size:150%;display:inline-flex;justify-content:center;align-items:center;line-height:0;padding:1%;border:1px solid #ccc;transition:all 0.25s}button.active.svelte-1dh2206{color:#fff;border-color:transparent}button.svelte-1dh2206:not(.active){background-color:#fff}button.svelte-1dh2206:hover:not(.active){background-color:#ecedda}button.svelte-1dh2206:active:not(.active){transform:scale(0.9)}",
-  map: null
-};
-const Vision_picker = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { selected = "" } = $$props;
-  const visionList = ["pyro", "hydro", "anemo", "electro", "dendro", "cryo", "geo"];
-  getContext("setVision");
-  if ($$props.selected === void 0 && $$bindings.selected && selected !== void 0)
-    $$bindings.selected(selected);
-  $$result.css.add(css$d);
-  return `<div class="${"vision-picker svelte-1dh2206"}">${each(visionList, (vision) => {
-    let isActive = selected === vision;
-    return `
-		<button class="${[
-      escape(null_to_empty(isActive ? `bg-${vision}` : ""), true) + " svelte-1dh2206",
-      isActive ? "active" : ""
-    ].join(" ").trim()}"><i class="${"gi-" + escape(vision, true) + " " + escape(!isActive ? `${vision}-flat` : "", true) + " svelte-1dh2206"}"></i>
-		</button>`;
-  })}
-</div>`;
-});
-const _inventoryItem_svelte_svelte_type_style_lang = "";
-const css$c = {
-  code: ".content.svelte-brfwbj.svelte-brfwbj{border-radius:calc(3.5 / 100 * var(--item-width));width:100%;height:100%;display:flex;flex-direction:column;text-align:center;background-color:#fff;color:#3a4156;position:relative}.content.svelte-brfwbj.svelte-brfwbj::after{content:'';position:absolute;z-index:-1;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%;border-radius:calc(5 / 100 * var(--item-width));opacity:0;transition:opacity 0.15s}.content.svelte-brfwbj.svelte-brfwbj:hover::after{opacity:1;border:0.1rem solid #fff}.content.owned.svelte-brfwbj.svelte-brfwbj:hover::after{border:0.3rem solid #eac343}.overlay.svelte-brfwbj.svelte-brfwbj{top:0;left:0;position:absolute;z-index:+1;width:100%;height:100%;background-color:#000;opacity:0.5;border-radius:calc(3.5 / 100 * var(--item-width))}picture.svelte-brfwbj.svelte-brfwbj{width:100%;aspect-ratio:1/1;display:flex;justify-content:center;background-size:cover;position:relative;overflow:hidden;border-top-left-radius:calc(3.5 / 100 * var(--item-width));border-top-right-radius:calc(3.5 / 100 * var(--item-width));border-bottom-right-radius:calc(20 / 100 * var(--item-width))}picture.weapon.svelte-brfwbj.svelte-brfwbj{justify-content:flex-end;align-items:flex-start}picture.character.svelte-brfwbj img.svelte-brfwbj{height:100%;width:100%}picture.weapon.svelte-brfwbj img.svelte-brfwbj{width:100%}picture.svelte-brfwbj span.svelte-brfwbj{position:absolute;top:0}.element.svelte-brfwbj.svelte-brfwbj{left:0;font-size:2rem}.qty.svelte-brfwbj.svelte-brfwbj{right:0;background-color:#a36b5e;border-bottom-left-radius:0.5rem;font-size:0.9rem;padding:0.1rem 0.3rem;color:#f0c882}.star.svelte-brfwbj.svelte-brfwbj{position:absolute;left:50%;top:calc(-8 / 100 * var(--item-width));transform:translateX(-50%)}.gi-star.svelte-brfwbj.svelte-brfwbj{color:#eac343;font-size:calc(15 / 100 * var(--item-width))}.caption.svelte-brfwbj.svelte-brfwbj{display:flex;justify-content:center;align-items:center;width:100%;padding:calc(4 / 100 * var(--item-width));position:relative;font-size:calc(9 / 100 * var(--item-width))}.caption.svelte-brfwbj span.svelte-brfwbj{display:block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-transform:capitalize}img.claymore.svelte-brfwbj.svelte-brfwbj{transform:rotate(18deg) scale(1.15) translateX(-1.5em)}img.bow.svelte-brfwbj.svelte-brfwbj{transform:rotate(10deg) scale(1.25) translateX(-0.5em)}img.polearm.svelte-brfwbj.svelte-brfwbj{transform:rotate(10deg) scale(1.5) translate(-12%, 12%)}img.sword.svelte-brfwbj.svelte-brfwbj{transform:rotate(10deg) scale(1.2) translateY(-1em) translateX(-0.7em)}",
-  map: null
-};
-const Inventory_item = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { itemdata = {} } = $$props;
-  const { rarity = 3, type = "character", itemID = 0, name = "", localName = "", vision = "", weaponType = "", qty = 0, isOwned = true, custom = false } = itemdata;
-  const bg = custom ? $assets[`${rarity}star-special.webp`] : $assets[`${rarity}star-bg.webp`];
-  let countInfo = `R${qty > 5 ? `5 + ${qty - 5}` : qty}`;
-  if (type === "character") {
-    countInfo = `C${qty > 7 ? `6 + ${qty - 7}` : qty - 1}`;
-  }
-  getContext("showDetail");
-  if ($$props.itemdata === void 0 && $$bindings.itemdata && itemdata !== void 0)
-    $$bindings.itemdata(itemdata);
-  $$result.css.add(css$c);
-  $$unsubscribe_assets();
-  return `<div class="${["content svelte-brfwbj", isOwned ? "owned" : ""].join(" ").trim()}">${!isOwned ? `<div class="${"overlay svelte-brfwbj"}"></div>` : ``}
-	<picture class="${"star" + escape(rarity, true) + " " + escape(type, true) + " svelte-brfwbj"}" style="${"background-image:url('" + escape(bg, true) + "');"}">${custom ? `<img${add_attribute("data-placeholder", $assets["face-placeholder.webp"], 0)}${add_attribute("alt", localName, 0)} crossorigin="${"anonymous"}" class="${"svelte-brfwbj"}">
-			<span class="${"gi-" + escape(vision, true) + " " + escape(vision, true) + " icon-gradient element svelte-brfwbj"}"></span>` : `${type === "character" ? (() => {
-    return `
-			<img${add_attribute("data-placeholder", $assets["face-placeholder.webp"], 0)}${add_attribute("alt", localName, 0)} crossorigin="${"anonymous"}" class="${"svelte-brfwbj"}">
-			<span class="${"gi-" + escape(vision, true) + " " + escape(vision, true) + " icon-gradient element svelte-brfwbj"}"></span>`;
-  })() : `<img loading="${"lazy"}" crossorigin="${"anonymous"}"${add_attribute("src", $assets[name], 0)}${add_attribute("alt", localName, 0)} class="${escape(null_to_empty(weaponType), true) + " svelte-brfwbj"}">`}`}
-		${qty > 1 ? `<span class="${"qty svelte-brfwbj"}">${escape(countInfo)}</span>` : ``}</picture>
-	<div class="${"caption svelte-brfwbj"}"><div class="${"star svelte-brfwbj"}">${each(Array(rarity), (_) => {
-    return `<i class="${"gi-star svelte-brfwbj"}"></i>`;
-  })}</div>
-		<span class="${"svelte-brfwbj"}">${escape(localName)}</span></div>
-</div>`;
-});
-const getAllChars = (star) => charsDB.data.filter(({ rarity }) => rarity === star).map((arr) => {
-  arr.type = "character";
-  return arr;
-});
-getAllChars(4).filter(({ name }) => {
-  return !charsDB.onlyStandard.includes(name);
-});
-const _rateupPicker_svelte_svelte_type_style_lang = "";
-const css$b = {
-  code: ".picker.svelte-1eit2lp{width:100%;height:100%;position:absolute;top:0;left:0;background-color:#e2dbce;z-index:+1;overflow-y:auto;padding:1% 0 5%}.row.svelte-1eit2lp{display:flex;flex-wrap:wrap}.item.svelte-1eit2lp{margin:calc(0.025 * var(--item-width));aspect-ratio:8.75 / 10;width:23.5%}",
-  map: null
-};
-const Rateup_picker = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_viewportHeight;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { exclude = [] } = $$props;
-  const chars = getAllChars(4).filter(({ name }) => !exclude.includes(name));
-  getContext("selectChar");
-  if ($$props.exclude === void 0 && $$bindings.exclude && exclude !== void 0)
-    $$bindings.exclude(exclude);
-  $$result.css.add(css$b);
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_t();
-  return `<div class="${"picker svelte-1eit2lp"}"><div class="${"row svelte-1eit2lp"}">${each(chars, (char) => {
-    return `<button class="${"item svelte-1eit2lp"}">${validate_component(Inventory_item, "InventoryItem").$$render(
-      $$result,
-      {
-        itemdata: {
-          ...char,
-          localName: $t(`${char.name}.name`)
-        }
-      },
-      {},
-      {}
-    )}
-			</button>`;
-  })}</div>
-</div>`;
-});
-const _previewGenerator_svelte_svelte_type_style_lang = "";
-const css$a = {
-  code: ".row.svelte-17c1xc4{display:flex;width:100%;align-items:center;margin-bottom:2%}img.svelte-17c1xc4{max-width:100%;height:auto}",
-  map: null
-};
-const Preview_generator = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { preview = "" } = $$props;
-  getContext("changeThumbnail");
-  if ($$props.preview === void 0 && $$bindings.preview && preview !== void 0)
-    $$bindings.preview(preview);
-  $$result.css.add(css$a);
-  $$unsubscribe_t();
-  return `<div class="${"row svelte-17c1xc4"}"><label for="${"bannerdesign"}">${escape($t("customBanner.preview"))}</label>
-	${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, {}, {}, {
-    default: () => {
-      return `${escape($t("customBanner.generateImage"))}`;
-    }
-  })}</div>
-<div class="${"row svelte-17c1xc4"}">${preview ? `<img${add_attribute("src", preview, 0)} alt="${"Preview Banner"}" crossorigin="${"anonymous"}" class="${"svelte-17c1xc4"}">` : ``}
-</div>`;
-});
-const _infoEditor_svelte_svelte_type_style_lang = "";
-const css$9 = {
-  code: "section.svelte-a9gf4v.svelte-a9gf4v{position:fixed;z-index:+20;top:0;left:0;width:var(--screen-width);height:var(--screen-height);background-color:rgba(0, 0, 0, 0.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);display:flex;justify-content:flex-end}.wrapper.svelte-a9gf4v.svelte-a9gf4v{height:100%;width:500px;max-width:100%;padding:1%;background-color:#fbf6ee;background-image:var(--bg-icon);background-repeat:no-repeat;background-size:75%;background-position:50% 60%;color:var(--text-color)}.mobile .wrapper.svelte-a9gf4v.svelte-a9gf4v{width:350px}.header.svelte-a9gf4v.svelte-a9gf4v{display:flex;width:100%;justify-content:space-between;align-items:center;margin-bottom:2%}h1.svelte-a9gf4v.svelte-a9gf4v{font-size:calc(0.2 * var(--item-width))}.body.svelte-a9gf4v.svelte-a9gf4v{height:calc(100% - var(--header-height));padding-bottom:2%;position:relative}.body-wrapper.svelte-a9gf4v.svelte-a9gf4v{overflow-y:auto;width:100%;height:100%}.field-group.svelte-a9gf4v.svelte-a9gf4v{padding:1%}input.svelte-a9gf4v.svelte-a9gf4v{width:100%;padding:0 1.5rem;margin-bottom:2%;height:3rem;display:block;border-radius:3rem;border:#c3b8a5 2px solid;background-color:var(--tertiary-color);outline:none;transition:all 0.2s}input.svelte-a9gf4v.svelte-a9gf4v:focus{box-shadow:0 0 0.4rem rgba(227, 149, 48, 0.7)}input.svelte-a9gf4v.svelte-a9gf4v:disabled{background-color:transparent;opacity:0.7}.row.svelte-a9gf4v.svelte-a9gf4v{display:flex;width:100%;align-items:center;margin-bottom:2%}.rateup-item.svelte-a9gf4v.svelte-a9gf4v{margin:1%;aspect-ratio:8.75 / 10;width:25%;max-width:135px;position:relative}.rateup-item.svelte-a9gf4v .item-wrapper.svelte-a9gf4v{width:100%;height:100%}.rateup-item.svelte-a9gf4v .remove.svelte-a9gf4v{position:absolute;top:0;right:0;transform:translate(25%, -25%);z-index:+1;background-color:#ff1c1c;color:#fff;line-height:0;padding:7%;border-radius:100%;opacity:0.8;transition:all 0.25s}.rateup-item.svelte-a9gf4v .remove.svelte-a9gf4v:hover{opacity:1;background-color:#cb1717}.remove.svelte-a9gf4v.svelte-a9gf4v:active{transform:translate(25%, -25%) scale(0.9)}.rateup-item.blank.svelte-a9gf4v.svelte-a9gf4v{border:2px dashed #c3b8a5;border-radius:5%;transition:all 0.25s}.rateup-item.blank.svelte-a9gf4v.svelte-a9gf4v:hover{border-color:#857d71}.add.svelte-a9gf4v.svelte-a9gf4v{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#c3b8a5;line-height:0;font-size:calc(0.25 * var(--item-width));transition:all 0.25s}.add.svelte-a9gf4v.svelte-a9gf4v:hover{color:#857d71}",
-  map: null
-};
-const Info_editor = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let itemWidth;
-  let $assets, $$unsubscribe_assets;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { rateup = [] } = $$props;
-  let { bannerName = "" } = $$props;
-  let { character = "" } = $$props;
-  let { charTitle = "" } = $$props;
-  let { preview = "" } = $$props;
-  let { watermark = "" } = $$props;
-  let showCharPicker = false;
-  let headerHeight;
-  let rowWidth;
-  getContext("editInfo");
-  getContext("setBannerName");
-  getContext("setCharName");
-  getContext("setCharTitle");
-  const setRateup = getContext("setRateup");
-  getContext("setWatermark");
-  const selectChar = (charName) => {
-    showCharPicker = false;
-    if (!charName)
-      return;
-    if (rateup.includes(charName))
-      return;
-    if (rateup.length >= 3)
-      return;
-    setRateup([...rateup, charName]);
-  };
-  setContext("selectChar", selectChar);
-  if ($$props.rateup === void 0 && $$bindings.rateup && rateup !== void 0)
-    $$bindings.rateup(rateup);
-  if ($$props.bannerName === void 0 && $$bindings.bannerName && bannerName !== void 0)
-    $$bindings.bannerName(bannerName);
-  if ($$props.character === void 0 && $$bindings.character && character !== void 0)
-    $$bindings.character(character);
-  if ($$props.charTitle === void 0 && $$bindings.charTitle && charTitle !== void 0)
-    $$bindings.charTitle(charTitle);
-  if ($$props.preview === void 0 && $$bindings.preview && preview !== void 0)
-    $$bindings.preview(preview);
-  if ($$props.watermark === void 0 && $$bindings.watermark && watermark !== void 0)
-    $$bindings.watermark(watermark);
-  $$result.css.add(css$9);
-  itemWidth = rowWidth / 4;
-  $$unsubscribe_assets();
-  $$unsubscribe_t();
-  return `<section class="${"svelte-a9gf4v"}"><div class="${["wrapper vision-picker svelte-a9gf4v", showCharPicker ? "pickerActive" : ""].join(" ").trim()}" style="${"--bg-icon:url('" + escape($assets["modal-bg-icon.png"], true) + "'); --header-height:" + escape(headerHeight, true) + "px;"}"><div class="${"header svelte-a9gf4v"}"><h1 class="${"svelte-a9gf4v"}">${escape($t("customBanner.editBanner"))}</h1>
-			<div class="${"close-button"}"><button class="${"close"}"><i class="${"gi-close"}"></i></button></div></div>
-
-		<div class="${"body svelte-a9gf4v"}" style="${"--item-width:" + escape(itemWidth, true) + "px"}"><div class="${"body-wrapper svelte-a9gf4v"}"><div class="${"field-group svelte-a9gf4v"}"><label for="${"bannerName"}">${escape($t("customBanner.bannerName"))}: *</label>
-					<div class="${"col"}"><input type="${"text"}" autocomplete="${"off"}" id="${"bannerName"}"${add_attribute("placeholder", $t("customBanner.bannerName"), 0)}${add_attribute("value", bannerName, 0)} class="${"svelte-a9gf4v"}"></div></div>
-
-				<div class="${"field-group svelte-a9gf4v"}"><label for="${"charName"}">${escape($t("customBanner.charName"))}: *</label>
-					<div class="${"col"}"><input type="${"text"}" autocomplete="${"off"}" id="${"charName"}"${add_attribute("placeholder", $t("customBanner.charName"), 0)}${add_attribute("value", character, 0)} class="${"svelte-a9gf4v"}"></div></div>
-
-				<div class="${"field-group svelte-a9gf4v"}"><label for="${"charTitle"}">${escape($t("customBanner.charTitle"))}:</label>
-					<div class="${"col"}"><input type="${"text"}" autocomplete="${"off"}" id="${"charTitle"}"${add_attribute("placeholder", $t("customBanner.charTitle"), 0)}${add_attribute("value", charTitle, 0)} class="${"svelte-a9gf4v"}"></div></div>
-
-				<div class="${"field-group svelte-a9gf4v"}"><label for="${"watermark"}">${escape($t("customBanner.watermark"))}:</label>
-					<div class="${"col"}"><input type="${"text"}" autocomplete="${"off"}" id="${"watermark"}" placeholder="${"Banner By @Traveler"}"${add_attribute("value", watermark, 0)} class="${"svelte-a9gf4v"}"></div></div>
-
-				<div class="${"field-group svelte-a9gf4v"}"><div class="${"row svelte-a9gf4v"}"><label for="${"rateup"}">${escape($t("customBanner.rateupChar"))}: *</label></div>
-					<div class="${"row svelte-a9gf4v"}">${each(Array(3), (_, i) => {
-    let { name, vision } = getCharDetails(rateup[i]) || {};
-    return `
-							<div class="${["rateup-item svelte-a9gf4v", !name ? "blank" : ""].join(" ").trim()}">${name ? `<button class="${"remove svelte-a9gf4v"}"><i class="${"gi-delete"}"></i></button>
-									<button class="${"item-wrapper svelte-a9gf4v"}">${validate_component(Inventory_item, "InventoryItem").$$render(
-      $$result,
-      {
-        itemdata: {
-          localName: $t(`${name}.name`),
-          name,
-          vision,
-          rarity: 4
-        }
-      },
-      {},
-      {}
-    )}
-									</button>` : `<button class="${"add svelte-a9gf4v"}"><i class="${"gi-plus"}"></i>
-									</button>`}
-							</div>`;
-  })}</div></div>
-
-				<div class="${"field-group svelte-a9gf4v"}">${validate_component(Preview_generator, "PreviewGenerator").$$render($$result, { preview }, {}, {})}</div></div>
-			${showCharPicker ? `${validate_component(Rateup_picker, "RateupPicker").$$render($$result, { exclude: rateup }, {}, {})}` : ``}</div></div>
-</section>`;
-});
-const _resultCard_svelte_svelte_type_style_lang = "";
-const SplashArt_svelte_svelte_type_style_lang = "";
-const css$8 = {
-  code: ".splash-art.svelte-iiacim.svelte-iiacim{--zoomist-slider-bar-side:calc(0.003 * var(--screen-width));--zoomist-slider-bar-size:calc(0.35 * var(--screen-height));--zoomist-slider-button-size:calc(0.025 * var(--screen-height));--zoomist-slider-bar-color:#e9a540;--zoomist-slider-track-color:#999;--zoomist-slider-button-color:#fff}.close.svelte-iiacim.svelte-iiacim{position:fixed;top:30px;right:2%;z-index:10}button.svelte-iiacim.svelte-iiacim:active:not(.zoomer-disabled){transform:scale(0.9)}.mobile .close.svelte-iiacim.svelte-iiacim{top:0.3rem;right:6%}.overlay.svelte-iiacim.svelte-iiacim{position:absolute;top:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center;z-index:+10;font-size:calc(0.1 * var(--screen-height));color:var(--tertiary-color);opacity:0.5}.not-owned.svelte-iiacim.svelte-iiacim{max-width:var(--screen-height);transform:rotate(-30deg);line-height:0.9}.notOwned.svelte-iiacim.svelte-iiacim{filter:brightness(40%)}.splash-art.svelte-iiacim.svelte-iiacim{background-image:var(--bg);background-size:cover;background-position:center;position:fixed;top:0;left:0;z-index:+15}.zoomist-container.svelte-iiacim.svelte-iiacim{aspect-ratio:1/1;opacity:1;transition:opacity 0.25s}.splash-art.svelte-iiacim.svelte-iiacim,.zoomist-wrapper.svelte-iiacim.svelte-iiacim,.zoomist-image.svelte-iiacim.svelte-iiacim{width:100%;height:100%;display:flex;justify-content:center;align-items:center}.zoomist-wrapper.svelte-iiacim.svelte-iiacim{--scale:1.5;--translate-x:0px;--translate-y:0px;cursor:move;background-color:unset;position:relative}.zoomist-wrapper.weapon.svelte-iiacim.svelte-iiacim{--scale:1.1}.dragable.svelte-iiacim.svelte-iiacim{position:absolute;width:var(--screen-width);height:var(--screen-height);top:50%;left:50%;transform:translate(-50%, -50%)}.zoomist-wrapper.svelte-iiacim.svelte-iiacim::after{position:absolute;content:'Best Visible Area';text-align:right;font-size:100%;color:#fff;filter:drop-shadow(0 0 0.1rem #000);top:50%;left:50%;transform:translate(-50%, -50%);width:calc(100% - 4px);height:calc(100% - 4px);border:2px dashed #fff;opacity:0;transition:opacity 0.25s}.splash-art.svelte-iiacim:not(.preview) .zoomist-wrapper.svelte-iiacim:hover::after{opacity:1}.zoomist-image.svelte-iiacim.svelte-iiacim{transform:translate(var(--translate-x, 0px), var(--translate-y, 0px)) scale(var(--scale, 0))}img.svelte-iiacim.svelte-iiacim{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.weapon.svelte-iiacim img.svelte-iiacim{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.weapon.svelte-iiacim img.svelte-iiacim:not(.weaponbg){filter:drop-shadow(0.6rem 0.6rem 0.05rem rgba(0, 0, 0, 0.9))}.weapon.svelte-iiacim img.weaponbg.svelte-iiacim{height:80%}.catalyst.svelte-iiacim img.svelte-iiacim:not(.weaponbg){height:40%}.polearm.svelte-iiacim img.svelte-iiacim:not(.weaponbg){transform:translate(-53%, -35%) scale(1.2) !important}.slider.svelte-iiacim.svelte-iiacim{display:grid;background-color:rgba(255, 255, 255, 0.75);padding:1rem 0;transition:background 0.25s, opacity 0.25s}.slider.svelte-iiacim.svelte-iiacim:hover{background-color:#fff}.zoomSlider.svelte-iiacim.svelte-iiacim{padding:2%;display:flex;justify-self:center}.zoomer.svelte-iiacim.svelte-iiacim{position:absolute;z-index:+20;bottom:50%;right:2%;transform:translateY(50%);display:flex;flex-direction:column}.zoomer.svelte-iiacim button.svelte-iiacim{font-size:calc(0.035 * var(--screen-height));width:calc(0.075 * var(--screen-height));display:inline-flex;justify-content:center;align-items:center;aspect-ratio:1/1;background-color:#fff;color:#000;opacity:0.75;transition:all 0.25s;line-height:0}.zoomer.svelte-iiacim button.svelte-iiacim:hover:not(.zoomer-disabled){opacity:1}.zoomer.svelte-iiacim button.svelte-iiacim:active:not(.zoomer-disabled){opacity:1;transform:scale(0.9)}.zoomer.svelte-iiacim button.zoomer-disabled{opacity:0.6;color:rgba(0, 0, 0, 0.5)}.confirm.svelte-iiacim.svelte-iiacim{position:absolute;z-index:+5;bottom:7.5%;right:5%}.mobile .confirm.svelte-iiacim.svelte-iiacim{transform:scale(0.8)}.uid.svelte-iiacim.svelte-iiacim{left:unset;right:5%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;font-size:x-large;font-family:var(--gi-font)}.hideInfo.svelte-iiacim .slider.svelte-iiacim,.hideInfo.svelte-iiacim .art-zoomin.svelte-iiacim,.hideInfo.svelte-iiacim .art-zoomout.svelte-iiacim{opacity:0}",
-  map: null
-};
-const SplashArt = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let wrapperHeight;
-  let $viewportHeight, $$unsubscribe_viewportHeight;
-  let $viewportWidth, $$unsubscribe_viewportWidth;
-  let $assets, $$unsubscribe_assets;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => $viewportHeight = value);
-  $$unsubscribe_viewportWidth = subscribe(viewportWidth, (value) => $viewportWidth = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { character } = $$props;
-  let { rarity = 5 } = $$props;
-  let { vision } = $$props;
-  let { artURL = "" } = $$props;
-  let { position = {} } = $$props;
-  let { preview = false } = $$props;
-  let { onshot = false } = $$props;
-  let { isOwned = false } = $$props;
-  let { weaponType = "" } = $$props;
-  let { localName = "" } = $$props;
-  let { hideInfo = false } = $$props;
-  let mainArt;
-  const { splashArt: artPosition = { scale: 1.5, x: 0, y: 0 } } = position;
-  const bg = preview ? $assets["detailbg.webp"] : $assets["splash-background.webp"];
-  const calculateWrapperHeight = (vw, vh) => {
-    if (vw < vh)
-      return "85vw";
-    if (vw < vh * 1.5)
-      return "65vw";
-    return "100%";
-  };
-  createEventDispatcher();
-  getContext("toggleInfoHide");
-  getContext("setPosition");
-  ({
-    initScale: artPosition.scale || 1,
-    maxScale: 5,
-    bounds: false,
-    slider: { el: ".zoomSlider", direction: "vertical" },
-    zoomer: {
-      inEl: ".art-zoomin",
-      outEl: ".art-zoomout",
-      resetEl: null,
-      disabledClass: "zoomer-disabled"
-    }
-  });
-  if ($$props.character === void 0 && $$bindings.character && character !== void 0)
-    $$bindings.character(character);
-  if ($$props.rarity === void 0 && $$bindings.rarity && rarity !== void 0)
-    $$bindings.rarity(rarity);
-  if ($$props.vision === void 0 && $$bindings.vision && vision !== void 0)
-    $$bindings.vision(vision);
-  if ($$props.artURL === void 0 && $$bindings.artURL && artURL !== void 0)
-    $$bindings.artURL(artURL);
-  if ($$props.position === void 0 && $$bindings.position && position !== void 0)
-    $$bindings.position(position);
-  if ($$props.preview === void 0 && $$bindings.preview && preview !== void 0)
-    $$bindings.preview(preview);
-  if ($$props.onshot === void 0 && $$bindings.onshot && onshot !== void 0)
-    $$bindings.onshot(onshot);
-  if ($$props.isOwned === void 0 && $$bindings.isOwned && isOwned !== void 0)
-    $$bindings.isOwned(isOwned);
-  if ($$props.weaponType === void 0 && $$bindings.weaponType && weaponType !== void 0)
-    $$bindings.weaponType(weaponType);
-  if ($$props.localName === void 0 && $$bindings.localName && localName !== void 0)
-    $$bindings.localName(localName);
-  if ($$props.hideInfo === void 0 && $$bindings.hideInfo && hideInfo !== void 0)
-    $$bindings.hideInfo(hideInfo);
-  $$result.css.add(css$8);
-  wrapperHeight = calculateWrapperHeight($viewportWidth, $viewportHeight);
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_viewportWidth();
-  $$unsubscribe_assets();
-  $$unsubscribe_t();
-  return `<div class="${[
-    "splash-art wish-result svelte-iiacim",
-    (preview ? "preview" : "") + " " + (hideInfo ? "hideInfo" : "")
-  ].join(" ").trim()}" style="${"--bg: url(" + escape(bg, true) + ");"}">${onshot ? `<div class="${"uid svelte-iiacim"}">WishSimulator.App</div>` : ``}
-
-	${preview && !isOwned ? `<div class="${"overlay svelte-iiacim"}"><div class="${"not-owned svelte-iiacim"}"><span>${escape($t("inventory.notOwned"))}</span></div></div>` : ``}
-
-	<button class="${"close svelte-iiacim"}"><i class="${"gi-close"}"></i></button>
-
-	${`${!(preview && !isOwned) ? `<div class="${"zoomer svelte-iiacim"}"><div class="${"slider svelte-iiacim"}"><div class="${"zoomSlider svelte-iiacim"}"></div></div>
-				<button class="${"art-zoomin svelte-iiacim"}"><i class="${"gi-zoom-in"}"></i></button>
-				<button class="${"art-zoomout svelte-iiacim"}"><i class="${"gi-zoom-out"}"></i></button>
-				${preview ? `<button class="${"svelte-iiacim"}"><i class="${"gi-eye" + escape(!hideInfo ? "" : "-slash", true)}"></i></button>` : ``}</div>` : ``}
-
-		${!preview ? `<div class="${"confirm svelte-iiacim"}">${`${validate_component(ButtonModal, "ButtonModal").$$render($$result, { light: true }, {}, {
-    default: () => {
-      return `${escape($t("customBanner.next"))} \xBB`;
-    }
-  })}`}</div>` : ``}
-
-		<div class="${"zoomist-container svelte-iiacim"}" style="${"height: " + escape(wrapperHeight, true) + ";"}"${add_attribute("this", mainArt, 0)}><div class="${[
-    "zoomist-wrapper " + escape(weaponType, true) + " svelte-iiacim",
-    (preview && !isOwned ? "notOwned" : "") + " " + (weaponType ? "weapon" : "")
-  ].join(" ").trim()}" style="${"overflow: visible;"}"><div class="${"zoomist-image svelte-iiacim"}">${weaponType ? `<img${add_attribute("src", $assets[`bg-${weaponType}.webp`], 0)}${add_attribute("alt", weaponType, 0)} class="${"weaponbg svelte-iiacim"}">` : ``}
-
-					<img${add_attribute("src", artURL, 0)}${add_attribute("alt", localName || character, 0)} crossorigin="${"anonymous"}" class="${"svelte-iiacim"}"></div>
-				<div class="${"dragable svelte-iiacim"}"></div></div>
-
-			${!hideInfo ? `${validate_component(Item_info, "ItemInfo").$$render(
-    $$result,
-    {
-      custom: true,
-      staticMode: true,
-      itemName: localName || character,
-      type: "character",
-      rarity,
-      vision,
-      weaponType
-    },
-    {},
-    {}
-  )}` : ``}</div>`}
-</div>`;
-});
-const CustomEditor_svelte_svelte_type_style_lang = "";
-const css$7 = {
-  code: ".card.svelte-1kja6fh{position:relative}.card.svelte-1kja6fh{width:100%;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;aspect-ratio:1080/533}img.svelte-1kja6fh{width:100%;height:100%;display:block;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.loading.svelte-1kja6fh{position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%, -50%);z-index:+20;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background-color:rgba(0, 0, 0, 0.2)}.loader.svelte-1kja6fh{--text-color:rgba(248, 184, 22, 0.7);aspect-ratio:1/1;display:flex;justify-content:center;align-items:center}",
-  map: null
-};
-const CustomEditor = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let bannerData;
-  let $bannerList, $$unsubscribe_bannerList;
-  let $activeVersion, $$unsubscribe_activeVersion;
-  let $editID, $$unsubscribe_editID;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_bannerList = subscribe(bannerList, (value) => $bannerList = value);
-  $$unsubscribe_activeVersion = subscribe(activeVersion, (value) => $activeVersion = value);
-  $$unsubscribe_editID = subscribe(editID, (value) => $editID = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let clientHeight;
-  let clientWidth;
-  let onBannerEdit = false;
-  let isInfoEdit = false;
-  let isSplashArtEdit = false;
-  let isLoaded = false;
-  let isEdited = false;
-  let bannerID = $editID;
-  let dataToEdit = {};
-  let bannerName = "";
-  let character = "";
-  let charTitle = "";
-  let vision = "";
-  let watermark = "";
-  let rateup = [];
-  let imgChanged = {
-    artURL: false,
-    faceURL: false,
-    thumbnail: false
-  };
-  let artPosition = { banner: {}, splashArt: {}, wishCard: {} };
-  let images = {};
-  const idb2 = BannerManager;
-  const readIDB = async (id) => {
-    if (isLoaded)
-      return;
-    isLoaded = true;
-    dataToEdit = await idb2.get(id);
-    ({ bannerName = "", character = "", charTitle = "", watermark = "", vision = "pyro", rateup = [], artPosition = {}, images = {}, imgChanged = {} } = dataToEdit);
-  };
-  const autoSave = async (data2) => {
-    if (!isLoaded)
-      return;
-    if (!isEdited)
-      return isEdited = true;
-    const editedData = {
-      ...dataToEdit,
-      isChanged: true,
-      itemID: $editID,
-      ...data2
-    };
-    delete editedData.lastModified;
-    await idb2.put(editedData);
-    const { phase: activeID, patch } = $activeVersion;
-    if (!(patch.match("local") && activeID === bannerID))
-      return;
-    set_store_value(bannerList, $bannerList[0] = { ...editedData, type: "character-event" }, $bannerList);
-    return;
-  };
-  const editSplashArt = (val) => isSplashArtEdit = val;
-  setContext("editSplashArt", editSplashArt);
-  const setPosition = (type, pos) => artPosition[type] = pos;
-  setContext("setPosition", setPosition);
-  const editBanner = (val) => onBannerEdit = val;
-  setContext("editBanner", editBanner);
-  const editInfo = (val) => isInfoEdit = val;
-  setContext("editInfo", editInfo);
-  const setVision = (vi) => vision = vi;
-  setContext("setVision", setVision);
-  const setRateup = (chars) => rateup = chars;
-  setContext("setRateup", setRateup);
-  const setCharName = (name) => character = name;
-  setContext("setCharName", setCharName);
-  const setCharTitle = (title) => charTitle = title;
-  setContext("setCharTitle", setCharTitle);
-  const setBannerName = (name) => bannerName = name;
-  setContext("setBannerName", setBannerName);
-  const setWatermark = (text) => watermark = text;
-  setContext("setWatermark", setWatermark);
-  const changeArt = (file) => {
-    if (!file)
-      return;
-    const reader = new FileReader();
-    reader.readAsDataURL(file);
-    reader.addEventListener("load", () => {
-      images.artURL = reader.result;
-      imgChanged.artURL = true;
-      onBannerEdit = true;
-    });
-  };
-  setContext("changeArt", changeArt);
-  const changeFace = (file) => {
-    if (!file)
-      return;
-    const reader = new FileReader();
-    reader.readAsDataURL(file);
-    reader.addEventListener("load", () => {
-      images.faceURL = reader.result;
-      imgChanged.faceURL = true;
-    });
-  };
-  setContext("changeFace", changeFace);
-  const changeThumbnail = (file) => {
-    if (!file)
-      return;
-    const reader = new FileReader();
-    reader.readAsDataURL(file);
-    reader.addEventListener("load", () => {
-      images.thumbnail = reader.result;
-      imgChanged.thumbnail = true;
-    });
-  };
-  setContext("changeThumbnail", changeThumbnail);
-  $$result.css.add(css$7);
-  bannerData = {
-    bannerName,
-    character,
-    charTitle,
-    watermark,
-    vision,
-    rateup,
-    artPosition,
-    images,
-    imgChanged
-  };
-  {
-    autoSave(bannerData);
-  }
-  $$unsubscribe_bannerList();
-  $$unsubscribe_activeVersion();
-  $$unsubscribe_editID();
-  $$unsubscribe_assets();
-  return `${function(__value) {
-    if (is_promise(__value)) {
-      __value.then(null, noop);
-      return `
-	<div class="${"loading svelte-1kja6fh"}"><div class="${"loader svelte-1kja6fh"}">${validate_component(Icon$1, "Icon").$$render($$result, { type: "loader", width: "40px" }, {}, {})}</div></div>
-`;
-    }
-    return function() {
-      return ``;
-    }();
-  }(readIDB(bannerID))}
-
-<div class="${["card svelte-1kja6fh", isLoaded ? "isLoaded" : ""].join(" ").trim()}" id="${"cardEditor"}" style="${"--content-width:" + escape(clientWidth, true) + "px; --content-height:" + escape(clientHeight, true) + "px"}"><img${add_attribute("src", $assets[`blank/${vision}`], 0)} alt="${"Background Banner"}" crossorigin="${"anonymous"}" class="${"art-bg svelte-1kja6fh"}">
-
-	${validate_component(Vision_picker, "VisionPicker").$$render($$result, { selected: vision }, {}, {})}
-	${validate_component(BannerArt, "MainArt").$$render(
-    $$result,
-    {
-      onBannerEdit,
-      artURL: images?.artURL,
-      bannerPosition: artPosition?.banner
-    },
-    {},
-    {}
-  )}
-	${validate_component(Splashart_form, "SplashartForm").$$render($$result, { onBannerEdit }, {}, {})}
-	${validate_component(Frame_custom, "FrameCustom").$$render(
-    $$result,
-    {
-      editorMode: true,
-      onBannerEdit,
-      vision,
-      bannerName,
-      character,
-      charTitle,
-      watermark
-    },
-    {},
-    {}
-  )}
-	${validate_component(Info_face_button, "InfoButton").$$render($$result, { faceURL: images?.faceURL, onBannerEdit }, {}, {})}</div>
-
-${isInfoEdit ? `${validate_component(Info_editor, "InfoEditor").$$render(
-    $$result,
-    {
-      preview: images?.thumbnail,
-      rateup,
-      bannerName,
-      character,
-      charTitle,
-      watermark
-    },
-    {},
-    {}
-  )}` : ``}
-
-${isSplashArtEdit ? `${validate_component(SplashArt, "SplashArtEditor").$$render(
-    $$result,
-    {
-      artURL: images?.artURL,
-      position: artPosition,
-      character,
-      vision
-    },
-    {},
-    {}
-  )}` : ``}`;
-});
-const ModalDelete_svelte_svelte_type_style_lang = "";
-const css$6 = {
-  code: ".confirmation.svelte-1vkbej6.svelte-1vkbej6{padding:5%;height:100%;align-items:center;justify-content:center;display:flex}.confirmation.svelte-1vkbej6 small.svelte-1vkbej6{display:block}.selectedToDelete.svelte-1vkbej6.svelte-1vkbej6{width:45%;margin-top:3%}.row.loader.svelte-1vkbej6.svelte-1vkbej6{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%;width:100%;position:absolute;top:0;left:0}",
-  map: null
-};
-const ModalDelete = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_activeVersion;
-  let $$unsubscribe_editID;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_activeVersion = subscribe(activeVersion, (value) => value);
-  $$unsubscribe_editID = subscribe(editID, (value) => value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let { idToDelete = 0 } = $$props;
-  let showDeleteLoader = false;
-  createEventDispatcher();
-  if ($$props.idToDelete === void 0 && $$bindings.idToDelete && idToDelete !== void 0)
-    $$bindings.idToDelete(idToDelete);
-  $$result.css.add(css$6);
-  $$unsubscribe_activeVersion();
-  $$unsubscribe_editID();
-  $$unsubscribe_t();
-  return `${validate_component(ModalTpl, "ModalTpl").$$render(
-    $$result,
-    {
-      title: "Remove Banner",
-      disabled: showDeleteLoader
-    },
-    {},
-    {
-      default: () => {
-        return `<div class="${"confirmation svelte-1vkbej6"}">${`<div class="${"wrapper"}"><span>${escape($t("customBanner.deletePrompt"))}</span>
-				${`<small class="${"svelte-1vkbej6"}">${escape($t("customBanner.userDeleteNote"))}</small>`}
-
-				${``}</div>`}</div>`;
-      }
-    }
-  )}`;
-});
-const _bannerItem_svelte_svelte_type_style_lang = "";
-const css$5 = {
-  code: ".modal-content.svelte-1fztub0.svelte-1fztub0{display:flex;justify-content:center;align-items:center;width:100%;height:100%;font-family:var(--genshin-font);padding:3%}.banner-container.svelte-1fztub0.svelte-1fztub0{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.mobile .banner-container.svelte-1fztub0.svelte-1fztub0{align-items:flex-end;padding:0}.banner-item.svelte-1fztub0.svelte-1fztub0{max-width:900px;width:80%;max-height:75vh;aspect-ratio:27/14;perspective:1000px}.editMode.svelte-1fztub0 .banner-item.svelte-1fztub0{aspect-ratio:1080/533;perspective:unset;position:relative}.fullscreen.banner-item.svelte-1fztub0.svelte-1fztub0{perspective:unset}.banner-item.editorOpen.svelte-1fztub0.svelte-1fztub0{z-index:+10}.navigate.svelte-1fztub0.svelte-1fztub0{position:absolute;top:50%;left:50%;width:85%;transform:translate(-50%, -50%);display:flex;justify-content:space-between;transition:all 0.2s;pointer-events:none}@media screen and (max-width: 1200px){.navigate.svelte-1fztub0.svelte-1fztub0{width:90%}}@media screen and (max-width: 800px){.navigate.svelte-1fztub0.svelte-1fztub0{width:95%}}.navigate.svelte-1fztub0 button.svelte-1fztub0{color:#ece5d8;font-size:2rem;line-height:0;pointer-events:initial}.mobile .navigate.svelte-1fztub0.svelte-1fztub0{display:none}",
-  map: null
-};
-const Banner_item = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let landscape;
-  let tabletBannerStyle;
-  let mobileBannerStyle;
-  let style;
-  let banner;
-  let $bannerList, $$unsubscribe_bannerList;
-  let $onWish, $$unsubscribe_onWish;
-  let $activeBanner, $$unsubscribe_activeBanner;
-  let $viewportWidth, $$unsubscribe_viewportWidth;
-  let $viewportHeight, $$unsubscribe_viewportHeight;
-  let $mobileMode, $$unsubscribe_mobileMode;
-  let $editBanner, $$unsubscribe_editBanner;
-  let $$unsubscribe_editID;
-  let $isMobile, $$unsubscribe_isMobile;
-  let $t, $$unsubscribe_t;
-  let $customData, $$unsubscribe_customData;
-  $$unsubscribe_bannerList = subscribe(bannerList, (value) => $bannerList = value);
-  $$unsubscribe_activeBanner = subscribe(activeBanner, (value) => $activeBanner = value);
-  $$unsubscribe_viewportWidth = subscribe(viewportWidth, (value) => $viewportWidth = value);
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => $viewportHeight = value);
-  $$unsubscribe_mobileMode = subscribe(mobileMode, (value) => $mobileMode = value);
-  $$unsubscribe_editBanner = subscribe(editorMode, (value) => $editBanner = value);
-  $$unsubscribe_editID = subscribe(editID, (value) => value);
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => $isMobile = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_customData = subscribe(customData, (value) => $customData = value);
-  const navigateBanner = (target) => {
-    if (target === "right") {
-      if ($activeBanner >= $bannerList.length - 1)
-        return;
-      playSfx("changebanner");
-      return activeBanner.update((n) => n + 1);
-    }
-    if (target === "left") {
-      if ($activeBanner <= 0)
-        return;
-      playSfx("changebanner");
-      return activeBanner.update((n) => n - 1);
-    }
-  };
-  let editor = false;
-  const editProb = () => {
-    playSfx("bookflip");
-    editor = !editor;
-  };
-  setContext("editprob", editProb);
-  let showModalReset = false;
-  let ModalDeleteCustom = false;
-  setContext("showModalReset", () => {
-    showModalReset = true;
-  });
-  setContext("deleteBanner", () => {
-    ModalDeleteCustom = true;
-    playSfx();
-  });
-  const onWish = getContext("onWish");
-  $$unsubscribe_onWish = subscribe(onWish, (value) => $onWish = value);
-  hotkeys("right,left,up,down", "index", (e) => {
-    if ($onWish)
-      return;
-    e.preventDefault();
-    const [to] = hotkeys.getPressedKeyString();
-    if (to === "up")
-      return navigateBanner("left");
-    if (to === "down")
-      return navigateBanner("right");
-    navigateBanner(to);
-  });
-  hotkeys("1,2,3,4,5", "index", (e) => {
-    if ($onWish)
-      return;
-    e.preventDefault();
-    const to = hotkeys.getPressedKeyString();
-    const bannerIndex = parseInt(to) - 1;
-    if (to > $bannerList.length)
-      return;
-    activeBanner.set(bannerIndex);
-    playSfx("changebanner");
-  });
-  $$result.css.add(css$5);
-  landscape = $viewportWidth / 2.1 > $viewportHeight;
-  tabletBannerStyle = landscape ? "width: 90vh" : "";
-  mobileBannerStyle = $mobileMode ? `max-width: ${150 / 100 * $viewportHeight}px;` : tabletBannerStyle;
-  style = $viewportHeight > 800 || $viewportHeight > $viewportWidth || $viewportHeight / $viewportWidth > 0.5 ? "align-items:center;" : "";
-  banner = $bannerList[$activeBanner]?.type;
-  {
-    if (banner === "beginner")
-      editor = false;
-  }
-  $$unsubscribe_bannerList();
-  $$unsubscribe_onWish();
-  $$unsubscribe_activeBanner();
-  $$unsubscribe_viewportWidth();
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_mobileMode();
-  $$unsubscribe_editBanner();
-  $$unsubscribe_editID();
-  $$unsubscribe_isMobile();
-  $$unsubscribe_t();
-  $$unsubscribe_customData();
-  return `<div class="${["banner-container svelte-1fztub0", $editBanner ? "editMode" : ""].join(" ").trim()}"${add_attribute("style", style, 0)}>${$editBanner ? `<div class="${"banner-item svelte-1fztub0"}"${add_attribute("style", mobileBannerStyle, 0)}>${validate_component(CustomEditor, "CustomEditor").$$render($$result, {}, {}, {})}</div>` : `${each($bannerList, (data2, index) => {
-    return `${$activeBanner === index ? `<div class="${[
-      "banner-item svelte-1fztub0",
-      (editor ? "editorOpen" : "") + " " + ($isMobile && $mobileMode ? "fullscreen" : "")
-    ].join(" ").trim()}"${add_attribute("style", mobileBannerStyle, 0)}>${validate_component(BannerCard, "BannerCard").$$render(
-      $$result,
-      {
-        data: data2,
-        editor,
-        index,
-        fullscreenEditor: $isMobile && $mobileMode
-      },
-      {},
-      {}
-    )}
-				</div>` : ``}`;
-  })}
-
-		<div class="${"navigate svelte-1fztub0"}">${$activeBanner > 0 ? `<button class="${"left svelte-1fztub0"}" style="${"margin-right: auto;"}"><i class="${"gi-arrow-left"}"></i></button>` : ``}
-
-			${$activeBanner < $bannerList.length - 1 ? `<button class="${"left svelte-1fztub0"}" style="${"margin-left: auto;"}"><i class="${"gi-arrow-right"}"></i></button>` : ``}</div>`}</div>
-
-${showModalReset ? `${validate_component(ModalTpl, "ModalTpl").$$render($$result, { title: "Back to Default" }, {}, {
-    default: () => {
-      return `<div class="${"modal-content svelte-1fztub0"}"><p><!-- HTML_TAG_START -->${$t("editor.resetPrompt", {
-        values: { banner: $t(`wish.banner.${banner}`) }
-      })}<!-- HTML_TAG_END --></p></div>`;
-    }
-  })}` : ``}
-
-${ModalDeleteCustom ? `${validate_component(ModalDelete, "ModalDelete").$$render($$result, { idToDelete: $customData.itemID }, {}, {})}` : ``}`;
-});
-const _svgBackground_svelte_svelte_type_style_lang = "";
-const css$4 = {
-  code: "svg.svelte-1n1ouqa.svelte-1n1ouqa{width:100%}.fil0.svelte-1n1ouqa.svelte-1n1ouqa{fill:#a0907d}.fil1.svelte-1n1ouqa.svelte-1n1ouqa{fill:#d7d0c7}.bg.svelte-1n1ouqa .fil1.svelte-1n1ouqa{fill:#e1ddd4}.filled.svelte-1n1ouqa.svelte-1n1ouqa{fill:#5b9ee2}.full.svelte-1n1ouqa .fil1.svelte-1n1ouqa{fill:#d5d9df}",
-  map: null
-};
-const Svg_background = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let fatepoint;
-  let $course, $$unsubscribe_course;
-  $$unsubscribe_course = subscribe(course, (value) => $course = value);
-  let { mode = "" } = $$props;
-  if ($$props.mode === void 0 && $$bindings.mode && mode !== void 0)
-    $$bindings.mode(mode);
-  $$result.css.add(css$4);
-  fatepoint = $course.point;
-  $$unsubscribe_course();
-  return `<svg class="${escape(mode, true) + " " + escape(fatepoint > 1 ? "full" : "", true) + " svelte-1n1ouqa"}" xmlns="${"http://www.w3.org/2000/svg"}" xml:space="${"preserve"}" width="${"100%"}" height="${"100%"}" version="${"1.1"}" style="${"shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"}" viewBox="${"0 0 1500001 1500018"}" xmlns:xlink="${"http://www.w3.org/1999/xlink"}"><defs></defs><g id="${"Layer_x0020_1"}"><metadata id="${"CorelCorpID_0Corel-Layer"}"></metadata><path class="${escape(fatepoint > 0 ? "filled" : "", true) + " " + escape(mode === "bg" ? "fil1" : "fil0", true) + " svelte-1n1ouqa"}" d="${"M1237835 754784c-41627,24154 -57713,54476 -62457,79583 -33219,176299 -172756,315073 -349462,347141 -25370,4606 -50457,11941 -76748,59882 -22997,-39721 -55914,-55418 -81993,-60308 -179134,-33502 -319645,-176741 -349037,-357292 -3738,-22943 -12543,-47658 -61831,-69006l107099 0c804,211542 172526,382804 384273,382804 211731,0 383470,-171245 384274,-382804l105882 0z"}"></path><path class="${escape(fatepoint === 2 ? "filled" : "", true) + " " + escape(mode === "bg" ? "fil1" : "fil0", true) + " svelte-1n1ouqa"}" d="${"M752463 258628c26291,50936 54372,62469 82613,68209 168468,34335 301555,166006 337946,333729 6484,29871 16476,66296 70689,90940 -2014,1079 -3971,2172 -5876,3278l-105882 0c2,-498 19,-991 19,-1489 0,-212228 -172047,-384292 -384293,-384292 -212228,0 -384292,172047 -384292,384292 0,498 17,991 19,1489l-107099 0c52566,-19719 58058,-48597 61725,-71328 28241,-175111 160956,-315250 332170,-354422 31341,-7175 75987,-11250 102279,-70406l-18 0z"}"></path><path class="${"fil1 svelte-1n1ouqa"}" d="${"M751489 18l60785 226720c6804,25370 40501,32740 68298,39260l-8486 39544 -1293 -691c-55223,2374 -121395,-68493 -112714,-91276l13146 -34495 -24644 -45992 -19719 54213 12845 22996c7600,13606 -8132,48987 -38357,73595 -21508,17504 -51112,28807 -80983,26788l-6307 -41971c27957,-4412 56694,-213 66792,-33768l70637 -234941 0 18zm479803 614060c4411,27957 212,56693 33768,66792l234941 70636 -226721 60786c-25370,6803 -32740,40500 -39260,68298l-39544 -8486 691 -1294c-2374,-55223 68493,-121394 91277,-112713l34494 13145 45993 -24643 -54213 -19719 -22997 12844c-13606,7601 -48986,-8131 -73595,-38356 -17504,-21508 -28807,-51113 -26787,-80983l41970 -6307 -17 0zm-345352 617231c-27957,4412 -56693,213 -66791,33768l-70637 234941 -60786 -226720c-6803,-25371 -40500,-32741 -68298,-39260l8487 -39544 1293 691c55223,-2374 121395,68493 112713,91276l-13145 34495 24644 45992 19718 -54213 -12844 -22996c-7601,-13607 8132,-48987 38356,-73595 21508,-17504 51113,-28808 80983,-26788l6307 41971 0 -18zm-617231 -345351c-4412,-27957 -213,-56693 -33768,-66792l-234941 -70636 226720 -60786c25371,-6803 32741,-40501 39261,-68298l39543 8486 -691 1294c2374,55222 -68492,121394 -91276,112713l-34495 -13146 -45992 24644 54213 19719 22996 -12845c13607,-7600 48987,8132 73595,38357 17504,21508 28808,51112 26788,80983l-41971 6307 18 0z"}"></path><path class="${"fil1 svelte-1n1ouqa"}" d="${"M820743 133283c91099,116664 206594,101800 284937,176298l3207 2534 -9726 50864 -22306 -17716c-61264,-58253 -147261,-57066 -223124,-121501l-32988 -90497 0 0 0 18zm375186 249185c95121,112625 59138,196106 170523,288675l-77794 -19896c-69839,-75951 -50049,-148040 -131847,-242506l-13589 -10789 52707 -15502 0 18zm170807 438293c-116665,91099 -101800,206594 -176299,284937l-2533 3207 -50865 -9727 17717 -22305c58252,-61264 57065,-147261 121501,-223124l90496 -32988 0 0 -17 0zm-249185 375186c-112625,95121 -196106,59138 -288676,170523l19896 -77794c75951,-69839 148040,-50050 242506,-131848l10789 -13588 15502 52707 -17 0zm-438293 170806c-91100,-116664 -206595,-101800 -284938,-176298l-3207 -2534 9727 -50865 22305 17717c61265,58253 147261,57066 223124,121501l32989 90497 0 0 0 -18zm-375187 -249185c-95120,-112625 -59138,-196106 -170523,-288675l77794 19895c69839,75952 50050,148041 131848,242506l13589 10790 -52708 15502 0 -18zm-170806 -438293c116664,-91099 101800,-206594 176299,-284937l2533 -3207 50865 9727 -17717 22305c-58252,61264 -57065,147261 -121501,223124l-90497 32988 0 0 18 0zm249185 -375186c112625,-95121 196106,-59138 288676,-170523l-19896 77794c-75952,69839 -148041,50050 -242506,131847l-10790 13589 -15502 -52707 18 0z"}"></path><path class="${"fil1 svelte-1n1ouqa"}" d="${"M1128694 1220874c26841,2374 67359,15608 98576,36975 -9850,-34495 -10559,-79052 -8539,-110269 -28843,0 -65393,-24449 -114681,-60591 21367,50936 24644,105042 24644,133903l0 -18zm-762845 -948267c-26840,-2375 -67358,-15609 -98575,-36975 9850,34494 10559,79052 8539,110268 28843,0 65393,24449 114680,60591 -21366,-50935 -24644,-105042 -24644,-133902l0 18zm762845 0c26841,-2375 67359,-15609 98576,-36975 -9850,34494 -10559,79052 -8539,110268 -28843,0 -65393,24449 -114681,60591 21367,-50935 24644,-105042 24644,-133902l0 18zm-762845 948267c-26840,2374 -67358,15608 -98575,36975 9850,-34495 10559,-79052 8539,-110269 28843,0 65393,-24449 114680,-60591 -21366,50936 -24644,105042 -24644,133903l0 -18z"}"></path><path class="${"fil1 svelte-1n1ouqa"}" d="${"M738201 377613l-31748 28878c21348,14794 32864,29871 44362,52867 11498,-24644 24644,-39721 44363,-49589l-34371 -32191c21385,602 42326,3029 62664,7087l22465 22464c-73754,65074 -83623,116151 -91825,226225 32864,-294221 335164,-220290 179080,-77351 42715,-116647 -96928,-114999 -175785,110073l-4164 69272c45515,-77935 86316,-197416 152027,-139908 65711,57508 -64081,113369 -139731,150521l66774 -4961c234941,-77227 236730,-207533 110375,-172808 126497,-154437 241213,144887 -75881,174456 90037,-4447 154437,3295 228670,-85944l19878 19878c4004,20020 6395,40625 7051,61672l-28878 -31748c-14794,21348 -29871,32864 -52867,44362 24644,11498 39721,24644 49589,44363l32191 -34371c-602,21385 -3029,42326 -7086,62664l-22465 22465c-65073,-73754 -116151,-83623 -226224,-91825 294221,32864 220289,335164 77351,179080 116646,42715 114999,-96928 -110074,-175785l-69272 -4164c77935,45515 197417,86316 139908,152027 -57508,65711 -113369,-64081 -150521,-139731l4961 66774c77227,234941 207533,236730 172809,110375 154436,126497 -144887,241212 -174457,-75881 4447,90037 -3295,154437 85944,228670l-19878 19878c-20020,4004 -40624,6395 -61672,7051l31748 -28878c-21348,-14794 -32864,-29871 -44362,-52867 -11498,24644 -24644,39721 -44363,49589l34371 32191c-21384,-602 -42325,-3029 -62664,-7086l-22465 -22465c73755,-65073 83623,-116151 91826,-226224 -32865,294221 -335165,220289 -179081,77351 -42715,116646 96928,114999 175785,-110074l4164 -69272c-45514,77935 -86316,197417 -152027,139908 -65711,-57508 64081,-113369 139731,-150521l-66774 4961c-234941,77227 -236730,207533 -110375,172809 -126497,154436 -241212,-144887 75881,-174457 -90036,4447 -154437,-3295 -228669,85944l-19879 -19878c-4004,-20020 -6395,-40624 -7051,-61672l28878 31748c14794,-21348 29871,-32864 52867,-44362 -24644,-11498 -39721,-24644 -49589,-44363l-32191 34371c602,-21384 3029,-42325 7086,-62664l22465 -22465c65074,73755 116151,83623 226225,91826 -294221,-32865 -220290,-335165 -77352,-179081 -116646,-42715 -114999,96928 110074,175785l69272 4164c-77935,-45514 -197417,-86316 -139908,-152027 57508,-65711 113369,64081 150521,139731l-4961 -66774c-77227,-234941 -207533,-236730 -172808,-110375 -154437,-126497 144887,-241212 174456,75881 -4447,-90036 3295,-154436 -85944,-228669l19878 -19878c20020,-4004 40625,-6396 61672,-7052z"}"></path></g></svg>`;
-});
-const EpitomizedPath_svelte_svelte_type_style_lang = "";
-const css$3 = {
-  code: ".modal.svelte-mpifkm.svelte-mpifkm{position:fixed;top:0;left:0;width:100vw;background-color:rgba(0, 0, 0, 0.7);z-index:10;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.modal-content.svelte-mpifkm.svelte-mpifkm{width:1000px;max-width:90%;min-width:250px;text-align:center;position:relative;border-radius:1.2rem;overflow:hidden}.mobile .modal-content.svelte-mpifkm.svelte-mpifkm{max-width:140vh;border-radius:0.8rem}.modal-content.svelte-mpifkm img.svelte-mpifkm{position:relative;width:100%}.close-modal.svelte-mpifkm.svelte-mpifkm{position:absolute;top:1.5rem;right:-0.2rem;z-index:+10}.gi-close.svelte-mpifkm.svelte-mpifkm{font-size:1.3rem;background-color:transparent;color:#383b40}.container.svelte-mpifkm.svelte-mpifkm{width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.container.svelte-mpifkm h1.svelte-mpifkm{text-align:left;padding-left:10%;padding-top:5%;font-size:calc(3 / 100 * var(--modal-width));color:#7c613f}.container.svelte-mpifkm>div.svelte-mpifkm{flex-basis:50%;flex-grow:1;padding:3% 7%}.description.svelte-mpifkm.svelte-mpifkm{padding-right:5.5% !important;font-size:calc(2 / 100 * var(--modal-width))}.container.svelte-mpifkm .content.svelte-mpifkm{width:100%;height:82%;overflow:hidden;margin:8% 0 0;text-align:left;color:#aa8e77}.weapon-selector.svelte-mpifkm.svelte-mpifkm{display:flex;flex-direction:column;height:100%;color:#383b40}.weapon-selector.svelte-mpifkm.svelte-mpifkm,.weapon-selector.svelte-mpifkm>div.svelte-mpifkm{position:relative;padding:5%}.weapon-selector.svelte-mpifkm .bg.svelte-mpifkm{position:absolute;width:90%;top:50%;left:50%;transform:translate(-50%, -50%)}.counter.weapon-selector.svelte-mpifkm .bg.svelte-mpifkm{width:110%;top:48%}.top.svelte-mpifkm.svelte-mpifkm{font-size:calc(3 / 100 * var(--modal-width));white-space:nowrap}.weapon-item.svelte-mpifkm.svelte-mpifkm{display:flex;flex-direction:column;height:100%;border:solid #dcd8cd;border-width:3px 0;font-size:x-large;padding-left:0 !important;padding-right:0 !important}.counter.svelte-mpifkm .weapon-item.svelte-mpifkm{border:0}.weapon-list.svelte-mpifkm.svelte-mpifkm{height:100%;width:100%;padding:0 10%;background-color:#dcd8cd;display:flex;justify-content:center;align-items:center;overflow:hidden;text-align:center;color:#3a4156;line-height:1.2rem}.counter.svelte-mpifkm .weapon-list.svelte-mpifkm{background-color:transparent}.weapon-content.svelte-mpifkm.svelte-mpifkm{display:inline-block;padding:5%;width:50%}.weapon-content.svelte-mpifkm button.svelte-mpifkm{font-size:small;aspect-ratio:8.75 / 10;position:relative;vertical-align:middle;width:100%}.mobile .weapon-content.svelte-mpifkm button.svelte-mpifkm{font-size:xx-small}.weapon-content.active.svelte-mpifkm button.svelte-mpifkm::after,.weapon-content.active.svelte-mpifkm button.svelte-mpifkm::before{position:absolute;right:0;top:0}.weapon-content.active.svelte-mpifkm button.svelte-mpifkm::after{display:block;content:'';width:100%;height:calc(100% - 0.4rem);border:solid #bed634;border-width:0.2rem 0;border-radius:0.3rem}.weapon-content.active.svelte-mpifkm button.svelte-mpifkm::before{content:'\u2714';font-size:1.2rem;color:#759a28;display:flex;justify-content:center;align-items:center;background-color:#bed634;width:20%;height:20%;z-index:+1;border-top-right-radius:0.5em}.text.svelte-mpifkm.svelte-mpifkm{margin-top:auto;height:40%;display:flex;justify-content:center;align-items:center}span.svelte-mpifkm.svelte-mpifkm,p.svelte-mpifkm span,.text.svelte-mpifkm span{color:#f0b164}.counter.svelte-mpifkm .text.svelte-mpifkm{height:unset;margin-bottom:-1rem}button.svelte-mpifkm i.svelte-mpifkm{width:2rem;height:2rem;background-color:#353533;border-radius:100%;display:inline-flex;justify-content:center;align-items:center;font-size:1rem;margin-right:2rem}@media screen and (max-width: 800px) and (min-width: 500px){.weapon-item.svelte-mpifkm.svelte-mpifkm{font-size:medium}}.mobile .text.svelte-mpifkm.svelte-mpifkm{height:30%}.mobile .counter.svelte-mpifkm .text.svelte-mpifkm{height:unset;margin-bottom:-1rem}.mobile .weapon-item.svelte-mpifkm.svelte-mpifkm{font-size:small}",
-  map: null
-};
-const EpitomizedPath = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let half;
-  let defaultItemWidth;
-  let $activeVersion, $$unsubscribe_activeVersion;
-  let $viewportHeight, $$unsubscribe_viewportHeight;
-  let $activeBanner, $$unsubscribe_activeBanner;
-  let $bannerList, $$unsubscribe_bannerList;
-  let $viewportWidth, $$unsubscribe_viewportWidth;
-  let $t, $$unsubscribe_t;
-  let $assets, $$unsubscribe_assets;
-  let $json, $$unsubscribe_json;
-  let $$unsubscribe_course;
-  $$unsubscribe_activeVersion = subscribe(activeVersion, (value) => $activeVersion = value);
-  $$unsubscribe_viewportHeight = subscribe(viewportHeight, (value) => $viewportHeight = value);
-  $$unsubscribe_activeBanner = subscribe(activeBanner, (value) => $activeBanner = value);
-  $$unsubscribe_bannerList = subscribe(bannerList, (value) => $bannerList = value);
-  $$unsubscribe_viewportWidth = subscribe(viewportWidth, (value) => $viewportWidth = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  $$unsubscribe_json = subscribe(oe, (value) => $json = value);
-  $$unsubscribe_course = subscribe(course, (value) => value);
-  const weapons = $bannerList[$activeBanner].featured.map(({ name }) => getWpDetails(name));
-  let itemWidth;
-  let clientWidth;
-  let content;
-  let targetActive = null;
-  const handleClose = getContext("handleEpitomizedModal");
-  const closePath = () => {
-    handleClose();
-    playSfx("close");
-    playSfx("bookflip");
-  };
-  const setCourse = () => {
-    if (targetActive === null)
-      return;
-    playSfx("click");
-    const { patch, phase } = $activeVersion;
-    const localFate = fatepointManager.init({ version: patch, phase });
-    localFate.set(0, targetActive);
-    course.set({ selected: targetActive, point: 0 });
-    handleClose();
-  };
-  hotkeys("left,right", "epipath", (e) => {
-    e.preventDefault();
-    playSfx("click2");
-    const [key] = hotkeys.getPressedKeyString();
-    const to = key.toLocaleLowerCase();
-    if (to === "left") {
-      targetActive = targetActive <= 0 ? 1 : targetActive - 1;
-    }
-    if (to === "right") {
-      targetActive = targetActive >= 1 ? 0 : targetActive + 1;
-    }
-  });
-  hotkeys("enter", "epipath", (e) => {
-    e.preventDefault();
-    if (targetActive === null)
-      return;
-    setCourse();
-  });
-  hotkeys("esc,e", "epipath", (e) => {
-    e.preventDefault();
-    closePath();
-  });
-  hotkeys.setScope("epipath");
-  onDestroy(() => hotkeys.deleteScope("epipath", "index"));
-  $$result.css.add(css$3);
-  half = $viewportWidth < 500;
-  defaultItemWidth = 16.5 / 100 * $viewportHeight;
-  {
-    if (itemWidth < 150)
-      itemWidth = 150;
-    else
-      itemWidth = defaultItemWidth;
-  }
-  $$unsubscribe_activeVersion();
-  $$unsubscribe_viewportHeight();
-  $$unsubscribe_activeBanner();
-  $$unsubscribe_bannerList();
-  $$unsubscribe_viewportWidth();
-  $$unsubscribe_t();
-  $$unsubscribe_assets();
-  $$unsubscribe_json();
-  $$unsubscribe_course();
-  return `${``}
-
-<section class="${"modal svelte-mpifkm"}" style="${"height:" + escape($viewportHeight, true) + "px"}"><div class="${"modal-content svelte-mpifkm"}" style="${"--modal-width: " + escape(clientWidth, true) + "px"}"><img${add_attribute("src", $assets[`fatepointbook${half ? "-half" : ""}.webp`], 0)} alt="${"Fatepoint Background"}" class="${"svelte-mpifkm"}">
-		<button class="${"close-modal svelte-mpifkm"}"><i class="${"gi-close svelte-mpifkm"}"></i></button>
-		<div class="${"container svelte-mpifkm"}">${!half ? `<div class="${"description svelte-mpifkm"}"><h1 class="${"svelte-mpifkm"}">${escape($t("wish.epitomizedPath.text"))}</h1>
-					<div class="${"content svelte-mpifkm"}"${add_attribute("this", content, 0)}>${each($json("wish.epitomizedPath.description"), (desc) => {
-    return `<p class="${"svelte-mpifkm"}">\xB7 <!-- HTML_TAG_START -->${desc}<!-- HTML_TAG_END -->
-							</p>`;
-  })}</div></div>` : ``}
-			<div class="${["weapon-selector svelte-mpifkm", ""].join(" ").trim()}"><div class="${"bg svelte-mpifkm"}">${validate_component(Svg_background, "FatepointSVG").$$render($$result, { mode: "bg" }, {}, {})}</div>
-				<div class="${"top svelte-mpifkm"}">${escape($t("wish.epitomizedPath.selectWeapon"))}</div>
-				<div class="${"weapon-item svelte-mpifkm"}"><div class="${"weapon-list svelte-mpifkm"}" style="${"--item-width: " + escape(itemWidth, true) + "px"}">${`${each(weapons, ({ name, weaponType }, i) => {
-    return `<div class="${["weapon-content svelte-mpifkm", targetActive === i ? "active" : ""].join(" ").trim()}"><button class="${"svelte-mpifkm"}">${validate_component(Inventory_item, "InventoryItem").$$render(
-      $$result,
-      {
-        itemdata: {
-          name,
-          weaponType,
-          type: "weapon",
-          rarity: 5
-        }
-      },
-      {},
-      {}
-    )}</button>
-								</div>`;
-  })}`}</div>
-					<div class="${"text svelte-mpifkm"}"><div>${`${targetActive === null ? `${escape($t("wish.epitomizedPath.selectWeapon"))}` : `<!-- HTML_TAG_START -->${$t("wish.epitomizedPath.chartCourseOf", {
-    values: {
-      target: `<span> ${$t(weapons[targetActive].name)} </span>`
-    }
-  })}<!-- HTML_TAG_END -->`}`}</div></div></div>
-				<div class="${"button svelte-mpifkm"}">${`${validate_component(ButtonModal, "ButtonModal").$$render($$result, { disabled: targetActive === null }, {}, {
-    default: () => {
-      return `${escape($t("wish.epitomizedPath.chartCourse"))}`;
-    }
-  })}`}</div></div></div></div>
-</section>`;
-});
-const _meteor_svelte_svelte_type_style_lang = "";
-const css$2 = {
-  code: ".meteor-wrapper.svelte-n0dhm5{width:100vw;height:var(--screen-height);position:absolute;top:0;left:0}.meteor-wrapper.show.svelte-n0dhm5{display:block;background-color:#fff}.video.svelte-n0dhm5{position:relative;width:100vw;height:100%}.skip.svelte-n0dhm5{position:absolute;top:30px;right:2%;color:#fff;font-size:1.2rem;z-index:10}.gi-caret-up.svelte-n0dhm5{display:inline-block;transform:rotate(90deg) translateX(-0.1rem);vertical-align:middle;margin-left:-0.5em}.mobile .skip.svelte-n0dhm5{font-size:0.8rem;top:0.3rem;right:6%}video.svelte-n0dhm5{display:none;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:105%;height:105%;-o-object-fit:cover;object-fit:cover}",
-  map: null
-};
-const Meteor = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let { rarity = 3 } = $$props;
-  let { show = false } = $$props;
-  let { isSingle = false } = $$props;
-  let v3star;
-  let v4starSingle;
-  let v4star;
-  let v5starSingle;
-  let v5star;
-  let showSkipButton = false;
-  const showSplashArt = getContext("showSplashArt");
-  const meteorEnd = ({ skip: skip2 = false } = {}) => {
-    showSplashArt({ skip: skip2 });
-    showSkipButton = false;
-  };
-  const skip = () => {
-    playSfx();
-    const videoDOMS = [v3star, v4starSingle, v4star, v5starSingle, v5star];
-    meteorEnd({ skip: true });
-    videoDOMS.forEach((video) => {
-      video.load();
-      video.style.display = "none";
-    });
-  };
-  const showVideoHandle = async (rarity2, single = true) => {
-    const muted = localConfig.get("muted");
-    let videoContent = v3star;
-    if (single && rarity2 !== 3) {
-      videoContent = rarity2 === 5 ? v5starSingle : v4starSingle;
-    }
-    if (!single && rarity2 !== 3) {
-      videoContent = rarity2 === 5 ? v5star : v4star;
-    }
-    if (!videoContent || videoContent.error || isNaN(videoContent.duration)) {
-      const message = $t("wish.result.meteorFailed");
-      pushToast({ message });
-      console.error("Can't play Meteor Animation because it cannot be loaded", videoContent.error);
-      return meteorEnd();
-    }
-    videoContent.style.display = "unset";
-    videoContent.muted = !!muted;
-    await videoContent.play();
-    return;
-  };
-  hotkeys("esc", "index", (e) => {
-    if (!show)
-      return;
-    e.preventDefault();
-    skip();
-  });
-  hotkeys("enter", "index", (e) => {
-    if (!show)
-      return;
-    e.preventDefault();
-    if (showSkipButton)
-      return skip();
-    showSkipButton = true;
-  });
-  if ($$props.rarity === void 0 && $$bindings.rarity && rarity !== void 0)
-    $$bindings.rarity(rarity);
-  if ($$props.show === void 0 && $$bindings.show && show !== void 0)
-    $$bindings.show(show);
-  if ($$props.isSingle === void 0 && $$bindings.isSingle && isSingle !== void 0)
-    $$bindings.isSingle(isSingle);
-  $$result.css.add(css$2);
-  {
-    if (show)
-      showVideoHandle(rarity, isSingle);
-  }
-  $$unsubscribe_t();
-  $$unsubscribe_assets();
-  return `<div class="${["meteor-wrapper svelte-n0dhm5", show ? "show" : ""].join(" ").trim()}"><div class="${"video svelte-n0dhm5"}"><video${add_attribute("src", $assets["3star-single.mp4"], 0)} type="${"video/mp4"}" class="${"svelte-n0dhm5"}"${add_attribute("this", v3star, 0)}><track kind="${"captions"}"></video>
-
-		<video${add_attribute("src", $assets["4star-single.mp4"], 0)} type="${"video/mp4"}" class="${"svelte-n0dhm5"}"${add_attribute("this", v4starSingle, 0)}><track kind="${"captions"}"></video>
-
-		<video${add_attribute("src", $assets["4star-multi.mp4"], 0)} type="${"video/mp4"}" class="${"svelte-n0dhm5"}"${add_attribute("this", v4star, 0)}><track kind="${"captions"}"></video>
-
-		<video${add_attribute("src", $assets["5star-single.mp4"], 0)} type="${"video/mp4"}" class="${"svelte-n0dhm5"}"${add_attribute("this", v5starSingle, 0)}><track kind="${"captions"}"></video>
-
-		<video${add_attribute("src", $assets["5star-multi.mp4"], 0)} type="${"video/mp4"}" class="${"svelte-n0dhm5"}"${add_attribute("this", v5star, 0)}><track kind="${"captions"}"></video>
-
-		${showSkipButton ? `<button class="${"skip svelte-n0dhm5"}">${escape($t("wish.result.skip"))} <i class="${"gi-caret-up svelte-n0dhm5"}"></i></button>` : ``}</div>
-</div>`;
-});
-const index_svelte_svelte_type_style_lang = "";
-const css$1 = {
-  code: "section.svelte-lltch{width:100%;height:100%;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;overflow:hidden;background-repeat:no-repeat;background-position:center;background-size:cover;background-position:20%}.overlay.svelte-lltch{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:block;width:100%;height:100%;background-color:rgba(0, 0, 0, 0.08);box-shadow:0 0 50vh rgba(0, 0, 0, 0.4) inset}.wish-container.svelte-lltch{position:fixed;width:100%;height:100%;z-index:15;top:0;left:0;pointer-events:none}.wish-container.show.svelte-lltch{pointer-events:unset}.top.svelte-lltch,.banner.svelte-lltch,.button.svelte-lltch,.item.svelte-lltch{display:block;width:100%}.top.svelte-lltch{min-height:70px}.banner.svelte-lltch,.item.svelte-lltch{height:100%}.item.svelte-lltch{position:relative}.banner.svelte-lltch{display:flex;justify-content:center;flex-direction:column}.button.svelte-lltch{height:120px}.mobile section.svelte-lltch{flex-direction:row}.mobile .top.svelte-lltch{height:100%;width:-webkit-min-content;width:-moz-min-content;width:min-content}.mobile .banner.svelte-lltch{width:120%;margin-left:-20px}.mobile .button.svelte-lltch{height:50px;margin-bottom:0.2rem}",
-  map: null
-};
-const Wish = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let nowBanner;
-  let bannerType;
-  let isEvent;
-  let currencyUsed;
-  let isUnlimited;
-  let $bannerList, $$unsubscribe_bannerList;
-  let $$unsubscribe_customData;
-  let $wishAmount, $$unsubscribe_wishAmount;
-  let $acquaint, $$unsubscribe_acquaint;
-  let $intertwined, $$unsubscribe_intertwined;
-  let $activeBanner, $$unsubscribe_activeBanner;
-  let $t, $$unsubscribe_t;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_bannerList = subscribe(bannerList, (value) => $bannerList = value);
-  $$unsubscribe_customData = subscribe(customData, (value) => value);
-  $$unsubscribe_wishAmount = subscribe(wishAmount, (value) => $wishAmount = value);
-  $$unsubscribe_acquaint = subscribe(acquaint, (value) => $acquaint = value);
-  $$unsubscribe_intertwined = subscribe(intertwined, (value) => $intertwined = value);
-  $$unsubscribe_activeBanner = subscribe(activeBanner, (value) => $activeBanner = value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let rollCount = 0;
-  let result = [];
-  let WishInstance;
-  let type;
-  const getIndexOfCharBanner = () => {
-    const events = $bannerList.filter(({ type: type2 }) => type2 === "character-event");
-    const index = events.findIndex(({ character }) => character === nowBanner.character);
-    return index;
-  };
-  let openEpitomized = false;
-  const handleEpitomizedModal = () => openEpitomized = !openEpitomized;
-  setContext("handleEpitomizedModal", handleEpitomizedModal);
-  let multi = false;
-  let rollCost;
-  let showConvertModal = false;
-  let onWish = getContext("onWish");
-  const doRoll = async (count, bannerToRoll) => {
-    rollCount = count;
-    multi = count > 1;
-    const tmp = [];
-    rollCost = bannerToRoll === "beginner" ? 8 : count;
-    if (!isUnlimited && rollCost > currencyUsed)
-      return showConvertModal = true;
-    const indexOfCharBanner = bannerToRoll === "character-event" ? getIndexOfCharBanner() : 0;
-    onWish.set(true);
-    for (let i = 0; i < count; i++) {
-      const result2 = await roll(bannerToRoll, WishInstance, indexOfCharBanner);
-      tmp.push(result2);
-    }
-    result = tmp;
-    handleMeteorAnimation();
-    if (isUnlimited)
-      return;
-    updateMilestones();
-    updateFatesBalance(bannerToRoll);
-  };
-  setContext("doRoll", doRoll);
-  const updateFatesBalance = (banner) => {
-    const isAcquaint = ["beginner", "standard", "member"].includes(banner);
-    const funds = isAcquaint ? acquaint : intertwined;
-    funds.update((n) => {
-      const afterUpdate = n - (banner === "beginner" && rollCount > 1 ? 8 : rollCount);
-      localBalance.set(isAcquaint ? "acquaint" : "intertwined", afterUpdate);
-      return afterUpdate;
-    });
-  };
-  const updateMilestones = () => {
-    const update = (type2) => {
-      const qty = result.reduce(
-        (prev, { bonusQty, bonusType }) => {
-          return prev + (bonusType === type2 ? bonusQty : 0);
-        },
-        0
-      );
-      const milestone = type2 === "stardust" ? stardust : starglitter;
-      milestone.update((n) => {
-        const afterUpdate = n + qty;
-        localBalance.set(type2, afterUpdate);
-        return afterUpdate;
-      });
-    };
-    update("starglitter");
-    update("stardust");
-  };
-  let skipSplashArt = false;
-  let showWishResult = false;
-  let showMeteor = false;
-  let single = true;
-  let meteorStar = 3;
-  const closeResult = () => {
-    showWishResult = false;
-    onWish.set(false);
-    checkObtained();
-  };
-  setContext("closeResult", closeResult);
-  const showSplashArt = ({ skip = false } = {}) => {
-    skipSplashArt = skip;
-    showMeteor = false;
-    showWishResult = true;
-  };
-  setContext("showSplashArt", showSplashArt);
-  const handleMeteorAnimation = () => {
-    const autoSkip = localConfig.get("autoskip");
-    if (autoSkip)
-      return showSplashArt({ skip: true });
-    if (bannerType === "member") {
-      meteorStar = Math.floor(Math.random() * 3) + 3;
-    } else {
-      const stars = result.map(({ rarity }) => rarity);
-      single = stars.length === 1;
-      meteorStar = 3;
-      if (stars.includes(4))
-        meteorStar = 4;
-      if (stars.includes(5))
-        meteorStar = 5;
-    }
-    showMeteor = true;
-  };
-  const closeModal = () => {
-    playSfx("close");
-    showConvertModal = false;
-  };
-  setContext("closeModal", closeModal);
-  const reroll = (amount) => {
-    playSfx();
-    const multiAmount = bannerType === "beginner" ? 10 : amount;
-    doRoll(multi ? multiAmount : 1, bannerType);
-    showConvertModal = false;
-  };
-  setContext("reroll", reroll);
-  const countMilestone = (masterless) => {
-    return result.reduce(
-      (a, { bonusType, bonusQty }) => {
-        return a + (bonusType === masterless ? bonusQty : 0);
-      },
-      0
-    );
-  };
-  const showObtained = getContext("openObtained");
-  const checkObtained = () => {
-    const stardustQty = countMilestone("stardust");
-    const starglitterQty = countMilestone("starglitter");
-    const obtainedItems = [
-      { item: "stardust", qty: stardustQty },
-      { item: "starglitter", qty: starglitterQty }
-    ];
-    if (!stardustQty && !starglitterQty)
-      return;
-    showObtained(obtainedItems);
-  };
-  $$result.css.add(css$1);
-  nowBanner = $bannerList[$activeBanner] || {};
-  ({ type } = nowBanner);
-  bannerType = type || "";
-  isEvent = bannerType.match("event");
-  currencyUsed = isEvent ? $intertwined : $acquaint;
-  isUnlimited = $wishAmount === "unlimited";
-  $$unsubscribe_bannerList();
-  $$unsubscribe_customData();
-  $$unsubscribe_wishAmount();
-  $$unsubscribe_acquaint();
-  $$unsubscribe_intertwined();
-  $$unsubscribe_activeBanner();
-  $$unsubscribe_t();
-  $$unsubscribe_assets();
-  return `${$$result.head += `${$$result.title = `<title>${escape($t("title", { default: APP_TITLE }))}</title>`, ""}`, ""}
-
-<div class="${"overlay svelte-lltch"}"></div>
-
-<div class="${["wish-container svelte-lltch", showMeteor || showWishResult ? "show" : ""].join(" ").trim()}">${validate_component(Meteor, "Meteor").$$render(
-    $$result,
-    {
-      show: showMeteor,
-      isSingle: single,
-      rarity: meteorStar
-    },
-    {},
-    {}
-  )}
-	${showWishResult ? `${validate_component(WishResult, "WishResult").$$render(
-    $$result,
-    {
-      list: result,
-      skip: skipSplashArt,
-      bannerType
-    },
-    {},
-    {}
-  )}` : ``}</div>
-
-<section style="${"background-image: url('" + escape($assets["wish-background.webp"], true) + "');"}" class="${"svelte-lltch"}"><div class="${"col top svelte-lltch"}">${validate_component(Header, "Header").$$render($$result, { bannerType }, {}, {})}</div>
-
-	<div class="${"col banner svelte-lltch"}"><div class="${"item svelte-lltch"}">${validate_component(Banner_item, "BannerItem").$$render($$result, {}, {}, {})}</div>
-
-		<div class="${"col button svelte-lltch"}">${validate_component(Footer, "Footer").$$render($$result, { bannerType }, {}, {})}</div></div></section>
-
-${openEpitomized ? `${validate_component(EpitomizedPath, "EpitomizedModal").$$render($$result, {}, {}, {})}` : ``}
-
-${showConvertModal ? `${validate_component(Out_of_primogem, "OutOfPrimogem").$$render($$result, { isEventBanner: isEvent, rollCost }, {}, {})}` : ``}`;
-});
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "video.svelte-1r57nh7{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:20%;object-position:20%}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_page;
-  let $onWish, $$unsubscribe_onWish;
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_page = subscribe(page, (value) => value);
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  let pageActive = "index";
-  let showWelcomeModal = true;
-  let appReady = writable(false);
-  let onWish = writable(false);
-  $$unsubscribe_onWish = subscribe(onWish, (value) => $onWish = value);
-  setContext("onWish", onWish);
-  setContext("appReady", appReady);
-  setContext("query", writable(""));
-  setContext("readyToPull", writable(true));
-  let animatedBG = localConfig.get("animatedBG");
-  const animatebg = () => animatedBG = localConfig.get("animatedBG");
-  setContext("animateBG", animatebg);
-  let showWelkinScreen = false;
-  const welkinCheckin = () => {
-    const { remaining, diff, latestCheckIn } = dailyWelkin.getData();
-    showWelkinScreen = remaining > 0 && remaining - diff >= 0 && diff > 0;
-    if (latestCheckIn)
-      return dailyWelkin.checkin();
-  };
-  setContext("closeWelkin", () => showWelkinScreen = false);
-  const startApp = () => {
-    appReady.set(true);
-    hotkeys.setScope("index");
-    showWelcomeModal = false;
-    welkinCheckin();
-    playSfx();
-  };
-  setContext("startApp", startApp);
-  let showMenu = false;
-  const handleMenu = (act) => {
-    showMenu = !showMenu;
-    if (act === "mute")
-      return;
-    playSfx(!showMenu ? "close" : "click");
-  };
-  setContext("handleMenu", handleMenu);
-  const navigate = (page2) => {
-    let beforeNavigate = pageActive;
-    pageActive = page2;
-    showMenu = false;
-    hotkeys.setScope(page2);
-    if (beforeNavigate === pageActive)
-      return;
-    hotkeys.deleteScope(beforeNavigate);
-    if (beforeNavigate !== "index")
-      return browserState.back();
-    browserState.set(page2);
-  };
-  setContext("navigate", navigate);
-  getContext("bannerLoaded");
-  let showObtained = false;
-  let obtainedData = {};
-  const openObtained = (data2) => {
-    obtainedData = data2;
-    showObtained = true;
-  };
-  const closeObtained = () => {
-    showObtained = false;
-    obtainedData = {};
-    playSfx("close");
-  };
-  setContext("openObtained", openObtained);
-  setContext("closeObtained", closeObtained);
-  let showConvertModal = false;
-  setContext("openConvertModal", () => showConvertModal = true);
-  setContext("closeConvertModal", () => showConvertModal = false);
-  let showChat = false;
-  const chatToggle = () => {
-    showChat = !showChat;
-    playSfx(showChat ? "shopnav" : "close");
-  };
-  setContext("chatToggle", chatToggle);
-  $$result.css.add(css);
-  {
-    if (!showWelcomeModal) {
-      if (pageActive !== "index" || $onWish)
-        pauseSfx("wishBacksound");
-      else
-        playSfx("wishBacksound");
-    }
-  }
-  {
-    hotkeys("o", pageActive, chatToggle);
-  }
-  $$unsubscribe_page();
-  $$unsubscribe_onWish();
-  $$unsubscribe_assets();
-  return `${`error bos`}
-
-${animatedBG && pageActive.match(/(index|detail|history)/) && !$onWish ? `<video muted loop autoplay type="${"video/webm"}"${add_attribute("src", $assets["bg.webm"], 0)}${add_attribute("poster", $assets["wish-background.webp"], 0)} class="${"svelte-1r57nh7"}"><track kind="${"captions"}"></video>` : ``}
-
-
-${pageActive === "index" ? `${validate_component(Wish, "MainWish").$$render($$result, {}, {}, {})}
-
-	${showMenu ? `${validate_component(missing_component, "svelte:component").$$render($$result, {}, {}, {})}` : ``}
-
-	` : `${pageActive === "allbanners" ? `${validate_component(missing_component, "svelte:component").$$render($$result, {}, {}, {})}
-
-	` : `${pageActive === "details" ? `${validate_component(missing_component, "svelte:component").$$render($$result, { page: "details" }, {}, {})}
-
-	` : `${pageActive === "history" ? `${validate_component(missing_component, "svelte:component").$$render($$result, { page: "history" }, {}, {})}
-
-	` : `${pageActive === "inventory" ? `${validate_component(missing_component, "svelte:component").$$render($$result, {}, {}, {})}
-
-	` : `${pageActive === "shop" ? `${validate_component(missing_component, "svelte:component").$$render($$result, {}, {}, {})}` : ``}`}`}`}`}`}
-
-${showObtained ? `${validate_component(missing_component, "svelte:component").$$render($$result, { data: obtainedData }, {}, {})}` : ``}
-
-
-${showConvertModal ? `${validate_component(missing_component, "svelte:component").$$render($$result, {}, {}, {})}` : ``}
-
-
-
-${showWelkinScreen ? `${validate_component(WelkinCheckin, "WelkinCheckin").$$render($$result, {}, {}, {})}` : ``}
-
-
-
-${validate_component(PreloadMeteor, "PreloadMeteor").$$render($$result, {}, {}, {})}`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/adkey/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/adkey/_page.svelte.js
deleted file mode 100644
index 739f408f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/adkey/_page.svelte.js
+++ /dev/null
@@ -1,56 +0,0 @@
-import { c as create_ssr_component, a as subscribe, d as add_attribute, v as validate_component, e as escape } from "../../../chunks/index.js";
-import "howler";
-import { d as assets } from "../../../chunks/app-stores.js";
-import { B as ButtonModal } from "../../../chunks/ButtonModal.js";
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-rwed1l{width:100%;height:100%;position:relative;display:flex;justify-content:center;align-items:center}.bg.svelte-rwed1l{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:110%;height:110%;-o-object-fit:cover;object-fit:cover;filter:blur(5px)}.container.svelte-rwed1l{position:relative;z-index:+1;width:80%;height:70%;background-color:#ece6de;padding:2rem;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.gi-primo-star.svelte-rwed1l{color:#fdf0ac;font-size:1.5rem;display:inline-block;position:absolute;filter:drop-shadow(0 0 7px rgba(227, 149, 48, 0.9))}.top-left.svelte-rwed1l{top:-0.8rem;left:-0.5rem;transform:rotate(-45deg)}.top-right.svelte-rwed1l{top:-0.8rem;right:-0.5rem;transform:rotate(45deg)}.bottom-left.svelte-rwed1l{bottom:-0.8rem;left:-0.5rem;transform:rotate(-135deg)}.bottom-right.svelte-rwed1l{bottom:-0.8rem;right:-0.5rem;transform:rotate(135deg)}.icon-bg.svelte-rwed1l{font-size:17em;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);color:#e4dcce;z-index:-1}h1.svelte-rwed1l{font-size:200%;line-height:120%}h2.svelte-rwed1l{font-size:120%;line-height:120%;padding:0.6rem 0}p.svelte-rwed1l{font-size:105%;display:block;margin:0 auto;width:80%}@media screen and (max-width: 900px){p.svelte-rwed1l{font-size:120%}}.form.svelte-rwed1l{margin:3vh 0;width:100%}.input.svelte-rwed1l{width:80%;max-width:30rem;text-align:center;display:block;margin:0 auto}input.svelte-rwed1l{width:100%;padding:0 1.5rem;height:3rem;display:block;border-radius:3rem;border:#c3b8a5 1px solid;outline:none;transition:all 0.2s}input.svelte-rwed1l:focus{box-shadow:0 0 0.4rem rgba(227, 149, 48, 0.7)}input.error.svelte-rwed1l{border:#de2f22 1px solid}input.error.svelte-rwed1l:focus{box-shadow:0 0 0.4rem rgba(222, 47, 34, 0.7)}.button.svelte-rwed1l{margin-top:1.5vh}.error.svelte-rwed1l{color:#de2f22}.valid.svelte-rwed1l{color:#64ad15}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $assets, $$unsubscribe_assets;
-  $$unsubscribe_assets = subscribe(assets, (value) => $assets = value);
-  const random = (min, max) => {
-    min = Math.ceil(min);
-    max = Math.floor(max);
-    return Math.floor(Math.random() * (max - min + 1)) + min;
-  };
-  let input = "";
-  $$result.css.add(css);
-  $$unsubscribe_assets();
-  return `${$$result.head += `${$$result.title = `<title>Genshin Impact Wish Simulator</title>`, ""}`, ""}
-
-<section class="${"svelte-rwed1l"}"><img class="${"bg svelte-rwed1l"}"${add_attribute("src", $assets[`bg${random(1, 20)}.webp`], 0)} alt="${"background"}">
-	<div class="${"container svelte-rwed1l"}"><i class="${"gi-primo-star top-left svelte-rwed1l"}"></i>
-		<i class="${"gi-primo-star top-right svelte-rwed1l"}"></i>
-		<i class="${"gi-primo-star bottom-left svelte-rwed1l"}"></i>
-		<i class="${"gi-primo-star bottom-right svelte-rwed1l"}"></i>
-		<i class="${"gi-inazuma icon-bg svelte-rwed1l"}"></i>
-
-		<h1 class="${"svelte-rwed1l"}">Genshin Impact Wish Simulator</h1>
-		<h2 class="${"svelte-rwed1l"}">This Page is only available for supporters.</h2>
-
-		<form class="${"form svelte-rwed1l"}"><div class="${"input svelte-rwed1l"}"><input type="${"text"}" placeholder="${"Input Access Key"}" class="${["svelte-rwed1l", ""].join(" ").trim()}"${add_attribute("value", input, 0)}>
-				${``}
-
-				${``}</div>
-			<div class="${"button svelte-rwed1l"}">${validate_component(ButtonModal, "ButtonModal").$$render(
-    $$result,
-    {
-      disabled: !input
-    },
-    {},
-    {
-      default: () => {
-        return `${escape("Start Simulator")}`;
-      }
-    }
-  )}</div></form>
-
-		<p class="${"svelte-rwed1l"}"><a href="${"https://ko-fi.com/post/AdFree-Wish-Simulator-Enjoy-Simulator-Without-Ads-G2G2DQ57O"}" target="${"_blank"}"><strong>Become a supporter here </strong></a> and get a opportunity to use the simulator without being distracted by Ads !
-		</p></div>
-</section>`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/bnlist/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/bnlist/_page.svelte.js
deleted file mode 100644
index c25d8001..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/bnlist/_page.svelte.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import { c as create_ssr_component, v as validate_component, d as add_attribute } from "../../../chunks/index.js";
-import { B as ButtonGeneral } from "../../../chunks/ButtonGeneral.js";
-import { R as RandomBackground } from "../../../chunks/RandomBackground.js";
-import "../../../chunks/env.js";
-import "idb";
-const _pagination_svelte_svelte_type_style_lang = "";
-const _list_svelte_svelte_type_style_lang = "";
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-33al2o{width:100%;height:100%;overflow-y:auto;position:relative;padding:1rem}.container.svelte-33al2o{padding:1rem;background-color:rgba(255, 255, 255, 0.8);position:relative;border-radius:1rem;z-index:+10}form.svelte-33al2o{width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;padding:2rem;text-align:center}input.svelte-33al2o{width:300px;max-width:90%;height:2.3rem;border-radius:4rem;border:0;outline:0;padding:0 1rem}.col.button.svelte-33al2o{padding-top:1rem}h1.svelte-33al2o{padding:1rem}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let pass = "";
-  $$result.css.add(css);
-  return `<section class="${"svelte-33al2o"}">${validate_component(RandomBackground, "Background").$$render($$result, {}, {}, {})}
-	<div class="${"container svelte-33al2o"}"><h1 class="${"svelte-33al2o"}">Control Banner</h1>
-
-		${`<form class="${"svelte-33al2o"}"><div class="${"col"}"><input type="${"text"}" class="${"svelte-33al2o"}"${add_attribute("value", pass, 0)}></div>
-				<div class="${"col button svelte-33al2o"}">${validate_component(ButtonGeneral, "ButtonGeneral").$$render($$result, {}, {}, {
-    default: () => {
-      return `Show List`;
-    }
-  })}</div></form>`}</div>
-</section>`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/install/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/install/_page.svelte.js
deleted file mode 100644
index c9a2e6e2..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/install/_page.svelte.js
+++ /dev/null
@@ -1,72 +0,0 @@
-import { c as create_ssr_component, a as subscribe, e as escape, j as null_to_empty } from "../../../chunks/index.js";
-import { Y } from "../../../chunks/runtime.esm.js";
-import { A as APP_TITLE } from "../../../chunks/env.js";
-import { i as isMobile } from "../../../chunks/app-stores.js";
-const html = `<h1>How To Install WishSimulator.App to your <span> Windows</span></h1>
-<h2>Why I need to Install it ?</h2>
-<p>You are not required to install it, the installed app is literally the same as the site, but I advise you to install it because it offers several advantages:</p>
-<ul>
-<li><strong>Simple to Access</strong>, you don't need to open browser and type url address manually, access the simulator from your Desktop directly.</li>
-<li><strong>Offline Capability</strong>, You can still open and run the simulator even if you don't have internet. But once the site has a new version, you have to connect it to the internet, the application will be updated automatically</li>
-</ul>
-<h2>Requirement</h2>
-<ul>
-<li>You must have a browser with a chromium base, for example <strong>Google Chrome, Ms.Edge, Brave, Duckduckgo or others</strong>. <strong>Mozilla and Opera</strong> can also be used too.</li>
-</ul>
-<h2>Steps</h2>
-<ol>
-<li>
-<p>First, Open the site (<strong>https://wishsimulator.app</strong>) with one of the browsers above.</p>
-</li>
-<li>
-<p>Wait for the site to finish loading, then just navigate to the address bar, then click the install icon on the right side</p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200633549-869ae8a3-f077-4865-b120-a3e2804026b2.jpg" alt="Windows Install"></p>
-<p>You can see the video below</p>
-<video src="https://user-images.githubusercontent.com/13815468/200639254-ef34490c-e18d-4b2e-b157-a99f9b426267.mp4" controls>
-</li>
-<li>
-<p>Congratulations, Now you can access the Simulator directly from your desktop!</p>
-</li>
-<li>
-<p>If You want to uninstall it, Just uninstall like a regular application. Click start -&gt; search &quot;Genshin Impact Wish Simulator&quot; -&gt; Click <strong>Uninstall</strong> option</p>
-<p><img src="https://user-images.githubusercontent.com/13815468/200641681-98bd462e-65f2-4ee4-8a49-227f9b8d333a.jpg" alt="OnPaste 20221109-010157"></p>
-</li>
-</ol>
-`;
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-y6ol5v.svelte-y6ol5v{width:100%;height:100%;overflow-y:auto;position:relative;background-color:#ebebeb}header.svelte-y6ol5v.svelte-y6ol5v{display:flex;padding:1rem 2%;justify-content:space-between;background-color:rgb(20, 18, 15);width:100%;position:-webkit-sticky;position:sticky;top:0;left:0;z-index:+10;color:#fff;font-size:1rem}footer.svelte-y6ol5v.svelte-y6ol5v{text-align:right;margin:2rem 0}footer.svelte-y6ol5v a.svelte-y6ol5v:hover{text-decoration:none}.select-device.svelte-y6ol5v.svelte-y6ol5v,footer.svelte-y6ol5v.svelte-y6ol5v{padding:1rem 10%}.select-device.svelte-y6ol5v button.svelte-y6ol5v,footer.svelte-y6ol5v a.svelte-y6ol5v{color:var(--text-color);margin:0 0.25rem;opacity:0.85;padding:0.5rem 1.2rem;font-size:1rem;border-radius:12rem;border:1px solid var(--text-color);transition:all 0.2s;display:inline-flex;align-items:center}.select-device.svelte-y6ol5v button.active.svelte-y6ol5v,.select-device.svelte-y6ol5v button.svelte-y6ol5v:hover,footer.svelte-y6ol5v a.svelte-y6ol5v{background-color:var(--text-color);color:#fff}.select-device.svelte-y6ol5v button.active.svelte-y6ol5v,footer.svelte-y6ol5v a.svelte-y6ol5v:hover{opacity:1}i.svelte-y6ol5v.svelte-y6ol5v{font-size:100%;margin-right:0.5rem}article.svelte-y6ol5v.svelte-y6ol5v{color:var(--text-color);padding:0 10%;font-size:120%}section.svelte-y6ol5v h1{font-size:1.7rem;text-align:left;background-color:#dadada;padding:0.5rem 5%;position:relative;font-family:var(--genshin-font)}.mobile section.svelte-y6ol5v h1{font-size:1.3rem}section.svelte-y6ol5v h1::before{content:'';display:block;position:absolute;width:0.8rem;height:80%;left:0;top:50%;transform:translateY(-50%);background-color:var(--text-color)}.android.svelte-y6ol5v h1 span{color:#64ad15}.windows.svelte-y6ol5v h1 span{color:#3f8ed1}section.svelte-y6ol5v h2{padding:1.5rem 0 0.5rem}section.svelte-y6ol5v ul,section.svelte-y6ol5v ol{font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;padding-left:1.5rem}section.svelte-y6ol5v p{padding:0.4rem 0;font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}section.svelte-y6ol5v img,section.svelte-y6ol5v video{max-width:100%;max-height:75vh}@media screen and (max-width: 780px){main:not(.mobile) article.svelte-y6ol5v.svelte-y6ol5v{padding:3.5rem 5% 0}main:not(.mobile) article.svelte-y6ol5v.svelte-y6ol5v{padding:0 5% !important}}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let tutor;
-  let $$unsubscribe_isMobile;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_isMobile = subscribe(isMobile, (value) => value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let selected = "windows";
-  $$result.css.add(css);
-  tutor = html;
-  $$unsubscribe_isMobile();
-  $$unsubscribe_t();
-  return `${$$result.head += `${$$result.title = `<title>
-		Install Instruction | ${escape($t("title", { default: APP_TITLE }))}
-	</title>`, ""}`, ""}
-
-<section class="${"svelte-y6ol5v"}"><header class="${"svelte-y6ol5v"}"><div class="${"brand"}"><a href="${"/"}">WishSimulator.App
-			</a></div></header>
-
-	<div class="${"select-device svelte-y6ol5v"}"><button class="${["svelte-y6ol5v", ""].join(" ").trim()}"><i class="${"gi-android svelte-y6ol5v"}"></i> Android
-		</button>
-		<button class="${["svelte-y6ol5v", "active"].join(" ").trim()}"><i class="${"gi-windows svelte-y6ol5v"}"></i> Windows
-		</button></div>
-
-	<article class="${escape(null_to_empty(selected), true) + " svelte-y6ol5v"}"><!-- HTML_TAG_START -->${tutor}<!-- HTML_TAG_END --></article>
-
-	<footer class="${"svelte-y6ol5v"}"><a href="${"/"}" class="${"svelte-y6ol5v"}">Start Wishing Now !
-		</a></footer>
-</section>`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/privacy-policy/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/privacy-policy/_page.svelte.js
deleted file mode 100644
index 9da6faca..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/privacy-policy/_page.svelte.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import { c as create_ssr_component, a as subscribe, e as escape } from "../../../chunks/index.js";
-import { Y } from "../../../chunks/runtime.esm.js";
-import { A as APP_TITLE } from "../../../chunks/env.js";
-const html = '<h2>Privacy Policy</h2>\n<p>WishSimulator.App operates the <em>https://wishsimulator.app</em> website, which provides the Free SERVICE.</p>\n<p>This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service, the WishSimulator.App website.</p>\n<p>If you choose to use our Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that we collect are used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy. Our Privacy Policy was created with the help of the <a href="https://www.privacypolicytemplate.net/">Privacy Policy Template Generator</a>.</p>\n<p>The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at <em>https://wishsimulator.app</em>, unless otherwise defined in this Privacy Policy.</p>\n<h2>Information Collection and Use</h2>\n<p>WishSimulator.App does not collect or store any personally identifiable information about you.</p>\n<p>However, the app may use third party services that may collect information used to identify you. The information that these third party services request will be retained on your device and is not collected by me in any way.</p>\n<h2>Service Providers</h2>\n<p>We may employ third-party companies and individuals due to the following reasons:</p>\n<ul>\n<li>To facilitate our Service</li>\n<li>To provide the Service on our behalf</li>\n<li>To perform Service-related services; or</li>\n<li>To assist us in analyzing how our Service is used.</li>\n</ul>\n<p>We want to inform our Service users that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.</p>\n<h2>Links to Other Sites</h2>\n<p>Our Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over, and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.</p>\n<h2>Changes to This Privacy Policy</h2>\n<p>We may update our Privacy Policy from time to time. Thus, we advise you to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately, after they are posted on this page.</p>\n<h2>Contact Us</h2>\n<p>If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact the author at admin@wishsimulator.app.</p>\n<p>This privacy policy page was created at <a href="https://privacypolicytemplate.net">privacypolicytemplate.net</a> and modified/generated by <strong>App Privacy Policy Generator</strong></p>\n';
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-15i5hk1.svelte-15i5hk1{width:100%;height:100%;overflow-y:auto;background-color:#ebebeb}header.svelte-15i5hk1.svelte-15i5hk1{height:20em;background-color:#458a74;display:flex;flex-direction:column;justify-content:center;align-items:center;color:#fff;background-image:url('https://user-images.githubusercontent.com/13815468/200537311-398f386d-00c3-4a5c-a338-54588c79095b.jpg');background-size:cover;position:relative}header.svelte-15i5hk1.svelte-15i5hk1::after{content:'';width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(0, 0, 0, 0.55)}header.svelte-15i5hk1 h1.svelte-15i5hk1,header.svelte-15i5hk1 h2.svelte-15i5hk1{position:relative;z-index:+1}header.svelte-15i5hk1 h1.svelte-15i5hk1{font-size:2rem}header.svelte-15i5hk1 h2.svelte-15i5hk1{font-size:large;margin-top:1rem}article.svelte-15i5hk1.svelte-15i5hk1{color:var(--text-color);padding:2% 10%;font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}article.svelte-15i5hk1 h2{font-family:var(--genshin-font);padding:1.5rem 0 0.5rem}article.svelte-15i5hk1 p{padding:0.4rem 0}article.svelte-15i5hk1 a{color:#dda04f}article.svelte-15i5hk1 ul{list-style-position:inside}@media screen and (max-width: 900px){header.svelte-15i5hk1 h1.svelte-15i5hk1{font-size:1.2rem}header.svelte-15i5hk1 h2.svelte-15i5hk1{font-size:1rem;margin-top:0.5rem}article.svelte-15i5hk1.svelte-15i5hk1{padding:2% 5%}}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  $$result.css.add(css);
-  $$unsubscribe_t();
-  return `${$$result.head += `${$$result.title = `<title>
-		Privacy Policy | ${escape($t("title", { default: APP_TITLE }))}
-	</title>`, ""}`, ""}
-
-<section class="${"svelte-15i5hk1"}"><header class="${"svelte-15i5hk1"}"><h1 class="${"svelte-15i5hk1"}">Privacy Policy for WishSimulator.App</h1>
-		<h2 class="${"svelte-15i5hk1"}">Genshin Impact Wish Simulator</h2></header>
-
-	<article class="${"svelte-15i5hk1"}"><!-- HTML_TAG_START -->${html}<!-- HTML_TAG_END --></article>
-</section>`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/_page.svelte.js
deleted file mode 100644
index 251680ec..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/_page.svelte.js
+++ /dev/null
@@ -1,7 +0,0 @@
-import { c as create_ssr_component } from "../../../chunks/index.js";
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  return ``;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/chars/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/chars/_page.svelte.js
deleted file mode 100644
index 55cbea6b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/chars/_page.svelte.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import { c as create_ssr_component, a as subscribe } from "../../../../chunks/index.js";
-import { p as page } from "../../../../chunks/stores.js";
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_page;
-  $$unsubscribe_page = subscribe(page, (value) => value);
-  $$unsubscribe_page();
-  return ``;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/wishitem/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/wishitem/_page.svelte.js
deleted file mode 100644
index 2db29abe..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/wishitem/_page.svelte.js
+++ /dev/null
@@ -1,41 +0,0 @@
-import { c as create_ssr_component, a as subscribe, e as escape, d as add_attribute, v as validate_component } from "../../../../chunks/index.js";
-import { p as page } from "../../../../chunks/stores.js";
-import { Y } from "../../../../chunks/runtime.esm.js";
-import { A as APP_TITLE } from "../../../../chunks/env.js";
-import { W as WishResult } from "../../../../chunks/WishResult.js";
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-1bfm8fx{width:100%;height:var(--screen-height)}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_page;
-  let $t, $$unsubscribe_t;
-  $$unsubscribe_page = subscribe(page, (value) => value);
-  $$unsubscribe_t = subscribe(Y, (value) => $t = value);
-  let list = [];
-  let itemName = "";
-  let isOutfit = false;
-  $$result.css.add(css);
-  $$unsubscribe_page();
-  $$unsubscribe_t();
-  return `${$$result.head += `${$$result.title = `<title>
-		${escape($t(`${itemName}.name`))} | ${escape($t("title"))}
-	</title>`, ""}<meta name="${"title"}"${add_attribute("content", APP_TITLE, 0)} data-svelte="svelte-h0ssec"><meta property="${"og:title"}"${add_attribute("content", APP_TITLE, 0)} data-svelte="svelte-h0ssec"><meta property="${"twitter:title"}"${add_attribute("content", APP_TITLE, 0)} data-svelte="svelte-h0ssec">`, ""}
-
-<section class="${"svelte-1bfm8fx"}">${list.length > 0 ? `${validate_component(WishResult, "WishResult").$$render(
-    $$result,
-    {
-      list,
-      isOutfit,
-      skip: true,
-      standalone: true
-    },
-    {},
-    {}
-  )}` : ``}
-</section>`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/wishlist/_page.svelte.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/wishlist/_page.svelte.js
deleted file mode 100644
index 56471355..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/entries/pages/screen/wishlist/_page.svelte.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import { c as create_ssr_component, a as subscribe, v as validate_component } from "../../../../chunks/index.js";
-import { p as page } from "../../../../chunks/stores.js";
-import { W as WishResult } from "../../../../chunks/WishResult.js";
-const _page_svelte_svelte_type_style_lang = "";
-const css = {
-  code: "section.svelte-1bfm8fx{width:100%;height:var(--screen-height)}",
-  map: null
-};
-const Page = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let $$unsubscribe_page;
-  $$unsubscribe_page = subscribe(page, (value) => value);
-  let list = [];
-  $$result.css.add(css);
-  $$unsubscribe_page();
-  return `<section class="${"svelte-1bfm8fx"}">${list.length > 1 ? `${validate_component(WishResult, "WishResult").$$render($$result, { list, skip: true, standalone: true }, {}, {})}` : ``}
-</section>`;
-});
-export {
-  Page as default
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/index.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/index.js
deleted file mode 100644
index 765a5c3c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/index.js
+++ /dev/null
@@ -1,2396 +0,0 @@
-var __defProp = Object.defineProperty;
-var __defNormalProp = (obj, key2, value) => key2 in obj ? __defProp(obj, key2, { enumerable: true, configurable: true, writable: true, value }) : obj[key2] = value;
-var __publicField = (obj, key2, value) => {
-  __defNormalProp(obj, typeof key2 !== "symbol" ? key2 + "" : key2, value);
-  return value;
-};
-var __accessCheck = (obj, member, msg) => {
-  if (!member.has(obj))
-    throw TypeError("Cannot " + msg);
-};
-var __privateGet = (obj, member, getter) => {
-  __accessCheck(obj, member, "read from private field");
-  return getter ? getter.call(obj) : member.get(obj);
-};
-var __privateAdd = (obj, member, value) => {
-  if (member.has(obj))
-    throw TypeError("Cannot add the same private member more than once");
-  member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
-};
-var __privateSet = (obj, member, value, setter) => {
-  __accessCheck(obj, member, "write to private field");
-  setter ? setter.call(obj, value) : member.set(obj, value);
-  return value;
-};
-var _use_hashes, _script_needs_csp, _style_needs_csp, _directives, _script_src, _style_src, _nonce;
-import { c as create_ssr_component, s as setContext, v as validate_component, m as missing_component } from "./chunks/index.js";
-import * as devalue from "devalue";
-import { r as readable, w as writable } from "./chunks/index2.js";
-import { parse, serialize } from "cookie";
-import * as set_cookie_parser from "set-cookie-parser";
-function afterUpdate() {
-}
-function set_prerendering(value) {
-}
-const Root = create_ssr_component(($$result, $$props, $$bindings, slots) => {
-  let { stores } = $$props;
-  let { page } = $$props;
-  let { components } = $$props;
-  let { form } = $$props;
-  let { data_0 = null } = $$props;
-  let { data_1 = null } = $$props;
-  {
-    setContext("__svelte__", stores);
-  }
-  afterUpdate(stores.page.notify);
-  if ($$props.stores === void 0 && $$bindings.stores && stores !== void 0)
-    $$bindings.stores(stores);
-  if ($$props.page === void 0 && $$bindings.page && page !== void 0)
-    $$bindings.page(page);
-  if ($$props.components === void 0 && $$bindings.components && components !== void 0)
-    $$bindings.components(components);
-  if ($$props.form === void 0 && $$bindings.form && form !== void 0)
-    $$bindings.form(form);
-  if ($$props.data_0 === void 0 && $$bindings.data_0 && data_0 !== void 0)
-    $$bindings.data_0(data_0);
-  if ($$props.data_1 === void 0 && $$bindings.data_1 && data_1 !== void 0)
-    $$bindings.data_1(data_1);
-  {
-    stores.page.set(page);
-  }
-  return `
-
-
-${components[1] ? `${validate_component(components[0] || missing_component, "svelte:component").$$render($$result, { data: data_0 }, {}, {
-    default: () => {
-      return `${validate_component(components[1] || missing_component, "svelte:component").$$render($$result, { data: data_1, form }, {}, {})}`;
-    }
-  })}` : `${validate_component(components[0] || missing_component, "svelte:component").$$render($$result, { data: data_0, form }, {}, {})}`}
-
-${``}`;
-});
-function negotiate(accept, types) {
-  const parts = [];
-  accept.split(",").forEach((str, i) => {
-    const match = /([^/]+)\/([^;]+)(?:;q=([0-9.]+))?/.exec(str);
-    if (match) {
-      const [, type, subtype, q = "1"] = match;
-      parts.push({ type, subtype, q: +q, i });
-    }
-  });
-  parts.sort((a, b) => {
-    if (a.q !== b.q) {
-      return b.q - a.q;
-    }
-    if (a.subtype === "*" !== (b.subtype === "*")) {
-      return a.subtype === "*" ? 1 : -1;
-    }
-    if (a.type === "*" !== (b.type === "*")) {
-      return a.type === "*" ? 1 : -1;
-    }
-    return a.i - b.i;
-  });
-  let accepted;
-  let min_priority = Infinity;
-  for (const mimetype of types) {
-    const [type, subtype] = mimetype.split("/");
-    const priority = parts.findIndex(
-      (part) => (part.type === type || part.type === "*") && (part.subtype === subtype || part.subtype === "*")
-    );
-    if (priority !== -1 && priority < min_priority) {
-      accepted = mimetype;
-      min_priority = priority;
-    }
-  }
-  return accepted;
-}
-function is_content_type(request, ...types) {
-  const type = request.headers.get("content-type")?.split(";", 1)[0].trim() ?? "";
-  return types.includes(type);
-}
-function is_form_content_type(request) {
-  return is_content_type(request, "application/x-www-form-urlencoded", "multipart/form-data");
-}
-class HttpError {
-  constructor(status, body) {
-    this.status = status;
-    if (typeof body === "string") {
-      this.body = { message: body };
-    } else if (body) {
-      this.body = body;
-    } else {
-      this.body = { message: `Error: ${status}` };
-    }
-  }
-  toString() {
-    return JSON.stringify(this.body);
-  }
-}
-class Redirect {
-  constructor(status, location) {
-    this.status = status;
-    this.location = location;
-  }
-}
-class ValidationError {
-  constructor(status, data) {
-    this.status = status;
-    this.data = data;
-  }
-}
-function coalesce_to_error(err) {
-  return err instanceof Error || err && err.name && err.message ? err : new Error(JSON.stringify(err));
-}
-function normalize_error(error2) {
-  return error2;
-}
-function normalize_path(path, trailing_slash) {
-  if (path === "/" || trailing_slash === "ignore")
-    return path;
-  if (trailing_slash === "never") {
-    return path.endsWith("/") ? path.slice(0, -1) : path;
-  } else if (trailing_slash === "always" && !path.endsWith("/")) {
-    return path + "/";
-  }
-  return path;
-}
-function decode_pathname(pathname) {
-  return pathname.split("%25").map(decodeURI).join("%25");
-}
-function decode_params(params) {
-  for (const key2 in params) {
-    params[key2] = decodeURIComponent(params[key2]);
-  }
-  return params;
-}
-const tracked_url_properties = ["href", "pathname", "search", "searchParams", "toString", "toJSON"];
-function make_trackable(url, callback) {
-  const tracked = new URL(url);
-  for (const property of tracked_url_properties) {
-    let value = tracked[property];
-    Object.defineProperty(tracked, property, {
-      get() {
-        callback();
-        return value;
-      },
-      enumerable: true,
-      configurable: true
-    });
-  }
-  {
-    tracked[Symbol.for("nodejs.util.inspect.custom")] = (depth, opts, inspect) => {
-      return inspect(url, opts);
-    };
-  }
-  disable_hash(tracked);
-  return tracked;
-}
-function disable_hash(url) {
-  Object.defineProperty(url, "hash", {
-    get() {
-      throw new Error(
-        "Cannot access event.url.hash. Consider using `$page.url.hash` inside a component instead"
-      );
-    }
-  });
-}
-function disable_search(url) {
-  for (const property of ["search", "searchParams"]) {
-    Object.defineProperty(url, property, {
-      get() {
-        throw new Error(`Cannot access url.${property} on a page with prerendering enabled`);
-      }
-    });
-  }
-}
-const DATA_SUFFIX = "/__data.json";
-function has_data_suffix(pathname) {
-  return pathname.endsWith(DATA_SUFFIX);
-}
-function add_data_suffix(pathname) {
-  return pathname.replace(/\/$/, "") + DATA_SUFFIX;
-}
-function strip_data_suffix(pathname) {
-  return pathname.slice(0, -DATA_SUFFIX.length);
-}
-function check_method_names(mod) {
-  ["get", "post", "put", "patch", "del"].forEach((m) => {
-    if (m in mod) {
-      const replacement = m === "del" ? "DELETE" : m.toUpperCase();
-      throw Error(
-        `Endpoint method "${m}" has changed to "${replacement}". See https://github.com/sveltejs/kit/discussions/5359 for more information.`
-      );
-    }
-  });
-}
-const GENERIC_ERROR = {
-  id: "__error"
-};
-function method_not_allowed(mod, method) {
-  return new Response(`${method} method not allowed`, {
-    status: 405,
-    headers: {
-      allow: allowed_methods(mod).join(", ")
-    }
-  });
-}
-function allowed_methods(mod) {
-  const allowed = [];
-  for (const method in ["GET", "POST", "PUT", "PATCH", "DELETE"]) {
-    if (method in mod)
-      allowed.push(method);
-  }
-  if (mod.GET || mod.HEAD)
-    allowed.push("HEAD");
-  return allowed;
-}
-function get_option(nodes, option) {
-  return nodes.reduce((value, node) => {
-    for (const thing of [node?.server, node?.shared]) {
-      if (thing && ("router" in thing || "hydrate" in thing)) {
-        throw new Error(
-          "`export const hydrate` and `export const router` have been replaced with `export const csr`. See https://github.com/sveltejs/kit/pull/6446"
-        );
-      }
-    }
-    return node?.shared?.[option] ?? node?.server?.[option] ?? value;
-  }, void 0);
-}
-function static_error_page(options, status, message) {
-  return new Response(options.error_template({ status, message }), {
-    headers: { "content-type": "text/html; charset=utf-8" },
-    status
-  });
-}
-function handle_fatal_error(event, options, error2) {
-  error2 = error2 instanceof HttpError ? error2 : coalesce_to_error(error2);
-  const status = error2 instanceof HttpError ? error2.status : 500;
-  const body = handle_error_and_jsonify(event, options, error2);
-  const type = negotiate(event.request.headers.get("accept") || "text/html", [
-    "application/json",
-    "text/html"
-  ]);
-  if (has_data_suffix(event.url.pathname) || type === "application/json") {
-    return new Response(JSON.stringify(body), {
-      status,
-      headers: { "content-type": "application/json; charset=utf-8" }
-    });
-  }
-  return static_error_page(options, status, body.message);
-}
-function handle_error_and_jsonify(event, options, error2) {
-  if (error2 instanceof HttpError) {
-    return error2.body;
-  } else {
-    return options.handle_error(error2, event);
-  }
-}
-function redirect_response(status, location) {
-  const response = new Response(void 0, {
-    status,
-    headers: { location }
-  });
-  return response;
-}
-function clarify_devalue_error(event, error2) {
-  if (error2.path) {
-    return `Data returned from \`load\` while rendering ${event.route.id} is not serializable: ${error2.message} (data${error2.path})`;
-  }
-  if (error2.path === "") {
-    return `Data returned from \`load\` while rendering ${event.route.id} is not a plain object`;
-  }
-  return error2.message;
-}
-function serialize_data_node(node) {
-  if (!node)
-    return "null";
-  if (node.type === "error" || node.type === "skip") {
-    return JSON.stringify(node);
-  }
-  const stringified = devalue.stringify(node.data);
-  const uses = [];
-  if (node.uses.dependencies.size > 0) {
-    uses.push(`"dependencies":${JSON.stringify(Array.from(node.uses.dependencies))}`);
-  }
-  if (node.uses.params.size > 0) {
-    uses.push(`"params":${JSON.stringify(Array.from(node.uses.params))}`);
-  }
-  if (node.uses.parent)
-    uses.push(`"parent":1`);
-  if (node.uses.route)
-    uses.push(`"route":1`);
-  if (node.uses.url)
-    uses.push(`"url":1`);
-  return `{"type":"data","data":${stringified},"uses":{${uses.join(",")}}}`;
-}
-async function render_endpoint(event, mod, state) {
-  const method = event.request.method;
-  check_method_names(mod);
-  let handler = mod[method];
-  if (!handler && method === "HEAD") {
-    handler = mod.GET;
-  }
-  if (!handler) {
-    return method_not_allowed(mod, method);
-  }
-  const prerender = mod.prerender ?? state.prerender_default;
-  if (prerender && (mod.POST || mod.PATCH || mod.PUT || mod.DELETE)) {
-    throw new Error("Cannot prerender endpoints that have mutative methods");
-  }
-  if (state.prerendering && !prerender) {
-    if (state.initiator) {
-      throw new Error(`${event.route.id} is not prerenderable`);
-    } else {
-      return new Response(void 0, { status: 204 });
-    }
-  }
-  try {
-    const response = await handler(
-      event
-    );
-    if (!(response instanceof Response)) {
-      throw new Error(
-        `Invalid response from route ${event.url.pathname}: handler should return a Response object`
-      );
-    }
-    if (state.prerendering) {
-      response.headers.set("x-sveltekit-prerender", String(prerender));
-    }
-    return response;
-  } catch (error2) {
-    if (error2 instanceof Redirect) {
-      return new Response(void 0, {
-        status: error2.status,
-        headers: { location: error2.location }
-      });
-    }
-    throw error2;
-  }
-}
-function is_endpoint_request(event) {
-  const { method, headers } = event.request;
-  if (method === "PUT" || method === "PATCH" || method === "DELETE") {
-    return true;
-  }
-  if (method === "POST" && headers.get("x-sveltekit-action") === "true")
-    return false;
-  const accept = event.request.headers.get("accept") ?? "*/*";
-  return negotiate(accept, ["*", "text/html"]) !== "text/html";
-}
-function compact(arr) {
-  return arr.filter((val) => val != null);
-}
-function error(status, message) {
-  return new HttpError(status, message);
-}
-function json(data, init2) {
-  const headers = new Headers(init2?.headers);
-  if (!headers.has("content-type")) {
-    headers.set("content-type", "application/json");
-  }
-  return new Response(JSON.stringify(data), {
-    ...init2,
-    headers
-  });
-}
-function is_action_json_request(event) {
-  const accept = negotiate(event.request.headers.get("accept") ?? "*/*", [
-    "application/json",
-    "text/html"
-  ]);
-  return accept === "application/json" && event.request.method === "POST";
-}
-async function handle_action_json_request(event, options, server) {
-  const actions = server.actions;
-  if (!actions) {
-    maybe_throw_migration_error(server);
-    return new Response("POST method not allowed. No actions exist for this page", {
-      status: 405,
-      headers: {
-        allow: "GET"
-      }
-    });
-  }
-  check_named_default_separate(actions);
-  try {
-    const data = await call_action(event, actions);
-    if (data instanceof ValidationError) {
-      return action_json({
-        type: "invalid",
-        status: data.status,
-        data: stringify_action_response(data.data, event.route.id)
-      });
-    } else {
-      return action_json({
-        type: "success",
-        status: data ? 200 : 204,
-        data: stringify_action_response(data, event.route.id)
-      });
-    }
-  } catch (e) {
-    const error2 = normalize_error(e);
-    if (error2 instanceof Redirect) {
-      return action_json({
-        type: "redirect",
-        status: error2.status,
-        location: error2.location
-      });
-    }
-    return action_json(
-      {
-        type: "error",
-        error: handle_error_and_jsonify(event, options, check_incorrect_invalid_use(error2))
-      },
-      {
-        status: error2 instanceof HttpError ? error2.status : 500
-      }
-    );
-  }
-}
-function check_incorrect_invalid_use(error2) {
-  return error2 instanceof ValidationError ? new Error(`Cannot "throw invalid()". Use "return invalid()"`) : error2;
-}
-function action_json(data, init2) {
-  return json(data, init2);
-}
-function is_action_request(event, leaf_node) {
-  return leaf_node.server && event.request.method !== "GET" && event.request.method !== "HEAD";
-}
-async function handle_action_request(event, server) {
-  const actions = server.actions;
-  if (!actions) {
-    maybe_throw_migration_error(server);
-    event.setHeaders({
-      allow: "GET"
-    });
-    return {
-      type: "error",
-      error: error(405, "POST method not allowed. No actions exist for this page")
-    };
-  }
-  check_named_default_separate(actions);
-  try {
-    const data = await call_action(event, actions);
-    if (data instanceof ValidationError) {
-      return { type: "invalid", status: data.status, data: data.data };
-    } else {
-      return {
-        type: "success",
-        status: 200,
-        data
-      };
-    }
-  } catch (e) {
-    const error2 = normalize_error(e);
-    if (error2 instanceof Redirect) {
-      return {
-        type: "redirect",
-        status: error2.status,
-        location: error2.location
-      };
-    }
-    return {
-      type: "error",
-      error: check_incorrect_invalid_use(error2)
-    };
-  }
-}
-function check_named_default_separate(actions) {
-  if (actions.default && Object.keys(actions).length > 1) {
-    throw new Error(
-      `When using named actions, the default action cannot be used. See the docs for more info: https://kit.svelte.dev/docs/form-actions#named-actions`
-    );
-  }
-}
-async function call_action(event, actions) {
-  const url = new URL(event.request.url);
-  let name = "default";
-  for (const param of url.searchParams) {
-    if (param[0].startsWith("/")) {
-      name = param[0].slice(1);
-      if (name === "default") {
-        throw new Error('Cannot use reserved action name "default"');
-      }
-      break;
-    }
-  }
-  const action = actions[name];
-  if (!action) {
-    throw new Error(`No action with name '${name}' found`);
-  }
-  if (!is_form_content_type(event.request)) {
-    throw new Error(
-      `Actions expect form-encoded data (received ${event.request.headers.get("content-type")}`
-    );
-  }
-  return action(event);
-}
-function maybe_throw_migration_error(server) {
-  for (const method of ["POST", "PUT", "PATCH", "DELETE"]) {
-    if (server[method]) {
-      throw new Error(
-        `${method} method no longer allowed in +page.server, use actions instead. See the PR for more info: https://github.com/sveltejs/kit/pull/6469`
-      );
-    }
-  }
-}
-function uneval_action_response(data, route_id) {
-  return try_deserialize(data, devalue.uneval, route_id);
-}
-function stringify_action_response(data, route_id) {
-  return try_deserialize(data, devalue.stringify, route_id);
-}
-function try_deserialize(data, fn, route_id) {
-  try {
-    return fn(data);
-  } catch (e) {
-    const error2 = e;
-    if ("path" in error2) {
-      let message = `Data returned from action inside ${route_id} is not serializable: ${error2.message}`;
-      if (error2.path !== "")
-        message += ` (data.${error2.path})`;
-      throw new Error(message);
-    }
-    throw error2;
-  }
-}
-async function unwrap_promises(object) {
-  for (const key2 in object) {
-    if (typeof object[key2]?.then === "function") {
-      return Object.fromEntries(
-        await Promise.all(Object.entries(object).map(async ([key3, value]) => [key3, await value]))
-      );
-    }
-  }
-  return object;
-}
-async function load_server_data({ event, state, node, parent }) {
-  if (!node?.server)
-    return null;
-  const uses = {
-    dependencies: /* @__PURE__ */ new Set(),
-    params: /* @__PURE__ */ new Set(),
-    parent: false,
-    route: false,
-    url: false
-  };
-  const url = make_trackable(event.url, () => {
-    uses.url = true;
-  });
-  if (state.prerendering) {
-    disable_search(url);
-  }
-  const result = await node.server.load?.call(null, {
-    ...event,
-    depends: (...deps) => {
-      for (const dep of deps) {
-        const { href } = new URL(dep, event.url);
-        uses.dependencies.add(href);
-      }
-    },
-    params: new Proxy(event.params, {
-      get: (target, key2) => {
-        uses.params.add(key2);
-        return target[key2];
-      }
-    }),
-    parent: async () => {
-      uses.parent = true;
-      return parent();
-    },
-    route: {
-      get id() {
-        uses.route = true;
-        return event.route.id;
-      }
-    },
-    url
-  });
-  const data = result ? await unwrap_promises(result) : null;
-  return {
-    type: "data",
-    data,
-    uses
-  };
-}
-async function load_data({
-  event,
-  fetched,
-  node,
-  parent,
-  server_data_promise,
-  state,
-  resolve_opts,
-  csr
-}) {
-  const server_data_node = await server_data_promise;
-  if (!node?.shared?.load) {
-    return server_data_node?.data ?? null;
-  }
-  const load_event = {
-    url: event.url,
-    params: event.params,
-    data: server_data_node?.data ?? null,
-    route: event.route,
-    fetch: async (input, init2) => {
-      const cloned_body = input instanceof Request && input.body ? input.clone().body : null;
-      const response = await event.fetch(input, init2);
-      const url = new URL(input instanceof Request ? input.url : input, event.url);
-      const same_origin = url.origin === event.url.origin;
-      let dependency;
-      if (same_origin) {
-        if (state.prerendering) {
-          dependency = { response, body: null };
-          state.prerendering.dependencies.set(url.pathname, dependency);
-        }
-      } else {
-        const mode = input instanceof Request ? input.mode : init2?.mode ?? "cors";
-        if (mode !== "no-cors") {
-          const acao = response.headers.get("access-control-allow-origin");
-          if (!acao || acao !== event.url.origin && acao !== "*") {
-            throw new Error(
-              `CORS error: ${acao ? "Incorrect" : "No"} 'Access-Control-Allow-Origin' header is present on the requested resource`
-            );
-          }
-        }
-      }
-      const proxy = new Proxy(response, {
-        get(response2, key2, _receiver) {
-          async function text() {
-            const body = await response2.text();
-            if (!body || typeof body === "string") {
-              const status_number = Number(response2.status);
-              if (isNaN(status_number)) {
-                throw new Error(
-                  `response.status is not a number. value: "${response2.status}" type: ${typeof response2.status}`
-                );
-              }
-              fetched.push({
-                url: same_origin ? url.href.slice(event.url.origin.length) : url.href,
-                method: event.request.method,
-                request_body: input instanceof Request && cloned_body ? await stream_to_string(cloned_body) : init2?.body,
-                response_body: body,
-                response: response2
-              });
-            }
-            if (dependency) {
-              dependency.body = body;
-            }
-            return body;
-          }
-          if (key2 === "arrayBuffer") {
-            return async () => {
-              const buffer = await response2.arrayBuffer();
-              if (dependency) {
-                dependency.body = new Uint8Array(buffer);
-              }
-              return buffer;
-            };
-          }
-          if (key2 === "text") {
-            return text;
-          }
-          if (key2 === "json") {
-            return async () => {
-              return JSON.parse(await text());
-            };
-          }
-          return Reflect.get(response2, key2, response2);
-        }
-      });
-      if (csr) {
-        const get = response.headers.get;
-        response.headers.get = (key2) => {
-          const lower = key2.toLowerCase();
-          const value = get.call(response.headers, lower);
-          if (value && !lower.startsWith("x-sveltekit-")) {
-            const included = resolve_opts.filterSerializedResponseHeaders(lower, value);
-            if (!included) {
-              throw new Error(
-                `Failed to get response header "${lower}" \u2014 it must be included by the \`filterSerializedResponseHeaders\` option: https://kit.svelte.dev/docs/hooks#server-hooks-handle (at ${event.route})`
-              );
-            }
-          }
-          return value;
-        };
-      }
-      return proxy;
-    },
-    setHeaders: event.setHeaders,
-    depends: () => {
-    },
-    parent
-  };
-  Object.defineProperties(load_event, {
-    session: {
-      get() {
-        throw new Error(
-          "session is no longer available. See https://github.com/sveltejs/kit/discussions/5883"
-        );
-      },
-      enumerable: false
-    }
-  });
-  const data = await node.shared.load.call(null, load_event);
-  return data ? unwrap_promises(data) : null;
-}
-async function stream_to_string(stream) {
-  let result = "";
-  const reader = stream.getReader();
-  const decoder = new TextDecoder();
-  while (true) {
-    const { done, value } = await reader.read();
-    if (done) {
-      break;
-    }
-    result += decoder.decode(value);
-  }
-  return result;
-}
-function hash(value) {
-  let hash2 = 5381;
-  if (typeof value === "string") {
-    let i = value.length;
-    while (i)
-      hash2 = hash2 * 33 ^ value.charCodeAt(--i);
-  } else if (ArrayBuffer.isView(value)) {
-    const buffer = new Uint8Array(value.buffer, value.byteOffset, value.byteLength);
-    let i = buffer.length;
-    while (i)
-      hash2 = hash2 * 33 ^ buffer[--i];
-  } else {
-    throw new TypeError("value must be a string or TypedArray");
-  }
-  return (hash2 >>> 0).toString(36);
-}
-const escape_html_attr_dict = {
-  "&": "&amp;",
-  '"': "&quot;"
-};
-const escape_html_attr_regex = new RegExp(
-  `[${Object.keys(escape_html_attr_dict).join("")}]|[\\ud800-\\udbff](?![\\udc00-\\udfff])|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\udc00-\\udfff]`,
-  "g"
-);
-function escape_html_attr(str) {
-  const escaped_str = str.replace(escape_html_attr_regex, (match) => {
-    if (match.length === 2) {
-      return match;
-    }
-    return escape_html_attr_dict[match] ?? `&#${match.charCodeAt(0)};`;
-  });
-  return `"${escaped_str}"`;
-}
-const replacements = {
-  "<": "\\u003C",
-  "\u2028": "\\u2028",
-  "\u2029": "\\u2029"
-};
-const pattern = new RegExp(`[${Object.keys(replacements).join("")}]`, "g");
-function serialize_data(fetched, filter, prerendering = false) {
-  const headers = {};
-  let cache_control = null;
-  let age = null;
-  for (const [key2, value] of fetched.response.headers) {
-    if (filter(key2, value)) {
-      headers[key2] = value;
-    }
-    if (key2 === "cache-control")
-      cache_control = value;
-    if (key2 === "age")
-      age = value;
-  }
-  const payload = {
-    status: fetched.response.status,
-    statusText: fetched.response.statusText,
-    headers,
-    body: fetched.response_body
-  };
-  const safe_payload = JSON.stringify(payload).replace(pattern, (match) => replacements[match]);
-  const attrs = [
-    'type="application/json"',
-    "data-sveltekit-fetched",
-    `data-url=${escape_html_attr(fetched.url)}`
-  ];
-  if (fetched.request_body) {
-    attrs.push(`data-hash=${escape_html_attr(hash(fetched.request_body))}`);
-  }
-  if (!prerendering && fetched.method === "GET" && cache_control) {
-    const match = /s-maxage=(\d+)/g.exec(cache_control) ?? /max-age=(\d+)/g.exec(cache_control);
-    if (match) {
-      const ttl = +match[1] - +(age ?? "0");
-      attrs.push(`data-ttl="${ttl}"`);
-    }
-  }
-  return `<script ${attrs.join(" ")}>${safe_payload}<\/script>`;
-}
-const s = JSON.stringify;
-const encoder = new TextEncoder();
-function sha256(data) {
-  if (!key[0])
-    precompute();
-  const out = init.slice(0);
-  const array2 = encode(data);
-  for (let i = 0; i < array2.length; i += 16) {
-    const w = array2.subarray(i, i + 16);
-    let tmp;
-    let a;
-    let b;
-    let out0 = out[0];
-    let out1 = out[1];
-    let out2 = out[2];
-    let out3 = out[3];
-    let out4 = out[4];
-    let out5 = out[5];
-    let out6 = out[6];
-    let out7 = out[7];
-    for (let i2 = 0; i2 < 64; i2++) {
-      if (i2 < 16) {
-        tmp = w[i2];
-      } else {
-        a = w[i2 + 1 & 15];
-        b = w[i2 + 14 & 15];
-        tmp = w[i2 & 15] = (a >>> 7 ^ a >>> 18 ^ a >>> 3 ^ a << 25 ^ a << 14) + (b >>> 17 ^ b >>> 19 ^ b >>> 10 ^ b << 15 ^ b << 13) + w[i2 & 15] + w[i2 + 9 & 15] | 0;
-      }
-      tmp = tmp + out7 + (out4 >>> 6 ^ out4 >>> 11 ^ out4 >>> 25 ^ out4 << 26 ^ out4 << 21 ^ out4 << 7) + (out6 ^ out4 & (out5 ^ out6)) + key[i2];
-      out7 = out6;
-      out6 = out5;
-      out5 = out4;
-      out4 = out3 + tmp | 0;
-      out3 = out2;
-      out2 = out1;
-      out1 = out0;
-      out0 = tmp + (out1 & out2 ^ out3 & (out1 ^ out2)) + (out1 >>> 2 ^ out1 >>> 13 ^ out1 >>> 22 ^ out1 << 30 ^ out1 << 19 ^ out1 << 10) | 0;
-    }
-    out[0] = out[0] + out0 | 0;
-    out[1] = out[1] + out1 | 0;
-    out[2] = out[2] + out2 | 0;
-    out[3] = out[3] + out3 | 0;
-    out[4] = out[4] + out4 | 0;
-    out[5] = out[5] + out5 | 0;
-    out[6] = out[6] + out6 | 0;
-    out[7] = out[7] + out7 | 0;
-  }
-  const bytes = new Uint8Array(out.buffer);
-  reverse_endianness(bytes);
-  return base64(bytes);
-}
-const init = new Uint32Array(8);
-const key = new Uint32Array(64);
-function precompute() {
-  function frac(x) {
-    return (x - Math.floor(x)) * 4294967296;
-  }
-  let prime = 2;
-  for (let i = 0; i < 64; prime++) {
-    let is_prime = true;
-    for (let factor = 2; factor * factor <= prime; factor++) {
-      if (prime % factor === 0) {
-        is_prime = false;
-        break;
-      }
-    }
-    if (is_prime) {
-      if (i < 8) {
-        init[i] = frac(prime ** (1 / 2));
-      }
-      key[i] = frac(prime ** (1 / 3));
-      i++;
-    }
-  }
-}
-function reverse_endianness(bytes) {
-  for (let i = 0; i < bytes.length; i += 4) {
-    const a = bytes[i + 0];
-    const b = bytes[i + 1];
-    const c = bytes[i + 2];
-    const d = bytes[i + 3];
-    bytes[i + 0] = d;
-    bytes[i + 1] = c;
-    bytes[i + 2] = b;
-    bytes[i + 3] = a;
-  }
-}
-function encode(str) {
-  const encoded = encoder.encode(str);
-  const length = encoded.length * 8;
-  const size = 512 * Math.ceil((length + 65) / 512);
-  const bytes = new Uint8Array(size / 8);
-  bytes.set(encoded);
-  bytes[encoded.length] = 128;
-  reverse_endianness(bytes);
-  const words = new Uint32Array(bytes.buffer);
-  words[words.length - 2] = Math.floor(length / 4294967296);
-  words[words.length - 1] = length;
-  return words;
-}
-const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
-function base64(bytes) {
-  const l = bytes.length;
-  let result = "";
-  let i;
-  for (i = 2; i < l; i += 3) {
-    result += chars[bytes[i - 2] >> 2];
-    result += chars[(bytes[i - 2] & 3) << 4 | bytes[i - 1] >> 4];
-    result += chars[(bytes[i - 1] & 15) << 2 | bytes[i] >> 6];
-    result += chars[bytes[i] & 63];
-  }
-  if (i === l + 1) {
-    result += chars[bytes[i - 2] >> 2];
-    result += chars[(bytes[i - 2] & 3) << 4];
-    result += "==";
-  }
-  if (i === l) {
-    result += chars[bytes[i - 2] >> 2];
-    result += chars[(bytes[i - 2] & 3) << 4 | bytes[i - 1] >> 4];
-    result += chars[(bytes[i - 1] & 15) << 2];
-    result += "=";
-  }
-  return result;
-}
-const array = new Uint8Array(16);
-function generate_nonce() {
-  crypto.getRandomValues(array);
-  return base64(array);
-}
-const quoted = /* @__PURE__ */ new Set([
-  "self",
-  "unsafe-eval",
-  "unsafe-hashes",
-  "unsafe-inline",
-  "none",
-  "strict-dynamic",
-  "report-sample",
-  "wasm-unsafe-eval"
-]);
-const crypto_pattern = /^(nonce|sha\d\d\d)-/;
-class BaseProvider {
-  constructor(use_hashes, directives, nonce, dev) {
-    __privateAdd(this, _use_hashes, void 0);
-    __privateAdd(this, _script_needs_csp, void 0);
-    __privateAdd(this, _style_needs_csp, void 0);
-    __privateAdd(this, _directives, void 0);
-    __privateAdd(this, _script_src, void 0);
-    __privateAdd(this, _style_src, void 0);
-    __privateAdd(this, _nonce, void 0);
-    __privateSet(this, _use_hashes, use_hashes);
-    __privateSet(this, _directives, dev ? { ...directives } : directives);
-    const d = __privateGet(this, _directives);
-    if (dev) {
-      const effective_style_src2 = d["style-src"] || d["default-src"];
-      if (effective_style_src2 && !effective_style_src2.includes("unsafe-inline")) {
-        d["style-src"] = [...effective_style_src2, "unsafe-inline"];
-      }
-    }
-    __privateSet(this, _script_src, []);
-    __privateSet(this, _style_src, []);
-    const effective_script_src = d["script-src"] || d["default-src"];
-    const effective_style_src = d["style-src"] || d["default-src"];
-    __privateSet(this, _script_needs_csp, !!effective_script_src && effective_script_src.filter((value) => value !== "unsafe-inline").length > 0);
-    __privateSet(this, _style_needs_csp, !dev && !!effective_style_src && effective_style_src.filter((value) => value !== "unsafe-inline").length > 0);
-    this.script_needs_nonce = __privateGet(this, _script_needs_csp) && !__privateGet(this, _use_hashes);
-    this.style_needs_nonce = __privateGet(this, _style_needs_csp) && !__privateGet(this, _use_hashes);
-    __privateSet(this, _nonce, nonce);
-  }
-  add_script(content) {
-    if (__privateGet(this, _script_needs_csp)) {
-      if (__privateGet(this, _use_hashes)) {
-        __privateGet(this, _script_src).push(`sha256-${sha256(content)}`);
-      } else if (__privateGet(this, _script_src).length === 0) {
-        __privateGet(this, _script_src).push(`nonce-${__privateGet(this, _nonce)}`);
-      }
-    }
-  }
-  add_style(content) {
-    if (__privateGet(this, _style_needs_csp)) {
-      if (__privateGet(this, _use_hashes)) {
-        __privateGet(this, _style_src).push(`sha256-${sha256(content)}`);
-      } else if (__privateGet(this, _style_src).length === 0) {
-        __privateGet(this, _style_src).push(`nonce-${__privateGet(this, _nonce)}`);
-      }
-    }
-  }
-  get_header(is_meta = false) {
-    const header = [];
-    const directives = { ...__privateGet(this, _directives) };
-    if (__privateGet(this, _style_src).length > 0) {
-      directives["style-src"] = [
-        ...directives["style-src"] || directives["default-src"] || [],
-        ...__privateGet(this, _style_src)
-      ];
-    }
-    if (__privateGet(this, _script_src).length > 0) {
-      directives["script-src"] = [
-        ...directives["script-src"] || directives["default-src"] || [],
-        ...__privateGet(this, _script_src)
-      ];
-    }
-    for (const key2 in directives) {
-      if (is_meta && (key2 === "frame-ancestors" || key2 === "report-uri" || key2 === "sandbox")) {
-        continue;
-      }
-      const value = directives[key2];
-      if (!value)
-        continue;
-      const directive = [key2];
-      if (Array.isArray(value)) {
-        value.forEach((value2) => {
-          if (quoted.has(value2) || crypto_pattern.test(value2)) {
-            directive.push(`'${value2}'`);
-          } else {
-            directive.push(value2);
-          }
-        });
-      }
-      header.push(directive.join(" "));
-    }
-    return header.join("; ");
-  }
-}
-_use_hashes = new WeakMap();
-_script_needs_csp = new WeakMap();
-_style_needs_csp = new WeakMap();
-_directives = new WeakMap();
-_script_src = new WeakMap();
-_style_src = new WeakMap();
-_nonce = new WeakMap();
-class CspProvider extends BaseProvider {
-  get_meta() {
-    const content = escape_html_attr(this.get_header(true));
-    return `<meta http-equiv="content-security-policy" content=${content}>`;
-  }
-}
-class CspReportOnlyProvider extends BaseProvider {
-  constructor(use_hashes, directives, nonce, dev) {
-    super(use_hashes, directives, nonce, dev);
-    if (Object.values(directives).filter((v) => !!v).length > 0) {
-      const has_report_to = directives["report-to"]?.length ?? 0 > 0;
-      const has_report_uri = directives["report-uri"]?.length ?? 0 > 0;
-      if (!has_report_to && !has_report_uri) {
-        throw Error(
-          "`content-security-policy-report-only` must be specified with either the `report-to` or `report-uri` directives, or both"
-        );
-      }
-    }
-  }
-}
-class Csp {
-  constructor({ mode, directives, reportOnly }, { prerender, dev }) {
-    __publicField(this, "nonce", generate_nonce());
-    __publicField(this, "csp_provider");
-    __publicField(this, "report_only_provider");
-    const use_hashes = mode === "hash" || mode === "auto" && prerender;
-    this.csp_provider = new CspProvider(use_hashes, directives, this.nonce, dev);
-    this.report_only_provider = new CspReportOnlyProvider(use_hashes, reportOnly, this.nonce, dev);
-  }
-  get script_needs_nonce() {
-    return this.csp_provider.script_needs_nonce || this.report_only_provider.script_needs_nonce;
-  }
-  get style_needs_nonce() {
-    return this.csp_provider.style_needs_nonce || this.report_only_provider.style_needs_nonce;
-  }
-  add_script(content) {
-    this.csp_provider.add_script(content);
-    this.report_only_provider.add_script(content);
-  }
-  add_style(content) {
-    this.csp_provider.add_style(content);
-    this.report_only_provider.add_style(content);
-  }
-}
-const updated = {
-  ...readable(false),
-  check: () => false
-};
-async function render_response({
-  branch,
-  fetched,
-  options,
-  state,
-  page_config,
-  status,
-  error: error2 = null,
-  event,
-  resolve_opts,
-  action_result
-}) {
-  if (state.prerendering) {
-    if (options.csp.mode === "nonce") {
-      throw new Error('Cannot use prerendering if config.kit.csp.mode === "nonce"');
-    }
-    if (options.app_template_contains_nonce) {
-      throw new Error("Cannot use prerendering if page template contains %sveltekit.nonce%");
-    }
-  }
-  const { entry } = options.manifest._;
-  const stylesheets = new Set(entry.stylesheets);
-  const modulepreloads = new Set(entry.imports);
-  const fonts = new Set(options.manifest._.entry.fonts);
-  const link_header_preloads = /* @__PURE__ */ new Set();
-  const inline_styles = /* @__PURE__ */ new Map();
-  let rendered;
-  const form_value = action_result?.type === "success" || action_result?.type === "invalid" ? action_result.data ?? null : null;
-  if (page_config.ssr) {
-    const props = {
-      stores: {
-        page: writable(null),
-        navigating: writable(null),
-        updated
-      },
-      components: await Promise.all(branch.map(({ node }) => node.component())),
-      form: form_value
-    };
-    let data = {};
-    for (let i = 0; i < branch.length; i += 1) {
-      data = { ...data, ...branch[i].data };
-      props[`data_${i}`] = data;
-    }
-    props.page = {
-      error: error2,
-      params: event.params,
-      route: event.route,
-      status,
-      url: event.url,
-      data,
-      form: form_value
-    };
-    const print_error = (property, replacement) => {
-      Object.defineProperty(props.page, property, {
-        get: () => {
-          throw new Error(`$page.${property} has been replaced by $page.url.${replacement}`);
-        }
-      });
-    };
-    print_error("origin", "origin");
-    print_error("path", "pathname");
-    print_error("query", "searchParams");
-    rendered = options.root.render(props);
-    for (const { node } of branch) {
-      if (node.imports) {
-        node.imports.forEach((url) => modulepreloads.add(url));
-      }
-      if (node.stylesheets) {
-        node.stylesheets.forEach((url) => stylesheets.add(url));
-      }
-      if (node.fonts) {
-        node.fonts.forEach((url) => fonts.add(url));
-      }
-      if (node.inline_styles) {
-        Object.entries(await node.inline_styles()).forEach(([k, v]) => inline_styles.set(k, v));
-      }
-    }
-  } else {
-    rendered = { head: "", html: "", css: { code: "", map: null } };
-  }
-  let head = "";
-  let body = rendered.html;
-  const csp = new Csp(options.csp, {
-    dev: options.dev,
-    prerender: !!state.prerendering
-  });
-  const target = hash(body);
-  let assets2;
-  if (options.paths.assets) {
-    assets2 = options.paths.assets;
-  } else if (state.prerendering?.fallback) {
-    assets2 = options.paths.base;
-  } else {
-    const segments = event.url.pathname.slice(options.paths.base.length).split("/").slice(2);
-    assets2 = segments.length > 0 ? segments.map(() => "..").join("/") : ".";
-  }
-  const prefixed = (path) => path.startsWith("/") ? path : `${assets2}/${path}`;
-  const serialized = { data: "", form: "null" };
-  try {
-    serialized.data = `[${branch.map(({ server_data }) => {
-      if (server_data?.type === "data") {
-        const data = devalue.uneval(server_data.data);
-        const uses = [];
-        if (server_data.uses.dependencies.size > 0) {
-          uses.push(`dependencies:${s(Array.from(server_data.uses.dependencies))}`);
-        }
-        if (server_data.uses.params.size > 0) {
-          uses.push(`params:${s(Array.from(server_data.uses.params))}`);
-        }
-        if (server_data.uses.parent)
-          uses.push(`parent:1`);
-        if (server_data.uses.route)
-          uses.push(`route:1`);
-        if (server_data.uses.url)
-          uses.push(`url:1`);
-        return `{type:"data",data:${data},uses:{${uses.join(",")}}}`;
-      }
-      return s(server_data);
-    }).join(",")}]`;
-  } catch (e) {
-    const error3 = e;
-    throw new Error(clarify_devalue_error(event, error3));
-  }
-  if (form_value) {
-    serialized.form = uneval_action_response(form_value, event.route.id);
-  }
-  if (inline_styles.size > 0) {
-    const content = Array.from(inline_styles.values()).join("\n");
-    const attributes = [];
-    if (options.dev)
-      attributes.push(" data-sveltekit");
-    if (csp.style_needs_nonce)
-      attributes.push(` nonce="${csp.nonce}"`);
-    csp.add_style(content);
-    head += `
-	<style${attributes.join("")}>${content}</style>`;
-  }
-  for (const dep of stylesheets) {
-    const path = prefixed(dep);
-    if (resolve_opts.preload({ type: "css", path })) {
-      const attributes = [];
-      if (csp.style_needs_nonce) {
-        attributes.push(`nonce="${csp.nonce}"`);
-      }
-      if (inline_styles.has(dep)) {
-        attributes.push("disabled", 'media="(max-width: 0)"');
-      } else {
-        const preload_atts = ['rel="preload"', 'as="style"'].concat(attributes);
-        link_header_preloads.add(`<${encodeURI(path)}>; ${preload_atts.join(";")}; nopush`);
-      }
-      attributes.unshift('rel="stylesheet"');
-      head += `
-		<link href="${path}" ${attributes.join(" ")}>`;
-    }
-  }
-  for (const dep of fonts) {
-    const path = prefixed(dep);
-    if (resolve_opts.preload({ type: "font", path })) {
-      const ext = dep.slice(dep.lastIndexOf(".") + 1);
-      const attributes = [
-        'rel="preload"',
-        'as="font"',
-        `type="font/${ext}"`,
-        `href="${path}"`,
-        "crossorigin"
-      ];
-      head += `
-		<link ${attributes.join(" ")}>`;
-    }
-  }
-  if (page_config.csr) {
-    const init_app = `
-			import { start } from ${s(prefixed(entry.file))};
-
-			start({
-				env: ${s(options.public_env)},
-				hydrate: ${page_config.ssr ? `{
-					status: ${status},
-					error: ${devalue.uneval(error2)},
-					node_ids: [${branch.map(({ node }) => node.index).join(", ")}],
-					params: ${devalue.uneval(event.params)},
-					route: ${s(event.route)},
-					data: ${serialized.data},
-					form: ${serialized.form}
-				}` : "null"},
-				paths: ${s(options.paths)},
-				target: document.querySelector('[data-sveltekit-hydrate="${target}"]').parentNode,
-				trailing_slash: ${s(options.trailing_slash)}
-			});
-		`;
-    for (const dep of modulepreloads) {
-      const path = prefixed(dep);
-      if (resolve_opts.preload({ type: "js", path })) {
-        link_header_preloads.add(`<${encodeURI(path)}>; rel="modulepreload"; nopush`);
-        if (state.prerendering) {
-          head += `
-		<link rel="modulepreload" href="${path}">`;
-        }
-      }
-    }
-    const attributes = ['type="module"', `data-sveltekit-hydrate="${target}"`];
-    csp.add_script(init_app);
-    if (csp.script_needs_nonce) {
-      attributes.push(`nonce="${csp.nonce}"`);
-    }
-    body += `
-		<script ${attributes.join(" ")}>${init_app}<\/script>`;
-  }
-  if (page_config.ssr && page_config.csr) {
-    body += `
-	${fetched.map(
-      (item) => serialize_data(item, resolve_opts.filterSerializedResponseHeaders, !!state.prerendering)
-    ).join("\n	")}`;
-  }
-  if (options.service_worker) {
-    const opts = options.dev ? `, { type: 'module' }` : "";
-    const init_service_worker = `
-			if ('serviceWorker' in navigator) {
-				addEventListener('load', function () {
-					navigator.serviceWorker.register('${prefixed("service-worker.js")}'${opts});
-				});
-			}
-		`;
-    csp.add_script(init_service_worker);
-    head += `
-		<script${csp.script_needs_nonce ? ` nonce="${csp.nonce}"` : ""}>${init_service_worker}<\/script>`;
-  }
-  if (state.prerendering) {
-    const http_equiv = [];
-    const csp_headers = csp.csp_provider.get_meta();
-    if (csp_headers) {
-      http_equiv.push(csp_headers);
-    }
-    if (state.prerendering.cache) {
-      http_equiv.push(`<meta http-equiv="cache-control" content="${state.prerendering.cache}">`);
-    }
-    if (http_equiv.length > 0) {
-      head = http_equiv.join("\n") + head;
-    }
-  }
-  head += rendered.head;
-  const html = await resolve_opts.transformPageChunk({
-    html: options.app_template({ head, body, assets: assets2, nonce: csp.nonce }),
-    done: true
-  }) || "";
-  const headers = new Headers({
-    "x-sveltekit-page": "true",
-    "content-type": "text/html",
-    etag: `"${hash(html)}"`
-  });
-  if (!state.prerendering) {
-    const csp_header = csp.csp_provider.get_header();
-    if (csp_header) {
-      headers.set("content-security-policy", csp_header);
-    }
-    const report_only_header = csp.report_only_provider.get_header();
-    if (report_only_header) {
-      headers.set("content-security-policy-report-only", report_only_header);
-    }
-    if (link_header_preloads.size) {
-      headers.set("link", Array.from(link_header_preloads).join(", "));
-    }
-  }
-  return new Response(html, {
-    status,
-    headers
-  });
-}
-async function respond_with_error({ event, options, state, status, error: error2, resolve_opts }) {
-  const fetched = [];
-  try {
-    const branch = [];
-    const default_layout = await options.manifest._.nodes[0]();
-    const ssr = get_option([default_layout], "ssr") ?? true;
-    const csr = get_option([default_layout], "csr") ?? true;
-    if (ssr) {
-      state.initiator = GENERIC_ERROR;
-      const server_data_promise = load_server_data({
-        event,
-        state,
-        node: default_layout,
-        parent: async () => ({})
-      });
-      const server_data = await server_data_promise;
-      const data = await load_data({
-        event,
-        fetched,
-        node: default_layout,
-        parent: async () => ({}),
-        resolve_opts,
-        server_data_promise,
-        state,
-        csr
-      });
-      branch.push(
-        {
-          node: default_layout,
-          server_data,
-          data
-        },
-        {
-          node: await options.manifest._.nodes[1](),
-          data: null,
-          server_data: null
-        }
-      );
-    }
-    return await render_response({
-      options,
-      state,
-      page_config: {
-        ssr,
-        csr: get_option([default_layout], "csr") ?? true
-      },
-      status,
-      error: handle_error_and_jsonify(event, options, error2),
-      branch,
-      fetched,
-      event,
-      resolve_opts
-    });
-  } catch (error3) {
-    if (error3 instanceof Redirect) {
-      return redirect_response(error3.status, error3.location);
-    }
-    return static_error_page(
-      options,
-      error3 instanceof HttpError ? error3.status : 500,
-      handle_error_and_jsonify(event, options, error3).message
-    );
-  }
-}
-async function render_page(event, route, page, options, state, resolve_opts) {
-  if (state.initiator === route) {
-    return new Response(`Not found: ${event.url.pathname}`, {
-      status: 404
-    });
-  }
-  state.initiator = route;
-  if (is_action_json_request(event)) {
-    const node = await options.manifest._.nodes[page.leaf]();
-    if (node.server) {
-      return handle_action_json_request(event, options, node.server);
-    }
-  }
-  try {
-    const nodes = await Promise.all([
-      ...page.layouts.map((n) => n == void 0 ? n : options.manifest._.nodes[n]()),
-      options.manifest._.nodes[page.leaf]()
-    ]);
-    const leaf_node = nodes.at(-1);
-    let status = 200;
-    let action_result = void 0;
-    if (is_action_request(event, leaf_node)) {
-      action_result = await handle_action_request(event, leaf_node.server);
-      if (action_result?.type === "redirect") {
-        return redirect_response(303, action_result.location);
-      }
-      if (action_result?.type === "error") {
-        const error2 = action_result.error;
-        status = error2 instanceof HttpError ? error2.status : 500;
-      }
-      if (action_result?.type === "invalid") {
-        status = action_result.status;
-      }
-    }
-    const should_prerender_data = nodes.some((node) => node?.server);
-    const data_pathname = add_data_suffix(event.url.pathname);
-    const should_prerender = get_option(nodes, "prerender") ?? false;
-    if (should_prerender) {
-      const mod = leaf_node.server;
-      if (mod && mod.actions) {
-        throw new Error("Cannot prerender pages with actions");
-      }
-    } else if (state.prerendering) {
-      return new Response(void 0, {
-        status: 204
-      });
-    }
-    state.prerender_default = should_prerender;
-    const fetched = [];
-    if (get_option(nodes, "ssr") === false) {
-      return await render_response({
-        branch: [],
-        fetched,
-        page_config: {
-          ssr: false,
-          csr: get_option(nodes, "csr") ?? true
-        },
-        status,
-        error: null,
-        event,
-        options,
-        state,
-        resolve_opts
-      });
-    }
-    let branch = [];
-    let load_error = null;
-    const server_promises = nodes.map((node, i) => {
-      if (load_error) {
-        throw load_error;
-      }
-      return Promise.resolve().then(async () => {
-        try {
-          if (node === leaf_node && action_result?.type === "error") {
-            throw action_result.error;
-          }
-          return await load_server_data({
-            event,
-            state,
-            node,
-            parent: async () => {
-              const data = {};
-              for (let j = 0; j < i; j += 1) {
-                const parent = await server_promises[j];
-                if (parent)
-                  Object.assign(data, await parent.data);
-              }
-              return data;
-            }
-          });
-        } catch (e) {
-          load_error = e;
-          throw load_error;
-        }
-      });
-    });
-    const csr = get_option(nodes, "csr") ?? true;
-    const load_promises = nodes.map((node, i) => {
-      if (load_error)
-        throw load_error;
-      return Promise.resolve().then(async () => {
-        try {
-          return await load_data({
-            event,
-            fetched,
-            node,
-            parent: async () => {
-              const data = {};
-              for (let j = 0; j < i; j += 1) {
-                Object.assign(data, await load_promises[j]);
-              }
-              return data;
-            },
-            resolve_opts,
-            server_data_promise: server_promises[i],
-            state,
-            csr
-          });
-        } catch (e) {
-          load_error = e;
-          throw load_error;
-        }
-      });
-    });
-    for (const p of server_promises)
-      p.catch(() => {
-      });
-    for (const p of load_promises)
-      p.catch(() => {
-      });
-    for (let i = 0; i < nodes.length; i += 1) {
-      const node = nodes[i];
-      if (node) {
-        try {
-          const server_data = await server_promises[i];
-          const data = await load_promises[i];
-          branch.push({ node, server_data, data });
-        } catch (e) {
-          const err = normalize_error(e);
-          if (err instanceof Redirect) {
-            if (state.prerendering && should_prerender_data) {
-              const body = JSON.stringify({
-                type: "redirect",
-                location: err.location
-              });
-              state.prerendering.dependencies.set(data_pathname, {
-                response: new Response(body),
-                body
-              });
-            }
-            return redirect_response(err.status, err.location);
-          }
-          const status2 = err instanceof HttpError ? err.status : 500;
-          const error2 = handle_error_and_jsonify(event, options, err);
-          while (i--) {
-            if (page.errors[i]) {
-              const index = page.errors[i];
-              const node2 = await options.manifest._.nodes[index]();
-              let j = i;
-              while (!branch[j])
-                j -= 1;
-              return await render_response({
-                event,
-                options,
-                state,
-                resolve_opts,
-                page_config: { ssr: true, csr: true },
-                status: status2,
-                error: error2,
-                branch: compact(branch.slice(0, j + 1)).concat({
-                  node: node2,
-                  data: null,
-                  server_data: null
-                }),
-                fetched
-              });
-            }
-          }
-          return static_error_page(options, status2, error2.message);
-        }
-      } else {
-        branch.push(null);
-      }
-    }
-    if (state.prerendering && should_prerender_data) {
-      const body = `{"type":"data","nodes":[${branch.map((node) => serialize_data_node(node?.server_data)).join(",")}]}`;
-      state.prerendering.dependencies.set(data_pathname, {
-        response: new Response(body),
-        body
-      });
-    }
-    return await render_response({
-      event,
-      options,
-      state,
-      resolve_opts,
-      page_config: {
-        csr: get_option(nodes, "csr") ?? true,
-        ssr: true
-      },
-      status,
-      error: null,
-      branch: compact(branch),
-      action_result,
-      fetched
-    });
-  } catch (error2) {
-    return await respond_with_error({
-      event,
-      options,
-      state,
-      status: 500,
-      error: error2,
-      resolve_opts
-    });
-  }
-}
-function exec(match, { names, types, optional }, matchers) {
-  const params = {};
-  for (let i = 0; i < names.length; i += 1) {
-    const name = names[i];
-    const type = types[i];
-    let value = match[i + 1];
-    if (value || !optional[i]) {
-      if (type) {
-        const matcher = matchers[type];
-        if (!matcher)
-          throw new Error(`Missing "${type}" param matcher`);
-        if (!matcher(value))
-          return;
-      }
-      params[name] = value ?? "";
-    }
-  }
-  return params;
-}
-function once(fn) {
-  let done = false;
-  let result;
-  return () => {
-    if (done)
-      return result;
-    done = true;
-    return result = fn();
-  };
-}
-const INVALIDATED_HEADER = "x-sveltekit-invalidated";
-async function render_data(event, route, options, state) {
-  if (!route.page) {
-    return new Response(void 0, {
-      status: 404
-    });
-  }
-  try {
-    const node_ids = [...route.page.layouts, route.page.leaf];
-    const invalidated = event.request.headers.get(INVALIDATED_HEADER)?.split(",").map(Boolean) ?? node_ids.map(() => true);
-    let aborted = false;
-    const url = new URL(event.url);
-    url.pathname = normalize_path(strip_data_suffix(url.pathname), options.trailing_slash);
-    const new_event = { ...event, url };
-    const functions = node_ids.map((n, i) => {
-      return once(async () => {
-        try {
-          if (aborted) {
-            return {
-              type: "skip"
-            };
-          }
-          const node = n == void 0 ? n : await options.manifest._.nodes[n]();
-          return load_server_data({
-            event: new_event,
-            state,
-            node,
-            parent: async () => {
-              const data = {};
-              for (let j = 0; j < i; j += 1) {
-                const parent = await functions[j]();
-                if (parent) {
-                  Object.assign(data, parent.data);
-                }
-              }
-              return data;
-            }
-          });
-        } catch (e) {
-          aborted = true;
-          throw e;
-        }
-      });
-    });
-    const promises = functions.map(async (fn, i) => {
-      if (!invalidated[i]) {
-        return {
-          type: "skip"
-        };
-      }
-      return fn();
-    });
-    let length = promises.length;
-    const nodes = await Promise.all(
-      promises.map(
-        (p, i) => p.catch((error2) => {
-          if (error2 instanceof Redirect) {
-            throw error2;
-          }
-          length = Math.min(length, i + 1);
-          return {
-            type: "error",
-            error: handle_error_and_jsonify(event, options, error2),
-            status: error2 instanceof HttpError ? error2.status : void 0
-          };
-        })
-      )
-    );
-    try {
-      const stubs = nodes.slice(0, length).map(serialize_data_node);
-      const json2 = `{"type":"data","nodes":[${stubs.join(",")}]}`;
-      return json_response(json2);
-    } catch (e) {
-      const error2 = e;
-      return json_response(JSON.stringify(clarify_devalue_error(event, error2)), 500);
-    }
-  } catch (e) {
-    const error2 = normalize_error(e);
-    if (error2 instanceof Redirect) {
-      return json_response(
-        JSON.stringify({
-          type: "redirect",
-          location: error2.location
-        })
-      );
-    } else {
-      return json_response(JSON.stringify(handle_error_and_jsonify(event, options, error2)));
-    }
-  }
-}
-function json_response(json2, status = 200) {
-  return new Response(json2, {
-    status,
-    headers: {
-      "content-type": "application/json",
-      "cache-control": "private, no-store"
-    }
-  });
-}
-const cookie_paths = {};
-function get_cookies(request, url, options) {
-  const header = request.headers.get("cookie") ?? "";
-  const initial_cookies = parse(header);
-  const normalized_url = normalize_path(
-    has_data_suffix(url.pathname) ? strip_data_suffix(url.pathname) : url.pathname,
-    options.trailing_slash
-  );
-  const default_path = normalized_url.split("/").slice(0, -1).join("/") || "/";
-  if (options.dev) {
-    for (const name of Object.keys(cookie_paths)) {
-      cookie_paths[name] = new Set(
-        [...cookie_paths[name]].filter(
-          (path) => !path_matches(normalized_url, path) || name in initial_cookies
-        )
-      );
-    }
-    for (const name in initial_cookies) {
-      cookie_paths[name] = cookie_paths[name] ?? /* @__PURE__ */ new Set();
-      if (![...cookie_paths[name]].some((path) => path_matches(normalized_url, path))) {
-        cookie_paths[name].add(default_path);
-      }
-    }
-  }
-  const new_cookies = {};
-  const defaults = {
-    httpOnly: true,
-    sameSite: "lax",
-    secure: url.hostname === "localhost" && url.protocol === "http:" ? false : true
-  };
-  const cookies = {
-    get(name, opts) {
-      const c = new_cookies[name];
-      if (c && domain_matches(url.hostname, c.options.domain) && path_matches(url.pathname, c.options.path)) {
-        return c.value;
-      }
-      const decode = opts?.decode || decodeURIComponent;
-      const req_cookies = parse(header, { decode });
-      const cookie = req_cookies[name];
-      if (!options.dev || cookie) {
-        return cookie;
-      }
-      const paths = /* @__PURE__ */ new Set([...cookie_paths[name] ?? []]);
-      if (c) {
-        paths.add(c.options.path ?? default_path);
-      }
-      if (paths.size > 0) {
-        console.warn(
-          `Cookie with name '${name}' was not found at path '${url.pathname}', but a cookie with that name exists at these paths: '${[...paths].join("', '")}'. Did you mean to set its 'path' to '/' instead?`
-        );
-      }
-    },
-    set(name, value, opts = {}) {
-      let path = opts.path ?? default_path;
-      new_cookies[name] = {
-        name,
-        value,
-        options: {
-          ...defaults,
-          ...opts,
-          path
-        }
-      };
-      if (options.dev) {
-        cookie_paths[name] = cookie_paths[name] ?? /* @__PURE__ */ new Set();
-        if (!value) {
-          if (!cookie_paths[name].has(path) && cookie_paths[name].size > 0) {
-            const paths = `'${Array.from(cookie_paths[name]).join("', '")}'`;
-            console.warn(
-              `Trying to delete cookie '${name}' at path '${path}', but a cookie with that name only exists at these paths: ${paths}.`
-            );
-          }
-          cookie_paths[name].delete(path);
-        } else {
-          cookie_paths[name].add(path);
-        }
-      }
-    },
-    delete(name, opts = {}) {
-      cookies.set(name, "", {
-        ...opts,
-        maxAge: 0
-      });
-    },
-    serialize(name, value, opts) {
-      return serialize(name, value, {
-        ...defaults,
-        ...opts
-      });
-    }
-  };
-  function get_cookie_header(destination, header2) {
-    const combined_cookies = {};
-    for (const name in initial_cookies) {
-      combined_cookies[name] = initial_cookies[name];
-    }
-    for (const key2 in new_cookies) {
-      const cookie = new_cookies[key2];
-      if (!domain_matches(destination.hostname, cookie.options.domain))
-        continue;
-      if (!path_matches(destination.pathname, cookie.options.path))
-        continue;
-      combined_cookies[cookie.name] = cookie.value;
-    }
-    if (header2) {
-      const parsed = parse(header2);
-      for (const name in parsed) {
-        combined_cookies[name] = parsed[name];
-      }
-    }
-    return Object.entries(combined_cookies).map(([name, value]) => `${name}=${value}`).join("; ");
-  }
-  return { cookies, new_cookies, get_cookie_header };
-}
-function domain_matches(hostname, constraint) {
-  if (!constraint)
-    return true;
-  const normalized = constraint[0] === "." ? constraint.slice(1) : constraint;
-  if (hostname === normalized)
-    return true;
-  return hostname.endsWith("." + normalized);
-}
-function path_matches(path, constraint) {
-  if (!constraint)
-    return true;
-  const normalized = constraint.endsWith("/") ? constraint.slice(0, -1) : constraint;
-  if (path === normalized)
-    return true;
-  return path.startsWith(normalized + "/");
-}
-function add_cookies_to_headers(headers, cookies) {
-  for (const new_cookie of cookies) {
-    const { name, value, options } = new_cookie;
-    headers.append("set-cookie", serialize(name, value, options));
-  }
-}
-function create_fetch({ event, options, state, get_cookie_header }) {
-  return async (info, init2) => {
-    const original_request = normalize_fetch_input(info, init2, event.url);
-    const request_body = init2?.body;
-    let mode = (info instanceof Request ? info.mode : init2?.mode) ?? "cors";
-    let credentials = (info instanceof Request ? info.credentials : init2?.credentials) ?? "same-origin";
-    return await options.hooks.handleFetch({
-      event,
-      request: original_request,
-      fetch: async (info2, init3) => {
-        const request = normalize_fetch_input(info2, init3, event.url);
-        const url = new URL(request.url);
-        if (!request.headers.has("origin")) {
-          request.headers.set("origin", event.url.origin);
-        }
-        if (info2 !== original_request) {
-          mode = (info2 instanceof Request ? info2.mode : init3?.mode) ?? "cors";
-          credentials = (info2 instanceof Request ? info2.credentials : init3?.credentials) ?? "same-origin";
-        }
-        if ((request.method === "GET" || request.method === "HEAD") && (mode === "no-cors" && url.origin !== event.url.origin || url.origin === event.url.origin)) {
-          request.headers.delete("origin");
-        }
-        if (url.origin !== event.url.origin) {
-          if (`.${url.hostname}`.endsWith(`.${event.url.hostname}`) && credentials !== "omit") {
-            const cookie = get_cookie_header(url, request.headers.get("cookie"));
-            if (cookie)
-              request.headers.set("cookie", cookie);
-          }
-          let response2 = await fetch(request);
-          if (mode === "no-cors") {
-            response2 = new Response("", {
-              status: response2.status,
-              statusText: response2.statusText,
-              headers: response2.headers
-            });
-          }
-          return response2;
-        }
-        let response;
-        const prefix = options.paths.assets || options.paths.base;
-        const decoded = decodeURIComponent(url.pathname);
-        const filename = (decoded.startsWith(prefix) ? decoded.slice(prefix.length) : decoded).slice(1);
-        const filename_html = `${filename}/index.html`;
-        const is_asset = options.manifest.assets.has(filename);
-        const is_asset_html = options.manifest.assets.has(filename_html);
-        if (is_asset || is_asset_html) {
-          const file = is_asset ? filename : filename_html;
-          if (options.read) {
-            const type = is_asset ? options.manifest.mimeTypes[filename.slice(filename.lastIndexOf("."))] : "text/html";
-            return new Response(options.read(file), {
-              headers: type ? { "content-type": type } : {}
-            });
-          }
-          return await fetch(request);
-        }
-        if (credentials !== "omit") {
-          const cookie = get_cookie_header(url, request.headers.get("cookie"));
-          if (cookie) {
-            request.headers.set("cookie", cookie);
-          }
-          const authorization = event.request.headers.get("authorization");
-          if (authorization && !request.headers.has("authorization")) {
-            request.headers.set("authorization", authorization);
-          }
-        }
-        if (request_body && typeof request_body !== "string" && !ArrayBuffer.isView(request_body)) {
-          throw new Error("Request body must be a string or TypedArray");
-        }
-        response = await respond(request, options, state);
-        const set_cookie = response.headers.get("set-cookie");
-        if (set_cookie) {
-          for (const str of set_cookie_parser.splitCookiesString(set_cookie)) {
-            const { name, value, ...options2 } = set_cookie_parser.parseString(str);
-            event.cookies.set(
-              name,
-              value,
-              options2
-            );
-          }
-        }
-        return response;
-      }
-    });
-  };
-}
-function normalize_fetch_input(info, init2, url) {
-  if (info instanceof Request) {
-    return info;
-  }
-  return new Request(typeof info === "string" ? new URL(info, url) : info, init2);
-}
-const default_transform = ({ html }) => html;
-const default_filter = () => false;
-const default_preload = ({ type }) => type !== "asset";
-async function respond(request, options, state) {
-  let url = new URL(request.url);
-  if (options.csrf.check_origin) {
-    const forbidden = request.method === "POST" && request.headers.get("origin") !== url.origin && is_form_content_type(request);
-    if (forbidden) {
-      return new Response(`Cross-site ${request.method} form submissions are forbidden`, {
-        status: 403
-      });
-    }
-  }
-  let decoded;
-  try {
-    decoded = decode_pathname(url.pathname);
-  } catch {
-    return new Response("Malformed URI", { status: 400 });
-  }
-  let route = null;
-  let params = {};
-  if (options.paths.base && !state.prerendering?.fallback) {
-    if (!decoded.startsWith(options.paths.base)) {
-      return new Response("Not found", { status: 404 });
-    }
-    decoded = decoded.slice(options.paths.base.length) || "/";
-  }
-  const is_data_request = has_data_suffix(decoded);
-  if (is_data_request)
-    decoded = strip_data_suffix(decoded) || "/";
-  if (!state.prerendering?.fallback) {
-    const matchers = await options.manifest._.matchers();
-    for (const candidate of options.manifest._.routes) {
-      const match = candidate.pattern.exec(decoded);
-      if (!match)
-        continue;
-      const matched = exec(match, candidate, matchers);
-      if (matched) {
-        route = candidate;
-        params = decode_params(matched);
-        break;
-      }
-    }
-  }
-  if (route?.page && !is_data_request) {
-    const normalized = normalize_path(url.pathname, options.trailing_slash);
-    if (normalized !== url.pathname && !state.prerendering?.fallback) {
-      return new Response(void 0, {
-        status: 301,
-        headers: {
-          "x-sveltekit-normalize": "1",
-          location: (normalized.startsWith("//") ? url.origin + normalized : normalized) + (url.search === "?" ? "" : url.search)
-        }
-      });
-    }
-  }
-  const headers = {};
-  const { cookies, new_cookies, get_cookie_header } = get_cookies(request, url, options);
-  if (state.prerendering && !state.prerendering.fallback)
-    disable_search(url);
-  const event = {
-    cookies,
-    fetch: null,
-    getClientAddress: state.getClientAddress || (() => {
-      throw new Error(
-        `${"@sveltejs/adapter-vercel"} does not specify getClientAddress. Please raise an issue`
-      );
-    }),
-    locals: {},
-    params,
-    platform: state.platform,
-    request,
-    route: { id: route?.id ?? null },
-    setHeaders: (new_headers) => {
-      for (const key2 in new_headers) {
-        const lower = key2.toLowerCase();
-        const value = new_headers[key2];
-        if (lower === "set-cookie") {
-          throw new Error(
-            `Use \`event.cookies.set(name, value, options)\` instead of \`event.setHeaders\` to set cookies`
-          );
-        } else if (lower in headers) {
-          throw new Error(`"${key2}" header is already set`);
-        } else {
-          headers[lower] = value;
-          if (state.prerendering && lower === "cache-control") {
-            state.prerendering.cache = value;
-          }
-        }
-      }
-    },
-    url
-  };
-  event.fetch = create_fetch({ event, options, state, get_cookie_header });
-  const removed = (property, replacement, suffix = "") => ({
-    get: () => {
-      throw new Error(`event.${property} has been replaced by event.${replacement}` + suffix);
-    }
-  });
-  const details = ". See https://github.com/sveltejs/kit/pull/3384 for details";
-  const body_getter = {
-    get: () => {
-      throw new Error(
-        "To access the request body use the text/json/arrayBuffer/formData methods, e.g. `body = await request.json()`" + details
-      );
-    }
-  };
-  Object.defineProperties(event, {
-    clientAddress: removed("clientAddress", "getClientAddress"),
-    method: removed("method", "request.method", details),
-    headers: removed("headers", "request.headers", details),
-    origin: removed("origin", "url.origin"),
-    path: removed("path", "url.pathname"),
-    query: removed("query", "url.searchParams"),
-    body: body_getter,
-    rawBody: body_getter,
-    routeId: removed("routeId", "route.id")
-  });
-  let resolve_opts = {
-    transformPageChunk: default_transform,
-    filterSerializedResponseHeaders: default_filter,
-    preload: default_preload
-  };
-  async function resolve(event2, opts) {
-    try {
-      if (opts) {
-        if ("transformPage" in opts) {
-          throw new Error(
-            "transformPage has been replaced by transformPageChunk \u2014 see https://github.com/sveltejs/kit/pull/5657 for more information"
-          );
-        }
-        if ("ssr" in opts) {
-          throw new Error(
-            "ssr has been removed, set it in the appropriate +layout.js instead. See the PR for more information: https://github.com/sveltejs/kit/pull/6197"
-          );
-        }
-        resolve_opts = {
-          transformPageChunk: opts.transformPageChunk || default_transform,
-          filterSerializedResponseHeaders: opts.filterSerializedResponseHeaders || default_filter,
-          preload: opts.preload || default_preload
-        };
-      }
-      if (state.prerendering?.fallback) {
-        return await render_response({
-          event: event2,
-          options,
-          state,
-          page_config: { ssr: false, csr: true },
-          status: 200,
-          error: null,
-          branch: [],
-          fetched: [],
-          resolve_opts
-        });
-      }
-      if (route) {
-        let response;
-        if (is_data_request) {
-          response = await render_data(event2, route, options, state);
-        } else if (route.endpoint && (!route.page || is_endpoint_request(event2))) {
-          response = await render_endpoint(event2, await route.endpoint(), state);
-        } else if (route.page) {
-          response = await render_page(event2, route, route.page, options, state, resolve_opts);
-        } else {
-          throw new Error("This should never happen");
-        }
-        return response;
-      }
-      if (state.initiator === GENERIC_ERROR) {
-        return new Response("Internal Server Error", {
-          status: 500
-        });
-      }
-      if (!state.initiator) {
-        return await respond_with_error({
-          event: event2,
-          options,
-          state,
-          status: 404,
-          error: new Error(`Not found: ${event2.url.pathname}`),
-          resolve_opts
-        });
-      }
-      if (state.prerendering) {
-        return new Response("not found", { status: 404 });
-      }
-      return await fetch(request);
-    } catch (error2) {
-      return handle_fatal_error(event2, options, error2);
-    } finally {
-      event2.cookies.set = () => {
-        throw new Error("Cannot use `cookies.set(...)` after the response has been generated");
-      };
-      event2.setHeaders = () => {
-        throw new Error("Cannot use `setHeaders(...)` after the response has been generated");
-      };
-    }
-  }
-  try {
-    const response = await options.hooks.handle({
-      event,
-      resolve: (event2, opts) => resolve(event2, opts).then((response2) => {
-        for (const key2 in headers) {
-          const value = headers[key2];
-          response2.headers.set(key2, value);
-        }
-        if (is_data_request) {
-          const vary = response2.headers.get("Vary");
-          if (vary !== "*") {
-            response2.headers.append("Vary", INVALIDATED_HEADER);
-          }
-        }
-        add_cookies_to_headers(response2.headers, Object.values(new_cookies));
-        if (state.prerendering && event2.route.id !== null) {
-          response2.headers.set("x-sveltekit-routeid", encodeURI(event2.route.id));
-        }
-        return response2;
-      }),
-      get request() {
-        throw new Error("request in handle has been replaced with event" + details);
-      }
-    });
-    if (response.status === 200 && response.headers.has("etag")) {
-      let if_none_match_value = request.headers.get("if-none-match");
-      if (if_none_match_value?.startsWith('W/"')) {
-        if_none_match_value = if_none_match_value.substring(2);
-      }
-      const etag = response.headers.get("etag");
-      if (if_none_match_value === etag) {
-        const headers2 = new Headers({ etag });
-        for (const key2 of [
-          "cache-control",
-          "content-location",
-          "date",
-          "expires",
-          "vary",
-          "set-cookie"
-        ]) {
-          const value = response.headers.get(key2);
-          if (value)
-            headers2.set(key2, value);
-        }
-        return new Response(void 0, {
-          status: 304,
-          headers: headers2
-        });
-      }
-    }
-    return response;
-  } catch (error2) {
-    if (error2 instanceof Redirect) {
-      return redirect_response(error2.status, error2.location);
-    }
-    return handle_fatal_error(event, options, error2);
-  }
-}
-let base = "";
-let assets = "";
-function set_paths(paths) {
-  base = paths.base;
-  assets = paths.assets || base;
-}
-const app_template = ({ head, body, assets: assets2, nonce }) => '<!DOCTYPE html>\n<html lang="en">\n	<head>\n		<meta charset="utf-8" />\n		<meta\n			name="viewport"\n			content="width=device-width,initial-scale=1,shrink-to-fit=no,user-scalable=no"\n		/>\n		<meta name="a.validate.02" content="gc8Hcbkq-w-3WEWF_q38cMwWsDdHhE5icT8F" />\n		<meta name="google-site-verification" content="zn73VlG6JLf_oG3P8jQVbKGlDkQ9s6JcR6qZLzT2tVI" />\n		<meta name="google-adsense-account" content="ca-pub-1874822310102113" />\n\n		<meta property="og:type" content="profile" />\n		<meta property="profile:username" content="AguzzTN54" />\n		<meta property="twitter:card" content="summary_large_image" />\n		<meta name="author" content="AguzzTN54" />\n		<meta name="robots" content="index, follow" />\n\n		<meta name="language" content="English" />\n		<meta property="og:locale" content="en_US" />\n		<meta property="og:locale:alternate" content="id_ID" />\n		<meta property="og:locale:alternate" content="it_IT" />\n		<meta property="og:locale:alternate" content="ja_JP" />\n		<meta property="og:locale:alternate" content="pt_BR" />\n		<meta property="og:locale:alternate" content="ru_RU" />\n		<meta property="og:locale:alternate" content="th_TH" />\n		<meta property="og:locale:alternate" content="vi_VN" />\n		<meta property="og:locale:alternate" content="zh_CN" />\n		<title>Genshin Impact Wish Simulator</title>\n\n		<link rel="stylesheet" href="/icons.css" />\n		<link rel="icon" href="/favicon.ico" />\n		<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />\n		<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />\n		<meta name="msapplication-TileColor" content="#2d89ef" />\n		<meta name="theme-color" content="#ffffff" />\n\n		' + head + `
-
-		<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211756322-1"><\/script>
-		<script>
-			window.dataLayer = window.dataLayer || [];
-			function gtag() {
-				dataLayer.push(arguments);
-			}
-			gtag('js', new Date());
-			gtag('config', 'UA-211756322-1');
-		<\/script>
-	</head>
-	<body>
-		<div id="svelte" class="svelte">` + body + "</div>\n	</body>\n</html>\n";
-const error_template = ({ status, message }) => '<!DOCTYPE html>\n<html lang="en">\n	<head>\n		<meta charset="utf-8" />\n		<title>' + message + `</title>
-
-		<style>
-			body {
-				font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
-					Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
-				display: flex;
-				align-items: center;
-				justify-content: center;
-				height: 100vh;
-			}
-
-			.error {
-				display: flex;
-				align-items: center;
-				max-width: 32rem;
-				margin: 0 1rem;
-			}
-
-			.status {
-				font-weight: 200;
-				font-size: 3rem;
-				line-height: 1;
-				position: relative;
-				top: -0.05rem;
-			}
-
-			.message {
-				border-left: 1px solid #ccc;
-				padding: 0 0 0 1rem;
-				margin: 0 0 0 1rem;
-				min-height: 2.5rem;
-				display: flex;
-				align-items: center;
-			}
-
-			.message h1 {
-				font-weight: 400;
-				font-size: 1em;
-				margin: 0;
-			}
-		</style>
-	</head>
-	<body>
-		<div class="error">
-			<span class="status">` + status + '</span>\n			<div class="message">\n				<h1>' + message + "</h1>\n			</div>\n		</div>\n	</body>\n</html>\n";
-let read = null;
-set_paths({ "base": "", "assets": "" });
-let default_protocol = "https";
-function override(settings) {
-  default_protocol = settings.protocol || default_protocol;
-  set_paths(settings.paths);
-  set_prerendering(settings.prerendering);
-  read = settings.read;
-}
-class Server {
-  constructor(manifest) {
-    this.options = {
-      csp: { "mode": "auto", "directives": { "upgrade-insecure-requests": false, "block-all-mixed-content": false }, "reportOnly": { "upgrade-insecure-requests": false, "block-all-mixed-content": false } },
-      csrf: {
-        check_origin: true
-      },
-      dev: false,
-      handle_error: (error2, event) => {
-        return this.options.hooks.handleError({
-          error: error2,
-          event,
-          get request() {
-            throw new Error("request in handleError has been replaced with event. See https://github.com/sveltejs/kit/pull/3384 for details");
-          }
-        }) ?? { message: event.route.id != null ? "Internal Error" : "Not Found" };
-      },
-      hooks: null,
-      manifest,
-      paths: { base, assets },
-      public_env: {},
-      read,
-      root: Root,
-      service_worker: false,
-      app_template,
-      app_template_contains_nonce: false,
-      error_template,
-      trailing_slash: "never"
-    };
-  }
-  async init({ env }) {
-    const entries = Object.entries(env);
-    Object.fromEntries(entries.filter(([k]) => !k.startsWith("PUBLIC_")));
-    const pub = Object.fromEntries(entries.filter(([k]) => k.startsWith("PUBLIC_")));
-    this.options.public_env = pub;
-    if (!this.options.hooks) {
-      const module = await import("./chunks/hooks.js");
-      if (module.externalFetch) {
-        throw new Error("externalFetch has been removed \u2014 use handleFetch instead. See https://github.com/sveltejs/kit/pull/6565 for details");
-      }
-      this.options.hooks = {
-        handle: module.handle || (({ event, resolve }) => resolve(event)),
-        handleError: module.handleError || (({ error: error2 }) => console.error(error2.stack)),
-        handleFetch: module.handleFetch || (({ request, fetch: fetch2 }) => fetch2(request))
-      };
-    }
-  }
-  async respond(request, options = {}) {
-    if (!(request instanceof Request)) {
-      throw new Error("The first argument to server.respond must be a Request object. See https://github.com/sveltejs/kit/pull/3384 for details");
-    }
-    return respond(request, this.options, options);
-  }
-}
-export {
-  Server,
-  override
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/manifest-full.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/manifest-full.js
deleted file mode 100644
index 7dfd5f82..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/manifest-full.js
+++ /dev/null
@@ -1,109 +0,0 @@
-export const manifest = {
-	appDir: "internal",
-	appPath: "internal",
-	assets: new Set([".nojekyll",".well-known/assetlinks.json","apple-touch-icon.png","browserconfig.xml","favicon.ico","fonts/aaqishu.woff","fonts/genshin-icon.eot","fonts/genshin-icon.svg","fonts/genshin-icon.ttf","fonts/genshin-icon.woff","fonts/optimized_global_web.woff2","fonts/optimized_jp_web.woff2","fonts/optimized_th_web.woff2","fonts/optimized_zh_web.woff2","google77966abbed90508f.html","icons/icon-128x128.png","icons/icon-144x144.png","icons/icon-152x152.png","icons/icon-16x16.png","icons/icon-192x192.png","icons/icon-256x256.png","icons/icon-32x32.png","icons/icon-384x384.png","icons/icon-512x512.png","icons/icon-72x72.png","icons/icon-96x96.png","icons/mstile-150x150.png","icons.css","images/background/bg1.webp","images/background/bg10.webp","images/background/bg11.webp","images/background/bg12.webp","images/background/bg13.webp","images/background/bg14.webp","images/background/bg15.webp","images/background/bg16.webp","images/background/bg17.webp","images/background/bg18.webp","images/background/bg19.webp","images/background/bg2.webp","images/background/bg20.webp","images/background/bg3.webp","images/background/bg4.webp","images/background/bg5.webp","images/background/bg6.webp","images/background/bg7.webp","images/background/bg8.webp","images/background/bg9.webp","images/background/constellation.webp","images/background/detailbg.webp","images/background/element-anemo-bg.webp","images/background/element-cryo-bg.webp","images/background/element-dendro-bg.webp","images/background/element-electro-bg.webp","images/background/element-geo-bg.webp","images/background/element-hydro-bg.webp","images/background/element-pyro-bg.webp","images/background/outfit-background.webp","images/background/splash-background.webp","images/background/wish-background.webp","images/banner/beginner/beginner.webp","images/banner/character-events/adrift-in-the-harbor-1.webp","images/banner/character-events/adrift-in-the-harbor-2.webp","images/banner/character-events/adrift-in-the-harbor-3.webp","images/banner/character-events/adrift-in-the-harbor-4.webp","images/banner/character-events/auric-blaze-1.webp","images/banner/character-events/azure-excursion-1.webp","images/banner/character-events/azure-excursion-2.webp","images/banner/character-events/ballad-in-goblets-1.webp","images/banner/character-events/ballad-in-goblets-2.webp","images/banner/character-events/ballad-in-goblets-3.webp","images/banner/character-events/ballad-in-goblets-4.webp","images/banner/character-events/ballad-in-goblets-5.webp","images/banner/character-events/born-of-ocean-swell-1.webp","images/banner/character-events/born-of-ocean-swell-2.webp","images/banner/character-events/born-of-ocean-swell-3.webp","images/banner/character-events/caution-in-confidence-1.webp","images/banner/character-events/caution-in-confidence-2.webp","images/banner/character-events/chanson-of-many-waters-1.webp","images/banner/character-events/conjuring-chiaroscuro-1.webp","images/banner/character-events/dance-of-lantern-1.webp","images/banner/character-events/decree-of-the-deeps-1.webp","images/banner/character-events/discerner-of-enigmas-1.webp","images/banner/character-events/discerner-of-enigmas-2.webp","images/banner/character-events/discerner-of-enigmas-3.webp","images/banner/character-events/drifting-luminescence-1.webp","images/banner/character-events/drifting-luminescence-2.webp","images/banner/character-events/drifting-luminescence-3.webp","images/banner/character-events/drifting-luminescence-4.webp","images/banner/character-events/everbloom-violet-1.webp","images/banner/character-events/everbloom-violet-2.webp","images/banner/character-events/everbloom-violet-3.webp","images/banner/character-events/farewell-of-snezhnaya-1.webp","images/banner/character-events/farewell-of-snezhnaya-2.webp","images/banner/character-events/farewell-of-snezhnaya-3.webp","images/banner/character-events/farewell-of-snezhnaya-4.webp","images/banner/character-events/farewell-of-snezhnaya-5.webp","images/banner/character-events/from-ashes-reborn-1.webp","images/banner/character-events/from-ashes-reborn-2.webp","images/banner/character-events/gentry-of-hermitage-1.webp","images/banner/character-events/gentry-of-hermitage-2.webp","images/banner/character-events/gentry-of-hermitage-3.webp","images/banner/character-events/gentry-of-hermitage-4.webp","images/banner/character-events/gentry-of-hermitage-5.webp","images/banner/character-events/immaculate-pulse-1.webp","images/banner/character-events/immaculate-pulse-2.webp","images/banner/character-events/invitation-to-mundane-life-1.webp","images/banner/character-events/invitation-to-mundane-life-2.webp","images/banner/character-events/invitation-to-mundane-life-3.webp","images/banner/character-events/invitation-to-mundane-life-4.webp","images/banner/character-events/leaves-in-the-wind-1.webp","images/banner/character-events/leaves-in-the-wind-2.webp","images/banner/character-events/leaves-in-the-wind-3.webp","images/banner/character-events/moment-of-bloom-1.webp","images/banner/character-events/moment-of-bloom-2.webp","images/banner/character-events/moment-of-bloom-3.webp","images/banner/character-events/moment-of-bloom-4.webp","images/banner/character-events/oni_s-royale-1.webp","images/banner/character-events/oni_s-royale-2.webp","images/banner/character-events/oni_s-royale-3.webp","images/banner/character-events/reign-of-serenity-1.webp","images/banner/character-events/reign-of-serenity-2.webp","images/banner/character-events/reign-of-serenity-3.webp","images/banner/character-events/secretum-secretorum-1.webp","images/banner/character-events/secretum-secretorum-2.webp","images/banner/character-events/secretum-secretorum-3.webp","images/banner/character-events/sparkling-steps-1.webp","images/banner/character-events/sparkling-steps-2.webp","images/banner/character-events/sparkling-steps-3.webp","images/banner/character-events/sparkling-steps-4.webp","images/banner/character-events/tapestry-of-golden-flames-1.webp","images/banner/character-events/tapestry-of-golden-flames-2.webp","images/banner/character-events/tapestry-of-golden-flames-3.webp","images/banner/character-events/tapestry-of-golden-flames-4.webp","images/banner/character-events/tempestuous-destiny-1.webp","images/banner/character-events/the-heron_s-court-1.webp","images/banner/character-events/the-heron_s-court-2.webp","images/banner/character-events/the-heron_s-court-3.webp","images/banner/character-events/the-moongrass-enlightenment-1.webp","images/banner/character-events/the-moongrass-enlightenment-2.webp","images/banner/character-events/the-transcendent-one-returns-1.webp","images/banner/character-events/the-transcendent-one-returns-2.webp","images/banner/character-events/twilight-arbiter-1.webp","images/banner/character-events/twilight-arbiter-2.webp","images/banner/character-events/twirling-lotus-1.webp","images/banner/character-events/twirling-lotus-2.webp","images/banner/character-events/viridescent-vigil-1.webp","images/banner/standard/wanderlust-invocation-1.webp","images/banner/standard/wanderlust-invocation-2.webp","images/banner/thumbnail/adrift-in-the-harbor-1.webp","images/banner/thumbnail/adrift-in-the-harbor-2.webp","images/banner/thumbnail/adrift-in-the-harbor-3.webp","images/banner/thumbnail/adrift-in-the-harbor-4.webp","images/banner/thumbnail/auric-blaze-1.webp","images/banner/thumbnail/azure-excursion-1.webp","images/banner/thumbnail/azure-excursion-2.webp","images/banner/thumbnail/ballad-in-goblets-1.webp","images/banner/thumbnail/ballad-in-goblets-2.webp","images/banner/thumbnail/ballad-in-goblets-3.webp","images/banner/thumbnail/ballad-in-goblets-4.webp","images/banner/thumbnail/ballad-in-goblets-5.webp","images/banner/thumbnail/born-of-ocean-swell-1.webp","images/banner/thumbnail/born-of-ocean-swell-2.webp","images/banner/thumbnail/born-of-ocean-swell-3.webp","images/banner/thumbnail/caution-in-confidence-1.webp","images/banner/thumbnail/caution-in-confidence-2.webp","images/banner/thumbnail/chanson-of-many-waters-1.webp","images/banner/thumbnail/conjuring-chiaroscuro-1.webp","images/banner/thumbnail/dance-of-lantern-1.webp","images/banner/thumbnail/decree-of-the-deeps-1.webp","images/banner/thumbnail/discerner-of-enigmas-1.webp","images/banner/thumbnail/discerner-of-enigmas-2.webp","images/banner/thumbnail/discerner-of-enigmas-3.webp","images/banner/thumbnail/drifting-luminescence-1.webp","images/banner/thumbnail/drifting-luminescence-2.webp","images/banner/thumbnail/drifting-luminescence-3.webp","images/banner/thumbnail/drifting-luminescence-4.webp","images/banner/thumbnail/epitome-invocation-1.webp","images/banner/thumbnail/epitome-invocation-10.webp","images/banner/thumbnail/epitome-invocation-11.webp","images/banner/thumbnail/epitome-invocation-12.webp","images/banner/thumbnail/epitome-invocation-13.webp","images/banner/thumbnail/epitome-invocation-14.webp","images/banner/thumbnail/epitome-invocation-15.webp","images/banner/thumbnail/epitome-invocation-16.webp","images/banner/thumbnail/epitome-invocation-17.webp","images/banner/thumbnail/epitome-invocation-18.webp","images/banner/thumbnail/epitome-invocation-19.webp","images/banner/thumbnail/epitome-invocation-2.webp","images/banner/thumbnail/epitome-invocation-20.webp","images/banner/thumbnail/epitome-invocation-21.webp","images/banner/thumbnail/epitome-invocation-22.webp","images/banner/thumbnail/epitome-invocation-23.webp","images/banner/thumbnail/epitome-invocation-24.webp","images/banner/thumbnail/epitome-invocation-25.webp","images/banner/thumbnail/epitome-invocation-26.webp","images/banner/thumbnail/epitome-invocation-27.webp","images/banner/thumbnail/epitome-invocation-28.webp","images/banner/thumbnail/epitome-invocation-29.webp","images/banner/thumbnail/epitome-invocation-3.webp","images/banner/thumbnail/epitome-invocation-30.webp","images/banner/thumbnail/epitome-invocation-31.webp","images/banner/thumbnail/epitome-invocation-32.webp","images/banner/thumbnail/epitome-invocation-33.webp","images/banner/thumbnail/epitome-invocation-34.webp","images/banner/thumbnail/epitome-invocation-35.webp","images/banner/thumbnail/epitome-invocation-36.webp","images/banner/thumbnail/epitome-invocation-37.webp","images/banner/thumbnail/epitome-invocation-38.webp","images/banner/thumbnail/epitome-invocation-39.webp","images/banner/thumbnail/epitome-invocation-4.webp","images/banner/thumbnail/epitome-invocation-40.webp","images/banner/thumbnail/epitome-invocation-41.webp","images/banner/thumbnail/epitome-invocation-42.webp","images/banner/thumbnail/epitome-invocation-43.webp","images/banner/thumbnail/epitome-invocation-44.webp","images/banner/thumbnail/epitome-invocation-45.webp","images/banner/thumbnail/epitome-invocation-46.webp","images/banner/thumbnail/epitome-invocation-47.webp","images/banner/thumbnail/epitome-invocation-48.webp","images/banner/thumbnail/epitome-invocation-49.webp","images/banner/thumbnail/epitome-invocation-5.webp","images/banner/thumbnail/epitome-invocation-50.webp","images/banner/thumbnail/epitome-invocation-51.webp","images/banner/thumbnail/epitome-invocation-52.webp","images/banner/thumbnail/epitome-invocation-53.webp","images/banner/thumbnail/epitome-invocation-54.webp","images/banner/thumbnail/epitome-invocation-55.webp","images/banner/thumbnail/epitome-invocation-6.webp","images/banner/thumbnail/epitome-invocation-7.webp","images/banner/thumbnail/epitome-invocation-8.webp","images/banner/thumbnail/epitome-invocation-9.webp","images/banner/thumbnail/everbloom-violet-1.webp","images/banner/thumbnail/everbloom-violet-2.webp","images/banner/thumbnail/everbloom-violet-3.webp","images/banner/thumbnail/farewell-of-snezhnaya-1.webp","images/banner/thumbnail/farewell-of-snezhnaya-2.webp","images/banner/thumbnail/farewell-of-snezhnaya-3.webp","images/banner/thumbnail/farewell-of-snezhnaya-4.webp","images/banner/thumbnail/farewell-of-snezhnaya-5.webp","images/banner/thumbnail/from-ashes-reborn-1.webp","images/banner/thumbnail/from-ashes-reborn-2.webp","images/banner/thumbnail/gentry-of-hermitage-1.webp","images/banner/thumbnail/gentry-of-hermitage-2.webp","images/banner/thumbnail/gentry-of-hermitage-3.webp","images/banner/thumbnail/gentry-of-hermitage-4.webp","images/banner/thumbnail/gentry-of-hermitage-5.webp","images/banner/thumbnail/immaculate-pulse-1.webp","images/banner/thumbnail/immaculate-pulse-2.webp","images/banner/thumbnail/invitation-to-mundane-life-1.webp","images/banner/thumbnail/invitation-to-mundane-life-2.webp","images/banner/thumbnail/invitation-to-mundane-life-3.webp","images/banner/thumbnail/invitation-to-mundane-life-4.webp","images/banner/thumbnail/leaves-in-the-wind-1.webp","images/banner/thumbnail/leaves-in-the-wind-2.webp","images/banner/thumbnail/leaves-in-the-wind-3.webp","images/banner/thumbnail/moment-of-bloom-1.webp","images/banner/thumbnail/moment-of-bloom-2.webp","images/banner/thumbnail/moment-of-bloom-3.webp","images/banner/thumbnail/moment-of-bloom-4.webp","images/banner/thumbnail/oni_s-royale-1.webp","images/banner/thumbnail/oni_s-royale-2.webp","images/banner/thumbnail/oni_s-royale-3.webp","images/banner/thumbnail/reign-of-serenity-1.webp","images/banner/thumbnail/reign-of-serenity-2.webp","images/banner/thumbnail/reign-of-serenity-3.webp","images/banner/thumbnail/secretum-secretorum-1.webp","images/banner/thumbnail/secretum-secretorum-2.webp","images/banner/thumbnail/secretum-secretorum-3.webp","images/banner/thumbnail/sparkling-steps-1.webp","images/banner/thumbnail/sparkling-steps-2.webp","images/banner/thumbnail/sparkling-steps-3.webp","images/banner/thumbnail/sparkling-steps-4.webp","images/banner/thumbnail/tapestry-of-golden-flames-1.webp","images/banner/thumbnail/tapestry-of-golden-flames-2.webp","images/banner/thumbnail/tapestry-of-golden-flames-3.webp","images/banner/thumbnail/tapestry-of-golden-flames-4.webp","images/banner/thumbnail/tempestuous-destiny-1.webp","images/banner/thumbnail/the-heron_s-court-1.webp","images/banner/thumbnail/the-heron_s-court-2.webp","images/banner/thumbnail/the-heron_s-court-3.webp","images/banner/thumbnail/the-moongrass-enlightenment-1.webp","images/banner/thumbnail/the-moongrass-enlightenment-2.webp","images/banner/thumbnail/the-transcendent-one-returns-1.webp","images/banner/thumbnail/the-transcendent-one-returns-2.webp","images/banner/thumbnail/twilight-arbiter-1.webp","images/banner/thumbnail/twilight-arbiter-2.webp","images/banner/thumbnail/twirling-lotus-1.webp","images/banner/thumbnail/twirling-lotus-2.webp","images/banner/thumbnail/viridescent-vigil-1.webp","images/banner/weapons/epitome-invocation-1.webp","images/banner/weapons/epitome-invocation-10.webp","images/banner/weapons/epitome-invocation-11.webp","images/banner/weapons/epitome-invocation-12.webp","images/banner/weapons/epitome-invocation-13.webp","images/banner/weapons/epitome-invocation-14.webp","images/banner/weapons/epitome-invocation-15.webp","images/banner/weapons/epitome-invocation-16.webp","images/banner/weapons/epitome-invocation-17.webp","images/banner/weapons/epitome-invocation-18.webp","images/banner/weapons/epitome-invocation-19.webp","images/banner/weapons/epitome-invocation-2.webp","images/banner/weapons/epitome-invocation-20.webp","images/banner/weapons/epitome-invocation-21.webp","images/banner/weapons/epitome-invocation-22.webp","images/banner/weapons/epitome-invocation-23.webp","images/banner/weapons/epitome-invocation-24.webp","images/banner/weapons/epitome-invocation-25.webp","images/banner/weapons/epitome-invocation-26.webp","images/banner/weapons/epitome-invocation-27.webp","images/banner/weapons/epitome-invocation-28.webp","images/banner/weapons/epitome-invocation-29.webp","images/banner/weapons/epitome-invocation-3.webp","images/banner/weapons/epitome-invocation-30.webp","images/banner/weapons/epitome-invocation-31.webp","images/banner/weapons/epitome-invocation-32.webp","images/banner/weapons/epitome-invocation-33.webp","images/banner/weapons/epitome-invocation-34.webp","images/banner/weapons/epitome-invocation-35.webp","images/banner/weapons/epitome-invocation-36.webp","images/banner/weapons/epitome-invocation-37.webp","images/banner/weapons/epitome-invocation-38.webp","images/banner/weapons/epitome-invocation-39.webp","images/banner/weapons/epitome-invocation-4.webp","images/banner/weapons/epitome-invocation-40.webp","images/banner/weapons/epitome-invocation-41.webp","images/banner/weapons/epitome-invocation-42.webp","images/banner/weapons/epitome-invocation-43.webp","images/banner/weapons/epitome-invocation-44.webp","images/banner/weapons/epitome-invocation-45.webp","images/banner/weapons/epitome-invocation-46.webp","images/banner/weapons/epitome-invocation-47.webp","images/banner/weapons/epitome-invocation-48.webp","images/banner/weapons/epitome-invocation-49.webp","images/banner/weapons/epitome-invocation-5.webp","images/banner/weapons/epitome-invocation-50.webp","images/banner/weapons/epitome-invocation-51.webp","images/banner/weapons/epitome-invocation-52.webp","images/banner/weapons/epitome-invocation-53.webp","images/banner/weapons/epitome-invocation-54.webp","images/banner/weapons/epitome-invocation-55.webp","images/banner/weapons/epitome-invocation-6.webp","images/banner/weapons/epitome-invocation-7.webp","images/banner/weapons/epitome-invocation-8.webp","images/banner/weapons/epitome-invocation-9.webp","images/characters/banner-button/albedo.webp","images/characters/banner-button/alhaitham.webp","images/characters/banner-button/arataki-itto.webp","images/characters/banner-button/baizhu.webp","images/characters/banner-button/cyno.webp","images/characters/banner-button/dehya.webp","images/characters/banner-button/eula.webp","images/characters/banner-button/furina.webp","images/characters/banner-button/ganyu.webp","images/characters/banner-button/hu-tao.webp","images/characters/banner-button/jean.webp","images/characters/banner-button/kaedehara-kazuha.webp","images/characters/banner-button/kamisato-ayaka.webp","images/characters/banner-button/kamisato-ayato.webp","images/characters/banner-button/keqing.webp","images/characters/banner-button/klee.webp","images/characters/banner-button/lyney.webp","images/characters/banner-button/nahida.webp","images/characters/banner-button/neuvillette.webp","images/characters/banner-button/nilou.webp","images/characters/banner-button/noelle.webp","images/characters/banner-button/qiqi.webp","images/characters/banner-button/raiden-shogun.webp","images/characters/banner-button/sangonomiya-kokomi.webp","images/characters/banner-button/shenhe.webp","images/characters/banner-button/tartaglia.webp","images/characters/banner-button/tighnari.webp","images/characters/banner-button/venti.webp","images/characters/banner-button/wanderer.webp","images/characters/banner-button/wriothesley.webp","images/characters/banner-button/xiao.webp","images/characters/banner-button/yae-miko.webp","images/characters/banner-button/yelan.webp","images/characters/banner-button/yoimiya.webp","images/characters/banner-button/zhongli.webp","images/characters/face/4star/amber.webp","images/characters/face/4star/barbara.webp","images/characters/face/4star/beidou.webp","images/characters/face/4star/bennett.webp","images/characters/face/4star/candace.webp","images/characters/face/4star/charlotte.webp","images/characters/face/4star/chongyun.webp","images/characters/face/4star/collei.webp","images/characters/face/4star/diona.webp","images/characters/face/4star/dori.webp","images/characters/face/4star/faruzan.webp","images/characters/face/4star/fischl.webp","images/characters/face/4star/freminet.webp","images/characters/face/4star/gorou.webp","images/characters/face/4star/kaeya.webp","images/characters/face/4star/kaveh.webp","images/characters/face/4star/kirara.webp","images/characters/face/4star/kujou-sara.webp","images/characters/face/4star/kuki-shinobu.webp","images/characters/face/4star/layla.webp","images/characters/face/4star/lisa.webp","images/characters/face/4star/lynette.webp","images/characters/face/4star/mika.webp","images/characters/face/4star/ningguang.webp","images/characters/face/4star/noelle.webp","images/characters/face/4star/razor.webp","images/characters/face/4star/rosaria.webp","images/characters/face/4star/sayu.webp","images/characters/face/4star/shikanoin-heizou.webp","images/characters/face/4star/sucrose.webp","images/characters/face/4star/thoma.webp","images/characters/face/4star/xiangling.webp","images/characters/face/4star/xingqiu.webp","images/characters/face/4star/xinyan.webp","images/characters/face/4star/yanfei.webp","images/characters/face/4star/yaoyao.webp","images/characters/face/4star/yun-jin.webp","images/characters/face/5star/albedo.webp","images/characters/face/5star/alhaitham.webp","images/characters/face/5star/arataki-itto.webp","images/characters/face/5star/baizhu.webp","images/characters/face/5star/cyno.webp","images/characters/face/5star/dehya.webp","images/characters/face/5star/diluc.webp","images/characters/face/5star/eula.webp","images/characters/face/5star/furina.webp","images/characters/face/5star/ganyu.webp","images/characters/face/5star/hu-tao.webp","images/characters/face/5star/jean.webp","images/characters/face/5star/kaedehara-kazuha.webp","images/characters/face/5star/kamisato-ayaka.webp","images/characters/face/5star/kamisato-ayato.webp","images/characters/face/5star/keqing.webp","images/characters/face/5star/klee.webp","images/characters/face/5star/lyney.webp","images/characters/face/5star/mona.webp","images/characters/face/5star/nahida.webp","images/characters/face/5star/neuvillette.webp","images/characters/face/5star/nilou.webp","images/characters/face/5star/qiqi.webp","images/characters/face/5star/raiden-shogun.webp","images/characters/face/5star/sangonomiya-kokomi.webp","images/characters/face/5star/shenhe.webp","images/characters/face/5star/tartaglia.webp","images/characters/face/5star/tighnari.webp","images/characters/face/5star/venti.webp","images/characters/face/5star/wanderer.webp","images/characters/face/5star/wriothesley.webp","images/characters/face/5star/xiao.webp","images/characters/face/5star/yae-miko.webp","images/characters/face/5star/yelan.webp","images/characters/face/5star/yoimiya.webp","images/characters/face/5star/zhongli.webp","images/characters/splash-art/4star/amber.webp","images/characters/splash-art/4star/barbara.webp","images/characters/splash-art/4star/beidou.webp","images/characters/splash-art/4star/bennett.webp","images/characters/splash-art/4star/candace.webp","images/characters/splash-art/4star/charlotte.webp","images/characters/splash-art/4star/chongyun.webp","images/characters/splash-art/4star/collei.webp","images/characters/splash-art/4star/diona.webp","images/characters/splash-art/4star/dori.webp","images/characters/splash-art/4star/faruzan.webp","images/characters/splash-art/4star/fischl.webp","images/characters/splash-art/4star/freminet.webp","images/characters/splash-art/4star/gorou.webp","images/characters/splash-art/4star/kaeya.webp","images/characters/splash-art/4star/kaveh.webp","images/characters/splash-art/4star/kirara.webp","images/characters/splash-art/4star/kujou-sara.webp","images/characters/splash-art/4star/kuki-shinobu.webp","images/characters/splash-art/4star/layla.webp","images/characters/splash-art/4star/lisa.webp","images/characters/splash-art/4star/lynette.webp","images/characters/splash-art/4star/mika.webp","images/characters/splash-art/4star/ningguang.webp","images/characters/splash-art/4star/noelle.webp","images/characters/splash-art/4star/razor.webp","images/characters/splash-art/4star/rosaria.webp","images/characters/splash-art/4star/sayu.webp","images/characters/splash-art/4star/shikanoin-heizou.webp","images/characters/splash-art/4star/sucrose.webp","images/characters/splash-art/4star/thoma.webp","images/characters/splash-art/4star/xiangling.webp","images/characters/splash-art/4star/xingqiu.webp","images/characters/splash-art/4star/xinyan.webp","images/characters/splash-art/4star/yanfei.webp","images/characters/splash-art/4star/yaoyao.webp","images/characters/splash-art/4star/yun-jin.webp","images/characters/splash-art/5star/albedo.webp","images/characters/splash-art/5star/alhaitham.webp","images/characters/splash-art/5star/arataki-itto.webp","images/characters/splash-art/5star/baizhu.webp","images/characters/splash-art/5star/cyno.webp","images/characters/splash-art/5star/dehya.webp","images/characters/splash-art/5star/diluc.webp","images/characters/splash-art/5star/eula.webp","images/characters/splash-art/5star/furina.webp","images/characters/splash-art/5star/ganyu.webp","images/characters/splash-art/5star/hu-tao.webp","images/characters/splash-art/5star/jean.webp","images/characters/splash-art/5star/kaedehara-kazuha.webp","images/characters/splash-art/5star/kamisato-ayaka.webp","images/characters/splash-art/5star/kamisato-ayato.webp","images/characters/splash-art/5star/keqing.webp","images/characters/splash-art/5star/klee.webp","images/characters/splash-art/5star/lyney.webp","images/characters/splash-art/5star/mona.webp","images/characters/splash-art/5star/nahida.webp","images/characters/splash-art/5star/neuvillette.webp","images/characters/splash-art/5star/nilou.webp","images/characters/splash-art/5star/qiqi.webp","images/characters/splash-art/5star/raiden-shogun.webp","images/characters/splash-art/5star/sangonomiya-kokomi.webp","images/characters/splash-art/5star/shenhe.webp","images/characters/splash-art/5star/tartaglia.webp","images/characters/splash-art/5star/tighnari.webp","images/characters/splash-art/5star/venti.webp","images/characters/splash-art/5star/wanderer.webp","images/characters/splash-art/5star/wriothesley.webp","images/characters/splash-art/5star/xiao.webp","images/characters/splash-art/5star/yae-miko.webp","images/characters/splash-art/5star/yelan.webp","images/characters/splash-art/5star/yoimiya.webp","images/characters/splash-art/5star/zhongli.webp","images/outfits/face/5-star-outrider.webp","images/outfits/face/a-sobriquet-under-shade.webp","images/outfits/face/blossoming-starlight.webp","images/outfits/face/ein-immernachtstraum.webp","images/outfits/face/executor_s-thorns.webp","images/outfits/face/favonian-fevotion.webp","images/outfits/face/flowing-fate.webp","images/outfits/face/opulent-splendor.webp","images/outfits/face/orchid_s-evening-gown.webp","images/outfits/face/red-dead-of-night.webp","images/outfits/face/sailwind-shadow.webp","images/outfits/face/sea-breeze-dandelion.webp","images/outfits/face/springbloom-missive.webp","images/outfits/face/summertime-sparkle.webp","images/outfits/splash-art/5-star-outrider.webp","images/outfits/splash-art/a-sobriquet-under-shade.webp","images/outfits/splash-art/blossoming-starlight.webp","images/outfits/splash-art/ein-immernachtstraum.webp","images/outfits/splash-art/executor_s-thorns.webp","images/outfits/splash-art/favonian-fevotion.webp","images/outfits/splash-art/flowing-fate.webp","images/outfits/splash-art/opulent-splendor.webp","images/outfits/splash-art/orchid_s-evening-gown.webp","images/outfits/splash-art/red-dead-of-night.webp","images/outfits/splash-art/sailwind-shadow.webp","images/outfits/splash-art/sea-breeze-dandelion.webp","images/outfits/splash-art/springbloom-missive.webp","images/outfits/splash-art/summertime-sparkle.webp","images/outfits/thumbnail/a-sobriquet-under-shade.webp","images/outfits/thumbnail/blossoming-starlight.webp","images/outfits/thumbnail/ein-immernachtstraum.webp","images/outfits/thumbnail/opulent-splendor.webp","images/outfits/thumbnail/orchid_s-evening-gown.webp","images/outfits/thumbnail/red-dead-of-night.webp","images/outfits/thumbnail/sailwind-shadow.webp","images/outfits/thumbnail/sea-breeze-dandelion.webp","images/outfits/thumbnail/springbloom-missive.webp","images/outfits/thumbnail/summertime-sparkle.webp","images/utility/3star-bg.webp","images/utility/4star-bg.webp","images/utility/5star-bg.webp","images/utility/acquaint-fate.webp","images/utility/admin.webp","images/utility/bg-bonus.webp","images/utility/bg-bow.webp","images/utility/bg-catalyst.webp","images/utility/bg-claymore.webp","images/utility/bg-polearm.webp","images/utility/bg-sword.webp","images/utility/book-select-bg.webp","images/utility/book.webp","images/utility/brand.png","images/utility/button.webp","images/utility/donate-bnb.png","images/utility/donate-btc.png","images/utility/donate-dana.png","images/utility/donate-ethereum.png","images/utility/donate-gopay.png","images/utility/donate-kofi.png","images/utility/donate-linkaja.png","images/utility/donate-ovo.png","images/utility/donate-saweria.webp","images/utility/donate-shopeepay.png","images/utility/donate-solana.png","images/utility/fatepointbook-half.webp","images/utility/fatepointbook.webp","images/utility/genesis-1980.webp","images/utility/genesis-300.webp","images/utility/genesis-3280.webp","images/utility/genesis-60.webp","images/utility/genesis-6480.webp","images/utility/genesis-980.webp","images/utility/genesis-bg.webp","images/utility/genesis.webp","images/utility/genshin-logo-cn.webp","images/utility/genshin-logo.webp","images/utility/history-select-bg.webp","images/utility/imbroke.webp","images/utility/intertwined-fate.webp","images/utility/masterless-stardust.webp","images/utility/masterless-starglitter.webp","images/utility/menu-active.png","images/utility/modal-bg-icon.png","images/utility/payment-childe.webp","images/utility/payment-tears.webp","images/utility/payment-wakaranai.webp","images/utility/paypal.png","images/utility/playstore-button.webp","images/utility/primogem.webp","images/utility/resultcard-bg.svg","images/utility/shop-nav-bg.webp","images/utility/stella-fortuna-4star.webp","images/utility/stella-fortuna-5star.webp","images/utility/welkin-card.webp","images/utility/welkin-moon-girl.webp","images/utility/welkin.webp","images/weapons/bow/3star/a22-01.webp","images/weapons/bow/3star/a22-02.webp","images/weapons/bow/3star/a22-03.webp","images/weapons/bow/3star/a22-04.webp","images/weapons/bow/3star/a22-05.webp","images/weapons/bow/3star/a22-06.webp","images/weapons/bow/3star/a22-07.webp","images/weapons/bow/3star/a22-08.webp","images/weapons/bow/3star/a22-09.webp","images/weapons/bow/3star/a22-10.webp","images/weapons/bow/3star/a22-11.webp","images/weapons/bow/3star/a22-12.webp","images/weapons/bow/3star/a22-13.webp","images/weapons/bow/3star/a22-14.webp","images/weapons/bow/3star/a22-15.webp","images/weapons/bow/3star/a22-16.webp","images/weapons/bow/3star/a22-17.webp","images/weapons/bow/3star/a22-18.webp","images/weapons/bow/3star/a22-19.webp","images/weapons/bow/3star/a22-20.webp","images/weapons/bow/3star/a22-21.webp","images/weapons/bow/3star/a22-22.webp","images/weapons/bow/3star/a22-23.webp","images/weapons/bow/3star/a22-24.webp","images/weapons/bow/3star/a22-25.webp","images/weapons/bow/3star/a22-26.webp","images/weapons/bow/3star/a22-27.webp","images/weapons/bow/3star/a22-28.webp","images/weapons/bow/3star/a22-29.webp","images/weapons/bow/3star/a22-30.webp","images/weapons/bow/3star/a22-31.webp","images/weapons/bow/3star/a22-32.webp","images/weapons/bow/3star/a22-33.webp","images/weapons/bow/3star/a22-34.webp","images/weapons/bow/3star/a22-35.webp","images/weapons/bow/3star/a22-36.webp","images/weapons/bow/3star/a22-37.webp","images/weapons/bow/3star/a22-38.webp","images/weapons/bow/3star/a22-39.webp","images/weapons/bow/3star/a22-40.webp","images/weapons/bow/3star/a22-41.webp","images/weapons/bow/3star/a22-42.webp","images/weapons/bow/3star/a22-43.webp","images/weapons/bow/3star/a22-44.webp","images/weapons/bow/3star/a22-45.webp","images/weapons/bow/3star/a22-46.webp","images/weapons/bow/3star/a22-47.webp","images/weapons/bow/3star/a22-48.webp","images/weapons/bow/3star/a22-49.webp","images/weapons/bow/3star/a22-50.webp","images/weapons/bow/3star/a22-51.webp","images/weapons/bow/4star/alley-hunter.webp","images/weapons/bow/4star/favonius-warbow.webp","images/weapons/bow/4star/mitternachts-waltz.webp","images/weapons/bow/4star/mouun_s-moon.webp","images/weapons/bow/4star/range-gauge.webp","images/weapons/bow/4star/rust.webp","images/weapons/bow/4star/sacrificial-bow.webp","images/weapons/bow/4star/the-stringless.webp","images/weapons/bow/5star/amos-bow.webp","images/weapons/bow/5star/aqua-simulacra.webp","images/weapons/bow/5star/elegy-for-the-end.webp","images/weapons/bow/5star/hunter_s-path.webp","images/weapons/bow/5star/polar-star.webp","images/weapons/bow/5star/skyward-harp.webp","images/weapons/bow/5star/the-first-great-magic.webp","images/weapons/bow/5star/thundering-pulse.webp","images/weapons/catalyst/3star/emerald-orb.webp","images/weapons/catalyst/3star/magic-guide.webp","images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp","images/weapons/catalyst/4star/eye-of-perception.webp","images/weapons/catalyst/4star/favonius-codex.webp","images/weapons/catalyst/4star/sacrificial-fragments.webp","images/weapons/catalyst/4star/the-widsith.webp","images/weapons/catalyst/4star/wandering-evenstar.webp","images/weapons/catalyst/4star/wine-and-song.webp","images/weapons/catalyst/5star/a-thousand-floating-dreams.webp","images/weapons/catalyst/5star/cashflow-supervision.webp","images/weapons/catalyst/5star/everlasting-moonglow.webp","images/weapons/catalyst/5star/jadefall-splendor.webp","images/weapons/catalyst/5star/kagura_s-verity.webp","images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp","images/weapons/catalyst/5star/memory-of-dust.webp","images/weapons/catalyst/5star/skyward-atlas.webp","images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp","images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp","images/weapons/claymore/3star/bloodtained-greatsword.webp","images/weapons/claymore/3star/debate-club.webp","images/weapons/claymore/3star/ferrous-shadow.webp","images/weapons/claymore/4star/akuoumaru.webp","images/weapons/claymore/4star/favonius-greatsword.webp","images/weapons/claymore/4star/lithic-blade.webp","images/weapons/claymore/4star/makhaira-aquamarine.webp","images/weapons/claymore/4star/portable-power-saw.webp","images/weapons/claymore/4star/rainslasher.webp","images/weapons/claymore/4star/sacrificial-greatsword.webp","images/weapons/claymore/4star/the-bell.webp","images/weapons/claymore/5star/beacon-of-the-reed-sea.webp","images/weapons/claymore/5star/redhorn-stonethresher.webp","images/weapons/claymore/5star/skyward-pride.webp","images/weapons/claymore/5star/song-of-broken-pines.webp","images/weapons/claymore/5star/the-unforged.webp","images/weapons/claymore/5star/wolf_s-gravestone.webp","images/weapons/polearm/3star/a14-01.webp","images/weapons/polearm/3star/a14-02.webp","images/weapons/polearm/3star/a14-03.webp","images/weapons/polearm/3star/a14-04.webp","images/weapons/polearm/3star/a14-05.webp","images/weapons/polearm/3star/a14-06.webp","images/weapons/polearm/3star/a14-07.webp","images/weapons/polearm/3star/a14-08.webp","images/weapons/polearm/3star/a14-09.webp","images/weapons/polearm/3star/a14-10.webp","images/weapons/polearm/3star/a14-11.webp","images/weapons/polearm/3star/a14-12.webp","images/weapons/polearm/3star/a14-13.webp","images/weapons/polearm/3star/a14-14.webp","images/weapons/polearm/3star/a14-15.webp","images/weapons/polearm/3star/a14-16.webp","images/weapons/polearm/3star/a14-17.webp","images/weapons/polearm/3star/a14-18.webp","images/weapons/polearm/3star/a14-19.webp","images/weapons/polearm/3star/a14-20.webp","images/weapons/polearm/3star/a14-21.webp","images/weapons/polearm/3star/a14-22.webp","images/weapons/polearm/3star/a14-23.webp","images/weapons/polearm/3star/a14-24.webp","images/weapons/polearm/3star/a14-25.webp","images/weapons/polearm/3star/a14-26.webp","images/weapons/polearm/3star/a14-27.webp","images/weapons/polearm/3star/a14-28.webp","images/weapons/polearm/3star/a14-29.webp","images/weapons/polearm/3star/a14-30.webp","images/weapons/polearm/3star/a14-31.webp","images/weapons/polearm/3star/a14-32.webp","images/weapons/polearm/3star/a14-33.webp","images/weapons/polearm/3star/a14-34.webp","images/weapons/polearm/3star/a14-35.webp","images/weapons/polearm/3star/a14-36.webp","images/weapons/polearm/3star/a14-37.webp","images/weapons/polearm/3star/a14-38.webp","images/weapons/polearm/3star/a14-39.webp","images/weapons/polearm/3star/a14-40.webp","images/weapons/polearm/3star/a14-41.webp","images/weapons/polearm/3star/a14-42.webp","images/weapons/polearm/3star/a14-43.webp","images/weapons/polearm/3star/a14-44.webp","images/weapons/polearm/3star/a14-45.webp","images/weapons/polearm/3star/a14-46.webp","images/weapons/polearm/3star/a14-47.webp","images/weapons/polearm/3star/a14-48.webp","images/weapons/polearm/3star/a14-49.webp","images/weapons/polearm/3star/a14-50.webp","images/weapons/polearm/3star/a14-51.webp","images/weapons/polearm/3star/a14-52.webp","images/weapons/polearm/3star/a14-53.webp","images/weapons/polearm/3star/black-tassel.webp","images/weapons/polearm/4star/dragon_s-bane.webp","images/weapons/polearm/4star/favonius-lance.webp","images/weapons/polearm/4star/lithic-spear.webp","images/weapons/polearm/4star/prospector-drill.webp","images/weapons/polearm/4star/wavebreaker_s-fin.webp","images/weapons/polearm/5star/calamity-queller.webp","images/weapons/polearm/5star/engulfing-lightning.webp","images/weapons/polearm/5star/primordial-jade-winged-spear.webp","images/weapons/polearm/5star/skyward-spine.webp","images/weapons/polearm/5star/staff-of-homa.webp","images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp","images/weapons/polearm/5star/vortex-vanquisher.webp","images/weapons/sword/3star/a03-01.webp","images/weapons/sword/3star/a03-02.webp","images/weapons/sword/3star/a03-03.webp","images/weapons/sword/3star/a03-04.webp","images/weapons/sword/3star/a03-05.webp","images/weapons/sword/3star/a03-06.webp","images/weapons/sword/3star/a03-07.webp","images/weapons/sword/3star/a03-08.webp","images/weapons/sword/3star/a03-09.webp","images/weapons/sword/3star/a03-10.webp","images/weapons/sword/3star/a03-11.webp","images/weapons/sword/3star/a03-12.webp","images/weapons/sword/3star/a03-13.webp","images/weapons/sword/3star/a03-14.webp","images/weapons/sword/3star/a03-15.webp","images/weapons/sword/3star/a03-16.webp","images/weapons/sword/3star/a03-17.webp","images/weapons/sword/3star/a03-18.webp","images/weapons/sword/3star/a03-19.webp","images/weapons/sword/3star/a03-20.webp","images/weapons/sword/3star/a03-21.webp","images/weapons/sword/3star/a03-22.webp","images/weapons/sword/3star/a03-23.webp","images/weapons/sword/3star/a03-24.webp","images/weapons/sword/3star/a03-25.webp","images/weapons/sword/3star/a03-26.webp","images/weapons/sword/3star/a03-27.webp","images/weapons/sword/3star/a03-28.webp","images/weapons/sword/3star/a03-29.webp","images/weapons/sword/3star/a03-30.webp","images/weapons/sword/3star/a03-31.webp","images/weapons/sword/3star/a03-32.webp","images/weapons/sword/3star/a03-33.webp","images/weapons/sword/3star/a03-34.webp","images/weapons/sword/3star/a03-35.webp","images/weapons/sword/3star/a03-36.webp","images/weapons/sword/3star/a03-37.webp","images/weapons/sword/3star/a03-38.webp","images/weapons/sword/3star/a03-39.webp","images/weapons/sword/3star/a03-40.webp","images/weapons/sword/3star/a03-41.webp","images/weapons/sword/3star/a03-42.webp","images/weapons/sword/3star/a03-43.webp","images/weapons/sword/3star/a03-44.webp","images/weapons/sword/3star/a03-45.webp","images/weapons/sword/3star/a03-46.webp","images/weapons/sword/3star/a03-47.webp","images/weapons/sword/3star/a03-48.webp","images/weapons/sword/3star/a03-49.webp","images/weapons/sword/3star/a03-50.webp","images/weapons/sword/3star/cool-steel.webp","images/weapons/sword/3star/harbinger-of-dawn.webp","images/weapons/sword/3star/skyrider-sword.webp","images/weapons/sword/4star/favonius-sword.webp","images/weapons/sword/4star/lion_s-roar.webp","images/weapons/sword/4star/sacrificial-sword.webp","images/weapons/sword/4star/the-alley-flash.webp","images/weapons/sword/4star/the-dockhands-assistant.webp","images/weapons/sword/4star/the-flute.webp","images/weapons/sword/4star/xiphos-moonlight.webp","images/weapons/sword/5star/aquila-favonia.webp","images/weapons/sword/5star/freedom-sworn.webp","images/weapons/sword/5star/haran-geppaku-futsu.webp","images/weapons/sword/5star/key-of-khaj-nisut.webp","images/weapons/sword/5star/light-of-foliar-incision.webp","images/weapons/sword/5star/mistsplitter-reforged.webp","images/weapons/sword/5star/primordial-jade-cutter.webp","images/weapons/sword/5star/skyward-blade.webp","images/weapons/sword/5star/splendor-of-tranquil-waters.webp","images/weapons/sword/5star/summit-shaper.webp","menu-active.png","meta-picture.jpg","placeholder-cdn.webp","robots.txt","safari-pinned-tab.svg","sfx/result-list.ogg","sfx/reveal-3star.ogg","sfx/reveal-4star.ogg","sfx/reveal-5star.ogg","sfx/wish-backsound.ogg","sitemap.xml","videos/3star-single.mp4","videos/4star-multi.mp4","videos/4star-single.mp4","videos/5star-multi.mp4","videos/5star-single.mp4","videos/bg.webm"]),
-	mimeTypes: {".json":"application/json",".png":"image/png",".xml":"application/xml",".ico":"image/vnd.microsoft.icon",".woff":"font/woff",".eot":"application/vnd.ms-fontobject",".svg":"image/svg+xml",".ttf":"font/ttf",".woff2":"font/woff2",".html":"text/html",".css":"text/css",".webp":"image/webp",".jpg":"image/jpeg",".txt":"text/plain",".ogg":"audio/ogg",".mp4":"video/mp4",".webm":"video/webm"},
-	_: {
-		entry: {"file":"internal/immutable/start-6e2b2fa2.js","imports":["internal/immutable/start-6e2b2fa2.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/preload-helper-176e53da.js"],"stylesheets":[],"fonts":[]},
-		nodes: [
-			() => import('./nodes/0.js'),
-			() => import('./nodes/1.js'),
-			() => import('./nodes/2.js'),
-			() => import('./nodes/3.js'),
-			() => import('./nodes/4.js'),
-			() => import('./nodes/5.js'),
-			() => import('./nodes/6.js'),
-			() => import('./nodes/7.js'),
-			() => import('./nodes/8.js'),
-			() => import('./nodes/9.js'),
-			() => import('./nodes/10.js')
-		],
-		routes: [
-			{
-				id: "/",
-				pattern: /^\/$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 2 },
-				endpoint: null
-			},
-			{
-				id: "/adkey",
-				pattern: /^\/adkey\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 3 },
-				endpoint: null
-			},
-			{
-				id: "/bnlist",
-				pattern: /^\/bnlist\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 4 },
-				endpoint: null
-			},
-			{
-				id: "/install",
-				pattern: /^\/install\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 5 },
-				endpoint: null
-			},
-			{
-				id: "/privacy-policy",
-				pattern: /^\/privacy-policy\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 6 },
-				endpoint: null
-			},
-			{
-				id: "/screen",
-				pattern: /^\/screen\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 7 },
-				endpoint: null
-			},
-			{
-				id: "/screen/chars",
-				pattern: /^\/screen\/chars\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 8 },
-				endpoint: null
-			},
-			{
-				id: "/screen/wishitem",
-				pattern: /^\/screen\/wishitem\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 9 },
-				endpoint: null
-			},
-			{
-				id: "/screen/wishlist",
-				pattern: /^\/screen\/wishlist\/?$/,
-				names: [],
-				types: [],
-				optional: [],
-				page: { layouts: [0], errors: [1], leaf: 10 },
-				endpoint: null
-			}
-		],
-		matchers: async () => {
-			
-			return {  };
-		}
-	}
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/manifest.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/manifest.js
deleted file mode 100644
index 6d69e6fd..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/manifest.js
+++ /dev/null
@@ -1,20 +0,0 @@
-export const manifest = {
-	appDir: "internal",
-	appPath: "internal",
-	assets: new Set([".nojekyll",".well-known/assetlinks.json","apple-touch-icon.png","browserconfig.xml","favicon.ico","fonts/aaqishu.woff","fonts/genshin-icon.eot","fonts/genshin-icon.svg","fonts/genshin-icon.ttf","fonts/genshin-icon.woff","fonts/optimized_global_web.woff2","fonts/optimized_jp_web.woff2","fonts/optimized_th_web.woff2","fonts/optimized_zh_web.woff2","google77966abbed90508f.html","icons/icon-128x128.png","icons/icon-144x144.png","icons/icon-152x152.png","icons/icon-16x16.png","icons/icon-192x192.png","icons/icon-256x256.png","icons/icon-32x32.png","icons/icon-384x384.png","icons/icon-512x512.png","icons/icon-72x72.png","icons/icon-96x96.png","icons/mstile-150x150.png","icons.css","images/background/bg1.webp","images/background/bg10.webp","images/background/bg11.webp","images/background/bg12.webp","images/background/bg13.webp","images/background/bg14.webp","images/background/bg15.webp","images/background/bg16.webp","images/background/bg17.webp","images/background/bg18.webp","images/background/bg19.webp","images/background/bg2.webp","images/background/bg20.webp","images/background/bg3.webp","images/background/bg4.webp","images/background/bg5.webp","images/background/bg6.webp","images/background/bg7.webp","images/background/bg8.webp","images/background/bg9.webp","images/background/constellation.webp","images/background/detailbg.webp","images/background/element-anemo-bg.webp","images/background/element-cryo-bg.webp","images/background/element-dendro-bg.webp","images/background/element-electro-bg.webp","images/background/element-geo-bg.webp","images/background/element-hydro-bg.webp","images/background/element-pyro-bg.webp","images/background/outfit-background.webp","images/background/splash-background.webp","images/background/wish-background.webp","images/banner/beginner/beginner.webp","images/banner/character-events/adrift-in-the-harbor-1.webp","images/banner/character-events/adrift-in-the-harbor-2.webp","images/banner/character-events/adrift-in-the-harbor-3.webp","images/banner/character-events/adrift-in-the-harbor-4.webp","images/banner/character-events/auric-blaze-1.webp","images/banner/character-events/azure-excursion-1.webp","images/banner/character-events/azure-excursion-2.webp","images/banner/character-events/ballad-in-goblets-1.webp","images/banner/character-events/ballad-in-goblets-2.webp","images/banner/character-events/ballad-in-goblets-3.webp","images/banner/character-events/ballad-in-goblets-4.webp","images/banner/character-events/ballad-in-goblets-5.webp","images/banner/character-events/born-of-ocean-swell-1.webp","images/banner/character-events/born-of-ocean-swell-2.webp","images/banner/character-events/born-of-ocean-swell-3.webp","images/banner/character-events/caution-in-confidence-1.webp","images/banner/character-events/caution-in-confidence-2.webp","images/banner/character-events/chanson-of-many-waters-1.webp","images/banner/character-events/conjuring-chiaroscuro-1.webp","images/banner/character-events/dance-of-lantern-1.webp","images/banner/character-events/decree-of-the-deeps-1.webp","images/banner/character-events/discerner-of-enigmas-1.webp","images/banner/character-events/discerner-of-enigmas-2.webp","images/banner/character-events/discerner-of-enigmas-3.webp","images/banner/character-events/drifting-luminescence-1.webp","images/banner/character-events/drifting-luminescence-2.webp","images/banner/character-events/drifting-luminescence-3.webp","images/banner/character-events/drifting-luminescence-4.webp","images/banner/character-events/everbloom-violet-1.webp","images/banner/character-events/everbloom-violet-2.webp","images/banner/character-events/everbloom-violet-3.webp","images/banner/character-events/farewell-of-snezhnaya-1.webp","images/banner/character-events/farewell-of-snezhnaya-2.webp","images/banner/character-events/farewell-of-snezhnaya-3.webp","images/banner/character-events/farewell-of-snezhnaya-4.webp","images/banner/character-events/farewell-of-snezhnaya-5.webp","images/banner/character-events/from-ashes-reborn-1.webp","images/banner/character-events/from-ashes-reborn-2.webp","images/banner/character-events/gentry-of-hermitage-1.webp","images/banner/character-events/gentry-of-hermitage-2.webp","images/banner/character-events/gentry-of-hermitage-3.webp","images/banner/character-events/gentry-of-hermitage-4.webp","images/banner/character-events/gentry-of-hermitage-5.webp","images/banner/character-events/immaculate-pulse-1.webp","images/banner/character-events/immaculate-pulse-2.webp","images/banner/character-events/invitation-to-mundane-life-1.webp","images/banner/character-events/invitation-to-mundane-life-2.webp","images/banner/character-events/invitation-to-mundane-life-3.webp","images/banner/character-events/invitation-to-mundane-life-4.webp","images/banner/character-events/leaves-in-the-wind-1.webp","images/banner/character-events/leaves-in-the-wind-2.webp","images/banner/character-events/leaves-in-the-wind-3.webp","images/banner/character-events/moment-of-bloom-1.webp","images/banner/character-events/moment-of-bloom-2.webp","images/banner/character-events/moment-of-bloom-3.webp","images/banner/character-events/moment-of-bloom-4.webp","images/banner/character-events/oni_s-royale-1.webp","images/banner/character-events/oni_s-royale-2.webp","images/banner/character-events/oni_s-royale-3.webp","images/banner/character-events/reign-of-serenity-1.webp","images/banner/character-events/reign-of-serenity-2.webp","images/banner/character-events/reign-of-serenity-3.webp","images/banner/character-events/secretum-secretorum-1.webp","images/banner/character-events/secretum-secretorum-2.webp","images/banner/character-events/secretum-secretorum-3.webp","images/banner/character-events/sparkling-steps-1.webp","images/banner/character-events/sparkling-steps-2.webp","images/banner/character-events/sparkling-steps-3.webp","images/banner/character-events/sparkling-steps-4.webp","images/banner/character-events/tapestry-of-golden-flames-1.webp","images/banner/character-events/tapestry-of-golden-flames-2.webp","images/banner/character-events/tapestry-of-golden-flames-3.webp","images/banner/character-events/tapestry-of-golden-flames-4.webp","images/banner/character-events/tempestuous-destiny-1.webp","images/banner/character-events/the-heron_s-court-1.webp","images/banner/character-events/the-heron_s-court-2.webp","images/banner/character-events/the-heron_s-court-3.webp","images/banner/character-events/the-moongrass-enlightenment-1.webp","images/banner/character-events/the-moongrass-enlightenment-2.webp","images/banner/character-events/the-transcendent-one-returns-1.webp","images/banner/character-events/the-transcendent-one-returns-2.webp","images/banner/character-events/twilight-arbiter-1.webp","images/banner/character-events/twilight-arbiter-2.webp","images/banner/character-events/twirling-lotus-1.webp","images/banner/character-events/twirling-lotus-2.webp","images/banner/character-events/viridescent-vigil-1.webp","images/banner/standard/wanderlust-invocation-1.webp","images/banner/standard/wanderlust-invocation-2.webp","images/banner/thumbnail/adrift-in-the-harbor-1.webp","images/banner/thumbnail/adrift-in-the-harbor-2.webp","images/banner/thumbnail/adrift-in-the-harbor-3.webp","images/banner/thumbnail/adrift-in-the-harbor-4.webp","images/banner/thumbnail/auric-blaze-1.webp","images/banner/thumbnail/azure-excursion-1.webp","images/banner/thumbnail/azure-excursion-2.webp","images/banner/thumbnail/ballad-in-goblets-1.webp","images/banner/thumbnail/ballad-in-goblets-2.webp","images/banner/thumbnail/ballad-in-goblets-3.webp","images/banner/thumbnail/ballad-in-goblets-4.webp","images/banner/thumbnail/ballad-in-goblets-5.webp","images/banner/thumbnail/born-of-ocean-swell-1.webp","images/banner/thumbnail/born-of-ocean-swell-2.webp","images/banner/thumbnail/born-of-ocean-swell-3.webp","images/banner/thumbnail/caution-in-confidence-1.webp","images/banner/thumbnail/caution-in-confidence-2.webp","images/banner/thumbnail/chanson-of-many-waters-1.webp","images/banner/thumbnail/conjuring-chiaroscuro-1.webp","images/banner/thumbnail/dance-of-lantern-1.webp","images/banner/thumbnail/decree-of-the-deeps-1.webp","images/banner/thumbnail/discerner-of-enigmas-1.webp","images/banner/thumbnail/discerner-of-enigmas-2.webp","images/banner/thumbnail/discerner-of-enigmas-3.webp","images/banner/thumbnail/drifting-luminescence-1.webp","images/banner/thumbnail/drifting-luminescence-2.webp","images/banner/thumbnail/drifting-luminescence-3.webp","images/banner/thumbnail/drifting-luminescence-4.webp","images/banner/thumbnail/epitome-invocation-1.webp","images/banner/thumbnail/epitome-invocation-10.webp","images/banner/thumbnail/epitome-invocation-11.webp","images/banner/thumbnail/epitome-invocation-12.webp","images/banner/thumbnail/epitome-invocation-13.webp","images/banner/thumbnail/epitome-invocation-14.webp","images/banner/thumbnail/epitome-invocation-15.webp","images/banner/thumbnail/epitome-invocation-16.webp","images/banner/thumbnail/epitome-invocation-17.webp","images/banner/thumbnail/epitome-invocation-18.webp","images/banner/thumbnail/epitome-invocation-19.webp","images/banner/thumbnail/epitome-invocation-2.webp","images/banner/thumbnail/epitome-invocation-20.webp","images/banner/thumbnail/epitome-invocation-21.webp","images/banner/thumbnail/epitome-invocation-22.webp","images/banner/thumbnail/epitome-invocation-23.webp","images/banner/thumbnail/epitome-invocation-24.webp","images/banner/thumbnail/epitome-invocation-25.webp","images/banner/thumbnail/epitome-invocation-26.webp","images/banner/thumbnail/epitome-invocation-27.webp","images/banner/thumbnail/epitome-invocation-28.webp","images/banner/thumbnail/epitome-invocation-29.webp","images/banner/thumbnail/epitome-invocation-3.webp","images/banner/thumbnail/epitome-invocation-30.webp","images/banner/thumbnail/epitome-invocation-31.webp","images/banner/thumbnail/epitome-invocation-32.webp","images/banner/thumbnail/epitome-invocation-33.webp","images/banner/thumbnail/epitome-invocation-34.webp","images/banner/thumbnail/epitome-invocation-35.webp","images/banner/thumbnail/epitome-invocation-36.webp","images/banner/thumbnail/epitome-invocation-37.webp","images/banner/thumbnail/epitome-invocation-38.webp","images/banner/thumbnail/epitome-invocation-39.webp","images/banner/thumbnail/epitome-invocation-4.webp","images/banner/thumbnail/epitome-invocation-40.webp","images/banner/thumbnail/epitome-invocation-41.webp","images/banner/thumbnail/epitome-invocation-42.webp","images/banner/thumbnail/epitome-invocation-43.webp","images/banner/thumbnail/epitome-invocation-44.webp","images/banner/thumbnail/epitome-invocation-45.webp","images/banner/thumbnail/epitome-invocation-46.webp","images/banner/thumbnail/epitome-invocation-47.webp","images/banner/thumbnail/epitome-invocation-48.webp","images/banner/thumbnail/epitome-invocation-49.webp","images/banner/thumbnail/epitome-invocation-5.webp","images/banner/thumbnail/epitome-invocation-50.webp","images/banner/thumbnail/epitome-invocation-51.webp","images/banner/thumbnail/epitome-invocation-52.webp","images/banner/thumbnail/epitome-invocation-53.webp","images/banner/thumbnail/epitome-invocation-54.webp","images/banner/thumbnail/epitome-invocation-55.webp","images/banner/thumbnail/epitome-invocation-6.webp","images/banner/thumbnail/epitome-invocation-7.webp","images/banner/thumbnail/epitome-invocation-8.webp","images/banner/thumbnail/epitome-invocation-9.webp","images/banner/thumbnail/everbloom-violet-1.webp","images/banner/thumbnail/everbloom-violet-2.webp","images/banner/thumbnail/everbloom-violet-3.webp","images/banner/thumbnail/farewell-of-snezhnaya-1.webp","images/banner/thumbnail/farewell-of-snezhnaya-2.webp","images/banner/thumbnail/farewell-of-snezhnaya-3.webp","images/banner/thumbnail/farewell-of-snezhnaya-4.webp","images/banner/thumbnail/farewell-of-snezhnaya-5.webp","images/banner/thumbnail/from-ashes-reborn-1.webp","images/banner/thumbnail/from-ashes-reborn-2.webp","images/banner/thumbnail/gentry-of-hermitage-1.webp","images/banner/thumbnail/gentry-of-hermitage-2.webp","images/banner/thumbnail/gentry-of-hermitage-3.webp","images/banner/thumbnail/gentry-of-hermitage-4.webp","images/banner/thumbnail/gentry-of-hermitage-5.webp","images/banner/thumbnail/immaculate-pulse-1.webp","images/banner/thumbnail/immaculate-pulse-2.webp","images/banner/thumbnail/invitation-to-mundane-life-1.webp","images/banner/thumbnail/invitation-to-mundane-life-2.webp","images/banner/thumbnail/invitation-to-mundane-life-3.webp","images/banner/thumbnail/invitation-to-mundane-life-4.webp","images/banner/thumbnail/leaves-in-the-wind-1.webp","images/banner/thumbnail/leaves-in-the-wind-2.webp","images/banner/thumbnail/leaves-in-the-wind-3.webp","images/banner/thumbnail/moment-of-bloom-1.webp","images/banner/thumbnail/moment-of-bloom-2.webp","images/banner/thumbnail/moment-of-bloom-3.webp","images/banner/thumbnail/moment-of-bloom-4.webp","images/banner/thumbnail/oni_s-royale-1.webp","images/banner/thumbnail/oni_s-royale-2.webp","images/banner/thumbnail/oni_s-royale-3.webp","images/banner/thumbnail/reign-of-serenity-1.webp","images/banner/thumbnail/reign-of-serenity-2.webp","images/banner/thumbnail/reign-of-serenity-3.webp","images/banner/thumbnail/secretum-secretorum-1.webp","images/banner/thumbnail/secretum-secretorum-2.webp","images/banner/thumbnail/secretum-secretorum-3.webp","images/banner/thumbnail/sparkling-steps-1.webp","images/banner/thumbnail/sparkling-steps-2.webp","images/banner/thumbnail/sparkling-steps-3.webp","images/banner/thumbnail/sparkling-steps-4.webp","images/banner/thumbnail/tapestry-of-golden-flames-1.webp","images/banner/thumbnail/tapestry-of-golden-flames-2.webp","images/banner/thumbnail/tapestry-of-golden-flames-3.webp","images/banner/thumbnail/tapestry-of-golden-flames-4.webp","images/banner/thumbnail/tempestuous-destiny-1.webp","images/banner/thumbnail/the-heron_s-court-1.webp","images/banner/thumbnail/the-heron_s-court-2.webp","images/banner/thumbnail/the-heron_s-court-3.webp","images/banner/thumbnail/the-moongrass-enlightenment-1.webp","images/banner/thumbnail/the-moongrass-enlightenment-2.webp","images/banner/thumbnail/the-transcendent-one-returns-1.webp","images/banner/thumbnail/the-transcendent-one-returns-2.webp","images/banner/thumbnail/twilight-arbiter-1.webp","images/banner/thumbnail/twilight-arbiter-2.webp","images/banner/thumbnail/twirling-lotus-1.webp","images/banner/thumbnail/twirling-lotus-2.webp","images/banner/thumbnail/viridescent-vigil-1.webp","images/banner/weapons/epitome-invocation-1.webp","images/banner/weapons/epitome-invocation-10.webp","images/banner/weapons/epitome-invocation-11.webp","images/banner/weapons/epitome-invocation-12.webp","images/banner/weapons/epitome-invocation-13.webp","images/banner/weapons/epitome-invocation-14.webp","images/banner/weapons/epitome-invocation-15.webp","images/banner/weapons/epitome-invocation-16.webp","images/banner/weapons/epitome-invocation-17.webp","images/banner/weapons/epitome-invocation-18.webp","images/banner/weapons/epitome-invocation-19.webp","images/banner/weapons/epitome-invocation-2.webp","images/banner/weapons/epitome-invocation-20.webp","images/banner/weapons/epitome-invocation-21.webp","images/banner/weapons/epitome-invocation-22.webp","images/banner/weapons/epitome-invocation-23.webp","images/banner/weapons/epitome-invocation-24.webp","images/banner/weapons/epitome-invocation-25.webp","images/banner/weapons/epitome-invocation-26.webp","images/banner/weapons/epitome-invocation-27.webp","images/banner/weapons/epitome-invocation-28.webp","images/banner/weapons/epitome-invocation-29.webp","images/banner/weapons/epitome-invocation-3.webp","images/banner/weapons/epitome-invocation-30.webp","images/banner/weapons/epitome-invocation-31.webp","images/banner/weapons/epitome-invocation-32.webp","images/banner/weapons/epitome-invocation-33.webp","images/banner/weapons/epitome-invocation-34.webp","images/banner/weapons/epitome-invocation-35.webp","images/banner/weapons/epitome-invocation-36.webp","images/banner/weapons/epitome-invocation-37.webp","images/banner/weapons/epitome-invocation-38.webp","images/banner/weapons/epitome-invocation-39.webp","images/banner/weapons/epitome-invocation-4.webp","images/banner/weapons/epitome-invocation-40.webp","images/banner/weapons/epitome-invocation-41.webp","images/banner/weapons/epitome-invocation-42.webp","images/banner/weapons/epitome-invocation-43.webp","images/banner/weapons/epitome-invocation-44.webp","images/banner/weapons/epitome-invocation-45.webp","images/banner/weapons/epitome-invocation-46.webp","images/banner/weapons/epitome-invocation-47.webp","images/banner/weapons/epitome-invocation-48.webp","images/banner/weapons/epitome-invocation-49.webp","images/banner/weapons/epitome-invocation-5.webp","images/banner/weapons/epitome-invocation-50.webp","images/banner/weapons/epitome-invocation-51.webp","images/banner/weapons/epitome-invocation-52.webp","images/banner/weapons/epitome-invocation-53.webp","images/banner/weapons/epitome-invocation-54.webp","images/banner/weapons/epitome-invocation-55.webp","images/banner/weapons/epitome-invocation-6.webp","images/banner/weapons/epitome-invocation-7.webp","images/banner/weapons/epitome-invocation-8.webp","images/banner/weapons/epitome-invocation-9.webp","images/characters/banner-button/albedo.webp","images/characters/banner-button/alhaitham.webp","images/characters/banner-button/arataki-itto.webp","images/characters/banner-button/baizhu.webp","images/characters/banner-button/cyno.webp","images/characters/banner-button/dehya.webp","images/characters/banner-button/eula.webp","images/characters/banner-button/furina.webp","images/characters/banner-button/ganyu.webp","images/characters/banner-button/hu-tao.webp","images/characters/banner-button/jean.webp","images/characters/banner-button/kaedehara-kazuha.webp","images/characters/banner-button/kamisato-ayaka.webp","images/characters/banner-button/kamisato-ayato.webp","images/characters/banner-button/keqing.webp","images/characters/banner-button/klee.webp","images/characters/banner-button/lyney.webp","images/characters/banner-button/nahida.webp","images/characters/banner-button/neuvillette.webp","images/characters/banner-button/nilou.webp","images/characters/banner-button/noelle.webp","images/characters/banner-button/qiqi.webp","images/characters/banner-button/raiden-shogun.webp","images/characters/banner-button/sangonomiya-kokomi.webp","images/characters/banner-button/shenhe.webp","images/characters/banner-button/tartaglia.webp","images/characters/banner-button/tighnari.webp","images/characters/banner-button/venti.webp","images/characters/banner-button/wanderer.webp","images/characters/banner-button/wriothesley.webp","images/characters/banner-button/xiao.webp","images/characters/banner-button/yae-miko.webp","images/characters/banner-button/yelan.webp","images/characters/banner-button/yoimiya.webp","images/characters/banner-button/zhongli.webp","images/characters/face/4star/amber.webp","images/characters/face/4star/barbara.webp","images/characters/face/4star/beidou.webp","images/characters/face/4star/bennett.webp","images/characters/face/4star/candace.webp","images/characters/face/4star/charlotte.webp","images/characters/face/4star/chongyun.webp","images/characters/face/4star/collei.webp","images/characters/face/4star/diona.webp","images/characters/face/4star/dori.webp","images/characters/face/4star/faruzan.webp","images/characters/face/4star/fischl.webp","images/characters/face/4star/freminet.webp","images/characters/face/4star/gorou.webp","images/characters/face/4star/kaeya.webp","images/characters/face/4star/kaveh.webp","images/characters/face/4star/kirara.webp","images/characters/face/4star/kujou-sara.webp","images/characters/face/4star/kuki-shinobu.webp","images/characters/face/4star/layla.webp","images/characters/face/4star/lisa.webp","images/characters/face/4star/lynette.webp","images/characters/face/4star/mika.webp","images/characters/face/4star/ningguang.webp","images/characters/face/4star/noelle.webp","images/characters/face/4star/razor.webp","images/characters/face/4star/rosaria.webp","images/characters/face/4star/sayu.webp","images/characters/face/4star/shikanoin-heizou.webp","images/characters/face/4star/sucrose.webp","images/characters/face/4star/thoma.webp","images/characters/face/4star/xiangling.webp","images/characters/face/4star/xingqiu.webp","images/characters/face/4star/xinyan.webp","images/characters/face/4star/yanfei.webp","images/characters/face/4star/yaoyao.webp","images/characters/face/4star/yun-jin.webp","images/characters/face/5star/albedo.webp","images/characters/face/5star/alhaitham.webp","images/characters/face/5star/arataki-itto.webp","images/characters/face/5star/baizhu.webp","images/characters/face/5star/cyno.webp","images/characters/face/5star/dehya.webp","images/characters/face/5star/diluc.webp","images/characters/face/5star/eula.webp","images/characters/face/5star/furina.webp","images/characters/face/5star/ganyu.webp","images/characters/face/5star/hu-tao.webp","images/characters/face/5star/jean.webp","images/characters/face/5star/kaedehara-kazuha.webp","images/characters/face/5star/kamisato-ayaka.webp","images/characters/face/5star/kamisato-ayato.webp","images/characters/face/5star/keqing.webp","images/characters/face/5star/klee.webp","images/characters/face/5star/lyney.webp","images/characters/face/5star/mona.webp","images/characters/face/5star/nahida.webp","images/characters/face/5star/neuvillette.webp","images/characters/face/5star/nilou.webp","images/characters/face/5star/qiqi.webp","images/characters/face/5star/raiden-shogun.webp","images/characters/face/5star/sangonomiya-kokomi.webp","images/characters/face/5star/shenhe.webp","images/characters/face/5star/tartaglia.webp","images/characters/face/5star/tighnari.webp","images/characters/face/5star/venti.webp","images/characters/face/5star/wanderer.webp","images/characters/face/5star/wriothesley.webp","images/characters/face/5star/xiao.webp","images/characters/face/5star/yae-miko.webp","images/characters/face/5star/yelan.webp","images/characters/face/5star/yoimiya.webp","images/characters/face/5star/zhongli.webp","images/characters/splash-art/4star/amber.webp","images/characters/splash-art/4star/barbara.webp","images/characters/splash-art/4star/beidou.webp","images/characters/splash-art/4star/bennett.webp","images/characters/splash-art/4star/candace.webp","images/characters/splash-art/4star/charlotte.webp","images/characters/splash-art/4star/chongyun.webp","images/characters/splash-art/4star/collei.webp","images/characters/splash-art/4star/diona.webp","images/characters/splash-art/4star/dori.webp","images/characters/splash-art/4star/faruzan.webp","images/characters/splash-art/4star/fischl.webp","images/characters/splash-art/4star/freminet.webp","images/characters/splash-art/4star/gorou.webp","images/characters/splash-art/4star/kaeya.webp","images/characters/splash-art/4star/kaveh.webp","images/characters/splash-art/4star/kirara.webp","images/characters/splash-art/4star/kujou-sara.webp","images/characters/splash-art/4star/kuki-shinobu.webp","images/characters/splash-art/4star/layla.webp","images/characters/splash-art/4star/lisa.webp","images/characters/splash-art/4star/lynette.webp","images/characters/splash-art/4star/mika.webp","images/characters/splash-art/4star/ningguang.webp","images/characters/splash-art/4star/noelle.webp","images/characters/splash-art/4star/razor.webp","images/characters/splash-art/4star/rosaria.webp","images/characters/splash-art/4star/sayu.webp","images/characters/splash-art/4star/shikanoin-heizou.webp","images/characters/splash-art/4star/sucrose.webp","images/characters/splash-art/4star/thoma.webp","images/characters/splash-art/4star/xiangling.webp","images/characters/splash-art/4star/xingqiu.webp","images/characters/splash-art/4star/xinyan.webp","images/characters/splash-art/4star/yanfei.webp","images/characters/splash-art/4star/yaoyao.webp","images/characters/splash-art/4star/yun-jin.webp","images/characters/splash-art/5star/albedo.webp","images/characters/splash-art/5star/alhaitham.webp","images/characters/splash-art/5star/arataki-itto.webp","images/characters/splash-art/5star/baizhu.webp","images/characters/splash-art/5star/cyno.webp","images/characters/splash-art/5star/dehya.webp","images/characters/splash-art/5star/diluc.webp","images/characters/splash-art/5star/eula.webp","images/characters/splash-art/5star/furina.webp","images/characters/splash-art/5star/ganyu.webp","images/characters/splash-art/5star/hu-tao.webp","images/characters/splash-art/5star/jean.webp","images/characters/splash-art/5star/kaedehara-kazuha.webp","images/characters/splash-art/5star/kamisato-ayaka.webp","images/characters/splash-art/5star/kamisato-ayato.webp","images/characters/splash-art/5star/keqing.webp","images/characters/splash-art/5star/klee.webp","images/characters/splash-art/5star/lyney.webp","images/characters/splash-art/5star/mona.webp","images/characters/splash-art/5star/nahida.webp","images/characters/splash-art/5star/neuvillette.webp","images/characters/splash-art/5star/nilou.webp","images/characters/splash-art/5star/qiqi.webp","images/characters/splash-art/5star/raiden-shogun.webp","images/characters/splash-art/5star/sangonomiya-kokomi.webp","images/characters/splash-art/5star/shenhe.webp","images/characters/splash-art/5star/tartaglia.webp","images/characters/splash-art/5star/tighnari.webp","images/characters/splash-art/5star/venti.webp","images/characters/splash-art/5star/wanderer.webp","images/characters/splash-art/5star/wriothesley.webp","images/characters/splash-art/5star/xiao.webp","images/characters/splash-art/5star/yae-miko.webp","images/characters/splash-art/5star/yelan.webp","images/characters/splash-art/5star/yoimiya.webp","images/characters/splash-art/5star/zhongli.webp","images/outfits/face/5-star-outrider.webp","images/outfits/face/a-sobriquet-under-shade.webp","images/outfits/face/blossoming-starlight.webp","images/outfits/face/ein-immernachtstraum.webp","images/outfits/face/executor_s-thorns.webp","images/outfits/face/favonian-fevotion.webp","images/outfits/face/flowing-fate.webp","images/outfits/face/opulent-splendor.webp","images/outfits/face/orchid_s-evening-gown.webp","images/outfits/face/red-dead-of-night.webp","images/outfits/face/sailwind-shadow.webp","images/outfits/face/sea-breeze-dandelion.webp","images/outfits/face/springbloom-missive.webp","images/outfits/face/summertime-sparkle.webp","images/outfits/splash-art/5-star-outrider.webp","images/outfits/splash-art/a-sobriquet-under-shade.webp","images/outfits/splash-art/blossoming-starlight.webp","images/outfits/splash-art/ein-immernachtstraum.webp","images/outfits/splash-art/executor_s-thorns.webp","images/outfits/splash-art/favonian-fevotion.webp","images/outfits/splash-art/flowing-fate.webp","images/outfits/splash-art/opulent-splendor.webp","images/outfits/splash-art/orchid_s-evening-gown.webp","images/outfits/splash-art/red-dead-of-night.webp","images/outfits/splash-art/sailwind-shadow.webp","images/outfits/splash-art/sea-breeze-dandelion.webp","images/outfits/splash-art/springbloom-missive.webp","images/outfits/splash-art/summertime-sparkle.webp","images/outfits/thumbnail/a-sobriquet-under-shade.webp","images/outfits/thumbnail/blossoming-starlight.webp","images/outfits/thumbnail/ein-immernachtstraum.webp","images/outfits/thumbnail/opulent-splendor.webp","images/outfits/thumbnail/orchid_s-evening-gown.webp","images/outfits/thumbnail/red-dead-of-night.webp","images/outfits/thumbnail/sailwind-shadow.webp","images/outfits/thumbnail/sea-breeze-dandelion.webp","images/outfits/thumbnail/springbloom-missive.webp","images/outfits/thumbnail/summertime-sparkle.webp","images/utility/3star-bg.webp","images/utility/4star-bg.webp","images/utility/5star-bg.webp","images/utility/acquaint-fate.webp","images/utility/admin.webp","images/utility/bg-bonus.webp","images/utility/bg-bow.webp","images/utility/bg-catalyst.webp","images/utility/bg-claymore.webp","images/utility/bg-polearm.webp","images/utility/bg-sword.webp","images/utility/book-select-bg.webp","images/utility/book.webp","images/utility/brand.png","images/utility/button.webp","images/utility/donate-bnb.png","images/utility/donate-btc.png","images/utility/donate-dana.png","images/utility/donate-ethereum.png","images/utility/donate-gopay.png","images/utility/donate-kofi.png","images/utility/donate-linkaja.png","images/utility/donate-ovo.png","images/utility/donate-saweria.webp","images/utility/donate-shopeepay.png","images/utility/donate-solana.png","images/utility/fatepointbook-half.webp","images/utility/fatepointbook.webp","images/utility/genesis-1980.webp","images/utility/genesis-300.webp","images/utility/genesis-3280.webp","images/utility/genesis-60.webp","images/utility/genesis-6480.webp","images/utility/genesis-980.webp","images/utility/genesis-bg.webp","images/utility/genesis.webp","images/utility/genshin-logo-cn.webp","images/utility/genshin-logo.webp","images/utility/history-select-bg.webp","images/utility/imbroke.webp","images/utility/intertwined-fate.webp","images/utility/masterless-stardust.webp","images/utility/masterless-starglitter.webp","images/utility/menu-active.png","images/utility/modal-bg-icon.png","images/utility/payment-childe.webp","images/utility/payment-tears.webp","images/utility/payment-wakaranai.webp","images/utility/paypal.png","images/utility/playstore-button.webp","images/utility/primogem.webp","images/utility/resultcard-bg.svg","images/utility/shop-nav-bg.webp","images/utility/stella-fortuna-4star.webp","images/utility/stella-fortuna-5star.webp","images/utility/welkin-card.webp","images/utility/welkin-moon-girl.webp","images/utility/welkin.webp","images/weapons/bow/3star/a22-01.webp","images/weapons/bow/3star/a22-02.webp","images/weapons/bow/3star/a22-03.webp","images/weapons/bow/3star/a22-04.webp","images/weapons/bow/3star/a22-05.webp","images/weapons/bow/3star/a22-06.webp","images/weapons/bow/3star/a22-07.webp","images/weapons/bow/3star/a22-08.webp","images/weapons/bow/3star/a22-09.webp","images/weapons/bow/3star/a22-10.webp","images/weapons/bow/3star/a22-11.webp","images/weapons/bow/3star/a22-12.webp","images/weapons/bow/3star/a22-13.webp","images/weapons/bow/3star/a22-14.webp","images/weapons/bow/3star/a22-15.webp","images/weapons/bow/3star/a22-16.webp","images/weapons/bow/3star/a22-17.webp","images/weapons/bow/3star/a22-18.webp","images/weapons/bow/3star/a22-19.webp","images/weapons/bow/3star/a22-20.webp","images/weapons/bow/3star/a22-21.webp","images/weapons/bow/3star/a22-22.webp","images/weapons/bow/3star/a22-23.webp","images/weapons/bow/3star/a22-24.webp","images/weapons/bow/3star/a22-25.webp","images/weapons/bow/3star/a22-26.webp","images/weapons/bow/3star/a22-27.webp","images/weapons/bow/3star/a22-28.webp","images/weapons/bow/3star/a22-29.webp","images/weapons/bow/3star/a22-30.webp","images/weapons/bow/3star/a22-31.webp","images/weapons/bow/3star/a22-32.webp","images/weapons/bow/3star/a22-33.webp","images/weapons/bow/3star/a22-34.webp","images/weapons/bow/3star/a22-35.webp","images/weapons/bow/3star/a22-36.webp","images/weapons/bow/3star/a22-37.webp","images/weapons/bow/3star/a22-38.webp","images/weapons/bow/3star/a22-39.webp","images/weapons/bow/3star/a22-40.webp","images/weapons/bow/3star/a22-41.webp","images/weapons/bow/3star/a22-42.webp","images/weapons/bow/3star/a22-43.webp","images/weapons/bow/3star/a22-44.webp","images/weapons/bow/3star/a22-45.webp","images/weapons/bow/3star/a22-46.webp","images/weapons/bow/3star/a22-47.webp","images/weapons/bow/3star/a22-48.webp","images/weapons/bow/3star/a22-49.webp","images/weapons/bow/3star/a22-50.webp","images/weapons/bow/3star/a22-51.webp","images/weapons/bow/4star/alley-hunter.webp","images/weapons/bow/4star/favonius-warbow.webp","images/weapons/bow/4star/mitternachts-waltz.webp","images/weapons/bow/4star/mouun_s-moon.webp","images/weapons/bow/4star/range-gauge.webp","images/weapons/bow/4star/rust.webp","images/weapons/bow/4star/sacrificial-bow.webp","images/weapons/bow/4star/the-stringless.webp","images/weapons/bow/5star/amos-bow.webp","images/weapons/bow/5star/aqua-simulacra.webp","images/weapons/bow/5star/elegy-for-the-end.webp","images/weapons/bow/5star/hunter_s-path.webp","images/weapons/bow/5star/polar-star.webp","images/weapons/bow/5star/skyward-harp.webp","images/weapons/bow/5star/the-first-great-magic.webp","images/weapons/bow/5star/thundering-pulse.webp","images/weapons/catalyst/3star/emerald-orb.webp","images/weapons/catalyst/3star/magic-guide.webp","images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp","images/weapons/catalyst/4star/eye-of-perception.webp","images/weapons/catalyst/4star/favonius-codex.webp","images/weapons/catalyst/4star/sacrificial-fragments.webp","images/weapons/catalyst/4star/the-widsith.webp","images/weapons/catalyst/4star/wandering-evenstar.webp","images/weapons/catalyst/4star/wine-and-song.webp","images/weapons/catalyst/5star/a-thousand-floating-dreams.webp","images/weapons/catalyst/5star/cashflow-supervision.webp","images/weapons/catalyst/5star/everlasting-moonglow.webp","images/weapons/catalyst/5star/jadefall-splendor.webp","images/weapons/catalyst/5star/kagura_s-verity.webp","images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp","images/weapons/catalyst/5star/memory-of-dust.webp","images/weapons/catalyst/5star/skyward-atlas.webp","images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp","images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp","images/weapons/claymore/3star/bloodtained-greatsword.webp","images/weapons/claymore/3star/debate-club.webp","images/weapons/claymore/3star/ferrous-shadow.webp","images/weapons/claymore/4star/akuoumaru.webp","images/weapons/claymore/4star/favonius-greatsword.webp","images/weapons/claymore/4star/lithic-blade.webp","images/weapons/claymore/4star/makhaira-aquamarine.webp","images/weapons/claymore/4star/portable-power-saw.webp","images/weapons/claymore/4star/rainslasher.webp","images/weapons/claymore/4star/sacrificial-greatsword.webp","images/weapons/claymore/4star/the-bell.webp","images/weapons/claymore/5star/beacon-of-the-reed-sea.webp","images/weapons/claymore/5star/redhorn-stonethresher.webp","images/weapons/claymore/5star/skyward-pride.webp","images/weapons/claymore/5star/song-of-broken-pines.webp","images/weapons/claymore/5star/the-unforged.webp","images/weapons/claymore/5star/wolf_s-gravestone.webp","images/weapons/polearm/3star/a14-01.webp","images/weapons/polearm/3star/a14-02.webp","images/weapons/polearm/3star/a14-03.webp","images/weapons/polearm/3star/a14-04.webp","images/weapons/polearm/3star/a14-05.webp","images/weapons/polearm/3star/a14-06.webp","images/weapons/polearm/3star/a14-07.webp","images/weapons/polearm/3star/a14-08.webp","images/weapons/polearm/3star/a14-09.webp","images/weapons/polearm/3star/a14-10.webp","images/weapons/polearm/3star/a14-11.webp","images/weapons/polearm/3star/a14-12.webp","images/weapons/polearm/3star/a14-13.webp","images/weapons/polearm/3star/a14-14.webp","images/weapons/polearm/3star/a14-15.webp","images/weapons/polearm/3star/a14-16.webp","images/weapons/polearm/3star/a14-17.webp","images/weapons/polearm/3star/a14-18.webp","images/weapons/polearm/3star/a14-19.webp","images/weapons/polearm/3star/a14-20.webp","images/weapons/polearm/3star/a14-21.webp","images/weapons/polearm/3star/a14-22.webp","images/weapons/polearm/3star/a14-23.webp","images/weapons/polearm/3star/a14-24.webp","images/weapons/polearm/3star/a14-25.webp","images/weapons/polearm/3star/a14-26.webp","images/weapons/polearm/3star/a14-27.webp","images/weapons/polearm/3star/a14-28.webp","images/weapons/polearm/3star/a14-29.webp","images/weapons/polearm/3star/a14-30.webp","images/weapons/polearm/3star/a14-31.webp","images/weapons/polearm/3star/a14-32.webp","images/weapons/polearm/3star/a14-33.webp","images/weapons/polearm/3star/a14-34.webp","images/weapons/polearm/3star/a14-35.webp","images/weapons/polearm/3star/a14-36.webp","images/weapons/polearm/3star/a14-37.webp","images/weapons/polearm/3star/a14-38.webp","images/weapons/polearm/3star/a14-39.webp","images/weapons/polearm/3star/a14-40.webp","images/weapons/polearm/3star/a14-41.webp","images/weapons/polearm/3star/a14-42.webp","images/weapons/polearm/3star/a14-43.webp","images/weapons/polearm/3star/a14-44.webp","images/weapons/polearm/3star/a14-45.webp","images/weapons/polearm/3star/a14-46.webp","images/weapons/polearm/3star/a14-47.webp","images/weapons/polearm/3star/a14-48.webp","images/weapons/polearm/3star/a14-49.webp","images/weapons/polearm/3star/a14-50.webp","images/weapons/polearm/3star/a14-51.webp","images/weapons/polearm/3star/a14-52.webp","images/weapons/polearm/3star/a14-53.webp","images/weapons/polearm/3star/black-tassel.webp","images/weapons/polearm/4star/dragon_s-bane.webp","images/weapons/polearm/4star/favonius-lance.webp","images/weapons/polearm/4star/lithic-spear.webp","images/weapons/polearm/4star/prospector-drill.webp","images/weapons/polearm/4star/wavebreaker_s-fin.webp","images/weapons/polearm/5star/calamity-queller.webp","images/weapons/polearm/5star/engulfing-lightning.webp","images/weapons/polearm/5star/primordial-jade-winged-spear.webp","images/weapons/polearm/5star/skyward-spine.webp","images/weapons/polearm/5star/staff-of-homa.webp","images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp","images/weapons/polearm/5star/vortex-vanquisher.webp","images/weapons/sword/3star/a03-01.webp","images/weapons/sword/3star/a03-02.webp","images/weapons/sword/3star/a03-03.webp","images/weapons/sword/3star/a03-04.webp","images/weapons/sword/3star/a03-05.webp","images/weapons/sword/3star/a03-06.webp","images/weapons/sword/3star/a03-07.webp","images/weapons/sword/3star/a03-08.webp","images/weapons/sword/3star/a03-09.webp","images/weapons/sword/3star/a03-10.webp","images/weapons/sword/3star/a03-11.webp","images/weapons/sword/3star/a03-12.webp","images/weapons/sword/3star/a03-13.webp","images/weapons/sword/3star/a03-14.webp","images/weapons/sword/3star/a03-15.webp","images/weapons/sword/3star/a03-16.webp","images/weapons/sword/3star/a03-17.webp","images/weapons/sword/3star/a03-18.webp","images/weapons/sword/3star/a03-19.webp","images/weapons/sword/3star/a03-20.webp","images/weapons/sword/3star/a03-21.webp","images/weapons/sword/3star/a03-22.webp","images/weapons/sword/3star/a03-23.webp","images/weapons/sword/3star/a03-24.webp","images/weapons/sword/3star/a03-25.webp","images/weapons/sword/3star/a03-26.webp","images/weapons/sword/3star/a03-27.webp","images/weapons/sword/3star/a03-28.webp","images/weapons/sword/3star/a03-29.webp","images/weapons/sword/3star/a03-30.webp","images/weapons/sword/3star/a03-31.webp","images/weapons/sword/3star/a03-32.webp","images/weapons/sword/3star/a03-33.webp","images/weapons/sword/3star/a03-34.webp","images/weapons/sword/3star/a03-35.webp","images/weapons/sword/3star/a03-36.webp","images/weapons/sword/3star/a03-37.webp","images/weapons/sword/3star/a03-38.webp","images/weapons/sword/3star/a03-39.webp","images/weapons/sword/3star/a03-40.webp","images/weapons/sword/3star/a03-41.webp","images/weapons/sword/3star/a03-42.webp","images/weapons/sword/3star/a03-43.webp","images/weapons/sword/3star/a03-44.webp","images/weapons/sword/3star/a03-45.webp","images/weapons/sword/3star/a03-46.webp","images/weapons/sword/3star/a03-47.webp","images/weapons/sword/3star/a03-48.webp","images/weapons/sword/3star/a03-49.webp","images/weapons/sword/3star/a03-50.webp","images/weapons/sword/3star/cool-steel.webp","images/weapons/sword/3star/harbinger-of-dawn.webp","images/weapons/sword/3star/skyrider-sword.webp","images/weapons/sword/4star/favonius-sword.webp","images/weapons/sword/4star/lion_s-roar.webp","images/weapons/sword/4star/sacrificial-sword.webp","images/weapons/sword/4star/the-alley-flash.webp","images/weapons/sword/4star/the-dockhands-assistant.webp","images/weapons/sword/4star/the-flute.webp","images/weapons/sword/4star/xiphos-moonlight.webp","images/weapons/sword/5star/aquila-favonia.webp","images/weapons/sword/5star/freedom-sworn.webp","images/weapons/sword/5star/haran-geppaku-futsu.webp","images/weapons/sword/5star/key-of-khaj-nisut.webp","images/weapons/sword/5star/light-of-foliar-incision.webp","images/weapons/sword/5star/mistsplitter-reforged.webp","images/weapons/sword/5star/primordial-jade-cutter.webp","images/weapons/sword/5star/skyward-blade.webp","images/weapons/sword/5star/splendor-of-tranquil-waters.webp","images/weapons/sword/5star/summit-shaper.webp","menu-active.png","meta-picture.jpg","placeholder-cdn.webp","robots.txt","safari-pinned-tab.svg","sfx/result-list.ogg","sfx/reveal-3star.ogg","sfx/reveal-4star.ogg","sfx/reveal-5star.ogg","sfx/wish-backsound.ogg","sitemap.xml","videos/3star-single.mp4","videos/4star-multi.mp4","videos/4star-single.mp4","videos/5star-multi.mp4","videos/5star-single.mp4","videos/bg.webm"]),
-	mimeTypes: {".json":"application/json",".png":"image/png",".xml":"application/xml",".ico":"image/vnd.microsoft.icon",".woff":"font/woff",".eot":"application/vnd.ms-fontobject",".svg":"image/svg+xml",".ttf":"font/ttf",".woff2":"font/woff2",".html":"text/html",".css":"text/css",".webp":"image/webp",".jpg":"image/jpeg",".txt":"text/plain",".ogg":"audio/ogg",".mp4":"video/mp4",".webm":"video/webm"},
-	_: {
-		entry: {"file":"internal/immutable/start-6e2b2fa2.js","imports":["internal/immutable/start-6e2b2fa2.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/preload-helper-176e53da.js"],"stylesheets":[],"fonts":[]},
-		nodes: [
-			() => import('./nodes/0.js'),
-			() => import('./nodes/1.js')
-		],
-		routes: [
-			
-		],
-		matchers: async () => {
-			
-			return {  };
-		}
-	}
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/0.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/0.js
deleted file mode 100644
index 4fa8faa6..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/0.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import * as shared from '../entries/pages/_layout.js';
-
-export const index = 0;
-export const component = async () => (await import('../entries/pages/_layout.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/_layout.svelte-31cfe670.js';
-export { shared };
-export const imports = ["internal/immutable/components/pages/_layout.svelte-31cfe670.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/preload-helper-176e53da.js","internal/immutable/chunks/runtime.esm-4bf604c8.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/stores-65b20c67.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/app-stores-358281e6.js","internal/immutable/chunks/outfit-bffb00d9.js","internal/immutable/chunks/index-123e2351.js","internal/immutable/chunks/custom-banner-3b9921d3.js","internal/immutable/chunks/env-f184adc0.js","internal/immutable/chunks/api-cookie-d587b0da.js","internal/immutable/chunks/sync-9a12991b.js","internal/immutable/chunks/i18n-ec7c8da1.js","internal/immutable/modules/pages/_layout.js-04cad6c0.js","internal/immutable/chunks/_layout-0ebf6292.js"];
-export const stylesheets = ["internal/immutable/assets/_layout-1f2c5d23.css","internal/immutable/assets/Iklan-27674bcf.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/1.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/1.js
deleted file mode 100644
index 434f8d80..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/1.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 1;
-export const component = async () => (await import('../entries/pages/_error.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/_error.svelte-4f5ba18e.js';
-export const imports = ["internal/immutable/components/pages/_error.svelte-4f5ba18e.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/stores-65b20c67.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/RandomBackground-34695851.js","internal/immutable/chunks/app-stores-358281e6.js"];
-export const stylesheets = ["internal/immutable/assets/_error-c9470412.css","internal/immutable/assets/RandomBackground-c01fc64e.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/10.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/10.js
deleted file mode 100644
index b5b42c82..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/10.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 10;
-export const component = async () => (await import('../entries/pages/screen/wishlist/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/screen/wishlist/_page.svelte-4dd908c0.js';
-export const imports = ["internal/immutable/components/pages/screen/wishlist/_page.svelte-4dd908c0.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/stores-65b20c67.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/navigation-45e4daee.js","internal/immutable/chunks/outfit-bffb00d9.js","internal/immutable/chunks/index-123e2351.js","internal/immutable/chunks/WishResult-901333c5.js","internal/immutable/chunks/runtime.esm-4bf604c8.js","internal/immutable/chunks/app-stores-358281e6.js","internal/immutable/chunks/audio-460a91c6.js","internal/immutable/chunks/lazyload-05dfa468.js","internal/immutable/chunks/env-f184adc0.js"];
-export const stylesheets = ["internal/immutable/assets/_page-38811b6b.css","internal/immutable/assets/WishResult-effb9a08.css","internal/immutable/assets/lazyload-d703da40.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/2.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/2.js
deleted file mode 100644
index e4ce0349..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/2.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 2;
-export const component = async () => (await import('../entries/pages/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/_page.svelte-7faf7689.js';
-export const imports = ["internal/immutable/components/pages/_page.svelte-7faf7689.js","internal/immutable/chunks/preload-helper-176e53da.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/stores-65b20c67.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/index-123e2351.js","internal/immutable/chunks/WishResult-901333c5.js","internal/immutable/chunks/runtime.esm-4bf604c8.js","internal/immutable/chunks/app-stores-358281e6.js","internal/immutable/chunks/audio-460a91c6.js","internal/immutable/chunks/outfit-bffb00d9.js","internal/immutable/chunks/lazyload-05dfa468.js","internal/immutable/chunks/env-f184adc0.js","internal/immutable/chunks/_page-87ee6ee5.js","internal/immutable/chunks/api-cookie-d587b0da.js","internal/immutable/chunks/i18n-ec7c8da1.js","internal/immutable/chunks/custom-banner-3b9921d3.js","internal/immutable/chunks/ButtonModal-7ee3a4a1.js"];
-export const stylesheets = ["internal/immutable/assets/WishResult-effb9a08.css","internal/immutable/assets/lazyload-d703da40.css","internal/immutable/assets/_page-75fbe034.css","internal/immutable/assets/ButtonModal-dd0ea437.css","internal/immutable/assets/ObtainedItem-64c93daf.css","internal/immutable/assets/ModalConvert-1cf56ccf.css","internal/immutable/assets/_modal-balance-4f630c28.css","internal/immutable/assets/index-99507031.css","internal/immutable/assets/CheckBox-4ae22161.css","internal/immutable/assets/index-db37b75c.css","internal/immutable/assets/Iklan-27674bcf.css","internal/immutable/assets/_pagination-660172f1.css","internal/immutable/assets/index-191c38e6.css","internal/immutable/assets/index-9dd1fc3f.css","internal/immutable/assets/index-2b8cdfa9.css","internal/immutable/assets/RandomBackground-c01fc64e.css","internal/immutable/assets/index-f0ee7e4a.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/3.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/3.js
deleted file mode 100644
index c859a1b4..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/3.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 3;
-export const component = async () => (await import('../entries/pages/adkey/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/adkey/_page.svelte-0e8e16a9.js';
-export const imports = ["internal/immutable/components/pages/adkey/_page.svelte-0e8e16a9.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/index-123e2351.js","internal/immutable/chunks/audio-460a91c6.js","internal/immutable/chunks/app-stores-358281e6.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/accessKey-2a3cada9.js","internal/immutable/chunks/api-cookie-d587b0da.js","internal/immutable/chunks/ButtonModal-7ee3a4a1.js","internal/immutable/chunks/runtime.esm-4bf604c8.js"];
-export const stylesheets = ["internal/immutable/assets/_page-41952c63.css","internal/immutable/assets/ButtonModal-dd0ea437.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/4.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/4.js
deleted file mode 100644
index 141831db..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/4.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 4;
-export const component = async () => (await import('../entries/pages/bnlist/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/bnlist/_page.svelte-42422615.js';
-export const imports = ["internal/immutable/components/pages/bnlist/_page.svelte-42422615.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/lazyload-05dfa468.js","internal/immutable/chunks/RandomBackground-34695851.js","internal/immutable/chunks/app-stores-358281e6.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/env-f184adc0.js","internal/immutable/chunks/custom-banner-3b9921d3.js","internal/immutable/chunks/timeago-17bb7280.js","internal/immutable/chunks/_pagination-cd90c7ad.js"];
-export const stylesheets = ["internal/immutable/assets/_page-8ecfd270.css","internal/immutable/assets/lazyload-d703da40.css","internal/immutable/assets/RandomBackground-c01fc64e.css","internal/immutable/assets/_pagination-660172f1.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/5.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/5.js
deleted file mode 100644
index f2ce6f5d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/5.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 5;
-export const component = async () => (await import('../entries/pages/install/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/install/_page.svelte-6780e863.js';
-export const imports = ["internal/immutable/components/pages/install/_page.svelte-6780e863.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/runtime.esm-4bf604c8.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/env-f184adc0.js","internal/immutable/chunks/app-stores-358281e6.js"];
-export const stylesheets = ["internal/immutable/assets/_page-c955f7fd.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/6.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/6.js
deleted file mode 100644
index 78dbd194..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/6.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 6;
-export const component = async () => (await import('../entries/pages/privacy-policy/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/privacy-policy/_page.svelte-4a885c79.js';
-export const imports = ["internal/immutable/components/pages/privacy-policy/_page.svelte-4a885c79.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/runtime.esm-4bf604c8.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/env-f184adc0.js"];
-export const stylesheets = ["internal/immutable/assets/_page-3c659a81.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/7.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/7.js
deleted file mode 100644
index f50e7592..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/7.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 7;
-export const component = async () => (await import('../entries/pages/screen/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/screen/_page.svelte-cc5d84fc.js';
-export const imports = ["internal/immutable/components/pages/screen/_page.svelte-cc5d84fc.js","internal/immutable/chunks/index-c0d078cd.js"];
-export const stylesheets = [];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/8.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/8.js
deleted file mode 100644
index 4aec7426..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/8.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 8;
-export const component = async () => (await import('../entries/pages/screen/chars/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/screen/chars/_page.svelte-35d178b5.js';
-export const imports = ["internal/immutable/components/pages/screen/chars/_page.svelte-35d178b5.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/stores-65b20c67.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/navigation-45e4daee.js"];
-export const stylesheets = [];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/9.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/9.js
deleted file mode 100644
index 43dd418c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/output/server/nodes/9.js
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-export const index = 9;
-export const component = async () => (await import('../entries/pages/screen/wishitem/_page.svelte.js')).default;
-export const file = 'internal/immutable/components/pages/screen/wishitem/_page.svelte-8e5d743d.js';
-export const imports = ["internal/immutable/components/pages/screen/wishitem/_page.svelte-8e5d743d.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/stores-65b20c67.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/navigation-45e4daee.js","internal/immutable/chunks/runtime.esm-4bf604c8.js","internal/immutable/chunks/env-f184adc0.js","internal/immutable/chunks/outfit-bffb00d9.js","internal/immutable/chunks/index-123e2351.js","internal/immutable/chunks/WishResult-901333c5.js","internal/immutable/chunks/app-stores-358281e6.js","internal/immutable/chunks/audio-460a91c6.js","internal/immutable/chunks/lazyload-05dfa468.js"];
-export const stylesheets = ["internal/immutable/assets/_page-38811b6b.css","internal/immutable/assets/WishResult-effb9a08.css","internal/immutable/assets/lazyload-d703da40.css"];
-export const fonts = [];
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/tsconfig.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/tsconfig.json
deleted file mode 100644
index 99297653..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/tsconfig.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
-	"compilerOptions": {
-		"baseUrl": "..",
-		"paths": {
-			"$post": [
-				"src/post"
-			],
-			"$post/*": [
-				"src/post/*"
-			],
-			"$lib": [
-				"src/lib"
-			],
-			"$lib/*": [
-				"src/lib/*"
-			]
-		},
-		"rootDirs": [
-			"..",
-			"./types"
-		],
-		"importsNotUsedAsValues": "error",
-		"isolatedModules": true,
-		"preserveValueImports": true,
-		"lib": [
-			"esnext",
-			"DOM",
-			"DOM.Iterable"
-		],
-		"moduleResolution": "node",
-		"module": "esnext",
-		"target": "esnext"
-	},
-	"include": [
-		"ambient.d.ts",
-		"./types/**/$types.d.ts",
-		"../vite.config.ts",
-		"../src/**/*.js",
-		"../src/**/*.ts",
-		"../src/**/*.svelte",
-		"../src/**/*.js",
-		"../src/**/*.ts",
-		"../src/**/*.svelte",
-		"../tests/**/*.js",
-		"../tests/**/*.ts",
-		"../tests/**/*.svelte"
-	],
-	"exclude": [
-		"../node_modules/**",
-		"./[!ambient.d.ts]**"
-	]
-}
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/route_meta_data.json b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/route_meta_data.json
deleted file mode 100644
index bf751455..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/route_meta_data.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
-	"/": [
-		"src/routes/+layout.js",
-		"src/routes/+layout.js"
-	],
-	"/adkey": [
-		"src/routes/+layout.js"
-	],
-	"/bnlist": [
-		"src/routes/+layout.js"
-	],
-	"/install": [
-		"src/routes/+layout.js"
-	],
-	"/privacy-policy": [
-		"src/routes/+layout.js"
-	],
-	"/screen": [
-		"src/routes/+layout.js"
-	],
-	"/screen/chars": [
-		"src/routes/+layout.js"
-	],
-	"/screen/wishitem": [
-		"src/routes/+layout.js"
-	],
-	"/screen/wishlist": [
-		"src/routes/+layout.js"
-	]
-}
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/$types.d.ts
deleted file mode 100644
index 775d143b..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/$types.d.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<LayoutData>;
-type LayoutRouteId = RouteId | "/" | "/adkey" | "/bnlist" | "/install" | "/privacy-policy" | "/screen" | "/screen/chars" | "/screen/wishitem" | "/screen/wishlist" | null
-type LayoutParams = RouteParams & {  }
-type LayoutParentData = EnsureDefined<{}>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
-export type LayoutServerData = null;
-export type LayoutLoad<OutputData extends OutputDataShape<LayoutParentData> = OutputDataShape<LayoutParentData>> = Kit.Load<LayoutParams, LayoutServerData, LayoutParentData, OutputData, LayoutRouteId>;
-export type LayoutLoadEvent = Parameters<LayoutLoad>[0];
-export type LayoutData = Expand<Omit<LayoutParentData, keyof LayoutParentData & EnsureDefined<LayoutServerData>> & OptionalUnion<EnsureDefined<LayoutParentData & EnsureDefined<LayoutServerData>>>>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/adkey/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/adkey/$types.d.ts
deleted file mode 100644
index 5a18274d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/adkey/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/adkey';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/bnlist/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/bnlist/$types.d.ts
deleted file mode 100644
index f5583ca5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/bnlist/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/bnlist';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/install/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/install/$types.d.ts
deleted file mode 100644
index 3f4ce8d1..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/install/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/install';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/privacy-policy/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/privacy-policy/$types.d.ts
deleted file mode 100644
index 6c29939f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/privacy-policy/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/privacy-policy';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/$types.d.ts
deleted file mode 100644
index 58c8002d..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/screen';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/chars/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/chars/$types.d.ts
deleted file mode 100644
index d67f2d5c..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/chars/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/screen/chars';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/wishitem/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/wishitem/$types.d.ts
deleted file mode 100644
index 7ff8c8cd..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/wishitem/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/screen/wishitem';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/wishlist/$types.d.ts b/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/wishlist/$types.d.ts
deleted file mode 100644
index a08908e5..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/types/src/routes/screen/wishlist/$types.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import type * as Kit from '@sveltejs/kit';
-
-type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
-type RouteParams = {  }
-type RouteId = '/screen/wishlist';
-type MaybeWithVoid<T> = {} extends T ? T | void : T;
-export type RequiredKeys<T> = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
-type OutputDataShape<T> = MaybeWithVoid<Omit<App.PageData, RequiredKeys<T>> & Partial<Pick<App.PageData, keyof T & keyof App.PageData>> & Record<string, any>>
-type EnsureDefined<T> = T extends null | undefined ? {} : T;
-type OptionalUnion<U extends Record<string, any>, A extends keyof U = U extends U ? keyof U : never> = U extends unknown ? { [P in Exclude<A, keyof U>]?: never } & U : never;
-type PageParentData = EnsureDefined<import('../../$types.js').LayoutData>;
-
-export type PageServerData = null;
-export type PageData = Expand<PageParentData>;
\ No newline at end of file
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/vercel-tmp/index.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/vercel-tmp/index.js
deleted file mode 100644
index 585a8d6f..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/vercel-tmp/index.js
+++ /dev/null
@@ -1,37 +0,0 @@
-import { installPolyfills } from '@sveltejs/kit/node/polyfills';
-import { getRequest, setResponse } from '@sveltejs/kit/node';
-import { Server } from '../output/server/index.js';
-import { manifest } from './manifest.js';
-
-installPolyfills();
-
-const server = new Server(manifest);
-
-server.init({
-	env: process.env
-});
-
-/**
- * @param {import('http').IncomingMessage} req
- * @param {import('http').ServerResponse} res
- */
-export default async (req, res) => {
-	/** @type {Request} */
-	let request;
-
-	try {
-		request = await getRequest(`https://${req.headers.host}`, req);
-	} catch (err) {
-		res.statusCode = err.status || 400;
-		return res.end(err.reason || 'Invalid request body');
-	}
-
-	setResponse(
-		res,
-		await server.respond(request, {
-			getClientAddress() {
-				return request.headers.get('x-forwarded-for');
-			}
-		})
-	);
-};
diff --git a/Genshin-Impact-Wish-Simulator/.svelte-kit/vercel-tmp/manifest.js b/Genshin-Impact-Wish-Simulator/.svelte-kit/vercel-tmp/manifest.js
deleted file mode 100644
index 7ab4fdd0..00000000
--- a/Genshin-Impact-Wish-Simulator/.svelte-kit/vercel-tmp/manifest.js
+++ /dev/null
@@ -1,20 +0,0 @@
-export const manifest = {
-	appDir: "internal",
-	appPath: "internal",
-	assets: new Set([".nojekyll",".well-known/assetlinks.json","apple-touch-icon.png","browserconfig.xml","favicon.ico","fonts/aaqishu.woff","fonts/genshin-icon.eot","fonts/genshin-icon.svg","fonts/genshin-icon.ttf","fonts/genshin-icon.woff","fonts/optimized_global_web.woff2","fonts/optimized_jp_web.woff2","fonts/optimized_th_web.woff2","fonts/optimized_zh_web.woff2","google77966abbed90508f.html","icons/icon-128x128.png","icons/icon-144x144.png","icons/icon-152x152.png","icons/icon-16x16.png","icons/icon-192x192.png","icons/icon-256x256.png","icons/icon-32x32.png","icons/icon-384x384.png","icons/icon-512x512.png","icons/icon-72x72.png","icons/icon-96x96.png","icons/mstile-150x150.png","icons.css","images/background/bg1.webp","images/background/bg10.webp","images/background/bg11.webp","images/background/bg12.webp","images/background/bg13.webp","images/background/bg14.webp","images/background/bg15.webp","images/background/bg16.webp","images/background/bg17.webp","images/background/bg18.webp","images/background/bg19.webp","images/background/bg2.webp","images/background/bg20.webp","images/background/bg3.webp","images/background/bg4.webp","images/background/bg5.webp","images/background/bg6.webp","images/background/bg7.webp","images/background/bg8.webp","images/background/bg9.webp","images/background/constellation.webp","images/background/detailbg.webp","images/background/element-anemo-bg.webp","images/background/element-cryo-bg.webp","images/background/element-dendro-bg.webp","images/background/element-electro-bg.webp","images/background/element-geo-bg.webp","images/background/element-hydro-bg.webp","images/background/element-pyro-bg.webp","images/background/outfit-background.webp","images/background/splash-background.webp","images/background/wish-background.webp","images/banner/beginner/beginner.webp","images/banner/character-events/adrift-in-the-harbor-1.webp","images/banner/character-events/adrift-in-the-harbor-2.webp","images/banner/character-events/adrift-in-the-harbor-3.webp","images/banner/character-events/adrift-in-the-harbor-4.webp","images/banner/character-events/auric-blaze-1.webp","images/banner/character-events/azure-excursion-1.webp","images/banner/character-events/azure-excursion-2.webp","images/banner/character-events/ballad-in-goblets-1.webp","images/banner/character-events/ballad-in-goblets-2.webp","images/banner/character-events/ballad-in-goblets-3.webp","images/banner/character-events/ballad-in-goblets-4.webp","images/banner/character-events/ballad-in-goblets-5.webp","images/banner/character-events/born-of-ocean-swell-1.webp","images/banner/character-events/born-of-ocean-swell-2.webp","images/banner/character-events/born-of-ocean-swell-3.webp","images/banner/character-events/caution-in-confidence-1.webp","images/banner/character-events/caution-in-confidence-2.webp","images/banner/character-events/chanson-of-many-waters-1.webp","images/banner/character-events/conjuring-chiaroscuro-1.webp","images/banner/character-events/dance-of-lantern-1.webp","images/banner/character-events/decree-of-the-deeps-1.webp","images/banner/character-events/discerner-of-enigmas-1.webp","images/banner/character-events/discerner-of-enigmas-2.webp","images/banner/character-events/discerner-of-enigmas-3.webp","images/banner/character-events/drifting-luminescence-1.webp","images/banner/character-events/drifting-luminescence-2.webp","images/banner/character-events/drifting-luminescence-3.webp","images/banner/character-events/drifting-luminescence-4.webp","images/banner/character-events/everbloom-violet-1.webp","images/banner/character-events/everbloom-violet-2.webp","images/banner/character-events/everbloom-violet-3.webp","images/banner/character-events/farewell-of-snezhnaya-1.webp","images/banner/character-events/farewell-of-snezhnaya-2.webp","images/banner/character-events/farewell-of-snezhnaya-3.webp","images/banner/character-events/farewell-of-snezhnaya-4.webp","images/banner/character-events/farewell-of-snezhnaya-5.webp","images/banner/character-events/from-ashes-reborn-1.webp","images/banner/character-events/from-ashes-reborn-2.webp","images/banner/character-events/gentry-of-hermitage-1.webp","images/banner/character-events/gentry-of-hermitage-2.webp","images/banner/character-events/gentry-of-hermitage-3.webp","images/banner/character-events/gentry-of-hermitage-4.webp","images/banner/character-events/gentry-of-hermitage-5.webp","images/banner/character-events/immaculate-pulse-1.webp","images/banner/character-events/immaculate-pulse-2.webp","images/banner/character-events/invitation-to-mundane-life-1.webp","images/banner/character-events/invitation-to-mundane-life-2.webp","images/banner/character-events/invitation-to-mundane-life-3.webp","images/banner/character-events/invitation-to-mundane-life-4.webp","images/banner/character-events/leaves-in-the-wind-1.webp","images/banner/character-events/leaves-in-the-wind-2.webp","images/banner/character-events/leaves-in-the-wind-3.webp","images/banner/character-events/moment-of-bloom-1.webp","images/banner/character-events/moment-of-bloom-2.webp","images/banner/character-events/moment-of-bloom-3.webp","images/banner/character-events/moment-of-bloom-4.webp","images/banner/character-events/oni_s-royale-1.webp","images/banner/character-events/oni_s-royale-2.webp","images/banner/character-events/oni_s-royale-3.webp","images/banner/character-events/reign-of-serenity-1.webp","images/banner/character-events/reign-of-serenity-2.webp","images/banner/character-events/reign-of-serenity-3.webp","images/banner/character-events/secretum-secretorum-1.webp","images/banner/character-events/secretum-secretorum-2.webp","images/banner/character-events/secretum-secretorum-3.webp","images/banner/character-events/sparkling-steps-1.webp","images/banner/character-events/sparkling-steps-2.webp","images/banner/character-events/sparkling-steps-3.webp","images/banner/character-events/sparkling-steps-4.webp","images/banner/character-events/tapestry-of-golden-flames-1.webp","images/banner/character-events/tapestry-of-golden-flames-2.webp","images/banner/character-events/tapestry-of-golden-flames-3.webp","images/banner/character-events/tapestry-of-golden-flames-4.webp","images/banner/character-events/tempestuous-destiny-1.webp","images/banner/character-events/the-heron_s-court-1.webp","images/banner/character-events/the-heron_s-court-2.webp","images/banner/character-events/the-heron_s-court-3.webp","images/banner/character-events/the-moongrass-enlightenment-1.webp","images/banner/character-events/the-moongrass-enlightenment-2.webp","images/banner/character-events/the-transcendent-one-returns-1.webp","images/banner/character-events/the-transcendent-one-returns-2.webp","images/banner/character-events/twilight-arbiter-1.webp","images/banner/character-events/twilight-arbiter-2.webp","images/banner/character-events/twirling-lotus-1.webp","images/banner/character-events/twirling-lotus-2.webp","images/banner/character-events/viridescent-vigil-1.webp","images/banner/standard/wanderlust-invocation-1.webp","images/banner/standard/wanderlust-invocation-2.webp","images/banner/thumbnail/adrift-in-the-harbor-1.webp","images/banner/thumbnail/adrift-in-the-harbor-2.webp","images/banner/thumbnail/adrift-in-the-harbor-3.webp","images/banner/thumbnail/adrift-in-the-harbor-4.webp","images/banner/thumbnail/auric-blaze-1.webp","images/banner/thumbnail/azure-excursion-1.webp","images/banner/thumbnail/azure-excursion-2.webp","images/banner/thumbnail/ballad-in-goblets-1.webp","images/banner/thumbnail/ballad-in-goblets-2.webp","images/banner/thumbnail/ballad-in-goblets-3.webp","images/banner/thumbnail/ballad-in-goblets-4.webp","images/banner/thumbnail/ballad-in-goblets-5.webp","images/banner/thumbnail/born-of-ocean-swell-1.webp","images/banner/thumbnail/born-of-ocean-swell-2.webp","images/banner/thumbnail/born-of-ocean-swell-3.webp","images/banner/thumbnail/caution-in-confidence-1.webp","images/banner/thumbnail/caution-in-confidence-2.webp","images/banner/thumbnail/chanson-of-many-waters-1.webp","images/banner/thumbnail/conjuring-chiaroscuro-1.webp","images/banner/thumbnail/dance-of-lantern-1.webp","images/banner/thumbnail/decree-of-the-deeps-1.webp","images/banner/thumbnail/discerner-of-enigmas-1.webp","images/banner/thumbnail/discerner-of-enigmas-2.webp","images/banner/thumbnail/discerner-of-enigmas-3.webp","images/banner/thumbnail/drifting-luminescence-1.webp","images/banner/thumbnail/drifting-luminescence-2.webp","images/banner/thumbnail/drifting-luminescence-3.webp","images/banner/thumbnail/drifting-luminescence-4.webp","images/banner/thumbnail/epitome-invocation-1.webp","images/banner/thumbnail/epitome-invocation-10.webp","images/banner/thumbnail/epitome-invocation-11.webp","images/banner/thumbnail/epitome-invocation-12.webp","images/banner/thumbnail/epitome-invocation-13.webp","images/banner/thumbnail/epitome-invocation-14.webp","images/banner/thumbnail/epitome-invocation-15.webp","images/banner/thumbnail/epitome-invocation-16.webp","images/banner/thumbnail/epitome-invocation-17.webp","images/banner/thumbnail/epitome-invocation-18.webp","images/banner/thumbnail/epitome-invocation-19.webp","images/banner/thumbnail/epitome-invocation-2.webp","images/banner/thumbnail/epitome-invocation-20.webp","images/banner/thumbnail/epitome-invocation-21.webp","images/banner/thumbnail/epitome-invocation-22.webp","images/banner/thumbnail/epitome-invocation-23.webp","images/banner/thumbnail/epitome-invocation-24.webp","images/banner/thumbnail/epitome-invocation-25.webp","images/banner/thumbnail/epitome-invocation-26.webp","images/banner/thumbnail/epitome-invocation-27.webp","images/banner/thumbnail/epitome-invocation-28.webp","images/banner/thumbnail/epitome-invocation-29.webp","images/banner/thumbnail/epitome-invocation-3.webp","images/banner/thumbnail/epitome-invocation-30.webp","images/banner/thumbnail/epitome-invocation-31.webp","images/banner/thumbnail/epitome-invocation-32.webp","images/banner/thumbnail/epitome-invocation-33.webp","images/banner/thumbnail/epitome-invocation-34.webp","images/banner/thumbnail/epitome-invocation-35.webp","images/banner/thumbnail/epitome-invocation-36.webp","images/banner/thumbnail/epitome-invocation-37.webp","images/banner/thumbnail/epitome-invocation-38.webp","images/banner/thumbnail/epitome-invocation-39.webp","images/banner/thumbnail/epitome-invocation-4.webp","images/banner/thumbnail/epitome-invocation-40.webp","images/banner/thumbnail/epitome-invocation-41.webp","images/banner/thumbnail/epitome-invocation-42.webp","images/banner/thumbnail/epitome-invocation-43.webp","images/banner/thumbnail/epitome-invocation-44.webp","images/banner/thumbnail/epitome-invocation-45.webp","images/banner/thumbnail/epitome-invocation-46.webp","images/banner/thumbnail/epitome-invocation-47.webp","images/banner/thumbnail/epitome-invocation-48.webp","images/banner/thumbnail/epitome-invocation-49.webp","images/banner/thumbnail/epitome-invocation-5.webp","images/banner/thumbnail/epitome-invocation-50.webp","images/banner/thumbnail/epitome-invocation-51.webp","images/banner/thumbnail/epitome-invocation-52.webp","images/banner/thumbnail/epitome-invocation-53.webp","images/banner/thumbnail/epitome-invocation-54.webp","images/banner/thumbnail/epitome-invocation-55.webp","images/banner/thumbnail/epitome-invocation-6.webp","images/banner/thumbnail/epitome-invocation-7.webp","images/banner/thumbnail/epitome-invocation-8.webp","images/banner/thumbnail/epitome-invocation-9.webp","images/banner/thumbnail/everbloom-violet-1.webp","images/banner/thumbnail/everbloom-violet-2.webp","images/banner/thumbnail/everbloom-violet-3.webp","images/banner/thumbnail/farewell-of-snezhnaya-1.webp","images/banner/thumbnail/farewell-of-snezhnaya-2.webp","images/banner/thumbnail/farewell-of-snezhnaya-3.webp","images/banner/thumbnail/farewell-of-snezhnaya-4.webp","images/banner/thumbnail/farewell-of-snezhnaya-5.webp","images/banner/thumbnail/from-ashes-reborn-1.webp","images/banner/thumbnail/from-ashes-reborn-2.webp","images/banner/thumbnail/gentry-of-hermitage-1.webp","images/banner/thumbnail/gentry-of-hermitage-2.webp","images/banner/thumbnail/gentry-of-hermitage-3.webp","images/banner/thumbnail/gentry-of-hermitage-4.webp","images/banner/thumbnail/gentry-of-hermitage-5.webp","images/banner/thumbnail/immaculate-pulse-1.webp","images/banner/thumbnail/immaculate-pulse-2.webp","images/banner/thumbnail/invitation-to-mundane-life-1.webp","images/banner/thumbnail/invitation-to-mundane-life-2.webp","images/banner/thumbnail/invitation-to-mundane-life-3.webp","images/banner/thumbnail/invitation-to-mundane-life-4.webp","images/banner/thumbnail/leaves-in-the-wind-1.webp","images/banner/thumbnail/leaves-in-the-wind-2.webp","images/banner/thumbnail/leaves-in-the-wind-3.webp","images/banner/thumbnail/moment-of-bloom-1.webp","images/banner/thumbnail/moment-of-bloom-2.webp","images/banner/thumbnail/moment-of-bloom-3.webp","images/banner/thumbnail/moment-of-bloom-4.webp","images/banner/thumbnail/oni_s-royale-1.webp","images/banner/thumbnail/oni_s-royale-2.webp","images/banner/thumbnail/oni_s-royale-3.webp","images/banner/thumbnail/reign-of-serenity-1.webp","images/banner/thumbnail/reign-of-serenity-2.webp","images/banner/thumbnail/reign-of-serenity-3.webp","images/banner/thumbnail/secretum-secretorum-1.webp","images/banner/thumbnail/secretum-secretorum-2.webp","images/banner/thumbnail/secretum-secretorum-3.webp","images/banner/thumbnail/sparkling-steps-1.webp","images/banner/thumbnail/sparkling-steps-2.webp","images/banner/thumbnail/sparkling-steps-3.webp","images/banner/thumbnail/sparkling-steps-4.webp","images/banner/thumbnail/tapestry-of-golden-flames-1.webp","images/banner/thumbnail/tapestry-of-golden-flames-2.webp","images/banner/thumbnail/tapestry-of-golden-flames-3.webp","images/banner/thumbnail/tapestry-of-golden-flames-4.webp","images/banner/thumbnail/tempestuous-destiny-1.webp","images/banner/thumbnail/the-heron_s-court-1.webp","images/banner/thumbnail/the-heron_s-court-2.webp","images/banner/thumbnail/the-heron_s-court-3.webp","images/banner/thumbnail/the-moongrass-enlightenment-1.webp","images/banner/thumbnail/the-moongrass-enlightenment-2.webp","images/banner/thumbnail/the-transcendent-one-returns-1.webp","images/banner/thumbnail/the-transcendent-one-returns-2.webp","images/banner/thumbnail/twilight-arbiter-1.webp","images/banner/thumbnail/twilight-arbiter-2.webp","images/banner/thumbnail/twirling-lotus-1.webp","images/banner/thumbnail/twirling-lotus-2.webp","images/banner/thumbnail/viridescent-vigil-1.webp","images/banner/weapons/epitome-invocation-1.webp","images/banner/weapons/epitome-invocation-10.webp","images/banner/weapons/epitome-invocation-11.webp","images/banner/weapons/epitome-invocation-12.webp","images/banner/weapons/epitome-invocation-13.webp","images/banner/weapons/epitome-invocation-14.webp","images/banner/weapons/epitome-invocation-15.webp","images/banner/weapons/epitome-invocation-16.webp","images/banner/weapons/epitome-invocation-17.webp","images/banner/weapons/epitome-invocation-18.webp","images/banner/weapons/epitome-invocation-19.webp","images/banner/weapons/epitome-invocation-2.webp","images/banner/weapons/epitome-invocation-20.webp","images/banner/weapons/epitome-invocation-21.webp","images/banner/weapons/epitome-invocation-22.webp","images/banner/weapons/epitome-invocation-23.webp","images/banner/weapons/epitome-invocation-24.webp","images/banner/weapons/epitome-invocation-25.webp","images/banner/weapons/epitome-invocation-26.webp","images/banner/weapons/epitome-invocation-27.webp","images/banner/weapons/epitome-invocation-28.webp","images/banner/weapons/epitome-invocation-29.webp","images/banner/weapons/epitome-invocation-3.webp","images/banner/weapons/epitome-invocation-30.webp","images/banner/weapons/epitome-invocation-31.webp","images/banner/weapons/epitome-invocation-32.webp","images/banner/weapons/epitome-invocation-33.webp","images/banner/weapons/epitome-invocation-34.webp","images/banner/weapons/epitome-invocation-35.webp","images/banner/weapons/epitome-invocation-36.webp","images/banner/weapons/epitome-invocation-37.webp","images/banner/weapons/epitome-invocation-38.webp","images/banner/weapons/epitome-invocation-39.webp","images/banner/weapons/epitome-invocation-4.webp","images/banner/weapons/epitome-invocation-40.webp","images/banner/weapons/epitome-invocation-41.webp","images/banner/weapons/epitome-invocation-42.webp","images/banner/weapons/epitome-invocation-43.webp","images/banner/weapons/epitome-invocation-44.webp","images/banner/weapons/epitome-invocation-45.webp","images/banner/weapons/epitome-invocation-46.webp","images/banner/weapons/epitome-invocation-47.webp","images/banner/weapons/epitome-invocation-48.webp","images/banner/weapons/epitome-invocation-49.webp","images/banner/weapons/epitome-invocation-5.webp","images/banner/weapons/epitome-invocation-50.webp","images/banner/weapons/epitome-invocation-51.webp","images/banner/weapons/epitome-invocation-52.webp","images/banner/weapons/epitome-invocation-53.webp","images/banner/weapons/epitome-invocation-54.webp","images/banner/weapons/epitome-invocation-55.webp","images/banner/weapons/epitome-invocation-6.webp","images/banner/weapons/epitome-invocation-7.webp","images/banner/weapons/epitome-invocation-8.webp","images/banner/weapons/epitome-invocation-9.webp","images/characters/banner-button/albedo.webp","images/characters/banner-button/alhaitham.webp","images/characters/banner-button/arataki-itto.webp","images/characters/banner-button/baizhu.webp","images/characters/banner-button/cyno.webp","images/characters/banner-button/dehya.webp","images/characters/banner-button/eula.webp","images/characters/banner-button/furina.webp","images/characters/banner-button/ganyu.webp","images/characters/banner-button/hu-tao.webp","images/characters/banner-button/jean.webp","images/characters/banner-button/kaedehara-kazuha.webp","images/characters/banner-button/kamisato-ayaka.webp","images/characters/banner-button/kamisato-ayato.webp","images/characters/banner-button/keqing.webp","images/characters/banner-button/klee.webp","images/characters/banner-button/lyney.webp","images/characters/banner-button/nahida.webp","images/characters/banner-button/neuvillette.webp","images/characters/banner-button/nilou.webp","images/characters/banner-button/noelle.webp","images/characters/banner-button/qiqi.webp","images/characters/banner-button/raiden-shogun.webp","images/characters/banner-button/sangonomiya-kokomi.webp","images/characters/banner-button/shenhe.webp","images/characters/banner-button/tartaglia.webp","images/characters/banner-button/tighnari.webp","images/characters/banner-button/venti.webp","images/characters/banner-button/wanderer.webp","images/characters/banner-button/wriothesley.webp","images/characters/banner-button/xiao.webp","images/characters/banner-button/yae-miko.webp","images/characters/banner-button/yelan.webp","images/characters/banner-button/yoimiya.webp","images/characters/banner-button/zhongli.webp","images/characters/face/4star/amber.webp","images/characters/face/4star/barbara.webp","images/characters/face/4star/beidou.webp","images/characters/face/4star/bennett.webp","images/characters/face/4star/candace.webp","images/characters/face/4star/charlotte.webp","images/characters/face/4star/chongyun.webp","images/characters/face/4star/collei.webp","images/characters/face/4star/diona.webp","images/characters/face/4star/dori.webp","images/characters/face/4star/faruzan.webp","images/characters/face/4star/fischl.webp","images/characters/face/4star/freminet.webp","images/characters/face/4star/gorou.webp","images/characters/face/4star/kaeya.webp","images/characters/face/4star/kaveh.webp","images/characters/face/4star/kirara.webp","images/characters/face/4star/kujou-sara.webp","images/characters/face/4star/kuki-shinobu.webp","images/characters/face/4star/layla.webp","images/characters/face/4star/lisa.webp","images/characters/face/4star/lynette.webp","images/characters/face/4star/mika.webp","images/characters/face/4star/ningguang.webp","images/characters/face/4star/noelle.webp","images/characters/face/4star/razor.webp","images/characters/face/4star/rosaria.webp","images/characters/face/4star/sayu.webp","images/characters/face/4star/shikanoin-heizou.webp","images/characters/face/4star/sucrose.webp","images/characters/face/4star/thoma.webp","images/characters/face/4star/xiangling.webp","images/characters/face/4star/xingqiu.webp","images/characters/face/4star/xinyan.webp","images/characters/face/4star/yanfei.webp","images/characters/face/4star/yaoyao.webp","images/characters/face/4star/yun-jin.webp","images/characters/face/5star/albedo.webp","images/characters/face/5star/alhaitham.webp","images/characters/face/5star/arataki-itto.webp","images/characters/face/5star/baizhu.webp","images/characters/face/5star/cyno.webp","images/characters/face/5star/dehya.webp","images/characters/face/5star/diluc.webp","images/characters/face/5star/eula.webp","images/characters/face/5star/furina.webp","images/characters/face/5star/ganyu.webp","images/characters/face/5star/hu-tao.webp","images/characters/face/5star/jean.webp","images/characters/face/5star/kaedehara-kazuha.webp","images/characters/face/5star/kamisato-ayaka.webp","images/characters/face/5star/kamisato-ayato.webp","images/characters/face/5star/keqing.webp","images/characters/face/5star/klee.webp","images/characters/face/5star/lyney.webp","images/characters/face/5star/mona.webp","images/characters/face/5star/nahida.webp","images/characters/face/5star/neuvillette.webp","images/characters/face/5star/nilou.webp","images/characters/face/5star/qiqi.webp","images/characters/face/5star/raiden-shogun.webp","images/characters/face/5star/sangonomiya-kokomi.webp","images/characters/face/5star/shenhe.webp","images/characters/face/5star/tartaglia.webp","images/characters/face/5star/tighnari.webp","images/characters/face/5star/venti.webp","images/characters/face/5star/wanderer.webp","images/characters/face/5star/wriothesley.webp","images/characters/face/5star/xiao.webp","images/characters/face/5star/yae-miko.webp","images/characters/face/5star/yelan.webp","images/characters/face/5star/yoimiya.webp","images/characters/face/5star/zhongli.webp","images/characters/splash-art/4star/amber.webp","images/characters/splash-art/4star/barbara.webp","images/characters/splash-art/4star/beidou.webp","images/characters/splash-art/4star/bennett.webp","images/characters/splash-art/4star/candace.webp","images/characters/splash-art/4star/charlotte.webp","images/characters/splash-art/4star/chongyun.webp","images/characters/splash-art/4star/collei.webp","images/characters/splash-art/4star/diona.webp","images/characters/splash-art/4star/dori.webp","images/characters/splash-art/4star/faruzan.webp","images/characters/splash-art/4star/fischl.webp","images/characters/splash-art/4star/freminet.webp","images/characters/splash-art/4star/gorou.webp","images/characters/splash-art/4star/kaeya.webp","images/characters/splash-art/4star/kaveh.webp","images/characters/splash-art/4star/kirara.webp","images/characters/splash-art/4star/kujou-sara.webp","images/characters/splash-art/4star/kuki-shinobu.webp","images/characters/splash-art/4star/layla.webp","images/characters/splash-art/4star/lisa.webp","images/characters/splash-art/4star/lynette.webp","images/characters/splash-art/4star/mika.webp","images/characters/splash-art/4star/ningguang.webp","images/characters/splash-art/4star/noelle.webp","images/characters/splash-art/4star/razor.webp","images/characters/splash-art/4star/rosaria.webp","images/characters/splash-art/4star/sayu.webp","images/characters/splash-art/4star/shikanoin-heizou.webp","images/characters/splash-art/4star/sucrose.webp","images/characters/splash-art/4star/thoma.webp","images/characters/splash-art/4star/xiangling.webp","images/characters/splash-art/4star/xingqiu.webp","images/characters/splash-art/4star/xinyan.webp","images/characters/splash-art/4star/yanfei.webp","images/characters/splash-art/4star/yaoyao.webp","images/characters/splash-art/4star/yun-jin.webp","images/characters/splash-art/5star/albedo.webp","images/characters/splash-art/5star/alhaitham.webp","images/characters/splash-art/5star/arataki-itto.webp","images/characters/splash-art/5star/baizhu.webp","images/characters/splash-art/5star/cyno.webp","images/characters/splash-art/5star/dehya.webp","images/characters/splash-art/5star/diluc.webp","images/characters/splash-art/5star/eula.webp","images/characters/splash-art/5star/furina.webp","images/characters/splash-art/5star/ganyu.webp","images/characters/splash-art/5star/hu-tao.webp","images/characters/splash-art/5star/jean.webp","images/characters/splash-art/5star/kaedehara-kazuha.webp","images/characters/splash-art/5star/kamisato-ayaka.webp","images/characters/splash-art/5star/kamisato-ayato.webp","images/characters/splash-art/5star/keqing.webp","images/characters/splash-art/5star/klee.webp","images/characters/splash-art/5star/lyney.webp","images/characters/splash-art/5star/mona.webp","images/characters/splash-art/5star/nahida.webp","images/characters/splash-art/5star/neuvillette.webp","images/characters/splash-art/5star/nilou.webp","images/characters/splash-art/5star/qiqi.webp","images/characters/splash-art/5star/raiden-shogun.webp","images/characters/splash-art/5star/sangonomiya-kokomi.webp","images/characters/splash-art/5star/shenhe.webp","images/characters/splash-art/5star/tartaglia.webp","images/characters/splash-art/5star/tighnari.webp","images/characters/splash-art/5star/venti.webp","images/characters/splash-art/5star/wanderer.webp","images/characters/splash-art/5star/wriothesley.webp","images/characters/splash-art/5star/xiao.webp","images/characters/splash-art/5star/yae-miko.webp","images/characters/splash-art/5star/yelan.webp","images/characters/splash-art/5star/yoimiya.webp","images/characters/splash-art/5star/zhongli.webp","images/outfits/face/5-star-outrider.webp","images/outfits/face/a-sobriquet-under-shade.webp","images/outfits/face/blossoming-starlight.webp","images/outfits/face/ein-immernachtstraum.webp","images/outfits/face/executor_s-thorns.webp","images/outfits/face/favonian-fevotion.webp","images/outfits/face/flowing-fate.webp","images/outfits/face/opulent-splendor.webp","images/outfits/face/orchid_s-evening-gown.webp","images/outfits/face/red-dead-of-night.webp","images/outfits/face/sailwind-shadow.webp","images/outfits/face/sea-breeze-dandelion.webp","images/outfits/face/springbloom-missive.webp","images/outfits/face/summertime-sparkle.webp","images/outfits/splash-art/5-star-outrider.webp","images/outfits/splash-art/a-sobriquet-under-shade.webp","images/outfits/splash-art/blossoming-starlight.webp","images/outfits/splash-art/ein-immernachtstraum.webp","images/outfits/splash-art/executor_s-thorns.webp","images/outfits/splash-art/favonian-fevotion.webp","images/outfits/splash-art/flowing-fate.webp","images/outfits/splash-art/opulent-splendor.webp","images/outfits/splash-art/orchid_s-evening-gown.webp","images/outfits/splash-art/red-dead-of-night.webp","images/outfits/splash-art/sailwind-shadow.webp","images/outfits/splash-art/sea-breeze-dandelion.webp","images/outfits/splash-art/springbloom-missive.webp","images/outfits/splash-art/summertime-sparkle.webp","images/outfits/thumbnail/a-sobriquet-under-shade.webp","images/outfits/thumbnail/blossoming-starlight.webp","images/outfits/thumbnail/ein-immernachtstraum.webp","images/outfits/thumbnail/opulent-splendor.webp","images/outfits/thumbnail/orchid_s-evening-gown.webp","images/outfits/thumbnail/red-dead-of-night.webp","images/outfits/thumbnail/sailwind-shadow.webp","images/outfits/thumbnail/sea-breeze-dandelion.webp","images/outfits/thumbnail/springbloom-missive.webp","images/outfits/thumbnail/summertime-sparkle.webp","images/utility/3star-bg.webp","images/utility/4star-bg.webp","images/utility/5star-bg.webp","images/utility/acquaint-fate.webp","images/utility/admin.webp","images/utility/bg-bonus.webp","images/utility/bg-bow.webp","images/utility/bg-catalyst.webp","images/utility/bg-claymore.webp","images/utility/bg-polearm.webp","images/utility/bg-sword.webp","images/utility/book-select-bg.webp","images/utility/book.webp","images/utility/brand.png","images/utility/button.webp","images/utility/donate-bnb.png","images/utility/donate-btc.png","images/utility/donate-dana.png","images/utility/donate-ethereum.png","images/utility/donate-gopay.png","images/utility/donate-kofi.png","images/utility/donate-linkaja.png","images/utility/donate-ovo.png","images/utility/donate-saweria.webp","images/utility/donate-shopeepay.png","images/utility/donate-solana.png","images/utility/fatepointbook-half.webp","images/utility/fatepointbook.webp","images/utility/genesis-1980.webp","images/utility/genesis-300.webp","images/utility/genesis-3280.webp","images/utility/genesis-60.webp","images/utility/genesis-6480.webp","images/utility/genesis-980.webp","images/utility/genesis-bg.webp","images/utility/genesis.webp","images/utility/genshin-logo-cn.webp","images/utility/genshin-logo.webp","images/utility/history-select-bg.webp","images/utility/imbroke.webp","images/utility/intertwined-fate.webp","images/utility/masterless-stardust.webp","images/utility/masterless-starglitter.webp","images/utility/menu-active.png","images/utility/modal-bg-icon.png","images/utility/payment-childe.webp","images/utility/payment-tears.webp","images/utility/payment-wakaranai.webp","images/utility/paypal.png","images/utility/playstore-button.webp","images/utility/primogem.webp","images/utility/resultcard-bg.svg","images/utility/shop-nav-bg.webp","images/utility/stella-fortuna-4star.webp","images/utility/stella-fortuna-5star.webp","images/utility/welkin-card.webp","images/utility/welkin-moon-girl.webp","images/utility/welkin.webp","images/weapons/bow/3star/a22-01.webp","images/weapons/bow/3star/a22-02.webp","images/weapons/bow/3star/a22-03.webp","images/weapons/bow/3star/a22-04.webp","images/weapons/bow/3star/a22-05.webp","images/weapons/bow/3star/a22-06.webp","images/weapons/bow/3star/a22-07.webp","images/weapons/bow/3star/a22-08.webp","images/weapons/bow/3star/a22-09.webp","images/weapons/bow/3star/a22-10.webp","images/weapons/bow/3star/a22-11.webp","images/weapons/bow/3star/a22-12.webp","images/weapons/bow/3star/a22-13.webp","images/weapons/bow/3star/a22-14.webp","images/weapons/bow/3star/a22-15.webp","images/weapons/bow/3star/a22-16.webp","images/weapons/bow/3star/a22-17.webp","images/weapons/bow/3star/a22-18.webp","images/weapons/bow/3star/a22-19.webp","images/weapons/bow/3star/a22-20.webp","images/weapons/bow/3star/a22-21.webp","images/weapons/bow/3star/a22-22.webp","images/weapons/bow/3star/a22-23.webp","images/weapons/bow/3star/a22-24.webp","images/weapons/bow/3star/a22-25.webp","images/weapons/bow/3star/a22-26.webp","images/weapons/bow/3star/a22-27.webp","images/weapons/bow/3star/a22-28.webp","images/weapons/bow/3star/a22-29.webp","images/weapons/bow/3star/a22-30.webp","images/weapons/bow/3star/a22-31.webp","images/weapons/bow/3star/a22-32.webp","images/weapons/bow/3star/a22-33.webp","images/weapons/bow/3star/a22-34.webp","images/weapons/bow/3star/a22-35.webp","images/weapons/bow/3star/a22-36.webp","images/weapons/bow/3star/a22-37.webp","images/weapons/bow/3star/a22-38.webp","images/weapons/bow/3star/a22-39.webp","images/weapons/bow/3star/a22-40.webp","images/weapons/bow/3star/a22-41.webp","images/weapons/bow/3star/a22-42.webp","images/weapons/bow/3star/a22-43.webp","images/weapons/bow/3star/a22-44.webp","images/weapons/bow/3star/a22-45.webp","images/weapons/bow/3star/a22-46.webp","images/weapons/bow/3star/a22-47.webp","images/weapons/bow/3star/a22-48.webp","images/weapons/bow/3star/a22-49.webp","images/weapons/bow/3star/a22-50.webp","images/weapons/bow/3star/a22-51.webp","images/weapons/bow/4star/alley-hunter.webp","images/weapons/bow/4star/favonius-warbow.webp","images/weapons/bow/4star/mitternachts-waltz.webp","images/weapons/bow/4star/mouun_s-moon.webp","images/weapons/bow/4star/range-gauge.webp","images/weapons/bow/4star/rust.webp","images/weapons/bow/4star/sacrificial-bow.webp","images/weapons/bow/4star/the-stringless.webp","images/weapons/bow/5star/amos-bow.webp","images/weapons/bow/5star/aqua-simulacra.webp","images/weapons/bow/5star/elegy-for-the-end.webp","images/weapons/bow/5star/hunter_s-path.webp","images/weapons/bow/5star/polar-star.webp","images/weapons/bow/5star/skyward-harp.webp","images/weapons/bow/5star/the-first-great-magic.webp","images/weapons/bow/5star/thundering-pulse.webp","images/weapons/catalyst/3star/emerald-orb.webp","images/weapons/catalyst/3star/magic-guide.webp","images/weapons/catalyst/3star/thrilling-tales-of-dragon-slayers.webp","images/weapons/catalyst/4star/eye-of-perception.webp","images/weapons/catalyst/4star/favonius-codex.webp","images/weapons/catalyst/4star/sacrificial-fragments.webp","images/weapons/catalyst/4star/the-widsith.webp","images/weapons/catalyst/4star/wandering-evenstar.webp","images/weapons/catalyst/4star/wine-and-song.webp","images/weapons/catalyst/5star/a-thousand-floating-dreams.webp","images/weapons/catalyst/5star/cashflow-supervision.webp","images/weapons/catalyst/5star/everlasting-moonglow.webp","images/weapons/catalyst/5star/jadefall-splendor.webp","images/weapons/catalyst/5star/kagura_s-verity.webp","images/weapons/catalyst/5star/lost-prayer-to-the-sacred-winds.webp","images/weapons/catalyst/5star/memory-of-dust.webp","images/weapons/catalyst/5star/skyward-atlas.webp","images/weapons/catalyst/5star/tome-of-the-eternal-flow.webp","images/weapons/catalyst/5star/tulaytullah_s-remembrance.webp","images/weapons/claymore/3star/bloodtained-greatsword.webp","images/weapons/claymore/3star/debate-club.webp","images/weapons/claymore/3star/ferrous-shadow.webp","images/weapons/claymore/4star/akuoumaru.webp","images/weapons/claymore/4star/favonius-greatsword.webp","images/weapons/claymore/4star/lithic-blade.webp","images/weapons/claymore/4star/makhaira-aquamarine.webp","images/weapons/claymore/4star/portable-power-saw.webp","images/weapons/claymore/4star/rainslasher.webp","images/weapons/claymore/4star/sacrificial-greatsword.webp","images/weapons/claymore/4star/the-bell.webp","images/weapons/claymore/5star/beacon-of-the-reed-sea.webp","images/weapons/claymore/5star/redhorn-stonethresher.webp","images/weapons/claymore/5star/skyward-pride.webp","images/weapons/claymore/5star/song-of-broken-pines.webp","images/weapons/claymore/5star/the-unforged.webp","images/weapons/claymore/5star/wolf_s-gravestone.webp","images/weapons/polearm/3star/a14-01.webp","images/weapons/polearm/3star/a14-02.webp","images/weapons/polearm/3star/a14-03.webp","images/weapons/polearm/3star/a14-04.webp","images/weapons/polearm/3star/a14-05.webp","images/weapons/polearm/3star/a14-06.webp","images/weapons/polearm/3star/a14-07.webp","images/weapons/polearm/3star/a14-08.webp","images/weapons/polearm/3star/a14-09.webp","images/weapons/polearm/3star/a14-10.webp","images/weapons/polearm/3star/a14-11.webp","images/weapons/polearm/3star/a14-12.webp","images/weapons/polearm/3star/a14-13.webp","images/weapons/polearm/3star/a14-14.webp","images/weapons/polearm/3star/a14-15.webp","images/weapons/polearm/3star/a14-16.webp","images/weapons/polearm/3star/a14-17.webp","images/weapons/polearm/3star/a14-18.webp","images/weapons/polearm/3star/a14-19.webp","images/weapons/polearm/3star/a14-20.webp","images/weapons/polearm/3star/a14-21.webp","images/weapons/polearm/3star/a14-22.webp","images/weapons/polearm/3star/a14-23.webp","images/weapons/polearm/3star/a14-24.webp","images/weapons/polearm/3star/a14-25.webp","images/weapons/polearm/3star/a14-26.webp","images/weapons/polearm/3star/a14-27.webp","images/weapons/polearm/3star/a14-28.webp","images/weapons/polearm/3star/a14-29.webp","images/weapons/polearm/3star/a14-30.webp","images/weapons/polearm/3star/a14-31.webp","images/weapons/polearm/3star/a14-32.webp","images/weapons/polearm/3star/a14-33.webp","images/weapons/polearm/3star/a14-34.webp","images/weapons/polearm/3star/a14-35.webp","images/weapons/polearm/3star/a14-36.webp","images/weapons/polearm/3star/a14-37.webp","images/weapons/polearm/3star/a14-38.webp","images/weapons/polearm/3star/a14-39.webp","images/weapons/polearm/3star/a14-40.webp","images/weapons/polearm/3star/a14-41.webp","images/weapons/polearm/3star/a14-42.webp","images/weapons/polearm/3star/a14-43.webp","images/weapons/polearm/3star/a14-44.webp","images/weapons/polearm/3star/a14-45.webp","images/weapons/polearm/3star/a14-46.webp","images/weapons/polearm/3star/a14-47.webp","images/weapons/polearm/3star/a14-48.webp","images/weapons/polearm/3star/a14-49.webp","images/weapons/polearm/3star/a14-50.webp","images/weapons/polearm/3star/a14-51.webp","images/weapons/polearm/3star/a14-52.webp","images/weapons/polearm/3star/a14-53.webp","images/weapons/polearm/3star/black-tassel.webp","images/weapons/polearm/4star/dragon_s-bane.webp","images/weapons/polearm/4star/favonius-lance.webp","images/weapons/polearm/4star/lithic-spear.webp","images/weapons/polearm/4star/prospector-drill.webp","images/weapons/polearm/4star/wavebreaker_s-fin.webp","images/weapons/polearm/5star/calamity-queller.webp","images/weapons/polearm/5star/engulfing-lightning.webp","images/weapons/polearm/5star/primordial-jade-winged-spear.webp","images/weapons/polearm/5star/skyward-spine.webp","images/weapons/polearm/5star/staff-of-homa.webp","images/weapons/polearm/5star/staff-of-the-scarlet-sands.webp","images/weapons/polearm/5star/vortex-vanquisher.webp","images/weapons/sword/3star/a03-01.webp","images/weapons/sword/3star/a03-02.webp","images/weapons/sword/3star/a03-03.webp","images/weapons/sword/3star/a03-04.webp","images/weapons/sword/3star/a03-05.webp","images/weapons/sword/3star/a03-06.webp","images/weapons/sword/3star/a03-07.webp","images/weapons/sword/3star/a03-08.webp","images/weapons/sword/3star/a03-09.webp","images/weapons/sword/3star/a03-10.webp","images/weapons/sword/3star/a03-11.webp","images/weapons/sword/3star/a03-12.webp","images/weapons/sword/3star/a03-13.webp","images/weapons/sword/3star/a03-14.webp","images/weapons/sword/3star/a03-15.webp","images/weapons/sword/3star/a03-16.webp","images/weapons/sword/3star/a03-17.webp","images/weapons/sword/3star/a03-18.webp","images/weapons/sword/3star/a03-19.webp","images/weapons/sword/3star/a03-20.webp","images/weapons/sword/3star/a03-21.webp","images/weapons/sword/3star/a03-22.webp","images/weapons/sword/3star/a03-23.webp","images/weapons/sword/3star/a03-24.webp","images/weapons/sword/3star/a03-25.webp","images/weapons/sword/3star/a03-26.webp","images/weapons/sword/3star/a03-27.webp","images/weapons/sword/3star/a03-28.webp","images/weapons/sword/3star/a03-29.webp","images/weapons/sword/3star/a03-30.webp","images/weapons/sword/3star/a03-31.webp","images/weapons/sword/3star/a03-32.webp","images/weapons/sword/3star/a03-33.webp","images/weapons/sword/3star/a03-34.webp","images/weapons/sword/3star/a03-35.webp","images/weapons/sword/3star/a03-36.webp","images/weapons/sword/3star/a03-37.webp","images/weapons/sword/3star/a03-38.webp","images/weapons/sword/3star/a03-39.webp","images/weapons/sword/3star/a03-40.webp","images/weapons/sword/3star/a03-41.webp","images/weapons/sword/3star/a03-42.webp","images/weapons/sword/3star/a03-43.webp","images/weapons/sword/3star/a03-44.webp","images/weapons/sword/3star/a03-45.webp","images/weapons/sword/3star/a03-46.webp","images/weapons/sword/3star/a03-47.webp","images/weapons/sword/3star/a03-48.webp","images/weapons/sword/3star/a03-49.webp","images/weapons/sword/3star/a03-50.webp","images/weapons/sword/3star/cool-steel.webp","images/weapons/sword/3star/harbinger-of-dawn.webp","images/weapons/sword/3star/skyrider-sword.webp","images/weapons/sword/4star/favonius-sword.webp","images/weapons/sword/4star/lion_s-roar.webp","images/weapons/sword/4star/sacrificial-sword.webp","images/weapons/sword/4star/the-alley-flash.webp","images/weapons/sword/4star/the-dockhands-assistant.webp","images/weapons/sword/4star/the-flute.webp","images/weapons/sword/4star/xiphos-moonlight.webp","images/weapons/sword/5star/aquila-favonia.webp","images/weapons/sword/5star/freedom-sworn.webp","images/weapons/sword/5star/haran-geppaku-futsu.webp","images/weapons/sword/5star/key-of-khaj-nisut.webp","images/weapons/sword/5star/light-of-foliar-incision.webp","images/weapons/sword/5star/mistsplitter-reforged.webp","images/weapons/sword/5star/primordial-jade-cutter.webp","images/weapons/sword/5star/skyward-blade.webp","images/weapons/sword/5star/splendor-of-tranquil-waters.webp","images/weapons/sword/5star/summit-shaper.webp","menu-active.png","meta-picture.jpg","placeholder-cdn.webp","robots.txt","safari-pinned-tab.svg","sfx/result-list.ogg","sfx/reveal-3star.ogg","sfx/reveal-4star.ogg","sfx/reveal-5star.ogg","sfx/wish-backsound.ogg","sitemap.xml","videos/3star-single.mp4","videos/4star-multi.mp4","videos/4star-single.mp4","videos/5star-multi.mp4","videos/5star-single.mp4","videos/bg.webm"]),
-	mimeTypes: {".json":"application/json",".png":"image/png",".xml":"application/xml",".ico":"image/vnd.microsoft.icon",".woff":"font/woff",".eot":"application/vnd.ms-fontobject",".svg":"image/svg+xml",".ttf":"font/ttf",".woff2":"font/woff2",".html":"text/html",".css":"text/css",".webp":"image/webp",".jpg":"image/jpeg",".txt":"text/plain",".ogg":"audio/ogg",".mp4":"video/mp4",".webm":"video/webm"},
-	_: {
-		entry: {"file":"internal/immutable/start-6e2b2fa2.js","imports":["internal/immutable/start-6e2b2fa2.js","internal/immutable/chunks/index-c0d078cd.js","internal/immutable/chunks/singletons-67e52e76.js","internal/immutable/chunks/index-0189b6d0.js","internal/immutable/chunks/preload-helper-176e53da.js"],"stylesheets":[],"fonts":[]},
-		nodes: [
-			() => import('../output/server/nodes/0.js'),
-			() => import('../output/server/nodes/1.js')
-		],
-		routes: [
-			
-		],
-		matchers: async () => {
-			
-			return {  };
-		}
-	}
-};
diff --git a/Genshin-Impact-Wish-Simulator/netlify.toml b/Genshin-Impact-Wish-Simulator/netlify.toml
new file mode 100644
index 00000000..f27e7050
--- /dev/null
+++ b/Genshin-Impact-Wish-Simulator/netlify.toml
@@ -0,0 +1,3 @@
+[build]
+  publish = ".vercel/output/static"
+  command = "yarn run build"