diff --git a/404.html b/404.html index c0be7ca..ee555b9 100644 --- a/404.html +++ b/404.html @@ -30,11 +30,11 @@ HalfSweet's Blog - - + + -
跳至主要內容

404

页面不存在

看起来你访问了一个失效的链接

- +
跳至主要內容

404

页面不存在

这里什么也没有

+ diff --git a/about/index.html b/about/index.html index ca8d992..5fab6f4 100644 --- a/about/index.html +++ b/about/index.html @@ -30,11 +30,11 @@ 关于 | HalfSweet's Blog - - + +
跳至主要內容

关于

HalfSweet小于 1 分钟

自我介绍

  • 我是半糖,19岁,事学生
  • 爱好电子,精通(看过)多种单片机使用方法以及编程语言
  • 最喜欢的屏幕是墨水屏
  • 计划学习更多有关ee和cs的内容,并希望今后从事类似的工作

会的东西

编程语言

  • 略懂C/CPP语言

TODO

单片机

  • 基于Arduino平台的AVR系列
  • 基于Arduino/ESP-IDF/Micropython的ESP32系列 (其实是个连idf都不会装的菜鸡)
  • 基于HAL库的STM32系列
  • 8051/80251(特指STC32)
  • CCS的安装与卸载

其它

初次之外半糖略懂一些关于墨水屏的知识,以及能在有详细文档的参考下做出一些有意思的东西(比如说这个博客)。

联系方式

- + diff --git a/article/index.html b/article/index.html index 14ee2d9..7c8407e 100644 --- a/article/index.html +++ b/article/index.html @@ -30,11 +30,12 @@ 文章 | HalfSweet's Blog - - + + -
跳至主要內容
为什么我对第三代郊狼失望

最近第三代郊狼开始内测了,作为一名电子爱好者,自然不能错过这个机会。于是我以原价 368 元的主机,以及 128 元两个智能按钮的价格,购买了一套第三代郊狼。

+
跳至主要內容
对《为什么我对第三代郊狼失望》一文的澄清说明

在上文 为什么我对第三代郊狼失望 一文中,我对于第三代郊狼的硬件部分进行了一些初步分析,因为没有详细的一些资料,因此在一些地方可能存在一些错误。在昨晚(2024-03-19)郊狼作者找到我,与我群群友进行了一番友好的长时间地交流,也解答了我对设计上的一些疑问。在本文中我们会逐步分析前文中提到的问题。

+

HalfSweet大约 5 分钟posts碎碎念郊狼
为什么我对第三代郊狼失望

最近第三代郊狼开始内测了,作为一名电子爱好者,自然不能错过这个机会。于是我以原价 368 元的主机,以及 128 元两个智能按钮的价格,购买了一套第三代郊狼。


HalfSweet大约 8 分钟posts碎碎念郊狼
嵌入式中的 CI/CD

对于传统的嵌入式开发来说,我们一般常用的IDE都是诸如Keil、IAR等。这些IDE在方便了我们的开发的同时,也存在很多问题,例如在之前Keil-MDK5是不能跨平台的,仅限在Windows平台运行,并且它的授权也是一个老大难的问题。这样我们在团队协作的时候往往就会遇到很多问题,无法像是互联网的开发那样有一套完整的CI/CD流程。但是MDK6的更新解决了这个问题,第一它是跨平台的,这样在Windows、Linux以及MacOS上都能运行;并且也支持了很多命令行的操作,避免了繁琐的GUI操作,这样也更有利于自动化脚本的编写。


HalfSweet大约 5 分钟单片机Air001合宙CI/CD
使用 Clion 来进行 Air32 的开发

在上几篇文章中,我们将 HAL 库移植给了 Air32,但是我们的开发环境还是使用的 Keil,这样就会导致一些问题,比如 Keil 的代码提示不够友好,而且 Keil 的代码补全也不够完善,因此我们可以使用一个更好的开发环境,比如 Clion。


HalfSweet大约 3 分钟单片机Air32合宙Clion
Air32 的 HAL 改造——适配 MCO

上篇文章 中,我们把 HAL 库移植给了 Air32,那现在让我们尝试添加一些 HAL 库特有的功能吧,比如这篇文章中描述的MCO

@@ -44,8 +45,7 @@

HalfSweet大约 3 分钟单片机Air001合宙日志
不服来跑个分?将 CoreMark 移植到 STC 上试试

最近维护的 Air001 准备上线了,为了衬托出其强大的性价比,因此我想来做点缺德的事,让我们来和同样以高打性价比的 STC 系列单片机来对比下 CoreMark 的跑分吧,本文将会详细介绍移植过程以及跑分结果。测试的 MCU 为降龙棍 STC32G12K128打狗棒 STC8H8K64U

通用,本文同样适用于 Arm-Cortex M 架构的 MCU。


HalfSweet大约 5 分钟单片机STC32STC8嵌入式CoreMark
在嵌入式设备上使用fmtlib

众所周知,在c++20以上的标准已经支持了std::format进行格式化输出,不过显而易见,嵌入式领域想要得到支持显然遥遥无期。但是我们已经厌倦了使用sprintf等方式来格式化字符串,c++的流特性又显得不够优雅,怎么才能用上类似于Python中format这样的方式来格式化并输出想要的字符串呢。

-

HalfSweet大约 5 分钟postsfmtlib嵌入式ESP8266ESP32ArduinoPlatformIOESP-IDF
基于conda进行手动配置novelAI

最近大家应该都玩过novelAI了,出来的图片质量都非常棒,但是b站大佬给的配置只是打包了的bat文件,但是这显然不符合我们的折腾精神,于是我们来尝试使用conda来进行纯手工配置。

-

HalfSweet大约 6 分钟AI人工智能novelAIconda
- +

HalfSweet大约 5 分钟postsfmtlib嵌入式ESP8266ESP32ArduinoPlatformIOESP-IDF
+ diff --git a/assets/404.html-Bdx5ZHx4.js b/assets/404.html-RzL9zop_.js similarity index 71% rename from assets/404.html-Bdx5ZHx4.js rename to assets/404.html-RzL9zop_.js index 122d823..395dad6 100644 --- a/assets/404.html-Bdx5ZHx4.js +++ b/assets/404.html-RzL9zop_.js @@ -1 +1 @@ -import{_ as e}from"./plugin-vue_export-helper-DlAUqK2U.js";import{o as t,c}from"./app-R-EX9bwC.js";const o={};function r(_,n){return t(),c("div")}const f=e(o,[["render",r],["__file","404.html.vue"]]);export{f as default}; +import{_ as e}from"./plugin-vue_export-helper-DlAUqK2U.js";import{o as t,c}from"./app-C3DA_ydV.js";const o={};function r(_,n){return t(),c("div")}const f=e(o,[["render",r],["__file","404.html.vue"]]);export{f as default}; diff --git a/assets/app-R-EX9bwC.js b/assets/app-C3DA_ydV.js similarity index 53% rename from assets/app-R-EX9bwC.js rename to assets/app-C3DA_ydV.js index 87a3ab5..21c6303 100644 --- a/assets/app-R-EX9bwC.js +++ b/assets/app-C3DA_ydV.js @@ -2,44 +2,44 @@ * @vue/shared v3.4.21 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/function Ro(e,t){const n=new Set(e.split(","));return t?r=>n.has(r.toLowerCase()):r=>n.has(r)}const Ae={},xn=[],ct=()=>{},Nf=()=>!1,_r=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Mo=e=>e.startsWith("onUpdate:"),Me=Object.assign,Do=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},zf=Object.prototype.hasOwnProperty,he=(e,t)=>zf.call(e,t),Z=Array.isArray,Ln=e=>yl(e)==="[object Map]",ci=e=>yl(e)==="[object Set]",le=e=>typeof e=="function",ae=e=>typeof e=="string",Gn=e=>typeof e=="symbol",Se=e=>e!==null&&typeof e=="object",ui=e=>(Se(e)||le(e))&&le(e.then)&&le(e.catch),fi=Object.prototype.toString,yl=e=>fi.call(e),jf=e=>yl(e).slice(8,-1),di=e=>yl(e)==="[object Object]",Fo=e=>ae(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,In=Ro(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),bl=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Uf=/-(\w)/g,lt=bl(e=>e.replace(Uf,(t,n)=>n?n.toUpperCase():"")),qf=/\B([A-Z])/g,en=bl(e=>e.replace(qf,"-$1").toLowerCase()),Er=bl(e=>e.charAt(0).toUpperCase()+e.slice(1)),Dl=bl(e=>e?`on${Er(e)}`:""),St=(e,t)=>!Object.is(e,t),tl=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},co=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Gf=e=>{const t=ae(e)?Number(e):NaN;return isNaN(t)?e:t};let Da;const pi=()=>Da||(Da=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Ho(e){if(Z(e)){const t={};for(let n=0;n{if(n){const r=n.split(Kf);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Vo(e){let t="";if(ae(e))t=e;else if(Z(e))for(let n=0;nae(e)?e:e==null?"":Z(e)||Se(e)&&(e.toString===fi||!le(e.toString))?JSON.stringify(e,hi,2):String(e),hi=(e,t)=>t&&t.__v_isRef?hi(e,t.value):Ln(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,l],o)=>(n[Fl(r,o)+" =>"]=l,n),{})}:ci(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Fl(n))}:Gn(t)?Fl(t):Se(t)&&!Z(t)&&!di(t)?String(t):t,Fl=(e,t="")=>{var n;return Gn(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +**/function $o(e,t){const n=new Set(e.split(","));return t?r=>n.has(r.toLowerCase()):r=>n.has(r)}const Ae={},Ln=[],ct=()=>{},Nf=()=>!1,_r=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Mo=e=>e.startsWith("onUpdate:"),Me=Object.assign,Do=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},zf=Object.prototype.hasOwnProperty,he=(e,t)=>zf.call(e,t),Z=Array.isArray,xn=e=>yl(e)==="[object Map]",ci=e=>yl(e)==="[object Set]",le=e=>typeof e=="function",ae=e=>typeof e=="string",Gn=e=>typeof e=="symbol",Se=e=>e!==null&&typeof e=="object",ui=e=>(Se(e)||le(e))&&le(e.then)&&le(e.catch),fi=Object.prototype.toString,yl=e=>fi.call(e),jf=e=>yl(e).slice(8,-1),di=e=>yl(e)==="[object Object]",Fo=e=>ae(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,In=$o(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),bl=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Uf=/-(\w)/g,lt=bl(e=>e.replace(Uf,(t,n)=>n?n.toUpperCase():"")),qf=/\B([A-Z])/g,en=bl(e=>e.replace(qf,"-$1").toLowerCase()),Er=bl(e=>e.charAt(0).toUpperCase()+e.slice(1)),Dl=bl(e=>e?`on${Er(e)}`:""),St=(e,t)=>!Object.is(e,t),tl=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},co=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Gf=e=>{const t=ae(e)?Number(e):NaN;return isNaN(t)?e:t};let Da;const pi=()=>Da||(Da=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Ho(e){if(Z(e)){const t={};for(let n=0;n{if(n){const r=n.split(Kf);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Vo(e){let t="";if(ae(e))t=e;else if(Z(e))for(let n=0;nae(e)?e:e==null?"":Z(e)||Se(e)&&(e.toString===fi||!le(e.toString))?JSON.stringify(e,hi,2):String(e),hi=(e,t)=>t&&t.__v_isRef?hi(e,t.value):xn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,l],o)=>(n[Fl(r,o)+" =>"]=l,n),{})}:ci(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>Fl(n))}:Gn(t)?Fl(t):Se(t)&&!Z(t)&&!di(t)?String(t):t,Fl=(e,t="")=>{var n;return Gn(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** * @vue/reactivity v3.4.21 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/let tt;class Zf{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=tt,!t&&tt&&(this.index=(tt.scopes||(tt.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=tt;try{return tt=this,t()}finally{tt=n}}}on(){tt=this}off(){tt=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),pn()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Yt,n=cn;try{return Yt=!0,cn=this,this._runnings++,Fa(this),this.fn()}finally{Ha(this),this._runnings--,cn=n,Yt=t}}stop(){var t;this.active&&(Fa(this),Ha(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function nd(e){return e.value}function Fa(e){e._trackId++,e._depsLength=0}function Ha(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t{const n=new Map;return n.cleanup=e,n.computed=t,n},ol=new WeakMap,un=Symbol(""),po=Symbol("");function Xe(e,t,n){if(Yt&&cn){let r=ol.get(e);r||ol.set(e,r=new Map);let l=r.get(n);l||r.set(n,l=Ei(()=>r.delete(n))),bi(cn,l)}}function $t(e,t,n,r,l,o){const a=ol.get(e);if(!a)return;let i=[];if(t==="clear")i=[...a.values()];else if(n==="length"&&Z(e)){const c=Number(r);a.forEach((u,f)=>{(f==="length"||!Gn(f)&&f>=c)&&i.push(u)})}else switch(n!==void 0&&i.push(a.get(n)),t){case"add":Z(e)?Fo(n)&&i.push(a.get("length")):(i.push(a.get(un)),Ln(e)&&i.push(a.get(po)));break;case"delete":Z(e)||(i.push(a.get(un)),Ln(e)&&i.push(a.get(po)));break;case"set":Ln(e)&&i.push(a.get(un));break}zo();for(const c of i)c&&_i(c,4);jo()}function rd(e,t){var n;return(n=ol.get(e))==null?void 0:n.get(t)}const ld=Ro("__proto__,__v_isRef,__isVue"),wi=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Gn)),Va=od();function od(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=fe(this);for(let o=0,a=this.length;o{e[t]=function(...n){dn(),zo();const r=fe(this)[t].apply(this,n);return jo(),pn(),r}}),e}function ad(e){const t=fe(this);return Xe(t,"has",e),t.hasOwnProperty(e)}class Ai{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){const l=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!l;if(n==="__v_isReadonly")return l;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(l?o?bd:ki:o?Ti:Si).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const a=Z(t);if(!l){if(a&&he(Va,n))return Reflect.get(Va,n,r);if(n==="hasOwnProperty")return ad}const i=Reflect.get(t,n,r);return(Gn(n)?wi.has(n):ld(n))||(l||Xe(t,"get",n),o)?i:Ne(i)?a&&Fo(n)?i:i.value:Se(i)?l?vn(i):wr(i):i}}class Ci extends Ai{constructor(t=!1){super(!1,t)}set(t,n,r,l){let o=t[n];if(!this._isShallow){const c=Fn(o);if(!al(r)&&!Fn(r)&&(o=fe(o),r=fe(r)),!Z(t)&&Ne(o)&&!Ne(r))return c?!1:(o.value=r,!0)}const a=Z(t)&&Fo(n)?Number(n)e,_l=e=>Reflect.getPrototypeOf(e);function Hr(e,t,n=!1,r=!1){e=e.__v_raw;const l=fe(e),o=fe(t);n||(St(t,o)&&Xe(l,"get",t),Xe(l,"get",o));const{has:a}=_l(l),i=r?Uo:n?Wo:fr;if(a.call(l,t))return i(e.get(t));if(a.call(l,o))return i(e.get(o));e!==l&&e.get(t)}function Vr(e,t=!1){const n=this.__v_raw,r=fe(n),l=fe(e);return t||(St(e,l)&&Xe(r,"has",e),Xe(r,"has",l)),e===l?n.has(e):n.has(e)||n.has(l)}function Nr(e,t=!1){return e=e.__v_raw,!t&&Xe(fe(e),"iterate",un),Reflect.get(e,"size",e)}function Na(e){e=fe(e);const t=fe(this);return _l(t).has.call(t,e)||(t.add(e),$t(t,"add",e,e)),this}function za(e,t){t=fe(t);const n=fe(this),{has:r,get:l}=_l(n);let o=r.call(n,e);o||(e=fe(e),o=r.call(n,e));const a=l.call(n,e);return n.set(e,t),o?St(t,a)&&$t(n,"set",e,t):$t(n,"add",e,t),this}function ja(e){const t=fe(this),{has:n,get:r}=_l(t);let l=n.call(t,e);l||(e=fe(e),l=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return l&&$t(t,"delete",e,void 0),o}function Ua(){const e=fe(this),t=e.size!==0,n=e.clear();return t&&$t(e,"clear",void 0,void 0),n}function zr(e,t){return function(r,l){const o=this,a=o.__v_raw,i=fe(a),c=t?Uo:e?Wo:fr;return!e&&Xe(i,"iterate",un),a.forEach((u,f)=>r.call(l,c(u),c(f),o))}}function jr(e,t,n){return function(...r){const l=this.__v_raw,o=fe(l),a=Ln(o),i=e==="entries"||e===Symbol.iterator&&a,c=e==="keys"&&a,u=l[e](...r),f=n?Uo:t?Wo:fr;return!t&&Xe(o,"iterate",c?po:un),{next(){const{value:d,done:p}=u.next();return p?{value:d,done:p}:{value:i?[f(d[0]),f(d[1])]:f(d),done:p}},[Symbol.iterator](){return this}}}}function Ht(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function fd(){const e={get(o){return Hr(this,o)},get size(){return Nr(this)},has:Vr,add:Na,set:za,delete:ja,clear:Ua,forEach:zr(!1,!1)},t={get(o){return Hr(this,o,!1,!0)},get size(){return Nr(this)},has:Vr,add:Na,set:za,delete:ja,clear:Ua,forEach:zr(!1,!0)},n={get(o){return Hr(this,o,!0)},get size(){return Nr(this,!0)},has(o){return Vr.call(this,o,!0)},add:Ht("add"),set:Ht("set"),delete:Ht("delete"),clear:Ht("clear"),forEach:zr(!0,!1)},r={get(o){return Hr(this,o,!0,!0)},get size(){return Nr(this,!0)},has(o){return Vr.call(this,o,!0)},add:Ht("add"),set:Ht("set"),delete:Ht("delete"),clear:Ht("clear"),forEach:zr(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=jr(o,!1,!1),n[o]=jr(o,!0,!1),t[o]=jr(o,!1,!0),r[o]=jr(o,!0,!0)}),[e,n,t,r]}const[dd,pd,vd,hd]=fd();function qo(e,t){const n=t?e?hd:vd:e?pd:dd;return(r,l,o)=>l==="__v_isReactive"?!e:l==="__v_isReadonly"?e:l==="__v_raw"?r:Reflect.get(he(n,l)&&l in r?n:r,l,o)}const md={get:qo(!1,!1)},gd={get:qo(!1,!0)},yd={get:qo(!0,!1)},Si=new WeakMap,Ti=new WeakMap,ki=new WeakMap,bd=new WeakMap;function _d(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Ed(e){return e.__v_skip||!Object.isExtensible(e)?0:_d(jf(e))}function wr(e){return Fn(e)?e:Go(e,!1,id,md,Si)}function xi(e){return Go(e,!1,ud,gd,Ti)}function vn(e){return Go(e,!0,cd,yd,ki)}function Go(e,t,n,r,l){if(!Se(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=l.get(e);if(o)return o;const a=Ed(e);if(a===0)return e;const i=new Proxy(e,a===2?r:n);return l.set(e,i),i}function Pn(e){return Fn(e)?Pn(e.__v_raw):!!(e&&e.__v_isReactive)}function Fn(e){return!!(e&&e.__v_isReadonly)}function al(e){return!!(e&&e.__v_isShallow)}function Li(e){return Pn(e)||Fn(e)}function fe(e){const t=e&&e.__v_raw;return t?fe(t):e}function Ii(e){return Object.isExtensible(e)&&ll(e,"__v_skip",!0),e}const fr=e=>Se(e)?wr(e):e,Wo=e=>Se(e)?vn(e):e;class Pi{constructor(t,n,r,l){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new No(()=>t(this._value),()=>nr(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!l,this.__v_isReadonly=r}get value(){const t=fe(this);return(!t._cacheable||t.effect.dirty)&&St(t._value,t._value=t.effect.run())&&nr(t,4),Ko(t),t.effect._dirtyLevel>=2&&nr(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function wd(e,t,n=!1){let r,l;const o=le(e);return o?(r=e,l=ct):(r=e.get,l=e.set),new Pi(r,l,o||!l,n)}function Ko(e){var t;Yt&&cn&&(e=fe(e),bi(cn,(t=e.dep)!=null?t:e.dep=Ei(()=>e.dep=void 0,e instanceof Pi?e:void 0)))}function nr(e,t=4,n){e=fe(e);const r=e.dep;r&&_i(r,t)}function Ne(e){return!!(e&&e.__v_isRef===!0)}function U(e){return Bi(e,!1)}function Ce(e){return Bi(e,!0)}function Bi(e,t){return Ne(e)?e:new Ad(e,t)}class Ad{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:fe(t),this._value=n?t:fr(t)}get value(){return Ko(this),this._value}set value(t){const n=this.__v_isShallow||al(t)||Fn(t);t=n?t:fe(t),St(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:fr(t),nr(this,4))}}function fn(e){return Ne(e)?e.value:e}const Cd={get:(e,t,n)=>fn(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const l=e[t];return Ne(l)&&!Ne(n)?(l.value=n,!0):Reflect.set(e,t,n,r)}};function Oi(e){return Pn(e)?e:new Proxy(e,Cd)}class Sd{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>Ko(this),()=>nr(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function Yo(e){return new Sd(e)}class Td{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return rd(fe(this._object),this._key)}}class kd{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Wn(e,t,n){return Ne(e)?e:le(e)?new kd(e):Se(e)&&arguments.length>1?xd(e,t,n):U(e)}function xd(e,t,n){const r=e[t];return Ne(r)?r:new Td(e,t,n)}/** +**/let tt;class Zf{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=tt,!t&&tt&&(this.index=(tt.scopes||(tt.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=tt;try{return tt=this,t()}finally{tt=n}}}on(){tt=this}off(){tt=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),pn()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Yt,n=cn;try{return Yt=!0,cn=this,this._runnings++,Fa(this),this.fn()}finally{Ha(this),this._runnings--,cn=n,Yt=t}}stop(){var t;this.active&&(Fa(this),Ha(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function nd(e){return e.value}function Fa(e){e._trackId++,e._depsLength=0}function Ha(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t{const n=new Map;return n.cleanup=e,n.computed=t,n},ol=new WeakMap,un=Symbol(""),po=Symbol("");function Xe(e,t,n){if(Yt&&cn){let r=ol.get(e);r||ol.set(e,r=new Map);let l=r.get(n);l||r.set(n,l=Ei(()=>r.delete(n))),bi(cn,l)}}function Rt(e,t,n,r,l,o){const a=ol.get(e);if(!a)return;let i=[];if(t==="clear")i=[...a.values()];else if(n==="length"&&Z(e)){const c=Number(r);a.forEach((u,f)=>{(f==="length"||!Gn(f)&&f>=c)&&i.push(u)})}else switch(n!==void 0&&i.push(a.get(n)),t){case"add":Z(e)?Fo(n)&&i.push(a.get("length")):(i.push(a.get(un)),xn(e)&&i.push(a.get(po)));break;case"delete":Z(e)||(i.push(a.get(un)),xn(e)&&i.push(a.get(po)));break;case"set":xn(e)&&i.push(a.get(un));break}zo();for(const c of i)c&&_i(c,4);jo()}function rd(e,t){var n;return(n=ol.get(e))==null?void 0:n.get(t)}const ld=$o("__proto__,__v_isRef,__isVue"),wi=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Gn)),Va=od();function od(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=fe(this);for(let o=0,a=this.length;o{e[t]=function(...n){dn(),zo();const r=fe(this)[t].apply(this,n);return jo(),pn(),r}}),e}function ad(e){const t=fe(this);return Xe(t,"has",e),t.hasOwnProperty(e)}class Ai{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){const l=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!l;if(n==="__v_isReadonly")return l;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(l?o?bd:ki:o?Ti:Si).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const a=Z(t);if(!l){if(a&&he(Va,n))return Reflect.get(Va,n,r);if(n==="hasOwnProperty")return ad}const i=Reflect.get(t,n,r);return(Gn(n)?wi.has(n):ld(n))||(l||Xe(t,"get",n),o)?i:Ne(i)?a&&Fo(n)?i:i.value:Se(i)?l?vn(i):wr(i):i}}class Ci extends Ai{constructor(t=!1){super(!1,t)}set(t,n,r,l){let o=t[n];if(!this._isShallow){const c=Fn(o);if(!al(r)&&!Fn(r)&&(o=fe(o),r=fe(r)),!Z(t)&&Ne(o)&&!Ne(r))return c?!1:(o.value=r,!0)}const a=Z(t)&&Fo(n)?Number(n)e,_l=e=>Reflect.getPrototypeOf(e);function Hr(e,t,n=!1,r=!1){e=e.__v_raw;const l=fe(e),o=fe(t);n||(St(t,o)&&Xe(l,"get",t),Xe(l,"get",o));const{has:a}=_l(l),i=r?Uo:n?Wo:fr;if(a.call(l,t))return i(e.get(t));if(a.call(l,o))return i(e.get(o));e!==l&&e.get(t)}function Vr(e,t=!1){const n=this.__v_raw,r=fe(n),l=fe(e);return t||(St(e,l)&&Xe(r,"has",e),Xe(r,"has",l)),e===l?n.has(e):n.has(e)||n.has(l)}function Nr(e,t=!1){return e=e.__v_raw,!t&&Xe(fe(e),"iterate",un),Reflect.get(e,"size",e)}function Na(e){e=fe(e);const t=fe(this);return _l(t).has.call(t,e)||(t.add(e),Rt(t,"add",e,e)),this}function za(e,t){t=fe(t);const n=fe(this),{has:r,get:l}=_l(n);let o=r.call(n,e);o||(e=fe(e),o=r.call(n,e));const a=l.call(n,e);return n.set(e,t),o?St(t,a)&&Rt(n,"set",e,t):Rt(n,"add",e,t),this}function ja(e){const t=fe(this),{has:n,get:r}=_l(t);let l=n.call(t,e);l||(e=fe(e),l=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return l&&Rt(t,"delete",e,void 0),o}function Ua(){const e=fe(this),t=e.size!==0,n=e.clear();return t&&Rt(e,"clear",void 0,void 0),n}function zr(e,t){return function(r,l){const o=this,a=o.__v_raw,i=fe(a),c=t?Uo:e?Wo:fr;return!e&&Xe(i,"iterate",un),a.forEach((u,f)=>r.call(l,c(u),c(f),o))}}function jr(e,t,n){return function(...r){const l=this.__v_raw,o=fe(l),a=xn(o),i=e==="entries"||e===Symbol.iterator&&a,c=e==="keys"&&a,u=l[e](...r),f=n?Uo:t?Wo:fr;return!t&&Xe(o,"iterate",c?po:un),{next(){const{value:d,done:p}=u.next();return p?{value:d,done:p}:{value:i?[f(d[0]),f(d[1])]:f(d),done:p}},[Symbol.iterator](){return this}}}}function Ht(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function fd(){const e={get(o){return Hr(this,o)},get size(){return Nr(this)},has:Vr,add:Na,set:za,delete:ja,clear:Ua,forEach:zr(!1,!1)},t={get(o){return Hr(this,o,!1,!0)},get size(){return Nr(this)},has:Vr,add:Na,set:za,delete:ja,clear:Ua,forEach:zr(!1,!0)},n={get(o){return Hr(this,o,!0)},get size(){return Nr(this,!0)},has(o){return Vr.call(this,o,!0)},add:Ht("add"),set:Ht("set"),delete:Ht("delete"),clear:Ht("clear"),forEach:zr(!0,!1)},r={get(o){return Hr(this,o,!0,!0)},get size(){return Nr(this,!0)},has(o){return Vr.call(this,o,!0)},add:Ht("add"),set:Ht("set"),delete:Ht("delete"),clear:Ht("clear"),forEach:zr(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=jr(o,!1,!1),n[o]=jr(o,!0,!1),t[o]=jr(o,!1,!0),r[o]=jr(o,!0,!0)}),[e,n,t,r]}const[dd,pd,vd,hd]=fd();function qo(e,t){const n=t?e?hd:vd:e?pd:dd;return(r,l,o)=>l==="__v_isReactive"?!e:l==="__v_isReadonly"?e:l==="__v_raw"?r:Reflect.get(he(n,l)&&l in r?n:r,l,o)}const md={get:qo(!1,!1)},gd={get:qo(!1,!0)},yd={get:qo(!0,!1)},Si=new WeakMap,Ti=new WeakMap,ki=new WeakMap,bd=new WeakMap;function _d(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Ed(e){return e.__v_skip||!Object.isExtensible(e)?0:_d(jf(e))}function wr(e){return Fn(e)?e:Go(e,!1,id,md,Si)}function Li(e){return Go(e,!1,ud,gd,Ti)}function vn(e){return Go(e,!0,cd,yd,ki)}function Go(e,t,n,r,l){if(!Se(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=l.get(e);if(o)return o;const a=Ed(e);if(a===0)return e;const i=new Proxy(e,a===2?r:n);return l.set(e,i),i}function Bn(e){return Fn(e)?Bn(e.__v_raw):!!(e&&e.__v_isReactive)}function Fn(e){return!!(e&&e.__v_isReadonly)}function al(e){return!!(e&&e.__v_isShallow)}function xi(e){return Bn(e)||Fn(e)}function fe(e){const t=e&&e.__v_raw;return t?fe(t):e}function Ii(e){return Object.isExtensible(e)&&ll(e,"__v_skip",!0),e}const fr=e=>Se(e)?wr(e):e,Wo=e=>Se(e)?vn(e):e;class Bi{constructor(t,n,r,l){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new No(()=>t(this._value),()=>nr(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!l,this.__v_isReadonly=r}get value(){const t=fe(this);return(!t._cacheable||t.effect.dirty)&&St(t._value,t._value=t.effect.run())&&nr(t,4),Ko(t),t.effect._dirtyLevel>=2&&nr(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function wd(e,t,n=!1){let r,l;const o=le(e);return o?(r=e,l=ct):(r=e.get,l=e.set),new Bi(r,l,o||!l,n)}function Ko(e){var t;Yt&&cn&&(e=fe(e),bi(cn,(t=e.dep)!=null?t:e.dep=Ei(()=>e.dep=void 0,e instanceof Bi?e:void 0)))}function nr(e,t=4,n){e=fe(e);const r=e.dep;r&&_i(r,t)}function Ne(e){return!!(e&&e.__v_isRef===!0)}function U(e){return Pi(e,!1)}function Ce(e){return Pi(e,!0)}function Pi(e,t){return Ne(e)?e:new Ad(e,t)}class Ad{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:fe(t),this._value=n?t:fr(t)}get value(){return Ko(this),this._value}set value(t){const n=this.__v_isShallow||al(t)||Fn(t);t=n?t:fe(t),St(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:fr(t),nr(this,4))}}function fn(e){return Ne(e)?e.value:e}const Cd={get:(e,t,n)=>fn(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const l=e[t];return Ne(l)&&!Ne(n)?(l.value=n,!0):Reflect.set(e,t,n,r)}};function Oi(e){return Bn(e)?e:new Proxy(e,Cd)}class Sd{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:r}=t(()=>Ko(this),()=>nr(this));this._get=n,this._set=r}get value(){return this._get()}set value(t){this._set(t)}}function Yo(e){return new Sd(e)}class Td{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return rd(fe(this._object),this._key)}}class kd{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Wn(e,t,n){return Ne(e)?e:le(e)?new kd(e):Se(e)&&arguments.length>1?Ld(e,t,n):U(e)}function Ld(e,t,n){const r=e[t];return Ne(r)?r:new Td(e,t,n)}/** * @vue/runtime-core v3.4.21 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/function Jt(e,t,n,r){try{return r?e(...r):e()}catch(l){Ar(l,t,n)}}function ut(e,t,n,r){if(le(e)){const o=Jt(e,t,n,r);return o&&ui(o)&&o.catch(a=>{Ar(a,t,n)}),o}const l=[];for(let o=0;o>>1,l=ze[r],o=pr(l);oCt&&ze.splice(t,1)}function Bd(e){Z(e)?Bn.push(...e):(!Ut||!Ut.includes(e,e.allowRecurse?ln+1:ln))&&Bn.push(e),Ri()}function qa(e,t,n=dr?Ct+1:0){for(;npr(n)-pr(r));if(Bn.length=0,Ut){Ut.push(...t);return}for(Ut=t,ln=0;lne.id==null?1/0:e.id,Od=(e,t)=>{const n=pr(e)-pr(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Mi(e){vo=!1,dr=!0,ze.sort(Od);try{for(Ct=0;Ctae(v)?v.trim():v)),d&&(l=n.map(co))}let i,c=r[i=Dl(t)]||r[i=Dl(lt(t))];!c&&o&&(c=r[i=Dl(en(t))]),c&&ut(c,e,6,l);const u=r[i+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[i])return;e.emitted[i]=!0,ut(u,e,6,l)}}function Di(e,t,n=!1){const r=t.emitsCache,l=r.get(e);if(l!==void 0)return l;const o=e.emits;let a={},i=!1;if(!le(e)){const c=u=>{const f=Di(u,t,!0);f&&(i=!0,Me(a,f))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!i?(Se(e)&&r.set(e,null),null):(Z(o)?o.forEach(c=>a[c]=null):Me(a,o),Se(e)&&r.set(e,a),a)}function wl(e,t){return!e||!_r(t)?!1:(t=t.slice(2).replace(/Once$/,""),he(e,t[0].toLowerCase()+t.slice(1))||he(e,en(t))||he(e,t))}let De=null,Al=null;function il(e){const t=De;return De=e,Al=e&&e.type.__scopeId||null,t}function n6(e){Al=e}function r6(){Al=null}function Rd(e,t=De,n){if(!t||e._n)return e;const r=(...l)=>{r._d&&rs(-1);const o=il(t);let a;try{a=e(...l)}finally{il(o),r._d&&rs(1)}return a};return r._n=!0,r._c=!0,r._d=!0,r}function Hl(e){const{type:t,vnode:n,proxy:r,withProxy:l,props:o,propsOptions:[a],slots:i,attrs:c,emit:u,render:f,renderCache:d,data:p,setupState:v,ctx:g,inheritAttrs:E}=e;let w,b;const S=il(e);try{if(n.shapeFlag&4){const T=l||r,D=T;w=vt(f.call(D,T,d,o,v,p,g)),b=c}else{const T=t;w=vt(T.length>1?T(o,{attrs:c,slots:i,emit:u}):T(o,null)),b=t.props?c:Md(c)}}catch(T){ar.length=0,Ar(T,e,1),w=Be(rt)}let y=w;if(b&&E!==!1){const T=Object.keys(b),{shapeFlag:D}=y;T.length&&D&7&&(a&&T.some(Mo)&&(b=Dd(b,a)),y=Qt(y,b))}return n.dirs&&(y=Qt(y),y.dirs=y.dirs?y.dirs.concat(n.dirs):n.dirs),n.transition&&(y.transition=n.transition),w=y,il(S),w}const Md=e=>{let t;for(const n in e)(n==="class"||n==="style"||_r(n))&&((t||(t={}))[n]=e[n]);return t},Dd=(e,t)=>{const n={};for(const r in e)(!Mo(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Fd(e,t,n){const{props:r,children:l,component:o}=e,{props:a,children:i,patchFlag:c}=t,u=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?Ga(r,a,u):!!a;if(c&8){const f=t.dynamicProps;for(let d=0;de.__isSuspense;function Hi(e,t){t&&t.pendingBranch?Z(e)?t.effects.push(...e):t.effects.push(e):Bd(e)}const jd=Symbol.for("v-scx"),Ud=()=>se(jd);function Vi(e,t){return Cl(e,null,t)}function qd(e,t){return Cl(e,null,{flush:"sync"})}const Ur={};function de(e,t,n){return Cl(e,t,n)}function Cl(e,t,{immediate:n,deep:r,flush:l,once:o,onTrack:a,onTrigger:i}=Ae){if(t&&o){const C=t;t=(...W)=>{C(...W),D()}}const c=Ve,u=C=>r===!0?C:an(C,r===!1?1:void 0);let f,d=!1,p=!1;if(Ne(e)?(f=()=>e.value,d=al(e)):Pn(e)?(f=()=>u(e),d=!0):Z(e)?(p=!0,d=e.some(C=>Pn(C)||al(C)),f=()=>e.map(C=>{if(Ne(C))return C.value;if(Pn(C))return u(C);if(le(C))return Jt(C,c,2)})):le(e)?t?f=()=>Jt(e,c,2):f=()=>(v&&v(),ut(e,c,3,[g])):f=ct,t&&r){const C=f;f=()=>an(C())}let v,g=C=>{v=y.onStop=()=>{Jt(C,c,4),v=y.onStop=void 0}},E;if(Tr)if(g=ct,t?n&&ut(t,c,3,[f(),p?[]:void 0,g]):f(),l==="sync"){const C=Ud();E=C.__watcherHandles||(C.__watcherHandles=[])}else return ct;let w=p?new Array(e.length).fill(Ur):Ur;const b=()=>{if(!(!y.active||!y.dirty))if(t){const C=y.run();(r||d||(p?C.some((W,H)=>St(W,w[H])):St(C,w)))&&(v&&v(),ut(t,c,3,[C,w===Ur?void 0:p&&w[0]===Ur?[]:w,g]),w=C)}else y.run()};b.allowRecurse=!!t;let S;l==="sync"?S=b:l==="post"?S=()=>Ye(b,c&&c.suspense):(b.pre=!0,c&&(b.id=c.uid),S=()=>El(b));const y=new No(f,ct,S),T=mi(),D=()=>{y.stop(),T&&Do(T.effects,y)};return t?n?b():w=y.run():l==="post"?Ye(y.run.bind(y),c&&c.suspense):y.run(),E&&E.push(D),D}function Gd(e,t,n){const r=this.proxy,l=ae(e)?e.includes(".")?Ni(r,e):()=>r[e]:e.bind(r,r);let o;le(t)?o=t:(o=t.handler,n=t);const a=Sr(this),i=Cl(l,o.bind(r),n);return a(),i}function Ni(e,t){const n=t.split(".");return()=>{let r=e;for(let l=0;l0){if(n>=t)return e;n++}if(r=r||new Set,r.has(e))return e;if(r.add(e),Ne(e))an(e.value,t,n,r);else if(Z(e))for(let l=0;l{an(l,t,n,r)});else if(di(e))for(const l in e)an(e[l],t,n,r);return e}function l6(e,t){if(De===null)return e;const n=kl(De)||De.proxy,r=e.dirs||(e.dirs=[]);for(let l=0;l{e.isMounted=!0}),Xo(()=>{e.isUnmounting=!0}),e}const at=[Function,Array],ji={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:at,onEnter:at,onAfterEnter:at,onEnterCancelled:at,onBeforeLeave:at,onLeave:at,onAfterLeave:at,onLeaveCancelled:at,onBeforeAppear:at,onAppear:at,onAfterAppear:at,onAppearCancelled:at},Wd={name:"BaseTransition",props:ji,setup(e,{slots:t}){const n=mn(),r=zi();return()=>{const l=t.default&&Qo(t.default(),!0);if(!l||!l.length)return;let o=l[0];if(l.length>1){for(const p of l)if(p.type!==rt){o=p;break}}const a=fe(e),{mode:i}=a;if(r.isLeaving)return Vl(o);const c=Ka(o);if(!c)return Vl(o);const u=vr(c,a,r,n);hr(c,u);const f=n.subTree,d=f&&Ka(f);if(d&&d.type!==rt&&!on(c,d)){const p=vr(d,a,r,n);if(hr(d,p),i==="out-in")return r.isLeaving=!0,p.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},Vl(o);i==="in-out"&&c.type!==rt&&(p.delayLeave=(v,g,E)=>{const w=Ui(r,d);w[String(d.key)]=d,v[qt]=()=>{g(),v[qt]=void 0,delete u.delayedLeave},u.delayedLeave=E})}return o}}},Kd=Wd;function Ui(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function vr(e,t,n,r){const{appear:l,mode:o,persisted:a=!1,onBeforeEnter:i,onEnter:c,onAfterEnter:u,onEnterCancelled:f,onBeforeLeave:d,onLeave:p,onAfterLeave:v,onLeaveCancelled:g,onBeforeAppear:E,onAppear:w,onAfterAppear:b,onAppearCancelled:S}=t,y=String(e.key),T=Ui(n,e),D=(H,K)=>{H&&ut(H,r,9,K)},C=(H,K)=>{const B=K[1];D(H,K),Z(H)?H.every(q=>q.length<=1)&&B():H.length<=1&&B()},W={mode:o,persisted:a,beforeEnter(H){let K=i;if(!n.isMounted)if(l)K=E||i;else return;H[qt]&&H[qt](!0);const B=T[y];B&&on(e,B)&&B.el[qt]&&B.el[qt](),D(K,[H])},enter(H){let K=c,B=u,q=f;if(!n.isMounted)if(l)K=w||c,B=b||u,q=S||f;else return;let $=!1;const te=H[qr]=Ie=>{$||($=!0,Ie?D(q,[H]):D(B,[H]),W.delayedLeave&&W.delayedLeave(),H[qr]=void 0)};K?C(K,[H,te]):te()},leave(H,K){const B=String(e.key);if(H[qr]&&H[qr](!0),n.isUnmounting)return K();D(d,[H]);let q=!1;const $=H[qt]=te=>{q||(q=!0,K(),te?D(g,[H]):D(v,[H]),H[qt]=void 0,T[B]===e&&delete T[B])};T[B]=e,p?C(p,[H,$]):$()},clone(H){return vr(H,t,n,r)}};return W}function Vl(e){if(Cr(e))return e=Qt(e),e.children=null,e}function Ka(e){return Cr(e)?e.children?e.children[0]:void 0:e}function hr(e,t){e.shapeFlag&6&&e.component?hr(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Qo(e,t=!1,n){let r=[],l=0;for(let o=0;o1)for(let o=0;o!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function Q(e){le(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:l=200,timeout:o,suspensible:a=!0,onError:i}=e;let c=null,u,f=0;const d=()=>(f++,c=null,p()),p=()=>{let v;return c||(v=c=t().catch(g=>{if(g=g instanceof Error?g:new Error(String(g)),i)return new Promise((E,w)=>{i(g,()=>E(d()),()=>w(g),f+1)});throw g}).then(g=>v!==c&&c?c:(g&&(g.__esModule||g[Symbol.toStringTag]==="Module")&&(g=g.default),u=g,g)))};return O({name:"AsyncComponentWrapper",__asyncLoader:p,get __asyncResolved(){return u},setup(){const v=Ve;if(u)return()=>Nl(u,v);const g=S=>{c=null,Ar(S,v,13,!r)};if(a&&v.suspense||Tr)return p().then(S=>()=>Nl(S,v)).catch(S=>(g(S),()=>r?Be(r,{error:S}):null));const E=U(!1),w=U(),b=U(!!l);return l&&setTimeout(()=>{b.value=!1},l),o!=null&&setTimeout(()=>{if(!E.value&&!w.value){const S=new Error(`Async component timed out after ${o}ms.`);g(S),w.value=S}},o),p().then(()=>{E.value=!0,v.parent&&Cr(v.parent.vnode)&&(v.parent.effect.dirty=!0,El(v.parent.update))}).catch(S=>{g(S),w.value=S}),()=>{if(E.value&&u)return Nl(u,v);if(w.value&&r)return Be(r,{error:w.value});if(n&&!b.value)return Be(n)}}})}function Nl(e,t){const{ref:n,props:r,children:l,ce:o}=t.vnode,a=Be(e,r,l);return a.ref=n,a.ce=o,delete t.vnode.ce,a}const Cr=e=>e.type.__isKeepAlive;function Yd(e,t){qi(e,"a",t)}function Jd(e,t){qi(e,"da",t)}function qi(e,t,n=Ve){const r=e.__wdc||(e.__wdc=()=>{let l=n;for(;l;){if(l.isDeactivated)return;l=l.parent}return e()});if(Sl(t,r,n),n){let l=n.parent;for(;l&&l.parent;)Cr(l.parent.vnode)&&Qd(r,t,n,l),l=l.parent}}function Qd(e,t,n,r){const l=Sl(t,e,r,!0);Kn(()=>{Do(r[t],l)},n)}function Sl(e,t,n=Ve,r=!1){if(n){const l=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...a)=>{if(n.isUnmounted)return;dn();const i=Sr(n),c=ut(t,n,e,a);return i(),pn(),c});return r?l.unshift(o):l.push(o),o}}const Dt=e=>(t,n=Ve)=>(!Tr||e==="sp")&&Sl(e,(...r)=>t(...r),n),Xd=Dt("bm"),me=Dt("m"),Zd=Dt("bu"),Gi=Dt("u"),Xo=Dt("bum"),Kn=Dt("um"),e1=Dt("sp"),t1=Dt("rtg"),n1=Dt("rtc");function r1(e,t=Ve){Sl("ec",e,t)}function o6(e,t,n,r){let l;const o=n&&n[r];if(Z(e)||ae(e)){l=new Array(e.length);for(let a=0,i=e.length;at(a,i,void 0,o&&o[i]));else{const a=Object.keys(e);l=new Array(a.length);for(let i=0,c=a.length;ifl(t)?!(t.type===rt||t.type===qe&&!Wi(t.children)):!0)?e:null}const ho=e=>e?uc(e)?kl(e)||e.proxy:ho(e.parent):null,rr=Me(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ho(e.parent),$root:e=>ho(e.root),$emit:e=>e.emit,$options:e=>Zo(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,El(e.update)}),$nextTick:e=>e.n||(e.n=hn.bind(e.proxy)),$watch:e=>Gd.bind(e)}),zl=(e,t)=>e!==Ae&&!e.__isScriptSetup&&he(e,t),l1={get({_:e},t){const{ctx:n,setupState:r,data:l,props:o,accessCache:a,type:i,appContext:c}=e;let u;if(t[0]!=="$"){const v=a[t];if(v!==void 0)switch(v){case 1:return r[t];case 2:return l[t];case 4:return n[t];case 3:return o[t]}else{if(zl(r,t))return a[t]=1,r[t];if(l!==Ae&&he(l,t))return a[t]=2,l[t];if((u=e.propsOptions[0])&&he(u,t))return a[t]=3,o[t];if(n!==Ae&&he(n,t))return a[t]=4,n[t];mo&&(a[t]=0)}}const f=rr[t];let d,p;if(f)return t==="$attrs"&&Xe(e,"get",t),f(e);if((d=i.__cssModules)&&(d=d[t]))return d;if(n!==Ae&&he(n,t))return a[t]=4,n[t];if(p=c.config.globalProperties,he(p,t))return p[t]},set({_:e},t,n){const{data:r,setupState:l,ctx:o}=e;return zl(l,t)?(l[t]=n,!0):r!==Ae&&he(r,t)?(r[t]=n,!0):he(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:l,propsOptions:o}},a){let i;return!!n[a]||e!==Ae&&he(e,a)||zl(t,a)||(i=o[0])&&he(i,a)||he(r,a)||he(rr,a)||he(l.config.globalProperties,a)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:he(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Ya(e){return Z(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let mo=!0;function o1(e){const t=Zo(e),n=e.proxy,r=e.ctx;mo=!1,t.beforeCreate&&Ja(t.beforeCreate,e,"bc");const{data:l,computed:o,methods:a,watch:i,provide:c,inject:u,created:f,beforeMount:d,mounted:p,beforeUpdate:v,updated:g,activated:E,deactivated:w,beforeDestroy:b,beforeUnmount:S,destroyed:y,unmounted:T,render:D,renderTracked:C,renderTriggered:W,errorCaptured:H,serverPrefetch:K,expose:B,inheritAttrs:q,components:$,directives:te,filters:Ie}=t;if(u&&a1(u,r,null),a)for(const ne in a){const Y=a[ne];le(Y)&&(r[ne]=Y.bind(n))}if(l){const ne=l.call(n,n);Se(ne)&&(e.data=wr(ne))}if(mo=!0,o)for(const ne in o){const Y=o[ne],Oe=le(Y)?Y.bind(n,n):le(Y.get)?Y.get.bind(n,n):ct,_t=!le(Y)&&le(Y.set)?Y.set.bind(n):ct,ot=_({get:Oe,set:_t});Object.defineProperty(r,ne,{enumerable:!0,configurable:!0,get:()=>ot.value,set:Fe=>ot.value=Fe})}if(i)for(const ne in i)Ki(i[ne],r,n,ne);if(c){const ne=le(c)?c.call(n):c;Reflect.ownKeys(ne).forEach(Y=>{mt(Y,ne[Y])})}f&&Ja(f,e,"c");function G(ne,Y){Z(Y)?Y.forEach(Oe=>ne(Oe.bind(n))):Y&&ne(Y.bind(n))}if(G(Xd,d),G(me,p),G(Zd,v),G(Gi,g),G(Yd,E),G(Jd,w),G(r1,H),G(n1,C),G(t1,W),G(Xo,S),G(Kn,T),G(e1,K),Z(B))if(B.length){const ne=e.exposed||(e.exposed={});B.forEach(Y=>{Object.defineProperty(ne,Y,{get:()=>n[Y],set:Oe=>n[Y]=Oe})})}else e.exposed||(e.exposed={});D&&e.render===ct&&(e.render=D),q!=null&&(e.inheritAttrs=q),$&&(e.components=$),te&&(e.directives=te)}function a1(e,t,n=ct){Z(e)&&(e=go(e));for(const r in e){const l=e[r];let o;Se(l)?"default"in l?o=se(l.from||r,l.default,!0):o=se(l.from||r):o=se(l),Ne(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:a=>o.value=a}):t[r]=o}}function Ja(e,t,n){ut(Z(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Ki(e,t,n,r){const l=r.includes(".")?Ni(n,r):()=>n[r];if(ae(e)){const o=t[e];le(o)&&de(l,o)}else if(le(e))de(l,e.bind(n));else if(Se(e))if(Z(e))e.forEach(o=>Ki(o,t,n,r));else{const o=le(e.handler)?e.handler.bind(n):t[e.handler];le(o)&&de(l,o,e)}}function Zo(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:l,optionsCache:o,config:{optionMergeStrategies:a}}=e.appContext,i=o.get(t);let c;return i?c=i:!l.length&&!n&&!r?c=t:(c={},l.length&&l.forEach(u=>cl(c,u,a,!0)),cl(c,t,a)),Se(t)&&o.set(t,c),c}function cl(e,t,n,r=!1){const{mixins:l,extends:o}=t;o&&cl(e,o,n,!0),l&&l.forEach(a=>cl(e,a,n,!0));for(const a in t)if(!(r&&a==="expose")){const i=s1[a]||n&&n[a];e[a]=i?i(e[a],t[a]):t[a]}return e}const s1={data:Qa,props:Xa,emits:Xa,methods:tr,computed:tr,beforeCreate:Ue,created:Ue,beforeMount:Ue,mounted:Ue,beforeUpdate:Ue,updated:Ue,beforeDestroy:Ue,beforeUnmount:Ue,destroyed:Ue,unmounted:Ue,activated:Ue,deactivated:Ue,errorCaptured:Ue,serverPrefetch:Ue,components:tr,directives:tr,watch:c1,provide:Qa,inject:i1};function Qa(e,t){return t?e?function(){return Me(le(e)?e.call(this,this):e,le(t)?t.call(this,this):t)}:t:e}function i1(e,t){return tr(go(e),go(t))}function go(e){if(Z(e)){const t={};for(let n=0;n1)return n&&le(t)?t.call(r&&r.proxy):t}}function d1(e,t,n,r=!1){const l={},o={};ll(o,Tl,1),e.propsDefaults=Object.create(null),Ji(e,t,l,o);for(const a in e.propsOptions[0])a in l||(l[a]=void 0);n?e.props=r?l:xi(l):e.type.props?e.props=l:e.props=o,e.attrs=o}function p1(e,t,n,r){const{props:l,attrs:o,vnode:{patchFlag:a}}=e,i=fe(l),[c]=e.propsOptions;let u=!1;if((r||a>0)&&!(a&16)){if(a&8){const f=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[p,v]=Qi(d,t,!0);Me(a,p),v&&i.push(...v)};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}if(!o&&!c)return Se(e)&&r.set(e,xn),xn;if(Z(o))for(let f=0;f-1,v[1]=E<0||g-1||he(v,"default"))&&i.push(d)}}}const u=[a,i];return Se(e)&&r.set(e,u),u}function Za(e){return e[0]!=="$"&&!In(e)}function es(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function ts(e,t){return es(e)===es(t)}function ns(e,t){return Z(t)?t.findIndex(n=>ts(n,e)):le(t)&&ts(t,e)?0:-1}const Xi=e=>e[0]==="_"||e==="$stable",ea=e=>Z(e)?e.map(vt):[vt(e)],v1=(e,t,n)=>{if(t._n)return t;const r=Rd((...l)=>ea(t(...l)),n);return r._c=!1,r},Zi=(e,t,n)=>{const r=e._ctx;for(const l in e){if(Xi(l))continue;const o=e[l];if(le(o))t[l]=v1(l,o,r);else if(o!=null){const a=ea(o);t[l]=()=>a}}},ec=(e,t)=>{const n=ea(t);e.slots.default=()=>n},h1=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=fe(t),ll(t,"_",n)):Zi(t,e.slots={})}else e.slots={},t&&ec(e,t);ll(e.slots,Tl,1)},m1=(e,t,n)=>{const{vnode:r,slots:l}=e;let o=!0,a=Ae;if(r.shapeFlag&32){const i=t._;i?n&&i===1?o=!1:(Me(l,t),!n&&i===1&&delete l._):(o=!t.$stable,Zi(t,l)),a=t}else t&&(ec(e,t),a={default:1});if(o)for(const i in l)!Xi(i)&&a[i]==null&&delete l[i]};function ul(e,t,n,r,l=!1){if(Z(e)){e.forEach((p,v)=>ul(p,t&&(Z(t)?t[v]:t),n,r,l));return}if(On(r)&&!l)return;const o=r.shapeFlag&4?kl(r.component)||r.component.proxy:r.el,a=l?null:o,{i,r:c}=e,u=t&&t.r,f=i.refs===Ae?i.refs={}:i.refs,d=i.setupState;if(u!=null&&u!==c&&(ae(u)?(f[u]=null,he(d,u)&&(d[u]=null)):Ne(u)&&(u.value=null)),le(c))Jt(c,i,12,[a,f]);else{const p=ae(c),v=Ne(c);if(p||v){const g=()=>{if(e.f){const E=p?he(d,c)?d[c]:f[c]:c.value;l?Z(E)&&Do(E,o):Z(E)?E.includes(o)||E.push(o):p?(f[c]=[o],he(d,c)&&(d[c]=f[c])):(c.value=[o],e.k&&(f[e.k]=c.value))}else p?(f[c]=a,he(d,c)&&(d[c]=a)):v&&(c.value=a,e.k&&(f[e.k]=a))};a?(g.id=-1,Ye(g,n)):g()}}}let Vt=!1;const g1=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",y1=e=>e.namespaceURI.includes("MathML"),Gr=e=>{if(g1(e))return"svg";if(y1(e))return"mathml"},Wr=e=>e.nodeType===8;function b1(e){const{mt:t,p:n,o:{patchProp:r,createText:l,nextSibling:o,parentNode:a,remove:i,insert:c,createComment:u}}=e,f=(y,T)=>{if(!T.hasChildNodes()){n(null,y,T),sl(),T._vnode=y;return}Vt=!1,d(T.firstChild,y,null,null,null),sl(),T._vnode=y,Vt&&console.error("Hydration completed but contains mismatches.")},d=(y,T,D,C,W,H=!1)=>{const K=Wr(y)&&y.data==="[",B=()=>E(y,T,D,C,W,K),{type:q,ref:$,shapeFlag:te,patchFlag:Ie}=T;let ke=y.nodeType;T.el=y,Ie===-2&&(H=!1,T.dynamicChildren=null);let G=null;switch(q){case Hn:ke!==3?T.children===""?(c(T.el=l(""),a(y),y),G=y):G=B():(y.data!==T.children&&(Vt=!0,y.data=T.children),G=o(y));break;case rt:S(y)?(G=o(y),b(T.el=y.content.firstChild,y,D)):ke!==8||K?G=B():G=o(y);break;case or:if(K&&(y=o(y),ke=y.nodeType),ke===1||ke===3){G=y;const ne=!T.children.length;for(let Y=0;Y{H=H||!!T.dynamicChildren;const{type:K,props:B,patchFlag:q,shapeFlag:$,dirs:te,transition:Ie}=T,ke=K==="input"||K==="option";if(ke||q!==-1){te&&At(T,null,D,"created");let G=!1;if(S(y)){G=tc(C,Ie)&&D&&D.vnode.props&&D.vnode.props.appear;const Y=y.content.firstChild;G&&Ie.beforeEnter(Y),b(Y,y,D),T.el=y=Y}if($&16&&!(B&&(B.innerHTML||B.textContent))){let Y=v(y.firstChild,T,y,D,C,W,H);for(;Y;){Vt=!0;const Oe=Y;Y=Y.nextSibling,i(Oe)}}else $&8&&y.textContent!==T.children&&(Vt=!0,y.textContent=T.children);if(B)if(ke||!H||q&48)for(const Y in B)(ke&&(Y.endsWith("value")||Y==="indeterminate")||_r(Y)&&!In(Y)||Y[0]===".")&&r(y,Y,null,B[Y],void 0,void 0,D);else B.onClick&&r(y,"onClick",null,B.onClick,void 0,void 0,D);let ne;(ne=B&&B.onVnodeBeforeMount)&&st(ne,D,T),te&&At(T,null,D,"beforeMount"),((ne=B&&B.onVnodeMounted)||te||G)&&Hi(()=>{ne&&st(ne,D,T),G&&Ie.enter(y),te&&At(T,null,D,"mounted")},C)}return y.nextSibling},v=(y,T,D,C,W,H,K)=>{K=K||!!T.dynamicChildren;const B=T.children,q=B.length;for(let $=0;${const{slotScopeIds:K}=T;K&&(W=W?W.concat(K):K);const B=a(y),q=v(o(y),T,B,D,C,W,H);return q&&Wr(q)&&q.data==="]"?o(T.anchor=q):(Vt=!0,c(T.anchor=u("]"),B,q),q)},E=(y,T,D,C,W,H)=>{if(Vt=!0,T.el=null,H){const q=w(y);for(;;){const $=o(y);if($&&$!==q)i($);else break}}const K=o(y),B=a(y);return i(y),n(null,T,B,K,D,C,Gr(B),W),K},w=(y,T="[",D="]")=>{let C=0;for(;y;)if(y=o(y),y&&Wr(y)&&(y.data===T&&C++,y.data===D)){if(C===0)return o(y);C--}return y},b=(y,T,D)=>{const C=T.parentNode;C&&C.replaceChild(y,T);let W=D;for(;W;)W.vnode.el===T&&(W.vnode.el=W.subTree.el=y),W=W.parent},S=y=>y.nodeType===1&&y.tagName.toLowerCase()==="template";return[f,d]}const Ye=Hi;function _1(e){return E1(e,b1)}function E1(e,t){const n=pi();n.__VUE__=!0;const{insert:r,remove:l,patchProp:o,createElement:a,createText:i,createComment:c,setText:u,setElementText:f,parentNode:d,nextSibling:p,setScopeId:v=ct,insertStaticContent:g}=e,E=(h,m,A,I=null,L=null,M=null,N=void 0,R=null,F=!!m.dynamicChildren)=>{if(h===m)return;h&&!on(h,m)&&(I=x(h),Fe(h,L,M,!0),h=null),m.patchFlag===-2&&(F=!1,m.dynamicChildren=null);const{type:P,ref:j,shapeFlag:ee}=m;switch(P){case Hn:w(h,m,A,I);break;case rt:b(h,m,A,I);break;case or:h==null&&S(m,A,I,N);break;case qe:$(h,m,A,I,L,M,N,R,F);break;default:ee&1?D(h,m,A,I,L,M,N,R,F):ee&6?te(h,m,A,I,L,M,N,R,F):(ee&64||ee&128)&&P.process(h,m,A,I,L,M,N,R,F,J)}j!=null&&L&&ul(j,h&&h.ref,M,m||h,!m)},w=(h,m,A,I)=>{if(h==null)r(m.el=i(m.children),A,I);else{const L=m.el=h.el;m.children!==h.children&&u(L,m.children)}},b=(h,m,A,I)=>{h==null?r(m.el=c(m.children||""),A,I):m.el=h.el},S=(h,m,A,I)=>{[h.el,h.anchor]=g(h.children,m,A,I,h.el,h.anchor)},y=({el:h,anchor:m},A,I)=>{let L;for(;h&&h!==m;)L=p(h),r(h,A,I),h=L;r(m,A,I)},T=({el:h,anchor:m})=>{let A;for(;h&&h!==m;)A=p(h),l(h),h=A;l(m)},D=(h,m,A,I,L,M,N,R,F)=>{m.type==="svg"?N="svg":m.type==="math"&&(N="mathml"),h==null?C(m,A,I,L,M,N,R,F):K(h,m,L,M,N,R,F)},C=(h,m,A,I,L,M,N,R)=>{let F,P;const{props:j,shapeFlag:ee,transition:X,dirs:re}=h;if(F=h.el=a(h.type,M,j&&j.is,j),ee&8?f(F,h.children):ee&16&&H(h.children,F,null,I,L,jl(h,M),N,R),re&&At(h,null,I,"created"),W(F,h,h.scopeId,N,I),j){for(const _e in j)_e!=="value"&&!In(_e)&&o(F,_e,null,j[_e],M,h.children,I,L,$e);"value"in j&&o(F,"value",null,j.value,M),(P=j.onVnodeBeforeMount)&&st(P,I,h)}re&&At(h,null,I,"beforeMount");const oe=tc(L,X);oe&&X.beforeEnter(F),r(F,m,A),((P=j&&j.onVnodeMounted)||oe||re)&&Ye(()=>{P&&st(P,I,h),oe&&X.enter(F),re&&At(h,null,I,"mounted")},L)},W=(h,m,A,I,L)=>{if(A&&v(h,A),I)for(let M=0;M{for(let P=F;P{const R=m.el=h.el;let{patchFlag:F,dynamicChildren:P,dirs:j}=m;F|=h.patchFlag&16;const ee=h.props||Ae,X=m.props||Ae;let re;if(A&&nn(A,!1),(re=X.onVnodeBeforeUpdate)&&st(re,A,m,h),j&&At(m,h,A,"beforeUpdate"),A&&nn(A,!0),P?B(h.dynamicChildren,P,R,A,I,jl(m,L),M):N||Y(h,m,R,null,A,I,jl(m,L),M,!1),F>0){if(F&16)q(R,m,ee,X,A,I,L);else if(F&2&&ee.class!==X.class&&o(R,"class",null,X.class,L),F&4&&o(R,"style",ee.style,X.style,L),F&8){const oe=m.dynamicProps;for(let _e=0;_e{re&&st(re,A,m,h),j&&At(m,h,A,"updated")},I)},B=(h,m,A,I,L,M,N)=>{for(let R=0;R{if(A!==I){if(A!==Ae)for(const R in A)!In(R)&&!(R in I)&&o(h,R,A[R],null,N,m.children,L,M,$e);for(const R in I){if(In(R))continue;const F=I[R],P=A[R];F!==P&&R!=="value"&&o(h,R,P,F,N,m.children,L,M,$e)}"value"in I&&o(h,"value",A.value,I.value,N)}},$=(h,m,A,I,L,M,N,R,F)=>{const P=m.el=h?h.el:i(""),j=m.anchor=h?h.anchor:i("");let{patchFlag:ee,dynamicChildren:X,slotScopeIds:re}=m;re&&(R=R?R.concat(re):re),h==null?(r(P,A,I),r(j,A,I),H(m.children||[],A,j,L,M,N,R,F)):ee>0&&ee&64&&X&&h.dynamicChildren?(B(h.dynamicChildren,X,A,L,M,N,R),(m.key!=null||L&&m===L.subTree)&&nc(h,m,!0)):Y(h,m,A,j,L,M,N,R,F)},te=(h,m,A,I,L,M,N,R,F)=>{m.slotScopeIds=R,h==null?m.shapeFlag&512?L.ctx.activate(m,A,I,N,F):Ie(m,A,I,L,M,N,F):ke(h,m,F)},Ie=(h,m,A,I,L,M,N)=>{const R=h.component=I1(h,I,L);if(Cr(h)&&(R.ctx.renderer=J),P1(R),R.asyncDep){if(L&&L.registerDep(R,G),!h.el){const F=R.subTree=Be(rt);b(null,F,m,A)}}else G(R,h,m,A,L,M,N)},ke=(h,m,A)=>{const I=m.component=h.component;if(Fd(h,m,A))if(I.asyncDep&&!I.asyncResolved){ne(I,m,A);return}else I.next=m,Pd(I.update),I.effect.dirty=!0,I.update();else m.el=h.el,I.vnode=m},G=(h,m,A,I,L,M,N)=>{const R=()=>{if(h.isMounted){let{next:j,bu:ee,u:X,parent:re,vnode:oe}=h;{const wn=rc(h);if(wn){j&&(j.el=oe.el,ne(h,j,N)),wn.asyncDep.then(()=>{h.isUnmounted||R()});return}}let _e=j,xe;nn(h,!1),j?(j.el=oe.el,ne(h,j,N)):j=oe,ee&&tl(ee),(xe=j.props&&j.props.onVnodeBeforeUpdate)&&st(xe,re,j,oe),nn(h,!0);const He=Hl(h),dt=h.subTree;h.subTree=He,E(dt,He,d(dt.el),x(dt),h,L,M),j.el=He.el,_e===null&&Hd(h,He.el),X&&Ye(X,L),(xe=j.props&&j.props.onVnodeUpdated)&&Ye(()=>st(xe,re,j,oe),L)}else{let j;const{el:ee,props:X}=m,{bm:re,m:oe,parent:_e}=h,xe=On(m);if(nn(h,!1),re&&tl(re),!xe&&(j=X&&X.onVnodeBeforeMount)&&st(j,_e,m),nn(h,!0),ee&&we){const He=()=>{h.subTree=Hl(h),we(ee,h.subTree,h,L,null)};xe?m.type.__asyncLoader().then(()=>!h.isUnmounted&&He()):He()}else{const He=h.subTree=Hl(h);E(null,He,A,I,h,L,M),m.el=He.el}if(oe&&Ye(oe,L),!xe&&(j=X&&X.onVnodeMounted)){const He=m;Ye(()=>st(j,_e,He),L)}(m.shapeFlag&256||_e&&On(_e.vnode)&&_e.vnode.shapeFlag&256)&&h.a&&Ye(h.a,L),h.isMounted=!0,m=A=I=null}},F=h.effect=new No(R,ct,()=>El(P),h.scope),P=h.update=()=>{F.dirty&&F.run()};P.id=h.uid,nn(h,!0),P()},ne=(h,m,A)=>{m.component=h;const I=h.vnode.props;h.vnode=m,h.next=null,p1(h,m.props,I,A),m1(h,m.children,A),dn(),qa(h),pn()},Y=(h,m,A,I,L,M,N,R,F=!1)=>{const P=h&&h.children,j=h?h.shapeFlag:0,ee=m.children,{patchFlag:X,shapeFlag:re}=m;if(X>0){if(X&128){_t(P,ee,A,I,L,M,N,R,F);return}else if(X&256){Oe(P,ee,A,I,L,M,N,R,F);return}}re&8?(j&16&&$e(P,L,M),ee!==P&&f(A,ee)):j&16?re&16?_t(P,ee,A,I,L,M,N,R,F):$e(P,L,M,!0):(j&8&&f(A,""),re&16&&H(ee,A,I,L,M,N,R,F))},Oe=(h,m,A,I,L,M,N,R,F)=>{h=h||xn,m=m||xn;const P=h.length,j=m.length,ee=Math.min(P,j);let X;for(X=0;Xj?$e(h,L,M,!0,!1,ee):H(m,A,I,L,M,N,R,F,ee)},_t=(h,m,A,I,L,M,N,R,F)=>{let P=0;const j=m.length;let ee=h.length-1,X=j-1;for(;P<=ee&&P<=X;){const re=h[P],oe=m[P]=F?Gt(m[P]):vt(m[P]);if(on(re,oe))E(re,oe,A,null,L,M,N,R,F);else break;P++}for(;P<=ee&&P<=X;){const re=h[ee],oe=m[X]=F?Gt(m[X]):vt(m[X]);if(on(re,oe))E(re,oe,A,null,L,M,N,R,F);else break;ee--,X--}if(P>ee){if(P<=X){const re=X+1,oe=reX)for(;P<=ee;)Fe(h[P],L,M,!0),P++;else{const re=P,oe=P,_e=new Map;for(P=oe;P<=X;P++){const et=m[P]=F?Gt(m[P]):vt(m[P]);et.key!=null&&_e.set(et.key,P)}let xe,He=0;const dt=X-oe+1;let wn=!1,$a=0;const Jn=new Array(dt);for(P=0;P=dt){Fe(et,L,M,!0);continue}let wt;if(et.key!=null)wt=_e.get(et.key);else for(xe=oe;xe<=X;xe++)if(Jn[xe-oe]===0&&on(et,m[xe])){wt=xe;break}wt===void 0?Fe(et,L,M,!0):(Jn[wt-oe]=P+1,wt>=$a?$a=wt:wn=!0,E(et,m[wt],A,null,L,M,N,R,F),He++)}const Ra=wn?w1(Jn):xn;for(xe=Ra.length-1,P=dt-1;P>=0;P--){const et=oe+P,wt=m[et],Ma=et+1{const{el:M,type:N,transition:R,children:F,shapeFlag:P}=h;if(P&6){ot(h.component.subTree,m,A,I);return}if(P&128){h.suspense.move(m,A,I);return}if(P&64){N.move(h,m,A,J);return}if(N===qe){r(M,m,A);for(let ee=0;eeR.enter(M),L);else{const{leave:ee,delayLeave:X,afterLeave:re}=R,oe=()=>r(M,m,A),_e=()=>{ee(M,()=>{oe(),re&&re()})};X?X(M,oe,_e):_e()}else r(M,m,A)},Fe=(h,m,A,I=!1,L=!1)=>{const{type:M,props:N,ref:R,children:F,dynamicChildren:P,shapeFlag:j,patchFlag:ee,dirs:X}=h;if(R!=null&&ul(R,null,A,h,!0),j&256){m.ctx.deactivate(h);return}const re=j&1&&X,oe=!On(h);let _e;if(oe&&(_e=N&&N.onVnodeBeforeUnmount)&&st(_e,m,h),j&6)Et(h.component,A,I);else{if(j&128){h.suspense.unmount(A,I);return}re&&At(h,null,m,"beforeUnmount"),j&64?h.type.remove(h,m,A,L,J,I):P&&(M!==qe||ee>0&&ee&64)?$e(P,m,A,!1,!0):(M===qe&&ee&384||!L&&j&16)&&$e(F,m,A),I&&Ze(h)}(oe&&(_e=N&&N.onVnodeUnmounted)||re)&&Ye(()=>{_e&&st(_e,m,h),re&&At(h,null,m,"unmounted")},A)},Ze=h=>{const{type:m,el:A,anchor:I,transition:L}=h;if(m===qe){Lt(A,I);return}if(m===or){T(h);return}const M=()=>{l(A),L&&!L.persisted&&L.afterLeave&&L.afterLeave()};if(h.shapeFlag&1&&L&&!L.persisted){const{leave:N,delayLeave:R}=L,F=()=>N(A,M);R?R(h.el,M,F):F()}else M()},Lt=(h,m)=>{let A;for(;h!==m;)A=p(h),l(h),h=A;l(m)},Et=(h,m,A)=>{const{bum:I,scope:L,update:M,subTree:N,um:R}=h;I&&tl(I),L.stop(),M&&(M.active=!1,Fe(N,h,m,A)),R&&Ye(R,m),Ye(()=>{h.isUnmounted=!0},m),m&&m.pendingBranch&&!m.isUnmounted&&h.asyncDep&&!h.asyncResolved&&h.suspenseId===m.pendingId&&(m.deps--,m.deps===0&&m.resolve())},$e=(h,m,A,I=!1,L=!1,M=0)=>{for(let N=M;Nh.shapeFlag&6?x(h.component.subTree):h.shapeFlag&128?h.suspense.next():p(h.anchor||h.el);let z=!1;const V=(h,m,A)=>{h==null?m._vnode&&Fe(m._vnode,null,null,!0):E(m._vnode||null,h,m,null,null,null,A),z||(z=!0,qa(),sl(),z=!1),m._vnode=h},J={p:E,um:Fe,m:ot,r:Ze,mt:Ie,mc:H,pc:Y,pbc:B,n:x,o:e};let pe,we;return t&&([pe,we]=t(J)),{render:V,hydrate:pe,createApp:f1(V,pe)}}function jl({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function nn({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function tc(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function nc(e,t,n=!1){const r=e.children,l=t.children;if(Z(r)&&Z(l))for(let o=0;o>1,e[n[i]]0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,a=n[o-1];o-- >0;)n[o]=a,a=t[a];return n}function rc(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:rc(t)}const A1=e=>e.__isTeleport,qe=Symbol.for("v-fgt"),Hn=Symbol.for("v-txt"),rt=Symbol.for("v-cmt"),or=Symbol.for("v-stc"),ar=[];let ht=null;function lc(e=!1){ar.push(ht=e?null:[])}function C1(){ar.pop(),ht=ar[ar.length-1]||null}let mr=1;function rs(e){mr+=e}function oc(e){return e.dynamicChildren=mr>0?ht||xn:null,C1(),mr>0&&ht&&ht.push(e),e}function s6(e,t,n,r,l,o){return oc(ic(e,t,n,r,l,o,!0))}function ac(e,t,n,r,l){return oc(Be(e,t,n,r,l,!0))}function fl(e){return e?e.__v_isVNode===!0:!1}function on(e,t){return e.type===t.type&&e.key===t.key}const Tl="__vInternal",sc=({key:e})=>e??null,nl=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ae(e)||Ne(e)||le(e)?{i:De,r:e,k:t,f:!!n}:e:null);function ic(e,t=null,n=null,r=0,l=null,o=e===qe?0:1,a=!1,i=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&sc(t),ref:t&&nl(t),scopeId:Al,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:l,dynamicChildren:null,appContext:null,ctx:De};return i?(ta(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=ae(n)?8:16),mr>0&&!a&&ht&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&ht.push(c),c}const Be=S1;function S1(e,t=null,n=null,r=0,l=null,o=!1){if((!e||e===Vd)&&(e=rt),fl(e)){const i=Qt(e,t,!0);return n&&ta(i,n),mr>0&&!o&&ht&&(i.shapeFlag&6?ht[ht.indexOf(e)]=i:ht.push(i)),i.patchFlag|=-2,i}if(M1(e)&&(e=e.__vccOpts),t){t=T1(t);let{class:i,style:c}=t;i&&!ae(i)&&(t.class=Vo(i)),Se(c)&&(Li(c)&&!Z(c)&&(c=Me({},c)),t.style=Ho(c))}const a=ae(e)?1:zd(e)?128:A1(e)?64:Se(e)?4:le(e)?2:0;return ic(e,t,n,r,l,a,o,!0)}function T1(e){return e?Li(e)||Tl in e?Me({},e):e:null}function Qt(e,t,n=!1){const{props:r,ref:l,patchFlag:o,children:a}=e,i=t?k1(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:i,key:i&&sc(i),ref:t&&t.ref?n&&l?Z(l)?l.concat(nl(t)):[l,nl(t)]:nl(t):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:a,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==qe?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Qt(e.ssContent),ssFallback:e.ssFallback&&Qt(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function cc(e=" ",t=0){return Be(Hn,null,e,t)}function i6(e,t){const n=Be(or,null,e);return n.staticCount=t,n}function c6(e="",t=!1){return t?(lc(),ac(rt,null,e)):Be(rt,null,e)}function vt(e){return e==null||typeof e=="boolean"?Be(rt):Z(e)?Be(qe,null,e.slice()):typeof e=="object"?Gt(e):Be(Hn,null,String(e))}function Gt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Qt(e)}function ta(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Z(t))n=16;else if(typeof t=="object")if(r&65){const l=t.default;l&&(l._c&&(l._d=!1),ta(e,l()),l._c&&(l._d=!0));return}else{n=32;const l=t._;!l&&!(Tl in t)?t._ctx=De:l===3&&De&&(De.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else le(t)?(t={default:t,_ctx:De},n=32):(t=String(t),r&64?(n=16,t=[cc(t)]):n=8);e.children=t,e.shapeFlag|=n}function k1(...e){const t={};for(let n=0;nVe||De;let dl,bo;{const e=pi(),t=(n,r)=>{let l;return(l=e[n])||(l=e[n]=[]),l.push(r),o=>{l.length>1?l.forEach(a=>a(o)):l[0](o)}};dl=t("__VUE_INSTANCE_SETTERS__",n=>Ve=n),bo=t("__VUE_SSR_SETTERS__",n=>Tr=n)}const Sr=e=>{const t=Ve;return dl(e),e.scope.on(),()=>{e.scope.off(),dl(t)}},ls=()=>{Ve&&Ve.scope.off(),dl(null)};function uc(e){return e.vnode.shapeFlag&4}let Tr=!1;function P1(e,t=!1){t&&bo(t);const{props:n,children:r}=e.vnode,l=uc(e);d1(e,n,l,t),h1(e,r);const o=l?B1(e,t):void 0;return t&&bo(!1),o}function B1(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ii(new Proxy(e.ctx,l1));const{setup:r}=n;if(r){const l=e.setupContext=r.length>1?$1(e):null,o=Sr(e);dn();const a=Jt(r,e,0,[e.props,l]);if(pn(),o(),ui(a)){if(a.then(ls,ls),t)return a.then(i=>{os(e,i,t)}).catch(i=>{Ar(i,e,0)});e.asyncDep=a}else os(e,a,t)}else fc(e,t)}function os(e,t,n){le(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Se(t)&&(e.setupState=Oi(t)),fc(e,n)}let as;function fc(e,t,n){const r=e.type;if(!e.render){if(!t&&as&&!r.render){const l=r.template||Zo(e).template;if(l){const{isCustomElement:o,compilerOptions:a}=e.appContext.config,{delimiters:i,compilerOptions:c}=r,u=Me(Me({isCustomElement:o,delimiters:i},a),c);r.render=as(l,u)}}e.render=r.render||ct}{const l=Sr(e);dn();try{o1(e)}finally{pn(),l()}}}function O1(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return Xe(e,"get","$attrs"),t[n]}}))}function $1(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return O1(e)},slots:e.slots,emit:e.emit,expose:t}}function kl(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Oi(Ii(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in rr)return rr[n](e)},has(t,n){return n in t||n in rr}}))}function R1(e,t=!0){return le(e)?e.displayName||e.name:e.name||t&&e.__name}function M1(e){return le(e)&&"__vccOpts"in e}const _=(e,t)=>wd(e,t,Tr);function u6(e,t,n=Ae){const r=mn(),l=lt(t),o=en(t),a=Yo((c,u)=>{let f;return qd(()=>{const d=e[t];St(f,d)&&(f=d,u())}),{get(){return c(),n.get?n.get(f):f},set(d){const p=r.vnode.props;!(p&&(t in p||l in p||o in p)&&(`onUpdate:${t}`in p||`onUpdate:${l}`in p||`onUpdate:${o}`in p))&&St(d,f)&&(f=d,u()),r.emit(`update:${t}`,n.set?n.set(d):d)}}}),i=t==="modelValue"?"modelModifiers":`${t}Modifiers`;return a[Symbol.iterator]=()=>{let c=0;return{next(){return c<2?{value:c++?e[i]||{}:a,done:!1}:{done:!0}}}},a}function s(e,t,n){const r=arguments.length;return r===2?Se(t)&&!Z(t)?fl(t)?Be(e,null,[t]):Be(e,t):Be(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&fl(n)&&(n=[n]),Be(e,t,n))}const D1="3.4.21";/** +**/function Jt(e,t,n,r){try{return r?e(...r):e()}catch(l){Ar(l,t,n)}}function ut(e,t,n,r){if(le(e)){const o=Jt(e,t,n,r);return o&&ui(o)&&o.catch(a=>{Ar(a,t,n)}),o}const l=[];for(let o=0;o>>1,l=ze[r],o=pr(l);oCt&&ze.splice(t,1)}function Pd(e){Z(e)?Pn.push(...e):(!Ut||!Ut.includes(e,e.allowRecurse?ln+1:ln))&&Pn.push(e),$i()}function qa(e,t,n=dr?Ct+1:0){for(;npr(n)-pr(r));if(Pn.length=0,Ut){Ut.push(...t);return}for(Ut=t,ln=0;lne.id==null?1/0:e.id,Od=(e,t)=>{const n=pr(e)-pr(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Mi(e){vo=!1,dr=!0,ze.sort(Od);try{for(Ct=0;Ctae(v)?v.trim():v)),d&&(l=n.map(co))}let i,c=r[i=Dl(t)]||r[i=Dl(lt(t))];!c&&o&&(c=r[i=Dl(en(t))]),c&&ut(c,e,6,l);const u=r[i+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[i])return;e.emitted[i]=!0,ut(u,e,6,l)}}function Di(e,t,n=!1){const r=t.emitsCache,l=r.get(e);if(l!==void 0)return l;const o=e.emits;let a={},i=!1;if(!le(e)){const c=u=>{const f=Di(u,t,!0);f&&(i=!0,Me(a,f))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!i?(Se(e)&&r.set(e,null),null):(Z(o)?o.forEach(c=>a[c]=null):Me(a,o),Se(e)&&r.set(e,a),a)}function wl(e,t){return!e||!_r(t)?!1:(t=t.slice(2).replace(/Once$/,""),he(e,t[0].toLowerCase()+t.slice(1))||he(e,en(t))||he(e,t))}let De=null,Al=null;function il(e){const t=De;return De=e,Al=e&&e.type.__scopeId||null,t}function n6(e){Al=e}function r6(){Al=null}function $d(e,t=De,n){if(!t||e._n)return e;const r=(...l)=>{r._d&&rs(-1);const o=il(t);let a;try{a=e(...l)}finally{il(o),r._d&&rs(1)}return a};return r._n=!0,r._c=!0,r._d=!0,r}function Hl(e){const{type:t,vnode:n,proxy:r,withProxy:l,props:o,propsOptions:[a],slots:i,attrs:c,emit:u,render:f,renderCache:d,data:p,setupState:v,ctx:g,inheritAttrs:E}=e;let w,b;const S=il(e);try{if(n.shapeFlag&4){const T=l||r,D=T;w=vt(f.call(D,T,d,o,v,p,g)),b=c}else{const T=t;w=vt(T.length>1?T(o,{attrs:c,slots:i,emit:u}):T(o,null)),b=t.props?c:Md(c)}}catch(T){ar.length=0,Ar(T,e,1),w=Pe(rt)}let y=w;if(b&&E!==!1){const T=Object.keys(b),{shapeFlag:D}=y;T.length&&D&7&&(a&&T.some(Mo)&&(b=Dd(b,a)),y=Qt(y,b))}return n.dirs&&(y=Qt(y),y.dirs=y.dirs?y.dirs.concat(n.dirs):n.dirs),n.transition&&(y.transition=n.transition),w=y,il(S),w}const Md=e=>{let t;for(const n in e)(n==="class"||n==="style"||_r(n))&&((t||(t={}))[n]=e[n]);return t},Dd=(e,t)=>{const n={};for(const r in e)(!Mo(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function Fd(e,t,n){const{props:r,children:l,component:o}=e,{props:a,children:i,patchFlag:c}=t,u=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?Ga(r,a,u):!!a;if(c&8){const f=t.dynamicProps;for(let d=0;de.__isSuspense;function Hi(e,t){t&&t.pendingBranch?Z(e)?t.effects.push(...e):t.effects.push(e):Pd(e)}const jd=Symbol.for("v-scx"),Ud=()=>se(jd);function Vi(e,t){return Cl(e,null,t)}function qd(e,t){return Cl(e,null,{flush:"sync"})}const Ur={};function de(e,t,n){return Cl(e,t,n)}function Cl(e,t,{immediate:n,deep:r,flush:l,once:o,onTrack:a,onTrigger:i}=Ae){if(t&&o){const C=t;t=(...W)=>{C(...W),D()}}const c=Ve,u=C=>r===!0?C:an(C,r===!1?1:void 0);let f,d=!1,p=!1;if(Ne(e)?(f=()=>e.value,d=al(e)):Bn(e)?(f=()=>u(e),d=!0):Z(e)?(p=!0,d=e.some(C=>Bn(C)||al(C)),f=()=>e.map(C=>{if(Ne(C))return C.value;if(Bn(C))return u(C);if(le(C))return Jt(C,c,2)})):le(e)?t?f=()=>Jt(e,c,2):f=()=>(v&&v(),ut(e,c,3,[g])):f=ct,t&&r){const C=f;f=()=>an(C())}let v,g=C=>{v=y.onStop=()=>{Jt(C,c,4),v=y.onStop=void 0}},E;if(Tr)if(g=ct,t?n&&ut(t,c,3,[f(),p?[]:void 0,g]):f(),l==="sync"){const C=Ud();E=C.__watcherHandles||(C.__watcherHandles=[])}else return ct;let w=p?new Array(e.length).fill(Ur):Ur;const b=()=>{if(!(!y.active||!y.dirty))if(t){const C=y.run();(r||d||(p?C.some((W,H)=>St(W,w[H])):St(C,w)))&&(v&&v(),ut(t,c,3,[C,w===Ur?void 0:p&&w[0]===Ur?[]:w,g]),w=C)}else y.run()};b.allowRecurse=!!t;let S;l==="sync"?S=b:l==="post"?S=()=>Ye(b,c&&c.suspense):(b.pre=!0,c&&(b.id=c.uid),S=()=>El(b));const y=new No(f,ct,S),T=mi(),D=()=>{y.stop(),T&&Do(T.effects,y)};return t?n?b():w=y.run():l==="post"?Ye(y.run.bind(y),c&&c.suspense):y.run(),E&&E.push(D),D}function Gd(e,t,n){const r=this.proxy,l=ae(e)?e.includes(".")?Ni(r,e):()=>r[e]:e.bind(r,r);let o;le(t)?o=t:(o=t.handler,n=t);const a=Sr(this),i=Cl(l,o.bind(r),n);return a(),i}function Ni(e,t){const n=t.split(".");return()=>{let r=e;for(let l=0;l0){if(n>=t)return e;n++}if(r=r||new Set,r.has(e))return e;if(r.add(e),Ne(e))an(e.value,t,n,r);else if(Z(e))for(let l=0;l{an(l,t,n,r)});else if(di(e))for(const l in e)an(e[l],t,n,r);return e}function l6(e,t){if(De===null)return e;const n=kl(De)||De.proxy,r=e.dirs||(e.dirs=[]);for(let l=0;l{e.isMounted=!0}),Xo(()=>{e.isUnmounting=!0}),e}const at=[Function,Array],ji={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:at,onEnter:at,onAfterEnter:at,onEnterCancelled:at,onBeforeLeave:at,onLeave:at,onAfterLeave:at,onLeaveCancelled:at,onBeforeAppear:at,onAppear:at,onAfterAppear:at,onAppearCancelled:at},Wd={name:"BaseTransition",props:ji,setup(e,{slots:t}){const n=mn(),r=zi();return()=>{const l=t.default&&Qo(t.default(),!0);if(!l||!l.length)return;let o=l[0];if(l.length>1){for(const p of l)if(p.type!==rt){o=p;break}}const a=fe(e),{mode:i}=a;if(r.isLeaving)return Vl(o);const c=Ka(o);if(!c)return Vl(o);const u=vr(c,a,r,n);hr(c,u);const f=n.subTree,d=f&&Ka(f);if(d&&d.type!==rt&&!on(c,d)){const p=vr(d,a,r,n);if(hr(d,p),i==="out-in")return r.isLeaving=!0,p.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},Vl(o);i==="in-out"&&c.type!==rt&&(p.delayLeave=(v,g,E)=>{const w=Ui(r,d);w[String(d.key)]=d,v[qt]=()=>{g(),v[qt]=void 0,delete u.delayedLeave},u.delayedLeave=E})}return o}}},Kd=Wd;function Ui(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function vr(e,t,n,r){const{appear:l,mode:o,persisted:a=!1,onBeforeEnter:i,onEnter:c,onAfterEnter:u,onEnterCancelled:f,onBeforeLeave:d,onLeave:p,onAfterLeave:v,onLeaveCancelled:g,onBeforeAppear:E,onAppear:w,onAfterAppear:b,onAppearCancelled:S}=t,y=String(e.key),T=Ui(n,e),D=(H,K)=>{H&&ut(H,r,9,K)},C=(H,K)=>{const P=K[1];D(H,K),Z(H)?H.every(q=>q.length<=1)&&P():H.length<=1&&P()},W={mode:o,persisted:a,beforeEnter(H){let K=i;if(!n.isMounted)if(l)K=E||i;else return;H[qt]&&H[qt](!0);const P=T[y];P&&on(e,P)&&P.el[qt]&&P.el[qt](),D(K,[H])},enter(H){let K=c,P=u,q=f;if(!n.isMounted)if(l)K=w||c,P=b||u,q=S||f;else return;let R=!1;const te=H[qr]=Ie=>{R||(R=!0,Ie?D(q,[H]):D(P,[H]),W.delayedLeave&&W.delayedLeave(),H[qr]=void 0)};K?C(K,[H,te]):te()},leave(H,K){const P=String(e.key);if(H[qr]&&H[qr](!0),n.isUnmounting)return K();D(d,[H]);let q=!1;const R=H[qt]=te=>{q||(q=!0,K(),te?D(g,[H]):D(v,[H]),H[qt]=void 0,T[P]===e&&delete T[P])};T[P]=e,p?C(p,[H,R]):R()},clone(H){return vr(H,t,n,r)}};return W}function Vl(e){if(Cr(e))return e=Qt(e),e.children=null,e}function Ka(e){return Cr(e)?e.children?e.children[0]:void 0:e}function hr(e,t){e.shapeFlag&6&&e.component?hr(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Qo(e,t=!1,n){let r=[],l=0;for(let o=0;o1)for(let o=0;o!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function Q(e){le(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:l=200,timeout:o,suspensible:a=!0,onError:i}=e;let c=null,u,f=0;const d=()=>(f++,c=null,p()),p=()=>{let v;return c||(v=c=t().catch(g=>{if(g=g instanceof Error?g:new Error(String(g)),i)return new Promise((E,w)=>{i(g,()=>E(d()),()=>w(g),f+1)});throw g}).then(g=>v!==c&&c?c:(g&&(g.__esModule||g[Symbol.toStringTag]==="Module")&&(g=g.default),u=g,g)))};return O({name:"AsyncComponentWrapper",__asyncLoader:p,get __asyncResolved(){return u},setup(){const v=Ve;if(u)return()=>Nl(u,v);const g=S=>{c=null,Ar(S,v,13,!r)};if(a&&v.suspense||Tr)return p().then(S=>()=>Nl(S,v)).catch(S=>(g(S),()=>r?Pe(r,{error:S}):null));const E=U(!1),w=U(),b=U(!!l);return l&&setTimeout(()=>{b.value=!1},l),o!=null&&setTimeout(()=>{if(!E.value&&!w.value){const S=new Error(`Async component timed out after ${o}ms.`);g(S),w.value=S}},o),p().then(()=>{E.value=!0,v.parent&&Cr(v.parent.vnode)&&(v.parent.effect.dirty=!0,El(v.parent.update))}).catch(S=>{g(S),w.value=S}),()=>{if(E.value&&u)return Nl(u,v);if(w.value&&r)return Pe(r,{error:w.value});if(n&&!b.value)return Pe(n)}}})}function Nl(e,t){const{ref:n,props:r,children:l,ce:o}=t.vnode,a=Pe(e,r,l);return a.ref=n,a.ce=o,delete t.vnode.ce,a}const Cr=e=>e.type.__isKeepAlive;function Yd(e,t){qi(e,"a",t)}function Jd(e,t){qi(e,"da",t)}function qi(e,t,n=Ve){const r=e.__wdc||(e.__wdc=()=>{let l=n;for(;l;){if(l.isDeactivated)return;l=l.parent}return e()});if(Sl(t,r,n),n){let l=n.parent;for(;l&&l.parent;)Cr(l.parent.vnode)&&Qd(r,t,n,l),l=l.parent}}function Qd(e,t,n,r){const l=Sl(t,e,r,!0);Kn(()=>{Do(r[t],l)},n)}function Sl(e,t,n=Ve,r=!1){if(n){const l=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...a)=>{if(n.isUnmounted)return;dn();const i=Sr(n),c=ut(t,n,e,a);return i(),pn(),c});return r?l.unshift(o):l.push(o),o}}const Dt=e=>(t,n=Ve)=>(!Tr||e==="sp")&&Sl(e,(...r)=>t(...r),n),Xd=Dt("bm"),me=Dt("m"),Zd=Dt("bu"),Gi=Dt("u"),Xo=Dt("bum"),Kn=Dt("um"),e1=Dt("sp"),t1=Dt("rtg"),n1=Dt("rtc");function r1(e,t=Ve){Sl("ec",e,t)}function o6(e,t,n,r){let l;const o=n&&n[r];if(Z(e)||ae(e)){l=new Array(e.length);for(let a=0,i=e.length;at(a,i,void 0,o&&o[i]));else{const a=Object.keys(e);l=new Array(a.length);for(let i=0,c=a.length;ifl(t)?!(t.type===rt||t.type===qe&&!Wi(t.children)):!0)?e:null}const ho=e=>e?uc(e)?kl(e)||e.proxy:ho(e.parent):null,rr=Me(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ho(e.parent),$root:e=>ho(e.root),$emit:e=>e.emit,$options:e=>Zo(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,El(e.update)}),$nextTick:e=>e.n||(e.n=hn.bind(e.proxy)),$watch:e=>Gd.bind(e)}),zl=(e,t)=>e!==Ae&&!e.__isScriptSetup&&he(e,t),l1={get({_:e},t){const{ctx:n,setupState:r,data:l,props:o,accessCache:a,type:i,appContext:c}=e;let u;if(t[0]!=="$"){const v=a[t];if(v!==void 0)switch(v){case 1:return r[t];case 2:return l[t];case 4:return n[t];case 3:return o[t]}else{if(zl(r,t))return a[t]=1,r[t];if(l!==Ae&&he(l,t))return a[t]=2,l[t];if((u=e.propsOptions[0])&&he(u,t))return a[t]=3,o[t];if(n!==Ae&&he(n,t))return a[t]=4,n[t];mo&&(a[t]=0)}}const f=rr[t];let d,p;if(f)return t==="$attrs"&&Xe(e,"get",t),f(e);if((d=i.__cssModules)&&(d=d[t]))return d;if(n!==Ae&&he(n,t))return a[t]=4,n[t];if(p=c.config.globalProperties,he(p,t))return p[t]},set({_:e},t,n){const{data:r,setupState:l,ctx:o}=e;return zl(l,t)?(l[t]=n,!0):r!==Ae&&he(r,t)?(r[t]=n,!0):he(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:l,propsOptions:o}},a){let i;return!!n[a]||e!==Ae&&he(e,a)||zl(t,a)||(i=o[0])&&he(i,a)||he(r,a)||he(rr,a)||he(l.config.globalProperties,a)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:he(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Ya(e){return Z(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let mo=!0;function o1(e){const t=Zo(e),n=e.proxy,r=e.ctx;mo=!1,t.beforeCreate&&Ja(t.beforeCreate,e,"bc");const{data:l,computed:o,methods:a,watch:i,provide:c,inject:u,created:f,beforeMount:d,mounted:p,beforeUpdate:v,updated:g,activated:E,deactivated:w,beforeDestroy:b,beforeUnmount:S,destroyed:y,unmounted:T,render:D,renderTracked:C,renderTriggered:W,errorCaptured:H,serverPrefetch:K,expose:P,inheritAttrs:q,components:R,directives:te,filters:Ie}=t;if(u&&a1(u,r,null),a)for(const ne in a){const Y=a[ne];le(Y)&&(r[ne]=Y.bind(n))}if(l){const ne=l.call(n,n);Se(ne)&&(e.data=wr(ne))}if(mo=!0,o)for(const ne in o){const Y=o[ne],Oe=le(Y)?Y.bind(n,n):le(Y.get)?Y.get.bind(n,n):ct,_t=!le(Y)&&le(Y.set)?Y.set.bind(n):ct,ot=_({get:Oe,set:_t});Object.defineProperty(r,ne,{enumerable:!0,configurable:!0,get:()=>ot.value,set:Fe=>ot.value=Fe})}if(i)for(const ne in i)Ki(i[ne],r,n,ne);if(c){const ne=le(c)?c.call(n):c;Reflect.ownKeys(ne).forEach(Y=>{mt(Y,ne[Y])})}f&&Ja(f,e,"c");function G(ne,Y){Z(Y)?Y.forEach(Oe=>ne(Oe.bind(n))):Y&&ne(Y.bind(n))}if(G(Xd,d),G(me,p),G(Zd,v),G(Gi,g),G(Yd,E),G(Jd,w),G(r1,H),G(n1,C),G(t1,W),G(Xo,S),G(Kn,T),G(e1,K),Z(P))if(P.length){const ne=e.exposed||(e.exposed={});P.forEach(Y=>{Object.defineProperty(ne,Y,{get:()=>n[Y],set:Oe=>n[Y]=Oe})})}else e.exposed||(e.exposed={});D&&e.render===ct&&(e.render=D),q!=null&&(e.inheritAttrs=q),R&&(e.components=R),te&&(e.directives=te)}function a1(e,t,n=ct){Z(e)&&(e=go(e));for(const r in e){const l=e[r];let o;Se(l)?"default"in l?o=se(l.from||r,l.default,!0):o=se(l.from||r):o=se(l),Ne(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:a=>o.value=a}):t[r]=o}}function Ja(e,t,n){ut(Z(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Ki(e,t,n,r){const l=r.includes(".")?Ni(n,r):()=>n[r];if(ae(e)){const o=t[e];le(o)&&de(l,o)}else if(le(e))de(l,e.bind(n));else if(Se(e))if(Z(e))e.forEach(o=>Ki(o,t,n,r));else{const o=le(e.handler)?e.handler.bind(n):t[e.handler];le(o)&&de(l,o,e)}}function Zo(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:l,optionsCache:o,config:{optionMergeStrategies:a}}=e.appContext,i=o.get(t);let c;return i?c=i:!l.length&&!n&&!r?c=t:(c={},l.length&&l.forEach(u=>cl(c,u,a,!0)),cl(c,t,a)),Se(t)&&o.set(t,c),c}function cl(e,t,n,r=!1){const{mixins:l,extends:o}=t;o&&cl(e,o,n,!0),l&&l.forEach(a=>cl(e,a,n,!0));for(const a in t)if(!(r&&a==="expose")){const i=s1[a]||n&&n[a];e[a]=i?i(e[a],t[a]):t[a]}return e}const s1={data:Qa,props:Xa,emits:Xa,methods:tr,computed:tr,beforeCreate:Ue,created:Ue,beforeMount:Ue,mounted:Ue,beforeUpdate:Ue,updated:Ue,beforeDestroy:Ue,beforeUnmount:Ue,destroyed:Ue,unmounted:Ue,activated:Ue,deactivated:Ue,errorCaptured:Ue,serverPrefetch:Ue,components:tr,directives:tr,watch:c1,provide:Qa,inject:i1};function Qa(e,t){return t?e?function(){return Me(le(e)?e.call(this,this):e,le(t)?t.call(this,this):t)}:t:e}function i1(e,t){return tr(go(e),go(t))}function go(e){if(Z(e)){const t={};for(let n=0;n1)return n&&le(t)?t.call(r&&r.proxy):t}}function d1(e,t,n,r=!1){const l={},o={};ll(o,Tl,1),e.propsDefaults=Object.create(null),Ji(e,t,l,o);for(const a in e.propsOptions[0])a in l||(l[a]=void 0);n?e.props=r?l:Li(l):e.type.props?e.props=l:e.props=o,e.attrs=o}function p1(e,t,n,r){const{props:l,attrs:o,vnode:{patchFlag:a}}=e,i=fe(l),[c]=e.propsOptions;let u=!1;if((r||a>0)&&!(a&16)){if(a&8){const f=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[p,v]=Qi(d,t,!0);Me(a,p),v&&i.push(...v)};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}if(!o&&!c)return Se(e)&&r.set(e,Ln),Ln;if(Z(o))for(let f=0;f-1,v[1]=E<0||g-1||he(v,"default"))&&i.push(d)}}}const u=[a,i];return Se(e)&&r.set(e,u),u}function Za(e){return e[0]!=="$"&&!In(e)}function es(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function ts(e,t){return es(e)===es(t)}function ns(e,t){return Z(t)?t.findIndex(n=>ts(n,e)):le(t)&&ts(t,e)?0:-1}const Xi=e=>e[0]==="_"||e==="$stable",ea=e=>Z(e)?e.map(vt):[vt(e)],v1=(e,t,n)=>{if(t._n)return t;const r=$d((...l)=>ea(t(...l)),n);return r._c=!1,r},Zi=(e,t,n)=>{const r=e._ctx;for(const l in e){if(Xi(l))continue;const o=e[l];if(le(o))t[l]=v1(l,o,r);else if(o!=null){const a=ea(o);t[l]=()=>a}}},ec=(e,t)=>{const n=ea(t);e.slots.default=()=>n},h1=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=fe(t),ll(t,"_",n)):Zi(t,e.slots={})}else e.slots={},t&&ec(e,t);ll(e.slots,Tl,1)},m1=(e,t,n)=>{const{vnode:r,slots:l}=e;let o=!0,a=Ae;if(r.shapeFlag&32){const i=t._;i?n&&i===1?o=!1:(Me(l,t),!n&&i===1&&delete l._):(o=!t.$stable,Zi(t,l)),a=t}else t&&(ec(e,t),a={default:1});if(o)for(const i in l)!Xi(i)&&a[i]==null&&delete l[i]};function ul(e,t,n,r,l=!1){if(Z(e)){e.forEach((p,v)=>ul(p,t&&(Z(t)?t[v]:t),n,r,l));return}if(On(r)&&!l)return;const o=r.shapeFlag&4?kl(r.component)||r.component.proxy:r.el,a=l?null:o,{i,r:c}=e,u=t&&t.r,f=i.refs===Ae?i.refs={}:i.refs,d=i.setupState;if(u!=null&&u!==c&&(ae(u)?(f[u]=null,he(d,u)&&(d[u]=null)):Ne(u)&&(u.value=null)),le(c))Jt(c,i,12,[a,f]);else{const p=ae(c),v=Ne(c);if(p||v){const g=()=>{if(e.f){const E=p?he(d,c)?d[c]:f[c]:c.value;l?Z(E)&&Do(E,o):Z(E)?E.includes(o)||E.push(o):p?(f[c]=[o],he(d,c)&&(d[c]=f[c])):(c.value=[o],e.k&&(f[e.k]=c.value))}else p?(f[c]=a,he(d,c)&&(d[c]=a)):v&&(c.value=a,e.k&&(f[e.k]=a))};a?(g.id=-1,Ye(g,n)):g()}}}let Vt=!1;const g1=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",y1=e=>e.namespaceURI.includes("MathML"),Gr=e=>{if(g1(e))return"svg";if(y1(e))return"mathml"},Wr=e=>e.nodeType===8;function b1(e){const{mt:t,p:n,o:{patchProp:r,createText:l,nextSibling:o,parentNode:a,remove:i,insert:c,createComment:u}}=e,f=(y,T)=>{if(!T.hasChildNodes()){n(null,y,T),sl(),T._vnode=y;return}Vt=!1,d(T.firstChild,y,null,null,null),sl(),T._vnode=y,Vt&&console.error("Hydration completed but contains mismatches.")},d=(y,T,D,C,W,H=!1)=>{const K=Wr(y)&&y.data==="[",P=()=>E(y,T,D,C,W,K),{type:q,ref:R,shapeFlag:te,patchFlag:Ie}=T;let ke=y.nodeType;T.el=y,Ie===-2&&(H=!1,T.dynamicChildren=null);let G=null;switch(q){case Hn:ke!==3?T.children===""?(c(T.el=l(""),a(y),y),G=y):G=P():(y.data!==T.children&&(Vt=!0,y.data=T.children),G=o(y));break;case rt:S(y)?(G=o(y),b(T.el=y.content.firstChild,y,D)):ke!==8||K?G=P():G=o(y);break;case or:if(K&&(y=o(y),ke=y.nodeType),ke===1||ke===3){G=y;const ne=!T.children.length;for(let Y=0;Y{H=H||!!T.dynamicChildren;const{type:K,props:P,patchFlag:q,shapeFlag:R,dirs:te,transition:Ie}=T,ke=K==="input"||K==="option";if(ke||q!==-1){te&&At(T,null,D,"created");let G=!1;if(S(y)){G=tc(C,Ie)&&D&&D.vnode.props&&D.vnode.props.appear;const Y=y.content.firstChild;G&&Ie.beforeEnter(Y),b(Y,y,D),T.el=y=Y}if(R&16&&!(P&&(P.innerHTML||P.textContent))){let Y=v(y.firstChild,T,y,D,C,W,H);for(;Y;){Vt=!0;const Oe=Y;Y=Y.nextSibling,i(Oe)}}else R&8&&y.textContent!==T.children&&(Vt=!0,y.textContent=T.children);if(P)if(ke||!H||q&48)for(const Y in P)(ke&&(Y.endsWith("value")||Y==="indeterminate")||_r(Y)&&!In(Y)||Y[0]===".")&&r(y,Y,null,P[Y],void 0,void 0,D);else P.onClick&&r(y,"onClick",null,P.onClick,void 0,void 0,D);let ne;(ne=P&&P.onVnodeBeforeMount)&&st(ne,D,T),te&&At(T,null,D,"beforeMount"),((ne=P&&P.onVnodeMounted)||te||G)&&Hi(()=>{ne&&st(ne,D,T),G&&Ie.enter(y),te&&At(T,null,D,"mounted")},C)}return y.nextSibling},v=(y,T,D,C,W,H,K)=>{K=K||!!T.dynamicChildren;const P=T.children,q=P.length;for(let R=0;R{const{slotScopeIds:K}=T;K&&(W=W?W.concat(K):K);const P=a(y),q=v(o(y),T,P,D,C,W,H);return q&&Wr(q)&&q.data==="]"?o(T.anchor=q):(Vt=!0,c(T.anchor=u("]"),P,q),q)},E=(y,T,D,C,W,H)=>{if(Vt=!0,T.el=null,H){const q=w(y);for(;;){const R=o(y);if(R&&R!==q)i(R);else break}}const K=o(y),P=a(y);return i(y),n(null,T,P,K,D,C,Gr(P),W),K},w=(y,T="[",D="]")=>{let C=0;for(;y;)if(y=o(y),y&&Wr(y)&&(y.data===T&&C++,y.data===D)){if(C===0)return o(y);C--}return y},b=(y,T,D)=>{const C=T.parentNode;C&&C.replaceChild(y,T);let W=D;for(;W;)W.vnode.el===T&&(W.vnode.el=W.subTree.el=y),W=W.parent},S=y=>y.nodeType===1&&y.tagName.toLowerCase()==="template";return[f,d]}const Ye=Hi;function _1(e){return E1(e,b1)}function E1(e,t){const n=pi();n.__VUE__=!0;const{insert:r,remove:l,patchProp:o,createElement:a,createText:i,createComment:c,setText:u,setElementText:f,parentNode:d,nextSibling:p,setScopeId:v=ct,insertStaticContent:g}=e,E=(h,m,A,I=null,x=null,M=null,N=void 0,$=null,F=!!m.dynamicChildren)=>{if(h===m)return;h&&!on(h,m)&&(I=L(h),Fe(h,x,M,!0),h=null),m.patchFlag===-2&&(F=!1,m.dynamicChildren=null);const{type:B,ref:j,shapeFlag:ee}=m;switch(B){case Hn:w(h,m,A,I);break;case rt:b(h,m,A,I);break;case or:h==null&&S(m,A,I,N);break;case qe:R(h,m,A,I,x,M,N,$,F);break;default:ee&1?D(h,m,A,I,x,M,N,$,F):ee&6?te(h,m,A,I,x,M,N,$,F):(ee&64||ee&128)&&B.process(h,m,A,I,x,M,N,$,F,J)}j!=null&&x&&ul(j,h&&h.ref,M,m||h,!m)},w=(h,m,A,I)=>{if(h==null)r(m.el=i(m.children),A,I);else{const x=m.el=h.el;m.children!==h.children&&u(x,m.children)}},b=(h,m,A,I)=>{h==null?r(m.el=c(m.children||""),A,I):m.el=h.el},S=(h,m,A,I)=>{[h.el,h.anchor]=g(h.children,m,A,I,h.el,h.anchor)},y=({el:h,anchor:m},A,I)=>{let x;for(;h&&h!==m;)x=p(h),r(h,A,I),h=x;r(m,A,I)},T=({el:h,anchor:m})=>{let A;for(;h&&h!==m;)A=p(h),l(h),h=A;l(m)},D=(h,m,A,I,x,M,N,$,F)=>{m.type==="svg"?N="svg":m.type==="math"&&(N="mathml"),h==null?C(m,A,I,x,M,N,$,F):K(h,m,x,M,N,$,F)},C=(h,m,A,I,x,M,N,$)=>{let F,B;const{props:j,shapeFlag:ee,transition:X,dirs:re}=h;if(F=h.el=a(h.type,M,j&&j.is,j),ee&8?f(F,h.children):ee&16&&H(h.children,F,null,I,x,jl(h,M),N,$),re&&At(h,null,I,"created"),W(F,h,h.scopeId,N,I),j){for(const _e in j)_e!=="value"&&!In(_e)&&o(F,_e,null,j[_e],M,h.children,I,x,Re);"value"in j&&o(F,"value",null,j.value,M),(B=j.onVnodeBeforeMount)&&st(B,I,h)}re&&At(h,null,I,"beforeMount");const oe=tc(x,X);oe&&X.beforeEnter(F),r(F,m,A),((B=j&&j.onVnodeMounted)||oe||re)&&Ye(()=>{B&&st(B,I,h),oe&&X.enter(F),re&&At(h,null,I,"mounted")},x)},W=(h,m,A,I,x)=>{if(A&&v(h,A),I)for(let M=0;M{for(let B=F;B{const $=m.el=h.el;let{patchFlag:F,dynamicChildren:B,dirs:j}=m;F|=h.patchFlag&16;const ee=h.props||Ae,X=m.props||Ae;let re;if(A&&nn(A,!1),(re=X.onVnodeBeforeUpdate)&&st(re,A,m,h),j&&At(m,h,A,"beforeUpdate"),A&&nn(A,!0),B?P(h.dynamicChildren,B,$,A,I,jl(m,x),M):N||Y(h,m,$,null,A,I,jl(m,x),M,!1),F>0){if(F&16)q($,m,ee,X,A,I,x);else if(F&2&&ee.class!==X.class&&o($,"class",null,X.class,x),F&4&&o($,"style",ee.style,X.style,x),F&8){const oe=m.dynamicProps;for(let _e=0;_e{re&&st(re,A,m,h),j&&At(m,h,A,"updated")},I)},P=(h,m,A,I,x,M,N)=>{for(let $=0;${if(A!==I){if(A!==Ae)for(const $ in A)!In($)&&!($ in I)&&o(h,$,A[$],null,N,m.children,x,M,Re);for(const $ in I){if(In($))continue;const F=I[$],B=A[$];F!==B&&$!=="value"&&o(h,$,B,F,N,m.children,x,M,Re)}"value"in I&&o(h,"value",A.value,I.value,N)}},R=(h,m,A,I,x,M,N,$,F)=>{const B=m.el=h?h.el:i(""),j=m.anchor=h?h.anchor:i("");let{patchFlag:ee,dynamicChildren:X,slotScopeIds:re}=m;re&&($=$?$.concat(re):re),h==null?(r(B,A,I),r(j,A,I),H(m.children||[],A,j,x,M,N,$,F)):ee>0&&ee&64&&X&&h.dynamicChildren?(P(h.dynamicChildren,X,A,x,M,N,$),(m.key!=null||x&&m===x.subTree)&&nc(h,m,!0)):Y(h,m,A,j,x,M,N,$,F)},te=(h,m,A,I,x,M,N,$,F)=>{m.slotScopeIds=$,h==null?m.shapeFlag&512?x.ctx.activate(m,A,I,N,F):Ie(m,A,I,x,M,N,F):ke(h,m,F)},Ie=(h,m,A,I,x,M,N)=>{const $=h.component=I1(h,I,x);if(Cr(h)&&($.ctx.renderer=J),B1($),$.asyncDep){if(x&&x.registerDep($,G),!h.el){const F=$.subTree=Pe(rt);b(null,F,m,A)}}else G($,h,m,A,x,M,N)},ke=(h,m,A)=>{const I=m.component=h.component;if(Fd(h,m,A))if(I.asyncDep&&!I.asyncResolved){ne(I,m,A);return}else I.next=m,Bd(I.update),I.effect.dirty=!0,I.update();else m.el=h.el,I.vnode=m},G=(h,m,A,I,x,M,N)=>{const $=()=>{if(h.isMounted){let{next:j,bu:ee,u:X,parent:re,vnode:oe}=h;{const wn=rc(h);if(wn){j&&(j.el=oe.el,ne(h,j,N)),wn.asyncDep.then(()=>{h.isUnmounted||$()});return}}let _e=j,Le;nn(h,!1),j?(j.el=oe.el,ne(h,j,N)):j=oe,ee&&tl(ee),(Le=j.props&&j.props.onVnodeBeforeUpdate)&&st(Le,re,j,oe),nn(h,!0);const He=Hl(h),dt=h.subTree;h.subTree=He,E(dt,He,d(dt.el),L(dt),h,x,M),j.el=He.el,_e===null&&Hd(h,He.el),X&&Ye(X,x),(Le=j.props&&j.props.onVnodeUpdated)&&Ye(()=>st(Le,re,j,oe),x)}else{let j;const{el:ee,props:X}=m,{bm:re,m:oe,parent:_e}=h,Le=On(m);if(nn(h,!1),re&&tl(re),!Le&&(j=X&&X.onVnodeBeforeMount)&&st(j,_e,m),nn(h,!0),ee&&we){const He=()=>{h.subTree=Hl(h),we(ee,h.subTree,h,x,null)};Le?m.type.__asyncLoader().then(()=>!h.isUnmounted&&He()):He()}else{const He=h.subTree=Hl(h);E(null,He,A,I,h,x,M),m.el=He.el}if(oe&&Ye(oe,x),!Le&&(j=X&&X.onVnodeMounted)){const He=m;Ye(()=>st(j,_e,He),x)}(m.shapeFlag&256||_e&&On(_e.vnode)&&_e.vnode.shapeFlag&256)&&h.a&&Ye(h.a,x),h.isMounted=!0,m=A=I=null}},F=h.effect=new No($,ct,()=>El(B),h.scope),B=h.update=()=>{F.dirty&&F.run()};B.id=h.uid,nn(h,!0),B()},ne=(h,m,A)=>{m.component=h;const I=h.vnode.props;h.vnode=m,h.next=null,p1(h,m.props,I,A),m1(h,m.children,A),dn(),qa(h),pn()},Y=(h,m,A,I,x,M,N,$,F=!1)=>{const B=h&&h.children,j=h?h.shapeFlag:0,ee=m.children,{patchFlag:X,shapeFlag:re}=m;if(X>0){if(X&128){_t(B,ee,A,I,x,M,N,$,F);return}else if(X&256){Oe(B,ee,A,I,x,M,N,$,F);return}}re&8?(j&16&&Re(B,x,M),ee!==B&&f(A,ee)):j&16?re&16?_t(B,ee,A,I,x,M,N,$,F):Re(B,x,M,!0):(j&8&&f(A,""),re&16&&H(ee,A,I,x,M,N,$,F))},Oe=(h,m,A,I,x,M,N,$,F)=>{h=h||Ln,m=m||Ln;const B=h.length,j=m.length,ee=Math.min(B,j);let X;for(X=0;Xj?Re(h,x,M,!0,!1,ee):H(m,A,I,x,M,N,$,F,ee)},_t=(h,m,A,I,x,M,N,$,F)=>{let B=0;const j=m.length;let ee=h.length-1,X=j-1;for(;B<=ee&&B<=X;){const re=h[B],oe=m[B]=F?Gt(m[B]):vt(m[B]);if(on(re,oe))E(re,oe,A,null,x,M,N,$,F);else break;B++}for(;B<=ee&&B<=X;){const re=h[ee],oe=m[X]=F?Gt(m[X]):vt(m[X]);if(on(re,oe))E(re,oe,A,null,x,M,N,$,F);else break;ee--,X--}if(B>ee){if(B<=X){const re=X+1,oe=reX)for(;B<=ee;)Fe(h[B],x,M,!0),B++;else{const re=B,oe=B,_e=new Map;for(B=oe;B<=X;B++){const et=m[B]=F?Gt(m[B]):vt(m[B]);et.key!=null&&_e.set(et.key,B)}let Le,He=0;const dt=X-oe+1;let wn=!1,Ra=0;const Jn=new Array(dt);for(B=0;B=dt){Fe(et,x,M,!0);continue}let wt;if(et.key!=null)wt=_e.get(et.key);else for(Le=oe;Le<=X;Le++)if(Jn[Le-oe]===0&&on(et,m[Le])){wt=Le;break}wt===void 0?Fe(et,x,M,!0):(Jn[wt-oe]=B+1,wt>=Ra?Ra=wt:wn=!0,E(et,m[wt],A,null,x,M,N,$,F),He++)}const $a=wn?w1(Jn):Ln;for(Le=$a.length-1,B=dt-1;B>=0;B--){const et=oe+B,wt=m[et],Ma=et+1{const{el:M,type:N,transition:$,children:F,shapeFlag:B}=h;if(B&6){ot(h.component.subTree,m,A,I);return}if(B&128){h.suspense.move(m,A,I);return}if(B&64){N.move(h,m,A,J);return}if(N===qe){r(M,m,A);for(let ee=0;ee$.enter(M),x);else{const{leave:ee,delayLeave:X,afterLeave:re}=$,oe=()=>r(M,m,A),_e=()=>{ee(M,()=>{oe(),re&&re()})};X?X(M,oe,_e):_e()}else r(M,m,A)},Fe=(h,m,A,I=!1,x=!1)=>{const{type:M,props:N,ref:$,children:F,dynamicChildren:B,shapeFlag:j,patchFlag:ee,dirs:X}=h;if($!=null&&ul($,null,A,h,!0),j&256){m.ctx.deactivate(h);return}const re=j&1&&X,oe=!On(h);let _e;if(oe&&(_e=N&&N.onVnodeBeforeUnmount)&&st(_e,m,h),j&6)Et(h.component,A,I);else{if(j&128){h.suspense.unmount(A,I);return}re&&At(h,null,m,"beforeUnmount"),j&64?h.type.remove(h,m,A,x,J,I):B&&(M!==qe||ee>0&&ee&64)?Re(B,m,A,!1,!0):(M===qe&&ee&384||!x&&j&16)&&Re(F,m,A),I&&Ze(h)}(oe&&(_e=N&&N.onVnodeUnmounted)||re)&&Ye(()=>{_e&&st(_e,m,h),re&&At(h,null,m,"unmounted")},A)},Ze=h=>{const{type:m,el:A,anchor:I,transition:x}=h;if(m===qe){xt(A,I);return}if(m===or){T(h);return}const M=()=>{l(A),x&&!x.persisted&&x.afterLeave&&x.afterLeave()};if(h.shapeFlag&1&&x&&!x.persisted){const{leave:N,delayLeave:$}=x,F=()=>N(A,M);$?$(h.el,M,F):F()}else M()},xt=(h,m)=>{let A;for(;h!==m;)A=p(h),l(h),h=A;l(m)},Et=(h,m,A)=>{const{bum:I,scope:x,update:M,subTree:N,um:$}=h;I&&tl(I),x.stop(),M&&(M.active=!1,Fe(N,h,m,A)),$&&Ye($,m),Ye(()=>{h.isUnmounted=!0},m),m&&m.pendingBranch&&!m.isUnmounted&&h.asyncDep&&!h.asyncResolved&&h.suspenseId===m.pendingId&&(m.deps--,m.deps===0&&m.resolve())},Re=(h,m,A,I=!1,x=!1,M=0)=>{for(let N=M;Nh.shapeFlag&6?L(h.component.subTree):h.shapeFlag&128?h.suspense.next():p(h.anchor||h.el);let z=!1;const V=(h,m,A)=>{h==null?m._vnode&&Fe(m._vnode,null,null,!0):E(m._vnode||null,h,m,null,null,null,A),z||(z=!0,qa(),sl(),z=!1),m._vnode=h},J={p:E,um:Fe,m:ot,r:Ze,mt:Ie,mc:H,pc:Y,pbc:P,n:L,o:e};let pe,we;return t&&([pe,we]=t(J)),{render:V,hydrate:pe,createApp:f1(V,pe)}}function jl({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function nn({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function tc(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function nc(e,t,n=!1){const r=e.children,l=t.children;if(Z(r)&&Z(l))for(let o=0;o>1,e[n[i]]0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,a=n[o-1];o-- >0;)n[o]=a,a=t[a];return n}function rc(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:rc(t)}const A1=e=>e.__isTeleport,qe=Symbol.for("v-fgt"),Hn=Symbol.for("v-txt"),rt=Symbol.for("v-cmt"),or=Symbol.for("v-stc"),ar=[];let ht=null;function lc(e=!1){ar.push(ht=e?null:[])}function C1(){ar.pop(),ht=ar[ar.length-1]||null}let mr=1;function rs(e){mr+=e}function oc(e){return e.dynamicChildren=mr>0?ht||Ln:null,C1(),mr>0&&ht&&ht.push(e),e}function s6(e,t,n,r,l,o){return oc(ic(e,t,n,r,l,o,!0))}function ac(e,t,n,r,l){return oc(Pe(e,t,n,r,l,!0))}function fl(e){return e?e.__v_isVNode===!0:!1}function on(e,t){return e.type===t.type&&e.key===t.key}const Tl="__vInternal",sc=({key:e})=>e??null,nl=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ae(e)||Ne(e)||le(e)?{i:De,r:e,k:t,f:!!n}:e:null);function ic(e,t=null,n=null,r=0,l=null,o=e===qe?0:1,a=!1,i=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&sc(t),ref:t&&nl(t),scopeId:Al,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:l,dynamicChildren:null,appContext:null,ctx:De};return i?(ta(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=ae(n)?8:16),mr>0&&!a&&ht&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&ht.push(c),c}const Pe=S1;function S1(e,t=null,n=null,r=0,l=null,o=!1){if((!e||e===Vd)&&(e=rt),fl(e)){const i=Qt(e,t,!0);return n&&ta(i,n),mr>0&&!o&&ht&&(i.shapeFlag&6?ht[ht.indexOf(e)]=i:ht.push(i)),i.patchFlag|=-2,i}if(M1(e)&&(e=e.__vccOpts),t){t=T1(t);let{class:i,style:c}=t;i&&!ae(i)&&(t.class=Vo(i)),Se(c)&&(xi(c)&&!Z(c)&&(c=Me({},c)),t.style=Ho(c))}const a=ae(e)?1:zd(e)?128:A1(e)?64:Se(e)?4:le(e)?2:0;return ic(e,t,n,r,l,a,o,!0)}function T1(e){return e?xi(e)||Tl in e?Me({},e):e:null}function Qt(e,t,n=!1){const{props:r,ref:l,patchFlag:o,children:a}=e,i=t?k1(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:i,key:i&&sc(i),ref:t&&t.ref?n&&l?Z(l)?l.concat(nl(t)):[l,nl(t)]:nl(t):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:a,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==qe?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Qt(e.ssContent),ssFallback:e.ssFallback&&Qt(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function cc(e=" ",t=0){return Pe(Hn,null,e,t)}function i6(e,t){const n=Pe(or,null,e);return n.staticCount=t,n}function c6(e="",t=!1){return t?(lc(),ac(rt,null,e)):Pe(rt,null,e)}function vt(e){return e==null||typeof e=="boolean"?Pe(rt):Z(e)?Pe(qe,null,e.slice()):typeof e=="object"?Gt(e):Pe(Hn,null,String(e))}function Gt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Qt(e)}function ta(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(Z(t))n=16;else if(typeof t=="object")if(r&65){const l=t.default;l&&(l._c&&(l._d=!1),ta(e,l()),l._c&&(l._d=!0));return}else{n=32;const l=t._;!l&&!(Tl in t)?t._ctx=De:l===3&&De&&(De.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else le(t)?(t={default:t,_ctx:De},n=32):(t=String(t),r&64?(n=16,t=[cc(t)]):n=8);e.children=t,e.shapeFlag|=n}function k1(...e){const t={};for(let n=0;nVe||De;let dl,bo;{const e=pi(),t=(n,r)=>{let l;return(l=e[n])||(l=e[n]=[]),l.push(r),o=>{l.length>1?l.forEach(a=>a(o)):l[0](o)}};dl=t("__VUE_INSTANCE_SETTERS__",n=>Ve=n),bo=t("__VUE_SSR_SETTERS__",n=>Tr=n)}const Sr=e=>{const t=Ve;return dl(e),e.scope.on(),()=>{e.scope.off(),dl(t)}},ls=()=>{Ve&&Ve.scope.off(),dl(null)};function uc(e){return e.vnode.shapeFlag&4}let Tr=!1;function B1(e,t=!1){t&&bo(t);const{props:n,children:r}=e.vnode,l=uc(e);d1(e,n,l,t),h1(e,r);const o=l?P1(e,t):void 0;return t&&bo(!1),o}function P1(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ii(new Proxy(e.ctx,l1));const{setup:r}=n;if(r){const l=e.setupContext=r.length>1?R1(e):null,o=Sr(e);dn();const a=Jt(r,e,0,[e.props,l]);if(pn(),o(),ui(a)){if(a.then(ls,ls),t)return a.then(i=>{os(e,i,t)}).catch(i=>{Ar(i,e,0)});e.asyncDep=a}else os(e,a,t)}else fc(e,t)}function os(e,t,n){le(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Se(t)&&(e.setupState=Oi(t)),fc(e,n)}let as;function fc(e,t,n){const r=e.type;if(!e.render){if(!t&&as&&!r.render){const l=r.template||Zo(e).template;if(l){const{isCustomElement:o,compilerOptions:a}=e.appContext.config,{delimiters:i,compilerOptions:c}=r,u=Me(Me({isCustomElement:o,delimiters:i},a),c);r.render=as(l,u)}}e.render=r.render||ct}{const l=Sr(e);dn();try{o1(e)}finally{pn(),l()}}}function O1(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return Xe(e,"get","$attrs"),t[n]}}))}function R1(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return O1(e)},slots:e.slots,emit:e.emit,expose:t}}function kl(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Oi(Ii(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in rr)return rr[n](e)},has(t,n){return n in t||n in rr}}))}function $1(e,t=!0){return le(e)?e.displayName||e.name:e.name||t&&e.__name}function M1(e){return le(e)&&"__vccOpts"in e}const _=(e,t)=>wd(e,t,Tr);function u6(e,t,n=Ae){const r=mn(),l=lt(t),o=en(t),a=Yo((c,u)=>{let f;return qd(()=>{const d=e[t];St(f,d)&&(f=d,u())}),{get(){return c(),n.get?n.get(f):f},set(d){const p=r.vnode.props;!(p&&(t in p||l in p||o in p)&&(`onUpdate:${t}`in p||`onUpdate:${l}`in p||`onUpdate:${o}`in p))&&St(d,f)&&(f=d,u()),r.emit(`update:${t}`,n.set?n.set(d):d)}}}),i=t==="modelValue"?"modelModifiers":`${t}Modifiers`;return a[Symbol.iterator]=()=>{let c=0;return{next(){return c<2?{value:c++?e[i]||{}:a,done:!1}:{done:!0}}}},a}function s(e,t,n){const r=arguments.length;return r===2?Se(t)&&!Z(t)?fl(t)?Pe(e,null,[t]):Pe(e,t):Pe(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&fl(n)&&(n=[n]),Pe(e,t,n))}const D1="3.4.21";/** * @vue/runtime-dom v3.4.21 * (c) 2018-present Yuxi (Evan) You and Vue contributors * @license MIT -**/const F1="http://www.w3.org/2000/svg",H1="http://www.w3.org/1998/Math/MathML",Wt=typeof document<"u"?document:null,ss=Wt&&Wt.createElement("template"),V1={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const l=t==="svg"?Wt.createElementNS(F1,e):t==="mathml"?Wt.createElementNS(H1,e):Wt.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&l.setAttribute("multiple",r.multiple),l},createText:e=>Wt.createTextNode(e),createComment:e=>Wt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Wt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,l,o){const a=n?n.previousSibling:t.lastChild;if(l&&(l===o||l.nextSibling))for(;t.insertBefore(l.cloneNode(!0),n),!(l===o||!(l=l.nextSibling)););else{ss.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const i=ss.content;if(r==="svg"||r==="mathml"){const c=i.firstChild;for(;c.firstChild;)i.appendChild(c.firstChild);i.removeChild(c)}t.insertBefore(i,n)}return[a?a.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Nt="transition",Qn="animation",Vn=Symbol("_vtc"),Xt=(e,{slots:t})=>s(Kd,pc(e),t);Xt.displayName="Transition";const dc={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},N1=Xt.props=Me({},ji,dc),rn=(e,t=[])=>{Z(e)?e.forEach(n=>n(...t)):e&&e(...t)},is=e=>e?Z(e)?e.some(t=>t.length>1):e.length>1:!1;function pc(e){const t={};for(const $ in e)$ in dc||(t[$]=e[$]);if(e.css===!1)return t;const{name:n="v",type:r,duration:l,enterFromClass:o=`${n}-enter-from`,enterActiveClass:a=`${n}-enter-active`,enterToClass:i=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:u=a,appearToClass:f=i,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:p=`${n}-leave-active`,leaveToClass:v=`${n}-leave-to`}=e,g=z1(l),E=g&&g[0],w=g&&g[1],{onBeforeEnter:b,onEnter:S,onEnterCancelled:y,onLeave:T,onLeaveCancelled:D,onBeforeAppear:C=b,onAppear:W=S,onAppearCancelled:H=y}=t,K=($,te,Ie)=>{jt($,te?f:i),jt($,te?u:a),Ie&&Ie()},B=($,te)=>{$._isLeaving=!1,jt($,d),jt($,v),jt($,p),te&&te()},q=$=>(te,Ie)=>{const ke=$?W:S,G=()=>K(te,$,Ie);rn(ke,[te,G]),cs(()=>{jt(te,$?c:o),Pt(te,$?f:i),is(ke)||us(te,r,E,G)})};return Me(t,{onBeforeEnter($){rn(b,[$]),Pt($,o),Pt($,a)},onBeforeAppear($){rn(C,[$]),Pt($,c),Pt($,u)},onEnter:q(!1),onAppear:q(!0),onLeave($,te){$._isLeaving=!0;const Ie=()=>B($,te);Pt($,d),hc(),Pt($,p),cs(()=>{$._isLeaving&&(jt($,d),Pt($,v),is(T)||us($,r,w,Ie))}),rn(T,[$,Ie])},onEnterCancelled($){K($,!1),rn(y,[$])},onAppearCancelled($){K($,!0),rn(H,[$])},onLeaveCancelled($){B($),rn(D,[$])}})}function z1(e){if(e==null)return null;if(Se(e))return[Ul(e.enter),Ul(e.leave)];{const t=Ul(e);return[t,t]}}function Ul(e){return Gf(e)}function Pt(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Vn]||(e[Vn]=new Set)).add(t)}function jt(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Vn];n&&(n.delete(t),n.size||(e[Vn]=void 0))}function cs(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let j1=0;function us(e,t,n,r){const l=e._endId=++j1,o=()=>{l===e._endId&&r()};if(n)return setTimeout(o,n);const{type:a,timeout:i,propCount:c}=vc(e,t);if(!a)return r();const u=a+"end";let f=0;const d=()=>{e.removeEventListener(u,p),o()},p=v=>{v.target===e&&++f>=c&&d()};setTimeout(()=>{f(n[g]||"").split(", "),l=r(`${Nt}Delay`),o=r(`${Nt}Duration`),a=fs(l,o),i=r(`${Qn}Delay`),c=r(`${Qn}Duration`),u=fs(i,c);let f=null,d=0,p=0;t===Nt?a>0&&(f=Nt,d=a,p=o.length):t===Qn?u>0&&(f=Qn,d=u,p=c.length):(d=Math.max(a,u),f=d>0?a>u?Nt:Qn:null,p=f?f===Nt?o.length:c.length:0);const v=f===Nt&&/\b(transform|all)(,|$)/.test(r(`${Nt}Property`).toString());return{type:f,timeout:d,propCount:p,hasTransform:v}}function fs(e,t){for(;e.lengthds(n)+ds(e[r])))}function ds(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function hc(){return document.body.offsetHeight}function U1(e,t,n){const r=e[Vn];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const pl=Symbol("_vod"),mc=Symbol("_vsh"),f6={beforeMount(e,{value:t},{transition:n}){e[pl]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Xn(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),Xn(e,!0),r.enter(e)):r.leave(e,()=>{Xn(e,!1)}):Xn(e,t))},beforeUnmount(e,{value:t}){Xn(e,t)}};function Xn(e,t){e.style.display=t?e[pl]:"none",e[mc]=!t}const q1=Symbol(""),G1=/(^|;)\s*display\s*:/;function W1(e,t,n){const r=e.style,l=ae(n);let o=!1;if(n&&!l){if(t)if(ae(t))for(const a of t.split(";")){const i=a.slice(0,a.indexOf(":")).trim();n[i]==null&&rl(r,i,"")}else for(const a in t)n[a]==null&&rl(r,a,"");for(const a in n)a==="display"&&(o=!0),rl(r,a,n[a])}else if(l){if(t!==n){const a=r[q1];a&&(n+=";"+a),r.cssText=n,o=G1.test(n)}}else t&&e.removeAttribute("style");pl in e&&(e[pl]=o?r.display:"",e[mc]&&(r.display="none"))}const ps=/\s*!important$/;function rl(e,t,n){if(Z(n))n.forEach(r=>rl(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=K1(e,t);ps.test(n)?e.setProperty(en(r),n.replace(ps,""),"important"):e[r]=n}}const vs=["Webkit","Moz","ms"],ql={};function K1(e,t){const n=ql[t];if(n)return n;let r=lt(t);if(r!=="filter"&&r in e)return ql[t]=r;r=Er(r);for(let l=0;lGl||(ep.then(()=>Gl=0),Gl=Date.now());function np(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;ut(rp(r,n.value),t,5,[r])};return n.value=e,n.attached=tp(),n}function rp(e,t){if(Z(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>l=>!l._stopped&&r&&r(l))}else return t}const ys=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,lp=(e,t,n,r,l,o,a,i,c)=>{const u=l==="svg";t==="class"?U1(e,r,u):t==="style"?W1(e,n,r):_r(t)?Mo(t)||X1(e,t,n,r,a):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):op(e,t,r,u))?J1(e,t,r,o,a,i,c):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Y1(e,t,r,u))};function op(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&ys(t)&&le(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const l=e.tagName;if(l==="IMG"||l==="VIDEO"||l==="CANVAS"||l==="SOURCE")return!1}return ys(t)&&ae(n)?!1:t in e}const gc=new WeakMap,yc=new WeakMap,vl=Symbol("_moveCb"),bs=Symbol("_enterCb"),bc={name:"TransitionGroup",props:Me({},N1,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=mn(),r=zi();let l,o;return Gi(()=>{if(!l.length)return;const a=e.moveClass||`${e.name||"v"}-move`;if(!fp(l[0].el,n.vnode.el,a))return;l.forEach(ip),l.forEach(cp);const i=l.filter(up);hc(),i.forEach(c=>{const u=c.el,f=u.style;Pt(u,a),f.transform=f.webkitTransform=f.transitionDuration="";const d=u[vl]=p=>{p&&p.target!==u||(!p||/transform$/.test(p.propertyName))&&(u.removeEventListener("transitionend",d),u[vl]=null,jt(u,a))};u.addEventListener("transitionend",d)})}),()=>{const a=fe(e),i=pc(a);let c=a.tag||qe;l=o,o=t.default?Qo(t.default()):[];for(let u=0;udelete e.mode;bc.props;const sp=bc;function ip(e){const t=e.el;t[vl]&&t[vl](),t[bs]&&t[bs]()}function cp(e){yc.set(e,e.el.getBoundingClientRect())}function up(e){const t=gc.get(e),n=yc.get(e),r=t.left-n.left,l=t.top-n.top;if(r||l){const o=e.el.style;return o.transform=o.webkitTransform=`translate(${r}px,${l}px)`,o.transitionDuration="0s",e}}function fp(e,t,n){const r=e.cloneNode(),l=e[Vn];l&&l.forEach(i=>{i.split(/\s+/).forEach(c=>c&&r.classList.remove(c))}),n.split(/\s+/).forEach(i=>i&&r.classList.add(i)),r.style.display="none";const o=t.nodeType===1?t:t.parentNode;o.appendChild(r);const{hasTransform:a}=vc(r);return o.removeChild(r),a}const _s=e=>{const t=e.props["onUpdate:modelValue"]||!1;return Z(t)?n=>tl(t,n):t};function dp(e){e.target.composing=!0}function Es(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Wl=Symbol("_assign"),d6={created(e,{modifiers:{lazy:t,trim:n,number:r}},l){e[Wl]=_s(l);const o=r||l.props&&l.props.type==="number";Cn(e,t?"change":"input",a=>{if(a.target.composing)return;let i=e.value;n&&(i=i.trim()),o&&(i=co(i)),e[Wl](i)}),n&&Cn(e,"change",()=>{e.value=e.value.trim()}),t||(Cn(e,"compositionstart",dp),Cn(e,"compositionend",Es),Cn(e,"change",Es))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:l}},o){if(e[Wl]=_s(o),e.composing)return;const a=l||e.type==="number"?co(e.value):e.value,i=t??"";a!==i&&(document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===i)||(e.value=i))}},pp=["ctrl","shift","alt","meta"],vp={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>pp.some(n=>e[`${n}Key`]&&!t.includes(n))},p6=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(l,...o)=>{for(let a=0;a{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=l=>{if(!("key"in l))return;const o=en(l.key);if(t.some(a=>a===o||hp[a]===o))return e(l)})},mp=Me({patchProp:lp},V1);let Kl,ws=!1;function gp(){return Kl=ws?Kl:_1(mp),ws=!0,Kl}const yp=(...e)=>{const t=gp().createApp(...e),{mount:n}=t;return t.mount=r=>{const l=_p(r);if(l)return n(l,!0,bp(l))},t};function bp(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function _p(e){return ae(e)?document.querySelector(e):e}const Ep="modulepreload",wp=function(e){return"/"+e},As={},k=function(t,n,r){let l=Promise.resolve();if(n&&n.length>0){const o=document.getElementsByTagName("link");l=Promise.all(n.map(a=>{if(a=wp(a),a in As)return;As[a]=!0;const i=a.endsWith(".css"),c=i?'[rel="stylesheet"]':"";if(!!r)for(let d=o.length-1;d>=0;d--){const p=o[d];if(p.href===a&&(!i||p.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${a}"]${c}`))return;const f=document.createElement("link");if(f.rel=i?"stylesheet":Ep,i||(f.as="script",f.crossOrigin=""),f.href=a,document.head.appendChild(f),i)return new Promise((d,p)=>{f.addEventListener("load",d),f.addEventListener("error",()=>p(new Error(`Unable to preload CSS for ${a}`)))})}))}return l.then(()=>t()).catch(o=>{const a=new Event("vite:preloadError",{cancelable:!0});if(a.payload=o,window.dispatchEvent(a),!a.defaultPrevented)throw o})},Ap={"v-8daa1a0e":()=>k(()=>import("./index.html-YnGjn801.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-74bc627b":()=>k(()=>import("./index.html-Db9htIlG.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-fc52599a":()=>k(()=>import("./index.html-rkpo-dpD.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-8197c92e":()=>k(()=>import("./index.html-DminVLnj.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-229a901a":()=>k(()=>import("./index.html-BqDwfIfp.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2ad883b1":()=>k(()=>import("./index.html-Cc8CZ2b2.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-764022b9":()=>k(()=>import("./index.html-Bs9skKoS.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-4b1249e9":()=>k(()=>import("./index.html-vxQ13J85.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-4851ae62":()=>k(()=>import("./index.html-DZ7KH50q.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-ffc566d2":()=>k(()=>import("./index.html-CGdAT42t.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-85a2b380":()=>k(()=>import("./index.html-xU4RfV_r.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-d360ae00":()=>k(()=>import("./index.html-Cd9id5Lt.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-07433603":()=>k(()=>import("./index.html-DuHPlahO.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-f8ef3d60":()=>k(()=>import("./index.html-ZmrB-z7w.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-585caf94":()=>k(()=>import("./index.html-BdVmRdhD.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3706649a":()=>k(()=>import("./404.html-CDhQvs-h.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-e1e3da16":()=>k(()=>import("./index.html-BIuYPCqX.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-5bc93818":()=>k(()=>import("./index.html-CxlHUG3E.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-744d024e":()=>k(()=>import("./index.html-DwWDdaB1.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-e52c881c":()=>k(()=>import("./index.html-We9rVu8G.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-154dc4c4":()=>k(()=>import("./index.html-D36oWUrv.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-01560935":()=>k(()=>import("./index.html-CEJuI0-D.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-58e487ec":()=>k(()=>import("./index.html-BpgbOtCm.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-46a84018":()=>k(()=>import("./index.html-C2nfolIp.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-5e41dbce":()=>k(()=>import("./index.html-D9aIsv7Z.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-53c1fbce":()=>k(()=>import("./index.html-CTBsTpxv.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-8df47658":()=>k(()=>import("./index.html-BTJ0JeSp.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-b30b8df8":()=>k(()=>import("./index.html-15U-eV0v.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3d1829ef":()=>k(()=>import("./index.html-DT0LnDQI.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-f817a9be":()=>k(()=>import("./index.html-D2aA2aXX.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-e203ab1c":()=>k(()=>import("./index.html-lJCfprC6.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-081167c8":()=>k(()=>import("./index.html-DBc-Hz9i.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2929030b":()=>k(()=>import("./index.html-LyOOgEwE.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-50c6924c":()=>k(()=>import("./index.html-B4JQqY7G.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-94867796":()=>k(()=>import("./index.html-DOCPMHCf.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-04b6df4e":()=>k(()=>import("./index.html-C-seC1T3.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-4323704c":()=>k(()=>import("./index.html-D8EjddKB.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3f86ae44":()=>k(()=>import("./index.html-D6r4kAGu.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-cd1830fc":()=>k(()=>import("./index.html-BoI-SeON.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-6f4cd36e":()=>k(()=>import("./index.html-B5xailVh.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-0e939c41":()=>k(()=>import("./index.html-DQej_ZxT.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-37e97688":()=>k(()=>import("./index.html-C-nvcTCa.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2923f955":()=>k(()=>import("./index.html-CPZyDxVy.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-60c4d130":()=>k(()=>import("./index.html-BBq26iiN.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-0e124c9d":()=>k(()=>import("./index.html-khfQ_4UI.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-37244d97":()=>k(()=>import("./index.html-BPcXkc8Y.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-229104ce":()=>k(()=>import("./index.html-C7qAW4nw.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3f2deb44":()=>k(()=>import("./index.html-CZn7jrfX.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-562927a8":()=>k(()=>import("./index.html-CbSAxiU7.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-6544f7d0":()=>k(()=>import("./index.html-DD1Ed2oa.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-5734f872":()=>k(()=>import("./index.html-BUA7NQRQ.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-6eae3e46":()=>k(()=>import("./index.html-CC0DRb0J.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-8e628b4c":()=>k(()=>import("./index.html-DwtwVQLJ.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2842903a":()=>k(()=>import("./index.html-BasCLiPi.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-59d0051e":()=>k(()=>import("./index.html-CxUy8vKd.js"),__vite__mapDeps([])).then(({data:e})=>e)},Cp=JSON.parse(`{"base":"/","lang":"zh-CN","title":"HalfSweet's Blog","description":"半糖的博客","head":[],"locales":{}}`);var Sp=([e,t,n])=>e==="meta"&&t.name?`${e}.${t.name}`:["title","base"].includes(e)?e:e==="template"&&t.id?`${e}.${t.id}`:JSON.stringify([e,t,n]),Tp=e=>{const t=new Set,n=[];return e.forEach(r=>{const l=Sp(r);t.has(l)||(t.add(l),n.push(r))}),n},kp=e=>e[0]==="/"?e:`/${e}`,_c=e=>e[e.length-1]==="/"||e.endsWith(".html")?e:`${e}/`,gn=e=>/^(https?:)?\/\//.test(e),xp=/.md((\?|#).*)?$/,hl=(e,t="/")=>!!(gn(e)||e.startsWith("/")&&!e.startsWith(t)&&!xp.test(e)),Ec=e=>/^[a-z][a-z0-9+.-]*:/.test(e),xl=e=>Object.prototype.toString.call(e)==="[object Object]",na=e=>e[e.length-1]==="/"?e.slice(0,-1):e,wc=e=>e[0]==="/"?e.slice(1):e,Lp=(e,t)=>{const n=Object.keys(e).sort((r,l)=>{const o=l.split("/").length-r.split("/").length;return o!==0?o:l.length-r.length});for(const r of n)if(t.startsWith(r))return r;return"/"};const Ac={"v-8daa1a0e":Q(()=>k(()=>import("./index.html-Cp_y9Po4.js"),__vite__mapDeps([0,1]))),"v-74bc627b":Q(()=>k(()=>import("./index.html-DllAabEU.js"),__vite__mapDeps([2,1]))),"v-fc52599a":Q(()=>k(()=>import("./index.html-DTIHReZ2.js"),__vite__mapDeps([3,1]))),"v-8197c92e":Q(()=>k(()=>import("./index.html-B23iiMRw.js"),__vite__mapDeps([4,1]))),"v-229a901a":Q(()=>k(()=>import("./index.html-JaBr4IIs.js"),__vite__mapDeps([5,1]))),"v-2ad883b1":Q(()=>k(()=>import("./index.html-CqwmyF-i.js"),__vite__mapDeps([6,1]))),"v-764022b9":Q(()=>k(()=>import("./index.html-C_28XQH0.js"),__vite__mapDeps([7,1]))),"v-4b1249e9":Q(()=>k(()=>import("./index.html-DC53JbBg.js"),__vite__mapDeps([8,1]))),"v-4851ae62":Q(()=>k(()=>import("./index.html-DwIFdG9E.js"),__vite__mapDeps([9,1]))),"v-ffc566d2":Q(()=>k(()=>import("./index.html-CutBkREr.js"),__vite__mapDeps([10,1]))),"v-85a2b380":Q(()=>k(()=>import("./index.html-DKThQCX_.js"),__vite__mapDeps([11,1]))),"v-d360ae00":Q(()=>k(()=>import("./index.html-bAVu38Is.js"),__vite__mapDeps([12,1]))),"v-07433603":Q(()=>k(()=>import("./index.html-CY6aEIwZ.js"),__vite__mapDeps([13,1]))),"v-f8ef3d60":Q(()=>k(()=>import("./index.html-C5M7vG0G.js"),__vite__mapDeps([14,1]))),"v-585caf94":Q(()=>k(()=>import("./index.html-BO990A8y.js"),__vite__mapDeps([15,1]))),"v-3706649a":Q(()=>k(()=>import("./404.html-Bdx5ZHx4.js"),__vite__mapDeps([16,1]))),"v-e1e3da16":Q(()=>k(()=>import("./index.html--mHVuPXh.js"),__vite__mapDeps([17,1]))),"v-5bc93818":Q(()=>k(()=>import("./index.html-D-4U_mol.js"),__vite__mapDeps([18,1]))),"v-744d024e":Q(()=>k(()=>import("./index.html-0ZlGNkTM.js"),__vite__mapDeps([19,1]))),"v-e52c881c":Q(()=>k(()=>import("./index.html-CYGKnENL.js"),__vite__mapDeps([20,1]))),"v-154dc4c4":Q(()=>k(()=>import("./index.html-z_GcPgja.js"),__vite__mapDeps([21,1]))),"v-01560935":Q(()=>k(()=>import("./index.html-CS7Wj3do.js"),__vite__mapDeps([22,1]))),"v-58e487ec":Q(()=>k(()=>import("./index.html-CMSg1S4m.js"),__vite__mapDeps([23,1]))),"v-46a84018":Q(()=>k(()=>import("./index.html-VFf7p5WX.js"),__vite__mapDeps([24,1]))),"v-5e41dbce":Q(()=>k(()=>import("./index.html-8LgcQzuX.js"),__vite__mapDeps([25,1]))),"v-53c1fbce":Q(()=>k(()=>import("./index.html-FRN6zWp_.js"),__vite__mapDeps([26,1]))),"v-8df47658":Q(()=>k(()=>import("./index.html-DMZ55ns4.js"),__vite__mapDeps([27,1]))),"v-b30b8df8":Q(()=>k(()=>import("./index.html-Dd9ztVsG.js"),__vite__mapDeps([28,1]))),"v-3d1829ef":Q(()=>k(()=>import("./index.html-BULeIff6.js"),__vite__mapDeps([29,1]))),"v-f817a9be":Q(()=>k(()=>import("./index.html-CuwrDDKS.js"),__vite__mapDeps([30,1]))),"v-e203ab1c":Q(()=>k(()=>import("./index.html-CR1eDGZr.js"),__vite__mapDeps([31,1]))),"v-081167c8":Q(()=>k(()=>import("./index.html-CmhI6jfC.js"),__vite__mapDeps([32,1]))),"v-2929030b":Q(()=>k(()=>import("./index.html-CxmlOENC.js"),__vite__mapDeps([33,1]))),"v-50c6924c":Q(()=>k(()=>import("./index.html-DgHeK5oN.js"),__vite__mapDeps([34,1]))),"v-94867796":Q(()=>k(()=>import("./index.html-SuBwYxGc.js"),__vite__mapDeps([35,1]))),"v-04b6df4e":Q(()=>k(()=>import("./index.html-Cf9AlkRI.js"),__vite__mapDeps([36,1]))),"v-4323704c":Q(()=>k(()=>import("./index.html-iZhzT0kp.js"),__vite__mapDeps([37,1]))),"v-3f86ae44":Q(()=>k(()=>import("./index.html-C6yIM9hZ.js"),__vite__mapDeps([38,1]))),"v-cd1830fc":Q(()=>k(()=>import("./index.html-5uw7SVuM.js"),__vite__mapDeps([39,1]))),"v-6f4cd36e":Q(()=>k(()=>import("./index.html-D18MMXl_.js"),__vite__mapDeps([40,1]))),"v-0e939c41":Q(()=>k(()=>import("./index.html-B2mUrBuY.js"),__vite__mapDeps([41,1]))),"v-37e97688":Q(()=>k(()=>import("./index.html-BMCGFLFn.js"),__vite__mapDeps([42,1]))),"v-2923f955":Q(()=>k(()=>import("./index.html-DWrb2tQi.js"),__vite__mapDeps([43,1]))),"v-60c4d130":Q(()=>k(()=>import("./index.html-BinPZ1UQ.js"),__vite__mapDeps([44,1]))),"v-0e124c9d":Q(()=>k(()=>import("./index.html-C4tbSHG-.js"),__vite__mapDeps([45,1]))),"v-37244d97":Q(()=>k(()=>import("./index.html-BCvSZVk3.js"),__vite__mapDeps([46,1]))),"v-229104ce":Q(()=>k(()=>import("./index.html-LDlaKuXo.js"),__vite__mapDeps([47,1]))),"v-3f2deb44":Q(()=>k(()=>import("./index.html-Cq1Gpq6l.js"),__vite__mapDeps([48,1]))),"v-562927a8":Q(()=>k(()=>import("./index.html-D02abrlH.js"),__vite__mapDeps([49,1]))),"v-6544f7d0":Q(()=>k(()=>import("./index.html-D_uJ1sU-.js"),__vite__mapDeps([50,1]))),"v-5734f872":Q(()=>k(()=>import("./index.html-CoaqD45e.js"),__vite__mapDeps([51,1]))),"v-6eae3e46":Q(()=>k(()=>import("./index.html-BgtjSwct.js"),__vite__mapDeps([52,1]))),"v-8e628b4c":Q(()=>k(()=>import("./index.html-CoP6hvjU.js"),__vite__mapDeps([53,1]))),"v-2842903a":Q(()=>k(()=>import("./index.html-DBC--rzz.js"),__vite__mapDeps([54,1]))),"v-59d0051e":Q(()=>k(()=>import("./index.html-VYbSBTI9.js"),__vite__mapDeps([55,1])))};var Ip=Symbol(""),Cc=Symbol(""),Pp=vn({key:"",path:"",title:"",lang:"",frontmatter:{},headers:[]}),ie=()=>{const e=se(Cc);if(!e)throw new Error("pageData() is called without provider.");return e},Sc=Symbol(""),be=()=>{const e=se(Sc);if(!e)throw new Error("usePageFrontmatter() is called without provider.");return e},Tc=Symbol(""),Bp=()=>{const e=se(Tc);if(!e)throw new Error("usePageHead() is called without provider.");return e},Op=Symbol(""),kc=Symbol(""),ra=()=>{const e=se(kc);if(!e)throw new Error("usePageLang() is called without provider.");return e},xc=Symbol(""),$p=()=>{const e=se(xc);if(!e)throw new Error("usePageLayout() is called without provider.");return e},Rp=U(Ap),la=Symbol(""),kt=()=>{const e=se(la);if(!e)throw new Error("useRouteLocale() is called without provider.");return e},Tn=U(Cp),Lc=()=>Tn,Ic=Symbol(""),kr=()=>{const e=se(Ic);if(!e)throw new Error("useSiteLocaleData() is called without provider.");return e},Mp=Symbol(""),Dp="Layout",Fp="NotFound",Bt=wr({resolveLayouts:e=>e.reduce((t,n)=>({...t,...n.layouts}),{}),resolvePageData:async e=>{const t=Rp.value[e];return await(t==null?void 0:t())??Pp},resolvePageFrontmatter:e=>e.frontmatter,resolvePageHead:(e,t,n)=>{const r=ae(t.description)?t.description:n.description,l=[...Z(t.head)?t.head:[],...n.head,["title",{},e],["meta",{name:"description",content:r}]];return Tp(l)},resolvePageHeadTitle:(e,t)=>[e.title,t.title].filter(n=>!!n).join(" | "),resolvePageLang:(e,t)=>e.lang||t.lang||"en-US",resolvePageLayout:(e,t)=>{let n;if(e.path){const r=e.frontmatter.layout;ae(r)?n=r:n=Dp}else n=Fp;return t[n]},resolveRouteLocale:(e,t)=>Lp(e,t),resolveSiteLocaleData:(e,t)=>({...e,...e.locales[t]})}),Ll=O({name:"ClientOnly",setup(e,t){const n=U(!1);return me(()=>{n.value=!0}),()=>{var r,l;return n.value?(l=(r=t.slots).default)==null?void 0:l.call(r):null}}}),oa=O({name:"Content",props:{pageKey:{type:String,required:!1,default:""}},setup(e){const t=ie(),n=_(()=>Ac[e.pageKey||t.value.key]);return()=>n.value?s(n.value):s("div","404 Not Found")}}),bt=(e={})=>e,Le=e=>gn(e)?e:`/${wc(e)}`;const Hp={};/*! +**/const F1="http://www.w3.org/2000/svg",H1="http://www.w3.org/1998/Math/MathML",Wt=typeof document<"u"?document:null,ss=Wt&&Wt.createElement("template"),V1={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const l=t==="svg"?Wt.createElementNS(F1,e):t==="mathml"?Wt.createElementNS(H1,e):Wt.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&l.setAttribute("multiple",r.multiple),l},createText:e=>Wt.createTextNode(e),createComment:e=>Wt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Wt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,l,o){const a=n?n.previousSibling:t.lastChild;if(l&&(l===o||l.nextSibling))for(;t.insertBefore(l.cloneNode(!0),n),!(l===o||!(l=l.nextSibling)););else{ss.innerHTML=r==="svg"?`${e}`:r==="mathml"?`${e}`:e;const i=ss.content;if(r==="svg"||r==="mathml"){const c=i.firstChild;for(;c.firstChild;)i.appendChild(c.firstChild);i.removeChild(c)}t.insertBefore(i,n)}return[a?a.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Nt="transition",Qn="animation",Vn=Symbol("_vtc"),Xt=(e,{slots:t})=>s(Kd,pc(e),t);Xt.displayName="Transition";const dc={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},N1=Xt.props=Me({},ji,dc),rn=(e,t=[])=>{Z(e)?e.forEach(n=>n(...t)):e&&e(...t)},is=e=>e?Z(e)?e.some(t=>t.length>1):e.length>1:!1;function pc(e){const t={};for(const R in e)R in dc||(t[R]=e[R]);if(e.css===!1)return t;const{name:n="v",type:r,duration:l,enterFromClass:o=`${n}-enter-from`,enterActiveClass:a=`${n}-enter-active`,enterToClass:i=`${n}-enter-to`,appearFromClass:c=o,appearActiveClass:u=a,appearToClass:f=i,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:p=`${n}-leave-active`,leaveToClass:v=`${n}-leave-to`}=e,g=z1(l),E=g&&g[0],w=g&&g[1],{onBeforeEnter:b,onEnter:S,onEnterCancelled:y,onLeave:T,onLeaveCancelled:D,onBeforeAppear:C=b,onAppear:W=S,onAppearCancelled:H=y}=t,K=(R,te,Ie)=>{jt(R,te?f:i),jt(R,te?u:a),Ie&&Ie()},P=(R,te)=>{R._isLeaving=!1,jt(R,d),jt(R,v),jt(R,p),te&&te()},q=R=>(te,Ie)=>{const ke=R?W:S,G=()=>K(te,R,Ie);rn(ke,[te,G]),cs(()=>{jt(te,R?c:o),Bt(te,R?f:i),is(ke)||us(te,r,E,G)})};return Me(t,{onBeforeEnter(R){rn(b,[R]),Bt(R,o),Bt(R,a)},onBeforeAppear(R){rn(C,[R]),Bt(R,c),Bt(R,u)},onEnter:q(!1),onAppear:q(!0),onLeave(R,te){R._isLeaving=!0;const Ie=()=>P(R,te);Bt(R,d),hc(),Bt(R,p),cs(()=>{R._isLeaving&&(jt(R,d),Bt(R,v),is(T)||us(R,r,w,Ie))}),rn(T,[R,Ie])},onEnterCancelled(R){K(R,!1),rn(y,[R])},onAppearCancelled(R){K(R,!0),rn(H,[R])},onLeaveCancelled(R){P(R),rn(D,[R])}})}function z1(e){if(e==null)return null;if(Se(e))return[Ul(e.enter),Ul(e.leave)];{const t=Ul(e);return[t,t]}}function Ul(e){return Gf(e)}function Bt(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Vn]||(e[Vn]=new Set)).add(t)}function jt(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Vn];n&&(n.delete(t),n.size||(e[Vn]=void 0))}function cs(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let j1=0;function us(e,t,n,r){const l=e._endId=++j1,o=()=>{l===e._endId&&r()};if(n)return setTimeout(o,n);const{type:a,timeout:i,propCount:c}=vc(e,t);if(!a)return r();const u=a+"end";let f=0;const d=()=>{e.removeEventListener(u,p),o()},p=v=>{v.target===e&&++f>=c&&d()};setTimeout(()=>{f(n[g]||"").split(", "),l=r(`${Nt}Delay`),o=r(`${Nt}Duration`),a=fs(l,o),i=r(`${Qn}Delay`),c=r(`${Qn}Duration`),u=fs(i,c);let f=null,d=0,p=0;t===Nt?a>0&&(f=Nt,d=a,p=o.length):t===Qn?u>0&&(f=Qn,d=u,p=c.length):(d=Math.max(a,u),f=d>0?a>u?Nt:Qn:null,p=f?f===Nt?o.length:c.length:0);const v=f===Nt&&/\b(transform|all)(,|$)/.test(r(`${Nt}Property`).toString());return{type:f,timeout:d,propCount:p,hasTransform:v}}function fs(e,t){for(;e.lengthds(n)+ds(e[r])))}function ds(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function hc(){return document.body.offsetHeight}function U1(e,t,n){const r=e[Vn];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const pl=Symbol("_vod"),mc=Symbol("_vsh"),f6={beforeMount(e,{value:t},{transition:n}){e[pl]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Xn(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),Xn(e,!0),r.enter(e)):r.leave(e,()=>{Xn(e,!1)}):Xn(e,t))},beforeUnmount(e,{value:t}){Xn(e,t)}};function Xn(e,t){e.style.display=t?e[pl]:"none",e[mc]=!t}const q1=Symbol(""),G1=/(^|;)\s*display\s*:/;function W1(e,t,n){const r=e.style,l=ae(n);let o=!1;if(n&&!l){if(t)if(ae(t))for(const a of t.split(";")){const i=a.slice(0,a.indexOf(":")).trim();n[i]==null&&rl(r,i,"")}else for(const a in t)n[a]==null&&rl(r,a,"");for(const a in n)a==="display"&&(o=!0),rl(r,a,n[a])}else if(l){if(t!==n){const a=r[q1];a&&(n+=";"+a),r.cssText=n,o=G1.test(n)}}else t&&e.removeAttribute("style");pl in e&&(e[pl]=o?r.display:"",e[mc]&&(r.display="none"))}const ps=/\s*!important$/;function rl(e,t,n){if(Z(n))n.forEach(r=>rl(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=K1(e,t);ps.test(n)?e.setProperty(en(r),n.replace(ps,""),"important"):e[r]=n}}const vs=["Webkit","Moz","ms"],ql={};function K1(e,t){const n=ql[t];if(n)return n;let r=lt(t);if(r!=="filter"&&r in e)return ql[t]=r;r=Er(r);for(let l=0;lGl||(ep.then(()=>Gl=0),Gl=Date.now());function np(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;ut(rp(r,n.value),t,5,[r])};return n.value=e,n.attached=tp(),n}function rp(e,t){if(Z(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>l=>!l._stopped&&r&&r(l))}else return t}const ys=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,lp=(e,t,n,r,l,o,a,i,c)=>{const u=l==="svg";t==="class"?U1(e,r,u):t==="style"?W1(e,n,r):_r(t)?Mo(t)||X1(e,t,n,r,a):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):op(e,t,r,u))?J1(e,t,r,o,a,i,c):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Y1(e,t,r,u))};function op(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&ys(t)&&le(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const l=e.tagName;if(l==="IMG"||l==="VIDEO"||l==="CANVAS"||l==="SOURCE")return!1}return ys(t)&&ae(n)?!1:t in e}const gc=new WeakMap,yc=new WeakMap,vl=Symbol("_moveCb"),bs=Symbol("_enterCb"),bc={name:"TransitionGroup",props:Me({},N1,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=mn(),r=zi();let l,o;return Gi(()=>{if(!l.length)return;const a=e.moveClass||`${e.name||"v"}-move`;if(!fp(l[0].el,n.vnode.el,a))return;l.forEach(ip),l.forEach(cp);const i=l.filter(up);hc(),i.forEach(c=>{const u=c.el,f=u.style;Bt(u,a),f.transform=f.webkitTransform=f.transitionDuration="";const d=u[vl]=p=>{p&&p.target!==u||(!p||/transform$/.test(p.propertyName))&&(u.removeEventListener("transitionend",d),u[vl]=null,jt(u,a))};u.addEventListener("transitionend",d)})}),()=>{const a=fe(e),i=pc(a);let c=a.tag||qe;l=o,o=t.default?Qo(t.default()):[];for(let u=0;udelete e.mode;bc.props;const sp=bc;function ip(e){const t=e.el;t[vl]&&t[vl](),t[bs]&&t[bs]()}function cp(e){yc.set(e,e.el.getBoundingClientRect())}function up(e){const t=gc.get(e),n=yc.get(e),r=t.left-n.left,l=t.top-n.top;if(r||l){const o=e.el.style;return o.transform=o.webkitTransform=`translate(${r}px,${l}px)`,o.transitionDuration="0s",e}}function fp(e,t,n){const r=e.cloneNode(),l=e[Vn];l&&l.forEach(i=>{i.split(/\s+/).forEach(c=>c&&r.classList.remove(c))}),n.split(/\s+/).forEach(i=>i&&r.classList.add(i)),r.style.display="none";const o=t.nodeType===1?t:t.parentNode;o.appendChild(r);const{hasTransform:a}=vc(r);return o.removeChild(r),a}const _s=e=>{const t=e.props["onUpdate:modelValue"]||!1;return Z(t)?n=>tl(t,n):t};function dp(e){e.target.composing=!0}function Es(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Wl=Symbol("_assign"),d6={created(e,{modifiers:{lazy:t,trim:n,number:r}},l){e[Wl]=_s(l);const o=r||l.props&&l.props.type==="number";Cn(e,t?"change":"input",a=>{if(a.target.composing)return;let i=e.value;n&&(i=i.trim()),o&&(i=co(i)),e[Wl](i)}),n&&Cn(e,"change",()=>{e.value=e.value.trim()}),t||(Cn(e,"compositionstart",dp),Cn(e,"compositionend",Es),Cn(e,"change",Es))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:l}},o){if(e[Wl]=_s(o),e.composing)return;const a=l||e.type==="number"?co(e.value):e.value,i=t??"";a!==i&&(document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===i)||(e.value=i))}},pp=["ctrl","shift","alt","meta"],vp={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>pp.some(n=>e[`${n}Key`]&&!t.includes(n))},p6=(e,t)=>{const n=e._withMods||(e._withMods={}),r=t.join(".");return n[r]||(n[r]=(l,...o)=>{for(let a=0;a{const n=e._withKeys||(e._withKeys={}),r=t.join(".");return n[r]||(n[r]=l=>{if(!("key"in l))return;const o=en(l.key);if(t.some(a=>a===o||hp[a]===o))return e(l)})},mp=Me({patchProp:lp},V1);let Kl,ws=!1;function gp(){return Kl=ws?Kl:_1(mp),ws=!0,Kl}const yp=(...e)=>{const t=gp().createApp(...e),{mount:n}=t;return t.mount=r=>{const l=_p(r);if(l)return n(l,!0,bp(l))},t};function bp(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function _p(e){return ae(e)?document.querySelector(e):e}const Ep="modulepreload",wp=function(e){return"/"+e},As={},k=function(t,n,r){let l=Promise.resolve();if(n&&n.length>0){const o=document.getElementsByTagName("link");l=Promise.all(n.map(a=>{if(a=wp(a),a in As)return;As[a]=!0;const i=a.endsWith(".css"),c=i?'[rel="stylesheet"]':"";if(!!r)for(let d=o.length-1;d>=0;d--){const p=o[d];if(p.href===a&&(!i||p.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${a}"]${c}`))return;const f=document.createElement("link");if(f.rel=i?"stylesheet":Ep,i||(f.as="script",f.crossOrigin=""),f.href=a,document.head.appendChild(f),i)return new Promise((d,p)=>{f.addEventListener("load",d),f.addEventListener("error",()=>p(new Error(`Unable to preload CSS for ${a}`)))})}))}return l.then(()=>t()).catch(o=>{const a=new Event("vite:preloadError",{cancelable:!0});if(a.payload=o,window.dispatchEvent(a),!a.defaultPrevented)throw o})},Ap={"v-8daa1a0e":()=>k(()=>import("./index.html-YnGjn801.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-74bc627b":()=>k(()=>import("./index.html-Db9htIlG.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-fc52599a":()=>k(()=>import("./index.html-rkpo-dpD.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-8197c92e":()=>k(()=>import("./index.html-DminVLnj.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-229a901a":()=>k(()=>import("./index.html-BqDwfIfp.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2ad883b1":()=>k(()=>import("./index.html-Cc8CZ2b2.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-764022b9":()=>k(()=>import("./index.html-DoVNpxPi.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-4b1249e9":()=>k(()=>import("./index.html-vxQ13J85.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-4851ae62":()=>k(()=>import("./index.html-DZ7KH50q.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-ffc566d2":()=>k(()=>import("./index.html-CGdAT42t.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-85a2b380":()=>k(()=>import("./index.html-xU4RfV_r.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-d360ae00":()=>k(()=>import("./index.html-Cd9id5Lt.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-a917d748":()=>k(()=>import("./index.html-PZc47sLH.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-07433603":()=>k(()=>import("./index.html-DuHPlahO.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-f8ef3d60":()=>k(()=>import("./index.html-ZmrB-z7w.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-585caf94":()=>k(()=>import("./index.html-BdVmRdhD.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3706649a":()=>k(()=>import("./404.html-CDhQvs-h.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-e1e3da16":()=>k(()=>import("./index.html-BIuYPCqX.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-5bc93818":()=>k(()=>import("./index.html-CxlHUG3E.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-744d024e":()=>k(()=>import("./index.html-DwWDdaB1.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-e52c881c":()=>k(()=>import("./index.html-We9rVu8G.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-154dc4c4":()=>k(()=>import("./index.html-D36oWUrv.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-01560935":()=>k(()=>import("./index.html-CEJuI0-D.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-58e487ec":()=>k(()=>import("./index.html-BpgbOtCm.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-46a84018":()=>k(()=>import("./index.html-C2nfolIp.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-5e41dbce":()=>k(()=>import("./index.html-D9aIsv7Z.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-53c1fbce":()=>k(()=>import("./index.html-CTBsTpxv.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-8df47658":()=>k(()=>import("./index.html-BTJ0JeSp.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-b30b8df8":()=>k(()=>import("./index.html-15U-eV0v.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3d1829ef":()=>k(()=>import("./index.html-DT0LnDQI.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-f817a9be":()=>k(()=>import("./index.html-D2aA2aXX.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-e203ab1c":()=>k(()=>import("./index.html-lJCfprC6.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-081167c8":()=>k(()=>import("./index.html-DBc-Hz9i.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2929030b":()=>k(()=>import("./index.html-LyOOgEwE.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-50c6924c":()=>k(()=>import("./index.html-B4JQqY7G.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-94867796":()=>k(()=>import("./index.html-DOCPMHCf.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-04b6df4e":()=>k(()=>import("./index.html-C-seC1T3.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-4323704c":()=>k(()=>import("./index.html-D8EjddKB.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3f86ae44":()=>k(()=>import("./index.html-D6r4kAGu.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-cd1830fc":()=>k(()=>import("./index.html-BoI-SeON.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-6f4cd36e":()=>k(()=>import("./index.html-B5xailVh.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-0e939c41":()=>k(()=>import("./index.html-DQej_ZxT.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-37e97688":()=>k(()=>import("./index.html-C-nvcTCa.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2923f955":()=>k(()=>import("./index.html-CPZyDxVy.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-60c4d130":()=>k(()=>import("./index.html-BBq26iiN.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-0e124c9d":()=>k(()=>import("./index.html-khfQ_4UI.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-37244d97":()=>k(()=>import("./index.html-BPcXkc8Y.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-229104ce":()=>k(()=>import("./index.html-C7qAW4nw.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-3f2deb44":()=>k(()=>import("./index.html-CZn7jrfX.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-562927a8":()=>k(()=>import("./index.html-CbSAxiU7.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-6544f7d0":()=>k(()=>import("./index.html-DD1Ed2oa.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-5734f872":()=>k(()=>import("./index.html-BUA7NQRQ.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-6eae3e46":()=>k(()=>import("./index.html-CC0DRb0J.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-8e628b4c":()=>k(()=>import("./index.html-DwtwVQLJ.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-2842903a":()=>k(()=>import("./index.html-BasCLiPi.js"),__vite__mapDeps([])).then(({data:e})=>e),"v-59d0051e":()=>k(()=>import("./index.html-CxUy8vKd.js"),__vite__mapDeps([])).then(({data:e})=>e)},Cp=JSON.parse(`{"base":"/","lang":"zh-CN","title":"HalfSweet's Blog","description":"半糖的博客","head":[],"locales":{}}`);var Sp=([e,t,n])=>e==="meta"&&t.name?`${e}.${t.name}`:["title","base"].includes(e)?e:e==="template"&&t.id?`${e}.${t.id}`:JSON.stringify([e,t,n]),Tp=e=>{const t=new Set,n=[];return e.forEach(r=>{const l=Sp(r);t.has(l)||(t.add(l),n.push(r))}),n},kp=e=>e[0]==="/"?e:`/${e}`,_c=e=>e[e.length-1]==="/"||e.endsWith(".html")?e:`${e}/`,gn=e=>/^(https?:)?\/\//.test(e),Lp=/.md((\?|#).*)?$/,hl=(e,t="/")=>!!(gn(e)||e.startsWith("/")&&!e.startsWith(t)&&!Lp.test(e)),Ec=e=>/^[a-z][a-z0-9+.-]*:/.test(e),Ll=e=>Object.prototype.toString.call(e)==="[object Object]",na=e=>e[e.length-1]==="/"?e.slice(0,-1):e,wc=e=>e[0]==="/"?e.slice(1):e,xp=(e,t)=>{const n=Object.keys(e).sort((r,l)=>{const o=l.split("/").length-r.split("/").length;return o!==0?o:l.length-r.length});for(const r of n)if(t.startsWith(r))return r;return"/"};const Ac={"v-8daa1a0e":Q(()=>k(()=>import("./index.html-U2ipX6CV.js"),__vite__mapDeps([0,1]))),"v-74bc627b":Q(()=>k(()=>import("./index.html-B1yrQXX9.js"),__vite__mapDeps([2,1]))),"v-fc52599a":Q(()=>k(()=>import("./index.html-BSTDzP3N.js"),__vite__mapDeps([3,1]))),"v-8197c92e":Q(()=>k(()=>import("./index.html-wfEDgaYx.js"),__vite__mapDeps([4,1]))),"v-229a901a":Q(()=>k(()=>import("./index.html-D_mCnLpx.js"),__vite__mapDeps([5,1]))),"v-2ad883b1":Q(()=>k(()=>import("./index.html-Cpiffesm.js"),__vite__mapDeps([6,1]))),"v-764022b9":Q(()=>k(()=>import("./index.html-C-DZBHLK.js"),__vite__mapDeps([7,1]))),"v-4b1249e9":Q(()=>k(()=>import("./index.html-CNdlnkj3.js"),__vite__mapDeps([8,1]))),"v-4851ae62":Q(()=>k(()=>import("./index.html-BVWBdZLl.js"),__vite__mapDeps([9,1]))),"v-ffc566d2":Q(()=>k(()=>import("./index.html-XcRQpVr2.js"),__vite__mapDeps([10,1]))),"v-85a2b380":Q(()=>k(()=>import("./index.html-BbEWWwx8.js"),__vite__mapDeps([11,1]))),"v-d360ae00":Q(()=>k(()=>import("./index.html-BOxojgg7.js"),__vite__mapDeps([12,1]))),"v-a917d748":Q(()=>k(()=>import("./index.html-DwKHS2ma.js"),__vite__mapDeps([13,1]))),"v-07433603":Q(()=>k(()=>import("./index.html-BCmE_jJO.js"),__vite__mapDeps([14,1]))),"v-f8ef3d60":Q(()=>k(()=>import("./index.html-ZNBcpvNR.js"),__vite__mapDeps([15,1]))),"v-585caf94":Q(()=>k(()=>import("./index.html-CqZPWFXg.js"),__vite__mapDeps([16,1]))),"v-3706649a":Q(()=>k(()=>import("./404.html-RzL9zop_.js"),__vite__mapDeps([17,1]))),"v-e1e3da16":Q(()=>k(()=>import("./index.html-C2ROflAl.js"),__vite__mapDeps([18,1]))),"v-5bc93818":Q(()=>k(()=>import("./index.html-CPv2-n_V.js"),__vite__mapDeps([19,1]))),"v-744d024e":Q(()=>k(()=>import("./index.html-DG_PkhmM.js"),__vite__mapDeps([20,1]))),"v-e52c881c":Q(()=>k(()=>import("./index.html-pzJP4N0d.js"),__vite__mapDeps([21,1]))),"v-154dc4c4":Q(()=>k(()=>import("./index.html-CQOmekII.js"),__vite__mapDeps([22,1]))),"v-01560935":Q(()=>k(()=>import("./index.html-qLJuH2iH.js"),__vite__mapDeps([23,1]))),"v-58e487ec":Q(()=>k(()=>import("./index.html-BdYaGpD0.js"),__vite__mapDeps([24,1]))),"v-46a84018":Q(()=>k(()=>import("./index.html-BHysRyap.js"),__vite__mapDeps([25,1]))),"v-5e41dbce":Q(()=>k(()=>import("./index.html-CDZ8FFaW.js"),__vite__mapDeps([26,1]))),"v-53c1fbce":Q(()=>k(()=>import("./index.html-CPxsoyvL.js"),__vite__mapDeps([27,1]))),"v-8df47658":Q(()=>k(()=>import("./index.html-aRNzWfsv.js"),__vite__mapDeps([28,1]))),"v-b30b8df8":Q(()=>k(()=>import("./index.html-D4a22m3f.js"),__vite__mapDeps([29,1]))),"v-3d1829ef":Q(()=>k(()=>import("./index.html-CDzwytE4.js"),__vite__mapDeps([30,1]))),"v-f817a9be":Q(()=>k(()=>import("./index.html-BoggMFzY.js"),__vite__mapDeps([31,1]))),"v-e203ab1c":Q(()=>k(()=>import("./index.html-Bt-QHt5G.js"),__vite__mapDeps([32,1]))),"v-081167c8":Q(()=>k(()=>import("./index.html-C3OgEK7e.js"),__vite__mapDeps([33,1]))),"v-2929030b":Q(()=>k(()=>import("./index.html-DttrwoVH.js"),__vite__mapDeps([34,1]))),"v-50c6924c":Q(()=>k(()=>import("./index.html-CbR6bDen.js"),__vite__mapDeps([35,1]))),"v-94867796":Q(()=>k(()=>import("./index.html-DDHE1u7h.js"),__vite__mapDeps([36,1]))),"v-04b6df4e":Q(()=>k(()=>import("./index.html-CfxmRyF3.js"),__vite__mapDeps([37,1]))),"v-4323704c":Q(()=>k(()=>import("./index.html-qlFOzVfm.js"),__vite__mapDeps([38,1]))),"v-3f86ae44":Q(()=>k(()=>import("./index.html-CrR8HTSd.js"),__vite__mapDeps([39,1]))),"v-cd1830fc":Q(()=>k(()=>import("./index.html-BYMXG7d4.js"),__vite__mapDeps([40,1]))),"v-6f4cd36e":Q(()=>k(()=>import("./index.html-lhLGlPQ-.js"),__vite__mapDeps([41,1]))),"v-0e939c41":Q(()=>k(()=>import("./index.html-CguImet2.js"),__vite__mapDeps([42,1]))),"v-37e97688":Q(()=>k(()=>import("./index.html-RwnLJ1Pn.js"),__vite__mapDeps([43,1]))),"v-2923f955":Q(()=>k(()=>import("./index.html-DhmaNYSk.js"),__vite__mapDeps([44,1]))),"v-60c4d130":Q(()=>k(()=>import("./index.html-CYLOW2Qv.js"),__vite__mapDeps([45,1]))),"v-0e124c9d":Q(()=>k(()=>import("./index.html-BdFaOi8p.js"),__vite__mapDeps([46,1]))),"v-37244d97":Q(()=>k(()=>import("./index.html-DV-SVQQQ.js"),__vite__mapDeps([47,1]))),"v-229104ce":Q(()=>k(()=>import("./index.html-CZbAOy3o.js"),__vite__mapDeps([48,1]))),"v-3f2deb44":Q(()=>k(()=>import("./index.html-CUOcmk2d.js"),__vite__mapDeps([49,1]))),"v-562927a8":Q(()=>k(()=>import("./index.html-D051bWxC.js"),__vite__mapDeps([50,1]))),"v-6544f7d0":Q(()=>k(()=>import("./index.html-CHGUidtg.js"),__vite__mapDeps([51,1]))),"v-5734f872":Q(()=>k(()=>import("./index.html-D-fT_8MU.js"),__vite__mapDeps([52,1]))),"v-6eae3e46":Q(()=>k(()=>import("./index.html-B1Mdj-Bc.js"),__vite__mapDeps([53,1]))),"v-8e628b4c":Q(()=>k(()=>import("./index.html-B2F6gtgc.js"),__vite__mapDeps([54,1]))),"v-2842903a":Q(()=>k(()=>import("./index.html-BItrpR2Q.js"),__vite__mapDeps([55,1]))),"v-59d0051e":Q(()=>k(()=>import("./index.html-68f_W7bM.js"),__vite__mapDeps([56,1])))};var Ip=Symbol(""),Cc=Symbol(""),Bp=vn({key:"",path:"",title:"",lang:"",frontmatter:{},headers:[]}),ie=()=>{const e=se(Cc);if(!e)throw new Error("pageData() is called without provider.");return e},Sc=Symbol(""),be=()=>{const e=se(Sc);if(!e)throw new Error("usePageFrontmatter() is called without provider.");return e},Tc=Symbol(""),Pp=()=>{const e=se(Tc);if(!e)throw new Error("usePageHead() is called without provider.");return e},Op=Symbol(""),kc=Symbol(""),ra=()=>{const e=se(kc);if(!e)throw new Error("usePageLang() is called without provider.");return e},Lc=Symbol(""),Rp=()=>{const e=se(Lc);if(!e)throw new Error("usePageLayout() is called without provider.");return e},$p=U(Ap),la=Symbol(""),kt=()=>{const e=se(la);if(!e)throw new Error("useRouteLocale() is called without provider.");return e},Tn=U(Cp),xc=()=>Tn,Ic=Symbol(""),kr=()=>{const e=se(Ic);if(!e)throw new Error("useSiteLocaleData() is called without provider.");return e},Mp=Symbol(""),Dp="Layout",Fp="NotFound",Pt=wr({resolveLayouts:e=>e.reduce((t,n)=>({...t,...n.layouts}),{}),resolvePageData:async e=>{const t=$p.value[e];return await(t==null?void 0:t())??Bp},resolvePageFrontmatter:e=>e.frontmatter,resolvePageHead:(e,t,n)=>{const r=ae(t.description)?t.description:n.description,l=[...Z(t.head)?t.head:[],...n.head,["title",{},e],["meta",{name:"description",content:r}]];return Tp(l)},resolvePageHeadTitle:(e,t)=>[e.title,t.title].filter(n=>!!n).join(" | "),resolvePageLang:(e,t)=>e.lang||t.lang||"en-US",resolvePageLayout:(e,t)=>{let n;if(e.path){const r=e.frontmatter.layout;ae(r)?n=r:n=Dp}else n=Fp;return t[n]},resolveRouteLocale:(e,t)=>xp(e,t),resolveSiteLocaleData:(e,t)=>({...e,...e.locales[t]})}),xl=O({name:"ClientOnly",setup(e,t){const n=U(!1);return me(()=>{n.value=!0}),()=>{var r,l;return n.value?(l=(r=t.slots).default)==null?void 0:l.call(r):null}}}),oa=O({name:"Content",props:{pageKey:{type:String,required:!1,default:""}},setup(e){const t=ie(),n=_(()=>Ac[e.pageKey||t.value.key]);return()=>n.value?s(n.value):s("div","404 Not Found")}}),bt=(e={})=>e,xe=e=>gn(e)?e:`/${wc(e)}`;const Hp={};/*! * vue-router v4.3.0 * (c) 2024 Eduardo San Martin Morote * @license MIT - */const Sn=typeof document<"u";function Vp(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const ye=Object.assign;function Yl(e,t){const n={};for(const r in t){const l=t[r];n[r]=yt(l)?l.map(e):e(l)}return n}const sr=()=>{},yt=Array.isArray,Pc=/#/g,Np=/&/g,zp=/\//g,jp=/=/g,Up=/\?/g,Bc=/\+/g,qp=/%5B/g,Gp=/%5D/g,Oc=/%5E/g,Wp=/%60/g,$c=/%7B/g,Kp=/%7C/g,Rc=/%7D/g,Yp=/%20/g;function aa(e){return encodeURI(""+e).replace(Kp,"|").replace(qp,"[").replace(Gp,"]")}function Jp(e){return aa(e).replace($c,"{").replace(Rc,"}").replace(Oc,"^")}function _o(e){return aa(e).replace(Bc,"%2B").replace(Yp,"+").replace(Pc,"%23").replace(Np,"%26").replace(Wp,"`").replace($c,"{").replace(Rc,"}").replace(Oc,"^")}function Qp(e){return _o(e).replace(jp,"%3D")}function Xp(e){return aa(e).replace(Pc,"%23").replace(Up,"%3F")}function Zp(e){return e==null?"":Xp(e).replace(zp,"%2F")}function gr(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const e0=/\/$/,t0=e=>e.replace(e0,"");function Jl(e,t,n="/"){let r,l={},o="",a="";const i=t.indexOf("#");let c=t.indexOf("?");return i=0&&(c=-1),c>-1&&(r=t.slice(0,c),o=t.slice(c+1,i>-1?i:t.length),l=e(o)),i>-1&&(r=r||t.slice(0,i),a=t.slice(i,t.length)),r=o0(r??t,n),{fullPath:r+(o&&"?")+o+a,path:r,query:l,hash:gr(a)}}function n0(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Cs(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function r0(e,t,n){const r=t.matched.length-1,l=n.matched.length-1;return r>-1&&r===l&&Nn(t.matched[r],n.matched[l])&&Mc(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Nn(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Mc(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!l0(e[n],t[n]))return!1;return!0}function l0(e,t){return yt(e)?Ss(e,t):yt(t)?Ss(t,e):e===t}function Ss(e,t){return yt(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function o0(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),l=r[r.length-1];(l===".."||l===".")&&r.push("");let o=n.length-1,a,i;for(a=0;a1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(a).join("/")}var yr;(function(e){e.pop="pop",e.push="push"})(yr||(yr={}));var ir;(function(e){e.back="back",e.forward="forward",e.unknown=""})(ir||(ir={}));function a0(e){if(!e)if(Sn){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),t0(e)}const s0=/^[^#]+#/;function i0(e,t){return e.replace(s0,"#")+t}function c0(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const Il=()=>({left:window.scrollX,top:window.scrollY});function u0(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),l=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!l)return;t=c0(l,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function Ts(e,t){return(history.state?history.state.position-t:-1)+e}const Eo=new Map;function f0(e,t){Eo.set(e,t)}function d0(e){const t=Eo.get(e);return Eo.delete(e),t}let p0=()=>location.protocol+"//"+location.host;function Dc(e,t){const{pathname:n,search:r,hash:l}=t,o=e.indexOf("#");if(o>-1){let i=l.includes(e.slice(o))?e.slice(o).length:1,c=l.slice(i);return c[0]!=="/"&&(c="/"+c),Cs(c,"")}return Cs(n,e)+r+l}function v0(e,t,n,r){let l=[],o=[],a=null;const i=({state:p})=>{const v=Dc(e,location),g=n.value,E=t.value;let w=0;if(p){if(n.value=v,t.value=p,a&&a===g){a=null;return}w=E?p.position-E.position:0}else r(v);l.forEach(b=>{b(n.value,g,{delta:w,type:yr.pop,direction:w?w>0?ir.forward:ir.back:ir.unknown})})};function c(){a=n.value}function u(p){l.push(p);const v=()=>{const g=l.indexOf(p);g>-1&&l.splice(g,1)};return o.push(v),v}function f(){const{history:p}=window;p.state&&p.replaceState(ye({},p.state,{scroll:Il()}),"")}function d(){for(const p of o)p();o=[],window.removeEventListener("popstate",i),window.removeEventListener("beforeunload",f)}return window.addEventListener("popstate",i),window.addEventListener("beforeunload",f,{passive:!0}),{pauseListeners:c,listen:u,destroy:d}}function ks(e,t,n,r=!1,l=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:l?Il():null}}function h0(e){const{history:t,location:n}=window,r={value:Dc(e,n)},l={value:t.state};l.value||o(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(c,u,f){const d=e.indexOf("#"),p=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+c:p0()+e+c;try{t[f?"replaceState":"pushState"](u,"",p),l.value=u}catch(v){console.error(v),n[f?"replace":"assign"](p)}}function a(c,u){const f=ye({},t.state,ks(l.value.back,c,l.value.forward,!0),u,{position:l.value.position});o(c,f,!0),r.value=c}function i(c,u){const f=ye({},l.value,t.state,{forward:c,scroll:Il()});o(f.current,f,!0);const d=ye({},ks(r.value,c,null),{position:f.position+1},u);o(c,d,!1),r.value=c}return{location:r,state:l,push:i,replace:a}}function m0(e){e=a0(e);const t=h0(e),n=v0(e,t.state,t.location,t.replace);function r(o,a=!0){a||n.pauseListeners(),history.go(o)}const l=ye({location:"",base:e,go:r,createHref:i0.bind(null,e)},t,n);return Object.defineProperty(l,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(l,"state",{enumerable:!0,get:()=>t.state.value}),l}function g0(e){return typeof e=="string"||e&&typeof e=="object"}function Fc(e){return typeof e=="string"||typeof e=="symbol"}const Ot={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Hc=Symbol("");var xs;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(xs||(xs={}));function zn(e,t){return ye(new Error,{type:e,[Hc]:!0},t)}function It(e,t){return e instanceof Error&&Hc in e&&(t==null||!!(e.type&t))}const Ls="[^/]+?",y0={sensitive:!1,strict:!1,start:!0,end:!0},b0=/[.+*?^${}()[\]/\\]/g;function _0(e,t){const n=ye({},y0,t),r=[];let l=n.start?"^":"";const o=[];for(const u of e){const f=u.length?[]:[90];n.strict&&!u.length&&(l+="/");for(let d=0;dt.length?t.length===1&&t[0]===80?1:-1:0}function w0(e,t){let n=0;const r=e.score,l=t.score;for(;n0&&t[t.length-1]<0}const A0={type:0,value:""},C0=/[a-zA-Z0-9_]/;function S0(e){if(!e)return[[]];if(e==="/")return[[A0]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(v){throw new Error(`ERR (${n})/"${u}": ${v}`)}let n=0,r=n;const l=[];let o;function a(){o&&l.push(o),o=[]}let i=0,c,u="",f="";function d(){u&&(n===0?o.push({type:0,value:u}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:u,regexp:f,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),u="")}function p(){u+=c}for(;i{a(S)}:sr}function a(f){if(Fc(f)){const d=r.get(f);d&&(r.delete(f),n.splice(n.indexOf(d),1),d.children.forEach(a),d.alias.forEach(a))}else{const d=n.indexOf(f);d>-1&&(n.splice(d,1),f.record.name&&r.delete(f.record.name),f.children.forEach(a),f.alias.forEach(a))}}function i(){return n}function c(f){let d=0;for(;d=0&&(f.record.path!==n[d].record.path||!Vc(f,n[d]));)d++;n.splice(d,0,f),f.record.name&&!Bs(f)&&r.set(f.record.name,f)}function u(f,d){let p,v={},g,E;if("name"in f&&f.name){if(p=r.get(f.name),!p)throw zn(1,{location:f});E=p.record.name,v=ye(Ps(d.params,p.keys.filter(S=>!S.optional).concat(p.parent?p.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),f.params&&Ps(f.params,p.keys.map(S=>S.name))),g=p.stringify(v)}else if(f.path!=null)g=f.path,p=n.find(S=>S.re.test(g)),p&&(v=p.parse(g),E=p.record.name);else{if(p=d.name?r.get(d.name):n.find(S=>S.re.test(d.path)),!p)throw zn(1,{location:f,currentLocation:d});E=p.record.name,v=ye({},d.params,f.params),g=p.stringify(v)}const w=[];let b=p;for(;b;)w.unshift(b.record),b=b.parent;return{name:E,path:g,params:v,matched:w,meta:I0(w)}}return e.forEach(f=>o(f)),{addRoute:o,resolve:u,removeRoute:a,getRoutes:i,getRecordMatcher:l}}function Ps(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function x0(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:L0(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function L0(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Bs(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function I0(e){return e.reduce((t,n)=>ye(t,n.meta),{})}function Os(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function Vc(e,t){return t.children.some(n=>n===e||Vc(e,n))}function P0(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let l=0;lo&&_o(o)):[r&&_o(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function B0(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=yt(r)?r.map(l=>l==null?null:""+l):r==null?r:""+r)}return t}const O0=Symbol(""),Rs=Symbol(""),Pl=Symbol(""),sa=Symbol(""),wo=Symbol("");function Zn(){let e=[];function t(r){return e.push(r),()=>{const l=e.indexOf(r);l>-1&&e.splice(l,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Kt(e,t,n,r,l,o=a=>a()){const a=r&&(r.enterCallbacks[l]=r.enterCallbacks[l]||[]);return()=>new Promise((i,c)=>{const u=p=>{p===!1?c(zn(4,{from:n,to:t})):p instanceof Error?c(p):g0(p)?c(zn(2,{from:t,to:p})):(a&&r.enterCallbacks[l]===a&&typeof p=="function"&&a.push(p),i())},f=o(()=>e.call(r&&r.instances[l],t,n,u));let d=Promise.resolve(f);e.length<3&&(d=d.then(u)),d.catch(p=>c(p))})}function Ql(e,t,n,r,l=o=>o()){const o=[];for(const a of e)for(const i in a.components){let c=a.components[i];if(!(t!=="beforeRouteEnter"&&!a.instances[i]))if($0(c)){const f=(c.__vccOpts||c)[t];f&&o.push(Kt(f,n,r,a,i,l))}else{let u=c();o.push(()=>u.then(f=>{if(!f)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${a.path}"`));const d=Vp(f)?f.default:f;a.components[i]=d;const v=(d.__vccOpts||d)[t];return v&&Kt(v,n,r,a,i,l)()}))}}return o}function $0(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Ao(e){const t=se(Pl),n=se(sa),r=_(()=>t.resolve(fn(e.to))),l=_(()=>{const{matched:c}=r.value,{length:u}=c,f=c[u-1],d=n.matched;if(!f||!d.length)return-1;const p=d.findIndex(Nn.bind(null,f));if(p>-1)return p;const v=Ms(c[u-2]);return u>1&&Ms(f)===v&&d[d.length-1].path!==v?d.findIndex(Nn.bind(null,c[u-2])):p}),o=_(()=>l.value>-1&&F0(n.params,r.value.params)),a=_(()=>l.value>-1&&l.value===n.matched.length-1&&Mc(n.params,r.value.params));function i(c={}){return D0(c)?t[fn(e.replace)?"replace":"push"](fn(e.to)).catch(sr):Promise.resolve()}return{route:r,href:_(()=>r.value.href),isActive:o,isExactActive:a,navigate:i}}const R0=O({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Ao,setup(e,{slots:t}){const n=wr(Ao(e)),{options:r}=se(Pl),l=_(()=>({[Ds(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[Ds(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:s("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:l.value},o)}}}),M0=R0;function D0(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function F0(e,t){for(const n in t){const r=t[n],l=e[n];if(typeof r=="string"){if(r!==l)return!1}else if(!yt(l)||l.length!==r.length||r.some((o,a)=>o!==l[a]))return!1}return!0}function Ms(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Ds=(e,t,n)=>e??t??n,H0=O({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=se(wo),l=_(()=>e.route||r.value),o=se(Rs,0),a=_(()=>{let u=fn(o);const{matched:f}=l.value;let d;for(;(d=f[u])&&!d.components;)u++;return u}),i=_(()=>l.value.matched[a.value]);mt(Rs,_(()=>a.value+1)),mt(O0,i),mt(wo,l);const c=U();return de(()=>[c.value,i.value,e.name],([u,f,d],[p,v,g])=>{f&&(f.instances[d]=u,v&&v!==f&&u&&u===p&&(f.leaveGuards.size||(f.leaveGuards=v.leaveGuards),f.updateGuards.size||(f.updateGuards=v.updateGuards))),u&&f&&(!v||!Nn(f,v)||!p)&&(f.enterCallbacks[d]||[]).forEach(E=>E(u))},{flush:"post"}),()=>{const u=l.value,f=e.name,d=i.value,p=d&&d.components[f];if(!p)return Fs(n.default,{Component:p,route:u});const v=d.props[f],g=v?v===!0?u.params:typeof v=="function"?v(u):v:null,w=s(p,ye({},g,t,{onVnodeUnmounted:b=>{b.component.isUnmounted&&(d.instances[f]=null)},ref:c}));return Fs(n.default,{Component:w,route:u})||w}}});function Fs(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Nc=H0;function V0(e){const t=k0(e.routes,e),n=e.parseQuery||P0,r=e.stringifyQuery||$s,l=e.history,o=Zn(),a=Zn(),i=Zn(),c=Ce(Ot);let u=Ot;Sn&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const f=Yl.bind(null,x=>""+x),d=Yl.bind(null,Zp),p=Yl.bind(null,gr);function v(x,z){let V,J;return Fc(x)?(V=t.getRecordMatcher(x),J=z):J=x,t.addRoute(J,V)}function g(x){const z=t.getRecordMatcher(x);z&&t.removeRoute(z)}function E(){return t.getRoutes().map(x=>x.record)}function w(x){return!!t.getRecordMatcher(x)}function b(x,z){if(z=ye({},z||c.value),typeof x=="string"){const m=Jl(n,x,z.path),A=t.resolve({path:m.path},z),I=l.createHref(m.fullPath);return ye(m,A,{params:p(A.params),hash:gr(m.hash),redirectedFrom:void 0,href:I})}let V;if(x.path!=null)V=ye({},x,{path:Jl(n,x.path,z.path).path});else{const m=ye({},x.params);for(const A in m)m[A]==null&&delete m[A];V=ye({},x,{params:d(m)}),z.params=d(z.params)}const J=t.resolve(V,z),pe=x.hash||"";J.params=f(p(J.params));const we=n0(r,ye({},x,{hash:Jp(pe),path:J.path})),h=l.createHref(we);return ye({fullPath:we,hash:pe,query:r===$s?B0(x.query):x.query||{}},J,{redirectedFrom:void 0,href:h})}function S(x){return typeof x=="string"?Jl(n,x,c.value.path):ye({},x)}function y(x,z){if(u!==x)return zn(8,{from:z,to:x})}function T(x){return W(x)}function D(x){return T(ye(S(x),{replace:!0}))}function C(x){const z=x.matched[x.matched.length-1];if(z&&z.redirect){const{redirect:V}=z;let J=typeof V=="function"?V(x):V;return typeof J=="string"&&(J=J.includes("?")||J.includes("#")?J=S(J):{path:J},J.params={}),ye({query:x.query,hash:x.hash,params:J.path!=null?{}:x.params},J)}}function W(x,z){const V=u=b(x),J=c.value,pe=x.state,we=x.force,h=x.replace===!0,m=C(V);if(m)return W(ye(S(m),{state:typeof m=="object"?ye({},pe,m.state):pe,force:we,replace:h}),z||V);const A=V;A.redirectedFrom=z;let I;return!we&&r0(r,J,V)&&(I=zn(16,{to:A,from:J}),ot(J,J,!0,!1)),(I?Promise.resolve(I):B(A,J)).catch(L=>It(L)?It(L,2)?L:_t(L):Y(L,A,J)).then(L=>{if(L){if(It(L,2))return W(ye({replace:h},S(L.to),{state:typeof L.to=="object"?ye({},pe,L.to.state):pe,force:we}),z||A)}else L=$(A,J,!0,h,pe);return q(A,J,L),L})}function H(x,z){const V=y(x,z);return V?Promise.reject(V):Promise.resolve()}function K(x){const z=Lt.values().next().value;return z&&typeof z.runWithContext=="function"?z.runWithContext(x):x()}function B(x,z){let V;const[J,pe,we]=N0(x,z);V=Ql(J.reverse(),"beforeRouteLeave",x,z);for(const m of J)m.leaveGuards.forEach(A=>{V.push(Kt(A,x,z))});const h=H.bind(null,x,z);return V.push(h),$e(V).then(()=>{V=[];for(const m of o.list())V.push(Kt(m,x,z));return V.push(h),$e(V)}).then(()=>{V=Ql(pe,"beforeRouteUpdate",x,z);for(const m of pe)m.updateGuards.forEach(A=>{V.push(Kt(A,x,z))});return V.push(h),$e(V)}).then(()=>{V=[];for(const m of we)if(m.beforeEnter)if(yt(m.beforeEnter))for(const A of m.beforeEnter)V.push(Kt(A,x,z));else V.push(Kt(m.beforeEnter,x,z));return V.push(h),$e(V)}).then(()=>(x.matched.forEach(m=>m.enterCallbacks={}),V=Ql(we,"beforeRouteEnter",x,z,K),V.push(h),$e(V))).then(()=>{V=[];for(const m of a.list())V.push(Kt(m,x,z));return V.push(h),$e(V)}).catch(m=>It(m,8)?m:Promise.reject(m))}function q(x,z,V){i.list().forEach(J=>K(()=>J(x,z,V)))}function $(x,z,V,J,pe){const we=y(x,z);if(we)return we;const h=z===Ot,m=Sn?history.state:{};V&&(J||h?l.replace(x.fullPath,ye({scroll:h&&m&&m.scroll},pe)):l.push(x.fullPath,pe)),c.value=x,ot(x,z,V,h),_t()}let te;function Ie(){te||(te=l.listen((x,z,V)=>{if(!Et.listening)return;const J=b(x),pe=C(J);if(pe){W(ye(pe,{replace:!0}),J).catch(sr);return}u=J;const we=c.value;Sn&&f0(Ts(we.fullPath,V.delta),Il()),B(J,we).catch(h=>It(h,12)?h:It(h,2)?(W(h.to,J).then(m=>{It(m,20)&&!V.delta&&V.type===yr.pop&&l.go(-1,!1)}).catch(sr),Promise.reject()):(V.delta&&l.go(-V.delta,!1),Y(h,J,we))).then(h=>{h=h||$(J,we,!1),h&&(V.delta&&!It(h,8)?l.go(-V.delta,!1):V.type===yr.pop&&It(h,20)&&l.go(-1,!1)),q(J,we,h)}).catch(sr)}))}let ke=Zn(),G=Zn(),ne;function Y(x,z,V){_t(x);const J=G.list();return J.length?J.forEach(pe=>pe(x,z,V)):console.error(x),Promise.reject(x)}function Oe(){return ne&&c.value!==Ot?Promise.resolve():new Promise((x,z)=>{ke.add([x,z])})}function _t(x){return ne||(ne=!x,Ie(),ke.list().forEach(([z,V])=>x?V(x):z()),ke.reset()),x}function ot(x,z,V,J){const{scrollBehavior:pe}=e;if(!Sn||!pe)return Promise.resolve();const we=!V&&d0(Ts(x.fullPath,0))||(J||!V)&&history.state&&history.state.scroll||null;return hn().then(()=>pe(x,z,we)).then(h=>h&&u0(h)).catch(h=>Y(h,x,z))}const Fe=x=>l.go(x);let Ze;const Lt=new Set,Et={currentRoute:c,listening:!0,addRoute:v,removeRoute:g,hasRoute:w,getRoutes:E,resolve:b,options:e,push:T,replace:D,go:Fe,back:()=>Fe(-1),forward:()=>Fe(1),beforeEach:o.add,beforeResolve:a.add,afterEach:i.add,onError:G.add,isReady:Oe,install(x){const z=this;x.component("RouterLink",M0),x.component("RouterView",Nc),x.config.globalProperties.$router=z,Object.defineProperty(x.config.globalProperties,"$route",{enumerable:!0,get:()=>fn(c)}),Sn&&!Ze&&c.value===Ot&&(Ze=!0,T(l.location).catch(pe=>{}));const V={};for(const pe in Ot)Object.defineProperty(V,pe,{get:()=>c.value[pe],enumerable:!0});x.provide(Pl,z),x.provide(sa,xi(V)),x.provide(wo,c);const J=x.unmount;Lt.add(x),x.unmount=function(){Lt.delete(x),Lt.size<1&&(u=Ot,te&&te(),te=null,c.value=Ot,Ze=!1,ne=!1),J()}}};function $e(x){return x.reduce((z,V)=>z.then(()=>K(V)),Promise.resolve())}return Et}function N0(e,t){const n=[],r=[],l=[],o=Math.max(t.matched.length,e.matched.length);for(let a=0;aNn(u,i))?r.push(i):n.push(i));const c=e.matched[a];c&&(t.matched.find(u=>Nn(u,c))||l.push(c))}return[n,r,l]}function je(){return se(Pl)}function xt(){return se(sa)}var Ge=Uint8Array,kn=Uint16Array,z0=Int32Array,zc=new Ge([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0]),jc=new Ge([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0]),j0=new Ge([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Uc=function(e,t){for(var n=new kn(31),r=0;r<31;++r)n[r]=t+=1<>1|(Te&21845)<<1;zt=(zt&52428)>>2|(zt&13107)<<2,zt=(zt&61680)>>4|(zt&3855)<<4,Co[Te]=((zt&65280)>>8|(zt&255)<<8)>>1}var cr=function(e,t,n){for(var r=e.length,l=0,o=new kn(t);l>c]=u}else for(i=new kn(r),l=0;l>15-e[l]);return i},xr=new Ge(288);for(var Te=0;Te<144;++Te)xr[Te]=8;for(var Te=144;Te<256;++Te)xr[Te]=9;for(var Te=256;Te<280;++Te)xr[Te]=7;for(var Te=280;Te<288;++Te)xr[Te]=8;var Wc=new Ge(32);for(var Te=0;Te<32;++Te)Wc[Te]=5;var W0=cr(xr,9,1),K0=cr(Wc,5,1),Xl=function(e){for(var t=e[0],n=1;nt&&(t=e[n]);return t},pt=function(e,t,n){var r=t/8|0;return(e[r]|e[r+1]<<8)>>(t&7)&n},Zl=function(e,t){var n=t/8|0;return(e[n]|e[n+1]<<8|e[n+2]<<16)>>(t&7)},Y0=function(e){return(e+7)/8|0},ia=function(e,t,n){return(t==null||t<0)&&(t=0),(n==null||n>e.length)&&(n=e.length),new Ge(e.subarray(t,n))},J0=["unexpected EOF","invalid block type","invalid length/literal","invalid distance","stream finished","no stream handler",,"no callback","invalid UTF-8 data","extra field too long","date not in range 1980-2099","filename too long","stream finishing","invalid zip data"],it=function(e,t,n){var r=new Error(t||J0[e]);if(r.code=e,Error.captureStackTrace&&Error.captureStackTrace(r,it),!n)throw r;return r},Q0=function(e,t,n,r){var l=e.length,o=r?r.length:0;if(!l||t.f&&!t.l)return n||new Ge(0);var a=!n,i=a||t.i!=2,c=t.i;a&&(n=new Ge(l*3));var u=function(pe){var we=n.length;if(pe>we){var h=new Ge(Math.max(we*2,pe));h.set(n),n=h}},f=t.f||0,d=t.p||0,p=t.b||0,v=t.l,g=t.d,E=t.m,w=t.n,b=l*8;do{if(!v){f=pt(e,d,1);var S=pt(e,d+1,3);if(d+=3,S)if(S==1)v=W0,g=K0,E=9,w=5;else if(S==2){var C=pt(e,d,31)+257,W=pt(e,d+10,15)+4,H=C+pt(e,d+5,31)+1;d+=14;for(var K=new Ge(H),B=new Ge(19),q=0;q>4;if(y<16)K[q++]=y;else{var G=0,ne=0;for(y==16?(ne=3+pt(e,d,3),d+=2,G=K[q-1]):y==17?(ne=3+pt(e,d,7),d+=3):y==18&&(ne=11+pt(e,d,127),d+=7);ne--;)K[q++]=G}}var Y=K.subarray(0,C),Oe=K.subarray(C);E=Xl(Y),w=Xl(Oe),v=cr(Y,E,1),g=cr(Oe,w,1)}else it(1);else{var y=Y0(d)+4,T=e[y-4]|e[y-3]<<8,D=y+T;if(D>l){c&&it(0);break}i&&u(p+T),n.set(e.subarray(y,D),p),t.b=p+=T,t.p=d=D*8,t.f=f;continue}if(d>b){c&&it(0);break}}i&&u(p+131072);for(var _t=(1<>4;if(d+=G&15,d>b){c&&it(0);break}if(G||it(2),Ze<256)n[p++]=Ze;else if(Ze==256){Fe=d,v=null;break}else{var Lt=Ze-254;if(Ze>264){var q=Ze-257,Et=zc[q];Lt=pt(e,d,(1<>4;$e||it(3),d+=$e&15;var Oe=G0[x];if(x>3){var Et=jc[x];Oe+=Zl(e,d)&(1<b){c&&it(0);break}i&&u(p+131072);var z=p+Lt;if(p>4>7||(e[0]<<8|e[1])%31)&&it(6,"invalid zlib data"),(e[1]>>5&1)==+!t&&it(6,"invalid zlib data: "+(e[1]&32?"need":"unexpected")+" dictionary"),(e[1]>>3&4)+2};function e2(e,t){return Q0(e.subarray(Z0(e,t&&t.dictionary),-4),{i:2},t&&t.out,t&&t.dictionary)}var Hs=typeof TextEncoder<"u"&&new TextEncoder,So=typeof TextDecoder<"u"&&new TextDecoder,t2=0;try{So.decode(X0,{stream:!0}),t2=1}catch{}var n2=function(e){for(var t="",n=0;;){var r=e[n++],l=(r>127)+(r>223)+(r>239);if(n+l>e.length)return{s:t,r:ia(e,n-1)};l?l==3?(r=((r&15)<<18|(e[n++]&63)<<12|(e[n++]&63)<<6|e[n++]&63)-65536,t+=String.fromCharCode(55296|r>>10,56320|r&1023)):l&1?t+=String.fromCharCode((r&31)<<6|e[n++]&63):t+=String.fromCharCode((r&15)<<12|(e[n++]&63)<<6|e[n++]&63):t+=String.fromCharCode(r)}};function r2(e,t){if(t){for(var n=new Ge(e.length),r=0;r>1)),a=0,i=function(f){o[a++]=f},r=0;ro.length){var c=new Ge(a+8+(l-r<<1));c.set(o),o=c}var u=e.charCodeAt(r);u<128||t?i(u):u<2048?(i(192|u>>6),i(128|u&63)):u>55295&&u<57344?(u=65536+(u&1047552)|e.charCodeAt(++r)&1023,i(240|u>>18),i(128|u>>12&63),i(128|u>>6&63),i(128|u&63)):(i(224|u>>12),i(128|u>>6&63),i(128|u&63))}return ia(o,0,a)}function l2(e,t){if(t){for(var n="",r=0;r{var r;return s("svg",{xmlns:"http://www.w3.org/2000/svg",class:["icon",`${e}-icon`],viewBox:"0 0 1024 1024",fill:t,"aria-label":`${e} icon`},(r=n.default)==null?void 0:r.call(n))};ce.displayName="IconBase";const Ft=({size:e=48,stroke:t=4,wrapper:n=!0,height:r=2*e})=>{const l=s("svg",{xmlns:"http://www.w3.org/2000/svg",width:e,height:e,preserveAspectRatio:"xMidYMid",viewBox:"25 25 50 50"},[s("animateTransform",{attributeName:"transform",type:"rotate",dur:"2s",keyTimes:"0;1",repeatCount:"indefinite",values:"0;360"}),s("circle",{cx:"50",cy:"50",r:"20",fill:"none",stroke:"currentColor","stroke-width":t,"stroke-linecap":"round"},[s("animate",{attributeName:"stroke-dasharray",dur:"1.5s",keyTimes:"0;0.5;1",repeatCount:"indefinite",values:"1,200;90,200;1,200"}),s("animate",{attributeName:"stroke-dashoffset",dur:"1.5s",keyTimes:"0;0.5;1",repeatCount:"indefinite",values:"0;-35px;-125px"})])]);return n?s("div",{class:"loading-icon-wrapper",style:`display:flex;align-items:center;justify-content:center;height:${r}px`},l):l};Ft.displayName="LoadingIcon";const Kc=(e,{slots:t})=>{var n;return(n=t.default)==null?void 0:n.call(t)},ca=(e="")=>{if(e){if(typeof e=="number")return new Date(e);const t=Date.parse(e.toString());if(!Number.isNaN(t))return new Date(t)}return null},Bl=(e,t)=>{let n=1;for(let r=0;r>6;return n+=n<<3,n^=n>>11,n%t},ua=Array.isArray,o2=e=>typeof e=="function",a2=e=>typeof e=="string";var fa=e=>/^(https?:)?\/\//.test(e),s2=/.md((\?|#).*)?$/,i2=(e,t="/")=>!!(fa(e)||e.startsWith("/")&&!e.startsWith(t)&&!s2.test(e)),ur=e=>Object.prototype.toString.call(e)==="[object Object]";function c2(){const e=U(!1);return mn()&&me(()=>{e.value=!0}),e}function u2(e){return c2(),_(()=>!!e())}const f2=e=>typeof e=="function",eo=e=>typeof e=="number",Mt=e=>typeof e=="string",jn=(e,t)=>Mt(e)&&e.startsWith(t),Kr=(e,t)=>Mt(e)&&e.endsWith(t),yn=Object.entries,d2=Object.fromEntries,ft=Object.keys,To=(e,...t)=>{if(t.length===0)return e;const n=t.shift()||null;return n&&yn(n).forEach(([r,l])=>{r==="__proto__"||r==="constructor"||(ur(e[r])&&ur(l)?To(e[r],l):ua(l)?e[r]=[...l]:ur(l)?e[r]={...l}:e[r]=n[r])}),To(e,...t)},p2=e=>(e.endsWith(".md")&&(e=`${e.slice(0,-3)}.html`),!e.endsWith("/")&&!e.endsWith(".html")&&(e=`${e}.html`),e=e.replace(/(^|\/)(?:README|index).html$/i,"$1"),e),Yc=e=>{const[t,n=""]=e.split("#");return t?`${p2(t)}${n?`#${n}`:""}`:e},Vs=e=>ur(e)&&Mt(e.name),br=(e,t=!1)=>e?ua(e)?e.map(n=>Mt(n)?{name:n}:Vs(n)?n:null).filter(n=>n!==null):Mt(e)?[{name:e}]:Vs(e)?[e]:(console.error(`Expect "author" to be \`AuthorInfo[] | AuthorInfo | string[] | string ${t?"":"| false"} | undefined\`, but got`,e),[]):[],Jc=(e,t)=>{if(e){if(ua(e)&&e.every(Mt))return e;if(Mt(e))return[e];console.error(`Expect ${t||"value"} to be \`string[] | string | undefined\`, but got`,e)}return[]},Qc=e=>Jc(e,"category"),Xc=e=>Jc(e,"tag"),Lr=e=>jn(e,"/");let v2=class{constructor(){this.messageElements={};const t="message-container",n=document.getElementById(t);n?this.containerElement=n:(this.containerElement=document.createElement("div"),this.containerElement.id=t,document.body.appendChild(this.containerElement))}pop(t,n=2e3){const r=document.createElement("div"),l=Date.now();return r.className="message move-in",r.innerHTML=t,this.containerElement.appendChild(r),this.messageElements[l]=r,n>0&&setTimeout(()=>{this.close(l)},n),l}close(t){if(t){const n=this.messageElements[t];n.classList.remove("move-in"),n.classList.add("move-out"),n.addEventListener("animationend",()=>{n.remove(),delete this.messageElements[t]})}else ft(this.messageElements).forEach(n=>this.close(Number(n)))}destroy(){document.body.removeChild(this.containerElement)}};const Zc=/#.*$/u,h2=e=>{const t=Zc.exec(e);return t?t[0]:""},Ns=e=>decodeURI(e).replace(Zc,"").replace(/(index)?\.html$/i,"").replace(/(README|index)?\.md$/i,""),eu=(e,t)=>{if(t===void 0)return!1;const n=Ns(e.path),r=Ns(t),l=h2(t);return l?l===e.hash&&(!r||n===r):n===r},Zt=e=>{const t=atob(e);return l2(e2(r2(t,!0)))},m2=e=>fa(e)?e:`https://github.com/${e}`,tu=e=>!fa(e)||/github\.com/.test(e)?"GitHub":/bitbucket\.org/.test(e)?"Bitbucket":/gitlab\.com/.test(e)?"GitLab":/gitee\.com/.test(e)?"Gitee":null,Un=(e,...t)=>{const n=e.resolve(...t),r=n.matched[n.matched.length-1];if(!(r!=null&&r.redirect))return n;const{redirect:l}=r,o=o2(l)?l(n):l,a=a2(o)?{path:o}:o;return Un(e,{hash:n.hash,query:n.query,params:n.params,...a})},g2=e=>{var t;if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)&&!(e.currentTarget&&((t=e.currentTarget.getAttribute("target"))!=null&&t.match(/\b_blank\b/i))))return e.preventDefault(),!0},Re=({to:e="",class:t="",...n},{slots:r})=>{var i;const l=je(),o=Yc(e),a=(c={})=>g2(c)?l.push(e).catch():Promise.resolve();return s("a",{...n,class:["vp-link",t],href:jn(o,"/")?Le(o):o,onClick:a},(i=r.default)==null?void 0:i.call(r))};Re.displayName="VPLink";const nu=()=>s(ce,{name:"github"},()=>s("path",{d:"M511.957 21.333C241.024 21.333 21.333 240.981 21.333 512c0 216.832 140.544 400.725 335.574 465.664 24.49 4.395 32.256-10.07 32.256-23.083 0-11.69.256-44.245 0-85.205-136.448 29.61-164.736-64.64-164.736-64.64-22.315-56.704-54.4-71.765-54.4-71.765-44.587-30.464 3.285-29.824 3.285-29.824 49.195 3.413 75.179 50.517 75.179 50.517 43.776 75.008 114.816 53.333 142.762 40.79 4.523-31.66 17.152-53.377 31.19-65.537-108.971-12.458-223.488-54.485-223.488-242.602 0-53.547 19.114-97.323 50.517-131.67-5.035-12.33-21.93-62.293 4.779-129.834 0 0 41.258-13.184 134.912 50.346a469.803 469.803 0 0 1 122.88-16.554c41.642.213 83.626 5.632 122.88 16.554 93.653-63.488 134.784-50.346 134.784-50.346 26.752 67.541 9.898 117.504 4.864 129.834 31.402 34.347 50.474 78.123 50.474 131.67 0 188.586-114.73 230.016-224.042 242.09 17.578 15.232 33.578 44.672 33.578 90.454v135.85c0 13.142 7.936 27.606 32.854 22.87C862.25 912.597 1002.667 728.747 1002.667 512c0-271.019-219.648-490.667-490.71-490.667z"}));nu.displayName="GitHubIcon";const ru=()=>s(ce,{name:"gitlab"},()=>s("path",{d:"M229.333 78.688C223.52 62 199.895 62 193.895 78.688L87.958 406.438h247.5c-.188 0-106.125-327.75-106.125-327.75zM33.77 571.438c-4.875 15 .563 31.687 13.313 41.25l464.812 345L87.77 406.438zm301.5-165 176.813 551.25 176.812-551.25zm655.125 165-54-165-424.312 551.25 464.812-345c12.938-9.563 18.188-26.25 13.5-41.25zM830.27 78.688c-5.812-16.688-29.437-16.688-35.437 0l-106.125 327.75h247.5z"}));ru.displayName="GitLabIcon";const lu=()=>s(ce,{name:"gitee"},()=>s("path",{d:"M512 992C246.92 992 32 777.08 32 512S246.92 32 512 32s480 214.92 480 480-214.92 480-480 480zm242.97-533.34H482.39a23.7 23.7 0 0 0-23.7 23.7l-.03 59.28c0 13.08 10.59 23.7 23.7 23.7h165.96a23.7 23.7 0 0 1 23.7 23.7v11.85a71.1 71.1 0 0 1-71.1 71.1H375.71a23.7 23.7 0 0 1-23.7-23.7V423.11a71.1 71.1 0 0 1 71.1-71.1h331.8a23.7 23.7 0 0 0 23.7-23.7l.06-59.25a23.73 23.73 0 0 0-23.7-23.73H423.11a177.78 177.78 0 0 0-177.78 177.75v331.83c0 13.08 10.62 23.7 23.7 23.7h349.62a159.99 159.99 0 0 0 159.99-159.99V482.33a23.7 23.7 0 0 0-23.7-23.7z"}));lu.displayName="GiteeIcon";const ou=()=>s(ce,{name:"bitbucket"},()=>s("path",{d:"M575.256 490.862c6.29 47.981-52.005 85.723-92.563 61.147-45.714-20.004-45.714-92.562-1.133-113.152 38.29-23.442 93.696 7.424 93.696 52.005zm63.451-11.996c-10.276-81.152-102.29-134.839-177.152-101.156-47.433 21.138-79.433 71.424-77.129 124.562 2.853 69.705 69.157 126.866 138.862 120.576S647.3 548.571 638.708 478.83zm136.558-309.723c-25.161-33.134-67.986-38.839-105.728-45.13-106.862-17.151-216.576-17.7-323.438 1.134-35.438 5.706-75.447 11.996-97.719 43.996 36.572 34.304 88.576 39.424 135.424 45.129 84.553 10.862 171.447 11.447 256 .585 47.433-5.705 99.987-10.276 135.424-45.714zm32.585 591.433c-16.018 55.99-6.839 131.438-66.304 163.986-102.29 56.576-226.304 62.867-338.87 42.862-59.43-10.862-129.135-29.696-161.72-85.723-14.3-54.858-23.442-110.848-32.585-166.84l3.438-9.142 10.276-5.157c170.277 112.567 408.576 112.567 579.438 0 26.844 8.01 6.84 40.558 6.29 60.014zm103.424-549.157c-19.42 125.148-41.728 249.71-63.415 374.272-6.29 36.572-41.728 57.162-71.424 72.558-106.862 53.724-231.424 62.866-348.562 50.286-79.433-8.558-160.585-29.696-225.134-79.433-30.28-23.443-30.28-63.415-35.986-97.134-20.005-117.138-42.862-234.277-57.161-352.585 6.839-51.42 64.585-73.728 107.447-89.71 57.16-21.138 118.272-30.866 178.87-36.571 129.134-12.58 261.157-8.01 386.304 28.562 44.581 13.13 92.563 31.415 122.844 69.705 13.714 17.7 9.143 40.01 6.29 60.014z"}));ou.displayName="BitbucketIcon";const au=()=>s(ce,{name:"source"},()=>s("path",{d:"M601.92 475.2c0 76.428-8.91 83.754-28.512 99.594-14.652 11.88-43.956 14.058-78.012 16.434-18.81 1.386-40.392 2.97-62.172 6.534-18.612 2.97-36.432 9.306-53.064 17.424V299.772c37.818-21.978 63.36-62.766 63.36-109.692 0-69.894-56.826-126.72-126.72-126.72S190.08 120.186 190.08 190.08c0 46.926 25.542 87.714 63.36 109.692v414.216c-37.818 21.978-63.36 62.766-63.36 109.692 0 69.894 56.826 126.72 126.72 126.72s126.72-56.826 126.72-126.72c0-31.086-11.286-59.598-29.7-81.576 13.266-9.504 27.522-17.226 39.996-19.206 16.038-2.574 32.868-3.762 50.688-5.148 48.312-3.366 103.158-7.326 148.896-44.55 61.182-49.698 74.25-103.158 75.24-187.902V475.2h-126.72zM316.8 126.72c34.848 0 63.36 28.512 63.36 63.36s-28.512 63.36-63.36 63.36-63.36-28.512-63.36-63.36 28.512-63.36 63.36-63.36zm0 760.32c-34.848 0-63.36-28.512-63.36-63.36s28.512-63.36 63.36-63.36 63.36 28.512 63.36 63.36-28.512 63.36-63.36 63.36zM823.68 158.4h-95.04V63.36h-126.72v95.04h-95.04v126.72h95.04v95.04h126.72v-95.04h95.04z"}));au.displayName="SourceIcon";const gt=(e,t)=>{var r;const n=(r=(t==null?void 0:t._instance)||mn())==null?void 0:r.appContext.components;return n?e in n||lt(e)in n||Er(lt(e))in n:!1},y2=()=>u2(()=>typeof window<"u"&&window.navigator&&"userAgent"in window.navigator),b2=()=>{const e=y2();return _(()=>e.value&&/\b(?:Android|iPhone)/i.test(navigator.userAgent))},Ir=e=>{const t=kt();return _(()=>e[t.value])},su=({type:e="info",text:t="",vertical:n,color:r},{slots:l})=>{var o;return s("span",{class:["vp-badge",e,{diy:r}],style:{verticalAlign:n??!1,backgroundColor:r??!1}},((o=l.default)==null?void 0:o.call(l))||t)};su.displayName="Badge";var _2=O({name:"FontIcon",props:{icon:{type:String,default:""},color:{type:String,default:""},size:{type:[String,Number],default:""}},setup(e){const t=_(()=>{const r=["font-icon icon"],l=`${e.icon}`;return r.push(l),r}),n=_(()=>{const r={};return e.color&&(r.color=e.color),e.size&&(r["font-size"]=Number.isNaN(Number(e.size))?e.size:`${e.size}px`),ft(r).length?r:null});return()=>e.icon?s("span",{key:e.icon,class:t.value,style:n.value}):null}});function zs(e,t){var n;const r=Ce();return Vi(()=>{r.value=e()},{...t,flush:(n=t==null?void 0:t.flush)!=null?n:"sync"}),vn(r)}function da(e,t){let n,r,l;const o=U(!0),a=()=>{o.value=!0,l()};de(e,a,{flush:"sync"});const i=typeof t=="function"?t:t.get,c=typeof t=="function"?void 0:t.set,u=Yo((f,d)=>(r=f,l=d,{get(){return o.value&&(n=i(),o.value=!1),r(),n},set(p){c==null||c(p)}}));return Object.isExtensible(u)&&(u.trigger=a),u}function bn(e){return mi()?(td(e),!0):!1}function We(e){return typeof e=="function"?e():fn(e)}const Pr=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const E2=e=>e!=null,w2=Object.prototype.toString,A2=e=>w2.call(e)==="[object Object]",Rt=()=>{},ko=C2();function C2(){var e,t;return Pr&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function pa(e,t){function n(...r){return new Promise((l,o)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(l).catch(o)})}return n}const iu=e=>e();function S2(e,t={}){let n,r,l=Rt;const o=i=>{clearTimeout(i),l(),l=Rt};return i=>{const c=We(e),u=We(t.maxWait);return n&&o(n),c<=0||u!==void 0&&u<=0?(r&&(o(r),r=null),Promise.resolve(i())):new Promise((f,d)=>{l=t.rejectOnCancel?d:f,u&&!r&&(r=setTimeout(()=>{n&&o(n),r=null,f(i())},u)),n=setTimeout(()=>{r&&o(r),r=null,f(i())},c)})}}function T2(...e){let t=0,n,r=!0,l=Rt,o,a,i,c,u;!Ne(e[0])&&typeof e[0]=="object"?{delay:a,trailing:i=!0,leading:c=!0,rejectOnCancel:u=!1}=e[0]:[a,i=!0,c=!0,u=!1]=e;const f=()=>{n&&(clearTimeout(n),n=void 0,l(),l=Rt)};return p=>{const v=We(a),g=Date.now()-t,E=()=>o=p();return f(),v<=0?(t=Date.now(),E()):(g>v&&(c||!r)?(t=Date.now(),E()):i&&(o=new Promise((w,b)=>{l=u?b:w,n=setTimeout(()=>{t=Date.now(),r=!0,w(E()),f()},Math.max(0,v-g))})),!c&&!n&&(n=setTimeout(()=>r=!0,v)),r=!1,o)}}function k2(e=iu){const t=U(!0);function n(){t.value=!1}function r(){t.value=!0}const l=(...o)=>{t.value&&e(...o)};return{isActive:vn(t),pause:n,resume:r,eventFilter:l}}function x2(e){let t;function n(){return t||(t=e()),t}return n.reset=async()=>{const r=t;t=void 0,r&&await r},n}function L2(e){return e||mn()}function I2(...e){if(e.length!==1)return Wn(...e);const t=e[0];return typeof t=="function"?vn(Yo(()=>({get:t,set:Rt}))):U(t)}function cu(e,t=200,n={}){return pa(S2(t,n),e)}function P2(e,t=200,n=!1,r=!0,l=!1){return pa(T2(t,n,r,l),e)}function B2(e,t,n={}){const{eventFilter:r=iu,...l}=n;return de(e,pa(r,t),l)}function O2(e,t,n={}){const{eventFilter:r,...l}=n,{eventFilter:o,pause:a,resume:i,isActive:c}=k2(r);return{stop:B2(e,t,{...l,eventFilter:o}),pause:a,resume:i,isActive:c}}function va(e,t=!0,n){L2()?me(e,n):t?e():hn(e)}function $2(e,t,n={}){const{immediate:r=!0}=n,l=U(!1);let o=null;function a(){o&&(clearTimeout(o),o=null)}function i(){l.value=!1,a()}function c(...u){a(),l.value=!0,o=setTimeout(()=>{l.value=!1,o=null,e(...u)},We(t))}return r&&(l.value=!0,Pr&&c()),bn(i),{isPending:vn(l),start:c,stop:i}}function ml(e=!1,t={}){const{truthyValue:n=!0,falsyValue:r=!1}=t,l=Ne(e),o=U(e);function a(i){if(arguments.length)return o.value=i,o.value;{const c=We(n);return o.value=o.value===c?We(r):c,o.value}}return l?a:[o,a]}function Je(e){var t;const n=We(e);return(t=n==null?void 0:n.$el)!=null?t:n}const Tt=Pr?window:void 0,R2=Pr?window.document:void 0,uu=Pr?window.navigator:void 0;function Pe(...e){let t,n,r,l;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,l]=e,t=Tt):[t,n,r,l]=e,!t)return Rt;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const o=[],a=()=>{o.forEach(f=>f()),o.length=0},i=(f,d,p,v)=>(f.addEventListener(d,p,v),()=>f.removeEventListener(d,p,v)),c=de(()=>[Je(t),We(l)],([f,d])=>{if(a(),!f)return;const p=A2(d)?{...d}:d;o.push(...n.flatMap(v=>r.map(g=>i(f,v,g,p))))},{immediate:!0,flush:"post"}),u=()=>{c(),a()};return bn(u),u}let js=!1;function M2(e,t,n={}){const{window:r=Tt,ignore:l=[],capture:o=!0,detectIframe:a=!1}=n;if(!r)return Rt;ko&&!js&&(js=!0,Array.from(r.document.body.children).forEach(p=>p.addEventListener("click",Rt)),r.document.documentElement.addEventListener("click",Rt));let i=!0;const c=p=>l.some(v=>{if(typeof v=="string")return Array.from(r.document.querySelectorAll(v)).some(g=>g===p.target||p.composedPath().includes(g));{const g=Je(v);return g&&(p.target===g||p.composedPath().includes(g))}}),f=[Pe(r,"click",p=>{const v=Je(e);if(!(!v||v===p.target||p.composedPath().includes(v))){if(p.detail===0&&(i=!c(p)),!i){i=!0;return}t(p)}},{passive:!0,capture:o}),Pe(r,"pointerdown",p=>{const v=Je(e);i=!c(p)&&!!(v&&!p.composedPath().includes(v))},{passive:!0}),a&&Pe(r,"blur",p=>{setTimeout(()=>{var v;const g=Je(e);((v=r.document.activeElement)==null?void 0:v.tagName)==="IFRAME"&&!(g!=null&&g.contains(r.document.activeElement))&&t(p)},0)})].filter(Boolean);return()=>f.forEach(p=>p())}function D2(){const e=U(!1),t=mn();return t&&me(()=>{e.value=!0},t),e}function Yn(e){const t=D2();return _(()=>(t.value,!!e()))}function fu(e,t={}){const{window:n=Tt}=t,r=Yn(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let l;const o=U(!1),a=u=>{o.value=u.matches},i=()=>{l&&("removeEventListener"in l?l.removeEventListener("change",a):l.removeListener(a))},c=Vi(()=>{r.value&&(i(),l=n.matchMedia(We(e)),"addEventListener"in l?l.addEventListener("change",a):l.addListener(a),o.value=l.matches)});return bn(()=>{c(),i(),l=void 0}),o}function Us(e,t={}){const{controls:n=!1,navigator:r=uu}=t,l=Yn(()=>r&&"permissions"in r);let o;const a=typeof e=="string"?{name:e}:e,i=U(),c=()=>{o&&(i.value=o.state)},u=x2(async()=>{if(l.value){if(!o)try{o=await r.permissions.query(a),Pe(o,"change",c),c()}catch{i.value="prompt"}return o}});return u(),n?{state:i,isSupported:l,query:u}:i}function F2(e={}){const{navigator:t=uu,read:n=!1,source:r,copiedDuring:l=1500,legacy:o=!1}=e,a=Yn(()=>t&&"clipboard"in t),i=Us("clipboard-read"),c=Us("clipboard-write"),u=_(()=>a.value||o),f=U(""),d=U(!1),p=$2(()=>d.value=!1,l);function v(){a.value&&b(i.value)?t.clipboard.readText().then(S=>{f.value=S}):f.value=w()}u.value&&n&&Pe(["copy","cut"],v);async function g(S=We(r)){u.value&&S!=null&&(a.value&&b(c.value)?await t.clipboard.writeText(S):E(S),f.value=S,d.value=!0,p.start())}function E(S){const y=document.createElement("textarea");y.value=S??"",y.style.position="absolute",y.style.opacity="0",document.body.appendChild(y),y.select(),document.execCommand("copy"),y.remove()}function w(){var S,y,T;return(T=(y=(S=document==null?void 0:document.getSelection)==null?void 0:S.call(document))==null?void 0:y.toString())!=null?T:""}function b(S){return S==="granted"||S==="prompt"}return{isSupported:u,text:f,copied:d,copy:g}}const Yr=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Jr="__vueuse_ssr_handlers__",H2=V2();function V2(){return Jr in Yr||(Yr[Jr]=Yr[Jr]||{}),Yr[Jr]}function N2(e,t){return H2[e]||t}function z2(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}const j2={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},qs="vueuse-storage";function ha(e,t,n,r={}){var l;const{flush:o="pre",deep:a=!0,listenToStorageChanges:i=!0,writeDefaults:c=!0,mergeDefaults:u=!1,shallow:f,window:d=Tt,eventFilter:p,onError:v=B=>{console.error(B)},initOnMounted:g}=r,E=(f?Ce:U)(typeof t=="function"?t():t);if(!n)try{n=N2("getDefaultStorage",()=>{var B;return(B=Tt)==null?void 0:B.localStorage})()}catch(B){v(B)}if(!n)return E;const w=We(t),b=z2(w),S=(l=r.serializer)!=null?l:j2[b],{pause:y,resume:T}=O2(E,()=>C(E.value),{flush:o,deep:a,eventFilter:p});d&&i&&va(()=>{Pe(d,"storage",H),Pe(d,qs,K),g&&H()}),g||H();function D(B,q){d&&d.dispatchEvent(new CustomEvent(qs,{detail:{key:e,oldValue:B,newValue:q,storageArea:n}}))}function C(B){try{const q=n.getItem(e);if(B==null)D(q,null),n.removeItem(e);else{const $=S.write(B);q!==$&&(n.setItem(e,$),D(q,$))}}catch(q){v(q)}}function W(B){const q=B?B.newValue:n.getItem(e);if(q==null)return c&&w!=null&&n.setItem(e,S.write(w)),w;if(!B&&u){const $=S.read(q);return typeof u=="function"?u($,w):b==="object"&&!Array.isArray($)?{...w,...$}:$}else return typeof q!="string"?q:S.read(q)}function H(B){if(!(B&&B.storageArea!==n)){if(B&&B.key==null){E.value=w;return}if(!(B&&B.key!==e)){y();try{(B==null?void 0:B.newValue)!==S.write(E.value)&&(E.value=W(B))}catch(q){v(q)}finally{B?hn(T):T()}}}}function K(B){H(B.detail)}return E}function U2(e){return fu("(prefers-color-scheme: dark)",e)}function du(e,t,n={}){const{window:r=Tt,...l}=n;let o;const a=Yn(()=>r&&"MutationObserver"in r),i=()=>{o&&(o.disconnect(),o=void 0)},c=_(()=>{const p=We(e),v=(Array.isArray(p)?p:[p]).map(Je).filter(E2);return new Set(v)}),u=de(()=>c.value,p=>{i(),a.value&&r&&p.size&&(o=new MutationObserver(t),p.forEach(v=>o.observe(v,l)))},{immediate:!0,flush:"post"}),f=()=>o==null?void 0:o.takeRecords(),d=()=>{i(),u()};return bn(d),{isSupported:a,stop:d,takeRecords:f}}function q2(e,t,n={}){const{window:r=Tt,...l}=n;let o;const a=Yn(()=>r&&"ResizeObserver"in r),i=()=>{o&&(o.disconnect(),o=void 0)},c=_(()=>Array.isArray(e)?e.map(d=>Je(d)):[Je(e)]),u=de(c,d=>{if(i(),a.value&&r){o=new ResizeObserver(t);for(const p of d)p&&o.observe(p,l)}},{immediate:!0,flush:"post"}),f=()=>{i(),u()};return bn(f),{isSupported:a,stop:f}}function G2(e,t={width:0,height:0},n={}){const{window:r=Tt,box:l="content-box"}=n,o=_(()=>{var d,p;return(p=(d=Je(e))==null?void 0:d.namespaceURI)==null?void 0:p.includes("svg")}),a=U(t.width),i=U(t.height),{stop:c}=q2(e,([d])=>{const p=l==="border-box"?d.borderBoxSize:l==="content-box"?d.contentBoxSize:d.devicePixelContentBoxSize;if(r&&o.value){const v=Je(e);if(v){const g=r.getComputedStyle(v);a.value=Number.parseFloat(g.width),i.value=Number.parseFloat(g.height)}}else if(p){const v=Array.isArray(p)?p:[p];a.value=v.reduce((g,{inlineSize:E})=>g+E,0),i.value=v.reduce((g,{blockSize:E})=>g+E,0)}else a.value=d.contentRect.width,i.value=d.contentRect.height},n);va(()=>{const d=Je(e);d&&(a.value="offsetWidth"in d?d.offsetWidth:t.width,i.value="offsetHeight"in d?d.offsetHeight:t.height)});const u=de(()=>Je(e),d=>{a.value=d?t.width:0,i.value=d?t.height:0});function f(){c(),u()}return{width:a,height:i,stop:f}}const Gs=["fullscreenchange","webkitfullscreenchange","webkitendfullscreen","mozfullscreenchange","MSFullscreenChange"];function ma(e,t={}){const{document:n=R2,autoExit:r=!1}=t,l=_(()=>{var b;return(b=Je(e))!=null?b:n==null?void 0:n.querySelector("html")}),o=U(!1),a=_(()=>["requestFullscreen","webkitRequestFullscreen","webkitEnterFullscreen","webkitEnterFullScreen","webkitRequestFullScreen","mozRequestFullScreen","msRequestFullscreen"].find(b=>n&&b in n||l.value&&b in l.value)),i=_(()=>["exitFullscreen","webkitExitFullscreen","webkitExitFullScreen","webkitCancelFullScreen","mozCancelFullScreen","msExitFullscreen"].find(b=>n&&b in n||l.value&&b in l.value)),c=_(()=>["fullScreen","webkitIsFullScreen","webkitDisplayingFullscreen","mozFullScreen","msFullscreenElement"].find(b=>n&&b in n||l.value&&b in l.value)),u=["fullscreenElement","webkitFullscreenElement","mozFullScreenElement","msFullscreenElement"].find(b=>n&&b in n),f=Yn(()=>l.value&&n&&a.value!==void 0&&i.value!==void 0&&c.value!==void 0),d=()=>u?(n==null?void 0:n[u])===l.value:!1,p=()=>{if(c.value){if(n&&n[c.value]!=null)return n[c.value];{const b=l.value;if((b==null?void 0:b[c.value])!=null)return!!b[c.value]}}return!1};async function v(){if(!(!f.value||!o.value)){if(i.value)if((n==null?void 0:n[i.value])!=null)await n[i.value]();else{const b=l.value;(b==null?void 0:b[i.value])!=null&&await b[i.value]()}o.value=!1}}async function g(){if(!f.value||o.value)return;p()&&await v();const b=l.value;a.value&&(b==null?void 0:b[a.value])!=null&&(await b[a.value](),o.value=!0)}async function E(){await(o.value?v():g())}const w=()=>{const b=p();(!b||b&&d())&&(o.value=b)};return Pe(n,Gs,w,!1),Pe(()=>Je(l),Gs,w,!1),r&&bn(v),{isSupported:f,isFullscreen:o,enter:g,exit:v,toggle:E}}function to(e){return typeof Window<"u"&&e instanceof Window?e.document.documentElement:typeof Document<"u"&&e instanceof Document?e.documentElement:e}function pu(e){const t=window.getComputedStyle(e);if(t.overflowX==="scroll"||t.overflowY==="scroll"||t.overflowX==="auto"&&e.clientWidth1?!0:(t.preventDefault&&t.preventDefault(),!1)}const Qr=new WeakMap;function vu(e,t=!1){const n=U(t);let r=null;de(I2(e),a=>{const i=to(We(a));if(i){const c=i;Qr.get(c)||Qr.set(c,c.style.overflow),n.value&&(c.style.overflow="hidden")}},{immediate:!0});const l=()=>{const a=to(We(e));!a||n.value||(ko&&(r=Pe(a,"touchmove",i=>{W2(i)},{passive:!1})),a.style.overflow="hidden",n.value=!0)},o=()=>{var a;const i=to(We(e));!i||!n.value||(ko&&(r==null||r()),i.style.overflow=(a=Qr.get(i))!=null?a:"",Qr.delete(i),n.value=!1)};return bn(o),_({get(){return n.value},set(a){a?l():o()}})}function K2(e={}){const{window:t=Tt,behavior:n="auto"}=e;if(!t)return{x:U(0),y:U(0)};const r=U(t.scrollX),l=U(t.scrollY),o=_({get(){return r.value},set(i){scrollTo({left:i,behavior:n})}}),a=_({get(){return l.value},set(i){scrollTo({top:i,behavior:n})}});return Pe(t,"scroll",()=>{r.value=t.scrollX,l.value=t.scrollY},{capture:!1,passive:!0}),{x:o,y:a}}function Y2(e={}){const{window:t=Tt,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:l=!0,includeScrollbar:o=!0}=e,a=U(n),i=U(r),c=()=>{t&&(o?(a.value=t.innerWidth,i.value=t.innerHeight):(a.value=t.document.documentElement.clientWidth,i.value=t.document.documentElement.clientHeight))};if(c(),va(c),Pe("resize",c,{passive:!0}),l){const u=fu("(orientation: portrait)");de(u,()=>c())}return{width:a,height:i}}const hu=()=>s(ce,{name:"back-to-top"},()=>[s("path",{d:"M512 843.2c-36.2 0-66.4-13.6-85.8-21.8-10.8-4.6-22.6 3.6-21.8 15.2l7 102c.4 6.2 7.6 9.4 12.6 5.6l29-22c3.6-2.8 9-1.8 11.4 2l41 64.2c3 4.8 10.2 4.8 13.2 0l41-64.2c2.4-3.8 7.8-4.8 11.4-2l29 22c5 3.8 12.2.6 12.6-5.6l7-102c.8-11.6-11-20-21.8-15.2-19.6 8.2-49.6 21.8-85.8 21.8z"}),s("path",{d:"m795.4 586.2-96-98.2C699.4 172 513 32 513 32S324.8 172 324.8 488l-96 98.2c-3.6 3.6-5.2 9-4.4 14.2L261.2 824c1.8 11.4 14.2 17 23.6 10.8L419 744s41.4 40 94.2 40c52.8 0 92.2-40 92.2-40l134.2 90.8c9.2 6.2 21.6.6 23.6-10.8l37-223.8c.4-5.2-1.2-10.4-4.8-14zM513 384c-34 0-61.4-28.6-61.4-64s27.6-64 61.4-64c34 0 61.4 28.6 61.4 64S547 384 513 384z"})]);hu.displayName="BackToTopIcon";var J2={"/":{backToTop:"返回顶部"}},Q2=O({name:"BackToTop",props:{threshold:{type:Number,default:100},noProgress:Boolean},setup(e){const t=be(),n=Ir(J2),r=Ce(),{height:l}=G2(r),{height:o}=Y2(),{y:a}=K2(),i=_(()=>t.value.backToTop!==!1&&a.value>e.threshold),c=_(()=>a.value/(l.value-o.value)*100);return me(()=>{r.value=document.body}),()=>s(Xt,{name:"fade"},()=>i.value?s("button",{type:"button",class:"vp-back-to-top-button","aria-label":n.value.backToTop,"data-balloon-pos":"left",onClick:()=>{window.scrollTo({top:0,behavior:"smooth"})}},[e.noProgress?null:s("span",{class:"vp-scroll-progress",role:"progressbar","aria-labelledby":"loadinglabel","aria-valuenow":c.value},s("svg",s("circle",{cx:"50%",cy:"50%",style:{"stroke-dasharray":`calc(${Math.PI*c.value}% - ${4*Math.PI}px) calc(${Math.PI*100}% - ${4*Math.PI}px)`}}))),s(hu)]):null)}});const X2=bt({enhance:({app:e})=>{gt("Badge")||e.component("Badge",su),gt("FontIcon")||e.component("FontIcon",_2)},setup:()=>{},rootComponents:[()=>s(Q2,{})]});function Z2(e,t,n){var r,l,o;t===void 0&&(t=50),n===void 0&&(n={});var a=(r=n.isImmediate)!=null&&r,i=(l=n.callback)!=null&&l,c=n.maxWait,u=Date.now(),f=[];function d(){if(c!==void 0){var v=Date.now()-u;if(v+t>=c)return c-v}return t}var p=function(){var v=[].slice.call(arguments),g=this;return new Promise(function(E,w){var b=a&&o===void 0;if(o!==void 0&&clearTimeout(o),o=setTimeout(function(){if(o=void 0,u=Date.now(),!a){var y=e.apply(g,v);i&&i(y),f.forEach(function(T){return(0,T.resolve)(y)}),f=[]}},d()),b){var S=e.apply(g,v);return i&&i(S),E(S)}f.push({resolve:E,reject:w})})};return p.cancel=function(v){o!==void 0&&clearTimeout(o),f.forEach(function(g){return(0,g.reject)(v)}),f=[]},p}const ev=({headerLinkSelector:e,headerAnchorSelector:t,delay:n,offset:r=5})=>{const l=je(),a=Z2(()=>{var E,w;const i=Math.max(window.scrollY,document.documentElement.scrollTop,document.body.scrollTop);if(Math.abs(i-0)p.some(S=>S.hash===b.hash));for(let b=0;b=(((E=S.parentElement)==null?void 0:E.offsetTop)??0)-r,D=!y||i<(((w=y.parentElement)==null?void 0:w.offsetTop)??0)-r;if(!(T&&D))continue;const W=decodeURIComponent(l.currentRoute.value.hash),H=decodeURIComponent(S.hash);if(W===H)return;if(d){for(let K=b+1;K{window.addEventListener("scroll",a)}),Xo(()=>{window.removeEventListener("scroll",a)})},Ws=async(e,t)=>{const{scrollBehavior:n}=e.options;e.options.scrollBehavior=void 0,await e.replace({query:e.currentRoute.value.query,hash:t}).finally(()=>e.options.scrollBehavior=n)},tv=".vp-sidebar-link, .toc-link",nv=".header-anchor",rv=200,lv=5,ov=bt({setup(){ev({headerLinkSelector:tv,headerAnchorSelector:nv,delay:rv,offset:lv})}});let mu=e=>ae(e.title)?{title:e.title}:null;const gu=Symbol(""),av=e=>{mu=e},sv=()=>se(gu),iv=e=>{e.provide(gu,mu)};var cv={"/":{title:"目录",empty:"暂无目录"}},uv=O({name:"AutoCatalog",props:{base:{type:String,default:""},level:{type:Number,default:3},index:Boolean,hideHeading:Boolean},setup(e){const t=sv(),n=Ir(cv),r=ie(),l=je(),o=Lc(),a=U(l.getRoutes().map(({meta:u,path:f})=>{const d=t(u);if(!d)return null;const p=f.split("/").length;return{level:Kr(f,"/")?p-2:p-1,base:f.replace(/\/[^/]+\/?$/,"/"),path:f,...d}}).filter(u=>ur(u)&&ae(u.title))),i=()=>{const u=e.base?kp(_c(e.base)):r.value.path.replace(/\/[^/]+$/,"/"),f=u.split("/").length-2,d=[];return a.value.filter(({level:p,path:v})=>{if(!jn(v,u)||v===u)return!1;if(u==="/"){const g=ft(o.value.locales).filter(E=>E!=="/");if(v==="/404.html"||g.some(E=>jn(v,E)))return!1}return p-f<=e.level&&(Kr(v,".html")&&!Kr(v,"/index.html")||Kr(v,"/"))}).sort(({title:p,level:v,order:g},{title:E,level:w,order:b})=>v-w||(eo(g)?eo(b)?g>0?b>0?g-b:-1:b<0?g-b:1:g:eo(b)?b:p.localeCompare(E))).forEach(p=>{var E;const{base:v,level:g}=p;switch(g-f){case 1:d.push(p);break;case 2:{const w=d.find(b=>b.path===v);w&&(w.children??(w.children=[])).push(p);break}default:{const w=d.find(b=>b.path===v.replace(/\/[^/]+\/$/,"/"));if(w){const b=(E=w.children)==null?void 0:E.find(S=>S.path===v);b&&(b.children??(b.children=[])).push(p)}}}}),d},c=_(()=>i());return()=>{const u=c.value.some(f=>f.children);return s("div",{class:["vp-catalog-wrapper",{index:e.index}]},[e.hideHeading?null:s("h2",{class:"vp-catalog-main-title"},n.value.title),c.value.length?s(e.index?"ol":"ul",{class:["vp-catalogs",{deep:u}]},c.value.map(({children:f=[],title:d,path:p,content:v})=>{const g=s(Re,{class:"vp-catalog-title",to:p},()=>v?s(v):d);return s("li",{class:"vp-catalog"},u?[s("h3",{id:d,class:["vp-catalog-child-title",{"has-children":f.length}]},[s("a",{href:`#${d}`,class:"header-anchor","aria-hidden":!0},"#"),g]),f.length?s(e.index?"ol":"ul",{class:"vp-child-catalogs"},f.map(({children:E=[],content:w,path:b,title:S})=>s("li",{class:"vp-child-catalog"},[s("div",{class:["vp-catalog-sub-title",{"has-children":E.length}]},[s("a",{href:`#${S}`,class:"header-anchor"},"#"),s(Re,{class:"vp-catalog-title",to:b},()=>w?s(w):S)]),E.length?s(e.index?"ol":"div",{class:e.index?"vp-sub-catalogs":"vp-sub-catalogs-wrapper"},E.map(({content:y,path:T,title:D})=>e.index?s("li",{class:"vp-sub-catalog"},s(Re,{to:T},()=>y?s(y):D)):s(Re,{class:"vp-sub-catalog-link",to:T},()=>y?s(y):D))):null]))):null]:s("div",{class:"vp-catalog-child-title"},g))})):s("p",{class:"vp-empty-catalog"},n.value.empty)])}}}),fv=bt({enhance:({app:e})=>{iv(e),gt("AutoCatalog",e)||e.component("AutoCatalog",uv)}});const dv=s("svg",{class:"external-link-icon",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",x:"0px",y:"0px",viewBox:"0 0 100 100",width:"15",height:"15"},[s("path",{fill:"currentColor",d:"M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"}),s("polygon",{fill:"currentColor",points:"45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"})]),yu=O({name:"ExternalLinkIcon",props:{locales:{type:Object,required:!1,default:()=>({})}},setup(e){const t=kt(),n=_(()=>e.locales[t.value]??{openInNewWindow:"open in new window"});return()=>s("span",[dv,s("span",{class:"external-link-icon-sr-only"},n.value.openInNewWindow)])}});var pv={};const vv=pv,hv=bt({enhance({app:e}){e.component("ExternalLinkIcon",s(yu,{locales:vv}))}});/** + */const Sn=typeof document<"u";function Vp(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const ye=Object.assign;function Yl(e,t){const n={};for(const r in t){const l=t[r];n[r]=yt(l)?l.map(e):e(l)}return n}const sr=()=>{},yt=Array.isArray,Bc=/#/g,Np=/&/g,zp=/\//g,jp=/=/g,Up=/\?/g,Pc=/\+/g,qp=/%5B/g,Gp=/%5D/g,Oc=/%5E/g,Wp=/%60/g,Rc=/%7B/g,Kp=/%7C/g,$c=/%7D/g,Yp=/%20/g;function aa(e){return encodeURI(""+e).replace(Kp,"|").replace(qp,"[").replace(Gp,"]")}function Jp(e){return aa(e).replace(Rc,"{").replace($c,"}").replace(Oc,"^")}function _o(e){return aa(e).replace(Pc,"%2B").replace(Yp,"+").replace(Bc,"%23").replace(Np,"%26").replace(Wp,"`").replace(Rc,"{").replace($c,"}").replace(Oc,"^")}function Qp(e){return _o(e).replace(jp,"%3D")}function Xp(e){return aa(e).replace(Bc,"%23").replace(Up,"%3F")}function Zp(e){return e==null?"":Xp(e).replace(zp,"%2F")}function gr(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const e0=/\/$/,t0=e=>e.replace(e0,"");function Jl(e,t,n="/"){let r,l={},o="",a="";const i=t.indexOf("#");let c=t.indexOf("?");return i=0&&(c=-1),c>-1&&(r=t.slice(0,c),o=t.slice(c+1,i>-1?i:t.length),l=e(o)),i>-1&&(r=r||t.slice(0,i),a=t.slice(i,t.length)),r=o0(r??t,n),{fullPath:r+(o&&"?")+o+a,path:r,query:l,hash:gr(a)}}function n0(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Cs(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function r0(e,t,n){const r=t.matched.length-1,l=n.matched.length-1;return r>-1&&r===l&&Nn(t.matched[r],n.matched[l])&&Mc(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Nn(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Mc(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!l0(e[n],t[n]))return!1;return!0}function l0(e,t){return yt(e)?Ss(e,t):yt(t)?Ss(t,e):e===t}function Ss(e,t){return yt(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function o0(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),l=r[r.length-1];(l===".."||l===".")&&r.push("");let o=n.length-1,a,i;for(a=0;a1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(a).join("/")}var yr;(function(e){e.pop="pop",e.push="push"})(yr||(yr={}));var ir;(function(e){e.back="back",e.forward="forward",e.unknown=""})(ir||(ir={}));function a0(e){if(!e)if(Sn){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),t0(e)}const s0=/^[^#]+#/;function i0(e,t){return e.replace(s0,"#")+t}function c0(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const Il=()=>({left:window.scrollX,top:window.scrollY});function u0(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),l=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!l)return;t=c0(l,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function Ts(e,t){return(history.state?history.state.position-t:-1)+e}const Eo=new Map;function f0(e,t){Eo.set(e,t)}function d0(e){const t=Eo.get(e);return Eo.delete(e),t}let p0=()=>location.protocol+"//"+location.host;function Dc(e,t){const{pathname:n,search:r,hash:l}=t,o=e.indexOf("#");if(o>-1){let i=l.includes(e.slice(o))?e.slice(o).length:1,c=l.slice(i);return c[0]!=="/"&&(c="/"+c),Cs(c,"")}return Cs(n,e)+r+l}function v0(e,t,n,r){let l=[],o=[],a=null;const i=({state:p})=>{const v=Dc(e,location),g=n.value,E=t.value;let w=0;if(p){if(n.value=v,t.value=p,a&&a===g){a=null;return}w=E?p.position-E.position:0}else r(v);l.forEach(b=>{b(n.value,g,{delta:w,type:yr.pop,direction:w?w>0?ir.forward:ir.back:ir.unknown})})};function c(){a=n.value}function u(p){l.push(p);const v=()=>{const g=l.indexOf(p);g>-1&&l.splice(g,1)};return o.push(v),v}function f(){const{history:p}=window;p.state&&p.replaceState(ye({},p.state,{scroll:Il()}),"")}function d(){for(const p of o)p();o=[],window.removeEventListener("popstate",i),window.removeEventListener("beforeunload",f)}return window.addEventListener("popstate",i),window.addEventListener("beforeunload",f,{passive:!0}),{pauseListeners:c,listen:u,destroy:d}}function ks(e,t,n,r=!1,l=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:l?Il():null}}function h0(e){const{history:t,location:n}=window,r={value:Dc(e,n)},l={value:t.state};l.value||o(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(c,u,f){const d=e.indexOf("#"),p=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+c:p0()+e+c;try{t[f?"replaceState":"pushState"](u,"",p),l.value=u}catch(v){console.error(v),n[f?"replace":"assign"](p)}}function a(c,u){const f=ye({},t.state,ks(l.value.back,c,l.value.forward,!0),u,{position:l.value.position});o(c,f,!0),r.value=c}function i(c,u){const f=ye({},l.value,t.state,{forward:c,scroll:Il()});o(f.current,f,!0);const d=ye({},ks(r.value,c,null),{position:f.position+1},u);o(c,d,!1),r.value=c}return{location:r,state:l,push:i,replace:a}}function m0(e){e=a0(e);const t=h0(e),n=v0(e,t.state,t.location,t.replace);function r(o,a=!0){a||n.pauseListeners(),history.go(o)}const l=ye({location:"",base:e,go:r,createHref:i0.bind(null,e)},t,n);return Object.defineProperty(l,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(l,"state",{enumerable:!0,get:()=>t.state.value}),l}function g0(e){return typeof e=="string"||e&&typeof e=="object"}function Fc(e){return typeof e=="string"||typeof e=="symbol"}const Ot={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Hc=Symbol("");var Ls;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Ls||(Ls={}));function zn(e,t){return ye(new Error,{type:e,[Hc]:!0},t)}function It(e,t){return e instanceof Error&&Hc in e&&(t==null||!!(e.type&t))}const xs="[^/]+?",y0={sensitive:!1,strict:!1,start:!0,end:!0},b0=/[.+*?^${}()[\]/\\]/g;function _0(e,t){const n=ye({},y0,t),r=[];let l=n.start?"^":"";const o=[];for(const u of e){const f=u.length?[]:[90];n.strict&&!u.length&&(l+="/");for(let d=0;dt.length?t.length===1&&t[0]===80?1:-1:0}function w0(e,t){let n=0;const r=e.score,l=t.score;for(;n0&&t[t.length-1]<0}const A0={type:0,value:""},C0=/[a-zA-Z0-9_]/;function S0(e){if(!e)return[[]];if(e==="/")return[[A0]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(v){throw new Error(`ERR (${n})/"${u}": ${v}`)}let n=0,r=n;const l=[];let o;function a(){o&&l.push(o),o=[]}let i=0,c,u="",f="";function d(){u&&(n===0?o.push({type:0,value:u}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:u,regexp:f,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),u="")}function p(){u+=c}for(;i{a(S)}:sr}function a(f){if(Fc(f)){const d=r.get(f);d&&(r.delete(f),n.splice(n.indexOf(d),1),d.children.forEach(a),d.alias.forEach(a))}else{const d=n.indexOf(f);d>-1&&(n.splice(d,1),f.record.name&&r.delete(f.record.name),f.children.forEach(a),f.alias.forEach(a))}}function i(){return n}function c(f){let d=0;for(;d=0&&(f.record.path!==n[d].record.path||!Vc(f,n[d]));)d++;n.splice(d,0,f),f.record.name&&!Ps(f)&&r.set(f.record.name,f)}function u(f,d){let p,v={},g,E;if("name"in f&&f.name){if(p=r.get(f.name),!p)throw zn(1,{location:f});E=p.record.name,v=ye(Bs(d.params,p.keys.filter(S=>!S.optional).concat(p.parent?p.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),f.params&&Bs(f.params,p.keys.map(S=>S.name))),g=p.stringify(v)}else if(f.path!=null)g=f.path,p=n.find(S=>S.re.test(g)),p&&(v=p.parse(g),E=p.record.name);else{if(p=d.name?r.get(d.name):n.find(S=>S.re.test(d.path)),!p)throw zn(1,{location:f,currentLocation:d});E=p.record.name,v=ye({},d.params,f.params),g=p.stringify(v)}const w=[];let b=p;for(;b;)w.unshift(b.record),b=b.parent;return{name:E,path:g,params:v,matched:w,meta:I0(w)}}return e.forEach(f=>o(f)),{addRoute:o,resolve:u,removeRoute:a,getRoutes:i,getRecordMatcher:l}}function Bs(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function L0(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:x0(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function x0(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Ps(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function I0(e){return e.reduce((t,n)=>ye(t,n.meta),{})}function Os(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function Vc(e,t){return t.children.some(n=>n===e||Vc(e,n))}function B0(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let l=0;lo&&_o(o)):[r&&_o(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function P0(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=yt(r)?r.map(l=>l==null?null:""+l):r==null?r:""+r)}return t}const O0=Symbol(""),$s=Symbol(""),Bl=Symbol(""),sa=Symbol(""),wo=Symbol("");function Zn(){let e=[];function t(r){return e.push(r),()=>{const l=e.indexOf(r);l>-1&&e.splice(l,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Kt(e,t,n,r,l,o=a=>a()){const a=r&&(r.enterCallbacks[l]=r.enterCallbacks[l]||[]);return()=>new Promise((i,c)=>{const u=p=>{p===!1?c(zn(4,{from:n,to:t})):p instanceof Error?c(p):g0(p)?c(zn(2,{from:t,to:p})):(a&&r.enterCallbacks[l]===a&&typeof p=="function"&&a.push(p),i())},f=o(()=>e.call(r&&r.instances[l],t,n,u));let d=Promise.resolve(f);e.length<3&&(d=d.then(u)),d.catch(p=>c(p))})}function Ql(e,t,n,r,l=o=>o()){const o=[];for(const a of e)for(const i in a.components){let c=a.components[i];if(!(t!=="beforeRouteEnter"&&!a.instances[i]))if(R0(c)){const f=(c.__vccOpts||c)[t];f&&o.push(Kt(f,n,r,a,i,l))}else{let u=c();o.push(()=>u.then(f=>{if(!f)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${a.path}"`));const d=Vp(f)?f.default:f;a.components[i]=d;const v=(d.__vccOpts||d)[t];return v&&Kt(v,n,r,a,i,l)()}))}}return o}function R0(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Ao(e){const t=se(Bl),n=se(sa),r=_(()=>t.resolve(fn(e.to))),l=_(()=>{const{matched:c}=r.value,{length:u}=c,f=c[u-1],d=n.matched;if(!f||!d.length)return-1;const p=d.findIndex(Nn.bind(null,f));if(p>-1)return p;const v=Ms(c[u-2]);return u>1&&Ms(f)===v&&d[d.length-1].path!==v?d.findIndex(Nn.bind(null,c[u-2])):p}),o=_(()=>l.value>-1&&F0(n.params,r.value.params)),a=_(()=>l.value>-1&&l.value===n.matched.length-1&&Mc(n.params,r.value.params));function i(c={}){return D0(c)?t[fn(e.replace)?"replace":"push"](fn(e.to)).catch(sr):Promise.resolve()}return{route:r,href:_(()=>r.value.href),isActive:o,isExactActive:a,navigate:i}}const $0=O({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Ao,setup(e,{slots:t}){const n=wr(Ao(e)),{options:r}=se(Bl),l=_(()=>({[Ds(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[Ds(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:s("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:l.value},o)}}}),M0=$0;function D0(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function F0(e,t){for(const n in t){const r=t[n],l=e[n];if(typeof r=="string"){if(r!==l)return!1}else if(!yt(l)||l.length!==r.length||r.some((o,a)=>o!==l[a]))return!1}return!0}function Ms(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Ds=(e,t,n)=>e??t??n,H0=O({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=se(wo),l=_(()=>e.route||r.value),o=se($s,0),a=_(()=>{let u=fn(o);const{matched:f}=l.value;let d;for(;(d=f[u])&&!d.components;)u++;return u}),i=_(()=>l.value.matched[a.value]);mt($s,_(()=>a.value+1)),mt(O0,i),mt(wo,l);const c=U();return de(()=>[c.value,i.value,e.name],([u,f,d],[p,v,g])=>{f&&(f.instances[d]=u,v&&v!==f&&u&&u===p&&(f.leaveGuards.size||(f.leaveGuards=v.leaveGuards),f.updateGuards.size||(f.updateGuards=v.updateGuards))),u&&f&&(!v||!Nn(f,v)||!p)&&(f.enterCallbacks[d]||[]).forEach(E=>E(u))},{flush:"post"}),()=>{const u=l.value,f=e.name,d=i.value,p=d&&d.components[f];if(!p)return Fs(n.default,{Component:p,route:u});const v=d.props[f],g=v?v===!0?u.params:typeof v=="function"?v(u):v:null,w=s(p,ye({},g,t,{onVnodeUnmounted:b=>{b.component.isUnmounted&&(d.instances[f]=null)},ref:c}));return Fs(n.default,{Component:w,route:u})||w}}});function Fs(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Nc=H0;function V0(e){const t=k0(e.routes,e),n=e.parseQuery||B0,r=e.stringifyQuery||Rs,l=e.history,o=Zn(),a=Zn(),i=Zn(),c=Ce(Ot);let u=Ot;Sn&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const f=Yl.bind(null,L=>""+L),d=Yl.bind(null,Zp),p=Yl.bind(null,gr);function v(L,z){let V,J;return Fc(L)?(V=t.getRecordMatcher(L),J=z):J=L,t.addRoute(J,V)}function g(L){const z=t.getRecordMatcher(L);z&&t.removeRoute(z)}function E(){return t.getRoutes().map(L=>L.record)}function w(L){return!!t.getRecordMatcher(L)}function b(L,z){if(z=ye({},z||c.value),typeof L=="string"){const m=Jl(n,L,z.path),A=t.resolve({path:m.path},z),I=l.createHref(m.fullPath);return ye(m,A,{params:p(A.params),hash:gr(m.hash),redirectedFrom:void 0,href:I})}let V;if(L.path!=null)V=ye({},L,{path:Jl(n,L.path,z.path).path});else{const m=ye({},L.params);for(const A in m)m[A]==null&&delete m[A];V=ye({},L,{params:d(m)}),z.params=d(z.params)}const J=t.resolve(V,z),pe=L.hash||"";J.params=f(p(J.params));const we=n0(r,ye({},L,{hash:Jp(pe),path:J.path})),h=l.createHref(we);return ye({fullPath:we,hash:pe,query:r===Rs?P0(L.query):L.query||{}},J,{redirectedFrom:void 0,href:h})}function S(L){return typeof L=="string"?Jl(n,L,c.value.path):ye({},L)}function y(L,z){if(u!==L)return zn(8,{from:z,to:L})}function T(L){return W(L)}function D(L){return T(ye(S(L),{replace:!0}))}function C(L){const z=L.matched[L.matched.length-1];if(z&&z.redirect){const{redirect:V}=z;let J=typeof V=="function"?V(L):V;return typeof J=="string"&&(J=J.includes("?")||J.includes("#")?J=S(J):{path:J},J.params={}),ye({query:L.query,hash:L.hash,params:J.path!=null?{}:L.params},J)}}function W(L,z){const V=u=b(L),J=c.value,pe=L.state,we=L.force,h=L.replace===!0,m=C(V);if(m)return W(ye(S(m),{state:typeof m=="object"?ye({},pe,m.state):pe,force:we,replace:h}),z||V);const A=V;A.redirectedFrom=z;let I;return!we&&r0(r,J,V)&&(I=zn(16,{to:A,from:J}),ot(J,J,!0,!1)),(I?Promise.resolve(I):P(A,J)).catch(x=>It(x)?It(x,2)?x:_t(x):Y(x,A,J)).then(x=>{if(x){if(It(x,2))return W(ye({replace:h},S(x.to),{state:typeof x.to=="object"?ye({},pe,x.to.state):pe,force:we}),z||A)}else x=R(A,J,!0,h,pe);return q(A,J,x),x})}function H(L,z){const V=y(L,z);return V?Promise.reject(V):Promise.resolve()}function K(L){const z=xt.values().next().value;return z&&typeof z.runWithContext=="function"?z.runWithContext(L):L()}function P(L,z){let V;const[J,pe,we]=N0(L,z);V=Ql(J.reverse(),"beforeRouteLeave",L,z);for(const m of J)m.leaveGuards.forEach(A=>{V.push(Kt(A,L,z))});const h=H.bind(null,L,z);return V.push(h),Re(V).then(()=>{V=[];for(const m of o.list())V.push(Kt(m,L,z));return V.push(h),Re(V)}).then(()=>{V=Ql(pe,"beforeRouteUpdate",L,z);for(const m of pe)m.updateGuards.forEach(A=>{V.push(Kt(A,L,z))});return V.push(h),Re(V)}).then(()=>{V=[];for(const m of we)if(m.beforeEnter)if(yt(m.beforeEnter))for(const A of m.beforeEnter)V.push(Kt(A,L,z));else V.push(Kt(m.beforeEnter,L,z));return V.push(h),Re(V)}).then(()=>(L.matched.forEach(m=>m.enterCallbacks={}),V=Ql(we,"beforeRouteEnter",L,z,K),V.push(h),Re(V))).then(()=>{V=[];for(const m of a.list())V.push(Kt(m,L,z));return V.push(h),Re(V)}).catch(m=>It(m,8)?m:Promise.reject(m))}function q(L,z,V){i.list().forEach(J=>K(()=>J(L,z,V)))}function R(L,z,V,J,pe){const we=y(L,z);if(we)return we;const h=z===Ot,m=Sn?history.state:{};V&&(J||h?l.replace(L.fullPath,ye({scroll:h&&m&&m.scroll},pe)):l.push(L.fullPath,pe)),c.value=L,ot(L,z,V,h),_t()}let te;function Ie(){te||(te=l.listen((L,z,V)=>{if(!Et.listening)return;const J=b(L),pe=C(J);if(pe){W(ye(pe,{replace:!0}),J).catch(sr);return}u=J;const we=c.value;Sn&&f0(Ts(we.fullPath,V.delta),Il()),P(J,we).catch(h=>It(h,12)?h:It(h,2)?(W(h.to,J).then(m=>{It(m,20)&&!V.delta&&V.type===yr.pop&&l.go(-1,!1)}).catch(sr),Promise.reject()):(V.delta&&l.go(-V.delta,!1),Y(h,J,we))).then(h=>{h=h||R(J,we,!1),h&&(V.delta&&!It(h,8)?l.go(-V.delta,!1):V.type===yr.pop&&It(h,20)&&l.go(-1,!1)),q(J,we,h)}).catch(sr)}))}let ke=Zn(),G=Zn(),ne;function Y(L,z,V){_t(L);const J=G.list();return J.length?J.forEach(pe=>pe(L,z,V)):console.error(L),Promise.reject(L)}function Oe(){return ne&&c.value!==Ot?Promise.resolve():new Promise((L,z)=>{ke.add([L,z])})}function _t(L){return ne||(ne=!L,Ie(),ke.list().forEach(([z,V])=>L?V(L):z()),ke.reset()),L}function ot(L,z,V,J){const{scrollBehavior:pe}=e;if(!Sn||!pe)return Promise.resolve();const we=!V&&d0(Ts(L.fullPath,0))||(J||!V)&&history.state&&history.state.scroll||null;return hn().then(()=>pe(L,z,we)).then(h=>h&&u0(h)).catch(h=>Y(h,L,z))}const Fe=L=>l.go(L);let Ze;const xt=new Set,Et={currentRoute:c,listening:!0,addRoute:v,removeRoute:g,hasRoute:w,getRoutes:E,resolve:b,options:e,push:T,replace:D,go:Fe,back:()=>Fe(-1),forward:()=>Fe(1),beforeEach:o.add,beforeResolve:a.add,afterEach:i.add,onError:G.add,isReady:Oe,install(L){const z=this;L.component("RouterLink",M0),L.component("RouterView",Nc),L.config.globalProperties.$router=z,Object.defineProperty(L.config.globalProperties,"$route",{enumerable:!0,get:()=>fn(c)}),Sn&&!Ze&&c.value===Ot&&(Ze=!0,T(l.location).catch(pe=>{}));const V={};for(const pe in Ot)Object.defineProperty(V,pe,{get:()=>c.value[pe],enumerable:!0});L.provide(Bl,z),L.provide(sa,Li(V)),L.provide(wo,c);const J=L.unmount;xt.add(L),L.unmount=function(){xt.delete(L),xt.size<1&&(u=Ot,te&&te(),te=null,c.value=Ot,Ze=!1,ne=!1),J()}}};function Re(L){return L.reduce((z,V)=>z.then(()=>K(V)),Promise.resolve())}return Et}function N0(e,t){const n=[],r=[],l=[],o=Math.max(t.matched.length,e.matched.length);for(let a=0;aNn(u,i))?r.push(i):n.push(i));const c=e.matched[a];c&&(t.matched.find(u=>Nn(u,c))||l.push(c))}return[n,r,l]}function je(){return se(Bl)}function Lt(){return se(sa)}var Ge=Uint8Array,kn=Uint16Array,z0=Int32Array,zc=new Ge([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0]),jc=new Ge([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0]),j0=new Ge([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Uc=function(e,t){for(var n=new kn(31),r=0;r<31;++r)n[r]=t+=1<>1|(Te&21845)<<1;zt=(zt&52428)>>2|(zt&13107)<<2,zt=(zt&61680)>>4|(zt&3855)<<4,Co[Te]=((zt&65280)>>8|(zt&255)<<8)>>1}var cr=function(e,t,n){for(var r=e.length,l=0,o=new kn(t);l>c]=u}else for(i=new kn(r),l=0;l>15-e[l]);return i},Lr=new Ge(288);for(var Te=0;Te<144;++Te)Lr[Te]=8;for(var Te=144;Te<256;++Te)Lr[Te]=9;for(var Te=256;Te<280;++Te)Lr[Te]=7;for(var Te=280;Te<288;++Te)Lr[Te]=8;var Wc=new Ge(32);for(var Te=0;Te<32;++Te)Wc[Te]=5;var W0=cr(Lr,9,1),K0=cr(Wc,5,1),Xl=function(e){for(var t=e[0],n=1;nt&&(t=e[n]);return t},pt=function(e,t,n){var r=t/8|0;return(e[r]|e[r+1]<<8)>>(t&7)&n},Zl=function(e,t){var n=t/8|0;return(e[n]|e[n+1]<<8|e[n+2]<<16)>>(t&7)},Y0=function(e){return(e+7)/8|0},ia=function(e,t,n){return(t==null||t<0)&&(t=0),(n==null||n>e.length)&&(n=e.length),new Ge(e.subarray(t,n))},J0=["unexpected EOF","invalid block type","invalid length/literal","invalid distance","stream finished","no stream handler",,"no callback","invalid UTF-8 data","extra field too long","date not in range 1980-2099","filename too long","stream finishing","invalid zip data"],it=function(e,t,n){var r=new Error(t||J0[e]);if(r.code=e,Error.captureStackTrace&&Error.captureStackTrace(r,it),!n)throw r;return r},Q0=function(e,t,n,r){var l=e.length,o=r?r.length:0;if(!l||t.f&&!t.l)return n||new Ge(0);var a=!n,i=a||t.i!=2,c=t.i;a&&(n=new Ge(l*3));var u=function(pe){var we=n.length;if(pe>we){var h=new Ge(Math.max(we*2,pe));h.set(n),n=h}},f=t.f||0,d=t.p||0,p=t.b||0,v=t.l,g=t.d,E=t.m,w=t.n,b=l*8;do{if(!v){f=pt(e,d,1);var S=pt(e,d+1,3);if(d+=3,S)if(S==1)v=W0,g=K0,E=9,w=5;else if(S==2){var C=pt(e,d,31)+257,W=pt(e,d+10,15)+4,H=C+pt(e,d+5,31)+1;d+=14;for(var K=new Ge(H),P=new Ge(19),q=0;q>4;if(y<16)K[q++]=y;else{var G=0,ne=0;for(y==16?(ne=3+pt(e,d,3),d+=2,G=K[q-1]):y==17?(ne=3+pt(e,d,7),d+=3):y==18&&(ne=11+pt(e,d,127),d+=7);ne--;)K[q++]=G}}var Y=K.subarray(0,C),Oe=K.subarray(C);E=Xl(Y),w=Xl(Oe),v=cr(Y,E,1),g=cr(Oe,w,1)}else it(1);else{var y=Y0(d)+4,T=e[y-4]|e[y-3]<<8,D=y+T;if(D>l){c&&it(0);break}i&&u(p+T),n.set(e.subarray(y,D),p),t.b=p+=T,t.p=d=D*8,t.f=f;continue}if(d>b){c&&it(0);break}}i&&u(p+131072);for(var _t=(1<>4;if(d+=G&15,d>b){c&&it(0);break}if(G||it(2),Ze<256)n[p++]=Ze;else if(Ze==256){Fe=d,v=null;break}else{var xt=Ze-254;if(Ze>264){var q=Ze-257,Et=zc[q];xt=pt(e,d,(1<>4;Re||it(3),d+=Re&15;var Oe=G0[L];if(L>3){var Et=jc[L];Oe+=Zl(e,d)&(1<b){c&&it(0);break}i&&u(p+131072);var z=p+xt;if(p>4>7||(e[0]<<8|e[1])%31)&&it(6,"invalid zlib data"),(e[1]>>5&1)==+!t&&it(6,"invalid zlib data: "+(e[1]&32?"need":"unexpected")+" dictionary"),(e[1]>>3&4)+2};function e2(e,t){return Q0(e.subarray(Z0(e,t&&t.dictionary),-4),{i:2},t&&t.out,t&&t.dictionary)}var Hs=typeof TextEncoder<"u"&&new TextEncoder,So=typeof TextDecoder<"u"&&new TextDecoder,t2=0;try{So.decode(X0,{stream:!0}),t2=1}catch{}var n2=function(e){for(var t="",n=0;;){var r=e[n++],l=(r>127)+(r>223)+(r>239);if(n+l>e.length)return{s:t,r:ia(e,n-1)};l?l==3?(r=((r&15)<<18|(e[n++]&63)<<12|(e[n++]&63)<<6|e[n++]&63)-65536,t+=String.fromCharCode(55296|r>>10,56320|r&1023)):l&1?t+=String.fromCharCode((r&31)<<6|e[n++]&63):t+=String.fromCharCode((r&15)<<12|(e[n++]&63)<<6|e[n++]&63):t+=String.fromCharCode(r)}};function r2(e,t){if(t){for(var n=new Ge(e.length),r=0;r>1)),a=0,i=function(f){o[a++]=f},r=0;ro.length){var c=new Ge(a+8+(l-r<<1));c.set(o),o=c}var u=e.charCodeAt(r);u<128||t?i(u):u<2048?(i(192|u>>6),i(128|u&63)):u>55295&&u<57344?(u=65536+(u&1047552)|e.charCodeAt(++r)&1023,i(240|u>>18),i(128|u>>12&63),i(128|u>>6&63),i(128|u&63)):(i(224|u>>12),i(128|u>>6&63),i(128|u&63))}return ia(o,0,a)}function l2(e,t){if(t){for(var n="",r=0;r{var r;return s("svg",{xmlns:"http://www.w3.org/2000/svg",class:["icon",`${e}-icon`],viewBox:"0 0 1024 1024",fill:t,"aria-label":`${e} icon`},(r=n.default)==null?void 0:r.call(n))};ce.displayName="IconBase";const Ft=({size:e=48,stroke:t=4,wrapper:n=!0,height:r=2*e})=>{const l=s("svg",{xmlns:"http://www.w3.org/2000/svg",width:e,height:e,preserveAspectRatio:"xMidYMid",viewBox:"25 25 50 50"},[s("animateTransform",{attributeName:"transform",type:"rotate",dur:"2s",keyTimes:"0;1",repeatCount:"indefinite",values:"0;360"}),s("circle",{cx:"50",cy:"50",r:"20",fill:"none",stroke:"currentColor","stroke-width":t,"stroke-linecap":"round"},[s("animate",{attributeName:"stroke-dasharray",dur:"1.5s",keyTimes:"0;0.5;1",repeatCount:"indefinite",values:"1,200;90,200;1,200"}),s("animate",{attributeName:"stroke-dashoffset",dur:"1.5s",keyTimes:"0;0.5;1",repeatCount:"indefinite",values:"0;-35px;-125px"})])]);return n?s("div",{class:"loading-icon-wrapper",style:`display:flex;align-items:center;justify-content:center;height:${r}px`},l):l};Ft.displayName="LoadingIcon";const Kc=(e,{slots:t})=>{var n;return(n=t.default)==null?void 0:n.call(t)},ca=(e="")=>{if(e){if(typeof e=="number")return new Date(e);const t=Date.parse(e.toString());if(!Number.isNaN(t))return new Date(t)}return null},Pl=(e,t)=>{let n=1;for(let r=0;r>6;return n+=n<<3,n^=n>>11,n%t},ua=Array.isArray,o2=e=>typeof e=="function",a2=e=>typeof e=="string";var fa=e=>/^(https?:)?\/\//.test(e),s2=/.md((\?|#).*)?$/,i2=(e,t="/")=>!!(fa(e)||e.startsWith("/")&&!e.startsWith(t)&&!s2.test(e)),ur=e=>Object.prototype.toString.call(e)==="[object Object]";function c2(){const e=U(!1);return mn()&&me(()=>{e.value=!0}),e}function u2(e){return c2(),_(()=>!!e())}const f2=e=>typeof e=="function",eo=e=>typeof e=="number",Mt=e=>typeof e=="string",jn=(e,t)=>Mt(e)&&e.startsWith(t),Kr=(e,t)=>Mt(e)&&e.endsWith(t),yn=Object.entries,d2=Object.fromEntries,ft=Object.keys,To=(e,...t)=>{if(t.length===0)return e;const n=t.shift()||null;return n&&yn(n).forEach(([r,l])=>{r==="__proto__"||r==="constructor"||(ur(e[r])&&ur(l)?To(e[r],l):ua(l)?e[r]=[...l]:ur(l)?e[r]={...l}:e[r]=n[r])}),To(e,...t)},p2=e=>(e.endsWith(".md")&&(e=`${e.slice(0,-3)}.html`),!e.endsWith("/")&&!e.endsWith(".html")&&(e=`${e}.html`),e=e.replace(/(^|\/)(?:README|index).html$/i,"$1"),e),Yc=e=>{const[t,n=""]=e.split("#");return t?`${p2(t)}${n?`#${n}`:""}`:e},Vs=e=>ur(e)&&Mt(e.name),br=(e,t=!1)=>e?ua(e)?e.map(n=>Mt(n)?{name:n}:Vs(n)?n:null).filter(n=>n!==null):Mt(e)?[{name:e}]:Vs(e)?[e]:(console.error(`Expect "author" to be \`AuthorInfo[] | AuthorInfo | string[] | string ${t?"":"| false"} | undefined\`, but got`,e),[]):[],Jc=(e,t)=>{if(e){if(ua(e)&&e.every(Mt))return e;if(Mt(e))return[e];console.error(`Expect ${t||"value"} to be \`string[] | string | undefined\`, but got`,e)}return[]},Qc=e=>Jc(e,"category"),Xc=e=>Jc(e,"tag"),xr=e=>jn(e,"/");let v2=class{constructor(){this.messageElements={};const t="message-container",n=document.getElementById(t);n?this.containerElement=n:(this.containerElement=document.createElement("div"),this.containerElement.id=t,document.body.appendChild(this.containerElement))}pop(t,n=2e3){const r=document.createElement("div"),l=Date.now();return r.className="message move-in",r.innerHTML=t,this.containerElement.appendChild(r),this.messageElements[l]=r,n>0&&setTimeout(()=>{this.close(l)},n),l}close(t){if(t){const n=this.messageElements[t];n.classList.remove("move-in"),n.classList.add("move-out"),n.addEventListener("animationend",()=>{n.remove(),delete this.messageElements[t]})}else ft(this.messageElements).forEach(n=>this.close(Number(n)))}destroy(){document.body.removeChild(this.containerElement)}};const Zc=/#.*$/u,h2=e=>{const t=Zc.exec(e);return t?t[0]:""},Ns=e=>decodeURI(e).replace(Zc,"").replace(/(index)?\.html$/i,"").replace(/(README|index)?\.md$/i,""),eu=(e,t)=>{if(t===void 0)return!1;const n=Ns(e.path),r=Ns(t),l=h2(t);return l?l===e.hash&&(!r||n===r):n===r},Zt=e=>{const t=atob(e);return l2(e2(r2(t,!0)))},m2=e=>fa(e)?e:`https://github.com/${e}`,tu=e=>!fa(e)||/github\.com/.test(e)?"GitHub":/bitbucket\.org/.test(e)?"Bitbucket":/gitlab\.com/.test(e)?"GitLab":/gitee\.com/.test(e)?"Gitee":null,Un=(e,...t)=>{const n=e.resolve(...t),r=n.matched[n.matched.length-1];if(!(r!=null&&r.redirect))return n;const{redirect:l}=r,o=o2(l)?l(n):l,a=a2(o)?{path:o}:o;return Un(e,{hash:n.hash,query:n.query,params:n.params,...a})},g2=e=>{var t;if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)&&!(e.currentTarget&&((t=e.currentTarget.getAttribute("target"))!=null&&t.match(/\b_blank\b/i))))return e.preventDefault(),!0},$e=({to:e="",class:t="",...n},{slots:r})=>{var i;const l=je(),o=Yc(e),a=(c={})=>g2(c)?l.push(e).catch():Promise.resolve();return s("a",{...n,class:["vp-link",t],href:jn(o,"/")?xe(o):o,onClick:a},(i=r.default)==null?void 0:i.call(r))};$e.displayName="VPLink";const nu=()=>s(ce,{name:"github"},()=>s("path",{d:"M511.957 21.333C241.024 21.333 21.333 240.981 21.333 512c0 216.832 140.544 400.725 335.574 465.664 24.49 4.395 32.256-10.07 32.256-23.083 0-11.69.256-44.245 0-85.205-136.448 29.61-164.736-64.64-164.736-64.64-22.315-56.704-54.4-71.765-54.4-71.765-44.587-30.464 3.285-29.824 3.285-29.824 49.195 3.413 75.179 50.517 75.179 50.517 43.776 75.008 114.816 53.333 142.762 40.79 4.523-31.66 17.152-53.377 31.19-65.537-108.971-12.458-223.488-54.485-223.488-242.602 0-53.547 19.114-97.323 50.517-131.67-5.035-12.33-21.93-62.293 4.779-129.834 0 0 41.258-13.184 134.912 50.346a469.803 469.803 0 0 1 122.88-16.554c41.642.213 83.626 5.632 122.88 16.554 93.653-63.488 134.784-50.346 134.784-50.346 26.752 67.541 9.898 117.504 4.864 129.834 31.402 34.347 50.474 78.123 50.474 131.67 0 188.586-114.73 230.016-224.042 242.09 17.578 15.232 33.578 44.672 33.578 90.454v135.85c0 13.142 7.936 27.606 32.854 22.87C862.25 912.597 1002.667 728.747 1002.667 512c0-271.019-219.648-490.667-490.71-490.667z"}));nu.displayName="GitHubIcon";const ru=()=>s(ce,{name:"gitlab"},()=>s("path",{d:"M229.333 78.688C223.52 62 199.895 62 193.895 78.688L87.958 406.438h247.5c-.188 0-106.125-327.75-106.125-327.75zM33.77 571.438c-4.875 15 .563 31.687 13.313 41.25l464.812 345L87.77 406.438zm301.5-165 176.813 551.25 176.812-551.25zm655.125 165-54-165-424.312 551.25 464.812-345c12.938-9.563 18.188-26.25 13.5-41.25zM830.27 78.688c-5.812-16.688-29.437-16.688-35.437 0l-106.125 327.75h247.5z"}));ru.displayName="GitLabIcon";const lu=()=>s(ce,{name:"gitee"},()=>s("path",{d:"M512 992C246.92 992 32 777.08 32 512S246.92 32 512 32s480 214.92 480 480-214.92 480-480 480zm242.97-533.34H482.39a23.7 23.7 0 0 0-23.7 23.7l-.03 59.28c0 13.08 10.59 23.7 23.7 23.7h165.96a23.7 23.7 0 0 1 23.7 23.7v11.85a71.1 71.1 0 0 1-71.1 71.1H375.71a23.7 23.7 0 0 1-23.7-23.7V423.11a71.1 71.1 0 0 1 71.1-71.1h331.8a23.7 23.7 0 0 0 23.7-23.7l.06-59.25a23.73 23.73 0 0 0-23.7-23.73H423.11a177.78 177.78 0 0 0-177.78 177.75v331.83c0 13.08 10.62 23.7 23.7 23.7h349.62a159.99 159.99 0 0 0 159.99-159.99V482.33a23.7 23.7 0 0 0-23.7-23.7z"}));lu.displayName="GiteeIcon";const ou=()=>s(ce,{name:"bitbucket"},()=>s("path",{d:"M575.256 490.862c6.29 47.981-52.005 85.723-92.563 61.147-45.714-20.004-45.714-92.562-1.133-113.152 38.29-23.442 93.696 7.424 93.696 52.005zm63.451-11.996c-10.276-81.152-102.29-134.839-177.152-101.156-47.433 21.138-79.433 71.424-77.129 124.562 2.853 69.705 69.157 126.866 138.862 120.576S647.3 548.571 638.708 478.83zm136.558-309.723c-25.161-33.134-67.986-38.839-105.728-45.13-106.862-17.151-216.576-17.7-323.438 1.134-35.438 5.706-75.447 11.996-97.719 43.996 36.572 34.304 88.576 39.424 135.424 45.129 84.553 10.862 171.447 11.447 256 .585 47.433-5.705 99.987-10.276 135.424-45.714zm32.585 591.433c-16.018 55.99-6.839 131.438-66.304 163.986-102.29 56.576-226.304 62.867-338.87 42.862-59.43-10.862-129.135-29.696-161.72-85.723-14.3-54.858-23.442-110.848-32.585-166.84l3.438-9.142 10.276-5.157c170.277 112.567 408.576 112.567 579.438 0 26.844 8.01 6.84 40.558 6.29 60.014zm103.424-549.157c-19.42 125.148-41.728 249.71-63.415 374.272-6.29 36.572-41.728 57.162-71.424 72.558-106.862 53.724-231.424 62.866-348.562 50.286-79.433-8.558-160.585-29.696-225.134-79.433-30.28-23.443-30.28-63.415-35.986-97.134-20.005-117.138-42.862-234.277-57.161-352.585 6.839-51.42 64.585-73.728 107.447-89.71 57.16-21.138 118.272-30.866 178.87-36.571 129.134-12.58 261.157-8.01 386.304 28.562 44.581 13.13 92.563 31.415 122.844 69.705 13.714 17.7 9.143 40.01 6.29 60.014z"}));ou.displayName="BitbucketIcon";const au=()=>s(ce,{name:"source"},()=>s("path",{d:"M601.92 475.2c0 76.428-8.91 83.754-28.512 99.594-14.652 11.88-43.956 14.058-78.012 16.434-18.81 1.386-40.392 2.97-62.172 6.534-18.612 2.97-36.432 9.306-53.064 17.424V299.772c37.818-21.978 63.36-62.766 63.36-109.692 0-69.894-56.826-126.72-126.72-126.72S190.08 120.186 190.08 190.08c0 46.926 25.542 87.714 63.36 109.692v414.216c-37.818 21.978-63.36 62.766-63.36 109.692 0 69.894 56.826 126.72 126.72 126.72s126.72-56.826 126.72-126.72c0-31.086-11.286-59.598-29.7-81.576 13.266-9.504 27.522-17.226 39.996-19.206 16.038-2.574 32.868-3.762 50.688-5.148 48.312-3.366 103.158-7.326 148.896-44.55 61.182-49.698 74.25-103.158 75.24-187.902V475.2h-126.72zM316.8 126.72c34.848 0 63.36 28.512 63.36 63.36s-28.512 63.36-63.36 63.36-63.36-28.512-63.36-63.36 28.512-63.36 63.36-63.36zm0 760.32c-34.848 0-63.36-28.512-63.36-63.36s28.512-63.36 63.36-63.36 63.36 28.512 63.36 63.36-28.512 63.36-63.36 63.36zM823.68 158.4h-95.04V63.36h-126.72v95.04h-95.04v126.72h95.04v95.04h126.72v-95.04h95.04z"}));au.displayName="SourceIcon";const gt=(e,t)=>{var r;const n=(r=(t==null?void 0:t._instance)||mn())==null?void 0:r.appContext.components;return n?e in n||lt(e)in n||Er(lt(e))in n:!1},y2=()=>u2(()=>typeof window<"u"&&window.navigator&&"userAgent"in window.navigator),b2=()=>{const e=y2();return _(()=>e.value&&/\b(?:Android|iPhone)/i.test(navigator.userAgent))},Ir=e=>{const t=kt();return _(()=>e[t.value])},su=({type:e="info",text:t="",vertical:n,color:r},{slots:l})=>{var o;return s("span",{class:["vp-badge",e,{diy:r}],style:{verticalAlign:n??!1,backgroundColor:r??!1}},((o=l.default)==null?void 0:o.call(l))||t)};su.displayName="Badge";var _2=O({name:"FontIcon",props:{icon:{type:String,default:""},color:{type:String,default:""},size:{type:[String,Number],default:""}},setup(e){const t=_(()=>{const r=["font-icon icon"],l=`${e.icon}`;return r.push(l),r}),n=_(()=>{const r={};return e.color&&(r.color=e.color),e.size&&(r["font-size"]=Number.isNaN(Number(e.size))?e.size:`${e.size}px`),ft(r).length?r:null});return()=>e.icon?s("span",{key:e.icon,class:t.value,style:n.value}):null}});function zs(e,t){var n;const r=Ce();return Vi(()=>{r.value=e()},{...t,flush:(n=t==null?void 0:t.flush)!=null?n:"sync"}),vn(r)}function da(e,t){let n,r,l;const o=U(!0),a=()=>{o.value=!0,l()};de(e,a,{flush:"sync"});const i=typeof t=="function"?t:t.get,c=typeof t=="function"?void 0:t.set,u=Yo((f,d)=>(r=f,l=d,{get(){return o.value&&(n=i(),o.value=!1),r(),n},set(p){c==null||c(p)}}));return Object.isExtensible(u)&&(u.trigger=a),u}function bn(e){return mi()?(td(e),!0):!1}function We(e){return typeof e=="function"?e():fn(e)}const Br=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const E2=e=>e!=null,w2=Object.prototype.toString,A2=e=>w2.call(e)==="[object Object]",$t=()=>{},ko=C2();function C2(){var e,t;return Br&&((e=window==null?void 0:window.navigator)==null?void 0:e.userAgent)&&(/iP(ad|hone|od)/.test(window.navigator.userAgent)||((t=window==null?void 0:window.navigator)==null?void 0:t.maxTouchPoints)>2&&/iPad|Macintosh/.test(window==null?void 0:window.navigator.userAgent))}function pa(e,t){function n(...r){return new Promise((l,o)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(l).catch(o)})}return n}const iu=e=>e();function S2(e,t={}){let n,r,l=$t;const o=i=>{clearTimeout(i),l(),l=$t};return i=>{const c=We(e),u=We(t.maxWait);return n&&o(n),c<=0||u!==void 0&&u<=0?(r&&(o(r),r=null),Promise.resolve(i())):new Promise((f,d)=>{l=t.rejectOnCancel?d:f,u&&!r&&(r=setTimeout(()=>{n&&o(n),r=null,f(i())},u)),n=setTimeout(()=>{r&&o(r),r=null,f(i())},c)})}}function T2(...e){let t=0,n,r=!0,l=$t,o,a,i,c,u;!Ne(e[0])&&typeof e[0]=="object"?{delay:a,trailing:i=!0,leading:c=!0,rejectOnCancel:u=!1}=e[0]:[a,i=!0,c=!0,u=!1]=e;const f=()=>{n&&(clearTimeout(n),n=void 0,l(),l=$t)};return p=>{const v=We(a),g=Date.now()-t,E=()=>o=p();return f(),v<=0?(t=Date.now(),E()):(g>v&&(c||!r)?(t=Date.now(),E()):i&&(o=new Promise((w,b)=>{l=u?b:w,n=setTimeout(()=>{t=Date.now(),r=!0,w(E()),f()},Math.max(0,v-g))})),!c&&!n&&(n=setTimeout(()=>r=!0,v)),r=!1,o)}}function k2(e=iu){const t=U(!0);function n(){t.value=!1}function r(){t.value=!0}const l=(...o)=>{t.value&&e(...o)};return{isActive:vn(t),pause:n,resume:r,eventFilter:l}}function L2(e){let t;function n(){return t||(t=e()),t}return n.reset=async()=>{const r=t;t=void 0,r&&await r},n}function x2(e){return e||mn()}function I2(...e){if(e.length!==1)return Wn(...e);const t=e[0];return typeof t=="function"?vn(Yo(()=>({get:t,set:$t}))):U(t)}function cu(e,t=200,n={}){return pa(S2(t,n),e)}function B2(e,t=200,n=!1,r=!0,l=!1){return pa(T2(t,n,r,l),e)}function P2(e,t,n={}){const{eventFilter:r=iu,...l}=n;return de(e,pa(r,t),l)}function O2(e,t,n={}){const{eventFilter:r,...l}=n,{eventFilter:o,pause:a,resume:i,isActive:c}=k2(r);return{stop:P2(e,t,{...l,eventFilter:o}),pause:a,resume:i,isActive:c}}function va(e,t=!0,n){x2()?me(e,n):t?e():hn(e)}function R2(e,t,n={}){const{immediate:r=!0}=n,l=U(!1);let o=null;function a(){o&&(clearTimeout(o),o=null)}function i(){l.value=!1,a()}function c(...u){a(),l.value=!0,o=setTimeout(()=>{l.value=!1,o=null,e(...u)},We(t))}return r&&(l.value=!0,Br&&c()),bn(i),{isPending:vn(l),start:c,stop:i}}function ml(e=!1,t={}){const{truthyValue:n=!0,falsyValue:r=!1}=t,l=Ne(e),o=U(e);function a(i){if(arguments.length)return o.value=i,o.value;{const c=We(n);return o.value=o.value===c?We(r):c,o.value}}return l?a:[o,a]}function Je(e){var t;const n=We(e);return(t=n==null?void 0:n.$el)!=null?t:n}const Tt=Br?window:void 0,$2=Br?window.document:void 0,uu=Br?window.navigator:void 0;function Be(...e){let t,n,r,l;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,r,l]=e,t=Tt):[t,n,r,l]=e,!t)return $t;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const o=[],a=()=>{o.forEach(f=>f()),o.length=0},i=(f,d,p,v)=>(f.addEventListener(d,p,v),()=>f.removeEventListener(d,p,v)),c=de(()=>[Je(t),We(l)],([f,d])=>{if(a(),!f)return;const p=A2(d)?{...d}:d;o.push(...n.flatMap(v=>r.map(g=>i(f,v,g,p))))},{immediate:!0,flush:"post"}),u=()=>{c(),a()};return bn(u),u}let js=!1;function M2(e,t,n={}){const{window:r=Tt,ignore:l=[],capture:o=!0,detectIframe:a=!1}=n;if(!r)return $t;ko&&!js&&(js=!0,Array.from(r.document.body.children).forEach(p=>p.addEventListener("click",$t)),r.document.documentElement.addEventListener("click",$t));let i=!0;const c=p=>l.some(v=>{if(typeof v=="string")return Array.from(r.document.querySelectorAll(v)).some(g=>g===p.target||p.composedPath().includes(g));{const g=Je(v);return g&&(p.target===g||p.composedPath().includes(g))}}),f=[Be(r,"click",p=>{const v=Je(e);if(!(!v||v===p.target||p.composedPath().includes(v))){if(p.detail===0&&(i=!c(p)),!i){i=!0;return}t(p)}},{passive:!0,capture:o}),Be(r,"pointerdown",p=>{const v=Je(e);i=!c(p)&&!!(v&&!p.composedPath().includes(v))},{passive:!0}),a&&Be(r,"blur",p=>{setTimeout(()=>{var v;const g=Je(e);((v=r.document.activeElement)==null?void 0:v.tagName)==="IFRAME"&&!(g!=null&&g.contains(r.document.activeElement))&&t(p)},0)})].filter(Boolean);return()=>f.forEach(p=>p())}function D2(){const e=U(!1),t=mn();return t&&me(()=>{e.value=!0},t),e}function Yn(e){const t=D2();return _(()=>(t.value,!!e()))}function fu(e,t={}){const{window:n=Tt}=t,r=Yn(()=>n&&"matchMedia"in n&&typeof n.matchMedia=="function");let l;const o=U(!1),a=u=>{o.value=u.matches},i=()=>{l&&("removeEventListener"in l?l.removeEventListener("change",a):l.removeListener(a))},c=Vi(()=>{r.value&&(i(),l=n.matchMedia(We(e)),"addEventListener"in l?l.addEventListener("change",a):l.addListener(a),o.value=l.matches)});return bn(()=>{c(),i(),l=void 0}),o}function Us(e,t={}){const{controls:n=!1,navigator:r=uu}=t,l=Yn(()=>r&&"permissions"in r);let o;const a=typeof e=="string"?{name:e}:e,i=U(),c=()=>{o&&(i.value=o.state)},u=L2(async()=>{if(l.value){if(!o)try{o=await r.permissions.query(a),Be(o,"change",c),c()}catch{i.value="prompt"}return o}});return u(),n?{state:i,isSupported:l,query:u}:i}function F2(e={}){const{navigator:t=uu,read:n=!1,source:r,copiedDuring:l=1500,legacy:o=!1}=e,a=Yn(()=>t&&"clipboard"in t),i=Us("clipboard-read"),c=Us("clipboard-write"),u=_(()=>a.value||o),f=U(""),d=U(!1),p=R2(()=>d.value=!1,l);function v(){a.value&&b(i.value)?t.clipboard.readText().then(S=>{f.value=S}):f.value=w()}u.value&&n&&Be(["copy","cut"],v);async function g(S=We(r)){u.value&&S!=null&&(a.value&&b(c.value)?await t.clipboard.writeText(S):E(S),f.value=S,d.value=!0,p.start())}function E(S){const y=document.createElement("textarea");y.value=S??"",y.style.position="absolute",y.style.opacity="0",document.body.appendChild(y),y.select(),document.execCommand("copy"),y.remove()}function w(){var S,y,T;return(T=(y=(S=document==null?void 0:document.getSelection)==null?void 0:S.call(document))==null?void 0:y.toString())!=null?T:""}function b(S){return S==="granted"||S==="prompt"}return{isSupported:u,text:f,copied:d,copy:g}}const Yr=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Jr="__vueuse_ssr_handlers__",H2=V2();function V2(){return Jr in Yr||(Yr[Jr]=Yr[Jr]||{}),Yr[Jr]}function N2(e,t){return H2[e]||t}function z2(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}const j2={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},qs="vueuse-storage";function ha(e,t,n,r={}){var l;const{flush:o="pre",deep:a=!0,listenToStorageChanges:i=!0,writeDefaults:c=!0,mergeDefaults:u=!1,shallow:f,window:d=Tt,eventFilter:p,onError:v=P=>{console.error(P)},initOnMounted:g}=r,E=(f?Ce:U)(typeof t=="function"?t():t);if(!n)try{n=N2("getDefaultStorage",()=>{var P;return(P=Tt)==null?void 0:P.localStorage})()}catch(P){v(P)}if(!n)return E;const w=We(t),b=z2(w),S=(l=r.serializer)!=null?l:j2[b],{pause:y,resume:T}=O2(E,()=>C(E.value),{flush:o,deep:a,eventFilter:p});d&&i&&va(()=>{Be(d,"storage",H),Be(d,qs,K),g&&H()}),g||H();function D(P,q){d&&d.dispatchEvent(new CustomEvent(qs,{detail:{key:e,oldValue:P,newValue:q,storageArea:n}}))}function C(P){try{const q=n.getItem(e);if(P==null)D(q,null),n.removeItem(e);else{const R=S.write(P);q!==R&&(n.setItem(e,R),D(q,R))}}catch(q){v(q)}}function W(P){const q=P?P.newValue:n.getItem(e);if(q==null)return c&&w!=null&&n.setItem(e,S.write(w)),w;if(!P&&u){const R=S.read(q);return typeof u=="function"?u(R,w):b==="object"&&!Array.isArray(R)?{...w,...R}:R}else return typeof q!="string"?q:S.read(q)}function H(P){if(!(P&&P.storageArea!==n)){if(P&&P.key==null){E.value=w;return}if(!(P&&P.key!==e)){y();try{(P==null?void 0:P.newValue)!==S.write(E.value)&&(E.value=W(P))}catch(q){v(q)}finally{P?hn(T):T()}}}}function K(P){H(P.detail)}return E}function U2(e){return fu("(prefers-color-scheme: dark)",e)}function du(e,t,n={}){const{window:r=Tt,...l}=n;let o;const a=Yn(()=>r&&"MutationObserver"in r),i=()=>{o&&(o.disconnect(),o=void 0)},c=_(()=>{const p=We(e),v=(Array.isArray(p)?p:[p]).map(Je).filter(E2);return new Set(v)}),u=de(()=>c.value,p=>{i(),a.value&&r&&p.size&&(o=new MutationObserver(t),p.forEach(v=>o.observe(v,l)))},{immediate:!0,flush:"post"}),f=()=>o==null?void 0:o.takeRecords(),d=()=>{i(),u()};return bn(d),{isSupported:a,stop:d,takeRecords:f}}function q2(e,t,n={}){const{window:r=Tt,...l}=n;let o;const a=Yn(()=>r&&"ResizeObserver"in r),i=()=>{o&&(o.disconnect(),o=void 0)},c=_(()=>Array.isArray(e)?e.map(d=>Je(d)):[Je(e)]),u=de(c,d=>{if(i(),a.value&&r){o=new ResizeObserver(t);for(const p of d)p&&o.observe(p,l)}},{immediate:!0,flush:"post"}),f=()=>{i(),u()};return bn(f),{isSupported:a,stop:f}}function G2(e,t={width:0,height:0},n={}){const{window:r=Tt,box:l="content-box"}=n,o=_(()=>{var d,p;return(p=(d=Je(e))==null?void 0:d.namespaceURI)==null?void 0:p.includes("svg")}),a=U(t.width),i=U(t.height),{stop:c}=q2(e,([d])=>{const p=l==="border-box"?d.borderBoxSize:l==="content-box"?d.contentBoxSize:d.devicePixelContentBoxSize;if(r&&o.value){const v=Je(e);if(v){const g=r.getComputedStyle(v);a.value=Number.parseFloat(g.width),i.value=Number.parseFloat(g.height)}}else if(p){const v=Array.isArray(p)?p:[p];a.value=v.reduce((g,{inlineSize:E})=>g+E,0),i.value=v.reduce((g,{blockSize:E})=>g+E,0)}else a.value=d.contentRect.width,i.value=d.contentRect.height},n);va(()=>{const d=Je(e);d&&(a.value="offsetWidth"in d?d.offsetWidth:t.width,i.value="offsetHeight"in d?d.offsetHeight:t.height)});const u=de(()=>Je(e),d=>{a.value=d?t.width:0,i.value=d?t.height:0});function f(){c(),u()}return{width:a,height:i,stop:f}}const Gs=["fullscreenchange","webkitfullscreenchange","webkitendfullscreen","mozfullscreenchange","MSFullscreenChange"];function ma(e,t={}){const{document:n=$2,autoExit:r=!1}=t,l=_(()=>{var b;return(b=Je(e))!=null?b:n==null?void 0:n.querySelector("html")}),o=U(!1),a=_(()=>["requestFullscreen","webkitRequestFullscreen","webkitEnterFullscreen","webkitEnterFullScreen","webkitRequestFullScreen","mozRequestFullScreen","msRequestFullscreen"].find(b=>n&&b in n||l.value&&b in l.value)),i=_(()=>["exitFullscreen","webkitExitFullscreen","webkitExitFullScreen","webkitCancelFullScreen","mozCancelFullScreen","msExitFullscreen"].find(b=>n&&b in n||l.value&&b in l.value)),c=_(()=>["fullScreen","webkitIsFullScreen","webkitDisplayingFullscreen","mozFullScreen","msFullscreenElement"].find(b=>n&&b in n||l.value&&b in l.value)),u=["fullscreenElement","webkitFullscreenElement","mozFullScreenElement","msFullscreenElement"].find(b=>n&&b in n),f=Yn(()=>l.value&&n&&a.value!==void 0&&i.value!==void 0&&c.value!==void 0),d=()=>u?(n==null?void 0:n[u])===l.value:!1,p=()=>{if(c.value){if(n&&n[c.value]!=null)return n[c.value];{const b=l.value;if((b==null?void 0:b[c.value])!=null)return!!b[c.value]}}return!1};async function v(){if(!(!f.value||!o.value)){if(i.value)if((n==null?void 0:n[i.value])!=null)await n[i.value]();else{const b=l.value;(b==null?void 0:b[i.value])!=null&&await b[i.value]()}o.value=!1}}async function g(){if(!f.value||o.value)return;p()&&await v();const b=l.value;a.value&&(b==null?void 0:b[a.value])!=null&&(await b[a.value](),o.value=!0)}async function E(){await(o.value?v():g())}const w=()=>{const b=p();(!b||b&&d())&&(o.value=b)};return Be(n,Gs,w,!1),Be(()=>Je(l),Gs,w,!1),r&&bn(v),{isSupported:f,isFullscreen:o,enter:g,exit:v,toggle:E}}function to(e){return typeof Window<"u"&&e instanceof Window?e.document.documentElement:typeof Document<"u"&&e instanceof Document?e.documentElement:e}function pu(e){const t=window.getComputedStyle(e);if(t.overflowX==="scroll"||t.overflowY==="scroll"||t.overflowX==="auto"&&e.clientWidth1?!0:(t.preventDefault&&t.preventDefault(),!1)}const Qr=new WeakMap;function vu(e,t=!1){const n=U(t);let r=null;de(I2(e),a=>{const i=to(We(a));if(i){const c=i;Qr.get(c)||Qr.set(c,c.style.overflow),n.value&&(c.style.overflow="hidden")}},{immediate:!0});const l=()=>{const a=to(We(e));!a||n.value||(ko&&(r=Be(a,"touchmove",i=>{W2(i)},{passive:!1})),a.style.overflow="hidden",n.value=!0)},o=()=>{var a;const i=to(We(e));!i||!n.value||(ko&&(r==null||r()),i.style.overflow=(a=Qr.get(i))!=null?a:"",Qr.delete(i),n.value=!1)};return bn(o),_({get(){return n.value},set(a){a?l():o()}})}function K2(e={}){const{window:t=Tt,behavior:n="auto"}=e;if(!t)return{x:U(0),y:U(0)};const r=U(t.scrollX),l=U(t.scrollY),o=_({get(){return r.value},set(i){scrollTo({left:i,behavior:n})}}),a=_({get(){return l.value},set(i){scrollTo({top:i,behavior:n})}});return Be(t,"scroll",()=>{r.value=t.scrollX,l.value=t.scrollY},{capture:!1,passive:!0}),{x:o,y:a}}function Y2(e={}){const{window:t=Tt,initialWidth:n=Number.POSITIVE_INFINITY,initialHeight:r=Number.POSITIVE_INFINITY,listenOrientation:l=!0,includeScrollbar:o=!0}=e,a=U(n),i=U(r),c=()=>{t&&(o?(a.value=t.innerWidth,i.value=t.innerHeight):(a.value=t.document.documentElement.clientWidth,i.value=t.document.documentElement.clientHeight))};if(c(),va(c),Be("resize",c,{passive:!0}),l){const u=fu("(orientation: portrait)");de(u,()=>c())}return{width:a,height:i}}const hu=()=>s(ce,{name:"back-to-top"},()=>[s("path",{d:"M512 843.2c-36.2 0-66.4-13.6-85.8-21.8-10.8-4.6-22.6 3.6-21.8 15.2l7 102c.4 6.2 7.6 9.4 12.6 5.6l29-22c3.6-2.8 9-1.8 11.4 2l41 64.2c3 4.8 10.2 4.8 13.2 0l41-64.2c2.4-3.8 7.8-4.8 11.4-2l29 22c5 3.8 12.2.6 12.6-5.6l7-102c.8-11.6-11-20-21.8-15.2-19.6 8.2-49.6 21.8-85.8 21.8z"}),s("path",{d:"m795.4 586.2-96-98.2C699.4 172 513 32 513 32S324.8 172 324.8 488l-96 98.2c-3.6 3.6-5.2 9-4.4 14.2L261.2 824c1.8 11.4 14.2 17 23.6 10.8L419 744s41.4 40 94.2 40c52.8 0 92.2-40 92.2-40l134.2 90.8c9.2 6.2 21.6.6 23.6-10.8l37-223.8c.4-5.2-1.2-10.4-4.8-14zM513 384c-34 0-61.4-28.6-61.4-64s27.6-64 61.4-64c34 0 61.4 28.6 61.4 64S547 384 513 384z"})]);hu.displayName="BackToTopIcon";var J2={"/":{backToTop:"返回顶部"}},Q2=O({name:"BackToTop",props:{threshold:{type:Number,default:100},noProgress:Boolean},setup(e){const t=be(),n=Ir(J2),r=Ce(),{height:l}=G2(r),{height:o}=Y2(),{y:a}=K2(),i=_(()=>t.value.backToTop!==!1&&a.value>e.threshold),c=_(()=>a.value/(l.value-o.value)*100);return me(()=>{r.value=document.body}),()=>s(Xt,{name:"fade"},()=>i.value?s("button",{type:"button",class:"vp-back-to-top-button","aria-label":n.value.backToTop,"data-balloon-pos":"left",onClick:()=>{window.scrollTo({top:0,behavior:"smooth"})}},[e.noProgress?null:s("span",{class:"vp-scroll-progress",role:"progressbar","aria-labelledby":"loadinglabel","aria-valuenow":c.value},s("svg",s("circle",{cx:"50%",cy:"50%",style:{"stroke-dasharray":`calc(${Math.PI*c.value}% - ${4*Math.PI}px) calc(${Math.PI*100}% - ${4*Math.PI}px)`}}))),s(hu)]):null)}});const X2=bt({enhance:({app:e})=>{gt("Badge")||e.component("Badge",su),gt("FontIcon")||e.component("FontIcon",_2)},setup:()=>{},rootComponents:[()=>s(Q2,{})]});function Z2(e,t,n){var r,l,o;t===void 0&&(t=50),n===void 0&&(n={});var a=(r=n.isImmediate)!=null&&r,i=(l=n.callback)!=null&&l,c=n.maxWait,u=Date.now(),f=[];function d(){if(c!==void 0){var v=Date.now()-u;if(v+t>=c)return c-v}return t}var p=function(){var v=[].slice.call(arguments),g=this;return new Promise(function(E,w){var b=a&&o===void 0;if(o!==void 0&&clearTimeout(o),o=setTimeout(function(){if(o=void 0,u=Date.now(),!a){var y=e.apply(g,v);i&&i(y),f.forEach(function(T){return(0,T.resolve)(y)}),f=[]}},d()),b){var S=e.apply(g,v);return i&&i(S),E(S)}f.push({resolve:E,reject:w})})};return p.cancel=function(v){o!==void 0&&clearTimeout(o),f.forEach(function(g){return(0,g.reject)(v)}),f=[]},p}const ev=({headerLinkSelector:e,headerAnchorSelector:t,delay:n,offset:r=5})=>{const l=je(),a=Z2(()=>{var E,w;const i=Math.max(window.scrollY,document.documentElement.scrollTop,document.body.scrollTop);if(Math.abs(i-0)p.some(S=>S.hash===b.hash));for(let b=0;b=(((E=S.parentElement)==null?void 0:E.offsetTop)??0)-r,D=!y||i<(((w=y.parentElement)==null?void 0:w.offsetTop)??0)-r;if(!(T&&D))continue;const W=decodeURIComponent(l.currentRoute.value.hash),H=decodeURIComponent(S.hash);if(W===H)return;if(d){for(let K=b+1;K{window.addEventListener("scroll",a)}),Xo(()=>{window.removeEventListener("scroll",a)})},Ws=async(e,t)=>{const{scrollBehavior:n}=e.options;e.options.scrollBehavior=void 0,await e.replace({query:e.currentRoute.value.query,hash:t}).finally(()=>e.options.scrollBehavior=n)},tv=".vp-sidebar-link, .toc-link",nv=".header-anchor",rv=200,lv=5,ov=bt({setup(){ev({headerLinkSelector:tv,headerAnchorSelector:nv,delay:rv,offset:lv})}});let mu=e=>ae(e.title)?{title:e.title}:null;const gu=Symbol(""),av=e=>{mu=e},sv=()=>se(gu),iv=e=>{e.provide(gu,mu)};var cv={"/":{title:"目录",empty:"暂无目录"}},uv=O({name:"AutoCatalog",props:{base:{type:String,default:""},level:{type:Number,default:3},index:Boolean,hideHeading:Boolean},setup(e){const t=sv(),n=Ir(cv),r=ie(),l=je(),o=xc(),a=U(l.getRoutes().map(({meta:u,path:f})=>{const d=t(u);if(!d)return null;const p=f.split("/").length;return{level:Kr(f,"/")?p-2:p-1,base:f.replace(/\/[^/]+\/?$/,"/"),path:f,...d}}).filter(u=>ur(u)&&ae(u.title))),i=()=>{const u=e.base?kp(_c(e.base)):r.value.path.replace(/\/[^/]+$/,"/"),f=u.split("/").length-2,d=[];return a.value.filter(({level:p,path:v})=>{if(!jn(v,u)||v===u)return!1;if(u==="/"){const g=ft(o.value.locales).filter(E=>E!=="/");if(v==="/404.html"||g.some(E=>jn(v,E)))return!1}return p-f<=e.level&&(Kr(v,".html")&&!Kr(v,"/index.html")||Kr(v,"/"))}).sort(({title:p,level:v,order:g},{title:E,level:w,order:b})=>v-w||(eo(g)?eo(b)?g>0?b>0?g-b:-1:b<0?g-b:1:g:eo(b)?b:p.localeCompare(E))).forEach(p=>{var E;const{base:v,level:g}=p;switch(g-f){case 1:d.push(p);break;case 2:{const w=d.find(b=>b.path===v);w&&(w.children??(w.children=[])).push(p);break}default:{const w=d.find(b=>b.path===v.replace(/\/[^/]+\/$/,"/"));if(w){const b=(E=w.children)==null?void 0:E.find(S=>S.path===v);b&&(b.children??(b.children=[])).push(p)}}}}),d},c=_(()=>i());return()=>{const u=c.value.some(f=>f.children);return s("div",{class:["vp-catalog-wrapper",{index:e.index}]},[e.hideHeading?null:s("h2",{class:"vp-catalog-main-title"},n.value.title),c.value.length?s(e.index?"ol":"ul",{class:["vp-catalogs",{deep:u}]},c.value.map(({children:f=[],title:d,path:p,content:v})=>{const g=s($e,{class:"vp-catalog-title",to:p},()=>v?s(v):d);return s("li",{class:"vp-catalog"},u?[s("h3",{id:d,class:["vp-catalog-child-title",{"has-children":f.length}]},[s("a",{href:`#${d}`,class:"header-anchor","aria-hidden":!0},"#"),g]),f.length?s(e.index?"ol":"ul",{class:"vp-child-catalogs"},f.map(({children:E=[],content:w,path:b,title:S})=>s("li",{class:"vp-child-catalog"},[s("div",{class:["vp-catalog-sub-title",{"has-children":E.length}]},[s("a",{href:`#${S}`,class:"header-anchor"},"#"),s($e,{class:"vp-catalog-title",to:b},()=>w?s(w):S)]),E.length?s(e.index?"ol":"div",{class:e.index?"vp-sub-catalogs":"vp-sub-catalogs-wrapper"},E.map(({content:y,path:T,title:D})=>e.index?s("li",{class:"vp-sub-catalog"},s($e,{to:T},()=>y?s(y):D)):s($e,{class:"vp-sub-catalog-link",to:T},()=>y?s(y):D))):null]))):null]:s("div",{class:"vp-catalog-child-title"},g))})):s("p",{class:"vp-empty-catalog"},n.value.empty)])}}}),fv=bt({enhance:({app:e})=>{iv(e),gt("AutoCatalog",e)||e.component("AutoCatalog",uv)}});const dv=s("svg",{class:"external-link-icon",xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",focusable:"false",x:"0px",y:"0px",viewBox:"0 0 100 100",width:"15",height:"15"},[s("path",{fill:"currentColor",d:"M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"}),s("polygon",{fill:"currentColor",points:"45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"})]),yu=O({name:"ExternalLinkIcon",props:{locales:{type:Object,required:!1,default:()=>({})}},setup(e){const t=kt(),n=_(()=>e.locales[t.value]??{openInNewWindow:"open in new window"});return()=>s("span",[dv,s("span",{class:"external-link-icon-sr-only"},n.value.openInNewWindow)])}});var pv={};const vv=pv,hv=bt({enhance({app:e}){e.component("ExternalLinkIcon",s(yu,{locales:vv}))}});/** * NProgress, (c) 2013, 2014 Rico Sta. Cruz - http://ricostacruz.com/nprogress * @license MIT - */const ve={settings:{minimum:.08,easing:"ease",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,barSelector:'[role="bar"]',parent:"body",template:'
'},status:null,set:e=>{const t=ve.isStarted();e=no(e,ve.settings.minimum,1),ve.status=e===1?null:e;const n=ve.render(!t),r=n.querySelector(ve.settings.barSelector),l=ve.settings.speed,o=ve.settings.easing;return n.offsetWidth,mv(a=>{Xr(r,{transform:"translate3d("+Ks(e)+"%,0,0)",transition:"all "+l+"ms "+o}),e===1?(Xr(n,{transition:"none",opacity:"1"}),n.offsetWidth,setTimeout(function(){Xr(n,{transition:"all "+l+"ms linear",opacity:"0"}),setTimeout(function(){ve.remove(),a()},l)},l)):setTimeout(()=>a(),l)}),ve},isStarted:()=>typeof ve.status=="number",start:()=>{ve.status||ve.set(0);const e=()=>{setTimeout(()=>{ve.status&&(ve.trickle(),e())},ve.settings.trickleSpeed)};return ve.settings.trickle&&e(),ve},done:e=>!e&&!ve.status?ve:ve.inc(.3+.5*Math.random()).set(1),inc:e=>{let t=ve.status;return t?(typeof e!="number"&&(e=(1-t)*no(Math.random()*t,.1,.95)),t=no(t+e,0,.994),ve.set(t)):ve.start()},trickle:()=>ve.inc(Math.random()*ve.settings.trickleRate),render:e=>{if(ve.isRendered())return document.getElementById("nprogress");Ys(document.documentElement,"nprogress-busy");const t=document.createElement("div");t.id="nprogress",t.innerHTML=ve.settings.template;const n=t.querySelector(ve.settings.barSelector),r=e?"-100":Ks(ve.status||0),l=document.querySelector(ve.settings.parent);return Xr(n,{transition:"all 0 linear",transform:"translate3d("+r+"%,0,0)"}),l!==document.body&&Ys(l,"nprogress-custom-parent"),l==null||l.appendChild(t),t},remove:()=>{Js(document.documentElement,"nprogress-busy"),Js(document.querySelector(ve.settings.parent),"nprogress-custom-parent");const e=document.getElementById("nprogress");e&&gv(e)},isRendered:()=>!!document.getElementById("nprogress")},no=(e,t,n)=>en?n:e,Ks=e=>(-1+e)*100,mv=function(){const e=[];function t(){const n=e.shift();n&&n(t)}return function(n){e.push(n),e.length===1&&t()}}(),Xr=function(){const e=["Webkit","O","Moz","ms"],t={};function n(a){return a.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(i,c){return c.toUpperCase()})}function r(a){const i=document.body.style;if(a in i)return a;let c=e.length;const u=a.charAt(0).toUpperCase()+a.slice(1);let f;for(;c--;)if(f=e[c]+u,f in i)return f;return a}function l(a){return a=n(a),t[a]??(t[a]=r(a))}function o(a,i,c){i=l(i),a.style[i]=c}return function(a,i){for(const c in i){const u=i[c];u!==void 0&&Object.prototype.hasOwnProperty.call(i,c)&&o(a,c,u)}}}(),bu=(e,t)=>(typeof e=="string"?e:ga(e)).indexOf(" "+t+" ")>=0,Ys=(e,t)=>{const n=ga(e),r=n+t;bu(n,t)||(e.className=r.substring(1))},Js=(e,t)=>{const n=ga(e);if(!bu(e,t))return;const r=n.replace(" "+t+" "," ");e.className=r.substring(1,r.length-1)},ga=e=>(" "+(e.className||"")+" ").replace(/\s+/gi," "),gv=e=>{e&&e.parentNode&&e.parentNode.removeChild(e)},yv=()=>{me(()=>{const e=je(),t=new Set;t.add(e.currentRoute.value.path),e.beforeEach(n=>{t.has(n.path)||ve.start()}),e.afterEach(n=>{t.add(n.path),ve.done()})})},bv=bt({setup(){yv()}}),_v=JSON.parse('{"encrypt":{},"author":{"name":"HalfSweet","url":"https://github.com/HalfSweet"},"logo":"/img/Headshot.jpg","repo":"HalfSweet/Blog","docsDir":"src","footer":"今天咕咕被欺负了吗","displayFooter":true,"blog":{"description":"Try to create some value","intro":"/Catalogue/02.about.html","medias":{"Email":"mailto:HalfSweet@HalfSweet.cn","GitHub":"https://github.com/HalfSweet","Twitter":"https://twitter.com/_HalfSweet"}},"navbarLayout":{"start":["Brand"],"center":["Links"],"end":["Language","Repo","Outlook","Search"]},"locales":{"/":{"lang":"zh-CN","navbarLocales":{"langName":"简体中文","selectLangAriaLabel":"选择语言"},"metaLocales":{"author":"作者","date":"写作日期","origin":"原创","views":"访问量","category":"分类","tag":"标签","readingTime":"阅读时间","words":"字数","toc":"此页内容","prev":"上一页","next":"下一页","lastUpdated":"上次编辑于","contributors":"贡献者","editLink":"在 GitHub 上编辑此页","print":"打印"},"blogLocales":{"article":"文章","articleList":"文章列表","category":"分类","tag":"标签","timeline":"时间轴","timelineTitle":"昨日不在","all":"全部","intro":"个人介绍","star":"收藏","empty":"$text 为空"},"paginationLocales":{"prev":"上一页","next":"下一页","navigate":"跳转到","action":"前往","errorText":"请输入 1 到 $page 之前的页码!"},"outlookLocales":{"themeColor":"主题色","darkmode":"外观","fullscreen":"全屏"},"routeLocales":{"skipToContent":"跳至主要內容","notFoundTitle":"页面不存在","notFoundMsg":["这里什么也没有","我们是怎么来到这儿的?","这 是 四 零 四 !","看起来你访问了一个失效的链接"],"back":"返回上一页","home":"带我回家","openInNewWindow":"Open in new window"},"navbar":["/",{"text":"文章","link":"/posts/","icon":"app"},{"text":"关于","icon":"user","link":"/Catalogue/about.html"},{"text":"友链","icon":"link","link":"/Catalogue/friends.html"}],"sidebar":{"/":["",{"text":"文章","icon":"book","prefix":"posts/","children":"structure"}]}}}}'),Ev=U(_v),_u=()=>Ev,Eu=Symbol(""),wv=()=>{const e=se(Eu);if(!e)throw new Error("useThemeLocaleData() is called without provider.");return e},Av=(e,t)=>{const{locales:n,...r}=e;return{...r,...n==null?void 0:n[t]}},Cv=bt({enhance({app:e}){const t=_u(),n=e._context.provides[la],r=_(()=>Av(t.value,n.value));e.provide(Eu,r),Object.defineProperties(e.config.globalProperties,{$theme:{get(){return t.value}},$themeLocale:{get(){return r.value}}})}});var Sv={provider:"Giscus",lightTheme:"https://unpkg.com/vuepress-theme-hope@2.0.0-rc.10/templates/giscus/light.css",darkTheme:"https://unpkg.com/vuepress-theme-hope@2.0.0-rc.10/templates/giscus/dark.css",repo:"HalfSweet/Blog",repoId:"R_kgDOIWC9qQ",category:"comment",categoryId:"DIC_kwDOIWC9qc4CYtVz",mapping:"pathname",lazyLoading:!1};const Tv=Sv;let kv=Tv;const wu=Symbol(""),Au=()=>se(wu),xv=Au,Lv=e=>{e.provide(wu,kv)},Qs=["ar","ca","de","en","eo","es","fa","fr","he","id","it","ja","ko","nl","pl","pt","ro","ru","th","tr","uk","vi","zh-CN","zh-TW"];var Iv=O({name:"GiscusComment",props:{identifier:{type:String,required:!0},darkmode:Boolean},setup(e){const t=xv(),n=!!(t.repo&&t.repoId&&t.category&&t.categoryId),{repo:r,repoId:l,category:o,categoryId:a}=t,i=U(!1),c=_(()=>{const f=ra().value;if(Qs.includes(f))return f;const d=f.split("-")[0];return Qs.includes(d)?d:"en"}),u=_(()=>({repo:r,repoId:l,category:o,categoryId:a,lang:c.value,theme:e.darkmode?t.darkTheme||"dark":t.lightTheme||"light",mapping:t.mapping||"pathname",term:e.identifier,inputPosition:t.inputPosition||"top",reactionsEnabled:t.reactionsEnabled===!1?"0":"1",strict:t.strict===!1?"0":"1",loading:t.lazyLoading===!1?"eager":"lazy",emitMetadata:"0"}));return me(async()=>{await k(()=>import("./giscus-7BMGhbDA.js"),__vite__mapDeps([])),i.value=!0}),()=>n?s("div",{id:"comment",class:["giscus-wrapper",{"input-top":t.inputPosition!=="bottom"}]},i.value?s("giscus-widget",u.value):s(Ft)):null}}),Pv=O({name:"CommentService",props:{darkmode:Boolean},setup(e){const t=Au(),n=ie(),r=be(),l=t.comment!==!1,o=_(()=>r.value.comment||l&&r.value.comment!==!1);return()=>s(Iv,{identifier:r.value.commentID||n.value.path,darkmode:e.darkmode,style:{display:o.value?"block":"none"}})}}),Bv=bt({enhance:({app:e})=>{Lv(e),e.component("CommentService",Pv)}}),Ov={"/":{copy:"复制代码",copied:"已复制",hint:"复制成功"}},$v=['.theme-hope-content div[class*="language-"] pre'];const Rv=800,Mv=2e3,Dv=Ov,Fv=$v,Xs=!1,ro=new Map,Hv=()=>{const{copy:e}=F2({legacy:!0}),t=Ir(Dv),n=ie(),r=b2(),l=i=>{if(!i.hasAttribute("copy-code-registered")){const c=document.createElement("button");c.type="button",c.classList.add("copy-code-button"),c.innerHTML='
',c.setAttribute("aria-label",t.value.copy),c.setAttribute("data-copied",t.value.copied),i.parentElement&&i.parentElement.insertBefore(c,i),i.setAttribute("copy-code-registered","")}},o=()=>hn().then(()=>new Promise(i=>{setTimeout(()=>{Fv.forEach(c=>{document.querySelectorAll(c).forEach(l)}),i()},Rv)})),a=(i,c,u)=>{let{innerText:f=""}=c;/language-(shellscript|shell|bash|sh|zsh)/.test(i.classList.toString())&&(f=f.replace(/^ *(\$|>) /gm,"")),e(f).then(()=>{u.classList.add("copied"),clearTimeout(ro.get(u));const d=setTimeout(()=>{u.classList.remove("copied"),u.blur(),ro.delete(u)},Mv);ro.set(u,d)})};me(()=>{(!r.value||Xs)&&o(),Pe("click",i=>{const c=i.target;if(c.matches('div[class*="language-"] > button.copy')){const u=c.parentElement,f=c.nextElementSibling;f&&a(u,f,c)}else if(c.matches('div[class*="language-"] div.copy-icon')){const u=c.parentElement,f=u.parentElement,d=u.nextElementSibling;d&&a(f,d,u)}}),de(()=>n.value.path,()=>{(!r.value||Xs)&&o()})})};var Vv=bt({setup:()=>{Hv()}});const gl=()=>{const e=document.documentElement;return e.classList.contains("dark")||e.getAttribute("data-theme")==="dark"},Nv=(e,t)=>t==="json"?JSON.parse(e):new Function(`let config,__chart_js_config__; + */const ve={settings:{minimum:.08,easing:"ease",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,barSelector:'[role="bar"]',parent:"body",template:'
'},status:null,set:e=>{const t=ve.isStarted();e=no(e,ve.settings.minimum,1),ve.status=e===1?null:e;const n=ve.render(!t),r=n.querySelector(ve.settings.barSelector),l=ve.settings.speed,o=ve.settings.easing;return n.offsetWidth,mv(a=>{Xr(r,{transform:"translate3d("+Ks(e)+"%,0,0)",transition:"all "+l+"ms "+o}),e===1?(Xr(n,{transition:"none",opacity:"1"}),n.offsetWidth,setTimeout(function(){Xr(n,{transition:"all "+l+"ms linear",opacity:"0"}),setTimeout(function(){ve.remove(),a()},l)},l)):setTimeout(()=>a(),l)}),ve},isStarted:()=>typeof ve.status=="number",start:()=>{ve.status||ve.set(0);const e=()=>{setTimeout(()=>{ve.status&&(ve.trickle(),e())},ve.settings.trickleSpeed)};return ve.settings.trickle&&e(),ve},done:e=>!e&&!ve.status?ve:ve.inc(.3+.5*Math.random()).set(1),inc:e=>{let t=ve.status;return t?(typeof e!="number"&&(e=(1-t)*no(Math.random()*t,.1,.95)),t=no(t+e,0,.994),ve.set(t)):ve.start()},trickle:()=>ve.inc(Math.random()*ve.settings.trickleRate),render:e=>{if(ve.isRendered())return document.getElementById("nprogress");Ys(document.documentElement,"nprogress-busy");const t=document.createElement("div");t.id="nprogress",t.innerHTML=ve.settings.template;const n=t.querySelector(ve.settings.barSelector),r=e?"-100":Ks(ve.status||0),l=document.querySelector(ve.settings.parent);return Xr(n,{transition:"all 0 linear",transform:"translate3d("+r+"%,0,0)"}),l!==document.body&&Ys(l,"nprogress-custom-parent"),l==null||l.appendChild(t),t},remove:()=>{Js(document.documentElement,"nprogress-busy"),Js(document.querySelector(ve.settings.parent),"nprogress-custom-parent");const e=document.getElementById("nprogress");e&&gv(e)},isRendered:()=>!!document.getElementById("nprogress")},no=(e,t,n)=>en?n:e,Ks=e=>(-1+e)*100,mv=function(){const e=[];function t(){const n=e.shift();n&&n(t)}return function(n){e.push(n),e.length===1&&t()}}(),Xr=function(){const e=["Webkit","O","Moz","ms"],t={};function n(a){return a.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(i,c){return c.toUpperCase()})}function r(a){const i=document.body.style;if(a in i)return a;let c=e.length;const u=a.charAt(0).toUpperCase()+a.slice(1);let f;for(;c--;)if(f=e[c]+u,f in i)return f;return a}function l(a){return a=n(a),t[a]??(t[a]=r(a))}function o(a,i,c){i=l(i),a.style[i]=c}return function(a,i){for(const c in i){const u=i[c];u!==void 0&&Object.prototype.hasOwnProperty.call(i,c)&&o(a,c,u)}}}(),bu=(e,t)=>(typeof e=="string"?e:ga(e)).indexOf(" "+t+" ")>=0,Ys=(e,t)=>{const n=ga(e),r=n+t;bu(n,t)||(e.className=r.substring(1))},Js=(e,t)=>{const n=ga(e);if(!bu(e,t))return;const r=n.replace(" "+t+" "," ");e.className=r.substring(1,r.length-1)},ga=e=>(" "+(e.className||"")+" ").replace(/\s+/gi," "),gv=e=>{e&&e.parentNode&&e.parentNode.removeChild(e)},yv=()=>{me(()=>{const e=je(),t=new Set;t.add(e.currentRoute.value.path),e.beforeEach(n=>{t.has(n.path)||ve.start()}),e.afterEach(n=>{t.add(n.path),ve.done()})})},bv=bt({setup(){yv()}}),_v=JSON.parse('{"encrypt":{},"author":{"name":"HalfSweet","url":"https://github.com/HalfSweet"},"logo":"/img/Headshot.jpg","repo":"HalfSweet/Blog","docsDir":"src","footer":"今天咕咕被欺负了吗","displayFooter":true,"blog":{"description":"Try to create some value","intro":"/Catalogue/02.about.html","medias":{"Email":"mailto:HalfSweet@HalfSweet.cn","GitHub":"https://github.com/HalfSweet","Twitter":"https://twitter.com/_HalfSweet"}},"navbarLayout":{"start":["Brand"],"center":["Links"],"end":["Language","Repo","Outlook","Search"]},"locales":{"/":{"lang":"zh-CN","navbarLocales":{"langName":"简体中文","selectLangAriaLabel":"选择语言"},"metaLocales":{"author":"作者","date":"写作日期","origin":"原创","views":"访问量","category":"分类","tag":"标签","readingTime":"阅读时间","words":"字数","toc":"此页内容","prev":"上一页","next":"下一页","lastUpdated":"上次编辑于","contributors":"贡献者","editLink":"在 GitHub 上编辑此页","print":"打印"},"blogLocales":{"article":"文章","articleList":"文章列表","category":"分类","tag":"标签","timeline":"时间轴","timelineTitle":"昨日不在","all":"全部","intro":"个人介绍","star":"收藏","empty":"$text 为空"},"paginationLocales":{"prev":"上一页","next":"下一页","navigate":"跳转到","action":"前往","errorText":"请输入 1 到 $page 之前的页码!"},"outlookLocales":{"themeColor":"主题色","darkmode":"外观","fullscreen":"全屏"},"routeLocales":{"skipToContent":"跳至主要內容","notFoundTitle":"页面不存在","notFoundMsg":["这里什么也没有","我们是怎么来到这儿的?","这 是 四 零 四 !","看起来你访问了一个失效的链接"],"back":"返回上一页","home":"带我回家","openInNewWindow":"Open in new window"},"navbar":["/",{"text":"文章","link":"/posts/","icon":"app"},{"text":"关于","icon":"user","link":"/Catalogue/about.html"},{"text":"友链","icon":"link","link":"/Catalogue/friends.html"}],"sidebar":{"/":["",{"text":"文章","icon":"book","prefix":"posts/","children":"structure"}]}}}}'),Ev=U(_v),_u=()=>Ev,Eu=Symbol(""),wv=()=>{const e=se(Eu);if(!e)throw new Error("useThemeLocaleData() is called without provider.");return e},Av=(e,t)=>{const{locales:n,...r}=e;return{...r,...n==null?void 0:n[t]}},Cv=bt({enhance({app:e}){const t=_u(),n=e._context.provides[la],r=_(()=>Av(t.value,n.value));e.provide(Eu,r),Object.defineProperties(e.config.globalProperties,{$theme:{get(){return t.value}},$themeLocale:{get(){return r.value}}})}});var Sv={provider:"Giscus",lightTheme:"https://unpkg.com/vuepress-theme-hope@2.0.0-rc.10/templates/giscus/light.css",darkTheme:"https://unpkg.com/vuepress-theme-hope@2.0.0-rc.10/templates/giscus/dark.css",repo:"HalfSweet/Blog",repoId:"R_kgDOIWC9qQ",category:"comment",categoryId:"DIC_kwDOIWC9qc4CYtVz",mapping:"pathname",lazyLoading:!1};const Tv=Sv;let kv=Tv;const wu=Symbol(""),Au=()=>se(wu),Lv=Au,xv=e=>{e.provide(wu,kv)},Qs=["ar","ca","de","en","eo","es","fa","fr","he","id","it","ja","ko","nl","pl","pt","ro","ru","th","tr","uk","vi","zh-CN","zh-TW"];var Iv=O({name:"GiscusComment",props:{identifier:{type:String,required:!0},darkmode:Boolean},setup(e){const t=Lv(),n=!!(t.repo&&t.repoId&&t.category&&t.categoryId),{repo:r,repoId:l,category:o,categoryId:a}=t,i=U(!1),c=_(()=>{const f=ra().value;if(Qs.includes(f))return f;const d=f.split("-")[0];return Qs.includes(d)?d:"en"}),u=_(()=>({repo:r,repoId:l,category:o,categoryId:a,lang:c.value,theme:e.darkmode?t.darkTheme||"dark":t.lightTheme||"light",mapping:t.mapping||"pathname",term:e.identifier,inputPosition:t.inputPosition||"top",reactionsEnabled:t.reactionsEnabled===!1?"0":"1",strict:t.strict===!1?"0":"1",loading:t.lazyLoading===!1?"eager":"lazy",emitMetadata:"0"}));return me(async()=>{await k(()=>import("./giscus-7BMGhbDA.js"),__vite__mapDeps([])),i.value=!0}),()=>n?s("div",{id:"comment",class:["giscus-wrapper",{"input-top":t.inputPosition!=="bottom"}]},i.value?s("giscus-widget",u.value):s(Ft)):null}}),Bv=O({name:"CommentService",props:{darkmode:Boolean},setup(e){const t=Au(),n=ie(),r=be(),l=t.comment!==!1,o=_(()=>r.value.comment||l&&r.value.comment!==!1);return()=>s(Iv,{identifier:r.value.commentID||n.value.path,darkmode:e.darkmode,style:{display:o.value?"block":"none"}})}}),Pv=bt({enhance:({app:e})=>{xv(e),e.component("CommentService",Bv)}}),Ov={"/":{copy:"复制代码",copied:"已复制",hint:"复制成功"}},Rv=['.theme-hope-content div[class*="language-"] pre'];const $v=800,Mv=2e3,Dv=Ov,Fv=Rv,Xs=!1,ro=new Map,Hv=()=>{const{copy:e}=F2({legacy:!0}),t=Ir(Dv),n=ie(),r=b2(),l=i=>{if(!i.hasAttribute("copy-code-registered")){const c=document.createElement("button");c.type="button",c.classList.add("copy-code-button"),c.innerHTML='
',c.setAttribute("aria-label",t.value.copy),c.setAttribute("data-copied",t.value.copied),i.parentElement&&i.parentElement.insertBefore(c,i),i.setAttribute("copy-code-registered","")}},o=()=>hn().then(()=>new Promise(i=>{setTimeout(()=>{Fv.forEach(c=>{document.querySelectorAll(c).forEach(l)}),i()},$v)})),a=(i,c,u)=>{let{innerText:f=""}=c;/language-(shellscript|shell|bash|sh|zsh)/.test(i.classList.toString())&&(f=f.replace(/^ *(\$|>) /gm,"")),e(f).then(()=>{u.classList.add("copied"),clearTimeout(ro.get(u));const d=setTimeout(()=>{u.classList.remove("copied"),u.blur(),ro.delete(u)},Mv);ro.set(u,d)})};me(()=>{(!r.value||Xs)&&o(),Be("click",i=>{const c=i.target;if(c.matches('div[class*="language-"] > button.copy')){const u=c.parentElement,f=c.nextElementSibling;f&&a(u,f,c)}else if(c.matches('div[class*="language-"] div.copy-icon')){const u=c.parentElement,f=u.parentElement,d=u.nextElementSibling;d&&a(f,d,u)}}),de(()=>n.value.path,()=>{(!r.value||Xs)&&o()})})};var Vv=bt({setup:()=>{Hv()}});const gl=()=>{const e=document.documentElement;return e.classList.contains("dark")||e.getAttribute("data-theme")==="dark"},Nv=(e,t)=>t==="json"?JSON.parse(e):new Function(`let config,__chart_js_config__; { ${e} __chart_js_config__=config; } -return __chart_js_config__;`)();var zv=O({name:"ChartJS",props:{config:{type:String,required:!0},id:{type:String,required:!0},title:{type:String,default:""},type:{type:String,default:"json"}},setup(e){const t=Ce(),n=Ce(),r=U(!1),l=U(!0),o=_(()=>Zt(e.config));let a=!1,i;const c=async u=>{const[{default:f}]=await Promise.all([k(()=>import("./auto-BwZvv_Gp.js"),__vite__mapDeps([])),a?Promise.resolve():(a=!0,new Promise(v=>setTimeout(v,800)))]);f.defaults.borderColor=u?"#ccc":"#36A2EB",f.defaults.color=u?"#fff":"#000",f.defaults.maintainAspectRatio=!1;const d=Nv(o.value,e.type),p=n.value.getContext("2d");i==null||i.destroy(),i=new f(p,d),l.value=!1};return me(()=>{r.value=gl(),du(document.documentElement,()=>{r.value=gl()},{attributeFilter:["class","data-theme"],attributes:!0}),de(r,u=>c(u),{immediate:!0})}),()=>[e.title?s("div",{class:"chartjs-title"},decodeURIComponent(e.title)):null,l.value?s(Ft,{class:"chartjs-loading",height:192}):null,s("div",{ref:t,class:"chartjs-wrapper",id:e.id,style:{display:l.value?"none":"block"}},s("canvas",{ref:n,height:400}))]}});const Zr=ha("VUEPRESS_CODE_TAB_STORE",{});var jv=O({name:"CodeTabs",props:{active:{type:Number,default:0},data:{type:Array,required:!0},id:{type:String,required:!0},tabId:{type:String,default:""}},slots:Object,setup(e,{slots:t}){const n=U(e.active),r=Ce([]),l=()=>{e.tabId&&(Zr.value[e.tabId]=e.data[n.value].id)},o=(u=n.value)=>{n.value=u{n.value=u>0?u-1:r.value.length-1,r.value[n.value].focus()},i=(u,f)=>{u.key===" "||u.key==="Enter"?(u.preventDefault(),n.value=f):u.key==="ArrowRight"?(u.preventDefault(),o()):u.key==="ArrowLeft"&&(u.preventDefault(),a()),e.tabId&&(Zr.value[e.tabId]=e.data[n.value].id)},c=()=>{if(e.tabId){const u=e.data.findIndex(({id:f})=>Zr.value[e.tabId]===f);if(u!==-1)return u}return e.active};return me(()=>{n.value=c(),de(()=>Zr.value[e.tabId],(u,f)=>{if(e.tabId&&u!==f){const d=e.data.findIndex(({id:p})=>p===u);d!==-1&&(n.value=d)}})}),()=>e.data.length?s("div",{class:"vp-code-tabs"},[s("div",{class:"vp-code-tabs-nav",role:"tablist"},e.data.map(({id:u},f)=>{const d=f===n.value;return s("button",{type:"button",ref:p=>{p&&(r.value[f]=p)},class:["vp-code-tab-nav",{active:d}],role:"tab","aria-controls":`codetab-${e.id}-${f}`,"aria-selected":d,onClick:()=>{n.value=f,l()},onKeydown:p=>i(p,f)},t[`title${f}`]({value:u,isActive:d}))})),e.data.map(({id:u},f)=>{const d=f===n.value;return s("div",{class:["vp-code-tab",{active:d}],id:`codetab-${e.id}-${f}`,role:"tabpanel","aria-expanded":d},[s("div",{class:"vp-code-tab-title"},t[`title${f}`]({value:u,isActive:d})),t[`tab${f}`]({value:u,isActive:d})])})]):null}});const Cu=({active:e=!1},{slots:t})=>{var n;return s("div",{class:["code-group-item",{active:e}],"aria-selected":e},(n=t.default)==null?void 0:n.call(t))};Cu.displayName="CodeGroupItem";const Uv=O({name:"CodeGroup",slots:Object,setup(e,{slots:t}){const n=U(-1),r=Ce([]),l=(i=n.value)=>{n.value=i{n.value=i>0?i-1:r.value.length-1,r.value[n.value].focus()},a=(i,c)=>{i.key===" "||i.key==="Enter"?(i.preventDefault(),n.value=c):i.key==="ArrowRight"?(i.preventDefault(),l(c)):i.key==="ArrowLeft"&&(i.preventDefault(),o(c))};return()=>{var c;const i=(((c=t.default)==null?void 0:c.call(t))||[]).filter(u=>u.type.name==="CodeGroupItem").map(u=>(u.props===null&&(u.props={}),u));return i.length===0?null:(n.value<0||n.value>i.length-1?(n.value=i.findIndex(u=>"active"in u.props),n.value===-1&&(n.value=0)):i.forEach((u,f)=>{u.props.active=f===n.value}),s("div",{class:"code-group"},[s("div",{class:"code-group-nav"},i.map((u,f)=>{const d=f===n.value;return s("button",{type:"button",ref:p=>{p&&(r.value[f]=p)},class:["code-group-nav-tab",{active:d}],"aria-pressed":d,"aria-expanded":d,onClick:()=>{n.value=f},onKeydown:p=>a(p,f)},u.props.title)})),i]))}}}),qv=()=>s(ce,{name:"back"},()=>s("path",{d:"M1014.749 449.156v125.688H260.626l345.64 345.64-89.239 89.237L19.307 512l497.72-497.721 89.238 89.238-345.64 345.64h754.124z"})),Gv=()=>s(ce,{name:"home"},()=>s("path",{d:"M780.106 420.978L506.994 147.866 233.882 420.978h.045v455.11H780.06v-455.11h.046zm90.977 90.976V876.09a91.022 91.022 0 01-91.023 91.022H233.927a91.022 91.022 0 01-91.022-91.022V511.954l-67.22 67.175-64.307-64.307 431.309-431.31c35.498-35.498 93.115-35.498 128.614 0l431.309 431.31-64.307 64.307L871.083 512z"})),Wv='',Kv='',Yv='';var Jv={useBabel:!1,jsLib:[],cssLib:[],codepenLayout:"left",codepenEditors:"101",babel:"https://unpkg.com/@babel/standalone/babel.min.js",vue:"https://unpkg.com/vue/dist/vue.global.prod.js",react:"https://unpkg.com/react/umd/react.production.min.js",reactDOM:"https://unpkg.com/react-dom/umd/react-dom.production.min.js"};const lo=Jv,Zs={html:{types:["html","slim","haml","md","markdown","vue"],map:{html:"none",vue:"none",md:"markdown"}},js:{types:["js","javascript","coffee","coffeescript","ts","typescript","ls","livescript"],map:{js:"none",javascript:"none",coffee:"coffeescript",ls:"livescript",ts:"typescript"}},css:{types:["css","less","sass","scss","stylus","styl"],map:{css:"none",styl:"stylus"}}},Qv=(e,t,n)=>{const r=document.createElement(e);return xl(t)&&ft(t).forEach(l=>{if(l.indexOf("data"))r[l]=t[l];else{const o=l.replace("data","");r.dataset[o]=t[l]}}),n&&n.forEach(l=>{r.appendChild(l)}),r},ya=e=>({...lo,...e,jsLib:Array.from(new Set([...lo.jsLib||[],...e.jsLib||[]])),cssLib:Array.from(new Set([...lo.cssLib||[],...e.cssLib||[]]))}),$n=(e,t)=>{if(e[t]!==void 0)return e[t];const n=new Promise(r=>{var o;const l=document.createElement("script");l.src=t,(o=document.querySelector("body"))==null||o.appendChild(l),l.onload=()=>{r()}});return e[t]=n,n},Xv=(e,t)=>{if(t.css&&Array.from(e.childNodes).every(n=>n.nodeName!=="STYLE")){const n=Qv("style",{innerHTML:t.css});e.appendChild(n)}},Zv=(e,t,n)=>{const r=n.getScript();if(r&&Array.from(t.childNodes).every(l=>l.nodeName!=="SCRIPT")){const l=document.createElement("script");l.appendChild(document.createTextNode(`{const document=window.document.querySelector('#${e} .vp-code-demo-display').shadowRoot; +return __chart_js_config__;`)();var zv=O({name:"ChartJS",props:{config:{type:String,required:!0},id:{type:String,required:!0},title:{type:String,default:""},type:{type:String,default:"json"}},setup(e){const t=Ce(),n=Ce(),r=U(!1),l=U(!0),o=_(()=>Zt(e.config));let a=!1,i;const c=async u=>{const[{default:f}]=await Promise.all([k(()=>import("./auto-BwZvv_Gp.js"),__vite__mapDeps([])),a?Promise.resolve():(a=!0,new Promise(v=>setTimeout(v,800)))]);f.defaults.borderColor=u?"#ccc":"#36A2EB",f.defaults.color=u?"#fff":"#000",f.defaults.maintainAspectRatio=!1;const d=Nv(o.value,e.type),p=n.value.getContext("2d");i==null||i.destroy(),i=new f(p,d),l.value=!1};return me(()=>{r.value=gl(),du(document.documentElement,()=>{r.value=gl()},{attributeFilter:["class","data-theme"],attributes:!0}),de(r,u=>c(u),{immediate:!0})}),()=>[e.title?s("div",{class:"chartjs-title"},decodeURIComponent(e.title)):null,l.value?s(Ft,{class:"chartjs-loading",height:192}):null,s("div",{ref:t,class:"chartjs-wrapper",id:e.id,style:{display:l.value?"none":"block"}},s("canvas",{ref:n,height:400}))]}});const Zr=ha("VUEPRESS_CODE_TAB_STORE",{});var jv=O({name:"CodeTabs",props:{active:{type:Number,default:0},data:{type:Array,required:!0},id:{type:String,required:!0},tabId:{type:String,default:""}},slots:Object,setup(e,{slots:t}){const n=U(e.active),r=Ce([]),l=()=>{e.tabId&&(Zr.value[e.tabId]=e.data[n.value].id)},o=(u=n.value)=>{n.value=u{n.value=u>0?u-1:r.value.length-1,r.value[n.value].focus()},i=(u,f)=>{u.key===" "||u.key==="Enter"?(u.preventDefault(),n.value=f):u.key==="ArrowRight"?(u.preventDefault(),o()):u.key==="ArrowLeft"&&(u.preventDefault(),a()),e.tabId&&(Zr.value[e.tabId]=e.data[n.value].id)},c=()=>{if(e.tabId){const u=e.data.findIndex(({id:f})=>Zr.value[e.tabId]===f);if(u!==-1)return u}return e.active};return me(()=>{n.value=c(),de(()=>Zr.value[e.tabId],(u,f)=>{if(e.tabId&&u!==f){const d=e.data.findIndex(({id:p})=>p===u);d!==-1&&(n.value=d)}})}),()=>e.data.length?s("div",{class:"vp-code-tabs"},[s("div",{class:"vp-code-tabs-nav",role:"tablist"},e.data.map(({id:u},f)=>{const d=f===n.value;return s("button",{type:"button",ref:p=>{p&&(r.value[f]=p)},class:["vp-code-tab-nav",{active:d}],role:"tab","aria-controls":`codetab-${e.id}-${f}`,"aria-selected":d,onClick:()=>{n.value=f,l()},onKeydown:p=>i(p,f)},t[`title${f}`]({value:u,isActive:d}))})),e.data.map(({id:u},f)=>{const d=f===n.value;return s("div",{class:["vp-code-tab",{active:d}],id:`codetab-${e.id}-${f}`,role:"tabpanel","aria-expanded":d},[s("div",{class:"vp-code-tab-title"},t[`title${f}`]({value:u,isActive:d})),t[`tab${f}`]({value:u,isActive:d})])})]):null}});const Cu=({active:e=!1},{slots:t})=>{var n;return s("div",{class:["code-group-item",{active:e}],"aria-selected":e},(n=t.default)==null?void 0:n.call(t))};Cu.displayName="CodeGroupItem";const Uv=O({name:"CodeGroup",slots:Object,setup(e,{slots:t}){const n=U(-1),r=Ce([]),l=(i=n.value)=>{n.value=i{n.value=i>0?i-1:r.value.length-1,r.value[n.value].focus()},a=(i,c)=>{i.key===" "||i.key==="Enter"?(i.preventDefault(),n.value=c):i.key==="ArrowRight"?(i.preventDefault(),l(c)):i.key==="ArrowLeft"&&(i.preventDefault(),o(c))};return()=>{var c;const i=(((c=t.default)==null?void 0:c.call(t))||[]).filter(u=>u.type.name==="CodeGroupItem").map(u=>(u.props===null&&(u.props={}),u));return i.length===0?null:(n.value<0||n.value>i.length-1?(n.value=i.findIndex(u=>"active"in u.props),n.value===-1&&(n.value=0)):i.forEach((u,f)=>{u.props.active=f===n.value}),s("div",{class:"code-group"},[s("div",{class:"code-group-nav"},i.map((u,f)=>{const d=f===n.value;return s("button",{type:"button",ref:p=>{p&&(r.value[f]=p)},class:["code-group-nav-tab",{active:d}],"aria-pressed":d,"aria-expanded":d,onClick:()=>{n.value=f},onKeydown:p=>a(p,f)},u.props.title)})),i]))}}}),qv=()=>s(ce,{name:"back"},()=>s("path",{d:"M1014.749 449.156v125.688H260.626l345.64 345.64-89.239 89.237L19.307 512l497.72-497.721 89.238 89.238-345.64 345.64h754.124z"})),Gv=()=>s(ce,{name:"home"},()=>s("path",{d:"M780.106 420.978L506.994 147.866 233.882 420.978h.045v455.11H780.06v-455.11h.046zm90.977 90.976V876.09a91.022 91.022 0 01-91.023 91.022H233.927a91.022 91.022 0 01-91.022-91.022V511.954l-67.22 67.175-64.307-64.307 431.309-431.31c35.498-35.498 93.115-35.498 128.614 0l431.309 431.31-64.307 64.307L871.083 512z"})),Wv='',Kv='',Yv='';var Jv={useBabel:!1,jsLib:[],cssLib:[],codepenLayout:"left",codepenEditors:"101",babel:"https://unpkg.com/@babel/standalone/babel.min.js",vue:"https://unpkg.com/vue/dist/vue.global.prod.js",react:"https://unpkg.com/react/umd/react.production.min.js",reactDOM:"https://unpkg.com/react-dom/umd/react-dom.production.min.js"};const lo=Jv,Zs={html:{types:["html","slim","haml","md","markdown","vue"],map:{html:"none",vue:"none",md:"markdown"}},js:{types:["js","javascript","coffee","coffeescript","ts","typescript","ls","livescript"],map:{js:"none",javascript:"none",coffee:"coffeescript",ls:"livescript",ts:"typescript"}},css:{types:["css","less","sass","scss","stylus","styl"],map:{css:"none",styl:"stylus"}}},Qv=(e,t,n)=>{const r=document.createElement(e);return Ll(t)&&ft(t).forEach(l=>{if(l.indexOf("data"))r[l]=t[l];else{const o=l.replace("data","");r.dataset[o]=t[l]}}),n&&n.forEach(l=>{r.appendChild(l)}),r},ya=e=>({...lo,...e,jsLib:Array.from(new Set([...lo.jsLib||[],...e.jsLib||[]])),cssLib:Array.from(new Set([...lo.cssLib||[],...e.cssLib||[]]))}),Rn=(e,t)=>{if(e[t]!==void 0)return e[t];const n=new Promise(r=>{var o;const l=document.createElement("script");l.src=t,(o=document.querySelector("body"))==null||o.appendChild(l),l.onload=()=>{r()}});return e[t]=n,n},Xv=(e,t)=>{if(t.css&&Array.from(e.childNodes).every(n=>n.nodeName!=="STYLE")){const n=Qv("style",{innerHTML:t.css});e.appendChild(n)}},Zv=(e,t,n)=>{const r=n.getScript();if(r&&Array.from(t.childNodes).every(l=>l.nodeName!=="SCRIPT")){const l=document.createElement("script");l.appendChild(document.createTextNode(`{const document=window.document.querySelector('#${e} .vp-code-demo-display').shadowRoot; ${r}}`)),t.appendChild(l)}},e4=e=>{const t=ft(e),n={html:[],js:[],css:[],isLegal:!1};return["html","js","css"].forEach(r=>{const l=t.filter(o=>Zs[r].types.includes(o));if(l.length){const o=l[0];n[r]=[e[o].replace(/^\n|\n$/g,""),Zs[r].map[o]||o]}}),n.isLegal=(!n.html.length||n.html[1]==="none")&&(!n.js.length||n.js[1]==="none")&&(!n.css.length||n.css[1]==="none"),n},Su=e=>e.replace(/
/g,"
").replace(/<((\S+)[^<]*?)\s+\/>/g,"<$1>"),Tu=e=>`
${Su(e)}
`,t4=e=>`${e.replace("export default ","const $reactApp = ").replace(/App\.__style__(\s*)=(\s*)`([\s\S]*)?`/,"")}; -ReactDOM.createRoot(document.getElementById("app")).render(React.createElement($reactApp))`,n4=e=>e.replace(/export\s+default\s*\{(\n*[\s\S]*)\n*\}\s*;?$/u,"Vue.createApp({$1}).mount('#app')").replace(/export\s+default\s*define(Async)?Component\s*\(\s*\{(\n*[\s\S]*)\n*\}\s*\)\s*;?$/u,"Vue.createApp({$1}).mount('#app')").trim(),ku=e=>`(function(exports){var module={};module.exports=exports;${e};return module.exports.__esModule?module.exports.default:module.exports;})({})`,r4=(e,t)=>{const n=ya(t),r=e.js[0]||"";return{...n,html:Su(e.html[0]||""),js:r,css:e.css[0]||"",isLegal:e.isLegal,getScript:()=>{var l;return n.useBabel?((l=window.Babel.transform(r,{presets:["es2015"]}))==null?void 0:l.code)||"":r}}},l4=/