regor 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,6 +6,8 @@ Regor is a powerful UI framework designed to streamline the development of HTML5
6
6
 
7
7
  ### [![Published on npm](https://img.shields.io/npm/v/regor.svg)](https://www.npmjs.com/package/regor)
8
8
 
9
+ [**`Try Regor Online`**](https://stackblitz.com/edit/regor-sample-1?file=index.ts)
10
+
9
11
  ## Key Features
10
12
 
11
13
  - **Simplicity:** Develop UIs without a Virtual DOM for a more straightforward implementation and easier debugging.
@@ -116,28 +118,28 @@ Regor provides a set of directives that allow you to enhance the behavior and ap
116
118
 
117
119
  > **Note:** The directive prefix "r-" can be customized using `RegorConfig.getDefault().setDirectives('v-')` to align with a different naming convention, such as Vue's "v-" prefix.
118
120
 
119
- - **r-bind:** Binds an element's attribute to a component's data, allowing dynamic updates.
120
- - **r-model:** Enables two-way data binding between form inputs.
121
- - **r-text:** Sets the element's text content to the result of an expression.
122
- - **r-html:** Renders the result of an expression as HTML content within the element.
123
- - **r-on:** Attaches event listeners to the element and invokes specified component methods.
124
- - **r-show:** Conditionally displays the element based on the truthiness of an expression.
125
- - **r-for:** Renders a set of elements based on an array and a template.
126
- - **r-if:** Conditionally renders the element based on the truthiness of an expression.
127
- - **r-else:** Provides an alternative rendering when used in conjunction with r-if.
128
- - **r-else-if:** Conditionally renders the element as an alternative to r-if.
129
- - **r-pre:** Excludes HTML element from Regor bindings.
130
- - **:class:** Binds one or more class names to an element based on expressions.
131
- - **:style:** Binds one or more inline styles to an element based on expressions.
132
- - **:ref:** Provides a reference to an element in the template, allowing you to interact with it programmatically.
133
- - **:key:** Provides a unique identifier for each item in a list, aiding efficient updates and rendering.
134
- - **:is:** Specifies the component to dynamically render based on a value or expression.
135
- - **r-teleport:** Teleports the element to anywhere in the DOM. Unlike Vue, teleport is a directive to avoid component overhead.
136
- - **:props:** Vue uses v-bind for component property passing. However, this can conflict with v-bind's attribute fall-through logic. Hence, Regor defines a dedicated directive to pass properties using object syntax. It enables passing properties without defining them in the component's props contract.
137
- - **:props-once:** Similar to :props but it doesn't observe entire reactive tree of the template expression. Tail reactivity still works.
138
- - **@** Shorthand for `r-on` to bind event listeners.
139
- - **:** Shorthand for `r-bind` to bind element attributes.
140
- - **.** Shorthand for `r-bind.prop` to set properties.
121
+ - **`r-bind`** Binds an element's attribute to a component's data, allowing dynamic updates.
122
+ - **`r-model`** Enables two-way data binding between form inputs.
123
+ - **`r-text`** Sets the element's text content to the result of an expression.
124
+ - **`r-html`** Renders the result of an expression as HTML content within the element.
125
+ - **`r-on`** Attaches event listeners to the element and invokes specified component methods.
126
+ - **`r-show`** Conditionally displays the element based on the truthiness of an expression.
127
+ - **`r-for`** Renders a set of elements based on an array and a template.
128
+ - **`r-if`** Conditionally renders the element based on the truthiness of an expression.
129
+ - **`r-else`** Provides an alternative rendering when used in conjunction with r-if.
130
+ - **`r-else-if`** Conditionally renders the element as an alternative to r-if.
131
+ - **`r-pre`** Excludes HTML element from Regor bindings.
132
+ - **`:class`** Binds one or more class names to an element based on expressions.
133
+ - **`:style`** Binds one or more inline styles to an element based on expressions.
134
+ - **`:ref`** Provides a reference to an element in the template, allowing you to interact with it programmatically.
135
+ - **`:key`** Provides a unique identifier for each item in a list, aiding efficient updates and rendering.
136
+ - **`:is`** Specifies the component to dynamically render based on a value or expression.
137
+ - **`r-teleport`** Teleports the element to anywhere in the DOM. Unlike Vue, teleport is a directive to avoid component overhead.
138
+ - **`:props`** Vue uses v-bind for component property passing. However, this can conflict with v-bind's attribute fall-through logic. Hence, Regor defines a dedicated directive to pass properties using object syntax. It enables passing properties without defining them in the component's props contract.
139
+ - **`:props-once`** Similar to :props but it doesn't observe entire reactive tree of the template expression. Tail reactivity still works.
140
+ - **`@`** Shorthand for `r-on` to bind event listeners.
141
+ - **`:`** Shorthand for `r-bind` to bind element attributes.
142
+ - **`.`** Shorthand for `r-bind.prop` to set properties.
141
143
 
142
144
  These directives empower you to create dynamic and interactive user interfaces, enhancing the user experience of your Regor-powered applications.
143
145
 
@@ -198,7 +200,7 @@ These directives empower you to create dynamic and interactive user interfaces,
198
200
 
199
201
  **Composition Functions**
200
202
 
201
- - **useScope:** In a scope, you can use `onMounted` and `onUnmounted` functions. Components are always created in scope. Use the useScope for apps created by createApp. Similar to Vue's `effectScope`, useScope provides efficient cleanup of watchEffects, computed refs and enables the `onMounted` and `onUnmounted` usage.
203
+ - **useScope:** In a scope, you can use `onMounted` and `onUnmounted` functions. Components are always created in scope. Use the useScope for apps created by createApp. Similar to Vue's `effectScope`, useScope provides efficient cleanup of watchEffects, computed refs, observers and enables the `onMounted` and `onUnmounted` calls in the scope.
202
204
  - **onMounted:** Similar to Vue's `onMounted`, it executes when the component is mounted.
203
205
  - **onUnmounted:** Similar to Vue's `onUnmounted`, it executes when the component is unmounted.
204
206
 
@@ -3981,6 +3981,14 @@ var resume = (source) => {
3981
3981
  };
3982
3982
 
3983
3983
  // src/directives/model.ts
3984
+ var modelDirective = {
3985
+ onChange: (el, values) => {
3986
+ updateDomElementValue(el, values[0]);
3987
+ },
3988
+ onBind: (el, parseResult, _expr, _option, _dynamicOption, flags) => {
3989
+ return attachDOMChangeListener(el, parseResult, flags);
3990
+ }
3991
+ };
3984
3992
  var updateDomElementValue = (el, value) => {
3985
3993
  const isAnInput = isInput(el);
3986
3994
  if (isAnInput && isCheckBox(el)) {
@@ -4063,9 +4071,16 @@ var isNumberInput = (el) => el.type === "number" || el.type === "range";
4063
4071
  var isInput = (el) => el.tagName === "INPUT";
4064
4072
  var isTextArea = (el) => el.tagName === "TEXTAREA";
4065
4073
  var isSelect = (el) => el.tagName === "SELECT";
4066
- var attachDOMChangeListener = (el, parseResult) => {
4074
+ var attachDOMChangeListener = (el, parseResult, directiveFlags) => {
4067
4075
  const parsedValue = parseResult.value;
4068
- const flags = getFlags(parsedValue()[1]);
4076
+ const f1 = getFlags(directiveFlags == null ? void 0 : directiveFlags.join(","));
4077
+ const f2 = getFlags(parsedValue()[1]);
4078
+ const flags = {
4079
+ int: f1.int || f1.int,
4080
+ lazy: f1.lazy || f2.lazy,
4081
+ number: f1.number || f2.number,
4082
+ trim: f1.trim || f2.trim
4083
+ };
4069
4084
  const modelRef = parseResult.refs[0];
4070
4085
  if (!modelRef) {
4071
4086
  warning(8 /* ModelRequiresRef */, el);
@@ -4087,22 +4102,13 @@ var attachDOMChangeListener = (el, parseResult) => {
4087
4102
  };
4088
4103
  }
4089
4104
  };
4090
- var modelDirective = {
4091
- onChange: (el, values) => {
4092
- updateDomElementValue(el, values[0]);
4093
- },
4094
- onBind: (el, parseResult) => {
4095
- return attachDOMChangeListener(el, parseResult);
4096
- }
4097
- };
4098
4105
  var decimalSeparators = /[.,' ·٫]/;
4099
4106
  var handleInputAndTextArea = (el, flags, modelRef, parsedValue) => {
4100
4107
  const isLazy = flags.lazy;
4101
4108
  const eventType = isLazy ? "change" : "input";
4102
4109
  const isNumber = isNumberInput(el);
4103
4110
  const trimmer = () => {
4104
- const flags2 = getFlags(parsedValue()[1]);
4105
- if (!flags2.trim)
4111
+ if (!flags.trim && !getFlags(parsedValue()[1]))
4106
4112
  return;
4107
4113
  el.value = el.value.trim();
4108
4114
  };
@@ -1,3 +1,3 @@
1
- "use strict";var it=Object.defineProperty,to=Object.defineProperties,no=Object.getOwnPropertyDescriptor,ro=Object.getOwnPropertyDescriptors,oo=Object.getOwnPropertyNames,On=Object.getOwnPropertySymbols;var An=Object.prototype.hasOwnProperty,so=Object.prototype.propertyIsEnumerable;var at=Math.pow,Gt=(t,e,n)=>e in t?it(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,ct=(t,e)=>{for(var n in e||(e={}))An.call(e,n)&&Gt(t,n,e[n]);if(On)for(var n of On(e))so.call(e,n)&&Gt(t,n,e[n]);return t},Nn=(t,e)=>to(t,ro(e));var io=(t,e)=>{for(var n in e)it(t,n,{get:e[n],enumerable:!0})},ao=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of oo(e))!An.call(t,o)&&o!==n&&it(t,o,{get:()=>e[o],enumerable:!(r=no(e,o))||r.enumerable});return t};var co=t=>ao(it({},"__esModule",{value:!0}),t);var m=(t,e,n)=>(Gt(t,typeof e!="symbol"?e+"":e,n),n);var vs={};io(vs,{ComponentHead:()=>$e,RegorConfig:()=>ie,addUnbinder:()=>D,batch:()=>Zr,collectRefs:()=>bt,computeMany:()=>Kr,computeRef:()=>Wr,computed:()=>zr,createApp:()=>Fr,createComponent:()=>qr,endBatch:()=>wn,entangle:()=>wt,flatten:()=>Q,getBindData:()=>ye,html:()=>vn,isDeepRef:()=>Le,isRaw:()=>je,isRef:()=>y,markRaw:()=>Gr,observe:()=>S,observeMany:()=>Xr,observerCount:()=>Yr,onMounted:()=>eo,onUnmounted:()=>G,pause:()=>$t,persist:()=>Jr,raw:()=>Qr,ref:()=>Re,removeNode:()=>j,resume:()=>Ft,silence:()=>gt,sref:()=>z,startBatch:()=>Sn,toFragment:()=>ke,toJsonTemplate:()=>Ge,trigger:()=>F,unbind:()=>oe,unref:()=>P,useScope:()=>St,warningHandler:()=>Xe,watchEffect:()=>Ae});module.exports=co(vs);var H=t=>typeof t=="function",W=t=>typeof t=="string",Mn=t=>typeof t=="undefined",te=t=>t==null||typeof t=="undefined",$=t=>typeof t!="string"||!(t!=null&&t.trim()),po=Object.prototype.toString,Jt=t=>po.call(t),he=t=>Jt(t)==="[object Map]",Z=t=>Jt(t)==="[object Set]",Qt=t=>Jt(t)==="[object Date]",Qe=t=>typeof t=="symbol",E=Array.isArray,N=t=>t!==null&&typeof t=="object";var Ln={0:"App root element is missing",1:t=>`${t} component template cannot be found.`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly.",5:"ref is readonly."},_=(t,...e)=>{let n=Ln[t];return new Error(H(n)?n.call(Ln,...e):n)};var De=Symbol(":regor");var ye=t=>{let e=t[De];if(e)return e;let n={unbinders:[],data:{}};return t[De]=n,n};var D=(t,e)=>{ye(t).unbinders.push(e)};var pt=[],kn=()=>{let t={onMounted:[],onUnmounted:[]};return pt.push(t),t},we=t=>{let e=pt[pt.length-1];if(!e&&!t)throw _(2);return e},In=t=>{let e=we();return t&&Yt(t),pt.pop(),e},Xt=Symbol("csp"),Yt=t=>{let e=t,n=e[Xt];if(n){let r=we();if(n===r)return;r.onMounted.length>0&&n.onMounted.push(...r.onMounted),r.onUnmounted.length>0&&n.onUnmounted.push(...r.onUnmounted);return}e[Xt]=we()},ft=t=>t[Xt];var G=(t,e)=>{var n;(n=we(e))==null||n.onUnmounted.push(t)};var lt=Symbol("ref"),J=Symbol("sref"),mt=Symbol("raw");var y=t=>(t==null?void 0:t[J])===1;var S=(t,e,n)=>{if(!y(t))throw _(3,"observe");n&&e(t());let o=t(void 0,void 0,0,e);return G(o,!0),o};var oe=t=>{let e=[t];for(;e.length>0;){let n=e.shift();fo(n);let r=n.childNodes;if(r)for(let o of r)e.push(o)}},fo=t=>{let e=t[De];if(e){for(let n of e.unbinders)n();e.unbinders.splice(0),delete t[De]}};var j=t=>{t.remove(),setTimeout(()=>oe(t),1)};var Dn={8:t=>`Model binding requires a ref at ${t.outerHTML}`,7:t=>`Model binding is not supported on ${t.tagName} element at ${t.outerHTML}`,0:(t,e)=>`${t} binding expression is missing at ${e.outerHTML}`,1:(t,e,n)=>`invalid ${t} expression: ${e} at ${n.outerHTML}`,2:(t,e)=>`${t} requires object expression at ${e.outerHTML}`,3:(t,e)=>`${t} binder: key is empty on ${e.outerHTML}.`,4:(t,e,n,r)=>({msg:`Failed setting prop "${t}" on <${e.toLowerCase()}>: value ${n} is invalid.`,args:[r]}),5:(t,e)=>`${t} binding missing event type at ${e.outerHTML}`,6:(t,e)=>({msg:t,args:[e]})},U=(t,...e)=>{let n=Dn[t],r=H(n)?n.call(Dn,...e):n,o=Xe.warning;o&&(W(r)?o(r):o(r,...r.args))},Xe={warning:console.warn};var dt={},ut={},Un=1,Hn=t=>{let e=(Un++).toString();return dt[e]=t,ut[e]=0,e},Zt=t=>{ut[t]+=1},en=t=>{--ut[t]===0&&(delete dt[t],delete ut[t])},_n=t=>dt[t],tn=()=>Un!==1&&Object.keys(dt).length>0,Ye="r-switch",lo=t=>{let e=t.filter(r=>Oe(r)).map(r=>[...r.querySelectorAll("[r-switch]")].map(o=>o.getAttribute(Ye))),n=new Set;return e.forEach(r=>{r.forEach(o=>o&&n.add(o))}),[...n]},Ue=(t,e)=>{if(!tn())return;let n=lo(e);n.length!==0&&(n.forEach(Zt),D(t,()=>{n.forEach(en)}))};var nn=(t,e,n,r)=>{let o=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,r),o.push(i)}be(e,o)},rn=Symbol("r-if"),Bn=Symbol("r-else"),Pn=t=>t[Bn]===1,ht=class{constructor(e){m(this,"p");m(this,"P");m(this,"q");m(this,"K");m(this,"z");m(this,"b");m(this,"T");this.p=e,this.P=e.o.f.if,this.q=Be(e.o.f.if),this.K=e.o.f.else,this.z=e.o.f.elseif,this.b=e.o.f.for,this.T=e.o.f.pre}$e(e,n){let r=e.parentElement;for(;r!==null&&r!==document.documentElement;){if(r.hasAttribute(n))return!0;r=r.parentElement}return!1}N(e){let n=e.hasAttribute(this.P),r=ge(e,this.q);for(let o of r)this.x(o);return n}W(e){return e[rn]?!0:(e[rn]=!0,ge(e,this.q).forEach(n=>n[rn]=!0),!1)}x(e){if(e.hasAttribute(this.T)||this.W(e)||this.$e(e,this.b))return;let n=e.getAttribute(this.P);if(!n){U(0,this.P,e);return}e.removeAttribute(this.P),this.k(e,n)}B(e,n,r){let o=_e(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${r!=null?r:""}`);s.insertBefore(i,e),Ue(i,o),o.forEach(c=>{j(c)}),e.remove(),n!=="if"&&(e[Bn]=1);let a=document.createComment(`__end__ :${n}${r!=null?r:""}`);return s.insertBefore(a,i.nextSibling),{nodes:o,parent:s,commentBegin:i,commentEnd:a}}pe(e,n){if(!e)return[];let r=e.nextElementSibling;if(e.hasAttribute(this.K)){e.removeAttribute(this.K);let{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"else");return[{mount:()=>{nn(o,this.p,s,a)},unmount:()=>{pe(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let o=e.getAttribute(this.z);if(!o)return[];e.removeAttribute(this.z);let{nodes:s,parent:i,commentBegin:a,commentEnd:c}=this.B(e,"elseif",` => ${o} `),p=this.p.h.C(o),f=p.value,l=this.pe(r,n),u=[];D(a,()=>{p.stop();for(let C of u)C();u.length=0});let d=S(f,n);return u.push(d),[{mount:()=>{nn(s,this.p,i,c)},unmount:()=>{pe(a,c)},isTrue:()=>!!f()[0],isMounted:!1}].concat(l)}}k(e,n){let r=e.nextElementSibling,{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"if",` => ${n} `),c=this.p.h.C(n),p=c.value,f=!1,l=this.p.h,u=l.V(),h=()=>{l.v(u,()=>{if(p()[0])f||(nn(o,this.p,s,a),f=!0),d.forEach(b=>{b.unmount(),b.isMounted=!1});else{pe(i,a),f=!1;let b=!1;for(let L of d)!b&&L.isTrue()?(L.isMounted||(L.mount(),L.isMounted=!0),b=!0):(L.unmount(),L.isMounted=!1)}})},d=this.pe(r,h),C=[];D(i,()=>{c.stop();for(let b of C)b();C.length=0}),h();let x=S(p,h);C.push(x)}};var _e=t=>{let e=se(t)?t.content.childNodes:[t];return Array.from(e).filter(n=>{let r=n==null?void 0:n.tagName;return r!=="SCRIPT"&&r!=="STYLE"})},be=(t,e)=>{for(let n of e)!Pn(n)&&t.G(n)},ge=(t,e)=>{var r;let n=t.querySelectorAll(e);return(r=t.matches)!=null&&r.call(t,e)?[t,...n]:n},se=t=>t instanceof HTMLTemplateElement,Oe=t=>t.nodeType===Node.ELEMENT_NODE,Ze=t=>t.nodeType===Node.ELEMENT_NODE,jn=t=>t instanceof HTMLSlotElement,fe=t=>se(t)?t.content.childNodes:t.childNodes,pe=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let r=n.nextSibling;j(n),n=r}},Te=(t,e)=>{Object.defineProperty(t,"value",{get(){return t()},set(n){if(e)throw new Error("value is readonly.");return t(n)},enumerable:!0,configurable:!1})},Vn=(t,e)=>{if(!t)return!1;if(t.startsWith("["))return t.substring(1,t.length-1);let n=e.length;return t.startsWith(e)?t.substring(n,t.length-n):!1},Be=t=>`[${CSS.escape(t)}]`,yt=(t,e)=>(t.startsWith("@")&&(t=e.f.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.f.dynamic)),t),on=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},mo=/-(\w)/g,B=on(t=>t&&t.replace(mo,(e,n)=>n?n.toUpperCase():"")),uo=/\B([A-Z])/g,Pe=on(t=>t&&t.replace(uo,"-$1").toLowerCase()),et=on(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var ne=[],$n=t=>{var e;ne.length!==0&&((e=ne[ne.length-1])==null||e.add(t))},Ae=t=>{if(!t)return()=>{};let e={stop:()=>{}};return ho(t,e),G(()=>e.stop(),!0),e.stop},ho=(t,e)=>{if(!t)return;let n=[],r=!1,o=()=>{for(let s of n)s();n=[],r=!0};e.stop=o;try{let s=new Set;if(ne.push(s),t(i=>n.push(i)),r)return;for(let i of[...s]){let a=S(i,()=>{o(),Ae(t)});n.push(a)}}finally{ne.pop()}},gt=t=>{let e=ne.length,n=e>0&&ne[e-1];try{return n&&ne.push(null),t()}finally{n&&ne.pop()}},bt=t=>{try{let e=new Set;return ne.push(e),{value:t(),refs:[...e]}}finally{ne.pop()}};var je=t=>!!t&&t[mt]===1;var F=(t,e,n)=>{if(!y(t))return;let r=t;if(r(void 0,e,1),!n)return;let o=r();if(o){if(E(o)||Z(o))for(let s of o)F(s,e,!0);else if(he(o))for(let s of o)F(s[0],e,!0),F(s[1],e,!0);if(N(o))for(let s in o)F(o[s],e,!0)}};function yo(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var Ve=(t,e,n)=>{n.forEach(function(r){let o=t[r];yo(e,r,function(...i){let a=o.apply(this,i),c=this[J];for(let p of c)F(p);return a})})},Tt=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var Fn=Array.prototype,sn=Object.create(Fn),go=["push","pop","shift","unshift","splice","sort","reverse"];Ve(Fn,sn,go);var qn=Map.prototype,Et=Object.create(qn),bo=["set","clear","delete"];Tt(Et,"Map");Ve(qn,Et,bo);var zn=Set.prototype,Ct=Object.create(zn),To=["add","clear","delete"];Tt(Ct,"Set");Ve(zn,Ct,To);var Ne={},z=t=>{if(y(t)||je(t))return t;let e={auto:!0,_value:t},n=c=>N(c)?J in c?!0:E(c)?(Object.setPrototypeOf(c,sn),!0):Z(c)?(Object.setPrototypeOf(c,Ct),!0):he(c)?(Object.setPrototypeOf(c,Et),!0):!1:!1,r=n(t),o=new Set,s=(c,p)=>{if(Ne.set){Ne.set.add(a);return}o.size!==0&&gt(()=>{for(let f of[...o.keys()])o.has(f)&&f(c,p)})},i=c=>{let p=c[J];p||(c[J]=p=new Set),p.add(a)},a=(...c)=>{if(!(2 in c)){let f=c[0],l=c[1];return 0 in c?e._value===f||y(f)&&(f=f(),e._value===f)?f:(n(f)&&i(f),e._value=f,e.auto&&s(f,l),e._value):($n(a),e._value)}switch(c[2]){case 0:{let f=c[3];if(!f)return()=>{};let l=u=>{o.delete(u)};return o.add(f),()=>{l(f)}}case 1:{let f=c[1],l=e._value;s(l,f);break}case 2:return o.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[J]=1,Te(a,!1),r&&i(t),a};var P=t=>y(t)?t():t;var tt=class{constructor(e){m(this,"E",[]);m(this,"H",new Map);m(this,"J");this.J=e}get S(){return this.E.length}Q(e){let n=this.J(e.value);n&&this.H.set(n,e)}X(e){var r;let n=this.J((r=this.E[e])==null?void 0:r.value);n&&this.H.delete(n)}static qe(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.E.push(e),this.Q(e)}Ke(e,n){let r=this.S;for(let o=e;o<r;++o)this.E[o].order=o+1;n.order=e,this.E.splice(e,0,n),this.Q(n)}I(e){return this.E[e]}Y(e,n){this.X(e),this.E[e]=n,this.Q(n),n.order=e}ce(e){this.X(e),this.E.splice(e,1);let n=this.S;for(let r=e;r<n;++r)this.E[r].order=r}fe(e){let n=this.S;for(let r=e;r<n;++r)this.X(r);this.E.splice(e)}Rt(e){return this.H.has(e)}ze(e){var r;let n=this.H.get(e);return(r=n==null?void 0:n.order)!=null?r:-1}};var an=Symbol("r-for"),xt=class xt{constructor(e){m(this,"p");m(this,"b");m(this,"Z");m(this,"T");this.p=e,this.b=e.o.f.for,this.Z=Be(this.b),this.T=e.o.f.pre}N(e){let n=e.hasAttribute(this.b),r=ge(e,this.Z);for(let o of r)this.We(o);return n}W(e){return e[an]?!0:(e[an]=!0,ge(e,this.Z).forEach(n=>n[an]=!0),!1)}We(e){if(e.hasAttribute(this.T)||this.W(e))return;let n=e.getAttribute(this.b);if(!n){U(0,this.b,e);return}e.removeAttribute(this.b),this.Ge(e,n)}le(e){return te(e)?[]:(H(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(r=>({*[Symbol.iterator](){for(let o=1;o<=r;o++)yield o}}))(e):Object.entries(e))}Ge(e,n){var st;let r=this.Je(n);if(!(r!=null&&r.list)){U(1,this.b,n,e);return}let o=this.p.o.f.key,s=this.p.o.f.keyBind,i=(st=e.getAttribute(o))!=null?st:e.getAttribute(s);e.removeAttribute(o),e.removeAttribute(s);let a=i?v=>{var A;return P((A=P(v))==null?void 0:A[i])}:v=>v,c=(v,A)=>a(v)===a(A),p=_e(e),f=e.parentNode;if(!f)return;let l=`${this.b} => ${n}`,u=new Comment(`__begin__ ${l}`);f.insertBefore(u,e),Ue(u,p),p.forEach(v=>{j(v)}),e.remove();let h=new Comment(`__end__ ${l}`);f.insertBefore(h,u.nextSibling);let d=this.p,C=d.h,I=C.V(),x=(v,A,q)=>{let w=r.createContext(A,v),Y=tt.qe(w.index,A);return C.v(I,()=>{C.w(w.ctx);let re=q.previousSibling,Ie=[];for(let g of p){let M=g.cloneNode(!0);f.insertBefore(M,q),Ie.push(M)}for(be(d,Ie),re=re.nextSibling;re!==q;)Y.items.push(re),re=re.nextSibling}),Y},b=(v,A)=>{let q=O.I(v).items,w=q[q.length-1].nextSibling;for(let Y of q)j(Y);O.Y(v,x(v,A,w))},L=(v,A)=>{O.w(x(v,A,h))},X=v=>{for(let A of O.I(v).items)j(A)},ee=v=>{let A=O.S;for(let q=v;q<A;++q)O.I(q).index(q)},Je=v=>{let A=O.S;H(v)&&(v=v());let q=P(v[0]);if(E(q)&&q.length===0){pe(u,h),O.fe(0);return}let w=0,Y=Number.MAX_SAFE_INTEGER,re=A,Ie=this.p.o.forGrowThreshold,g=()=>O.S<re+Ie;for(let T of this.le(v[0])){let V=()=>{if(w<A){let K=O.I(w++);if(c(K.value,T))return;let R=O.ze(a(T));if(R>=w&&R-w<10){if(--w,Y=Math.min(Y,w),X(w),O.ce(w),--A,R>w+1)for(let k=w;k<R-1&&k<A&&!c(O.I(w).value,T);)++k,X(w),O.ce(w),--A;V();return}g()?(O.Ke(w-1,x(w,T,O.I(w-1).items[0])),Y=Math.min(Y,w-1),++A):b(w-1,T)}else L(w++,T)};V()}let M=w;for(A=O.S;w<A;)X(w++);O.fe(M),ee(Y)},Kt=()=>{de=S(rt,Je)},nt=()=>{ue.stop(),de()},ue=C.C(r.list),rt=ue.value,de,ot=0,O=new tt(a);for(let v of this.le(rt()[0]))O.w(x(ot++,v,h));D(u,nt),Kt()}Je(e){var c,p;let n=xt.Qe.exec(e);if(!n)return;let r=(n[1]+((c=n[2])!=null?c:"")).split(",").map(f=>f.trim()),o=r.length>1?r.length-1:-1,s=o!==-1&&((p=r[o])!=null&&p.startsWith("#"))?r[o]:"";s&&r.splice(o,1);let i=n[3];if(!i||r.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(f,l)=>{let u={},h=P(f);if(!a&&r.length===1)u[r[0]]=f;else if(E(h)){let C=0;for(let I of r)u[I]=h[C++]}else for(let C of r)u[C]=h[C];let d={ctx:u,index:z(-1)};return s&&(d.index=u[s.substring(1)]=z(l)),d}}}};m(xt,"Qe",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+([^\s]+)\s*/);var Rt=xt;var Eo=(t,e)=>{for(let n of t){let r=n.cloneNode(!0);e.appendChild(r)}},vt=class{constructor(e){m(this,"p");m(this,"D");m(this,"ue");this.p=e,this.D=e.o.f.is,this.ue=Be(this.D)+", [is]"}N(e){let n=e.hasAttribute(this.D),r=ge(e,this.ue);for(let o of r)this.x(o);return n}x(e){let n=e.getAttribute(this.D);if(!n){if(n=e.getAttribute("is"),!n||!n.startsWith("regor:"))return;n=`'${n.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.D),this.k(e,n)}B(e,n){let r=_e(e),o=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);o.insertBefore(s,e),Ue(s,r),r.forEach(a=>{j(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${n!=null?n:""}`);return o.insertBefore(i,s.nextSibling),{nodes:r,parent:o,commentBegin:s,commentEnd:i}}k(e,n){let{nodes:r,parent:o,commentBegin:s,commentEnd:i}=this.B(e,` => ${n} `),a=this.p.h.C(n),c=a.value,p=this.p.h,f=p.V(),l={name:""},u=se(e)?r:[...r[0].childNodes],h=()=>{p.v(f,()=>{let x=c()[0];if(N(x)&&(x=x.name),!W(x)||$(x)){pe(s,i);return}if(l.name===x)return;pe(s,i);let b=document.createElement(x);for(let L of e.getAttributeNames())L!==this.D&&b.setAttribute(L,e.getAttribute(L));Eo(u,b),o.insertBefore(b,i),this.p.G(b),l.name=x})},d=[];D(s,()=>{a.stop();for(let x of d)x();d.length=0}),h();let I=S(c,h);d.push(I)}};var Kn={collectRefObj:!0,onBind:(t,e)=>S(e.value,()=>{let r=e.value(),o=e.context,s=r[0];if(N(s))for(let i of Object.entries(s)){let a=i[0],c=i[1],p=o[a];p!==c&&(y(p)?p(c):o[a]=c)}},!0)};var Wn={collectRefObj:!0,once:!0,onBind:(t,e)=>{let n=e.value(),r=e.context,o=n[0];if(!N(o))return()=>{};for(let s of Object.entries(o)){let i=s[0],a=s[1],c=r[i];c!==a&&(y(c)?c(a):r[i]=a)}return()=>{}}};var Ee=t=>{var n,r;let e=(n=ft(t))==null?void 0:n.onUnmounted;e==null||e.forEach(o=>{o()}),(r=t.unmounted)==null||r.call(t)};var $e=class{constructor(e,n,r,o,s){m(this,"props");m(this,"start");m(this,"end");m(this,"ctx");m(this,"autoProps",!0);m(this,"entangle",!0);m(this,"disableSwitch",!1);m(this,"onAutoPropsAssigned");m(this,"me");m(this,"emit",(e,n)=>{this.me.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.me=n,this.ctx=r,this.start=o,this.end=s}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)j(e),e=e.nextSibling;Ee(this)}};var cn=Symbol("scope"),St=t=>{try{kn();let e=t();Yt(e);let n={context:e,unmount:()=>Ee(e),[cn]:1};return n[cn]=1,n}finally{In()}},Gn=t=>N(t)?cn in t:!1;var wt=(t,e)=>{if(t===e)return()=>{};let n=S(t,o=>e(o)),r=S(e,o=>t(o));return e(t()),()=>{n(),r()}};var Ot=t=>{var n,r;let e=(n=ft(t))==null?void 0:n.onMounted;e==null||e.forEach(o=>{o()}),(r=t.mounted)==null||r.call(t)};var Jn={collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{if(!r)return()=>{};let i=B(r);return S(e.value,()=>{var l;let c=(l=e.refs[0])!=null?l:e.value()[0],p=e.context,f=p[r];f!==c&&(y(f)?f(c):p[i]=c)},!0)}};var At=class{constructor(e){m(this,"p");m(this,"de");this.p=e,this.de=e.o.f.inherit}N(e){this.Xe(e)}Xe(e){var f;let n=this.p,r=n.h,o=n.o.ye,s=n.o.he,i=r.Ye(),a=[...o.keys(),...Object.keys(i),...[...o.keys()].map(Pe),...[...Object.keys(i)].map(Pe)].join(",");if($(a))return;let c=e.querySelectorAll(a),p=(f=e.matches)!=null&&f.call(e,a)?[e,...c]:c;for(let l of p){if(l.hasAttribute(n.T))continue;let u=l.parentNode;if(!u)continue;let h=l.nextSibling,d=B(l.tagName).toUpperCase(),C=i[d],I=C!=null?C:s.get(d);if(!I)continue;let x=I.template;if(!x)continue;let b=l.parentElement;if(!b)continue;let L=new Comment(" begin component: "+l.tagName),X=new Comment(" end component: "+l.tagName);b.insertBefore(L,l),l.remove();let ee=n.o.f.props,Je=n.o.f.propsOnce,Kt=n.o.f.bind,nt=(g,M)=>{let T={},V=g.hasAttribute(ee),K=g.hasAttribute(Je);return r.v(M,()=>{r.w(T),V&&n.x(Kn,g,ee),K&&n.x(Wn,g,Je);let R=I.props;if(!R||R.length===0)return;R=R.map(B);for(let ve of R.concat(R.map(Pe))){let ae=g.getAttribute(ve);ae!==null&&(T[B(ve)]=ae,g.removeAttribute(ve))}let k=n.ee.ge(g,!1);for(let[ve,ae]of k.entries()){let[Se,Wt]=ae.te;Wt&&R.includes(B(Wt))&&(Se!=="."&&Se!==":"&&Se!==Kt||n.x(Jn,g,ve,!0,Wt,ae.ne))}}),T},ue=[...r.V()],rt=()=>{var V;let g=nt(l,ue),M=new $e(g,l,ue,L,X),T=St(()=>{var K;return(K=I.context(M))!=null?K:{}}).context;if(M.autoProps){for(let[K,R]of Object.entries(g))if(K in T){let k=T[K];if(k===R)continue;M.entangle&&y(k)&&y(R)?D(L,wt(R,k)):y(k)?k(R):T[K]=P(R)}else T[K]=R;(V=M.onAutoPropsAssigned)==null||V.call(M)}return{componentCtx:T,head:M}},{componentCtx:de,head:ot}=rt(),O=[...fe(x)],st=O.length,v=l.childNodes.length===0,A=g=>{let M=g.parentElement;if(v){for(let R of[...g.childNodes])M.insertBefore(R,g);return}let T=g.name;$(T)&&(T=g.getAttributeNames().filter(R=>R.startsWith("#"))[0],$(T)?T="default":T=T.substring(1));let V=l.querySelector(`template[name='${T}'], template[\\#${T}]`);!V&&T==="default"&&(V=l.querySelector("template:not([name])"),V&&V.getAttributeNames().filter(R=>R.startsWith("#")).length>0&&(V=null));let K=R=>{ot.disableSwitch||r.v(ue,()=>{r.w(de);let k=nt(g,r.V());r.v(ue,()=>{r.w(k);let ve=r.V(),ae=Hn(ve);for(let Se of R)Oe(Se)&&(Se.setAttribute(Ye,ae),Zt(ae),D(Se,()=>{en(ae)}))})})};if(V){let R=[...fe(V)];for(let k of R)M.insertBefore(k,g);K(R)}else{if(T!=="default"){for(let k of[...fe(g)])M.insertBefore(k,g);return}let R=[...fe(l)].filter(k=>!se(k));for(let k of R)M.insertBefore(k,g);K(R)}},q=g=>{if(!Oe(g))return;let M=g.querySelectorAll("slot");if(jn(g)){A(g),g.remove();return}for(let T of M)A(T),T.remove()};(()=>{for(let g=0;g<st;++g)O[g]=O[g].cloneNode(!0),u.insertBefore(O[g],h),q(O[g])})(),b.insertBefore(X,h);let Y=()=>{if(!I.inheritAttrs)return;let g=O.filter(T=>T.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(T=>T.hasAttribute(this.de)));let M=g[0];if(M)for(let T of l.getAttributeNames()){if(T===ee||T===Je)continue;let V=l.getAttribute(T);if(T==="class")M.classList.add(...V.split(" "));else if(T==="style"){let K=M.style,R=l.style;for(let k of R)K.setProperty(k,R.getPropertyValue(k))}else M.setAttribute(yt(T,n.o),V)}},re=()=>{for(let g of l.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.o.f.on)&&l.removeAttribute(g)},Ie=()=>{Y(),re(),r.w(de),n.be(l,!1),de.$emit=ot.emit,be(n,O),D(l,()=>{Ee(de)}),D(L,()=>{oe(l)}),Ot(de)};r.v(ue,Ie)}}};var pn=class{constructor(e){m(this,"Te");m(this,"te",[]);m(this,"ne",[]);m(this,"xe",[]);this.Te=e,this.C()}C(){let e=this.Te,n=e.startsWith(".");n&&(e=":"+e.slice(1));let r=e.indexOf("."),o=this.te=(r<0?e:e.substring(0,r)).split(/[:@]/);if($(o[0])&&(o[0]=n?".":e[0]),r>=0){let s=this.ne=e.slice(r+1).split(".");if(s.includes("camel")){let i=o.length-1;o[i]=B(o[i])}s.includes("prop")&&(o[0]=".")}}},Nt=class{constructor(e){m(this,"p");m(this,"Ee");this.p=e,this.Ee=e.o.Ze()}ge(e,n){let r=new Map;if(!Ze(e))return r;let o=this.Ee,s=a=>{let c=a.getAttributeNames().filter(p=>o.some(f=>p.startsWith(f)));for(let p of c)r.has(p)||r.set(p,new pn(p)),r.get(p).xe.push(a)};if(s(e),!n)return r;let i=e.querySelectorAll("*");for(let a of i)s(a);return r}};var Mt={};var Lt=class{constructor(e){m(this,"h");m(this,"Re");m(this,"Ce");m(this,"ve");m(this,"Se");m(this,"ee");m(this,"o");m(this,"T");m(this,"we");this.h=e,this.o=e.o,this.Ce=new Rt(this),this.Re=new ht(this),this.ve=new vt(this),this.Se=new At(this),this.ee=new Nt(this),this.T=this.o.f.pre,this.we=this.o.f.dynamic}et(e){let n=se(e)?[e]:e.querySelectorAll("template");for(let r of n){if(r.hasAttribute(this.T))continue;let o=r.parentNode;if(!o)continue;let s=r.nextSibling;if(r.remove(),!r.content)continue;let i=[...r.content.childNodes];for(let a of i)o.insertBefore(a,s);be(this,i)}}G(e){e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.T)||this.Re.N(e)||this.Ce.N(e)||this.ve.N(e)||(this.Se.N(e),this.et(e),this.be(e,!0))}be(e,n){var s;let r=this.ee.ge(e,n),o=this.o._;for(let[i,a]of r.entries()){let[c,p]=a.te,f=(s=o[i])!=null?s:o[c];if(!f){console.error("directive not found:",c);continue}a.xe.forEach(l=>{this.x(f,l,i,!1,p,a.ne)})}}x(e,n,r,o,s,i){if(n.hasAttribute(this.T))return;let a=n.getAttribute(r);n.removeAttribute(r);let c=p=>{let f=p.getAttribute(Ye);return f||(p.parentElement?c(p.parentElement):null)};if(tn()){let p=c(n);if(p){this.h.v(_n(p),()=>{this.k(e,n,a,s,i)});return}}this.k(e,n,a,s,i)}tt(e,n,r){if(e!==Mt)return!1;if($(r))return!0;let o=document.querySelector(r);if(o){let s=n.parentElement;if(!s)return!0;let i=new Comment(`teleported => '${r}'`);s.insertBefore(i,n),n.teleportedFrom=i,i.teleportedTo=n,D(i,()=>{j(n)}),o.appendChild(n)}return!0}k(e,n,r,o,s){var I;if(n.nodeType!==Node.ELEMENT_NODE||r==null||this.tt(e,n,r))return;let i=this.h.C(r,e.isLazy,e.isLazyKey,e.collectRefObj,e.once),a=[];D(n,()=>{i.stop(),f==null||f.stop();for(let x of a)x();a.length=0});let p=Vn(o,this.we),f;p&&(f=this.h.C(B(p),void 0,void 0,void 0,e.once));let l,u=()=>(l=i.value(),l),h,d=()=>f?(h=f.value()[0],h):(h=o,o),C=()=>{if(!e.onChange)return;let x=S(i.value,b=>{var ee;let L=l,X=h;(ee=e.onChange)==null||ee.call(e,n,u(),L,d(),X,s)});if(a.push(x),f){let b=S(f.value,L=>{var ee;let X=h;(ee=e.onChange)==null||ee.call(e,n,u(),X,d(),X,s)});a.push(b)}};e.once||C(),e.onBind&&a.push(e.onBind(n,i,r,o,f,s)),(I=e.onChange)==null||I.call(e,n,u(),void 0,d(),void 0,s)}};var Co=9,Ro=10,xo=13,vo=32,Ce=46,kt=44,So=39,wo=34,It=40,Fe=41,Dt=91,Ut=93,fn=63,Oo=59,Qn=58,Ao=123,Ht=125,mn=43,No=45,Xn=96,Yn=47,Mo=92,Zn=[2,3],er=[mn,No],ir={"-":1,"!":1,"~":1,"+":1,new:1},ar={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},ze=Nn(ct({"=>":2},ar),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),cr=Object.keys(ar),Lo=new Set(cr),_t=new Set;_t.add("=>");cr.forEach(t=>_t.add(t));var ko=new Set(["$","_"]),tr={true:!0,false:!1,null:null},Io="this";function pr(t){return Math.max(0,...Object.keys(t).map(e=>e.length))}var Do=pr(ir),Uo=pr(ze),Ke="Expected ",Me="Unexpected ",dn="Unclosed ",Ho=Ke+":",nr=Ke+"expression",_o="missing }",Bo=Me+"object property",Po=dn+"(",rr=Ke+"comma",or=Me+"token ",jo=Me+"period",ln=Ke+"expression after ",Vo="missing unaryOp argument",$o=dn+"[",Fo=Ke+"exponent (",qo="Variable names cannot start with a number (",zo=dn+'quote after "';var qe=t=>t>=48&&t<=57,sr=t=>ze[t]||0,un=class{constructor(e){m(this,"nt",{0:[this.rt],1:[this.ot,this.st,this.it],2:[this.at,this.pt,this.ct,this.Oe,this.ft],3:[this.lt,this.ut,this.mt]});m(this,"r");m(this,"e");this.r=e,this.e=0}get M(){return this.r.charAt(this.e)}get l(){return this.r.charCodeAt(this.e)}u(e){return this.r.charCodeAt(this.e)===e}U(e){let n=String.fromCharCode(e);return e>=65&&e<=90||e>=97&&e<=122||e>=128&&!(n in ze)||ko.has(n)}re(e){return this.U(e)||qe(e)}i(e){return new Error(`${e} at character ${this.e}`)}L(e,n,r){let o=this.nt[e];if(!o)return r;let s={node:r},i=a=>{a.call(this,s)};return n===0?o.forEach(i):o.find(i),s.node}y(){let e=this.l,n=this.r,r=this.e;for(;e===vo||e===Co||e===Ro||e===xo;)e=n.charCodeAt(++r);this.e=r}parse(){let e=this.oe();return e.length===1?e[0]:{type:0,body:e}}oe(e){let n=[];for(;this.e<this.r.length;){let r=this.l;if(r===Oo||r===kt)this.e++;else{let o=this.O();if(o)n.push(o);else if(this.e<this.r.length){if(r===e)break;throw this.i(Me+'"'+this.M+'"')}}}return n}O(){var n;let e=(n=this.L(0,1))!=null?n:this.Ae();return this.y(),this.L(1,0,e)}se(){this.y();let e=this.e,n=this.r,r=n.substr(e,Uo),o=r.length;for(;o>0;){if(r in ze&&(!this.U(this.l)||e+r.length<n.length&&!this.re(n.charCodeAt(e+r.length))))return e+=o,this.e=e,r;r=r.substr(0,--o)}return!1}Ae(){let e,n,r,o,s,i,a,c;if(s=this.j(),!s||(n=this.se(),!n))return s;if(o={value:n,prec:sr(n),right_a:_t.has(n)},i=this.j(),!i)throw this.i(ln+n);let p=[s,o,i];for(;n=this.se();){if(r=sr(n),r===0){this.e-=n.length;break}o={value:n,prec:r,right_a:_t.has(n)},c=n;let f=l=>o.right_a&&l.right_a?r>l.prec:r<=l.prec;for(;p.length>2&&f(p[p.length-2]);)i=p.pop(),n=p.pop().value,s=p.pop(),e={type:8,operator:n,left:s,right:i},p.push(e);if(e=this.j(),!e)throw this.i(ln+c);p.push(o,e)}for(a=p.length-1,e=p[a];a>1;)e={type:8,operator:p[a-1].value,left:p[a-2],right:e},a-=2;return e}j(){let e,n,r;if(this.y(),r=this.L(2,1),r)return this.L(3,0,r);let o=this.l;if(qe(o)||o===Ce)return this.dt();if(o===So||o===wo)r=this.yt();else if(o===Dt)r=this.ht();else{for(e=this.r.substr(this.e,Do),n=e.length;n>0;){if(Object.prototype.hasOwnProperty.call(ir,e)&&(!this.U(this.l)||this.e+e.length<this.r.length&&!this.re(this.r.charCodeAt(this.e+e.length)))){this.e+=n;let s=this.j();if(!s)throw this.i(Vo);return this.L(3,0,{type:7,operator:e,argument:s})}e=e.substr(0,--n)}this.U(o)?(r=this.ie(),r.name in tr?r={type:4,value:tr[r.name],raw:r.name}:r.name===Io&&(r={type:5})):o===It&&(r=this.gt())}return r?(r=this.F(r),this.L(3,0,r)):this.L(3,0,!1)}F(e){this.y();let n=this.l;for(;n===Ce||n===Dt||n===It||n===fn;){let r;if(n===fn){if(this.r.charCodeAt(this.e+1)!==Ce)break;r=!0,this.e+=2,this.y(),n=this.l}if(this.e++,n===Dt){if(e={type:3,computed:!0,object:e,property:this.O()},this.y(),n=this.l,n!==Ut)throw this.i($o);this.e++}else n===It?e={type:6,arguments:this.Ne(Fe),callee:e}:(n===Ce||r)&&(r&&this.e--,this.y(),e={type:3,computed:!1,object:e,property:this.ie()});r&&(e.optional=!0),this.y(),n=this.l}return e}dt(){let e="",n;for(;qe(this.l);)e+=this.r.charAt(this.e++);if(this.u(Ce))for(e+=this.r.charAt(this.e++);qe(this.l);)e+=this.r.charAt(this.e++);if(n=this.M,n==="e"||n==="E"){for(e+=this.r.charAt(this.e++),n=this.M,(n==="+"||n==="-")&&(e+=this.r.charAt(this.e++));qe(this.l);)e+=this.r.charAt(this.e++);if(!qe(this.r.charCodeAt(this.e-1)))throw this.i(Fo+e+this.M+")")}let r=this.l;if(this.U(r))throw this.i(qo+e+this.M+")");if(r===Ce||e.length===1&&e.charCodeAt(0)===Ce)throw this.i(jo);return{type:4,value:parseFloat(e),raw:e}}yt(){let e="",n=this.e,r=this.r.charAt(this.e++),o=!1;for(;this.e<this.r.length;){let s=this.r.charAt(this.e++);if(s===r){o=!0;break}else if(s==="\\")switch(s=this.r.charAt(this.e++),s){case"n":e+=`
2
- `;break;case"r":e+="\r";break;case"t":e+=" ";break;case"b":e+="\b";break;case"f":e+="\f";break;case"v":e+="\v";break;default:e+=s}else e+=s}if(!o)throw this.i(zo+e+'"');return{type:4,value:e,raw:this.r.substring(n,this.e)}}ie(){let e=this.l,n=this.e;if(this.U(e))this.e++;else throw this.i(Me+this.M);for(;this.e<this.r.length&&(e=this.l,this.re(e));)this.e++;return{type:2,name:this.r.slice(n,this.e)}}Ne(e){let n=[],r=!1,o=0;for(;this.e<this.r.length;){this.y();let s=this.l;if(s===e){if(r=!0,this.e++,e===Fe&&o&&o>=n.length)throw this.i(or+String.fromCharCode(e));break}else if(s===kt){if(this.e++,o++,o!==n.length){if(e===Fe)throw this.i(or+",");if(e===Ut)for(let i=n.length;i<o;i++)n.push(null)}}else{if(n.length!==o&&o!==0)throw this.i(rr);{let i=this.O();if(!i||i.type===0)throw this.i(rr);n.push(i)}}}if(!r)throw this.i(Ke+String.fromCharCode(e));return n}gt(){this.e++;let e=this.oe(Fe);if(this.u(Fe))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(Po)}ht(){return this.e++,{type:9,elements:this.Ne(Ut)}}at(e){if(this.u(Ao)){this.e++;let n=[];for(;!isNaN(this.l);){if(this.y(),this.u(Ht)){this.e++,e.node=this.F({type:10,properties:n});return}let r=this.O();if(!r)break;if(this.y(),r.type===2&&(this.u(kt)||this.u(Ht)))n.push({type:12,computed:!1,key:r,value:r,shorthand:!0});else if(this.u(Qn)){this.e++;let o=this.O();if(!o)throw this.i(Bo);let s=r.type===9;n.push({type:12,computed:s,key:s?r.elements[0]:r,value:o,shorthand:!1}),this.y()}else r&&n.push(r);this.u(kt)&&this.e++}throw this.i(_o)}}pt(e){let n=this.l;if(er.some(r=>r===n&&r===this.r.charCodeAt(this.e+1))){this.e+=2;let r=e.node={type:13,operator:n===mn?"++":"--",argument:this.F(this.ie()),prefix:!0};if(!r.argument||!Zn.includes(r.argument.type))throw this.i(Me+r.operator)}}ut(e){if(e.node){let n=this.l;if(er.some(r=>r===n&&r===this.r.charCodeAt(this.e+1))){if(!Zn.includes(e.node.type))throw this.i(Me+e.node.operator);this.e+=2,e.node={type:13,operator:n===mn?"++":"--",argument:e.node,prefix:!1}}}}ct(e){[0,1,2].every(n=>this.r.charCodeAt(this.e+n)===Ce)&&(this.e+=3,e.node={type:14,argument:this.O()})}it(e){if(e.node&&this.u(fn)){this.e++;let n=e.node,r=this.O();if(!r)throw this.i(nr);if(this.y(),this.u(Qn)){this.e++;let o=this.O();if(!o)throw this.i(nr);if(e.node={type:11,test:n,consequent:r,alternate:o},n.operator&&ze[n.operator]<=.9){let s=n;for(;s.right.operator&&ze[s.right.operator]<=.9;)s=s.right;e.node.test=s.right,s.right=e.node,e.node=n}}else throw this.i(Ho)}}rt(e){if(this.y(),this.u(It)){let n=this.e;if(this.e++,this.y(),this.u(Fe)){this.e++;let r=this.se();if(r==="=>"){let o=this.Ae();if(!o)throw this.i(ln+r);e.node={type:15,params:null,body:o};return}}this.e=n}}ot(e){this.Me(e.node)}Me(e){e&&(Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.Me(n)}),e.operator==="=>"&&(e.type=15,e.params=e.left?[e.left]:null,e.body=e.right,e.params&&e.params[0].type===1&&(e.params=e.params[0].expressions),delete e.left,delete e.right,delete e.operator))}st(e){e.node&&this.$(e.node)}$(e){Lo.has(e.operator)?(e.type=16,this.$(e.left),this.$(e.right)):e.operator||Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.$(n)})}mt(e){if(!e.node)return;let n=e.node.type;(n===2||n===3)&&this.u(Xn)&&(e.node={type:17,tag:e.node,quasi:this.Oe(e)})}Oe(e){if(!this.u(Xn))return;let n={type:19,quasis:[],expressions:[]},r="",o="",s=!1,i=this.r.length,a=()=>n.quasis.push({type:18,value:{raw:o,cooked:r},tail:s});for(;this.e<i;){let c=this.r.charAt(++this.e);if(c==="`")return this.e+=1,s=!0,a(),e.node=n,n;if(c==="$"&&this.r.charAt(this.e+1)==="{"){if(this.e+=2,a(),o="",r="",n.expressions.push(...this.oe(Ht)),!this.u(Ht))throw this.i("unclosed ${")}else if(c==="\\")switch(o+=c,c=this.r.charAt(++this.e),o+=c,c){case"n":r+=`
3
- `;break;case"r":r+="\r";break;case"t":r+=" ";break;case"b":r+="\b";break;case"f":r+="\f";break;case"v":r+="\v";break;default:r+=c}else r+=c,o+=c}throw this.i("Unclosed `")}lt(e){var o;let n=e.node;if(!n||n.operator!=="new"||!n.argument)return;if(!n.argument||![6,3].includes(n.argument.type))throw this.i("Expected new function()");e.node=n.argument;let r=e.node;for(;r.type===3||r.type===6&&((o=r==null?void 0:r.callee)==null?void 0:o.type)===3;)r=r.type===3?r.object:r.callee.object;r.type=20}ft(e){if(!this.u(Yn))return;let n=++this.e,r=!1;for(;this.e<this.r.length;){if(this.l===Yn&&!r){let o=this.r.slice(n,this.e),s="";for(;++this.e<this.r.length;){let a=this.l;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.M;else break}let i;try{i=new RegExp(o,s)}catch(a){throw this.i(a.message)}return e.node={type:4,value:i,raw:this.r.slice(n-1,this.e)},e.node=this.F(e.node),e.node}this.u(Dt)?r=!0:r&&this.u(Ut)&&(r=!1),this.e+=this.u(Mo)?2:1}throw this.i("Unclosed Regex")}},fr=t=>new un(t).parse();var Ko={"=>":(t,e)=>{},"=":(t,e)=>{},"*=":(t,e)=>{},"**=":(t,e)=>{},"/=":(t,e)=>{},"%=":(t,e)=>{},"+=":(t,e)=>{},"-=":(t,e)=>{},"<<=":(t,e)=>{},">>=":(t,e)=>{},">>>=":(t,e)=>{},"&=":(t,e)=>{},"^=":(t,e)=>{},"|=":(t,e)=>{},"||":(t,e)=>t()||e(),"??":(t,e)=>{var n;return(n=t())!=null?n:e()},"&&":(t,e)=>t()&&e(),"|":(t,e)=>t|e,"^":(t,e)=>t^e,"&":(t,e)=>t&e,"==":(t,e)=>t==e,"!=":(t,e)=>t!=e,"===":(t,e)=>t===e,"!==":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e,in:(t,e)=>t in e,"<<":(t,e)=>t<<e,">>":(t,e)=>t>>e,">>>":(t,e)=>t>>>e,"+":(t,e)=>t+e,"-":(t,e)=>t-e,"*":(t,e)=>t*e,"/":(t,e)=>t/e,"%":(t,e)=>t%e,"**":(t,e)=>at(t,e)},Wo={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},dr=t=>{if(!(t!=null&&t.some(ur)))return t;let e=[];return t.forEach(n=>ur(n)?e.push(...n):e.push(n)),e},lr=(...t)=>dr(t),hn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Go={"++":(t,e)=>{let n=t[e];if(y(n)){let r=n();return n(++r),r}return++t[e]},"--":(t,e)=>{let n=t[e];if(y(n)){let r=n();return n(--r),r}return--t[e]}},Jo={"++":(t,e)=>{let n=t[e];if(y(n)){let r=n();return n(r+1),r}return t[e]++},"--":(t,e)=>{let n=t[e];if(y(n)){let r=n();return n(r-1),r}return t[e]--}},mr={"=":(t,e,n)=>{let r=t[e];return y(r)?r(n):t[e]=n},"+=":(t,e,n)=>{let r=t[e];return y(r)?r(r()+n):t[e]+=n},"-=":(t,e,n)=>{let r=t[e];return y(r)?r(r()-n):t[e]-=n},"*=":(t,e,n)=>{let r=t[e];return y(r)?r(r()*n):t[e]*=n},"/=":(t,e,n)=>{let r=t[e];return y(r)?r(r()/n):t[e]/=n},"%=":(t,e,n)=>{let r=t[e];return y(r)?r(r()%n):t[e]%=n},"**=":(t,e,n)=>{let r=t[e];return y(r)?r(at(r(),n)):t[e]=at(t[e],n)},"<<=":(t,e,n)=>{let r=t[e];return y(r)?r(r()<<n):t[e]<<=n},">>=":(t,e,n)=>{let r=t[e];return y(r)?r(r()>>n):t[e]>>=n},">>>=":(t,e,n)=>{let r=t[e];return y(r)?r(r()>>>n):t[e]>>>=n},"|=":(t,e,n)=>{let r=t[e];return y(r)?r(r()|n):t[e]|=n},"&=":(t,e,n)=>{let r=t[e];return y(r)?r(r()&n):t[e]&=n},"^=":(t,e,n)=>{let r=t[e];return y(r)?r(r()^n):t[e]^=n}},Bt=(t,e)=>H(t)?t.bind(e):t,yn=class{constructor(e,n,r,o,s){m(this,"m");m(this,"Le");m(this,"ke");m(this,"Ve");m(this,"A");m(this,"Ie");m(this,"De");this.m=E(e)?e:[e],this.Le=n,this.ke=r,this.Ve=o,this.De=!!s}Ue(e,n){if(n&&e in n)return n;for(let r of this.m)if(e in r)return r}2(e,n,r){let o=e.name;if(o==="$root")return this.m[this.m.length-1];if(o==="$parent")return this.m[1];if(o==="$ctx")return[...this.m];if(r&&o in r)return this.A=r[o],Bt(P(r[o]),r);for(let i of this.m)if(o in i)return this.A=i[o],Bt(P(i[o]),i);let s=this.Le;if(s&&o in s)return this.A=s[o],Bt(P(s[o]),s)}5(e,n,r){return this.m[0]}0(e,n,r){return this.Pe(n,r,lr,...e.body)}1(e,n,r){return this.R(n,r,(...o)=>o.pop(),...e.expressions)}3(e,n,r){let{obj:o,key:s}=this.ae(e,n,r),i=o==null?void 0:o[s];return this.A=i,Bt(P(i),o)}4(e,n,r){return e.value}6(e,n,r){let o=(i,...a)=>H(i)?i(...dr(a)):i,s=this.R(++n,r,o,e.callee,...e.arguments);return this.A=s,s}7(e,n,r){return this.R(n,r,Wo[e.operator],e.argument)}8(e,n,r){let o=Ko[e.operator];switch(e.operator){case"||":case"&&":case"??":return o(()=>this.g(e.left,n,r),()=>this.g(e.right,n,r))}return this.R(n,r,o,e.left,e.right)}9(e,n,r){return this.Pe(++n,r,lr,...e.elements)}10(e,n,r){let o={},s=(...i)=>{i.forEach(a=>{Object.assign(o,a)})};return this.R(++n,r,s,...e.properties),o}11(e,n,r){return this.R(n,r,o=>this.g(o?e.consequent:e.alternate,n,r),e.test)}12(e,n,r){var f;let o={},s=l=>(l==null?void 0:l.type)!==15,i=(f=this.Ve)!=null?f:()=>!1,a=n===0&&this.De,c=l=>this.Be(a,e.key,n,hn(l,r)),p=l=>this.Be(a,e.value,n,hn(l,r));if(e.shorthand){let l=e.key.name;o[l]=s(e.key)&&i(l,n)?c:c()}else if(e.computed){let l=P(c());o[l]=s(e.value)&&i(l,n)?p:p()}else{let l=e.key.type===4?e.key.value:e.key.name;o[l]=s(e.value)&&i(l,n)?()=>p:p()}return o}ae(e,n,r){let o=this.g(e.object,n,r),s=e.computed?this.g(e.property,n,r):e.property.name;return{obj:o,key:s}}13(e,n,r){let o=e.argument,s=e.operator,i=e.prefix?Go:Jo;if(o.type===2){let a=o.name,c=this.Ue(a,r);return te(c)?void 0:i[s](c,a)}if(o.type===3){let{obj:a,key:c}=this.ae(o,n,r);return i[s](a,c)}}16(e,n,r){let o=e.left,s=e.operator;if(o.type===2){let i=o.name,a=this.Ue(i,r);if(te(a))return;let c=this.g(e.right,n,r);return mr[s](a,i,c)}if(o.type===3){let{obj:i,key:a}=this.ae(o,n,r),c=this.g(e.right,n,r);return mr[s](i,a,c)}}14(e,n,r){let o=this.g(e.argument,n,r);return E(o)&&(o.s=hr),o}17(e,n,r){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},n,r)}19(e,n,r){let o=(...s)=>s.reduce((i,a,c)=>i+=a+e.quasis[c+1].value.cooked,e.quasis[0].value.cooked);return this.R(n,r,o,...e.expressions)}18(e,n,r){return e.value.cooked}20(e,n,r){let o=(s,...i)=>new s(...i);return this.R(n,r,o,e.callee,...e.arguments)}15(e,n,r){return(...o)=>{let s=Object.create(r!=null?r:{}),i=e.params;if(i){let a=0;for(let c of i)s[c.name]=o[a++]}return this.g(e.body,n,s)}}g(e,n,r){let o=P(this[e.type](e,n,r));return this.Ie=e.type,o}Be(e,n,r,o){let s=this.g(n,r,o);return e&&this.He()?this.A:s}He(){let e=this.Ie;return(e===2||e===3||e===6)&&y(this.A)}eval(e,n){let{value:r,refs:o}=bt(()=>this.g(e,-1,n)),s={value:r,refs:o};return this.He()&&(s.ref=this.A),s}R(e,n,r,...o){let s=o.map(i=>i&&this.g(i,e,n));return r(...s)}Pe(e,n,r,...o){let s=this.ke;if(!s)return this.R(e,n,r,...o);let i=o.map((a,c)=>a&&(a.type!==15&&s(c,e)?p=>this.g(a,e,hn(p,n)):this.g(a,e,n)));return r(...i)}},hr=Symbol("s"),ur=t=>(t==null?void 0:t.s)===hr,yr=(t,e,n,r,o,s,i)=>new yn(e,n,r,o,i).eval(t,s);var gr={},Pt=class{constructor(e,n){m(this,"m");m(this,"o");m(this,"_e",[]);this.m=e,this.o=n}w(e){this.m=[e,...this.m]}Ye(){return this.m.map(n=>n.components).filter(n=>!!n).reverse().reduce((n,r)=>{for(let[o,s]of Object.entries(r))n[o.toUpperCase()]=s;return n},{})}C(e,n,r,o,s){var h;let i=z([]),a=[],c=()=>{for(let d of a)d();a.length=0},p={value:i,stop:c,refs:[],context:this.m[0]};if($(e))return p;let f=this.o.globalContext,l=[],u=(d,C,I,x)=>{try{let b=yr(d,C,f,n,r,x,o);return I&&l.push(...b.refs),{value:b.value,refs:b.refs,ref:b.ref}}catch(b){U(6,`evaluation error: ${e}`,b)}return{value:void 0,refs:[]}};try{let d=(h=gr[e])!=null?h:fr("["+e+"]");gr[e]=d;let C=this.m,I=()=>{l.splice(0),c();let x=d.elements.map((b,L)=>n!=null&&n(L,-1)?{value:X=>u(b,C,!1,{$event:X}).value,refs:[]}:u(b,C,!0));if(!s)for(let b of l){let L=S(b,I);a.push(L)}i(x.map(b=>b.value)),p.refs=x.map(b=>b.ref)};I()}catch(d){U(6,`parse error: ${e}`,d)}return p}V(){return this.m}Y(e){this._e.push(this.m),this.m=e}v(e,n){try{this.Y(e),n()}finally{this.bt()}}bt(){var e;this.m=(e=this._e.pop())!=null?e:[]}};var br="http://www.w3.org/1999/xlink",Qo={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function Xo(t){return!!t||t===""}var gn={onChange:(t,e,n,r,o,s)=>{var a;if(r){s&&s.includes("camel")&&(r=B(r)),jt(t,r,e[0],o);return}let i=e.length;for(let c=0;c<i;++c){let p=e[c];if(E(p)){let f=(a=n==null?void 0:n[c])==null?void 0:a[0],l=p[0],u=p[1];jt(t,l,u,f)}else if(N(p))for(let f of Object.entries(p)){let l=f[0],u=f[1],h=n==null?void 0:n[c],d=h&&l in h?l:void 0;jt(t,l,u,d)}else{let f=n==null?void 0:n[c],l=e[c++],u=e[c];jt(t,l,u,f)}}}},jt=(t,e,n,r)=>{if(r&&r!==e&&t.removeAttribute(r),te(e)){U(3,name,t);return}if(!W(e)){U(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){te(n)?t.removeAttributeNS(br,e.slice(6,e.length)):t.setAttributeNS(br,e,n);return}let o=e in Qo;te(n)||o&&!Xo(n)?t.removeAttribute(e):t.setAttribute(e,o?"":n)};var Er={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let c=0;c<a;++c)Tr(t,s[c],i==null?void 0:i[c])}else Tr(t,s,i)}}},Tr=(t,e,n)=>{let r=t.classList,o=W(e),s=W(n);if(e&&!o){if(n&&!s)for(let i in n)i in e||r.remove(i);for(let i in e)e[i]&&r.add(i)}else o?n!==e&&(s&&r.remove(...n==null?void 0:n.split(",")),r.add(...e.split(","))):n&&s&&r.remove(...n==null?void 0:n.split(","))};var Cr={onChange:(t,e)=>{let[n,r]=e;H(r)?r(t,n):t.innerHTML=n==null?void 0:n.toString()}};function Yo(t,e){if(t.length!==e.length)return!1;let n=!0;for(let r=0;n&&r<t.length;r++)n=le(t[r],e[r]);return n}function le(t,e){if(t===e)return!0;let n=Qt(t),r=Qt(e);if(n||r)return n&&r?t.getTime()===e.getTime():!1;if(n=Qe(t),r=Qe(e),n||r)return t===e;if(n=E(t),r=E(e),n||r)return n&&r?Yo(t,e):!1;if(n=N(t),r=N(e),n||r){if(!n||!r)return!1;let o=Object.keys(t).length,s=Object.keys(e).length;if(o!==s)return!1;for(let i in t){let a=t.hasOwnProperty(i),c=e.hasOwnProperty(i);if(a&&!c||!a&&c||!le(t[i],e[i]))return!1}}return String(t)===String(e)}function Vt(t,e){return t.findIndex(n=>le(n,e))}var Rr=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var $t=t=>{if(!y(t))throw _(3,"pause");t(void 0,void 0,3)};var Ft=t=>{if(!y(t))throw _(3,"resume");t(void 0,void 0,4)};var Zo=(t,e)=>{let n=Or(t);if(n&&vr(t))E(e)?e=Vt(e,me(t))>-1:Z(e)?e=e.has(me(t)):e=is(t,e),t.checked=e;else if(n&&Sr(t))t.checked=le(e,me(t));else if(n||Ar(t))wr(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Nr(t)){let r=t.options,o=r.length,s=t.multiple;for(let i=0;i<o;i++){let a=r[i],c=me(a);if(s)E(e)?a.selected=Vt(e,c)>-1:a.selected=e.has(c);else if(le(me(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else U(7,t)},qt=t=>(y(t)&&(t=t()),H(t)&&(t=t()),t?W(t)?{trim:t.includes("trim"),lazy:t.includes("lazy"),number:t.includes("number"),int:t.includes("int")}:{trim:!!t.trim,lazy:!!t.lazy,number:!!t.number,int:!!t.int}:{trim:!1,lazy:!1,number:!1,int:!1}),vr=t=>t.type==="checkbox",Sr=t=>t.type==="radio",wr=t=>t.type==="number"||t.type==="range",Or=t=>t.tagName==="INPUT",Ar=t=>t.tagName==="TEXTAREA",Nr=t=>t.tagName==="SELECT",es=(t,e)=>{let n=e.value,r=qt(n()[1]),o=e.refs[0];if(!o)return U(8,t),()=>{};let s=Or(t);return s&&vr(t)?ns(t,o):s&&Sr(t)?as(t,o):s||Ar(t)?ts(t,r,o,n):Nr(t)?cs(t,o,n):(U(7,t),()=>{})},Mr={onChange:(t,e)=>{Zo(t,e[0])},onBind:(t,e)=>es(t,e)},xr=/[.,' ·٫]/,ts=(t,e,n,r)=>{let s=e.lazy?"change":"input",i=wr(t),a=()=>{qt(r()[1]).trim&&(t.value=t.value.trim())},c=u=>{let h=u.target;h.composing=1},p=u=>{let h=u.target;h.composing&&(h.composing=0,h.dispatchEvent(new Event(s)))},f=()=>{t.removeEventListener(s,l),t.removeEventListener("change",a),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",p),t.removeEventListener("change",p)},l=u=>{let h=u.target;if(!h||h.composing)return;let d=h.value,C=qt(r()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(xr.test(d[d.length-1])&&d.split(xr).length===2){if(d+="0",d=parseFloat(d),isNaN(d))d="";else if(n()===d)return}d=parseFloat(d)}isNaN(d)&&(d=""),t.value=d}else C.trim&&(d=d.trim());n(d)};return t.addEventListener(s,l),t.addEventListener("change",a),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",p),t.addEventListener("change",p),f},ns=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=me(t),i=t.checked,a=e();if(E(a)){let c=Vt(a,s),p=c!==-1;i&&!p?a.push(s):!i&&p&&a.splice(c,1)}else Z(a)?i?a.add(s):a.delete(s):e(ss(t,i))};return t.addEventListener(n,o),r},me=t=>"_value"in t?t._value:t.value,Lr="trueValue",rs="falseValue",kr="true-value",os="false-value",ss=(t,e)=>{let n=e?Lr:rs;if(n in t)return t[n];let r=e?kr:os;return t.hasAttribute(r)?t.getAttribute(r):e},is=(t,e)=>{if(Lr in t)return le(e,t.trueValue);let r=kr;return t.hasAttribute(r)?le(e,t.getAttribute(r)):le(e,!0)},as=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=me(t);e(s)};return t.addEventListener(n,o),r},cs=(t,e,n)=>{let r="change",o=()=>{t.removeEventListener(r,s)},s=()=>{let a=qt(n()[1]).number,c=Array.prototype.filter.call(t.options,p=>p.selected).map(p=>a?Rr(me(p)):me(p));if(t.multiple){let p=e();try{if($t(e),Z(p)){p.clear();for(let f of c)p.add(f)}else E(p)?(p.splice(0),p.push(...c)):e(c)}finally{Ft(e),F(e)}}else e(c[0])};return t.addEventListener(r,s),o};var ps=["stop","prevent","capture","self","once","left","right","middle","passive"],fs=t=>{let e={};if($(t))return;let n=t.split(",");for(let r of ps)e[r]=n.includes(r);return e},Tn={isLazy:(t,e)=>e===-1&&t%2===0,isLazyKey:(t,e)=>e===0&&!t.endsWith("_flags"),once:!1,collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{var f,l;if(o){let u=e.value(),h=P(o.value()[0]);return W(h)?bn(t,B(h),()=>e.value()[0],(f=s==null?void 0:s.join(","))!=null?f:u[1]):()=>{}}else if(r){let u=e.value();return bn(t,B(r),()=>e.value()[0],(l=s==null?void 0:s.join(","))!=null?l:u[1])}let i=[],a=()=>{i.forEach(u=>u())},c=e.value(),p=c.length;for(let u=0;u<p;++u){let h=c[u];if(H(h)&&(h=h()),N(h))for(let d of Object.entries(h)){let C=d[0],I=()=>{let b=e.value()[u];return H(b)&&(b=b()),b=b[C],H(b)&&(b=b()),b},x=h[C+"_flags"];i.push(bn(t,C,I,x))}else U(2,name,t)}return a}},ls=(t,e)=>{if(t.startsWith("keydown")||t.startsWith("keyup")||t.startsWith("keypress")){e!=null||(e="");let n=t.split(".").concat(e.split(","));t=n[0];let r=n[1],o=n.includes("ctrl"),s=n.includes("shift"),i=n.includes("alt"),a=n.includes("meta"),c=p=>!(o&&!p.ctrlKey||s&&!p.shiftKey||i&&!p.altKey||a&&!p.metaKey);return r?[t,p=>c(p)?p.key.toUpperCase()===r.toUpperCase():!1]:[t,c]}return[t,n=>!0]},bn=(t,e,n,r)=>{if($(e))return U(5,name,t),()=>{};let o=fs(r),s=o?{capture:o.capture,passive:o.passive,once:o.once}:void 0,i;[e,i]=ls(e,r);let a=f=>{if(!i(f)||!n&&e==="submit"&&(o!=null&&o.prevent))return;let l=n(f);H(l)&&(l=l(f)),H(l)&&l(f)},c=()=>{t.removeEventListener(e,p,s)},p=f=>{if(!o){a(f);return}try{if(o.left&&f.button!==1||o.middle&&f.button!==2||o.right&&f.button!==3||o.self&&f.target!==t)return;o.stop&&f.stopPropagation(),o.prevent&&f.preventDefault(),a(f)}finally{o.once&&c()}};return t.addEventListener(e,p,s),c};var Ir={onChange:(t,e,n,r,o,s)=>{if(r){s&&s.includes("camel")&&(r=B(r)),We(t,r,e[0]);return}let i=e.length;for(let a=0;a<i;++a){let c=e[a];if(E(c)){let p=c[0],f=c[1];We(t,p,f)}else if(N(c))for(let p of Object.entries(c)){let f=p[0],l=p[1];We(t,f,l)}else{let p=e[a++],f=e[a];We(t,p,f)}}}};function ms(t){return!!t||t===""}var We=(t,e,n)=>{if(te(e)){U(3,name,t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(oe),1),t[e]=n!=null?n:"";return}let r=t.tagName;if(e==="value"&&r!=="PROGRESS"&&!r.includes("-")){t._value=n;let s=r==="OPTION"?t.getAttribute("value"):t.value,i=n!=null?n:"";s!==i&&(t.value=i),n==null&&t.removeAttribute(e);return}let o=!1;if(n===""||n==null){let s=typeof t[e];s==="boolean"?n=ms(n):n==null&&s==="string"?(n="",o=!0):s==="number"&&(n=0,o=!0)}try{t[e]=n}catch(s){o||U(4,e,r,n,s)}o&&t.removeAttribute(e)};var Dr={once:!0,onBind:(t,e,n)=>{let r=e.value()[0],o=E(r),s=e.refs[0];return o?r.push(t):s?s==null||s(t):e.context[n]=t,()=>{if(o){let i=r.indexOf(t);i!==-1&&r.splice(i,1)}else s==null||s(null)}}};var Ur={onChange:(t,e)=>{let n=ye(t).data,r=n._ord;Mn(r)&&(r=n._ord=t.style.display),!!e[0]?t.style.display=r:t.style.display="none"}};var Pr={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let c=0;c<a;++c)Hr(t,s[c],i==null?void 0:i[c])}else Hr(t,s,i)}}},Hr=(t,e,n)=>{let r=t.style,o=W(e);if(e&&!o){if(n&&!W(n))for(let s in n)e[s]==null&&Cn(r,s,"");for(let s in e)Cn(r,s,e[s])}else{let s=r.display;if(o?n!==e&&(r.cssText=e):n&&t.removeAttribute("style"),"_ord"in ye(t).data)return;r.display=s}},_r=/\s*!important$/;function Cn(t,e,n){if(E(n))n.forEach(r=>{Cn(t,e,r)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let r=us(t,e);_r.test(n)?t.setProperty(Pe(r),n.replace(_r,""),"important"):t[r]=n}}var Br=["Webkit","Moz","ms"],En={};function us(t,e){let n=En[e];if(n)return n;let r=B(e);if(r!=="filter"&&r in t)return En[e]=r;r=et(r);for(let o=0;o<Br.length;o++){let s=Br[o]+r;if(s in t)return En[e]=s}return e}var Q=t=>ds(P(t)),ds=t=>{if(!t||!N(t))return t;if(E(t))return t.map(Q);if(Z(t)){let n=new Set;for(let r of t.keys())n.add(Q(r));return n}if(he(t)){let n=new Map;for(let r of n)n.set(Q(r[0]),Q(r[1]));return n}let e=ct({},t);for(let n of Object.entries(e))e[n[0]]=Q(n[1]);return e};var jr={onChange:(t,e)=>{var r;let n=e[0];t.textContent=Z(n)?JSON.stringify(Q([...n])):he(n)?JSON.stringify(Q([...n])):N(n)?JSON.stringify(Q(n)):(r=n==null?void 0:n.toString())!=null?r:""}};var Vr={onChange:(t,e)=>{We(t,"value",e[0])}};var Le=t=>(t==null?void 0:t[lt])===1;var Re=t=>{if(je(t))return t;let e;if(y(t)?(e=t,t=e()):e=z(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[lt]=1,E(t)){let n=t.length;for(let r=0;r<n;++r){let o=t[r];Le(o)||(t[r]=Re(o))}return e}if(!N(t))return e;for(let n of Object.entries(t)){let r=n[1];if(Le(r))continue;let o=n[0];Qe(o)||(t[o]=Re(r))}return e};var xe=class xe{constructor(e){m(this,"_",{});m(this,"f",{});m(this,"Ze",()=>Object.keys(this._).filter(e=>e.length===1||!e.startsWith(":")));m(this,"ye",new Map);m(this,"he",new Map);m(this,"forGrowThreshold",10);m(this,"globalContext");m(this,"useInterpolation",!0);if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.xt()}static getDefault(){var e;return(e=xe.je)!=null?e:xe.je=new xe}xt(){let e={},n=globalThis;for(let r of xe.Tt.split(","))e[r]=n[r];return e.ref=Re,e.sref=z,e.flatten=Q,e}addComponent(...e){for(let n of e){if(!n.defaultName){Xe.warning("Registered component's default name is not defined",n);continue}this.ye.set(et(n.defaultName),n),this.he.set(et(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this._={".":Ir,":":gn,"@":Tn,[`${e}on`]:Tn,[`${e}bind`]:gn,[`${e}html`]:Cr,[`${e}text`]:jr,[`${e}show`]:Ur,[`${e}model`]:Mr,":style":Pr,":class":Er,":ref":Dr,":value":Vr,teleport:Mt},this.f={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,props:":props",propsOnce:":props-once",bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this._,this.f)}};m(xe,"je"),m(xe,"Tt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var ie=xe;var zt=(t,e)=>{if(!t)return;let n=(e!=null?e:ie.getDefault()).f;for(let r of gs(t,n.pre))ys(r,n.text)},hs=/({{[^]*?}})/g,ys=(t,e)=>{var i;let n=t.textContent;if(!n)return;let r=hs,o=n.split(r);if(o.length<=1)return;if(((i=t.parentElement)==null?void 0:i.childNodes.length)===1&&o.length===3){let a=o[1];if($(o[0])&&$(o[2])&&a.startsWith("{{")&&a.endsWith("}}")){let c=t.parentElement;c.setAttribute(e,a.substring(2,a.length-2)),c.innerText="";return}}let s=document.createDocumentFragment();for(let a of o)if(a.startsWith("{{")&&a.endsWith("}}")){let c=document.createElement("span");c.setAttribute(e,a.substring(2,a.length-2)),s.appendChild(c)}else s.appendChild(document.createTextNode(a));t.replaceWith(s)},gs=(t,e)=>{let n=[],r=o=>{var s,i;if(o.nodeType===Node.TEXT_NODE)(s=o.textContent)!=null&&s.includes("{{")&&n.push(o);else{if((i=o==null?void 0:o.hasAttribute)!=null&&i.call(o,e))return;for(let a of fe(o))r(a)}};return r(t),n};var bs="svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view",Ts=new Set(bs.toUpperCase().split(",")),Es="http://www.w3.org/2000/svg",$r=(t,e)=>{se(t)?t.content.appendChild(e):t.appendChild(e)},Rn=(t,e,n,r)=>{var i;let o=t.t;if(o){let a=n&&Ts.has(o.toUpperCase())?document.createElementNS(Es,o.toLowerCase()):document.createElement(o),c=t.a;if(c)for(let f of Object.entries(c)){let l=f[0],u=f[1];l.startsWith("#")&&(u=l.substring(1),l="name"),a.setAttribute(yt(l,r),u)}let p=t.c;if(p)for(let f of p)Rn(f,a,n,r);$r(e,a);return}let s=t.d;if(s){let a;switch((i=t.n)!=null?i:Node.TEXT_NODE){case Node.COMMENT_NODE:a=document.createComment(s);break;case Node.TEXT_NODE:a=document.createTextNode(s);break}if(a)$r(e,a);else throw new Error("unsupported node type.")}},ke=(t,e,n)=>{n!=null||(n=ie.getDefault());let r=document.createDocumentFragment();if(!E(t))return Rn(t,r,!!e,n),r;for(let o of t)Rn(o,r,!!e,n);return r};var Fr=(t,e={selector:"#app"},n)=>{Gn(t)&&(t=t.context);let r=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!r||!Oe(r))throw _(0);n||(n=ie.getDefault());let o=()=>{for(let a of[...r.childNodes])j(a)},s=a=>{for(let c of a)r.appendChild(c)};if(e.html){let a=document.createRange().createContextualFragment(e.html);o(),s(a.childNodes),e.element=a}else if(e.json){let a=ke(e.json,e.isSVG,n);o(),s(a.childNodes)}return n.useInterpolation&&zt(r,n),new xn(t,r,n).x(),D(r,()=>{Ee(t)}),Ot(t),{context:t,unmount:()=>{j(r)},unbind:()=>{oe(r)}}},xn=class{constructor(e,n,r){m(this,"Et");m(this,"Fe");m(this,"o");m(this,"h");m(this,"p");this.Et=e,this.Fe=n,this.o=r,this.h=new Pt([e],r),this.p=new Lt(this.h)}x(){this.p.G(this.Fe)}};var Ge=t=>{if(E(t))return t.map(o=>Ge(o));let e={};if(t.tagName)e.t=t.tagName;else return t.nodeType===Node.COMMENT_NODE&&(e.n=Node.COMMENT_NODE),t.textContent&&(e.d=t.textContent),e;let n=t.getAttributeNames();n.length>0&&(e.a=Object.fromEntries(n.map(o=>[o,t.getAttribute(o)])));let r=fe(t);return r.length>0&&(e.c=[...r].map(o=>Ge(o))),e};var qr=(t,e,n={})=>{var s,i,a,c;let r=!1;if(e.element){let p=e.element;p.remove(),e.element=p}else if(e.selector){let p=document.querySelector(e.selector);if(!p)throw _(1,name);p.remove(),e.element=p}else if(e.html){let p=document.createRange().createContextualFragment(e.html);e.element=p}else e.json&&(e.element=ke(e.json,e.isSVG,n.config),r=!0);e.element||(e.element=document.createDocumentFragment()),((s=n.useInterpolation)==null||s)&&zt(e.element);let o=e.element;if(!r&&(((a=e.isSVG)!=null?a:Ze(o)&&((i=o.hasAttribute)!=null&&i.call(o,"isSVG")))||Ze(o)&&o.querySelector("[isSVG]"))){let p=e.element.content,f=p?[...p.childNodes]:[...o.childNodes],l=Ge(f);e.element=ke(l,!0,n.config)}return{context:t,template:e.element,inheritAttrs:(c=n.inheritAttrs)!=null?c:!0,props:n.props,defaultName:n.defaultName}};var zr=t=>{let e,n={},r=(...o)=>{if(o.length<=2&&0 in o)throw _(4);return e&&!n.isStopped?e(...o):(e=Cs(t,n),e(...o))};return r[J]=1,Te(r,!0),r.stop=()=>{var o,s;return(s=(o=n.ref)==null?void 0:o.stop)==null?void 0:s.call(o)},G(()=>r.stop(),!0),r},Cs=(t,e)=>{var s;let n=(s=e.ref)!=null?s:z(null);e.ref=n,e.isStopped=!1;let r=0,o=Ae(()=>{if(r>0){o(),e.isStopped=!0,F(n);return}n(t()),++r});return n.stop=o,n};var Kr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=Rs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},Rs=(t,e,n)=>{var a;let r=(a=n.ref)!=null?a:z(null);n.ref=r,n.isStopped=!1;let o=0,s=c=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(...t.map(p=>p()))),++o},i=[];for(let c of t){let p=S(c,s);i.push(p)}return s(null),r.stop=()=>{i.forEach(c=>{c()})},r};var Wr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=xs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},xs=(t,e,n)=>{var s;let r=(s=n.ref)!=null?s:z(null);n.ref=r,n.isStopped=!1;let o=0;return r.stop=S(t,i=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(i)),++o},!0),r};var Gr=t=>(t[mt]=1,t);var Jr=(t,e)=>{if(!e)throw new Error("persist requires a string key.");let r=Le(t)?Re:a=>a,o=()=>localStorage.setItem(e,JSON.stringify(Q(t()))),s=localStorage.getItem(e);s!=null?t(r(JSON.parse(s))):o();let i=Ae(o);return G(()=>i,!0),t};var vn=(t,...e)=>{let n="";return e.length===0?t.join():(t.forEach((r,o)=>{n+=r+e[o]}),n)},Qr=vn;var Xr=(t,e,n)=>{let r=[],o=()=>{e(t.map(i=>i()))};for(let i of t)r.push(S(i,o));n&&o();let s=()=>{for(let i of r)i()};return G(s,!0),s};var Yr=t=>{if(!y(t))throw _(3,"observe");return t(void 0,void 0,2)};var Zr=t=>{Sn();try{t()}finally{wn()}},Sn=()=>{Ne.set||(Ne.set=new Set)},wn=()=>{let t=Ne.set;if(t){delete Ne.set;for(let e of t)try{F(e)}catch(n){console.error(n)}}};var eo=t=>{var e;(e=we())==null||e.onMounted.push(t)};
1
+ "use strict";var at=Object.defineProperty,to=Object.defineProperties,no=Object.getOwnPropertyDescriptor,ro=Object.getOwnPropertyDescriptors,oo=Object.getOwnPropertyNames,On=Object.getOwnPropertySymbols;var An=Object.prototype.hasOwnProperty,so=Object.prototype.propertyIsEnumerable;var pt=Math.pow,Gt=(t,e,n)=>e in t?at(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,ct=(t,e)=>{for(var n in e||(e={}))An.call(e,n)&&Gt(t,n,e[n]);if(On)for(var n of On(e))so.call(e,n)&&Gt(t,n,e[n]);return t},Nn=(t,e)=>to(t,ro(e));var io=(t,e)=>{for(var n in e)at(t,n,{get:e[n],enumerable:!0})},ao=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of oo(e))!An.call(t,o)&&o!==n&&at(t,o,{get:()=>e[o],enumerable:!(r=no(e,o))||r.enumerable});return t};var po=t=>ao(at({},"__esModule",{value:!0}),t);var l=(t,e,n)=>(Gt(t,typeof e!="symbol"?e+"":e,n),n);var vs={};io(vs,{ComponentHead:()=>$e,RegorConfig:()=>ie,addUnbinder:()=>D,batch:()=>Zr,collectRefs:()=>Tt,computeMany:()=>Kr,computeRef:()=>Wr,computed:()=>zr,createApp:()=>Fr,createComponent:()=>qr,endBatch:()=>wn,entangle:()=>Ot,flatten:()=>Q,getBindData:()=>he,html:()=>vn,isDeepRef:()=>Le,isRaw:()=>je,isRef:()=>h,markRaw:()=>Gr,observe:()=>S,observeMany:()=>Xr,observerCount:()=>Yr,onMounted:()=>eo,onUnmounted:()=>G,pause:()=>Ft,persist:()=>Jr,raw:()=>Qr,ref:()=>Re,removeNode:()=>j,resume:()=>qt,silence:()=>bt,sref:()=>z,startBatch:()=>Sn,toFragment:()=>ke,toJsonTemplate:()=>Ge,trigger:()=>F,unbind:()=>oe,unref:()=>P,useScope:()=>wt,warningHandler:()=>Xe,watchEffect:()=>Ae});module.exports=po(vs);var H=t=>typeof t=="function",W=t=>typeof t=="string",Mn=t=>typeof t=="undefined",te=t=>t==null||typeof t=="undefined",$=t=>typeof t!="string"||!(t!=null&&t.trim()),co=Object.prototype.toString,Jt=t=>co.call(t),ye=t=>Jt(t)==="[object Map]",Z=t=>Jt(t)==="[object Set]",Qt=t=>Jt(t)==="[object Date]",Qe=t=>typeof t=="symbol",E=Array.isArray,N=t=>t!==null&&typeof t=="object";var Ln={0:"App root element is missing",1:t=>`${t} component template cannot be found.`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly.",5:"ref is readonly."},_=(t,...e)=>{let n=Ln[t];return new Error(H(n)?n.call(Ln,...e):n)};var De=Symbol(":regor");var he=t=>{let e=t[De];if(e)return e;let n={unbinders:[],data:{}};return t[De]=n,n};var D=(t,e)=>{he(t).unbinders.push(e)};var ft=[],kn=()=>{let t={onMounted:[],onUnmounted:[]};return ft.push(t),t},we=t=>{let e=ft[ft.length-1];if(!e&&!t)throw _(2);return e},In=t=>{let e=we();return t&&Yt(t),ft.pop(),e},Xt=Symbol("csp"),Yt=t=>{let e=t,n=e[Xt];if(n){let r=we();if(n===r)return;r.onMounted.length>0&&n.onMounted.push(...r.onMounted),r.onUnmounted.length>0&&n.onUnmounted.push(...r.onUnmounted);return}e[Xt]=we()},mt=t=>t[Xt];var G=(t,e)=>{var n;(n=we(e))==null||n.onUnmounted.push(t)};var lt=Symbol("ref"),J=Symbol("sref"),ut=Symbol("raw");var h=t=>(t==null?void 0:t[J])===1;var S=(t,e,n)=>{if(!h(t))throw _(3,"observe");n&&e(t());let o=t(void 0,void 0,0,e);return G(o,!0),o};var oe=t=>{let e=[t];for(;e.length>0;){let n=e.shift();fo(n);let r=n.childNodes;if(r)for(let o of r)e.push(o)}},fo=t=>{let e=t[De];if(e){for(let n of e.unbinders)n();e.unbinders.splice(0),delete t[De]}};var j=t=>{t.remove(),setTimeout(()=>oe(t),1)};var Dn={8:t=>`Model binding requires a ref at ${t.outerHTML}`,7:t=>`Model binding is not supported on ${t.tagName} element at ${t.outerHTML}`,0:(t,e)=>`${t} binding expression is missing at ${e.outerHTML}`,1:(t,e,n)=>`invalid ${t} expression: ${e} at ${n.outerHTML}`,2:(t,e)=>`${t} requires object expression at ${e.outerHTML}`,3:(t,e)=>`${t} binder: key is empty on ${e.outerHTML}.`,4:(t,e,n,r)=>({msg:`Failed setting prop "${t}" on <${e.toLowerCase()}>: value ${n} is invalid.`,args:[r]}),5:(t,e)=>`${t} binding missing event type at ${e.outerHTML}`,6:(t,e)=>({msg:t,args:[e]})},U=(t,...e)=>{let n=Dn[t],r=H(n)?n.call(Dn,...e):n,o=Xe.warning;o&&(W(r)?o(r):o(r,...r.args))},Xe={warning:console.warn};var yt={},dt={},Un=1,Hn=t=>{let e=(Un++).toString();return yt[e]=t,dt[e]=0,e},Zt=t=>{dt[t]+=1},en=t=>{--dt[t]===0&&(delete yt[t],delete dt[t])},_n=t=>yt[t],tn=()=>Un!==1&&Object.keys(yt).length>0,Ye="r-switch",mo=t=>{let e=t.filter(r=>Oe(r)).map(r=>[...r.querySelectorAll("[r-switch]")].map(o=>o.getAttribute(Ye))),n=new Set;return e.forEach(r=>{r.forEach(o=>o&&n.add(o))}),[...n]},Ue=(t,e)=>{if(!tn())return;let n=mo(e);n.length!==0&&(n.forEach(Zt),D(t,()=>{n.forEach(en)}))};var nn=(t,e,n,r)=>{let o=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,r),o.push(i)}be(e,o)},rn=Symbol("r-if"),Bn=Symbol("r-else"),Pn=t=>t[Bn]===1,ht=class{constructor(e){l(this,"p");l(this,"P");l(this,"q");l(this,"K");l(this,"z");l(this,"b");l(this,"T");this.p=e,this.P=e.o.f.if,this.q=Be(e.o.f.if),this.K=e.o.f.else,this.z=e.o.f.elseif,this.b=e.o.f.for,this.T=e.o.f.pre}$e(e,n){let r=e.parentElement;for(;r!==null&&r!==document.documentElement;){if(r.hasAttribute(n))return!0;r=r.parentElement}return!1}N(e){let n=e.hasAttribute(this.P),r=ge(e,this.q);for(let o of r)this.x(o);return n}W(e){return e[rn]?!0:(e[rn]=!0,ge(e,this.q).forEach(n=>n[rn]=!0),!1)}x(e){if(e.hasAttribute(this.T)||this.W(e)||this.$e(e,this.b))return;let n=e.getAttribute(this.P);if(!n){U(0,this.P,e);return}e.removeAttribute(this.P),this.k(e,n)}B(e,n,r){let o=_e(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${r!=null?r:""}`);s.insertBefore(i,e),Ue(i,o),o.forEach(p=>{j(p)}),e.remove(),n!=="if"&&(e[Bn]=1);let a=document.createComment(`__end__ :${n}${r!=null?r:""}`);return s.insertBefore(a,i.nextSibling),{nodes:o,parent:s,commentBegin:i,commentEnd:a}}pe(e,n){if(!e)return[];let r=e.nextElementSibling;if(e.hasAttribute(this.K)){e.removeAttribute(this.K);let{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"else");return[{mount:()=>{nn(o,this.p,s,a)},unmount:()=>{ce(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let o=e.getAttribute(this.z);if(!o)return[];e.removeAttribute(this.z);let{nodes:s,parent:i,commentBegin:a,commentEnd:p}=this.B(e,"elseif",` => ${o} `),c=this.p.h.C(o),f=c.value,m=this.pe(r,n),u=[];D(a,()=>{c.stop();for(let C of u)C();u.length=0});let d=S(f,n);return u.push(d),[{mount:()=>{nn(s,this.p,i,p)},unmount:()=>{ce(a,p)},isTrue:()=>!!f()[0],isMounted:!1}].concat(m)}}k(e,n){let r=e.nextElementSibling,{nodes:o,parent:s,commentBegin:i,commentEnd:a}=this.B(e,"if",` => ${n} `),p=this.p.h.C(n),c=p.value,f=!1,m=this.p.h,u=m.V(),y=()=>{m.v(u,()=>{if(c()[0])f||(nn(o,this.p,s,a),f=!0),d.forEach(b=>{b.unmount(),b.isMounted=!1});else{ce(i,a),f=!1;let b=!1;for(let L of d)!b&&L.isTrue()?(L.isMounted||(L.mount(),L.isMounted=!0),b=!0):(L.unmount(),L.isMounted=!1)}})},d=this.pe(r,y),C=[];D(i,()=>{p.stop();for(let b of C)b();C.length=0}),y();let x=S(c,y);C.push(x)}};var _e=t=>{let e=se(t)?t.content.childNodes:[t];return Array.from(e).filter(n=>{let r=n==null?void 0:n.tagName;return r!=="SCRIPT"&&r!=="STYLE"})},be=(t,e)=>{for(let n of e)!Pn(n)&&t.G(n)},ge=(t,e)=>{var r;let n=t.querySelectorAll(e);return(r=t.matches)!=null&&r.call(t,e)?[t,...n]:n},se=t=>t instanceof HTMLTemplateElement,Oe=t=>t.nodeType===Node.ELEMENT_NODE,Ze=t=>t.nodeType===Node.ELEMENT_NODE,jn=t=>t instanceof HTMLSlotElement,fe=t=>se(t)?t.content.childNodes:t.childNodes,ce=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let r=n.nextSibling;j(n),n=r}},Te=(t,e)=>{Object.defineProperty(t,"value",{get(){return t()},set(n){if(e)throw new Error("value is readonly.");return t(n)},enumerable:!0,configurable:!1})},Vn=(t,e)=>{if(!t)return!1;if(t.startsWith("["))return t.substring(1,t.length-1);let n=e.length;return t.startsWith(e)?t.substring(n,t.length-n):!1},Be=t=>`[${CSS.escape(t)}]`,gt=(t,e)=>(t.startsWith("@")&&(t=e.f.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.f.dynamic)),t),on=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},lo=/-(\w)/g,B=on(t=>t&&t.replace(lo,(e,n)=>n?n.toUpperCase():"")),uo=/\B([A-Z])/g,Pe=on(t=>t&&t.replace(uo,"-$1").toLowerCase()),et=on(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var ne=[],$n=t=>{var e;ne.length!==0&&((e=ne[ne.length-1])==null||e.add(t))},Ae=t=>{if(!t)return()=>{};let e={stop:()=>{}};return yo(t,e),G(()=>e.stop(),!0),e.stop},yo=(t,e)=>{if(!t)return;let n=[],r=!1,o=()=>{for(let s of n)s();n=[],r=!0};e.stop=o;try{let s=new Set;if(ne.push(s),t(i=>n.push(i)),r)return;for(let i of[...s]){let a=S(i,()=>{o(),Ae(t)});n.push(a)}}finally{ne.pop()}},bt=t=>{let e=ne.length,n=e>0&&ne[e-1];try{return n&&ne.push(null),t()}finally{n&&ne.pop()}},Tt=t=>{try{let e=new Set;return ne.push(e),{value:t(),refs:[...e]}}finally{ne.pop()}};var je=t=>!!t&&t[ut]===1;var F=(t,e,n)=>{if(!h(t))return;let r=t;if(r(void 0,e,1),!n)return;let o=r();if(o){if(E(o)||Z(o))for(let s of o)F(s,e,!0);else if(ye(o))for(let s of o)F(s[0],e,!0),F(s[1],e,!0);if(N(o))for(let s in o)F(o[s],e,!0)}};function ho(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var Ve=(t,e,n)=>{n.forEach(function(r){let o=t[r];ho(e,r,function(...i){let a=o.apply(this,i),p=this[J];for(let c of p)F(c);return a})})},Et=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var Fn=Array.prototype,sn=Object.create(Fn),go=["push","pop","shift","unshift","splice","sort","reverse"];Ve(Fn,sn,go);var qn=Map.prototype,Ct=Object.create(qn),bo=["set","clear","delete"];Et(Ct,"Map");Ve(qn,Ct,bo);var zn=Set.prototype,Rt=Object.create(zn),To=["add","clear","delete"];Et(Rt,"Set");Ve(zn,Rt,To);var Ne={},z=t=>{if(h(t)||je(t))return t;let e={auto:!0,_value:t},n=p=>N(p)?J in p?!0:E(p)?(Object.setPrototypeOf(p,sn),!0):Z(p)?(Object.setPrototypeOf(p,Rt),!0):ye(p)?(Object.setPrototypeOf(p,Ct),!0):!1:!1,r=n(t),o=new Set,s=(p,c)=>{if(Ne.set){Ne.set.add(a);return}o.size!==0&&bt(()=>{for(let f of[...o.keys()])o.has(f)&&f(p,c)})},i=p=>{let c=p[J];c||(p[J]=c=new Set),c.add(a)},a=(...p)=>{if(!(2 in p)){let f=p[0],m=p[1];return 0 in p?e._value===f||h(f)&&(f=f(),e._value===f)?f:(n(f)&&i(f),e._value=f,e.auto&&s(f,m),e._value):($n(a),e._value)}switch(p[2]){case 0:{let f=p[3];if(!f)return()=>{};let m=u=>{o.delete(u)};return o.add(f),()=>{m(f)}}case 1:{let f=p[1],m=e._value;s(m,f);break}case 2:return o.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[J]=1,Te(a,!1),r&&i(t),a};var P=t=>h(t)?t():t;var tt=class{constructor(e){l(this,"E",[]);l(this,"H",new Map);l(this,"J");this.J=e}get S(){return this.E.length}Q(e){let n=this.J(e.value);n&&this.H.set(n,e)}X(e){var r;let n=this.J((r=this.E[e])==null?void 0:r.value);n&&this.H.delete(n)}static qe(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.E.push(e),this.Q(e)}Ke(e,n){let r=this.S;for(let o=e;o<r;++o)this.E[o].order=o+1;n.order=e,this.E.splice(e,0,n),this.Q(n)}I(e){return this.E[e]}Y(e,n){this.X(e),this.E[e]=n,this.Q(n),n.order=e}ce(e){this.X(e),this.E.splice(e,1);let n=this.S;for(let r=e;r<n;++r)this.E[r].order=r}fe(e){let n=this.S;for(let r=e;r<n;++r)this.X(r);this.E.splice(e)}Rt(e){return this.H.has(e)}ze(e){var r;let n=this.H.get(e);return(r=n==null?void 0:n.order)!=null?r:-1}};var an=Symbol("r-for"),vt=class vt{constructor(e){l(this,"p");l(this,"b");l(this,"Z");l(this,"T");this.p=e,this.b=e.o.f.for,this.Z=Be(this.b),this.T=e.o.f.pre}N(e){let n=e.hasAttribute(this.b),r=ge(e,this.Z);for(let o of r)this.We(o);return n}W(e){return e[an]?!0:(e[an]=!0,ge(e,this.Z).forEach(n=>n[an]=!0),!1)}We(e){if(e.hasAttribute(this.T)||this.W(e))return;let n=e.getAttribute(this.b);if(!n){U(0,this.b,e);return}e.removeAttribute(this.b),this.Ge(e,n)}le(e){return te(e)?[]:(H(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(r=>({*[Symbol.iterator](){for(let o=1;o<=r;o++)yield o}}))(e):Object.entries(e))}Ge(e,n){var it;let r=this.Je(n);if(!(r!=null&&r.list)){U(1,this.b,n,e);return}let o=this.p.o.f.key,s=this.p.o.f.keyBind,i=(it=e.getAttribute(o))!=null?it:e.getAttribute(s);e.removeAttribute(o),e.removeAttribute(s);let a=i?v=>{var A;return P((A=P(v))==null?void 0:A[i])}:v=>v,p=(v,A)=>a(v)===a(A),c=_e(e),f=e.parentNode;if(!f)return;let m=`${this.b} => ${n}`,u=new Comment(`__begin__ ${m}`);f.insertBefore(u,e),Ue(u,c),c.forEach(v=>{j(v)}),e.remove();let y=new Comment(`__end__ ${m}`);f.insertBefore(y,u.nextSibling);let d=this.p,C=d.h,I=C.V(),x=(v,A,q)=>{let w=r.createContext(A,v),Y=tt.qe(w.index,A);return C.v(I,()=>{C.w(w.ctx);let re=q.previousSibling,Ie=[];for(let g of c){let M=g.cloneNode(!0);f.insertBefore(M,q),Ie.push(M)}for(be(d,Ie),re=re.nextSibling;re!==q;)Y.items.push(re),re=re.nextSibling}),Y},b=(v,A)=>{let q=O.I(v).items,w=q[q.length-1].nextSibling;for(let Y of q)j(Y);O.Y(v,x(v,A,w))},L=(v,A)=>{O.w(x(v,A,y))},X=v=>{for(let A of O.I(v).items)j(A)},ee=v=>{let A=O.S;for(let q=v;q<A;++q)O.I(q).index(q)},Je=v=>{let A=O.S;H(v)&&(v=v());let q=P(v[0]);if(E(q)&&q.length===0){ce(u,y),O.fe(0);return}let w=0,Y=Number.MAX_SAFE_INTEGER,re=A,Ie=this.p.o.forGrowThreshold,g=()=>O.S<re+Ie;for(let T of this.le(v[0])){let V=()=>{if(w<A){let K=O.I(w++);if(p(K.value,T))return;let R=O.ze(a(T));if(R>=w&&R-w<10){if(--w,Y=Math.min(Y,w),X(w),O.ce(w),--A,R>w+1)for(let k=w;k<R-1&&k<A&&!p(O.I(w).value,T);)++k,X(w),O.ce(w),--A;V();return}g()?(O.Ke(w-1,x(w,T,O.I(w-1).items[0])),Y=Math.min(Y,w-1),++A):b(w-1,T)}else L(w++,T)};V()}let M=w;for(A=O.S;w<A;)X(w++);O.fe(M),ee(Y)},Kt=()=>{de=S(ot,Je)},rt=()=>{ue.stop(),de()},ue=C.C(r.list),ot=ue.value,de,st=0,O=new tt(a);for(let v of this.le(ot()[0]))O.w(x(st++,v,y));D(u,rt),Kt()}Je(e){var p,c;let n=vt.Qe.exec(e);if(!n)return;let r=(n[1]+((p=n[2])!=null?p:"")).split(",").map(f=>f.trim()),o=r.length>1?r.length-1:-1,s=o!==-1&&((c=r[o])!=null&&c.startsWith("#"))?r[o]:"";s&&r.splice(o,1);let i=n[3];if(!i||r.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(f,m)=>{let u={},y=P(f);if(!a&&r.length===1)u[r[0]]=f;else if(E(y)){let C=0;for(let I of r)u[I]=y[C++]}else for(let C of r)u[C]=y[C];let d={ctx:u,index:z(-1)};return s&&(d.index=u[s.substring(1)]=z(m)),d}}}};l(vt,"Qe",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+([^\s]+)\s*/);var xt=vt;var Eo=(t,e)=>{for(let n of t){let r=n.cloneNode(!0);e.appendChild(r)}},St=class{constructor(e){l(this,"p");l(this,"D");l(this,"ue");this.p=e,this.D=e.o.f.is,this.ue=Be(this.D)+", [is]"}N(e){let n=e.hasAttribute(this.D),r=ge(e,this.ue);for(let o of r)this.x(o);return n}x(e){let n=e.getAttribute(this.D);if(!n){if(n=e.getAttribute("is"),!n||!n.startsWith("regor:"))return;n=`'${n.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.D),this.k(e,n)}B(e,n){let r=_e(e),o=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);o.insertBefore(s,e),Ue(s,r),r.forEach(a=>{j(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${n!=null?n:""}`);return o.insertBefore(i,s.nextSibling),{nodes:r,parent:o,commentBegin:s,commentEnd:i}}k(e,n){let{nodes:r,parent:o,commentBegin:s,commentEnd:i}=this.B(e,` => ${n} `),a=this.p.h.C(n),p=a.value,c=this.p.h,f=c.V(),m={name:""},u=se(e)?r:[...r[0].childNodes],y=()=>{c.v(f,()=>{let x=p()[0];if(N(x)&&(x=x.name),!W(x)||$(x)){ce(s,i);return}if(m.name===x)return;ce(s,i);let b=document.createElement(x);for(let L of e.getAttributeNames())L!==this.D&&b.setAttribute(L,e.getAttribute(L));Eo(u,b),o.insertBefore(b,i),this.p.G(b),m.name=x})},d=[];D(s,()=>{a.stop();for(let x of d)x();d.length=0}),y();let I=S(p,y);d.push(I)}};var Kn={collectRefObj:!0,onBind:(t,e)=>S(e.value,()=>{let r=e.value(),o=e.context,s=r[0];if(N(s))for(let i of Object.entries(s)){let a=i[0],p=i[1],c=o[a];c!==p&&(h(c)?c(p):o[a]=p)}},!0)};var Wn={collectRefObj:!0,once:!0,onBind:(t,e)=>{let n=e.value(),r=e.context,o=n[0];if(!N(o))return()=>{};for(let s of Object.entries(o)){let i=s[0],a=s[1],p=r[i];p!==a&&(h(p)?p(a):r[i]=a)}return()=>{}}};var Ee=t=>{var n,r;let e=(n=mt(t))==null?void 0:n.onUnmounted;e==null||e.forEach(o=>{o()}),(r=t.unmounted)==null||r.call(t)};var $e=class{constructor(e,n,r,o,s){l(this,"props");l(this,"start");l(this,"end");l(this,"ctx");l(this,"autoProps",!0);l(this,"entangle",!0);l(this,"disableSwitch",!1);l(this,"onAutoPropsAssigned");l(this,"me");l(this,"emit",(e,n)=>{this.me.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.me=n,this.ctx=r,this.start=o,this.end=s}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)j(e),e=e.nextSibling;Ee(this)}};var pn=Symbol("scope"),wt=t=>{try{kn();let e=t();Yt(e);let n={context:e,unmount:()=>Ee(e),[pn]:1};return n[pn]=1,n}finally{In()}},Gn=t=>N(t)?pn in t:!1;var Ot=(t,e)=>{if(t===e)return()=>{};let n=S(t,o=>e(o)),r=S(e,o=>t(o));return e(t()),()=>{n(),r()}};var At=t=>{var n,r;let e=(n=mt(t))==null?void 0:n.onMounted;e==null||e.forEach(o=>{o()}),(r=t.mounted)==null||r.call(t)};var Jn={collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{if(!r)return()=>{};let i=B(r);return S(e.value,()=>{var m;let p=(m=e.refs[0])!=null?m:e.value()[0],c=e.context,f=c[r];f!==p&&(h(f)?f(p):c[i]=p)},!0)}};var Nt=class{constructor(e){l(this,"p");l(this,"de");this.p=e,this.de=e.o.f.inherit}N(e){this.Xe(e)}Xe(e){var f;let n=this.p,r=n.h,o=n.o.ye,s=n.o.he,i=r.Ye(),a=[...o.keys(),...Object.keys(i),...[...o.keys()].map(Pe),...[...Object.keys(i)].map(Pe)].join(",");if($(a))return;let p=e.querySelectorAll(a),c=(f=e.matches)!=null&&f.call(e,a)?[e,...p]:p;for(let m of c){if(m.hasAttribute(n.T))continue;let u=m.parentNode;if(!u)continue;let y=m.nextSibling,d=B(m.tagName).toUpperCase(),C=i[d],I=C!=null?C:s.get(d);if(!I)continue;let x=I.template;if(!x)continue;let b=m.parentElement;if(!b)continue;let L=new Comment(" begin component: "+m.tagName),X=new Comment(" end component: "+m.tagName);b.insertBefore(L,m),m.remove();let ee=n.o.f.props,Je=n.o.f.propsOnce,Kt=n.o.f.bind,rt=(g,M)=>{let T={},V=g.hasAttribute(ee),K=g.hasAttribute(Je);return r.v(M,()=>{r.w(T),V&&n.x(Kn,g,ee),K&&n.x(Wn,g,Je);let R=I.props;if(!R||R.length===0)return;R=R.map(B);for(let ve of R.concat(R.map(Pe))){let ae=g.getAttribute(ve);ae!==null&&(T[B(ve)]=ae,g.removeAttribute(ve))}let k=n.ee.ge(g,!1);for(let[ve,ae]of k.entries()){let[Se,Wt]=ae.te;Wt&&R.includes(B(Wt))&&(Se!=="."&&Se!==":"&&Se!==Kt||n.x(Jn,g,ve,!0,Wt,ae.ne))}}),T},ue=[...r.V()],ot=()=>{var V;let g=rt(m,ue),M=new $e(g,m,ue,L,X),T=wt(()=>{var K;return(K=I.context(M))!=null?K:{}}).context;if(M.autoProps){for(let[K,R]of Object.entries(g))if(K in T){let k=T[K];if(k===R)continue;M.entangle&&h(k)&&h(R)?D(L,Ot(R,k)):h(k)?k(R):T[K]=P(R)}else T[K]=R;(V=M.onAutoPropsAssigned)==null||V.call(M)}return{componentCtx:T,head:M}},{componentCtx:de,head:st}=ot(),O=[...fe(x)],it=O.length,v=m.childNodes.length===0,A=g=>{let M=g.parentElement;if(v){for(let R of[...g.childNodes])M.insertBefore(R,g);return}let T=g.name;$(T)&&(T=g.getAttributeNames().filter(R=>R.startsWith("#"))[0],$(T)?T="default":T=T.substring(1));let V=m.querySelector(`template[name='${T}'], template[\\#${T}]`);!V&&T==="default"&&(V=m.querySelector("template:not([name])"),V&&V.getAttributeNames().filter(R=>R.startsWith("#")).length>0&&(V=null));let K=R=>{st.disableSwitch||r.v(ue,()=>{r.w(de);let k=rt(g,r.V());r.v(ue,()=>{r.w(k);let ve=r.V(),ae=Hn(ve);for(let Se of R)Oe(Se)&&(Se.setAttribute(Ye,ae),Zt(ae),D(Se,()=>{en(ae)}))})})};if(V){let R=[...fe(V)];for(let k of R)M.insertBefore(k,g);K(R)}else{if(T!=="default"){for(let k of[...fe(g)])M.insertBefore(k,g);return}let R=[...fe(m)].filter(k=>!se(k));for(let k of R)M.insertBefore(k,g);K(R)}},q=g=>{if(!Oe(g))return;let M=g.querySelectorAll("slot");if(jn(g)){A(g),g.remove();return}for(let T of M)A(T),T.remove()};(()=>{for(let g=0;g<it;++g)O[g]=O[g].cloneNode(!0),u.insertBefore(O[g],y),q(O[g])})(),b.insertBefore(X,y);let Y=()=>{if(!I.inheritAttrs)return;let g=O.filter(T=>T.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(T=>T.hasAttribute(this.de)));let M=g[0];if(M)for(let T of m.getAttributeNames()){if(T===ee||T===Je)continue;let V=m.getAttribute(T);if(T==="class")M.classList.add(...V.split(" "));else if(T==="style"){let K=M.style,R=m.style;for(let k of R)K.setProperty(k,R.getPropertyValue(k))}else M.setAttribute(gt(T,n.o),V)}},re=()=>{for(let g of m.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.o.f.on)&&m.removeAttribute(g)},Ie=()=>{Y(),re(),r.w(de),n.be(m,!1),de.$emit=st.emit,be(n,O),D(m,()=>{Ee(de)}),D(L,()=>{oe(m)}),At(de)};r.v(ue,Ie)}}};var cn=class{constructor(e){l(this,"Te");l(this,"te",[]);l(this,"ne",[]);l(this,"xe",[]);this.Te=e,this.C()}C(){let e=this.Te,n=e.startsWith(".");n&&(e=":"+e.slice(1));let r=e.indexOf("."),o=this.te=(r<0?e:e.substring(0,r)).split(/[:@]/);if($(o[0])&&(o[0]=n?".":e[0]),r>=0){let s=this.ne=e.slice(r+1).split(".");if(s.includes("camel")){let i=o.length-1;o[i]=B(o[i])}s.includes("prop")&&(o[0]=".")}}},Mt=class{constructor(e){l(this,"p");l(this,"Ee");this.p=e,this.Ee=e.o.Ze()}ge(e,n){let r=new Map;if(!Ze(e))return r;let o=this.Ee,s=a=>{let p=a.getAttributeNames().filter(c=>o.some(f=>c.startsWith(f)));for(let c of p)r.has(c)||r.set(c,new cn(c)),r.get(c).xe.push(a)};if(s(e),!n)return r;let i=e.querySelectorAll("*");for(let a of i)s(a);return r}};var Lt={};var kt=class{constructor(e){l(this,"h");l(this,"Re");l(this,"Ce");l(this,"ve");l(this,"Se");l(this,"ee");l(this,"o");l(this,"T");l(this,"we");this.h=e,this.o=e.o,this.Ce=new xt(this),this.Re=new ht(this),this.ve=new St(this),this.Se=new Nt(this),this.ee=new Mt(this),this.T=this.o.f.pre,this.we=this.o.f.dynamic}et(e){let n=se(e)?[e]:e.querySelectorAll("template");for(let r of n){if(r.hasAttribute(this.T))continue;let o=r.parentNode;if(!o)continue;let s=r.nextSibling;if(r.remove(),!r.content)continue;let i=[...r.content.childNodes];for(let a of i)o.insertBefore(a,s);be(this,i)}}G(e){e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.T)||this.Re.N(e)||this.Ce.N(e)||this.ve.N(e)||(this.Se.N(e),this.et(e),this.be(e,!0))}be(e,n){var s;let r=this.ee.ge(e,n),o=this.o._;for(let[i,a]of r.entries()){let[p,c]=a.te,f=(s=o[i])!=null?s:o[p];if(!f){console.error("directive not found:",p);continue}a.xe.forEach(m=>{this.x(f,m,i,!1,c,a.ne)})}}x(e,n,r,o,s,i){if(n.hasAttribute(this.T))return;let a=n.getAttribute(r);n.removeAttribute(r);let p=c=>{let f=c.getAttribute(Ye);return f||(c.parentElement?p(c.parentElement):null)};if(tn()){let c=p(n);if(c){this.h.v(_n(c),()=>{this.k(e,n,a,s,i)});return}}this.k(e,n,a,s,i)}tt(e,n,r){if(e!==Lt)return!1;if($(r))return!0;let o=document.querySelector(r);if(o){let s=n.parentElement;if(!s)return!0;let i=new Comment(`teleported => '${r}'`);s.insertBefore(i,n),n.teleportedFrom=i,i.teleportedTo=n,D(i,()=>{j(n)}),o.appendChild(n)}return!0}k(e,n,r,o,s){var I;if(n.nodeType!==Node.ELEMENT_NODE||r==null||this.tt(e,n,r))return;let i=this.h.C(r,e.isLazy,e.isLazyKey,e.collectRefObj,e.once),a=[];D(n,()=>{i.stop(),f==null||f.stop();for(let x of a)x();a.length=0});let c=Vn(o,this.we),f;c&&(f=this.h.C(B(c),void 0,void 0,void 0,e.once));let m,u=()=>(m=i.value(),m),y,d=()=>f?(y=f.value()[0],y):(y=o,o),C=()=>{if(!e.onChange)return;let x=S(i.value,b=>{var ee;let L=m,X=y;(ee=e.onChange)==null||ee.call(e,n,u(),L,d(),X,s)});if(a.push(x),f){let b=S(f.value,L=>{var ee;let X=y;(ee=e.onChange)==null||ee.call(e,n,u(),X,d(),X,s)});a.push(b)}};e.once||C(),e.onBind&&a.push(e.onBind(n,i,r,o,f,s)),(I=e.onChange)==null||I.call(e,n,u(),void 0,d(),void 0,s)}};var Co=9,Ro=10,xo=13,vo=32,Ce=46,It=44,So=39,wo=34,Dt=40,Fe=41,Ut=91,Ht=93,fn=63,Oo=59,Qn=58,Ao=123,_t=125,ln=43,No=45,Xn=96,Yn=47,Mo=92,Zn=[2,3],er=[ln,No],ir={"-":1,"!":1,"~":1,"+":1,new:1},ar={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},ze=Nn(ct({"=>":2},ar),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),pr=Object.keys(ar),Lo=new Set(pr),Bt=new Set;Bt.add("=>");pr.forEach(t=>Bt.add(t));var ko=new Set(["$","_"]),tr={true:!0,false:!1,null:null},Io="this";function cr(t){return Math.max(0,...Object.keys(t).map(e=>e.length))}var Do=cr(ir),Uo=cr(ze),Ke="Expected ",Me="Unexpected ",dn="Unclosed ",Ho=Ke+":",nr=Ke+"expression",_o="missing }",Bo=Me+"object property",Po=dn+"(",rr=Ke+"comma",or=Me+"token ",jo=Me+"period",mn=Ke+"expression after ",Vo="missing unaryOp argument",$o=dn+"[",Fo=Ke+"exponent (",qo="Variable names cannot start with a number (",zo=dn+'quote after "';var qe=t=>t>=48&&t<=57,sr=t=>ze[t]||0,un=class{constructor(e){l(this,"nt",{0:[this.rt],1:[this.ot,this.st,this.it],2:[this.at,this.pt,this.ct,this.Oe,this.ft],3:[this.lt,this.ut,this.mt]});l(this,"r");l(this,"e");this.r=e,this.e=0}get M(){return this.r.charAt(this.e)}get l(){return this.r.charCodeAt(this.e)}u(e){return this.r.charCodeAt(this.e)===e}U(e){let n=String.fromCharCode(e);return e>=65&&e<=90||e>=97&&e<=122||e>=128&&!(n in ze)||ko.has(n)}re(e){return this.U(e)||qe(e)}i(e){return new Error(`${e} at character ${this.e}`)}L(e,n,r){let o=this.nt[e];if(!o)return r;let s={node:r},i=a=>{a.call(this,s)};return n===0?o.forEach(i):o.find(i),s.node}y(){let e=this.l,n=this.r,r=this.e;for(;e===vo||e===Co||e===Ro||e===xo;)e=n.charCodeAt(++r);this.e=r}parse(){let e=this.oe();return e.length===1?e[0]:{type:0,body:e}}oe(e){let n=[];for(;this.e<this.r.length;){let r=this.l;if(r===Oo||r===It)this.e++;else{let o=this.O();if(o)n.push(o);else if(this.e<this.r.length){if(r===e)break;throw this.i(Me+'"'+this.M+'"')}}}return n}O(){var n;let e=(n=this.L(0,1))!=null?n:this.Ae();return this.y(),this.L(1,0,e)}se(){this.y();let e=this.e,n=this.r,r=n.substr(e,Uo),o=r.length;for(;o>0;){if(r in ze&&(!this.U(this.l)||e+r.length<n.length&&!this.re(n.charCodeAt(e+r.length))))return e+=o,this.e=e,r;r=r.substr(0,--o)}return!1}Ae(){let e,n,r,o,s,i,a,p;if(s=this.j(),!s||(n=this.se(),!n))return s;if(o={value:n,prec:sr(n),right_a:Bt.has(n)},i=this.j(),!i)throw this.i(mn+n);let c=[s,o,i];for(;n=this.se();){if(r=sr(n),r===0){this.e-=n.length;break}o={value:n,prec:r,right_a:Bt.has(n)},p=n;let f=m=>o.right_a&&m.right_a?r>m.prec:r<=m.prec;for(;c.length>2&&f(c[c.length-2]);)i=c.pop(),n=c.pop().value,s=c.pop(),e={type:8,operator:n,left:s,right:i},c.push(e);if(e=this.j(),!e)throw this.i(mn+p);c.push(o,e)}for(a=c.length-1,e=c[a];a>1;)e={type:8,operator:c[a-1].value,left:c[a-2],right:e},a-=2;return e}j(){let e,n,r;if(this.y(),r=this.L(2,1),r)return this.L(3,0,r);let o=this.l;if(qe(o)||o===Ce)return this.dt();if(o===So||o===wo)r=this.yt();else if(o===Ut)r=this.ht();else{for(e=this.r.substr(this.e,Do),n=e.length;n>0;){if(Object.prototype.hasOwnProperty.call(ir,e)&&(!this.U(this.l)||this.e+e.length<this.r.length&&!this.re(this.r.charCodeAt(this.e+e.length)))){this.e+=n;let s=this.j();if(!s)throw this.i(Vo);return this.L(3,0,{type:7,operator:e,argument:s})}e=e.substr(0,--n)}this.U(o)?(r=this.ie(),r.name in tr?r={type:4,value:tr[r.name],raw:r.name}:r.name===Io&&(r={type:5})):o===Dt&&(r=this.gt())}return r?(r=this.F(r),this.L(3,0,r)):this.L(3,0,!1)}F(e){this.y();let n=this.l;for(;n===Ce||n===Ut||n===Dt||n===fn;){let r;if(n===fn){if(this.r.charCodeAt(this.e+1)!==Ce)break;r=!0,this.e+=2,this.y(),n=this.l}if(this.e++,n===Ut){if(e={type:3,computed:!0,object:e,property:this.O()},this.y(),n=this.l,n!==Ht)throw this.i($o);this.e++}else n===Dt?e={type:6,arguments:this.Ne(Fe),callee:e}:(n===Ce||r)&&(r&&this.e--,this.y(),e={type:3,computed:!1,object:e,property:this.ie()});r&&(e.optional=!0),this.y(),n=this.l}return e}dt(){let e="",n;for(;qe(this.l);)e+=this.r.charAt(this.e++);if(this.u(Ce))for(e+=this.r.charAt(this.e++);qe(this.l);)e+=this.r.charAt(this.e++);if(n=this.M,n==="e"||n==="E"){for(e+=this.r.charAt(this.e++),n=this.M,(n==="+"||n==="-")&&(e+=this.r.charAt(this.e++));qe(this.l);)e+=this.r.charAt(this.e++);if(!qe(this.r.charCodeAt(this.e-1)))throw this.i(Fo+e+this.M+")")}let r=this.l;if(this.U(r))throw this.i(qo+e+this.M+")");if(r===Ce||e.length===1&&e.charCodeAt(0)===Ce)throw this.i(jo);return{type:4,value:parseFloat(e),raw:e}}yt(){let e="",n=this.e,r=this.r.charAt(this.e++),o=!1;for(;this.e<this.r.length;){let s=this.r.charAt(this.e++);if(s===r){o=!0;break}else if(s==="\\")switch(s=this.r.charAt(this.e++),s){case"n":e+=`
2
+ `;break;case"r":e+="\r";break;case"t":e+=" ";break;case"b":e+="\b";break;case"f":e+="\f";break;case"v":e+="\v";break;default:e+=s}else e+=s}if(!o)throw this.i(zo+e+'"');return{type:4,value:e,raw:this.r.substring(n,this.e)}}ie(){let e=this.l,n=this.e;if(this.U(e))this.e++;else throw this.i(Me+this.M);for(;this.e<this.r.length&&(e=this.l,this.re(e));)this.e++;return{type:2,name:this.r.slice(n,this.e)}}Ne(e){let n=[],r=!1,o=0;for(;this.e<this.r.length;){this.y();let s=this.l;if(s===e){if(r=!0,this.e++,e===Fe&&o&&o>=n.length)throw this.i(or+String.fromCharCode(e));break}else if(s===It){if(this.e++,o++,o!==n.length){if(e===Fe)throw this.i(or+",");if(e===Ht)for(let i=n.length;i<o;i++)n.push(null)}}else{if(n.length!==o&&o!==0)throw this.i(rr);{let i=this.O();if(!i||i.type===0)throw this.i(rr);n.push(i)}}}if(!r)throw this.i(Ke+String.fromCharCode(e));return n}gt(){this.e++;let e=this.oe(Fe);if(this.u(Fe))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(Po)}ht(){return this.e++,{type:9,elements:this.Ne(Ht)}}at(e){if(this.u(Ao)){this.e++;let n=[];for(;!isNaN(this.l);){if(this.y(),this.u(_t)){this.e++,e.node=this.F({type:10,properties:n});return}let r=this.O();if(!r)break;if(this.y(),r.type===2&&(this.u(It)||this.u(_t)))n.push({type:12,computed:!1,key:r,value:r,shorthand:!0});else if(this.u(Qn)){this.e++;let o=this.O();if(!o)throw this.i(Bo);let s=r.type===9;n.push({type:12,computed:s,key:s?r.elements[0]:r,value:o,shorthand:!1}),this.y()}else r&&n.push(r);this.u(It)&&this.e++}throw this.i(_o)}}pt(e){let n=this.l;if(er.some(r=>r===n&&r===this.r.charCodeAt(this.e+1))){this.e+=2;let r=e.node={type:13,operator:n===ln?"++":"--",argument:this.F(this.ie()),prefix:!0};if(!r.argument||!Zn.includes(r.argument.type))throw this.i(Me+r.operator)}}ut(e){if(e.node){let n=this.l;if(er.some(r=>r===n&&r===this.r.charCodeAt(this.e+1))){if(!Zn.includes(e.node.type))throw this.i(Me+e.node.operator);this.e+=2,e.node={type:13,operator:n===ln?"++":"--",argument:e.node,prefix:!1}}}}ct(e){[0,1,2].every(n=>this.r.charCodeAt(this.e+n)===Ce)&&(this.e+=3,e.node={type:14,argument:this.O()})}it(e){if(e.node&&this.u(fn)){this.e++;let n=e.node,r=this.O();if(!r)throw this.i(nr);if(this.y(),this.u(Qn)){this.e++;let o=this.O();if(!o)throw this.i(nr);if(e.node={type:11,test:n,consequent:r,alternate:o},n.operator&&ze[n.operator]<=.9){let s=n;for(;s.right.operator&&ze[s.right.operator]<=.9;)s=s.right;e.node.test=s.right,s.right=e.node,e.node=n}}else throw this.i(Ho)}}rt(e){if(this.y(),this.u(Dt)){let n=this.e;if(this.e++,this.y(),this.u(Fe)){this.e++;let r=this.se();if(r==="=>"){let o=this.Ae();if(!o)throw this.i(mn+r);e.node={type:15,params:null,body:o};return}}this.e=n}}ot(e){this.Me(e.node)}Me(e){e&&(Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.Me(n)}),e.operator==="=>"&&(e.type=15,e.params=e.left?[e.left]:null,e.body=e.right,e.params&&e.params[0].type===1&&(e.params=e.params[0].expressions),delete e.left,delete e.right,delete e.operator))}st(e){e.node&&this.$(e.node)}$(e){Lo.has(e.operator)?(e.type=16,this.$(e.left),this.$(e.right)):e.operator||Object.values(e).forEach(n=>{n&&typeof n=="object"&&this.$(n)})}mt(e){if(!e.node)return;let n=e.node.type;(n===2||n===3)&&this.u(Xn)&&(e.node={type:17,tag:e.node,quasi:this.Oe(e)})}Oe(e){if(!this.u(Xn))return;let n={type:19,quasis:[],expressions:[]},r="",o="",s=!1,i=this.r.length,a=()=>n.quasis.push({type:18,value:{raw:o,cooked:r},tail:s});for(;this.e<i;){let p=this.r.charAt(++this.e);if(p==="`")return this.e+=1,s=!0,a(),e.node=n,n;if(p==="$"&&this.r.charAt(this.e+1)==="{"){if(this.e+=2,a(),o="",r="",n.expressions.push(...this.oe(_t)),!this.u(_t))throw this.i("unclosed ${")}else if(p==="\\")switch(o+=p,p=this.r.charAt(++this.e),o+=p,p){case"n":r+=`
3
+ `;break;case"r":r+="\r";break;case"t":r+=" ";break;case"b":r+="\b";break;case"f":r+="\f";break;case"v":r+="\v";break;default:r+=p}else r+=p,o+=p}throw this.i("Unclosed `")}lt(e){var o;let n=e.node;if(!n||n.operator!=="new"||!n.argument)return;if(!n.argument||![6,3].includes(n.argument.type))throw this.i("Expected new function()");e.node=n.argument;let r=e.node;for(;r.type===3||r.type===6&&((o=r==null?void 0:r.callee)==null?void 0:o.type)===3;)r=r.type===3?r.object:r.callee.object;r.type=20}ft(e){if(!this.u(Yn))return;let n=++this.e,r=!1;for(;this.e<this.r.length;){if(this.l===Yn&&!r){let o=this.r.slice(n,this.e),s="";for(;++this.e<this.r.length;){let a=this.l;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.M;else break}let i;try{i=new RegExp(o,s)}catch(a){throw this.i(a.message)}return e.node={type:4,value:i,raw:this.r.slice(n-1,this.e)},e.node=this.F(e.node),e.node}this.u(Ut)?r=!0:r&&this.u(Ht)&&(r=!1),this.e+=this.u(Mo)?2:1}throw this.i("Unclosed Regex")}},fr=t=>new un(t).parse();var Ko={"=>":(t,e)=>{},"=":(t,e)=>{},"*=":(t,e)=>{},"**=":(t,e)=>{},"/=":(t,e)=>{},"%=":(t,e)=>{},"+=":(t,e)=>{},"-=":(t,e)=>{},"<<=":(t,e)=>{},">>=":(t,e)=>{},">>>=":(t,e)=>{},"&=":(t,e)=>{},"^=":(t,e)=>{},"|=":(t,e)=>{},"||":(t,e)=>t()||e(),"??":(t,e)=>{var n;return(n=t())!=null?n:e()},"&&":(t,e)=>t()&&e(),"|":(t,e)=>t|e,"^":(t,e)=>t^e,"&":(t,e)=>t&e,"==":(t,e)=>t==e,"!=":(t,e)=>t!=e,"===":(t,e)=>t===e,"!==":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e,in:(t,e)=>t in e,"<<":(t,e)=>t<<e,">>":(t,e)=>t>>e,">>>":(t,e)=>t>>>e,"+":(t,e)=>t+e,"-":(t,e)=>t-e,"*":(t,e)=>t*e,"/":(t,e)=>t/e,"%":(t,e)=>t%e,"**":(t,e)=>pt(t,e)},Wo={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},dr=t=>{if(!(t!=null&&t.some(ur)))return t;let e=[];return t.forEach(n=>ur(n)?e.push(...n):e.push(n)),e},mr=(...t)=>dr(t),yn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Go={"++":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(++r),r}return++t[e]},"--":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(--r),r}return--t[e]}},Jo={"++":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(r+1),r}return t[e]++},"--":(t,e)=>{let n=t[e];if(h(n)){let r=n();return n(r-1),r}return t[e]--}},lr={"=":(t,e,n)=>{let r=t[e];return h(r)?r(n):t[e]=n},"+=":(t,e,n)=>{let r=t[e];return h(r)?r(r()+n):t[e]+=n},"-=":(t,e,n)=>{let r=t[e];return h(r)?r(r()-n):t[e]-=n},"*=":(t,e,n)=>{let r=t[e];return h(r)?r(r()*n):t[e]*=n},"/=":(t,e,n)=>{let r=t[e];return h(r)?r(r()/n):t[e]/=n},"%=":(t,e,n)=>{let r=t[e];return h(r)?r(r()%n):t[e]%=n},"**=":(t,e,n)=>{let r=t[e];return h(r)?r(pt(r(),n)):t[e]=pt(t[e],n)},"<<=":(t,e,n)=>{let r=t[e];return h(r)?r(r()<<n):t[e]<<=n},">>=":(t,e,n)=>{let r=t[e];return h(r)?r(r()>>n):t[e]>>=n},">>>=":(t,e,n)=>{let r=t[e];return h(r)?r(r()>>>n):t[e]>>>=n},"|=":(t,e,n)=>{let r=t[e];return h(r)?r(r()|n):t[e]|=n},"&=":(t,e,n)=>{let r=t[e];return h(r)?r(r()&n):t[e]&=n},"^=":(t,e,n)=>{let r=t[e];return h(r)?r(r()^n):t[e]^=n}},Pt=(t,e)=>H(t)?t.bind(e):t,hn=class{constructor(e,n,r,o,s){l(this,"m");l(this,"Le");l(this,"ke");l(this,"Ve");l(this,"A");l(this,"Ie");l(this,"De");this.m=E(e)?e:[e],this.Le=n,this.ke=r,this.Ve=o,this.De=!!s}Ue(e,n){if(n&&e in n)return n;for(let r of this.m)if(e in r)return r}2(e,n,r){let o=e.name;if(o==="$root")return this.m[this.m.length-1];if(o==="$parent")return this.m[1];if(o==="$ctx")return[...this.m];if(r&&o in r)return this.A=r[o],Pt(P(r[o]),r);for(let i of this.m)if(o in i)return this.A=i[o],Pt(P(i[o]),i);let s=this.Le;if(s&&o in s)return this.A=s[o],Pt(P(s[o]),s)}5(e,n,r){return this.m[0]}0(e,n,r){return this.Pe(n,r,mr,...e.body)}1(e,n,r){return this.R(n,r,(...o)=>o.pop(),...e.expressions)}3(e,n,r){let{obj:o,key:s}=this.ae(e,n,r),i=o==null?void 0:o[s];return this.A=i,Pt(P(i),o)}4(e,n,r){return e.value}6(e,n,r){let o=(i,...a)=>H(i)?i(...dr(a)):i,s=this.R(++n,r,o,e.callee,...e.arguments);return this.A=s,s}7(e,n,r){return this.R(n,r,Wo[e.operator],e.argument)}8(e,n,r){let o=Ko[e.operator];switch(e.operator){case"||":case"&&":case"??":return o(()=>this.g(e.left,n,r),()=>this.g(e.right,n,r))}return this.R(n,r,o,e.left,e.right)}9(e,n,r){return this.Pe(++n,r,mr,...e.elements)}10(e,n,r){let o={},s=(...i)=>{i.forEach(a=>{Object.assign(o,a)})};return this.R(++n,r,s,...e.properties),o}11(e,n,r){return this.R(n,r,o=>this.g(o?e.consequent:e.alternate,n,r),e.test)}12(e,n,r){var f;let o={},s=m=>(m==null?void 0:m.type)!==15,i=(f=this.Ve)!=null?f:()=>!1,a=n===0&&this.De,p=m=>this.Be(a,e.key,n,yn(m,r)),c=m=>this.Be(a,e.value,n,yn(m,r));if(e.shorthand){let m=e.key.name;o[m]=s(e.key)&&i(m,n)?p:p()}else if(e.computed){let m=P(p());o[m]=s(e.value)&&i(m,n)?c:c()}else{let m=e.key.type===4?e.key.value:e.key.name;o[m]=s(e.value)&&i(m,n)?()=>c:c()}return o}ae(e,n,r){let o=this.g(e.object,n,r),s=e.computed?this.g(e.property,n,r):e.property.name;return{obj:o,key:s}}13(e,n,r){let o=e.argument,s=e.operator,i=e.prefix?Go:Jo;if(o.type===2){let a=o.name,p=this.Ue(a,r);return te(p)?void 0:i[s](p,a)}if(o.type===3){let{obj:a,key:p}=this.ae(o,n,r);return i[s](a,p)}}16(e,n,r){let o=e.left,s=e.operator;if(o.type===2){let i=o.name,a=this.Ue(i,r);if(te(a))return;let p=this.g(e.right,n,r);return lr[s](a,i,p)}if(o.type===3){let{obj:i,key:a}=this.ae(o,n,r),p=this.g(e.right,n,r);return lr[s](i,a,p)}}14(e,n,r){let o=this.g(e.argument,n,r);return E(o)&&(o.s=yr),o}17(e,n,r){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},n,r)}19(e,n,r){let o=(...s)=>s.reduce((i,a,p)=>i+=a+e.quasis[p+1].value.cooked,e.quasis[0].value.cooked);return this.R(n,r,o,...e.expressions)}18(e,n,r){return e.value.cooked}20(e,n,r){let o=(s,...i)=>new s(...i);return this.R(n,r,o,e.callee,...e.arguments)}15(e,n,r){return(...o)=>{let s=Object.create(r!=null?r:{}),i=e.params;if(i){let a=0;for(let p of i)s[p.name]=o[a++]}return this.g(e.body,n,s)}}g(e,n,r){let o=P(this[e.type](e,n,r));return this.Ie=e.type,o}Be(e,n,r,o){let s=this.g(n,r,o);return e&&this.He()?this.A:s}He(){let e=this.Ie;return(e===2||e===3||e===6)&&h(this.A)}eval(e,n){let{value:r,refs:o}=Tt(()=>this.g(e,-1,n)),s={value:r,refs:o};return this.He()&&(s.ref=this.A),s}R(e,n,r,...o){let s=o.map(i=>i&&this.g(i,e,n));return r(...s)}Pe(e,n,r,...o){let s=this.ke;if(!s)return this.R(e,n,r,...o);let i=o.map((a,p)=>a&&(a.type!==15&&s(p,e)?c=>this.g(a,e,yn(c,n)):this.g(a,e,n)));return r(...i)}},yr=Symbol("s"),ur=t=>(t==null?void 0:t.s)===yr,hr=(t,e,n,r,o,s,i)=>new hn(e,n,r,o,i).eval(t,s);var gr={},jt=class{constructor(e,n){l(this,"m");l(this,"o");l(this,"_e",[]);this.m=e,this.o=n}w(e){this.m=[e,...this.m]}Ye(){return this.m.map(n=>n.components).filter(n=>!!n).reverse().reduce((n,r)=>{for(let[o,s]of Object.entries(r))n[o.toUpperCase()]=s;return n},{})}C(e,n,r,o,s){var y;let i=z([]),a=[],p=()=>{for(let d of a)d();a.length=0},c={value:i,stop:p,refs:[],context:this.m[0]};if($(e))return c;let f=this.o.globalContext,m=[],u=(d,C,I,x)=>{try{let b=hr(d,C,f,n,r,x,o);return I&&m.push(...b.refs),{value:b.value,refs:b.refs,ref:b.ref}}catch(b){U(6,`evaluation error: ${e}`,b)}return{value:void 0,refs:[]}};try{let d=(y=gr[e])!=null?y:fr("["+e+"]");gr[e]=d;let C=this.m,I=()=>{m.splice(0),p();let x=d.elements.map((b,L)=>n!=null&&n(L,-1)?{value:X=>u(b,C,!1,{$event:X}).value,refs:[]}:u(b,C,!0));if(!s)for(let b of m){let L=S(b,I);a.push(L)}i(x.map(b=>b.value)),c.refs=x.map(b=>b.ref)};I()}catch(d){U(6,`parse error: ${e}`,d)}return c}V(){return this.m}Y(e){this._e.push(this.m),this.m=e}v(e,n){try{this.Y(e),n()}finally{this.bt()}}bt(){var e;this.m=(e=this._e.pop())!=null?e:[]}};var br="http://www.w3.org/1999/xlink",Qo={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function Xo(t){return!!t||t===""}var gn={onChange:(t,e,n,r,o,s)=>{var a;if(r){s&&s.includes("camel")&&(r=B(r)),Vt(t,r,e[0],o);return}let i=e.length;for(let p=0;p<i;++p){let c=e[p];if(E(c)){let f=(a=n==null?void 0:n[p])==null?void 0:a[0],m=c[0],u=c[1];Vt(t,m,u,f)}else if(N(c))for(let f of Object.entries(c)){let m=f[0],u=f[1],y=n==null?void 0:n[p],d=y&&m in y?m:void 0;Vt(t,m,u,d)}else{let f=n==null?void 0:n[p],m=e[p++],u=e[p];Vt(t,m,u,f)}}}},Vt=(t,e,n,r)=>{if(r&&r!==e&&t.removeAttribute(r),te(e)){U(3,name,t);return}if(!W(e)){U(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){te(n)?t.removeAttributeNS(br,e.slice(6,e.length)):t.setAttributeNS(br,e,n);return}let o=e in Qo;te(n)||o&&!Xo(n)?t.removeAttribute(e):t.setAttribute(e,o?"":n)};var Er={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let p=0;p<a;++p)Tr(t,s[p],i==null?void 0:i[p])}else Tr(t,s,i)}}},Tr=(t,e,n)=>{let r=t.classList,o=W(e),s=W(n);if(e&&!o){if(n&&!s)for(let i in n)i in e||r.remove(i);for(let i in e)e[i]&&r.add(i)}else o?n!==e&&(s&&r.remove(...n==null?void 0:n.split(",")),r.add(...e.split(","))):n&&s&&r.remove(...n==null?void 0:n.split(","))};var Cr={onChange:(t,e)=>{let[n,r]=e;H(r)?r(t,n):t.innerHTML=n==null?void 0:n.toString()}};function Yo(t,e){if(t.length!==e.length)return!1;let n=!0;for(let r=0;n&&r<t.length;r++)n=me(t[r],e[r]);return n}function me(t,e){if(t===e)return!0;let n=Qt(t),r=Qt(e);if(n||r)return n&&r?t.getTime()===e.getTime():!1;if(n=Qe(t),r=Qe(e),n||r)return t===e;if(n=E(t),r=E(e),n||r)return n&&r?Yo(t,e):!1;if(n=N(t),r=N(e),n||r){if(!n||!r)return!1;let o=Object.keys(t).length,s=Object.keys(e).length;if(o!==s)return!1;for(let i in t){let a=t.hasOwnProperty(i),p=e.hasOwnProperty(i);if(a&&!p||!a&&p||!me(t[i],e[i]))return!1}}return String(t)===String(e)}function $t(t,e){return t.findIndex(n=>me(n,e))}var Rr=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Ft=t=>{if(!h(t))throw _(3,"pause");t(void 0,void 0,3)};var qt=t=>{if(!h(t))throw _(3,"resume");t(void 0,void 0,4)};var vr={onChange:(t,e)=>{Zo(t,e[0])},onBind:(t,e,n,r,o,s)=>es(t,e,s)},Zo=(t,e)=>{let n=Ar(t);if(n&&Sr(t))E(e)?e=$t(e,le(t))>-1:Z(e)?e=e.has(le(t)):e=is(t,e),t.checked=e;else if(n&&wr(t))t.checked=me(e,le(t));else if(n||Nr(t))Or(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Mr(t)){let r=t.options,o=r.length,s=t.multiple;for(let i=0;i<o;i++){let a=r[i],p=le(a);if(s)E(e)?a.selected=$t(e,p)>-1:a.selected=e.has(p);else if(me(le(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else U(7,t)},nt=t=>(h(t)&&(t=t()),H(t)&&(t=t()),t?W(t)?{trim:t.includes("trim"),lazy:t.includes("lazy"),number:t.includes("number"),int:t.includes("int")}:{trim:!!t.trim,lazy:!!t.lazy,number:!!t.number,int:!!t.int}:{trim:!1,lazy:!1,number:!1,int:!1}),Sr=t=>t.type==="checkbox",wr=t=>t.type==="radio",Or=t=>t.type==="number"||t.type==="range",Ar=t=>t.tagName==="INPUT",Nr=t=>t.tagName==="TEXTAREA",Mr=t=>t.tagName==="SELECT",es=(t,e,n)=>{let r=e.value,o=nt(n==null?void 0:n.join(",")),s=nt(r()[1]),i={int:o.int||o.int,lazy:o.lazy||s.lazy,number:o.number||s.number,trim:o.trim||s.trim},a=e.refs[0];if(!a)return U(8,t),()=>{};let p=Ar(t);return p&&Sr(t)?ns(t,a):p&&wr(t)?as(t,a):p||Nr(t)?ts(t,i,a,r):Mr(t)?ps(t,a,r):(U(7,t),()=>{})},xr=/[.,' ·٫]/,ts=(t,e,n,r)=>{let s=e.lazy?"change":"input",i=Or(t),a=()=>{!e.trim&&!nt(r()[1])||(t.value=t.value.trim())},p=u=>{let y=u.target;y.composing=1},c=u=>{let y=u.target;y.composing&&(y.composing=0,y.dispatchEvent(new Event(s)))},f=()=>{t.removeEventListener(s,m),t.removeEventListener("change",a),t.removeEventListener("compositionstart",p),t.removeEventListener("compositionend",c),t.removeEventListener("change",c)},m=u=>{let y=u.target;if(!y||y.composing)return;let d=y.value,C=nt(r()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(xr.test(d[d.length-1])&&d.split(xr).length===2){if(d+="0",d=parseFloat(d),isNaN(d))d="";else if(n()===d)return}d=parseFloat(d)}isNaN(d)&&(d=""),t.value=d}else C.trim&&(d=d.trim());n(d)};return t.addEventListener(s,m),t.addEventListener("change",a),t.addEventListener("compositionstart",p),t.addEventListener("compositionend",c),t.addEventListener("change",c),f},ns=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=le(t),i=t.checked,a=e();if(E(a)){let p=$t(a,s),c=p!==-1;i&&!c?a.push(s):!i&&c&&a.splice(p,1)}else Z(a)?i?a.add(s):a.delete(s):e(ss(t,i))};return t.addEventListener(n,o),r},le=t=>"_value"in t?t._value:t.value,Lr="trueValue",rs="falseValue",kr="true-value",os="false-value",ss=(t,e)=>{let n=e?Lr:rs;if(n in t)return t[n];let r=e?kr:os;return t.hasAttribute(r)?t.getAttribute(r):e},is=(t,e)=>{if(Lr in t)return me(e,t.trueValue);let r=kr;return t.hasAttribute(r)?me(e,t.getAttribute(r)):me(e,!0)},as=(t,e)=>{let n="change",r=()=>{t.removeEventListener(n,o)},o=()=>{let s=le(t);e(s)};return t.addEventListener(n,o),r},ps=(t,e,n)=>{let r="change",o=()=>{t.removeEventListener(r,s)},s=()=>{let a=nt(n()[1]).number,p=Array.prototype.filter.call(t.options,c=>c.selected).map(c=>a?Rr(le(c)):le(c));if(t.multiple){let c=e();try{if(Ft(e),Z(c)){c.clear();for(let f of p)c.add(f)}else E(c)?(c.splice(0),c.push(...p)):e(p)}finally{qt(e),F(e)}}else e(p[0])};return t.addEventListener(r,s),o};var cs=["stop","prevent","capture","self","once","left","right","middle","passive"],fs=t=>{let e={};if($(t))return;let n=t.split(",");for(let r of cs)e[r]=n.includes(r);return e},Tn={isLazy:(t,e)=>e===-1&&t%2===0,isLazyKey:(t,e)=>e===0&&!t.endsWith("_flags"),once:!1,collectRefObj:!0,onBind:(t,e,n,r,o,s)=>{var f,m;if(o){let u=e.value(),y=P(o.value()[0]);return W(y)?bn(t,B(y),()=>e.value()[0],(f=s==null?void 0:s.join(","))!=null?f:u[1]):()=>{}}else if(r){let u=e.value();return bn(t,B(r),()=>e.value()[0],(m=s==null?void 0:s.join(","))!=null?m:u[1])}let i=[],a=()=>{i.forEach(u=>u())},p=e.value(),c=p.length;for(let u=0;u<c;++u){let y=p[u];if(H(y)&&(y=y()),N(y))for(let d of Object.entries(y)){let C=d[0],I=()=>{let b=e.value()[u];return H(b)&&(b=b()),b=b[C],H(b)&&(b=b()),b},x=y[C+"_flags"];i.push(bn(t,C,I,x))}else U(2,name,t)}return a}},ms=(t,e)=>{if(t.startsWith("keydown")||t.startsWith("keyup")||t.startsWith("keypress")){e!=null||(e="");let n=t.split(".").concat(e.split(","));t=n[0];let r=n[1],o=n.includes("ctrl"),s=n.includes("shift"),i=n.includes("alt"),a=n.includes("meta"),p=c=>!(o&&!c.ctrlKey||s&&!c.shiftKey||i&&!c.altKey||a&&!c.metaKey);return r?[t,c=>p(c)?c.key.toUpperCase()===r.toUpperCase():!1]:[t,p]}return[t,n=>!0]},bn=(t,e,n,r)=>{if($(e))return U(5,name,t),()=>{};let o=fs(r),s=o?{capture:o.capture,passive:o.passive,once:o.once}:void 0,i;[e,i]=ms(e,r);let a=f=>{if(!i(f)||!n&&e==="submit"&&(o!=null&&o.prevent))return;let m=n(f);H(m)&&(m=m(f)),H(m)&&m(f)},p=()=>{t.removeEventListener(e,c,s)},c=f=>{if(!o){a(f);return}try{if(o.left&&f.button!==1||o.middle&&f.button!==2||o.right&&f.button!==3||o.self&&f.target!==t)return;o.stop&&f.stopPropagation(),o.prevent&&f.preventDefault(),a(f)}finally{o.once&&p()}};return t.addEventListener(e,c,s),p};var Ir={onChange:(t,e,n,r,o,s)=>{if(r){s&&s.includes("camel")&&(r=B(r)),We(t,r,e[0]);return}let i=e.length;for(let a=0;a<i;++a){let p=e[a];if(E(p)){let c=p[0],f=p[1];We(t,c,f)}else if(N(p))for(let c of Object.entries(p)){let f=c[0],m=c[1];We(t,f,m)}else{let c=e[a++],f=e[a];We(t,c,f)}}}};function ls(t){return!!t||t===""}var We=(t,e,n)=>{if(te(e)){U(3,name,t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(oe),1),t[e]=n!=null?n:"";return}let r=t.tagName;if(e==="value"&&r!=="PROGRESS"&&!r.includes("-")){t._value=n;let s=r==="OPTION"?t.getAttribute("value"):t.value,i=n!=null?n:"";s!==i&&(t.value=i),n==null&&t.removeAttribute(e);return}let o=!1;if(n===""||n==null){let s=typeof t[e];s==="boolean"?n=ls(n):n==null&&s==="string"?(n="",o=!0):s==="number"&&(n=0,o=!0)}try{t[e]=n}catch(s){o||U(4,e,r,n,s)}o&&t.removeAttribute(e)};var Dr={once:!0,onBind:(t,e,n)=>{let r=e.value()[0],o=E(r),s=e.refs[0];return o?r.push(t):s?s==null||s(t):e.context[n]=t,()=>{if(o){let i=r.indexOf(t);i!==-1&&r.splice(i,1)}else s==null||s(null)}}};var Ur={onChange:(t,e)=>{let n=he(t).data,r=n._ord;Mn(r)&&(r=n._ord=t.style.display),!!e[0]?t.style.display=r:t.style.display="none"}};var Pr={onChange:(t,e,n)=>{let r=e.length;for(let o=0;o<r;++o){let s=e[o],i=n==null?void 0:n[o];if(E(s)){let a=s.length;for(let p=0;p<a;++p)Hr(t,s[p],i==null?void 0:i[p])}else Hr(t,s,i)}}},Hr=(t,e,n)=>{let r=t.style,o=W(e);if(e&&!o){if(n&&!W(n))for(let s in n)e[s]==null&&Cn(r,s,"");for(let s in e)Cn(r,s,e[s])}else{let s=r.display;if(o?n!==e&&(r.cssText=e):n&&t.removeAttribute("style"),"_ord"in he(t).data)return;r.display=s}},_r=/\s*!important$/;function Cn(t,e,n){if(E(n))n.forEach(r=>{Cn(t,e,r)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let r=us(t,e);_r.test(n)?t.setProperty(Pe(r),n.replace(_r,""),"important"):t[r]=n}}var Br=["Webkit","Moz","ms"],En={};function us(t,e){let n=En[e];if(n)return n;let r=B(e);if(r!=="filter"&&r in t)return En[e]=r;r=et(r);for(let o=0;o<Br.length;o++){let s=Br[o]+r;if(s in t)return En[e]=s}return e}var Q=t=>ds(P(t)),ds=t=>{if(!t||!N(t))return t;if(E(t))return t.map(Q);if(Z(t)){let n=new Set;for(let r of t.keys())n.add(Q(r));return n}if(ye(t)){let n=new Map;for(let r of n)n.set(Q(r[0]),Q(r[1]));return n}let e=ct({},t);for(let n of Object.entries(e))e[n[0]]=Q(n[1]);return e};var jr={onChange:(t,e)=>{var r;let n=e[0];t.textContent=Z(n)?JSON.stringify(Q([...n])):ye(n)?JSON.stringify(Q([...n])):N(n)?JSON.stringify(Q(n)):(r=n==null?void 0:n.toString())!=null?r:""}};var Vr={onChange:(t,e)=>{We(t,"value",e[0])}};var Le=t=>(t==null?void 0:t[lt])===1;var Re=t=>{if(je(t))return t;let e;if(h(t)?(e=t,t=e()):e=z(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[lt]=1,E(t)){let n=t.length;for(let r=0;r<n;++r){let o=t[r];Le(o)||(t[r]=Re(o))}return e}if(!N(t))return e;for(let n of Object.entries(t)){let r=n[1];if(Le(r))continue;let o=n[0];Qe(o)||(t[o]=Re(r))}return e};var xe=class xe{constructor(e){l(this,"_",{});l(this,"f",{});l(this,"Ze",()=>Object.keys(this._).filter(e=>e.length===1||!e.startsWith(":")));l(this,"ye",new Map);l(this,"he",new Map);l(this,"forGrowThreshold",10);l(this,"globalContext");l(this,"useInterpolation",!0);if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.xt()}static getDefault(){var e;return(e=xe.je)!=null?e:xe.je=new xe}xt(){let e={},n=globalThis;for(let r of xe.Tt.split(","))e[r]=n[r];return e.ref=Re,e.sref=z,e.flatten=Q,e}addComponent(...e){for(let n of e){if(!n.defaultName){Xe.warning("Registered component's default name is not defined",n);continue}this.ye.set(et(n.defaultName),n),this.he.set(et(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this._={".":Ir,":":gn,"@":Tn,[`${e}on`]:Tn,[`${e}bind`]:gn,[`${e}html`]:Cr,[`${e}text`]:jr,[`${e}show`]:Ur,[`${e}model`]:vr,":style":Pr,":class":Er,":ref":Dr,":value":Vr,teleport:Lt},this.f={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,props:":props",propsOnce:":props-once",bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this._,this.f)}};l(xe,"je"),l(xe,"Tt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var ie=xe;var zt=(t,e)=>{if(!t)return;let n=(e!=null?e:ie.getDefault()).f;for(let r of gs(t,n.pre))hs(r,n.text)},ys=/({{[^]*?}})/g,hs=(t,e)=>{var i;let n=t.textContent;if(!n)return;let r=ys,o=n.split(r);if(o.length<=1)return;if(((i=t.parentElement)==null?void 0:i.childNodes.length)===1&&o.length===3){let a=o[1];if($(o[0])&&$(o[2])&&a.startsWith("{{")&&a.endsWith("}}")){let p=t.parentElement;p.setAttribute(e,a.substring(2,a.length-2)),p.innerText="";return}}let s=document.createDocumentFragment();for(let a of o)if(a.startsWith("{{")&&a.endsWith("}}")){let p=document.createElement("span");p.setAttribute(e,a.substring(2,a.length-2)),s.appendChild(p)}else s.appendChild(document.createTextNode(a));t.replaceWith(s)},gs=(t,e)=>{let n=[],r=o=>{var s,i;if(o.nodeType===Node.TEXT_NODE)(s=o.textContent)!=null&&s.includes("{{")&&n.push(o);else{if((i=o==null?void 0:o.hasAttribute)!=null&&i.call(o,e))return;for(let a of fe(o))r(a)}};return r(t),n};var bs="svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view",Ts=new Set(bs.toUpperCase().split(",")),Es="http://www.w3.org/2000/svg",$r=(t,e)=>{se(t)?t.content.appendChild(e):t.appendChild(e)},Rn=(t,e,n,r)=>{var i;let o=t.t;if(o){let a=n&&Ts.has(o.toUpperCase())?document.createElementNS(Es,o.toLowerCase()):document.createElement(o),p=t.a;if(p)for(let f of Object.entries(p)){let m=f[0],u=f[1];m.startsWith("#")&&(u=m.substring(1),m="name"),a.setAttribute(gt(m,r),u)}let c=t.c;if(c)for(let f of c)Rn(f,a,n,r);$r(e,a);return}let s=t.d;if(s){let a;switch((i=t.n)!=null?i:Node.TEXT_NODE){case Node.COMMENT_NODE:a=document.createComment(s);break;case Node.TEXT_NODE:a=document.createTextNode(s);break}if(a)$r(e,a);else throw new Error("unsupported node type.")}},ke=(t,e,n)=>{n!=null||(n=ie.getDefault());let r=document.createDocumentFragment();if(!E(t))return Rn(t,r,!!e,n),r;for(let o of t)Rn(o,r,!!e,n);return r};var Fr=(t,e={selector:"#app"},n)=>{Gn(t)&&(t=t.context);let r=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!r||!Oe(r))throw _(0);n||(n=ie.getDefault());let o=()=>{for(let a of[...r.childNodes])j(a)},s=a=>{for(let p of a)r.appendChild(p)};if(e.html){let a=document.createRange().createContextualFragment(e.html);o(),s(a.childNodes),e.element=a}else if(e.json){let a=ke(e.json,e.isSVG,n);o(),s(a.childNodes)}return n.useInterpolation&&zt(r,n),new xn(t,r,n).x(),D(r,()=>{Ee(t)}),At(t),{context:t,unmount:()=>{j(r)},unbind:()=>{oe(r)}}},xn=class{constructor(e,n,r){l(this,"Et");l(this,"Fe");l(this,"o");l(this,"h");l(this,"p");this.Et=e,this.Fe=n,this.o=r,this.h=new jt([e],r),this.p=new kt(this.h)}x(){this.p.G(this.Fe)}};var Ge=t=>{if(E(t))return t.map(o=>Ge(o));let e={};if(t.tagName)e.t=t.tagName;else return t.nodeType===Node.COMMENT_NODE&&(e.n=Node.COMMENT_NODE),t.textContent&&(e.d=t.textContent),e;let n=t.getAttributeNames();n.length>0&&(e.a=Object.fromEntries(n.map(o=>[o,t.getAttribute(o)])));let r=fe(t);return r.length>0&&(e.c=[...r].map(o=>Ge(o))),e};var qr=(t,e,n={})=>{var s,i,a,p;let r=!1;if(e.element){let c=e.element;c.remove(),e.element=c}else if(e.selector){let c=document.querySelector(e.selector);if(!c)throw _(1,name);c.remove(),e.element=c}else if(e.html){let c=document.createRange().createContextualFragment(e.html);e.element=c}else e.json&&(e.element=ke(e.json,e.isSVG,n.config),r=!0);e.element||(e.element=document.createDocumentFragment()),((s=n.useInterpolation)==null||s)&&zt(e.element);let o=e.element;if(!r&&(((a=e.isSVG)!=null?a:Ze(o)&&((i=o.hasAttribute)!=null&&i.call(o,"isSVG")))||Ze(o)&&o.querySelector("[isSVG]"))){let c=e.element.content,f=c?[...c.childNodes]:[...o.childNodes],m=Ge(f);e.element=ke(m,!0,n.config)}return{context:t,template:e.element,inheritAttrs:(p=n.inheritAttrs)!=null?p:!0,props:n.props,defaultName:n.defaultName}};var zr=t=>{let e,n={},r=(...o)=>{if(o.length<=2&&0 in o)throw _(4);return e&&!n.isStopped?e(...o):(e=Cs(t,n),e(...o))};return r[J]=1,Te(r,!0),r.stop=()=>{var o,s;return(s=(o=n.ref)==null?void 0:o.stop)==null?void 0:s.call(o)},G(()=>r.stop(),!0),r},Cs=(t,e)=>{var s;let n=(s=e.ref)!=null?s:z(null);e.ref=n,e.isStopped=!1;let r=0,o=Ae(()=>{if(r>0){o(),e.isStopped=!0,F(n);return}n(t()),++r});return n.stop=o,n};var Kr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=Rs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},Rs=(t,e,n)=>{var a;let r=(a=n.ref)!=null?a:z(null);n.ref=r,n.isStopped=!1;let o=0,s=p=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(...t.map(c=>c()))),++o},i=[];for(let p of t){let c=S(p,s);i.push(c)}return s(null),r.stop=()=>{i.forEach(p=>{p()})},r};var Wr=(t,e)=>{let n={},r,o=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return r&&!n.isStopped?r(...s):(r=xs(t,e,n),r(...s))};return o[J]=1,Te(o,!0),o.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},G(()=>o.stop(),!0),o},xs=(t,e,n)=>{var s;let r=(s=n.ref)!=null?s:z(null);n.ref=r,n.isStopped=!1;let o=0;return r.stop=S(t,i=>{if(o>0){r.stop(),n.isStopped=!0,F(r);return}r(e(i)),++o},!0),r};var Gr=t=>(t[ut]=1,t);var Jr=(t,e)=>{if(!e)throw new Error("persist requires a string key.");let r=Le(t)?Re:a=>a,o=()=>localStorage.setItem(e,JSON.stringify(Q(t()))),s=localStorage.getItem(e);s!=null?t(r(JSON.parse(s))):o();let i=Ae(o);return G(()=>i,!0),t};var vn=(t,...e)=>{let n="";return e.length===0?t.join():(t.forEach((r,o)=>{n+=r+e[o]}),n)},Qr=vn;var Xr=(t,e,n)=>{let r=[],o=()=>{e(t.map(i=>i()))};for(let i of t)r.push(S(i,o));n&&o();let s=()=>{for(let i of r)i()};return G(s,!0),s};var Yr=t=>{if(!h(t))throw _(3,"observe");return t(void 0,void 0,2)};var Zr=t=>{Sn();try{t()}finally{wn()}},Sn=()=>{Ne.set||(Ne.set=new Set)},wn=()=>{let t=Ne.set;if(t){delete Ne.set;for(let e of t)try{F(e)}catch(n){console.error(n)}}};var eo=t=>{var e;(e=we())==null||e.onMounted.push(t)};
@@ -3918,6 +3918,14 @@ var resume = (source) => {
3918
3918
  };
3919
3919
 
3920
3920
  // src/directives/model.ts
3921
+ var modelDirective = {
3922
+ onChange: (el, values) => {
3923
+ updateDomElementValue(el, values[0]);
3924
+ },
3925
+ onBind: (el, parseResult, _expr, _option, _dynamicOption, flags) => {
3926
+ return attachDOMChangeListener(el, parseResult, flags);
3927
+ }
3928
+ };
3921
3929
  var updateDomElementValue = (el, value) => {
3922
3930
  const isAnInput = isInput(el);
3923
3931
  if (isAnInput && isCheckBox(el)) {
@@ -4000,9 +4008,16 @@ var isNumberInput = (el) => el.type === "number" || el.type === "range";
4000
4008
  var isInput = (el) => el.tagName === "INPUT";
4001
4009
  var isTextArea = (el) => el.tagName === "TEXTAREA";
4002
4010
  var isSelect = (el) => el.tagName === "SELECT";
4003
- var attachDOMChangeListener = (el, parseResult) => {
4011
+ var attachDOMChangeListener = (el, parseResult, directiveFlags) => {
4004
4012
  const parsedValue = parseResult.value;
4005
- const flags = getFlags(parsedValue()[1]);
4013
+ const f1 = getFlags(directiveFlags == null ? void 0 : directiveFlags.join(","));
4014
+ const f2 = getFlags(parsedValue()[1]);
4015
+ const flags = {
4016
+ int: f1.int || f1.int,
4017
+ lazy: f1.lazy || f2.lazy,
4018
+ number: f1.number || f2.number,
4019
+ trim: f1.trim || f2.trim
4020
+ };
4006
4021
  const modelRef = parseResult.refs[0];
4007
4022
  if (!modelRef) {
4008
4023
  warning(8 /* ModelRequiresRef */, el);
@@ -4024,22 +4039,13 @@ var attachDOMChangeListener = (el, parseResult) => {
4024
4039
  };
4025
4040
  }
4026
4041
  };
4027
- var modelDirective = {
4028
- onChange: (el, values) => {
4029
- updateDomElementValue(el, values[0]);
4030
- },
4031
- onBind: (el, parseResult) => {
4032
- return attachDOMChangeListener(el, parseResult);
4033
- }
4034
- };
4035
4042
  var decimalSeparators = /[.,' ·٫]/;
4036
4043
  var handleInputAndTextArea = (el, flags, modelRef, parsedValue) => {
4037
4044
  const isLazy = flags.lazy;
4038
4045
  const eventType = isLazy ? "change" : "input";
4039
4046
  const isNumber = isNumberInput(el);
4040
4047
  const trimmer = () => {
4041
- const flags2 = getFlags(parsedValue()[1]);
4042
- if (!flags2.trim)
4048
+ if (!flags.trim && !getFlags(parsedValue()[1]))
4043
4049
  return;
4044
4050
  el.value = el.value.trim();
4045
4051
  };