cloudcommerce 0.0.64 → 0.0.67

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.
Files changed (124) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/package.json +8 -8
  3. package/packages/api/package.json +1 -1
  4. package/packages/apps/correios/README.md +1 -1
  5. package/packages/apps/correios/lib-mjs/calculate-correios.mjs +2 -2
  6. package/packages/apps/correios/package.json +1 -1
  7. package/packages/apps/custom-shipping/CHANGELOG.md +1 -0
  8. package/packages/apps/custom-shipping/README.md +1 -0
  9. package/packages/apps/custom-shipping/lib/custom-shipping.d.ts +2 -0
  10. package/packages/apps/custom-shipping/lib/custom-shipping.js +6 -0
  11. package/packages/apps/custom-shipping/lib/custom-shipping.js.map +1 -0
  12. package/packages/apps/custom-shipping/lib/index.d.ts +1 -0
  13. package/packages/apps/custom-shipping/lib/index.js +2 -0
  14. package/packages/apps/custom-shipping/lib/index.js.map +1 -0
  15. package/packages/apps/custom-shipping/lib-mjs/calculate-custom-shipping.mjs +251 -0
  16. package/packages/apps/custom-shipping/package.json +27 -0
  17. package/packages/apps/custom-shipping/src/custom-shipping.ts +7 -0
  18. package/packages/apps/custom-shipping/src/index.ts +1 -0
  19. package/packages/apps/custom-shipping/tsconfig.json +6 -0
  20. package/packages/apps/discounts/package.json +1 -1
  21. package/packages/apps/tiny-erp/README.md +1 -1
  22. package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js +9 -6
  23. package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js.map +1 -1
  24. package/packages/apps/tiny-erp/package.json +2 -2
  25. package/packages/apps/tiny-erp/src/integration/export-order-to-tiny.ts +9 -6
  26. package/packages/cli/package.json +1 -1
  27. package/packages/config/CHANGELOG.md +1 -0
  28. package/packages/config/README.md +1 -0
  29. package/packages/config/lib/config.d.ts +13 -0
  30. package/packages/config/lib/config.js +30 -0
  31. package/packages/config/lib/config.js.map +1 -0
  32. package/packages/{firebase → config}/lib/defaults.d.ts +0 -0
  33. package/packages/{firebase → config}/lib/defaults.js +0 -0
  34. package/packages/{firebase → config}/lib/defaults.js.map +0 -0
  35. package/packages/config/lib/env.d.ts +11 -0
  36. package/packages/config/lib/env.js +30 -0
  37. package/packages/config/lib/env.js.map +1 -0
  38. package/packages/config/package.json +33 -0
  39. package/packages/config/src/config.ts +43 -0
  40. package/packages/{firebase → config}/src/defaults.ts +0 -0
  41. package/packages/config/src/env.ts +43 -0
  42. package/packages/config/tsconfig.json +6 -0
  43. package/packages/events/package.json +2 -2
  44. package/packages/firebase/lib/config.d.ts +21 -21
  45. package/packages/firebase/lib/config.js +20 -41
  46. package/packages/firebase/lib/config.js.map +1 -1
  47. package/packages/firebase/lib/env.d.ts +2 -10
  48. package/packages/firebase/lib/env.js +3 -27
  49. package/packages/firebase/lib/env.js.map +1 -1
  50. package/packages/firebase/lib/handlers/check-store-events.js +17 -8
  51. package/packages/firebase/lib/handlers/check-store-events.js.map +1 -1
  52. package/packages/firebase/package.json +3 -3
  53. package/packages/firebase/src/config.ts +23 -45
  54. package/packages/firebase/src/env.ts +2 -38
  55. package/packages/firebase/src/handlers/check-store-events.ts +18 -9
  56. package/packages/modules/lib/firebase/call-app-module.js +5 -0
  57. package/packages/modules/lib/firebase/call-app-module.js.map +1 -1
  58. package/packages/modules/package.json +3 -2
  59. package/packages/modules/src/firebase/call-app-module.ts +5 -0
  60. package/packages/passport/package.json +2 -2
  61. package/packages/ssr/package.json +2 -2
  62. package/packages/storefront/.eslintrc.cjs +6 -0
  63. package/packages/storefront/astro.config.mjs +20 -0
  64. package/packages/storefront/content/blog.json +18 -0
  65. package/packages/storefront/content/brands.json +24 -0
  66. package/packages/storefront/content/categories.json +24 -0
  67. package/packages/storefront/content/code.json +5 -0
  68. package/packages/storefront/content/collections.json +24 -0
  69. package/packages/storefront/content/contacts.json +13 -0
  70. package/packages/storefront/content/footer.json +46 -0
  71. package/packages/storefront/content/header.json +27 -0
  72. package/packages/storefront/content/home.json +45 -0
  73. package/packages/storefront/content/info.json +18 -0
  74. package/packages/storefront/content/maintenance.json +6 -0
  75. package/packages/storefront/content/menu.json +6 -0
  76. package/packages/storefront/content/pages/contato.json +6 -0
  77. package/packages/storefront/content/pages/entrega.json +6 -0
  78. package/packages/storefront/content/pages/faq.json +6 -0
  79. package/packages/storefront/content/pages/pagamentos.json +6 -0
  80. package/packages/storefront/content/pages/privacidade.json +6 -0
  81. package/packages/storefront/content/pages/sobre-nos.json +6 -0
  82. package/packages/storefront/content/pages/termos.json +6 -0
  83. package/packages/storefront/content/pages/trocas.json +6 -0
  84. package/packages/storefront/content/posts/esta-loja-e-um-pwa.json +9 -0
  85. package/packages/storefront/content/products.json +32 -0
  86. package/packages/storefront/content/search.json +8 -0
  87. package/packages/storefront/content/settings.json +25 -0
  88. package/packages/storefront/content/social.json +5 -0
  89. package/packages/storefront/content/widgets/analytics.json +11 -0
  90. package/packages/storefront/content/widgets/compre-confie.json +11 -0
  91. package/packages/storefront/content/widgets/ebit.json +11 -0
  92. package/packages/storefront/content/widgets/fb-pixel.json +12 -0
  93. package/packages/storefront/content/widgets/gmc-ratings.json +12 -0
  94. package/packages/storefront/content/widgets/minicart.json +6 -0
  95. package/packages/storefront/content/widgets/offers-notification.json +11 -0
  96. package/packages/storefront/content/widgets/opinioes-verificadas.json +18 -0
  97. package/packages/storefront/content/widgets/product-card.json +10 -0
  98. package/packages/storefront/content/widgets/product.json +13 -0
  99. package/packages/storefront/content/widgets/search-engine.json +8 -0
  100. package/packages/storefront/content/widgets/search.json +6 -0
  101. package/packages/storefront/content/widgets/tag-manager.json +12 -0
  102. package/packages/storefront/content/widgets/tawkto.json +12 -0
  103. package/packages/storefront/content/widgets/trustvox.json +15 -0
  104. package/packages/storefront/content/widgets/user.json +5 -0
  105. package/packages/storefront/dist/client/assets/_...0b5ebd52.css +1 -0
  106. package/packages/storefront/dist/client/assets/_...d4aa8aff.css +1 -0
  107. package/packages/storefront/dist/client/assets/index.5608ba47.css +1 -0
  108. package/packages/storefront/dist/client/client.6d48c590.js +1 -0
  109. package/packages/storefront/dist/client/favicon.ico +0 -0
  110. package/packages/storefront/dist/client/page.3aa82516.js +1 -0
  111. package/packages/storefront/dist/client/~partytown/partytown-atomics.js +2 -0
  112. package/packages/storefront/dist/client/~partytown/partytown-media.js +2 -0
  113. package/packages/storefront/dist/client/~partytown/partytown-sw.js +2 -0
  114. package/packages/storefront/dist/client/~partytown/partytown.js +2 -0
  115. package/packages/storefront/dist/server/entry.mjs +1674 -0
  116. package/packages/storefront/package.json +13 -9
  117. package/packages/storefront/public/favicon.ico +0 -0
  118. package/packages/storefront/src/components/Card.astro +74 -0
  119. package/packages/storefront/src/layouts/Layout.astro +56 -0
  120. package/packages/storefront/src/pages/[...slug].astro +76 -0
  121. package/packages/storefront/src/pages/index.astro +82 -0
  122. package/packages/storefront/src/storefront-config.ts +28 -0
  123. package/packages/storefront/tsconfig.json +3 -0
  124. package/packages/types/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-ebit",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": true,
6
+ "disablePages": true,
7
+ "options": {
8
+ "ebitStoreId": ""
9
+ },
10
+ "stampsAppend": "src/append/stamps"
11
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-fb-pixel",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": true,
6
+ "options": {
7
+ "fbqContainerId": "",
8
+ "debug": false
9
+ },
10
+ "headAppend": "src/append/head",
11
+ "bodyAppend": "src/append/body"
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-gmc-ratings",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": true,
6
+ "disablePages": true,
7
+ "options": {
8
+ "badgePosition": "BOTTOM_LEFT",
9
+ "dialogPosition": "CENTER_DIALOG"
10
+ },
11
+ "stampsAppend": "src/append/stamps"
12
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-minicart",
3
+ "active": true,
4
+ "desktopOnly": false,
5
+ "options": {}
6
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-offers-notification",
3
+ "active": true,
4
+ "desktopOnly": false,
5
+ "options": {
6
+ "enableOutOfStock": true,
7
+ "enablePriceChange": true,
8
+ "popupOptions": "location=yes,height=400,width=320,status=yes"
9
+ },
10
+ "productSlots": "src/append/product-slots"
11
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-opinioes-verificadas",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": false,
6
+ "disablePages": true,
7
+ "options": {
8
+ "stamp": "",
9
+ "tagJs": ""
10
+ },
11
+ "headAppend": "src/append/head",
12
+ "bodyAppend": "src/append/body",
13
+ "productCardSlots": "src/append/product-card-slots",
14
+ "productSlots": "src/append/product-slots",
15
+ "productDescriptionAppend": "src/append/product-block",
16
+ "stampsAppend": "src/append/stamps",
17
+ "useJquery": true
18
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-product-card",
3
+ "active": true,
4
+ "desktopOnly": false,
5
+ "options": {
6
+ "buyText": "",
7
+ "buy": "",
8
+ "footer": ""
9
+ }
10
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-product",
3
+ "active": true,
4
+ "desktopOnly": false,
5
+ "options": {
6
+ "buyText": "",
7
+ "buy": "",
8
+ "strHasQuantitySelector": "_",
9
+ "strHasPromotionTimer": "_",
10
+ "lowQuantityToWarn": 12,
11
+ "maxVariationOptionsBtns": 6
12
+ }
13
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-search-engine",
3
+ "active": true,
4
+ "desktopOnly": false,
5
+ "options": {
6
+ "pagination": false
7
+ }
8
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-search",
3
+ "active": true,
4
+ "desktopOnly": false,
5
+ "options": {}
6
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-tag-manager",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": true,
6
+ "options": {
7
+ "gtmContainerId": "",
8
+ "dataLayerVar": "dataLayer"
9
+ },
10
+ "headAppend": "src/append/head",
11
+ "bodyAppend": "src/append/body"
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-tawkto",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": false,
6
+ "disablePages": true,
7
+ "options": {
8
+ "tawktoPropertyId": "",
9
+ "tawktoChatWidget": "default"
10
+ },
11
+ "bodyAppend": "src/append/body"
12
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-trustvox",
3
+ "active": false,
4
+ "desktopOnly": false,
5
+ "enableCheckout": false,
6
+ "disablePages": true,
7
+ "options": {
8
+ "trustvoxStoreId": ""
9
+ },
10
+ "bodyAppend": "src/append/body",
11
+ "productDescriptionAppend": "src/append/product-block",
12
+ "productCardSlots": "src/append/product-card-slots",
13
+ "productSlots": "src/append/product-slots",
14
+ "stampsAppend": "src/append/stamps"
15
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "pkg": "@ecomplus/widget-user",
3
+ "active": true,
4
+ "desktopOnly": true
5
+ }
@@ -0,0 +1 @@
1
+ :root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-QB6KRBZ4){margin:2rem 0}main:where(.astro-QB6KRBZ4){margin:auto;padding:1em;max-width:60ch}.text-gradient:where(.astro-QB6KRBZ4){font-weight:900;background-image:var(--astro-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-size:100% 200%;background-position-y:100%;border-radius:.4rem;animation:pulse 4s ease-in-out infinite}@keyframes pulse{0%,to{background-position-y:0%}50%{background-position-y:80%}}.instructions:where(.astro-QB6KRBZ4){line-height:1.6;margin:1rem 0;background:#4F39FA;padding:1rem;border-radius:.4rem;color:var(--color-bg)}.instructions:where(.astro-QB6KRBZ4) code:where(.astro-QB6KRBZ4){font-size:.875em;border:.1em solid var(--color-border);border-radius:4px;padding:.15em .25em}.link-card-grid:where(.astro-QB6KRBZ4){display:grid;grid-template-columns:repeat(auto-fit,minmax(24ch,1fr));gap:1rem;padding:0}
@@ -0,0 +1 @@
1
+ :root{--font-size-base: clamp(1rem, .34vw + .91rem, 1.19rem);--font-size-lg: clamp(1.2rem, .7vw + 1.2rem, 1.5rem);--font-size-xl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);--color-text: hsl(12, 5%, 4%);--color-bg: hsl(10, 21%, 95%);--color-border: hsl(17, 24%, 90%)}html{font-family:system-ui,sans-serif;font-size:var(--font-size-base);color:var(--color-text);background-color:var(--color-bg)}body{margin:0}h1{font-size:var(--font-size-xl)}h2{font-size:var(--font-size-lg)}code{font-family:Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace}
@@ -0,0 +1 @@
1
+ :root{--astro-gradient: linear-gradient(0deg,#4F39FA, #DA62C4)}h1:where(.astro-2COIDAMR){margin:2rem 0}main:where(.astro-2COIDAMR){margin:auto;padding:1em;max-width:60ch}.text-gradient:where(.astro-2COIDAMR){font-weight:900;background-image:var(--astro-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-size:100% 200%;background-position-y:100%;border-radius:.4rem;animation:pulse 4s ease-in-out infinite}@keyframes pulse{0%,to{background-position-y:0%}50%{background-position-y:80%}}.instructions:where(.astro-2COIDAMR){line-height:1.6;margin:1rem 0;background:#4F39FA;padding:1rem;border-radius:.4rem;color:var(--color-bg)}.instructions:where(.astro-2COIDAMR) code:where(.astro-2COIDAMR){font-size:.875em;border:.1em solid var(--color-border);border-radius:4px;padding:.15em .25em}.link-card-grid:where(.astro-2COIDAMR){display:grid;grid-template-columns:repeat(auto-fit,minmax(24ch,1fr));gap:1rem;padding:0}:root{--link-gradient: linear-gradient(45deg, #4F39FA, #DA62C4 30%, var(--color-border) 60%)}.link-card:where(.astro-ASCHB54V){list-style:none;display:flex;padding:.15rem;background-image:var(--link-gradient);background-size:400%;border-radius:.5rem;background-position:100%;transition:background-position .6s cubic-bezier(.22,1,.36,1)}.link-card:where(.astro-ASCHB54V)>a:where(.astro-ASCHB54V){width:100%;text-decoration:none;line-height:1.4;padding:1em 1.3em;border-radius:.35rem;color:var(--text-color);background-color:#fff;opacity:.8}h2:where(.astro-ASCHB54V){margin:0;transition:color .6s cubic-bezier(.22,1,.36,1)}p:where(.astro-ASCHB54V){margin-top:.75rem;margin-bottom:0}h2:where(.astro-ASCHB54V) span:where(.astro-ASCHB54V){display:inline-block;transition:transform .3s cubic-bezier(.22,1,.36,1)}.link-card:where(.astro-ASCHB54V):is(:hover,:focus-within){background-position:0}.link-card:where(.astro-ASCHB54V):is(:hover,:focus-within) h2:where(.astro-ASCHB54V){color:#4f39fa}.link-card:where(.astro-ASCHB54V):is(:hover,:focus-within) h2:where(.astro-ASCHB54V) span:where(.astro-ASCHB54V){transform:translate(2px)}
@@ -0,0 +1 @@
1
+ function pn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r<s.length;r++)n[s[r]]=!0;return t?r=>!!n[r.toLowerCase()]:r=>!!n[r]}const fr="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",cr=pn(fr);function ps(e){return!!e||e===""}function gn(e){if(R(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=ie(s)?dr(s):gn(s);if(r)for(const i in r)t[i]=r[i]}return t}else{if(ie(e))return e;if(te(e))return e}}const ur=/;(?![^(]*\))/g,ar=/:(.+)/;function dr(e){const t={};return e.split(ur).forEach(n=>{if(n){const s=n.split(ar);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function mn(e){let t="";if(ie(e))t=e;else if(R(e))for(let n=0;n<e.length;n++){const s=mn(e[n]);s&&(t+=s+" ")}else if(te(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}const S={},ct=[],ye=()=>{},hr=()=>!1,pr=/^on[^a-z]/,bt=e=>pr.test(e),_n=e=>e.startsWith("onUpdate:"),fe=Object.assign,bn=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},gr=Object.prototype.hasOwnProperty,U=(e,t)=>gr.call(e,t),R=Array.isArray,ut=e=>$t(e)==="[object Map]",mr=e=>$t(e)==="[object Set]",H=e=>typeof e=="function",ie=e=>typeof e=="string",xn=e=>typeof e=="symbol",te=e=>e!==null&&typeof e=="object",gs=e=>te(e)&&H(e.then)&&H(e.catch),_r=Object.prototype.toString,$t=e=>_r.call(e),br=e=>$t(e).slice(8,-1),xr=e=>$t(e)==="[object Object]",yn=e=>ie(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,at=pn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Dt=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},yr=/-(\w)/g,ke=Dt(e=>e.replace(yr,(t,n)=>n?n.toUpperCase():"")),wr=/\B([A-Z])/g,nt=Dt(e=>e.replace(wr,"-$1").toLowerCase()),ms=Dt(e=>e.charAt(0).toUpperCase()+e.slice(1)),zt=Dt(e=>e?`on${ms(e)}`:""),It=(e,t)=>!Object.is(e,t),Xt=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Rt=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Er=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Bn;const Tr=()=>Bn||(Bn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let Te;class Cr{constructor(t=!1){this.active=!0,this.effects=[],this.cleanups=[],!t&&Te&&(this.parent=Te,this.index=(Te.scopes||(Te.scopes=[])).push(this)-1)}run(t){if(this.active){const n=Te;try{return Te=this,t()}finally{Te=n}}}on(){Te=this}off(){Te=this.parent}stop(t){if(this.active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.active=!1}}}function Mr(e,t=Te){t&&t.active&&t.effects.push(e)}const wn=e=>{const t=new Set(e);return t.w=0,t.n=0,t},_s=e=>(e.w&$e)>0,bs=e=>(e.n&$e)>0,Or=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=$e},Fr=e=>{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s<t.length;s++){const r=t[s];_s(r)&&!bs(r)?r.delete(e):t[n++]=r,r.w&=~$e,r.n&=~$e}t.length=n}},en=new WeakMap;let ft=0,$e=1;const tn=30;let xe;const Se=Symbol(""),nn=Symbol("");class En{constructor(t,n=null,s){this.fn=t,this.scheduler=n,this.active=!0,this.deps=[],this.parent=void 0,Mr(this,s)}run(){if(!this.active)return this.fn();let t=xe,n=Ue;for(;t;){if(t===this)return;t=t.parent}try{return this.parent=xe,xe=this,Ue=!0,$e=1<<++ft,ft<=tn?Or(this):Wn(this),this.fn()}finally{ft<=tn&&Fr(this),$e=1<<--ft,xe=this.parent,Ue=n,this.parent=void 0,this.deferStop&&this.stop()}}stop(){xe===this?this.deferStop=!0:this.active&&(Wn(this),this.onStop&&this.onStop(),this.active=!1)}}function Wn(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let Ue=!0;const xs=[];function st(){xs.push(Ue),Ue=!1}function rt(){const e=xs.pop();Ue=e===void 0?!0:e}function de(e,t,n){if(Ue&&xe){let s=en.get(e);s||en.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=wn()),ys(r)}}function ys(e,t){let n=!1;ft<=tn?bs(e)||(e.n|=$e,n=!_s(e)):n=!e.has(xe),n&&(e.add(xe),xe.deps.push(e))}function Ie(e,t,n,s,r,i){const o=en.get(e);if(!o)return;let f=[];if(t==="clear")f=[...o.values()];else if(n==="length"&&R(e))o.forEach((u,d)=>{(d==="length"||d>=s)&&f.push(u)});else switch(n!==void 0&&f.push(o.get(n)),t){case"add":R(e)?yn(n)&&f.push(o.get("length")):(f.push(o.get(Se)),ut(e)&&f.push(o.get(nn)));break;case"delete":R(e)||(f.push(o.get(Se)),ut(e)&&f.push(o.get(nn)));break;case"set":ut(e)&&f.push(o.get(Se));break}if(f.length===1)f[0]&&sn(f[0]);else{const u=[];for(const d of f)d&&u.push(...d);sn(wn(u))}}function sn(e,t){const n=R(e)?e:[...e];for(const s of n)s.computed&&Sn(s);for(const s of n)s.computed||Sn(s)}function Sn(e,t){(e!==xe||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const Ar=pn("__proto__,__v_isRef,__isVue"),ws=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(xn)),Pr=Tn(),Ir=Tn(!1,!0),Rr=Tn(!0),qn=Nr();function Nr(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=D(this);for(let i=0,o=this.length;i<o;i++)de(s,"get",i+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(D)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){st();const s=D(this)[t].apply(this,n);return rt(),s}}),e}function Tn(e=!1,t=!1){return function(s,r,i){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&i===(e?t?zr:Os:t?Ms:Cs).get(s))return s;const o=R(s);if(!e&&o&&U(qn,r))return Reflect.get(qn,r,i);const f=Reflect.get(s,r,i);return(xn(r)?ws.has(r):Ar(r))||(e||de(s,"get",r),t)?f:oe(f)?o&&yn(r)?f:f.value:te(f)?e?Fs(f):On(f):f}}const Hr=Es(),vr=Es(!0);function Es(e=!1){return function(n,s,r,i){let o=n[s];if(pt(o)&&oe(o)&&!oe(r))return!1;if(!e&&(!rn(r)&&!pt(r)&&(o=D(o),r=D(r)),!R(n)&&oe(o)&&!oe(r)))return o.value=r,!0;const f=R(n)&&yn(s)?Number(s)<n.length:U(n,s),u=Reflect.set(n,s,r,i);return n===D(i)&&(f?It(r,o)&&Ie(n,"set",s,r):Ie(n,"add",s,r)),u}}function jr(e,t){const n=U(e,t);e[t];const s=Reflect.deleteProperty(e,t);return s&&n&&Ie(e,"delete",t,void 0),s}function Ur(e,t){const n=Reflect.has(e,t);return(!xn(t)||!ws.has(t))&&de(e,"has",t),n}function Lr(e){return de(e,"iterate",R(e)?"length":Se),Reflect.ownKeys(e)}const Ts={get:Pr,set:Hr,deleteProperty:jr,has:Ur,ownKeys:Lr},$r={get:Rr,set(e,t){return!0},deleteProperty(e,t){return!0}},Dr=fe({},Ts,{get:Ir,set:vr}),Cn=e=>e,Kt=e=>Reflect.getPrototypeOf(e);function yt(e,t,n=!1,s=!1){e=e.__v_raw;const r=D(e),i=D(t);n||(t!==i&&de(r,"get",t),de(r,"get",i));const{has:o}=Kt(r),f=s?Cn:n?Pn:An;if(o.call(r,t))return f(e.get(t));if(o.call(r,i))return f(e.get(i));e!==r&&e.get(t)}function wt(e,t=!1){const n=this.__v_raw,s=D(n),r=D(e);return t||(e!==r&&de(s,"has",e),de(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Et(e,t=!1){return e=e.__v_raw,!t&&de(D(e),"iterate",Se),Reflect.get(e,"size",e)}function Jn(e){e=D(e);const t=D(this);return Kt(t).has.call(t,e)||(t.add(e),Ie(t,"add",e,e)),this}function Yn(e,t){t=D(t);const n=D(this),{has:s,get:r}=Kt(n);let i=s.call(n,e);i||(e=D(e),i=s.call(n,e));const o=r.call(n,e);return n.set(e,t),i?It(t,o)&&Ie(n,"set",e,t):Ie(n,"add",e,t),this}function Vn(e){const t=D(this),{has:n,get:s}=Kt(t);let r=n.call(t,e);r||(e=D(e),r=n.call(t,e)),s&&s.call(t,e);const i=t.delete(e);return r&&Ie(t,"delete",e,void 0),i}function zn(){const e=D(this),t=e.size!==0,n=e.clear();return t&&Ie(e,"clear",void 0,void 0),n}function Tt(e,t){return function(s,r){const i=this,o=i.__v_raw,f=D(o),u=t?Cn:e?Pn:An;return!e&&de(f,"iterate",Se),o.forEach((d,_)=>s.call(r,u(d),u(_),i))}}function Ct(e,t,n){return function(...s){const r=this.__v_raw,i=D(r),o=ut(i),f=e==="entries"||e===Symbol.iterator&&o,u=e==="keys"&&o,d=r[e](...s),_=n?Cn:t?Pn:An;return!t&&de(i,"iterate",u?nn:Se),{next(){const{value:w,done:M}=d.next();return M?{value:w,done:M}:{value:f?[_(w[0]),_(w[1])]:_(w),done:M}},[Symbol.iterator](){return this}}}}function He(e){return function(...t){return e==="delete"?!1:this}}function Kr(){const e={get(i){return yt(this,i)},get size(){return Et(this)},has:wt,add:Jn,set:Yn,delete:Vn,clear:zn,forEach:Tt(!1,!1)},t={get(i){return yt(this,i,!1,!0)},get size(){return Et(this)},has:wt,add:Jn,set:Yn,delete:Vn,clear:zn,forEach:Tt(!1,!0)},n={get(i){return yt(this,i,!0)},get size(){return Et(this,!0)},has(i){return wt.call(this,i,!0)},add:He("add"),set:He("set"),delete:He("delete"),clear:He("clear"),forEach:Tt(!0,!1)},s={get(i){return yt(this,i,!0,!0)},get size(){return Et(this,!0)},has(i){return wt.call(this,i,!0)},add:He("add"),set:He("set"),delete:He("delete"),clear:He("clear"),forEach:Tt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{e[i]=Ct(i,!1,!1),n[i]=Ct(i,!0,!1),t[i]=Ct(i,!1,!0),s[i]=Ct(i,!0,!0)}),[e,n,t,s]}const[Br,Wr,Sr,qr]=Kr();function Mn(e,t){const n=t?e?qr:Sr:e?Wr:Br;return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(U(n,r)&&r in s?n:s,r,i)}const Jr={get:Mn(!1,!1)},Yr={get:Mn(!1,!0)},Vr={get:Mn(!0,!1)},Cs=new WeakMap,Ms=new WeakMap,Os=new WeakMap,zr=new WeakMap;function Xr(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Zr(e){return e.__v_skip||!Object.isExtensible(e)?0:Xr(br(e))}function On(e){return pt(e)?e:Fn(e,!1,Ts,Jr,Cs)}function Qr(e){return Fn(e,!1,Dr,Yr,Ms)}function Fs(e){return Fn(e,!0,$r,Vr,Os)}function Fn(e,t,n,s,r){if(!te(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=Zr(e);if(o===0)return e;const f=new Proxy(e,o===2?s:n);return r.set(e,f),f}function Ze(e){return pt(e)?Ze(e.__v_raw):!!(e&&e.__v_isReactive)}function pt(e){return!!(e&&e.__v_isReadonly)}function rn(e){return!!(e&&e.__v_isShallow)}function As(e){return Ze(e)||pt(e)}function D(e){const t=e&&e.__v_raw;return t?D(t):e}function Ps(e){return Rt(e,"__v_skip",!0),e}const An=e=>te(e)?On(e):e,Pn=e=>te(e)?Fs(e):e;function kr(e){Ue&&xe&&(e=D(e),ys(e.dep||(e.dep=wn())))}function Gr(e,t){e=D(e),e.dep&&sn(e.dep)}function oe(e){return!!(e&&e.__v_isRef===!0)}function ei(e){return oe(e)?e.value:e}const ti={get:(e,t,n)=>ei(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return oe(r)&&!oe(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function Is(e){return Ze(e)?e:new Proxy(e,ti)}var Rs;class ni{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Rs]=!1,this._dirty=!0,this.effect=new En(t,()=>{this._dirty||(this._dirty=!0,Gr(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=D(this);return kr(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Rs="__v_isReadonly";function si(e,t,n=!1){let s,r;const i=H(e);return i?(s=e,r=ye):(s=e.get,r=e.set),new ni(s,r,i||!r,n)}function Le(e,t,n,s){let r;try{r=s?e(...s):e()}catch(i){Bt(i,t,n)}return r}function we(e,t,n,s){if(H(e)){const i=Le(e,t,n,s);return i&&gs(i)&&i.catch(o=>{Bt(o,t,n)}),i}const r=[];for(let i=0;i<e.length;i++)r.push(we(e[i],t,n,s));return r}function Bt(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let i=t.parent;const o=t.proxy,f=n;for(;i;){const d=i.ec;if(d){for(let _=0;_<d.length;_++)if(d[_](e,o,f)===!1)return}i=i.parent}const u=t.appContext.config.errorHandler;if(u){Le(u,null,10,[e,o,f]);return}}ri(e,n,r,s)}function ri(e,t,n,s=!0){console.error(e)}let Nt=!1,ln=!1;const se=[];let Me=0;const Qe=[];let Ae=null,Be=0;const Ns=Promise.resolve();let In=null;function ii(e){const t=In||Ns;return e?t.then(this?e.bind(this):e):t}function li(e){let t=Me+1,n=se.length;for(;t<n;){const s=t+n>>>1;gt(se[s])<e?t=s+1:n=s}return t}function Rn(e){(!se.length||!se.includes(e,Nt&&e.allowRecurse?Me+1:Me))&&(e.id==null?se.push(e):se.splice(li(e.id),0,e),Hs())}function Hs(){!Nt&&!ln&&(ln=!0,In=Ns.then(vs))}function oi(e){const t=se.indexOf(e);t>Me&&se.splice(t,1)}function fi(e){R(e)?Qe.push(...e):(!Ae||!Ae.includes(e,e.allowRecurse?Be+1:Be))&&Qe.push(e),Hs()}function Xn(e,t=Me){for(;t<se.length;t++){const n=se[t];n&&n.pre&&(se.splice(t,1),t--,n())}}function Ht(e){if(Qe.length){const t=[...new Set(Qe)];if(Qe.length=0,Ae){Ae.push(...t);return}for(Ae=t,Ae.sort((n,s)=>gt(n)-gt(s)),Be=0;Be<Ae.length;Be++)Ae[Be]();Ae=null,Be=0}}const gt=e=>e.id==null?1/0:e.id,ci=(e,t)=>{const n=gt(e)-gt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function vs(e){ln=!1,Nt=!0,se.sort(ci);const t=ye;try{for(Me=0;Me<se.length;Me++){const n=se[Me];n&&n.active!==!1&&Le(n,null,14)}}finally{Me=0,se.length=0,Ht(),Nt=!1,In=null,(se.length||Qe.length)&&vs()}}function ui(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||S;let r=n;const i=t.startsWith("update:"),o=i&&t.slice(7);if(o&&o in s){const _=`${o==="modelValue"?"model":o}Modifiers`,{number:w,trim:M}=s[_]||S;M&&(r=n.map(I=>I.trim())),w&&(r=n.map(Er))}let f,u=s[f=zt(t)]||s[f=zt(ke(t))];!u&&i&&(u=s[f=zt(nt(t))]),u&&we(u,e,6,r);const d=s[f+"Once"];if(d){if(!e.emitted)e.emitted={};else if(e.emitted[f])return;e.emitted[f]=!0,we(d,e,6,r)}}function js(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},f=!1;if(!H(e)){const u=d=>{const _=js(d,t,!0);_&&(f=!0,fe(o,_))};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}return!i&&!f?(te(e)&&s.set(e,null),null):(R(i)?i.forEach(u=>o[u]=null):fe(o,i),te(e)&&s.set(e,o),o)}function Wt(e,t){return!e||!bt(t)?!1:(t=t.slice(2).replace(/Once$/,""),U(e,t[0].toLowerCase()+t.slice(1))||U(e,nt(t))||U(e,t))}let Pe=null,Us=null;function vt(e){const t=Pe;return Pe=e,Us=e&&e.type.__scopeId||null,t}function ai(e,t=Pe,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&rs(-1);const i=vt(t),o=e(...r);return vt(i),s._d&&rs(1),o};return s._n=!0,s._c=!0,s._d=!0,s}function Zt(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:i,propsOptions:[o],slots:f,attrs:u,emit:d,render:_,renderCache:w,data:M,setupState:I,ctx:K,inheritAttrs:G}=e;let v,m;const T=vt(e);try{if(n.shapeFlag&4){const L=r||s;v=be(_.call(L,L,w,i,I,M,K)),m=u}else{const L=t;v=be(L.length>1?L(i,{attrs:u,slots:f,emit:d}):L(i,null)),m=t.props?u:di(u)}}catch(L){Bt(L,e,1),v=ae(Ge)}let N=v;if(m&&G!==!1){const L=Object.keys(m),{shapeFlag:q}=N;L.length&&q&7&&(o&&L.some(_n)&&(m=hi(m,o)),N=et(N,m))}return n.dirs&&(N=et(N),N.dirs=N.dirs?N.dirs.concat(n.dirs):n.dirs),n.transition&&(N.transition=n.transition),v=N,vt(T),v}const di=e=>{let t;for(const n in e)(n==="class"||n==="style"||bt(n))&&((t||(t={}))[n]=e[n]);return t},hi=(e,t)=>{const n={};for(const s in e)(!_n(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function pi(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:f,patchFlag:u}=t,d=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return s?Zn(s,o,d):!!o;if(u&8){const _=t.dynamicProps;for(let w=0;w<_.length;w++){const M=_[w];if(o[M]!==s[M]&&!Wt(d,M))return!0}}}else return(r||f)&&(!f||!f.$stable)?!0:s===o?!1:s?o?Zn(s,o,d):!0:!!o;return!1}function Zn(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const i=s[r];if(t[i]!==e[i]&&!Wt(n,i))return!0}return!1}function gi({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const mi=e=>e.__isSuspense;function Ls(e,t){t&&t.pendingBranch?R(e)?t.effects.push(...e):t.effects.push(e):fi(e)}function _i(e,t){if(re){let n=re.provides;const s=re.parent&&re.parent.provides;s===n&&(n=re.provides=Object.create(s)),n[e]=t}}function Qt(e,t,n=!1){const s=re||Pe;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&H(t)?t.call(s.proxy):t}}const Qn={};function kt(e,t,n){return $s(e,t,n)}function $s(e,t,{immediate:n,deep:s,flush:r,onTrack:i,onTrigger:o}=S){const f=re;let u,d=!1,_=!1;if(oe(e)?(u=()=>e.value,d=rn(e)):Ze(e)?(u=()=>e,s=!0):R(e)?(_=!0,d=e.some(m=>Ze(m)||rn(m)),u=()=>e.map(m=>{if(oe(m))return m.value;if(Ze(m))return ze(m);if(H(m))return Le(m,f,2)})):H(e)?t?u=()=>Le(e,f,2):u=()=>{if(!(f&&f.isUnmounted))return w&&w(),we(e,f,3,[M])}:u=ye,t&&s){const m=u;u=()=>ze(m())}let w,M=m=>{w=v.onStop=()=>{Le(m,f,4)}};if(_t)return M=ye,t?n&&we(t,f,3,[u(),_?[]:void 0,M]):u(),ye;let I=_?[]:Qn;const K=()=>{if(!!v.active)if(t){const m=v.run();(s||d||(_?m.some((T,N)=>It(T,I[N])):It(m,I)))&&(w&&w(),we(t,f,3,[m,I===Qn?void 0:I,M]),I=m)}else v.run()};K.allowRecurse=!!t;let G;r==="sync"?G=K:r==="post"?G=()=>ce(K,f&&f.suspense):(K.pre=!0,f&&(K.id=f.uid),G=()=>Rn(K));const v=new En(u,G);return t?n?K():I=v.run():r==="post"?ce(v.run.bind(v),f&&f.suspense):v.run(),()=>{v.stop(),f&&f.scope&&bn(f.scope.effects,v)}}function bi(e,t,n){const s=this.proxy,r=ie(e)?e.includes(".")?Ds(s,e):()=>s[e]:e.bind(s,s);let i;H(t)?i=t:(i=t.handler,n=t);const o=re;tt(this);const f=$s(r,i.bind(s),n);return o?tt(o):qe(),f}function Ds(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function ze(e,t){if(!te(e)||e.__v_skip||(t=t||new Set,t.has(e)))return e;if(t.add(e),oe(e))ze(e.value,t);else if(R(e))for(let n=0;n<e.length;n++)ze(e[n],t);else if(mr(e)||ut(e))e.forEach(n=>{ze(n,t)});else if(xr(e))for(const n in e)ze(e[n],t);return e}function xi(e){return H(e)?{setup:e,name:e.name}:e}const dt=e=>!!e.type.__asyncLoader,Ks=e=>e.type.__isKeepAlive;function yi(e,t){Bs(e,"a",t)}function wi(e,t){Bs(e,"da",t)}function Bs(e,t,n=re){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(St(t,s,n),n){let r=n.parent;for(;r&&r.parent;)Ks(r.parent.vnode)&&Ei(s,t,n,r),r=r.parent}}function Ei(e,t,n,s){const r=St(t,e,s,!0);Ws(()=>{bn(s[t],r)},n)}function St(e,t,n=re,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;st(),tt(n);const f=we(t,n,e,o);return qe(),rt(),f});return s?r.unshift(i):r.push(i),i}}const Re=e=>(t,n=re)=>(!_t||e==="sp")&&St(e,t,n),Ti=Re("bm"),Ci=Re("m"),Mi=Re("bu"),Oi=Re("u"),Fi=Re("bum"),Ws=Re("um"),Ai=Re("sp"),Pi=Re("rtg"),Ii=Re("rtc");function Ri(e,t=re){St("ec",e,t)}function Ce(e,t,n,s){const r=e.dirs,i=t&&t.dirs;for(let o=0;o<r.length;o++){const f=r[o];i&&(f.oldValue=i[o].value);let u=f.dir[s];u&&(st(),we(u,n,8,[e.el,f,e,t]),rt())}}const Ni=Symbol(),on=e=>e?tr(e)?jn(e)||e.proxy:on(e.parent):null,jt=fe(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>on(e.parent),$root:e=>on(e.root),$emit:e=>e.emit,$options:e=>qs(e),$forceUpdate:e=>e.f||(e.f=()=>Rn(e.update)),$nextTick:e=>e.n||(e.n=ii.bind(e.proxy)),$watch:e=>bi.bind(e)}),Hi={get({_:e},t){const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:f,appContext:u}=e;let d;if(t[0]!=="$"){const I=o[t];if(I!==void 0)switch(I){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(s!==S&&U(s,t))return o[t]=1,s[t];if(r!==S&&U(r,t))return o[t]=2,r[t];if((d=e.propsOptions[0])&&U(d,t))return o[t]=3,i[t];if(n!==S&&U(n,t))return o[t]=4,n[t];fn&&(o[t]=0)}}const _=jt[t];let w,M;if(_)return t==="$attrs"&&de(e,"get",t),_(e);if((w=f.__cssModules)&&(w=w[t]))return w;if(n!==S&&U(n,t))return o[t]=4,n[t];if(M=u.config.globalProperties,U(M,t))return M[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return r!==S&&U(r,t)?(r[t]=n,!0):s!==S&&U(s,t)?(s[t]=n,!0):U(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let f;return!!n[o]||e!==S&&U(e,o)||t!==S&&U(t,o)||(f=i[0])&&U(f,o)||U(s,o)||U(jt,o)||U(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:U(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let fn=!0;function vi(e){const t=qs(e),n=e.proxy,s=e.ctx;fn=!1,t.beforeCreate&&kn(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:f,provide:u,inject:d,created:_,beforeMount:w,mounted:M,beforeUpdate:I,updated:K,activated:G,deactivated:v,beforeDestroy:m,beforeUnmount:T,destroyed:N,unmounted:L,render:q,renderTracked:Z,renderTriggered:V,errorCaptured:j,serverPrefetch:X,expose:ee,inheritAttrs:Q,components:pe,directives:ne,filters:A}=t;if(d&&ji(d,s,null,e.appContext.config.unwrapInjectedRef),o)for(const k in o){const J=o[k];H(J)&&(s[k]=J.bind(n))}if(r){const k=r.call(n,n);te(k)&&(e.data=On(k))}if(fn=!0,i)for(const k in i){const J=i[k],Oe=H(J)?J.bind(n,n):H(J.get)?J.get.bind(n,n):ye,Jt=!H(J)&&H(J.set)?J.set.bind(n):ye,it=cl({get:Oe,set:Jt});Object.defineProperty(s,k,{enumerable:!0,configurable:!0,get:()=>it.value,set:Je=>it.value=Je})}if(f)for(const k in f)Ss(f[k],s,n,k);if(u){const k=H(u)?u.call(n):u;Reflect.ownKeys(k).forEach(J=>{_i(J,k[J])})}_&&kn(_,e,"c");function z(k,J){R(J)?J.forEach(Oe=>k(Oe.bind(n))):J&&k(J.bind(n))}if(z(Ti,w),z(Ci,M),z(Mi,I),z(Oi,K),z(yi,G),z(wi,v),z(Ri,j),z(Ii,Z),z(Pi,V),z(Fi,T),z(Ws,L),z(Ai,X),R(ee))if(ee.length){const k=e.exposed||(e.exposed={});ee.forEach(J=>{Object.defineProperty(k,J,{get:()=>n[J],set:Oe=>n[J]=Oe})})}else e.exposed||(e.exposed={});q&&e.render===ye&&(e.render=q),Q!=null&&(e.inheritAttrs=Q),pe&&(e.components=pe),ne&&(e.directives=ne)}function ji(e,t,n=ye,s=!1){R(e)&&(e=cn(e));for(const r in e){const i=e[r];let o;te(i)?"default"in i?o=Qt(i.from||r,i.default,!0):o=Qt(i.from||r):o=Qt(i),oe(o)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:f=>o.value=f}):t[r]=o}}function kn(e,t,n){we(R(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Ss(e,t,n,s){const r=s.includes(".")?Ds(n,s):()=>n[s];if(ie(e)){const i=t[e];H(i)&&kt(r,i)}else if(H(e))kt(r,e.bind(n));else if(te(e))if(R(e))e.forEach(i=>Ss(i,t,n,s));else{const i=H(e.handler)?e.handler.bind(n):t[e.handler];H(i)&&kt(r,i,e)}}function qs(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,f=i.get(t);let u;return f?u=f:!r.length&&!n&&!s?u=t:(u={},r.length&&r.forEach(d=>Ut(u,d,o,!0)),Ut(u,t,o)),te(t)&&i.set(t,u),u}function Ut(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&Ut(e,i,n,!0),r&&r.forEach(o=>Ut(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const f=Ui[o]||n&&n[o];e[o]=f?f(e[o],t[o]):t[o]}return e}const Ui={data:Gn,props:Ke,emits:Ke,methods:Ke,computed:Ke,beforeCreate:le,created:le,beforeMount:le,mounted:le,beforeUpdate:le,updated:le,beforeDestroy:le,beforeUnmount:le,destroyed:le,unmounted:le,activated:le,deactivated:le,errorCaptured:le,serverPrefetch:le,components:Ke,directives:Ke,watch:$i,provide:Gn,inject:Li};function Gn(e,t){return t?e?function(){return fe(H(e)?e.call(this,this):e,H(t)?t.call(this,this):t)}:t:e}function Li(e,t){return Ke(cn(e),cn(t))}function cn(e){if(R(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function le(e,t){return e?[...new Set([].concat(e,t))]:t}function Ke(e,t){return e?fe(fe(Object.create(null),e),t):t}function $i(e,t){if(!e)return t;if(!t)return e;const n=fe(Object.create(null),e);for(const s in t)n[s]=le(e[s],t[s]);return n}function Di(e,t,n,s=!1){const r={},i={};Rt(i,qt,1),e.propsDefaults=Object.create(null),Js(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);n?e.props=s?r:Qr(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function Ki(e,t,n,s){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,f=D(r),[u]=e.propsOptions;let d=!1;if((s||o>0)&&!(o&16)){if(o&8){const _=e.vnode.dynamicProps;for(let w=0;w<_.length;w++){let M=_[w];if(Wt(e.emitsOptions,M))continue;const I=t[M];if(u)if(U(i,M))I!==i[M]&&(i[M]=I,d=!0);else{const K=ke(M);r[K]=un(u,f,K,I,e,!1)}else I!==i[M]&&(i[M]=I,d=!0)}}}else{Js(e,t,r,i)&&(d=!0);let _;for(const w in f)(!t||!U(t,w)&&((_=nt(w))===w||!U(t,_)))&&(u?n&&(n[w]!==void 0||n[_]!==void 0)&&(r[w]=un(u,f,w,void 0,e,!0)):delete r[w]);if(i!==f)for(const w in i)(!t||!U(t,w)&&!0)&&(delete i[w],d=!0)}d&&Ie(e,"set","$attrs")}function Js(e,t,n,s){const[r,i]=e.propsOptions;let o=!1,f;if(t)for(let u in t){if(at(u))continue;const d=t[u];let _;r&&U(r,_=ke(u))?!i||!i.includes(_)?n[_]=d:(f||(f={}))[_]=d:Wt(e.emitsOptions,u)||(!(u in s)||d!==s[u])&&(s[u]=d,o=!0)}if(i){const u=D(n),d=f||S;for(let _=0;_<i.length;_++){const w=i[_];n[w]=un(r,u,w,d[w],e,!U(d,w))}}return o}function un(e,t,n,s,r,i){const o=e[n];if(o!=null){const f=U(o,"default");if(f&&s===void 0){const u=o.default;if(o.type!==Function&&H(u)){const{propsDefaults:d}=r;n in d?s=d[n]:(tt(r),s=d[n]=u.call(null,t),qe())}else s=u}o[0]&&(i&&!f?s=!1:o[1]&&(s===""||s===nt(n))&&(s=!0))}return s}function Ys(e,t,n=!1){const s=t.propsCache,r=s.get(e);if(r)return r;const i=e.props,o={},f=[];let u=!1;if(!H(e)){const _=w=>{u=!0;const[M,I]=Ys(w,t,!0);fe(o,M),I&&f.push(...I)};!n&&t.mixins.length&&t.mixins.forEach(_),e.extends&&_(e.extends),e.mixins&&e.mixins.forEach(_)}if(!i&&!u)return te(e)&&s.set(e,ct),ct;if(R(i))for(let _=0;_<i.length;_++){const w=ke(i[_]);es(w)&&(o[w]=S)}else if(i)for(const _ in i){const w=ke(_);if(es(w)){const M=i[_],I=o[w]=R(M)||H(M)?{type:M}:M;if(I){const K=ss(Boolean,I.type),G=ss(String,I.type);I[0]=K>-1,I[1]=G<0||K<G,(K>-1||U(I,"default"))&&f.push(w)}}}const d=[o,f];return te(e)&&s.set(e,d),d}function es(e){return e[0]!=="$"}function ts(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function ns(e,t){return ts(e)===ts(t)}function ss(e,t){return R(t)?t.findIndex(n=>ns(n,e)):H(t)&&ns(t,e)?0:-1}const Vs=e=>e[0]==="_"||e==="$stable",Nn=e=>R(e)?e.map(be):[be(e)],Bi=(e,t,n)=>{if(t._n)return t;const s=ai((...r)=>Nn(t(...r)),n);return s._c=!1,s},zs=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Vs(r))continue;const i=e[r];if(H(i))t[r]=Bi(r,i,s);else if(i!=null){const o=Nn(i);t[r]=()=>o}}},Xs=(e,t)=>{const n=Nn(t);e.slots.default=()=>n},Wi=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=D(t),Rt(t,"_",n)):zs(t,e.slots={})}else e.slots={},t&&Xs(e,t);Rt(e.slots,qt,1)},Si=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=S;if(s.shapeFlag&32){const f=t._;f?n&&f===1?i=!1:(fe(r,t),!n&&f===1&&delete r._):(i=!t.$stable,zs(t,r)),o=t}else t&&(Xs(e,t),o={default:1});if(i)for(const f in r)!Vs(f)&&!(f in o)&&delete r[f]};function Zs(){return{app:null,config:{isNativeTag:hr,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let qi=0;function Ji(e,t){return function(s,r=null){H(s)||(s=Object.assign({},s)),r!=null&&!te(r)&&(r=null);const i=Zs(),o=new Set;let f=!1;const u=i.app={_uid:qi++,_component:s,_props:r,_container:null,_context:i,_instance:null,version:ul,get config(){return i.config},set config(d){},use(d,..._){return o.has(d)||(d&&H(d.install)?(o.add(d),d.install(u,..._)):H(d)&&(o.add(d),d(u,..._))),u},mixin(d){return i.mixins.includes(d)||i.mixins.push(d),u},component(d,_){return _?(i.components[d]=_,u):i.components[d]},directive(d,_){return _?(i.directives[d]=_,u):i.directives[d]},mount(d,_,w){if(!f){const M=ae(s,r);return M.appContext=i,_&&t?t(M,d):e(M,d,w),f=!0,u._container=d,d.__vue_app__=u,jn(M.component)||M.component.proxy}},unmount(){f&&(e(null,u._container),delete u._container.__vue_app__)},provide(d,_){return i.provides[d]=_,u}};return u}}function Lt(e,t,n,s,r=!1){if(R(e)){e.forEach((M,I)=>Lt(M,t&&(R(t)?t[I]:t),n,s,r));return}if(dt(s)&&!r)return;const i=s.shapeFlag&4?jn(s.component)||s.component.proxy:s.el,o=r?null:i,{i:f,r:u}=e,d=t&&t.r,_=f.refs===S?f.refs={}:f.refs,w=f.setupState;if(d!=null&&d!==u&&(ie(d)?(_[d]=null,U(w,d)&&(w[d]=null)):oe(d)&&(d.value=null)),H(u))Le(u,f,12,[o,_]);else{const M=ie(u),I=oe(u);if(M||I){const K=()=>{if(e.f){const G=M?_[u]:u.value;r?R(G)&&bn(G,i):R(G)?G.includes(i)||G.push(i):M?(_[u]=[i],U(w,u)&&(w[u]=_[u])):(u.value=[i],e.k&&(_[e.k]=u.value))}else M?(_[u]=o,U(w,u)&&(w[u]=o)):I&&(u.value=o,e.k&&(_[e.k]=o))};o?(K.id=-1,ce(K,n)):K()}}}let ve=!1;const Mt=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",Ot=e=>e.nodeType===8;function Yi(e){const{mt:t,p:n,o:{patchProp:s,createText:r,nextSibling:i,parentNode:o,remove:f,insert:u,createComment:d}}=e,_=(m,T)=>{if(!T.hasChildNodes()){n(null,m,T),Ht(),T._vnode=m;return}ve=!1,w(T.firstChild,m,null,null,null),Ht(),T._vnode=m,ve&&console.error("Hydration completed but contains mismatches.")},w=(m,T,N,L,q,Z=!1)=>{const V=Ot(m)&&m.data==="[",j=()=>G(m,T,N,L,q,V),{type:X,ref:ee,shapeFlag:Q,patchFlag:pe}=T,ne=m.nodeType;T.el=m,pe===-2&&(Z=!1,T.dynamicChildren=null);let A=null;switch(X){case mt:ne!==3?T.children===""?(u(T.el=r(""),o(m),m),A=m):A=j():(m.data!==T.children&&(ve=!0,m.data=T.children),A=i(m));break;case Ge:ne!==8||V?A=j():A=i(m);break;case Ft:if(ne!==1&&ne!==3)A=j();else{A=m;const ge=!T.children.length;for(let z=0;z<T.staticCount;z++)ge&&(T.children+=A.nodeType===1?A.outerHTML:A.data),z===T.staticCount-1&&(T.anchor=A),A=i(A);return A}break;case _e:V?A=K(m,T,N,L,q,Z):A=j();break;default:if(Q&1)ne!==1||T.type.toLowerCase()!==m.tagName.toLowerCase()?A=j():A=M(m,T,N,L,q,Z);else if(Q&6){T.slotScopeIds=q;const ge=o(m);if(t(T,ge,null,N,L,Mt(ge),Z),A=V?v(m):i(m),A&&Ot(A)&&A.data==="teleport end"&&(A=i(A)),dt(T)){let z;V?(z=ae(_e),z.anchor=A?A.previousSibling:ge.lastChild):z=m.nodeType===3?er(""):ae("div"),z.el=m,T.component.subTree=z}}else Q&64?ne!==8?A=j():A=T.type.hydrate(m,T,N,L,q,Z,e,I):Q&128&&(A=T.type.hydrate(m,T,N,L,Mt(o(m)),q,Z,e,w))}return ee!=null&&Lt(ee,null,L,T),A},M=(m,T,N,L,q,Z)=>{Z=Z||!!T.dynamicChildren;const{type:V,props:j,patchFlag:X,shapeFlag:ee,dirs:Q}=T,pe=V==="input"&&Q||V==="option";if(pe||X!==-1){if(Q&&Ce(T,null,N,"created"),j)if(pe||!Z||X&48)for(const A in j)(pe&&A.endsWith("value")||bt(A)&&!at(A))&&s(m,A,null,j[A],!1,void 0,N);else j.onClick&&s(m,"onClick",null,j.onClick,!1,void 0,N);let ne;if((ne=j&&j.onVnodeBeforeMount)&&he(ne,N,T),Q&&Ce(T,null,N,"beforeMount"),((ne=j&&j.onVnodeMounted)||Q)&&Ls(()=>{ne&&he(ne,N,T),Q&&Ce(T,null,N,"mounted")},L),ee&16&&!(j&&(j.innerHTML||j.textContent))){let A=I(m.firstChild,T,m,N,L,q,Z);for(;A;){ve=!0;const ge=A;A=A.nextSibling,f(ge)}}else ee&8&&m.textContent!==T.children&&(ve=!0,m.textContent=T.children)}return m.nextSibling},I=(m,T,N,L,q,Z,V)=>{V=V||!!T.dynamicChildren;const j=T.children,X=j.length;for(let ee=0;ee<X;ee++){const Q=V?j[ee]:j[ee]=be(j[ee]);if(m)m=w(m,Q,L,q,Z,V);else{if(Q.type===mt&&!Q.children)continue;ve=!0,n(null,Q,N,null,L,q,Mt(N),Z)}}return m},K=(m,T,N,L,q,Z)=>{const{slotScopeIds:V}=T;V&&(q=q?q.concat(V):V);const j=o(m),X=I(i(m),T,j,N,L,q,Z);return X&&Ot(X)&&X.data==="]"?i(T.anchor=X):(ve=!0,u(T.anchor=d("]"),j,X),X)},G=(m,T,N,L,q,Z)=>{if(ve=!0,T.el=null,Z){const X=v(m);for(;;){const ee=i(m);if(ee&&ee!==X)f(ee);else break}}const V=i(m),j=o(m);return f(m),n(null,T,j,V,N,L,Mt(j),q),V},v=m=>{let T=0;for(;m;)if(m=i(m),m&&Ot(m)&&(m.data==="["&&T++,m.data==="]")){if(T===0)return i(m);T--}return m};return[_,w]}const ce=Ls;function Vi(e){return Qs(e)}function zi(e){return Qs(e,Yi)}function Qs(e,t){const n=Tr();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:f,createComment:u,setText:d,setElementText:_,parentNode:w,nextSibling:M,setScopeId:I=ye,cloneNode:K,insertStaticContent:G}=e,v=(l,c,a,p=null,h=null,x=null,E=!1,b=null,y=!!c.dynamicChildren)=>{if(l===c)return;l&&!ot(l,c)&&(p=xt(l),Ne(l,h,x,!0),l=null),c.patchFlag===-2&&(y=!1,c.dynamicChildren=null);const{type:g,ref:O,shapeFlag:C}=c;switch(g){case mt:m(l,c,a,p);break;case Ge:T(l,c,a,p);break;case Ft:l==null&&N(c,a,p,E);break;case _e:ne(l,c,a,p,h,x,E,b,y);break;default:C&1?Z(l,c,a,p,h,x,E,b,y):C&6?A(l,c,a,p,h,x,E,b,y):(C&64||C&128)&&g.process(l,c,a,p,h,x,E,b,y,Ye)}O!=null&&h&&Lt(O,l&&l.ref,x,c||l,!c)},m=(l,c,a,p)=>{if(l==null)s(c.el=f(c.children),a,p);else{const h=c.el=l.el;c.children!==l.children&&d(h,c.children)}},T=(l,c,a,p)=>{l==null?s(c.el=u(c.children||""),a,p):c.el=l.el},N=(l,c,a,p)=>{[l.el,l.anchor]=G(l.children,c,a,p,l.el,l.anchor)},L=({el:l,anchor:c},a,p)=>{let h;for(;l&&l!==c;)h=M(l),s(l,a,p),l=h;s(c,a,p)},q=({el:l,anchor:c})=>{let a;for(;l&&l!==c;)a=M(l),r(l),l=a;r(c)},Z=(l,c,a,p,h,x,E,b,y)=>{E=E||c.type==="svg",l==null?V(c,a,p,h,x,E,b,y):ee(l,c,h,x,E,b,y)},V=(l,c,a,p,h,x,E,b)=>{let y,g;const{type:O,props:C,shapeFlag:F,transition:P,patchFlag:$,dirs:B}=l;if(l.el&&K!==void 0&&$===-1)y=l.el=K(l.el);else{if(y=l.el=o(l.type,x,C&&C.is,C),F&8?_(y,l.children):F&16&&X(l.children,y,null,p,h,x&&O!=="foreignObject",E,b),B&&Ce(l,null,p,"created"),C){for(const Y in C)Y!=="value"&&!at(Y)&&i(y,Y,null,C[Y],x,l.children,p,h,Fe);"value"in C&&i(y,"value",null,C.value),(g=C.onVnodeBeforeMount)&&he(g,p,l)}j(y,l,l.scopeId,E,p)}B&&Ce(l,null,p,"beforeMount");const W=(!h||h&&!h.pendingBranch)&&P&&!P.persisted;W&&P.beforeEnter(y),s(y,c,a),((g=C&&C.onVnodeMounted)||W||B)&&ce(()=>{g&&he(g,p,l),W&&P.enter(y),B&&Ce(l,null,p,"mounted")},h)},j=(l,c,a,p,h)=>{if(a&&I(l,a),p)for(let x=0;x<p.length;x++)I(l,p[x]);if(h){let x=h.subTree;if(c===x){const E=h.vnode;j(l,E,E.scopeId,E.slotScopeIds,h.parent)}}},X=(l,c,a,p,h,x,E,b,y=0)=>{for(let g=y;g<l.length;g++){const O=l[g]=b?je(l[g]):be(l[g]);v(null,O,c,a,p,h,x,E,b)}},ee=(l,c,a,p,h,x,E)=>{const b=c.el=l.el;let{patchFlag:y,dynamicChildren:g,dirs:O}=c;y|=l.patchFlag&16;const C=l.props||S,F=c.props||S;let P;a&&De(a,!1),(P=F.onVnodeBeforeUpdate)&&he(P,a,c,l),O&&Ce(c,l,a,"beforeUpdate"),a&&De(a,!0);const $=h&&c.type!=="foreignObject";if(g?Q(l.dynamicChildren,g,b,a,p,$,x):E||Oe(l,c,b,null,a,p,$,x,!1),y>0){if(y&16)pe(b,c,C,F,a,p,h);else if(y&2&&C.class!==F.class&&i(b,"class",null,F.class,h),y&4&&i(b,"style",C.style,F.style,h),y&8){const B=c.dynamicProps;for(let W=0;W<B.length;W++){const Y=B[W],me=C[Y],Ve=F[Y];(Ve!==me||Y==="value")&&i(b,Y,me,Ve,h,l.children,a,p,Fe)}}y&1&&l.children!==c.children&&_(b,c.children)}else!E&&g==null&&pe(b,c,C,F,a,p,h);((P=F.onVnodeUpdated)||O)&&ce(()=>{P&&he(P,a,c,l),O&&Ce(c,l,a,"updated")},p)},Q=(l,c,a,p,h,x,E)=>{for(let b=0;b<c.length;b++){const y=l[b],g=c[b],O=y.el&&(y.type===_e||!ot(y,g)||y.shapeFlag&70)?w(y.el):a;v(y,g,O,null,p,h,x,E,!0)}},pe=(l,c,a,p,h,x,E)=>{if(a!==p){for(const b in p){if(at(b))continue;const y=p[b],g=a[b];y!==g&&b!=="value"&&i(l,b,g,y,E,c.children,h,x,Fe)}if(a!==S)for(const b in a)!at(b)&&!(b in p)&&i(l,b,a[b],null,E,c.children,h,x,Fe);"value"in p&&i(l,"value",a.value,p.value)}},ne=(l,c,a,p,h,x,E,b,y)=>{const g=c.el=l?l.el:f(""),O=c.anchor=l?l.anchor:f("");let{patchFlag:C,dynamicChildren:F,slotScopeIds:P}=c;P&&(b=b?b.concat(P):P),l==null?(s(g,a,p),s(O,a,p),X(c.children,a,O,h,x,E,b,y)):C>0&&C&64&&F&&l.dynamicChildren?(Q(l.dynamicChildren,F,a,h,x,E,b),(c.key!=null||h&&c===h.subTree)&&ks(l,c,!0)):Oe(l,c,a,O,h,x,E,b,y)},A=(l,c,a,p,h,x,E,b,y)=>{c.slotScopeIds=b,l==null?c.shapeFlag&512?h.ctx.activate(c,a,p,E,y):ge(c,a,p,h,x,E,y):z(l,c,y)},ge=(l,c,a,p,h,x,E)=>{const b=l.component=sl(l,p,h);if(Ks(l)&&(b.ctx.renderer=Ye),rl(b),b.asyncDep){if(h&&h.registerDep(b,k),!l.el){const y=b.subTree=ae(Ge);T(null,y,c,a)}return}k(b,l,c,a,h,x,E)},z=(l,c,a)=>{const p=c.component=l.component;if(pi(l,c,a))if(p.asyncDep&&!p.asyncResolved){J(p,c,a);return}else p.next=c,oi(p.update),p.update();else c.el=l.el,p.vnode=c},k=(l,c,a,p,h,x,E)=>{const b=()=>{if(l.isMounted){let{next:O,bu:C,u:F,parent:P,vnode:$}=l,B=O,W;De(l,!1),O?(O.el=$.el,J(l,O,E)):O=$,C&&Xt(C),(W=O.props&&O.props.onVnodeBeforeUpdate)&&he(W,P,O,$),De(l,!0);const Y=Zt(l),me=l.subTree;l.subTree=Y,v(me,Y,w(me.el),xt(me),l,h,x),O.el=Y.el,B===null&&gi(l,Y.el),F&&ce(F,h),(W=O.props&&O.props.onVnodeUpdated)&&ce(()=>he(W,P,O,$),h)}else{let O;const{el:C,props:F}=c,{bm:P,m:$,parent:B}=l,W=dt(c);if(De(l,!1),P&&Xt(P),!W&&(O=F&&F.onVnodeBeforeMount)&&he(O,B,c),De(l,!0),C&&Vt){const Y=()=>{l.subTree=Zt(l),Vt(C,l.subTree,l,h,null)};W?c.type.__asyncLoader().then(()=>!l.isUnmounted&&Y()):Y()}else{const Y=l.subTree=Zt(l);v(null,Y,a,p,l,h,x),c.el=Y.el}if($&&ce($,h),!W&&(O=F&&F.onVnodeMounted)){const Y=c;ce(()=>he(O,B,Y),h)}(c.shapeFlag&256||B&&dt(B.vnode)&&B.vnode.shapeFlag&256)&&l.a&&ce(l.a,h),l.isMounted=!0,c=a=p=null}},y=l.effect=new En(b,()=>Rn(g),l.scope),g=l.update=()=>y.run();g.id=l.uid,De(l,!0),g()},J=(l,c,a)=>{c.component=l;const p=l.vnode.props;l.vnode=c,l.next=null,Ki(l,c.props,p,a),Si(l,c.children,a),st(),Xn(),rt()},Oe=(l,c,a,p,h,x,E,b,y=!1)=>{const g=l&&l.children,O=l?l.shapeFlag:0,C=c.children,{patchFlag:F,shapeFlag:P}=c;if(F>0){if(F&128){it(g,C,a,p,h,x,E,b,y);return}else if(F&256){Jt(g,C,a,p,h,x,E,b,y);return}}P&8?(O&16&&Fe(g,h,x),C!==g&&_(a,C)):O&16?P&16?it(g,C,a,p,h,x,E,b,y):Fe(g,h,x,!0):(O&8&&_(a,""),P&16&&X(C,a,p,h,x,E,b,y))},Jt=(l,c,a,p,h,x,E,b,y)=>{l=l||ct,c=c||ct;const g=l.length,O=c.length,C=Math.min(g,O);let F;for(F=0;F<C;F++){const P=c[F]=y?je(c[F]):be(c[F]);v(l[F],P,a,null,h,x,E,b,y)}g>O?Fe(l,h,x,!0,!1,C):X(c,a,p,h,x,E,b,y,C)},it=(l,c,a,p,h,x,E,b,y)=>{let g=0;const O=c.length;let C=l.length-1,F=O-1;for(;g<=C&&g<=F;){const P=l[g],$=c[g]=y?je(c[g]):be(c[g]);if(ot(P,$))v(P,$,a,null,h,x,E,b,y);else break;g++}for(;g<=C&&g<=F;){const P=l[C],$=c[F]=y?je(c[F]):be(c[F]);if(ot(P,$))v(P,$,a,null,h,x,E,b,y);else break;C--,F--}if(g>C){if(g<=F){const P=F+1,$=P<O?c[P].el:p;for(;g<=F;)v(null,c[g]=y?je(c[g]):be(c[g]),a,$,h,x,E,b,y),g++}}else if(g>F)for(;g<=C;)Ne(l[g],h,x,!0),g++;else{const P=g,$=g,B=new Map;for(g=$;g<=F;g++){const ue=c[g]=y?je(c[g]):be(c[g]);ue.key!=null&&B.set(ue.key,g)}let W,Y=0;const me=F-$+1;let Ve=!1,$n=0;const lt=new Array(me);for(g=0;g<me;g++)lt[g]=0;for(g=P;g<=C;g++){const ue=l[g];if(Y>=me){Ne(ue,h,x,!0);continue}let Ee;if(ue.key!=null)Ee=B.get(ue.key);else for(W=$;W<=F;W++)if(lt[W-$]===0&&ot(ue,c[W])){Ee=W;break}Ee===void 0?Ne(ue,h,x,!0):(lt[Ee-$]=g+1,Ee>=$n?$n=Ee:Ve=!0,v(ue,c[Ee],a,null,h,x,E,b,y),Y++)}const Dn=Ve?Xi(lt):ct;for(W=Dn.length-1,g=me-1;g>=0;g--){const ue=$+g,Ee=c[ue],Kn=ue+1<O?c[ue+1].el:p;lt[g]===0?v(null,Ee,a,Kn,h,x,E,b,y):Ve&&(W<0||g!==Dn[W]?Je(Ee,a,Kn,2):W--)}}},Je=(l,c,a,p,h=null)=>{const{el:x,type:E,transition:b,children:y,shapeFlag:g}=l;if(g&6){Je(l.component.subTree,c,a,p);return}if(g&128){l.suspense.move(c,a,p);return}if(g&64){E.move(l,c,a,Ye);return}if(E===_e){s(x,c,a);for(let C=0;C<y.length;C++)Je(y[C],c,a,p);s(l.anchor,c,a);return}if(E===Ft){L(l,c,a);return}if(p!==2&&g&1&&b)if(p===0)b.beforeEnter(x),s(x,c,a),ce(()=>b.enter(x),h);else{const{leave:C,delayLeave:F,afterLeave:P}=b,$=()=>s(x,c,a),B=()=>{C(x,()=>{$(),P&&P()})};F?F(x,$,B):B()}else s(x,c,a)},Ne=(l,c,a,p=!1,h=!1)=>{const{type:x,props:E,ref:b,children:y,dynamicChildren:g,shapeFlag:O,patchFlag:C,dirs:F}=l;if(b!=null&&Lt(b,null,a,l,!0),O&256){c.ctx.deactivate(l);return}const P=O&1&&F,$=!dt(l);let B;if($&&(B=E&&E.onVnodeBeforeUnmount)&&he(B,c,l),O&6)or(l.component,a,p);else{if(O&128){l.suspense.unmount(a,p);return}P&&Ce(l,null,c,"beforeUnmount"),O&64?l.type.remove(l,c,a,h,Ye,p):g&&(x!==_e||C>0&&C&64)?Fe(g,c,a,!1,!0):(x===_e&&C&384||!h&&O&16)&&Fe(y,c,a),p&&Un(l)}($&&(B=E&&E.onVnodeUnmounted)||P)&&ce(()=>{B&&he(B,c,l),P&&Ce(l,null,c,"unmounted")},a)},Un=l=>{const{type:c,el:a,anchor:p,transition:h}=l;if(c===_e){lr(a,p);return}if(c===Ft){q(l);return}const x=()=>{r(a),h&&!h.persisted&&h.afterLeave&&h.afterLeave()};if(l.shapeFlag&1&&h&&!h.persisted){const{leave:E,delayLeave:b}=h,y=()=>E(a,x);b?b(l.el,x,y):y()}else x()},lr=(l,c)=>{let a;for(;l!==c;)a=M(l),r(l),l=a;r(c)},or=(l,c,a)=>{const{bum:p,scope:h,update:x,subTree:E,um:b}=l;p&&Xt(p),h.stop(),x&&(x.active=!1,Ne(E,l,c,a)),b&&ce(b,c),ce(()=>{l.isUnmounted=!0},c),c&&c.pendingBranch&&!c.isUnmounted&&l.asyncDep&&!l.asyncResolved&&l.suspenseId===c.pendingId&&(c.deps--,c.deps===0&&c.resolve())},Fe=(l,c,a,p=!1,h=!1,x=0)=>{for(let E=x;E<l.length;E++)Ne(l[E],c,a,p,h)},xt=l=>l.shapeFlag&6?xt(l.component.subTree):l.shapeFlag&128?l.suspense.next():M(l.anchor||l.el),Ln=(l,c,a)=>{l==null?c._vnode&&Ne(c._vnode,null,null,!0):v(c._vnode||null,l,c,null,null,null,a),Xn(),Ht(),c._vnode=l},Ye={p:v,um:Ne,m:Je,r:Un,mt:ge,mc:X,pc:Oe,pbc:Q,n:xt,o:e};let Yt,Vt;return t&&([Yt,Vt]=t(Ye)),{render:Ln,hydrate:Yt,createApp:Ji(Ln,Yt)}}function De({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function ks(e,t,n=!1){const s=e.children,r=t.children;if(R(s)&&R(r))for(let i=0;i<s.length;i++){const o=s[i];let f=r[i];f.shapeFlag&1&&!f.dynamicChildren&&((f.patchFlag<=0||f.patchFlag===32)&&(f=r[i]=je(r[i]),f.el=o.el),n||ks(o,f))}}function Xi(e){const t=e.slice(),n=[0];let s,r,i,o,f;const u=e.length;for(s=0;s<u;s++){const d=e[s];if(d!==0){if(r=n[n.length-1],e[r]<d){t[s]=r,n.push(s);continue}for(i=0,o=n.length-1;i<o;)f=i+o>>1,e[n[f]]<d?i=f+1:o=f;d<e[n[i]]&&(i>0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}const Zi=e=>e.__isTeleport,_e=Symbol(void 0),mt=Symbol(void 0),Ge=Symbol(void 0),Ft=Symbol(void 0);let Xe=null,Hn=1;function rs(e){Hn+=e}function an(e){return e?e.__v_isVNode===!0:!1}function ot(e,t){return e.type===t.type&&e.key===t.key}const qt="__vInternal",Gs=({key:e})=>e??null,At=({ref:e,ref_key:t,ref_for:n})=>e!=null?ie(e)||oe(e)||H(e)?{i:Pe,r:e,k:t,f:!!n}:e:null;function Qi(e,t=null,n=null,s=0,r=null,i=e===_e?0:1,o=!1,f=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Gs(t),ref:t&&At(t),scopeId:Us,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null};return f?(vn(u,n),i&128&&e.normalize(u)):n&&(u.shapeFlag|=ie(n)?8:16),Hn>0&&!o&&Xe&&(u.patchFlag>0||i&6)&&u.patchFlag!==32&&Xe.push(u),u}const ae=ki;function ki(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===Ni)&&(e=Ge),an(e)){const f=et(e,t,!0);return n&&vn(f,n),Hn>0&&!i&&Xe&&(f.shapeFlag&6?Xe[Xe.indexOf(e)]=f:Xe.push(f)),f.patchFlag|=-2,f}if(fl(e)&&(e=e.__vccOpts),t){t=Gi(t);let{class:f,style:u}=t;f&&!ie(f)&&(t.class=mn(f)),te(u)&&(As(u)&&!R(u)&&(u=fe({},u)),t.style=gn(u))}const o=ie(e)?1:mi(e)?128:Zi(e)?64:te(e)?4:H(e)?2:0;return Qi(e,t,n,s,r,o,i,!0)}function Gi(e){return e?As(e)||qt in e?fe({},e):e:null}function et(e,t,n=!1){const{props:s,ref:r,patchFlag:i,children:o}=e,f=t?el(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&Gs(f),ref:t&&t.ref?n&&r?R(r)?r.concat(At(t)):[r,At(t)]:At(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==_e?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&et(e.ssContent),ssFallback:e.ssFallback&&et(e.ssFallback),el:e.el,anchor:e.anchor}}function er(e=" ",t=0){return ae(mt,null,e,t)}function be(e){return e==null||typeof e=="boolean"?ae(Ge):R(e)?ae(_e,null,e.slice()):typeof e=="object"?je(e):ae(mt,null,String(e))}function je(e){return e.el===null||e.memo?e:et(e)}function vn(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(R(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),vn(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(qt in t)?t._ctx=Pe:r===3&&Pe&&(Pe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else H(t)?(t={default:t,_ctx:Pe},n=32):(t=String(t),s&64?(n=16,t=[er(t)]):n=8);e.children=t,e.shapeFlag|=n}function el(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=mn([t.class,s.class]));else if(r==="style")t.style=gn([t.style,s.style]);else if(bt(r)){const i=t[r],o=s[r];o&&i!==o&&!(R(i)&&i.includes(o))&&(t[r]=i?[].concat(i,o):o)}else r!==""&&(t[r]=s[r])}return t}function he(e,t,n,s=null){we(e,t,7,[n,s])}const tl=Zs();let nl=0;function sl(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||tl,i={uid:nl++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Cr(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Ys(s,r),emitsOptions:js(s,r),emit:null,emitted:null,propsDefaults:S,inheritAttrs:s.inheritAttrs,ctx:S,data:S,props:S,attrs:S,slots:S,refs:S,setupState:S,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return i.ctx={_:i},i.root=t?t.root:i,i.emit=ui.bind(null,i),e.ce&&e.ce(i),i}let re=null;const tt=e=>{re=e,e.scope.on()},qe=()=>{re&&re.scope.off(),re=null};function tr(e){return e.vnode.shapeFlag&4}let _t=!1;function rl(e,t=!1){_t=t;const{props:n,children:s}=e.vnode,r=tr(e);Di(e,n,r,t),Wi(e,s);const i=r?il(e,t):void 0;return _t=!1,i}function il(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ps(new Proxy(e.ctx,Hi));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?ol(e):null;tt(e),st();const i=Le(s,e,0,[e.props,r]);if(rt(),qe(),gs(i)){if(i.then(qe,qe),t)return i.then(o=>{is(e,o,t)}).catch(o=>{Bt(o,e,0)});e.asyncDep=i}else is(e,i,t)}else nr(e,t)}function is(e,t,n){H(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:te(t)&&(e.setupState=Is(t)),nr(e,n)}let ls;function nr(e,t,n){const s=e.type;if(!e.render){if(!t&&ls&&!s.render){const r=s.template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:f,compilerOptions:u}=s,d=fe(fe({isCustomElement:i,delimiters:f},o),u);s.render=ls(r,d)}}e.render=s.render||ye}tt(e),st(),vi(e),rt(),qe()}function ll(e){return new Proxy(e.attrs,{get(t,n){return de(e,"get","$attrs"),t[n]}})}function ol(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=ll(e))},slots:e.slots,emit:e.emit,expose:t}}function jn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Is(Ps(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in jt)return jt[n](e)}}))}function fl(e){return H(e)&&"__vccOpts"in e}const cl=(e,t)=>si(e,t,_t);function Pt(e,t,n){const s=arguments.length;return s===2?te(t)&&!R(t)?an(t)?ae(e,null,[t]):ae(e,t):ae(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&an(n)&&(n=[n]),ae(e,t,n))}const ul="3.2.38",al="http://www.w3.org/2000/svg",We=typeof document<"u"?document:null,os=We&&We.createElement("template"),dl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t?We.createElementNS(al,e):We.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>We.createTextNode(e),createComment:e=>We.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>We.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{os.innerHTML=s?`<svg>${e}</svg>`:e;const f=os.content;if(s){const u=f.firstChild;for(;u.firstChild;)f.appendChild(u.firstChild);f.removeChild(u)}t.insertBefore(f,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function hl(e,t,n){const s=e._vtc;s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function pl(e,t,n){const s=e.style,r=ie(n);if(n&&!r){for(const i in n)dn(s,i,n[i]);if(t&&!ie(t))for(const i in t)n[i]==null&&dn(s,i,"")}else{const i=s.display;r?t!==n&&(s.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(s.display=i)}}const fs=/\s*!important$/;function dn(e,t,n){if(R(n))n.forEach(s=>dn(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=gl(e,t);fs.test(n)?e.setProperty(nt(s),n.replace(fs,""),"important"):e[s]=n}}const cs=["Webkit","Moz","ms"],Gt={};function gl(e,t){const n=Gt[t];if(n)return n;let s=ke(t);if(s!=="filter"&&s in e)return Gt[t]=s;s=ms(s);for(let r=0;r<cs.length;r++){const i=cs[r]+s;if(i in e)return Gt[t]=i}return t}const us="http://www.w3.org/1999/xlink";function ml(e,t,n,s,r){if(s&&t.startsWith("xlink:"))n==null?e.removeAttributeNS(us,t.slice(6,t.length)):e.setAttributeNS(us,t,n);else{const i=cr(t);n==null||i&&!ps(n)?e.removeAttribute(t):e.setAttribute(t,i?"":n)}}function _l(e,t,n,s,r,i,o){if(t==="innerHTML"||t==="textContent"){s&&o(s,r,i),e[t]=n??"";return}if(t==="value"&&e.tagName!=="PROGRESS"&&!e.tagName.includes("-")){e._value=n;const u=n??"";(e.value!==u||e.tagName==="OPTION")&&(e.value=u),n==null&&e.removeAttribute(t);return}let f=!1;if(n===""||n==null){const u=typeof e[t];u==="boolean"?n=ps(n):n==null&&u==="string"?(n="",f=!0):u==="number"&&(n=0,f=!0)}try{e[t]=n}catch{}f&&e.removeAttribute(t)}const[sr,bl]=(()=>{let e=Date.now,t=!1;if(typeof window<"u"){Date.now()>document.createEvent("Event").timeStamp&&(e=performance.now.bind(performance));const n=navigator.userAgent.match(/firefox\/(\d+)/i);t=!!(n&&Number(n[1])<=53)}return[e,t]})();let hn=0;const xl=Promise.resolve(),yl=()=>{hn=0},wl=()=>hn||(xl.then(yl),hn=sr());function El(e,t,n,s){e.addEventListener(t,n,s)}function Tl(e,t,n,s){e.removeEventListener(t,n,s)}function Cl(e,t,n,s,r=null){const i=e._vei||(e._vei={}),o=i[t];if(s&&o)o.value=s;else{const[f,u]=Ml(t);if(s){const d=i[t]=Ol(s,r);El(e,f,d,u)}else o&&(Tl(e,f,o,u),i[t]=void 0)}}const as=/(?:Once|Passive|Capture)$/;function Ml(e){let t;if(as.test(e)){t={};let s;for(;s=e.match(as);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):nt(e.slice(2)),t]}function Ol(e,t){const n=s=>{const r=s.timeStamp||sr();(bl||r>=n.attached-1)&&we(Fl(s,n.value),t,5,[s])};return n.value=e,n.attached=wl(),n}function Fl(e,t){if(R(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const ds=/^on[a-z]/,Al=(e,t,n,s,r=!1,i,o,f,u)=>{t==="class"?hl(e,s,r):t==="style"?pl(e,n,s):bt(t)?_n(t)||Cl(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Pl(e,t,s,r))?_l(e,t,s,i,o,f,u):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),ml(e,t,s,r))};function Pl(e,t,n,s){return s?!!(t==="innerHTML"||t==="textContent"||t in e&&ds.test(t)&&H(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||ds.test(t)&&ie(n)?!1:t in e}const rr=fe({patchProp:Al},dl);let ht,hs=!1;function Il(){return ht||(ht=Vi(rr))}function Rl(){return ht=hs?ht:zi(rr),hs=!0,ht}const Nl=(...e)=>{const t=Il().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=ir(s);if(!r)return;const i=t._component;!H(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.innerHTML="";const o=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t},Hl=(...e)=>{const t=Rl().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=ir(s);if(r)return n(r,!0,r instanceof SVGElement)},t};function ir(e){return ie(e)?document.querySelector(e):e}const vl=xi({props:{value:String,name:String},setup({name:e,value:t}){return t?()=>Pt("astro-slot",{name:e,innerHTML:t}):()=>null}}),jl=e=>(t,n,s,{client:r})=>{if(delete n.class,!e.hasAttribute("ssr"))return;const i=t.name?`${t.name} Host`:void 0,o={};for(const[f,u]of Object.entries(s))o[f]=()=>Pt(vl,{value:u,name:f==="default"?void 0:f});r==="only"?Nl({name:i,render:()=>Pt(t,n,o)}).mount(e,!1):Hl({name:i,render:()=>Pt(t,n,o)}).mount(e,!0)};export{jl as default};
@@ -0,0 +1 @@
1
+ function d(e){e=e||1;var t=[],n=0;function o(s){t.push(s)>1||r()}function a(){n--,r()}function r(){n<e&&t.length>0&&(t.shift()(),n++)}return[o,a]}function m(e,t){const n=t?.timeout??50,o=Date.now();return setTimeout(function(){e({didTimeout:!1,timeRemaining:function(){return Math.max(0,n-(Date.now()-o))}})},1)}const v=window.requestIdleCallback||m;var w=v;const f=["mouseenter","touchstart","focus"],u=new Set;function p({href:e}){try{const t=new URL(e);return window.location.origin===t.origin&&window.location.pathname!==t.hash&&!u.has(e)}catch{}return!1}let i,c;function b(e){u.add(e.href),c.observe(e),f.map(t=>e.addEventListener(t,l,{passive:!0,once:!0}))}function y(e){c.unobserve(e),f.map(t=>e.removeEventListener(t,l))}function l({target:e}){e instanceof HTMLAnchorElement&&h(e)}async function h(e){y(e);const{href:t}=e;try{const n=await fetch(t).then(r=>r.text());i=i||new DOMParser;const o=i.parseFromString(n,"text/html"),a=Array.from(o.querySelectorAll('link[rel="stylesheet"]'));await Promise.all(a.map(r=>fetch(r.href)))}catch{}}function g({selector:e='a[href][rel~="prefetch"]',throttle:t=1}){const n=navigator.connection;if(typeof n<"u"){if(n.saveData)return Promise.reject(new Error("Cannot prefetch, Save-Data is enabled"));if(/2g/.test(n.effectiveType))return Promise.reject(new Error("Cannot prefetch, network conditions are poor"))}const[o,a]=d(t);c=c||new IntersectionObserver(r=>{r.forEach(s=>{s.isIntersecting&&s.target instanceof HTMLAnchorElement&&o(()=>h(s.target).finally(a))})}),w(()=>{const r=Array.from(document.querySelectorAll(e)).filter(p);for(const s of r)b(s)})}g({});
@@ -0,0 +1,2 @@
1
+ /* Partytown 0.4.5 - MIT builder.io */
2
+ (e=>{const t=()=>{},r=e=>e.length,n=e=>{try{return e.constructor.name}catch(e){}return""},i=(e,t)=>e.startsWith(t),s=e=>!(i(e,"webkit")||i(e,"toJSON")||i(e,"constructor")||i(e,"toString")||i(e,"_")),o=()=>Math.round(Math.random()*Number.MAX_SAFE_INTEGER).toString(36),a={Anchor:"a",DList:"dl",Image:"img",OList:"ol",Paragraph:"p",Quote:"q",TableCaption:"caption",TableCell:"td",TableCol:"colgroup",TableRow:"tr",TableSection:"tbody",UList:"ul"},l={Graphics:"g",SVG:"svg"},c=Symbol(),u=Symbol(),h=new Map,p=new Map,d={},m=new WeakMap,g=(e,t)=>{if(e)return(t=m.get(e))||(t=e[c])||y(e,t=o()),t},f=(e,t,r,n,i)=>{if((r=d[e])&&r.T){if(e===t)return r.T;if(n=r.T.document,"d"===(i=t.split(".").pop()))return n;if("e"===i)return n.documentElement;if("h"===i)return n.head;if("b"===i)return n.body}return h.get(t)},y=(e,t,r)=>{e&&(h.set(t,e),e[c]=t,e[u]=r=Date.now(),r>w+5e3&&(h.forEach(((e,t)=>{e[u]<w&&e.nodeType&&!e.isConnected&&h.delete(t)})),w=r))};let w=0;const $=e.parent,S=document,b=$.partytown||{},v=(b.lib||"/~partytown/")+"",T=(e,t,r,s,o)=>void 0!==t&&(s=typeof t)?"string"===s||"number"===s||"boolean"===s||null==t?[0,t]:"function"===s?[6]:(r=r||new Set)&&Array.isArray(t)?r.has(t)?[1,[]]:r.add(t)&&[1,t.map((t=>T(e,t,r)))]:"object"===s?""===(o=n(t))?[2,{}]:"Window"===o?[3,[e,e]]:"HTMLCollection"===o||"NodeList"===o?[7,Array.from(t).map((t=>T(e,t,r)[1]))]:o.endsWith("Event")?[5,E(e,t,r)]:"CSSRuleList"===o?[12,Array.from(t).map(I)]:i(o,"CSS")&&o.endsWith("Rule")?[11,I(t)]:"CSSStyleDeclaration"===o?[13,E(e,t,r)]:"Attr"===o?[10,[t.name,t.value]]:t.nodeType?[3,[e,g(t),t.nodeName]]:[2,E(e,t,r,!0,!0)]:void 0:t,E=(e,t,r,n,i,o,a,l)=>{if(o={},!r.has(t))for(a in r.add(t),t)s(a)&&(l=t[a],(n||"function"!=typeof l)&&(i||""!==l)&&(o[a]=T(e,l,r)));return o},I=e=>{let t,r={};for(t in e)x.includes(t)&&(r[t]=String(e[t]));return r},M=(t,r,n,i)=>r?(n=r[0],i=r[1],0===n?i:4===n?N(t,i):1===n?i.map((e=>M(t,e))):3===n?f(i[0],i[1]):5===n?A(L(t,i)):2===n?L(t,i):8===n?i:9===n?new e[r[2]](i):void 0):void 0,N=(e,{U:t,w:r,K:n},i)=>((i=p.get(n))||(i=function(...i){e.postMessage([7,{U:t,w:r,K:n,Q:T(t,this),b:T(t,i)}])},p.set(n,i)),i),A=e=>new("detail"in e?CustomEvent:Event)(e.type,e),L=(e,t,r,n)=>{for(n in r={},t)r[n]=M(e,t[n]);return r},x="cssText,selectorText,href,media,namespaceURI,prefix,name,conditionText".split(","),C=async(e,t)=>{let n,i,s,o,a,l,c={E:t.E},u=r(t.P),h=0;for(;h<u;h++)try{l=h===u-1,n=t.P[h],i=n.U,s=n.a,!d[i]&&i.startsWith("f_")&&await new Promise((e=>{let t=0,r=()=>{d[i]||t++>1e3?e():requestAnimationFrame(r)};r()})),1===s[0]&&s[1]in d[i].T?y(new d[i].T[s[1]](...M(e,s[2])),n.w):(o=f(i,n.w),o?(a=R(e,o,s,l,n.r),n.d&&("string"==typeof n.d?y(a,n.d):d[n.d.U]={U:n.d.U,T:{document:a}}),"object"==typeof(p=a)&&p&&p.then&&(a=await a,c.z=!0),c.L=T(i,a)):c.p=n.w+" not found")}catch(e){l?c.p=String(e.stack||e):console.error(e)}var p;return c},R=(e,t,n,i,s)=>{let o,a,l,c,u,h=0,p=r(n);for(;h<p;h++){a=n[h],o=n[h+1],l=n[h-1];try{if(!Array.isArray(o))if("string"==typeof a||"number"==typeof a){if(h+1===p&&s)return u={},s.map((e=>u[e]=t[e])),u;t=t[a]}else{if(0===o)return void(t[l]=M(e,a));if("function"==typeof t[l]&&(c=M(e,a),"insertRule"===l&&c[1]>r(t.cssRules)&&(c[1]=r(t.cssRules)),t=t[l].apply(t,c),"play"===l))return Promise.resolve()}}catch(e){if(i)throw e;console.debug(e)}}return t},O=(e,t,r)=>{if(!m.has(r)){m.set(r,t);const n=r.document,i=r.history,s=m.get(r.parent),o=()=>e.postMessage([3,{U:t,I:s,R:n.baseURI,S:n.visibilityState}]),a=i.pushState.bind(i),l=i.replaceState.bind(i),c=()=>setTimeout((()=>e.postMessage([11,t,n.baseURI])));i.pushState=(e,t,r)=>{a(e,t,r),c()},i.replaceState=(e,t,r)=>{l(e,t,r),c()},r.addEventListener("popstate",c),r.addEventListener("hashchange",c),n.addEventListener("visibilitychange",(()=>e.postMessage([12,t,n.visibilityState]))),d[t]={U:t,T:r},"complete"===n.readyState?o():r.addEventListener("load",o)}},D=(e,t)=>{let n,i,s,o=t.U,a=t.T,l=a.document;l&&l.body?(n=l.querySelector('script[type="text/partytown"]:not([data-ptid]):not([data-pterror]):not([async]):not([defer])'),n||(n=l.querySelector('script[type="text/partytown"]:not([data-ptid]):not([data-pterror])')),n?(n.dataset.ptid=i=g(n,o),s={U:o,w:i},n.src?(s.R=n.src,s.G=n.dataset.ptsrc||n.src):s.j=n.innerHTML,e.postMessage([5,s])):(t.x||(t.x=1,((e,t,n)=>{let i,s,o=n._ptf,a=(n.partytown||{}).forward||[],l=(r,n)=>e.postMessage([8,{U:t,q:r,b:T(t,Array.from(n))}]);if(n._ptf=void 0,a.map((e=>{s=n,e.split(".").map(((e,t,n)=>{s=s[n[t]]=t+1<r(n)?s[n[t]]||("push"===n[t+1]?[]:{}):(...e)=>l(n,e)}))})),o)for(i=0;i<r(o);i+=2)l(o[i],o[i+1])})(e,o,a),l.dispatchEvent(new CustomEvent("pt0"))),e.postMessage([6,o]))):requestAnimationFrame((()=>D(e,t)))},H=(e,t,r)=>{let n=[],i=[e,"Object",n];for(r in t)P(n,t,r);return i},U=(e,t,r,i,s)=>{if("Object"!==t&&!e.some((e=>e[0]===t))){const o=Object.getPrototypeOf(r),a=n(o),l=[];U(e,a,o,i,s),Object.keys(Object.getOwnPropertyDescriptors(r)).map((e=>P(l,i,e))),e.push([t,a,l,s,i.nodeName])}},P=(e,t,r,i,o,a)=>{try{s(r)&&isNaN(r[0])&&"all"!==r&&("function"==(o=typeof(i=t[r]))?(String(i).includes("[native")||Object.getPrototypeOf(t)[r])&&e.push([r,5]):"object"===o&&null!=i?"Object"!==(a=n(i))&&self[a]&&e.push([r,i.nodeType||a]):"symbol"!==o&&(r.toUpperCase()===r?e.push([r,6,i]):e.push([r,6])))}catch(e){console.warn(e)}},_=e=>{let t,n=[],i=0,s=r($[e]);for(;i<s;i++)t=$[e].key(i),n.push([t,$[e].getItem(t)]);return n},F=(e,r)=>void 0!==e[r]?new e[r](t):0;let J;(async e=>{const t=new SharedArrayBuffer(1073741824),r=new Int32Array(t);return(i,s)=>{const c=s[0],u=s[1];if(0===c){const e=(()=>{const e=S.implementation.createHTMLDocument(),t=e.createElement("i"),r=e.createTextNode(""),i=e.createComment(""),s=e.createDocumentFragment(),o=F($,"IntersectionObserver"),c=F($,"MutationObserver"),u=F($,"ResizeObserver"),h=$.performance,p=$.screen,d=Object.getOwnPropertyNames($).map((t=>((e,t,r,n)=>{if(r=t.match(/^(HTML|SVG)(.+)Element$/))return n=r[2],"S"==t[0]?e.createElementNS("http://www.w3.org/2000/svg",l[n]||n.slice(0,2).toLowerCase()+n.slice(2)):e.createElement(a[n]||n)})(e,t))).filter((e=>e)).map((e=>[e])),m=[[$.history],[h],[h.navigation],[h.timing],[p],[p.orientation],[$.visualViewport],[o,12],[c,12],[u,12],[r],[i],[s],[t],[t.attributes],[t.classList],[t.dataset],[t.style],[e],[e.doctype],...d].filter((e=>e[0])).map((e=>{const t=e[0],r=e[1],i=n(t);return[i,$[i].prototype,t,r]})),g=[H("Window",$),H("Node",r)],f={i:JSON.stringify(b,((e,t)=>("function"==typeof t&&(t=String(t)).startsWith(e+"(")&&(t="function "+t),t))),B:new URL(v,$.location)+"",v:g,H:origin,C:_("localStorage"),N:_("sessionStorage")};return m.map((([e,t,r,n])=>U(g,e,t,r,n))),((e,t,r)=>{void 0!==t[r]&&e.push([r,"Object",Object.keys(t[r].prototype).map((e=>[e,6])),12])})(g,$,"IntersectionObserverEntry"),f})();e.O=t,i.postMessage([1,e])}else 9===c?e(u,(e=>{const t=JSON.stringify(e),n=t.length;for(let e=0;e<n;e++)r[e+1]=t.charCodeAt(e);r[0]=n,Atomics.notify(r,0)})):((e,t,r)=>{2===t[0]?O(e,o(),$):(r=d[t[1]])&&(5===t[0]?requestAnimationFrame((()=>D(e,r))):4===t[0]&&((e,t,r,n,i)=>{(i=t.T.document.querySelector(`[data-ptid="${r}"]`))&&(n?i.dataset.pterror=n:i.type+="-x",delete i.dataset.ptid),D(e,t)})(e,r,t[2],t[3]))})(i,s)}})(((e,t)=>C(J,e).then(t))).then((e=>{e&&(J=new Worker(URL.createObjectURL(new Blob(['/* Partytown 0.4.5 - MIT builder.io */\n(e=>{const t=Symbol(),r=Symbol(),n=Symbol(),i=Symbol(),s=Symbol(),o=Symbol(),a=Symbol(),l=Symbol(),$=new Map,c={},u=new WeakMap,d=[],h={},p=new Map,g=new Map,m={},f=new Map,w=new Map,y="about:blank",S=e=>e.split(","),v=e=>{if(e=h.B+e,new URL(e).origin!=location.origin)throw"Invalid "+e;return e},b=S("clientWidth,clientHeight,clientTop,clientLeft,innerWidth,innerHeight,offsetWidth,offsetHeight,offsetTop,offsetLeft,outerWidth,outerHeight,pageXOffset,pageYOffset,scrollWidth,scrollHeight,scrollTop,scrollLeft"),I=S("childElementCount,children,firstElementChild,lastElementChild,nextElementSibling,previousElementSibling"),M=S("insertBefore,remove,removeChild,replaceChild"),T=S("className,width,height,hidden,innerHTML,innerText,textContent"),E=S("setAttribute,setAttributeNS,setProperty"),N=S("addEventListener,dispatchEvent,removeEventListener"),L=N.concat(E,S("add,observe,remove,unobserve")),x=/^[A-Z]([A-Z0-9-]*[A-Z0-9])?$/,A=()=>{},C=e=>e.length,R=e=>{try{return e.constructor.name}catch(e){}return""},P=[],H=()=>Math.round(Math.random()*Number.MAX_SAFE_INTEGER).toString(36),W="text/partytown",O=(e,t,r)=>Object.defineProperty(e,t,{...r,configurable:!0}),D=(e,t)=>O(e,"name",{value:t}),k=(e,t,r)=>O(e.prototype,t,r),B=(e,t)=>Object.defineProperties(e.prototype,t),j=(e,t,r)=>k(e,t,{value:r,writable:!0}),U=(e,t)=>t in e[o],F=(e,t)=>e[o][t],_=(e,t,r)=>e[o][t]=r,V=(e,t,r)=>console.warn(`Partytown unable to ${e} cross-origin ${t}: `+r.D),z=[],G=(e,n,i,o,a,l)=>{if(z.push({U:e[t],w:e[r],a:[...e[s],...n],d:o,r:a}),3===i)h.J([10,{E:H(),P:[...z]}],l?[l instanceof ArrayBuffer?l:l.buffer]:void 0),z.length=0;else if(1===i)return X(!0);h.c=setTimeout(X,20)},X=e=>{if(clearTimeout(h.c),C(z)){const t=z[C(z)-1],r={E:H(),P:[...z]};if(z.length=0,e){const e=((e,t)=>{const r=e.O,n=new Int32Array(r);Atomics.store(n,0,0),e.J([9,t]),Atomics.wait(n,0,0);let i=Atomics.load(n,0),s="",o=0;for(;o<i;o++)s+=String.fromCharCode(n[o+1]);return JSON.parse(s)})(h,r),n=e.z,i=ce(t.U,t.w,t.a,e.L);if(e.p){if(n)return Promise.reject(e.p);throw new Error(e.p)}return n?Promise.resolve(i):i}h.J([10,r])}},q=(e,t,r,n)=>h.i.get&&(n=h.i.get(K(e,t)))!==a?n:n=G(e,t,1,void 0,r),Z=(e,t,r,n)=>{if(h.i.set){if((n=h.i.set({value:r,prevent:l,...K(e,t)}))===l)return;n!==a&&(r=n)}T.some((e=>t.includes(e)))&&(f.clear(),t[t.length-1]),t=[...t,$e(e,r),0],G(e,t,2)},J=(e,t,r,n,i,s,o,l)=>h.i.apply&&(o=h.i.apply({args:r,...K(e,t)}))!==a?o:(l=t[C(t)-1],t=[...t,$e(e,r)],n=n||(L.includes(l)?2:1),"setAttribute"===l&&U(e,r[0])?_(e,r[0],r[1]):M.includes(l)?(f.clear(),w.clear()):E.includes(l)&&(n=2,f.clear()),o=G(e,t,n,i,void 0,s)),Y=(e,t,r)=>{G(e,[1,t,$e(e,r)],1)},K=(e,t)=>({name:t.join("."),continue:a,nodeName:e[n],constructor:R(e)}),Q=(e,t,r,n,i)=>(!(i=$.get(t))&&r&&m[e]&&(i=m[e].k(r,t,n),$.set(t,i)),i),ee=(e,t)=>j(e,"nodeType",t),te=(e,t)=>t.map((t=>k(e,t,{get(){let e=re(this,t),r=w.get(e);return r||(r=q(this,[t]),w.set(e,r)),r}}))),re=(e,n,i)=>[e[t],e[r],n,...(i||P).map((e=>String(e&&e[t]?e[r]:e)))].join("."),ne=(e,t)=>S(t).map((t=>k(e,t,{get(){return U(this,t)||_(this,t,q(this,[t])),F(this,t)},set(e){F(this,t)!==e&&Z(this,[t],e),_(this,t,e)}}))),ie=e=>b.map((t=>k(e,t,{get(){const e=f.get(re(this,t));if("number"==typeof e)return e;const r=q(this,[t],b);return r&&"object"==typeof r?(Object.entries(r).map((([e,t])=>f.set(re(this,e),t))),r[t]):r}}))),se=(e,t)=>t.map((t=>{e.prototype[t]=function(...e){let r=re(this,t,e),n=f.get(r);return n||(n=J(this,[t],e),f.set(r,n)),n}})),oe=(e,n,i,s,o)=>{return void 0!==i&&(o=typeof i)?"string"===o||"boolean"===o||"number"===o||null==i?[0,i]:"function"===o?[4,{U:e,w:n,K:(a=i,(l=u.get(a))||(u.set(a,l=H()),c[l]=a),l)}]:(s=s||new Set)&&Array.isArray(i)?s.has(i)?[1,[]]:s.add(i)&&[1,i.map((t=>oe(e,n,t,s)))]:"object"===o?i[r]?[3,[i[t],i[r]]]:i instanceof Event?[5,le(e,n,i,!1,s)]:ae&&i instanceof TrustedHTML?[0,i.toString()]:i instanceof ArrayBuffer?[8,i]:ArrayBuffer.isView(i)?[9,i.buffer,R(i)]:[2,le(e,n,i,!0,s)]:void 0:i;var a,l},ae="undefined"!=typeof TrustedHTML,le=(e,t,r,n,i,s,o,a)=>{if(s={},!i.has(r))for(o in i.add(r),r)a=r[o],(n||"function"!=typeof a)&&(s[o]=oe(e,t,a,i));return s},$e=(e,n)=>e?oe(e[t],e[r],n):[0,n],ce=(e,t,r,n,i,s,o,a)=>{if(n){if(i=n[0],s=n[1],0===i||11===i||12===i)return s;if(4===i)return de(r,s);if(6===i)return A;if(3===i)return ue(s);if(7===i)return new he(s.map(ue));if(10===i)return new pe(s);if(1===i)return s.map((n=>ce(e,t,r,n)));for(a in o={},s)o[a]=ce(e,t,[...r,a],s[a]);if(13===i)return new m[e].T.CSSStyleDeclaration(e,t,r,o);if(5===i){if("message"===o.type&&o.origin){let e,t=JSON.stringify(o.data),r=d.find((e=>e.m===t));r&&(e=m[r.U],e&&(o.source=e.T,o.origin=e.D.origin))}return new Proxy(new Event(o.type,o),{get:(e,t)=>t in o?o[t]:"function"==typeof e[String(t)]?A:e[String(t)]})}if(2===i)return o}},ue=([e,t,r])=>t===e&&m[e]?m[e].T:Q(e,t,r),de=(e,{U:t,w:r,F:n,K:i})=>(c[i]||u.set(c[i]=function(...i){const s=Q(t,r,n);return J(s,e,i)},i),c[i]),he=class{constructor(e){(this._=e).map(((e,t)=>this[t]=e))}entries(){return this._.entries()}forEach(e,t){this._.map(e,t)}item(e){return this[e]}keys(){return this._.keys()}get length(){return C(this._)}values(){return this._.values()}[Symbol.iterator](){return this._[Symbol.iterator]()}},pe=class{constructor(e){this.name=e[0],this.value=e[1]}get nodeName(){return this.name}get nodeType(){return 2}},ge=(e,t,r,n,i)=>{let s,o,a=t=>((t=r.get(e.origin))||r.set(e.origin,t=[]),t),l=e=>a().findIndex((t=>t[me]===e)),$={getItem:e=>(s=l(e),s>-1?a()[s][fe]:null),setItem(r,o){s=l(r),s>-1?a()[s][fe]=o:a().push([r,o]),n?J(e,[t,"setItem"],[r,o],2):V("set",t,i)},removeItem(r){s=l(r),s>-1&&a().splice(s,1),n?J(e,[t,"removeItem"],[r],2):V("remove",t,i)},key:e=>(o=a()[e],o?o[me]:null),clear(){a().length=0,n?J(e,[t,"clear"],P,2):V("clear",t,i)},get length(){return a().length}};e[t]=$},me=0,fe=1,we=(e,t,r)=>{e[r]=D(class extends t{constructor(e,t,r,i){return super(e,t,r,i||{}),new Proxy(this,{get:(e,t)=>e[t]?e[t]:(e[t]||"string"!=typeof t||e[n][t]||(e[n][t]=q(e,[t])),e[n][t]),set:(e,t,r)=>(e[n][t]=r,Z(e,[t],r),f.clear(),!0)})}setProperty(...e){this[n][e[0]]=e[1],J(this,["setProperty"],e,2),e[0],f.clear()}getPropertyValue(e){return this[e]}removeProperty(e){let t=this[n][e];return J(this,["removeProperty"],[e],2),f.clear(),this[n][e]=void 0,t}},r)},ye=(e,t)=>{e[t]=D(class{constructor(e){this.ownerNode=e}get cssRules(){const e=this.ownerNode;return new Proxy({},{get(t,r){const n=String(r);return"item"===n?t=>ve(e,t):"length"===n?Se(e).length:isNaN(n)?t[r]:ve(e,n)}})}insertRule(e,t){const r=Se(this.ownerNode);return(t=void 0===t?0:t)>=0&&t<=r.length&&(J(this.ownerNode,["sheet","insertRule"],[e,t],2),r.splice(t,0,0)),this.ownerNode,f.clear(),t}deleteRule(e){J(this.ownerNode,["sheet","deleteRule"],[e],2),Se(this.ownerNode).splice(e,1),this.ownerNode,f.clear()}get type(){return"text/css"}},t);const r={sheet:{get(){return new e[t](this)}}};B(e.HTMLStyleElement,r)},Se=(e,t)=>((t=F(e,2))||(t=q(e,["sheet","cssRules"]),_(e,2,t)),t),ve=(e,t,r)=>(0===(r=Se(e))[t]&&(r[t]=q(e,["sheet","cssRules",parseInt(t,10)])),r[t]),be="0.4.5",Ie=(e,t,r,n,i)=>{try{e.l=t,Me(e,r)}catch(e){console.error(r,e),i=String(e.stack||e)}return e.l="",i},Me=(e,t,r)=>{e.M=1,t=`with(this){${(h.i.globalFns||[]).filter((e=>/[a-zA-Z_$][0-9a-zA-Z_$]*/.test(e))).map((e=>`(typeof ${e}==\'function\'&&(window.${e}=${e}))`)).join(";")+t.replace(/\\bthis\\b/g,"(thi$(this)?window:this)").replace(/\\/\\/# so/g,"//Xso")}\\n;function thi$(t){return t===this}}`+(r?"\\n//# sourceURL="+r:""),e.A||(t=t.replace(/.postMessage\\(/g,`.postMessage(\'${e.U}\',`)),new Function(t).call(e.T),e.M=0},Te=(e,t,r)=>{(r=F(e,t))&&setTimeout((()=>r.map((e=>e({type:t})))))},Ee=(e,t,r,n,i,s)=>{for(n=e.D;!n.host&&(n=(e=m[e.I]).D,e.U!==e.I););return i=new URL(t||"",n),!r&&h.i.resolveUrl&&(s=h.i.resolveUrl(i,n))?s:i},Ne=(e,t,r)=>Ee(e,t,r)+"",Le=()=>`<script src="${v("partytown.js?v="+be)}"><\\/script>`,xe=e=>class{constructor(){this.s="",this.l=[],this.e=[]}get src(){return this.s}set src(t){fetch(Ne(e,t,!0),{mode:"no-cors",keepalive:!0}).then((e=>{e.ok||0===e.status?this.l.map((e=>e({type:"load"}))):this.e.map((e=>e({type:"error"})))}),(()=>this.e.forEach((e=>e({type:"error"})))))}addEventListener(e,t){"load"===e&&this.l.push(t),"error"===e&&this.e.push(t)}get onload(){return this.l[0]}set onload(e){this.l=[e]}get onerror(){return this.e[0]}set onerror(e){this.e=[e]}},Ae={addEventListener:{value(...e){const t=e[0],r=F(this,t)||[];r.push(e[1]),_(this,t,r)}},async:{get:A,set:A},defer:{get:A,set:A},onload:{get(){let e=F(this,"load");return e&&e[0]||null},set(e){_(this,"load",e?[e]:null)}},onerror:{get(){let e=F(this,"error");return e&&e[0]||null},set(e){_(this,"error",e?[e]:null)}},getAttribute:{value(e){return"src"===e?this.src:J(this,["getAttribute"],[e])}},setAttribute:{value(e,t){Ce.includes(e)?this[e]=t:J(this,["setAttribute"],[e,t])}}},Ce=S("src,type"),Re=(e,t)=>{const r={innerHTML:Pe,innerText:Pe,src:{get(){return F(this,4)||""},set(e){const r=Ne(t,e,!0);e=Ne(t,e),_(this,4,e),Z(this,["src"],e),r!==e&&Z(this,["dataset","ptsrc"],r)}},textContent:Pe,type:{get(){return q(this,["type"])},set(e){He(e)||(_(this,5,e),Z(this,["type"],e))}},...Ae};B(e,r)},Pe={get(){return F(this,3)||""},set(e){_(this,3,e)}},He=e=>!e||"text/javascript"===e,We=(e,i,s)=>{const o=D(class extends s{appendChild(e){return this.insertBefore(e,null)}get href(){}set href(e){}insertBefore(e,s){const o=e[t]=this[t],a=e[r],l=e[n],$="SCRIPT"===l,c="IFRAME"===l;if($){const t=F(e,3),r=F(e,5);if(t){if(He(r)){const r=Ie(i,a,t,0,""),n=r?"pterror":"ptid",s=r||a;Z(e,["type"],W+"-x"),Z(e,["dataset",n],s)}Z(e,["innerHTML"],t)}}return J(this,["insertBefore"],[e,s],2),c&&((e,t)=>{let r,n,i=0,s=()=>{m[e]&&m[e].x&&!m[e].y?(r=F(t,1)?"error":"load",n=F(t,r),n&&n.map((e=>e({type:r})))):i++>2e3?(n=F(t,"error"),n&&n.map((e=>e({type:"error"})))):setTimeout(s,9)};s()})(a,e),$&&(X(!0),h.J([5,o])),e}get nodeName(){return this[n]}get nodeType(){return 3}get ownerDocument(){return i.n}},"Node");te(o,S("childNodes,firstChild,isConnected,lastChild,nextSibling,parentElement,parentNode,previousSibling")),e.Node=o},Oe=S("AUDIO,CANVAS,VIDEO"),De=S("Audio,MediaSource"),ke=(e,r,n)=>{B(e,{body:{get:()=>r.e},cookie:{get(){return r.A?q(this,["cookie"]):(V("get","cookie",r),"")},set(e){r.A&&Z(this,["cookie"],e)}},createElement:{value(e){if(e=e.toUpperCase(),!x.test(e))throw e+" not valid";const r="IFRAME"===e,n=this[t],i=(r?"f_":"")+H(),s=Q(n,i,e);if(J(this,["createElement"],[e],2,i),r)Xe({U:i,I:n,R:y},!0).T.fetch=fetch,Z(s,["srcdoc"],Le());else if("SCRIPT"===e){const e=F(s,5);He(e)&&Z(s,["type"],W)}return s}},createElementNS:{value(e,r){const n=H(),i=Q(this[t],n,r,e);return J(this,["createElementNS"],[e,r],2,n),i}},createTextNode:{value(e){const r=this[t],n=H(),i=Q(r,n,"#text");return J(this,["createTextNode"],[e],2,n),i}},createEvent:{value:e=>new Event(e)},currentScript:{get(){return r.l?Q(this[t],r.l,"SCRIPT"):null}},defaultView:{get:()=>n?null:r.T},documentElement:{get:()=>r.o},getElementsByTagName:{value(e){return"BODY"===(e=e.toUpperCase())?[r.e]:"HEAD"===e?[r.s]:J(this,["getElementsByTagName"],[e])}},head:{get:()=>r.s},implementation:{get(){return{hasFeature:()=>!0,createHTMLDocument:e=>{const t=H();return J(this,["implementation","createHTMLDocument"],[e],1,{U:t}),ze(t,t,r.D+"","hidden",!0,!0).n}}}},location:{get:()=>r.D,set(e){r.D.href=e+""}},nodeType:{value:9},parentNode:{value:null},parentElement:{value:null},readyState:{value:"complete"},visibilityState:{get:()=>r.S||"visible"}}),ne(e,"compatMode,referrer,forms")},Be=(e,t)=>{B(e,{parentElement:{get(){return this.parentNode}},parentNode:{get:()=>t.o}})},je=(e,t)=>{B(e,{localName:{get(){return this[n].toLowerCase()}},namespaceURI:{get(){return this[i]||"http://www.w3.org/1999/xhtml"}},nodeType:{value:1},tagName:{get(){return this[n]}}}),te(e,I),ne(e,"id"),ie(t),se(t,S("getClientRects,getBoundingClientRect"))},Ue=(e,t)=>{const r={};S("hash,host,hostname,href,origin,pathname,port,protocol,search").map((e=>{r[e]={get(){let r,n=F(this,4);return"string"!=typeof n&&(r=q(this,["href"]),_(this,4,r),n=new URL(r)[e]),Ee(t,n)[e]},set(r){let n=F(this,4),i=Ee(t,n);i[e]=new URL(r+"",i.href),_(this,4,i.href),Z(this,["href"],i.href)}}})),B(e,r)},Fe=(e,t)=>{const r={contentDocument:{get(){return _e(this).n}},contentWindow:{get(){return _e(this).T}},src:{get(){let e=_e(this).D.href;return e.startsWith("about:")?"":e},set(e){if(!e.startsWith("about:")){let t,r=new XMLHttpRequest,n=_e(this);n.D.href=e=Ne(n,e),n.y=1,_(this,1,void 0),r.open("GET",e,!1),r.send(),t=r.status,t>199&&t<300?(Z(this,["srcdoc"],`<base href="${e}">`+r.responseText.replace(/<script>/g,\'<script type="text/partytown">\').replace(/<script /g,\'<script type="text/partytown" \').replace(/text\\/javascript/g,W)+Le()),X(!0),h.J([5,n.U])):(_(this,1,t),n.y=0)}}},...Ae};B(e,r)},_e=e=>{const n=e[r];return m[n]||Xe({U:n,I:e[t],R:q(e,["src"])||y},!0),m[n]},Ve=e=>{const t=(e,t)=>{const{a:r,b:n,c:i,d:s,e:o,f:a}=J(e,[t],P);return new DOMMatrixReadOnly([r,n,i,s,o,a])},r={...e,getCTM:{value:function(){return t(this,"getCTM")}},getScreenCTM:{value:function(){return t(this,"getScreenCTM")}}};B(e,r)},ze=(a,l,$,c,u,f)=>{const w=class{constructor(e,a,l,$,c){this[t]=e,this[r]=a,this[s]=l||[],this[n]=$,this[o]={},c&&(this[i]=c)}},b=new(D(class extends URL{assign(){}reload(){}replace(){}},"Location"))($),M=b.origin===h.H||b.origin===y,T={},E=D(class extends w{constructor(){super(a,a);let n,i,o=this,$=0,d=()=>{$||((h.u||(e.g=[q,Z,J,Y,B,H,t,r,s],h.t(v("partytown-media.js?v="+be)),h.u=e.f,delete e.f),h.u)(w,x,T,o,De),$=1)},m={},y=(e,t,r)=>(Oe.includes(e)&&d(),new(m[e]?m[e]:e.includes("-")?m.UNKNOWN:m.DIV)(a,t,P,e,r));var N,A;o.Window=E,We(o,T,w),we(o,w,"CSSStyleDeclaration"),((e,t,r)=>{e[r]=D(class extends t{now(){return performance.now()}},r)})(o,w,"Performance"),h.v.map((([e,t,n,i,l])=>{const $=Ge[e]?L:"EventTarget"===t?x:"Object"===t?w:o[t],c=o[e]=D(12===i?class extends w{constructor(...t){super(a,H()),Y(this,e,t)}}:o[e]||class extends ${},e);l&&(m[l]=c),n.map((([e,t,n])=>{e in c.prototype||e in $.prototype||("string"==typeof t?k(c,e,{get(){if(!U(this,e)){const n=this[r],i=[...this[s],e],l=o[t];l&&_(this,e,new l(a,n,i))}return F(this,e)},set(t){_(this,e,t)}}):5===t?j(c,e,(function(...t){return J(this,[e],t)})):t>0&&(void 0!==n?j(c,e,n):k(c,e,{get(){return q(this,[e])},set(t){return Z(this,[e],t)}})))}))})),S("atob,btoa,crypto,indexedDB,setTimeout,setInterval,clearTimeout,clearInterval").map((t=>{delete E.prototype[t],t in o||(n=e[t],null!=n&&(o[t]="function"!=typeof n||n.toString().startsWith("class")?n:n.bind(e)))})),Object.getOwnPropertyNames(e).map((t=>{t in o||(o[t]=e[t])})),De.map((e=>O(o,e,{get:()=>(d(),o[e])}))),"trustedTypes"in e&&(o.trustedTypes=e.trustedTypes),je(o.Element,o.HTMLElement),ke(o.Document,T,f),N=o.DocumentFragment,ee(N,11),te(N,I),Ue(o.HTMLAnchorElement,T),A=o.HTMLFormElement,B(A,{}),ne(A,"elements"),Fe(o.HTMLIFrameElement),Re(o.HTMLScriptElement,T),Ve(o.SVGGraphicsElement),Be(o.HTMLHeadElement,T),Be(o.HTMLBodyElement,T),((e,t)=>{B(e,{parentElement:{value:null},parentNode:{get:()=>t.n}})})(o.HTMLHtmlElement,T),ye(o,"CSSStyleSheet"),ee(o.Comment,8),ee(o.DocumentType,10),Object.assign(T,{U:a,I:l,T:new Proxy(o,{has:()=>!0}),n:y("#document",a+".d"),o:y("HTML",a+".e"),s:y("HEAD",a+".h"),e:y("BODY",a+".b"),D:b,S:c,A:M,k:y}),o.requestAnimationFrame=e=>setTimeout((()=>e(performance.now())),9),o.cancelAnimationFrame=e=>clearTimeout(e),o.requestIdleCallback=(e,t)=>(t=Date.now(),setTimeout((()=>e({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))})),1)),o.cancelIdleCallback=e=>clearTimeout(e),ge(o,"localStorage",p,M,T),ge(o,"sessionStorage",g,M,T),M||(o.indexeddb=void 0),u&&(i={},o.history={pushState(e){i=e},replaceState(e){i=e},get state(){return i},length:0}),o.Worker=void 0}addEventListener(...e){"load"===e[0]?T.M&&setTimeout((()=>e[1]({type:"load"}))):J(this,["addEventListener"],e,2)}get body(){return T.e}get document(){return T.n}get documentElement(){return T.o}fetch(e,t){return e="string"==typeof e||e instanceof URL?String(e):e.url,fetch(Ne(T,e),t)}get frameElement(){return a===l?null:Q(l,a,"IFRAME")}get globalThis(){return this}get head(){return T.s}get location(){return b}set location(e){b.href=e+""}get Image(){return xe(T)}get name(){return name+a}get navigator(){return(e=>{let t,r={sendBeacon:(t,r)=>{try{return fetch(Ne(e,t,!0),{method:"POST",body:r,mode:"no-cors",keepalive:!0}),!0}catch(e){return console.error(e),!1}}};for(t in navigator)r[t]=navigator[t];return r})(T)}get origin(){return b.origin}set origin(e){}get parent(){for(let e in m)if(m[e].U===l)return m[e].T;return this}postMessage(...e){m[e[0]]&&(C(d)>50&&d.splice(0,5),d.push({U:e[0],m:JSON.stringify(e[1])}),e=e.slice(1)),J(this,["postMessage"],e,3)}get self(){return this}get top(){for(let e in m)if(m[e].U===m[e].I)return m[e].T;return this}get window(){return this}get XMLHttpRequest(){const e=XMLHttpRequest,t=String(e),r=D(class extends e{open(...e){e[1]=Ne(T,e[1]),super.open(...e)}set withCredentials(e){}toString(){return t}},R(e));return r.prototype.constructor.toString=()=>t,r}},"Window"),L=class extends w{constructor(e,t,r,n){return super(e,t,r,n),new Proxy(this,{get:(e,t)=>q(e,[t]),set:(e,t,r)=>(Z(e,[t],r),!0)})}},x=class extends w{};return N.map((e=>x.prototype[e]=function(...t){return J(this,[e],t,2)})),ne(E,"devicePixelRatio"),ie(E),se(E,["getComputedStyle"]),new E,T},Ge={DOMStringMap:1,NamedNodeMap:1},Xe=({U:e,I:t,R:r,S:n},i)=>(m[e]||(m[e]=ze(e,t,r,n,i)),h.J([5,e]),m[e]),qe=[],Ze=t=>{const r=t.data,n=r[0],i=r[1];h.x?5===n?(async e=>{let t,r=e.U,n=e.w,i=Q(r,n,"SCRIPT"),s=e.j,o=e.R,a=e.G,l="",$=m[r];if(o)try{o=Ee($,o)+"",_(i,4,o),t=await fetch(o),t.ok?(s=await t.text(),$.l=n,Me($,s,a||o),Te(i,"load")):(l=t.statusText,Te(i,"error"))}catch(e){console.error(e),l=String(e.stack||e),Te(i,"error")}else s&&(l=Ie($,n,s,0,l));$.l="",h.J([4,r,n,l])})(i):7===n?(({U:e,w:t,K:r,Q:n,b:i})=>{if(c[r])try{c[r].apply(ce(e,t,[],n),ce(e,t,[],i))}catch(e){console.error(e)}})(i):8===n?(({U:e,q:t,b:r})=>{try{let n=m[e].T,i=0,s=C(t);for(;i<s;i++)i+1<s?n=n[t[i]]:n[t[i]].apply(n,ce(null,e,[],r))}catch(e){console.error(e)}})(i):3===n?Xe(i):6===n?(m[i].x=1,m[i].y=0):12===n?m[i].S=r[2]:11===n&&(m[i].D.href=r[2]):1===n?((t=>{const r=h.i=JSON.parse(t.i),n=t.H;h.t=importScripts.bind(e),h.v=t.v,h.B=t.B,h.H=n,h.J=postMessage.bind(e),h.O=t.O,p.set(n,t.C),g.set(n,t.N),e.importScripts=void 0,delete e.postMessage,delete e.WorkerGlobalScope,S("resolveUrl,get,set,apply").map((e=>{r[e]&&(r[e]=new Function("return "+r[e])())})),h.x=1})(i),h.J([2]),[...qe].map(Ze),qe.length=0):qe.push(t)};e.onmessage=Ze,postMessage([0])})(self);\n'],{type:"text/javascript"})),{name:"Partytown 🎉"}),J.onmessage=t=>{const r=t.data;10===r[0]?C(J,r[1]):e(J,r)},$.addEventListener("pt1",(e=>O(J,g(e.detail.frameElement),e.detail))))}))})(window);
@@ -0,0 +1,2 @@
1
+ /* Partytown 0.4.5 - MIT builder.io */
2
+ (e=>{const[t,s,n,r,i,a,o,d,u]=e.g;delete e.g;const c=Symbol(),h=Symbol(),f=Symbol(),p=Symbol(),g=Symbol(),l=Symbol(),m=[],v=(e,t,s)=>e[t]=S(t,s),S=(e,t)=>Object.defineProperty(t,"name",{value:e}),b=(e,t)=>{const r={getContext:{value(e,t){return this[c]||(this[c]=(e.includes("webgl")?g:p)(this,e,t)),this[c]}}},h=v(t,"CanvasGradient",class extends e{addColorStop(...e){n(this,["addColorStop"],e,2)}}),f=v(t,"CanvasPattern",class extends e{setTransform(...e){n(this,["setTransform"],e,2)}}),p=(e,t,r)=>{const i=e[o],c=a(),f={[o]:i,[d]:c,[u]:[]},p=n(e,["getContext"],[t,r],1,c),g="getContextAttributes,getImageData,getLineDash,getTransform,isPointInPath,isPointInStroke,measureText".split(","),l={get:(e,t)=>"string"==typeof t&&t in p?"function"==typeof p[t]?(...e)=>{if(t.startsWith("create")){const r=a();return n(f,[t],e,2,r),"createImageData"===t||"createPattern"===t?(s=`${t}()`,console.warn(`${s} not implemented`),{setTransform:()=>{}}):new h(i,r)}var s;const r=g.includes(t)?1:2;return n(f,[t],e,r)}:p[t]:e[t],set:(e,t,n)=>("string"==typeof t&&t in p?(p[t]!==n&&"function"!=typeof n&&s(f,[t],n),p[t]=n):e[t]=n,!0)};return new Proxy(p,l)},g=(e,t,r)=>{const i=e[o],c=a(),h={[o]:i,[d]:c,[u]:[]},f=n(e,["getContext"],[t,r],1,c),p={get:(e,t)=>"string"==typeof t?"function"!=typeof f[t]?f[t]:(...e)=>n(h,[t],e,m(t)):e[t],set:(e,t,n)=>("string"==typeof t&&t in f?(f[t]!==n&&"function"!=typeof n&&s(h,[t],n),f[t]=n):e[t]=n,!0)};return new Proxy(f,p)},l="checkFramebufferStatus,makeXRCompatible".split(","),m=e=>e.startsWith("create")||e.startsWith("get")||e.startsWith("is")||l.includes(e)?1:2;v(t,"CanvasGradient",h),v(t,"CanvasPattern",f),i(t.HTMLCanvasElement,r)},y=(e,u,c,b)=>{var y,T;b.Audio=S("HTMLAudioElement",class{constructor(e){const t=c.k("audio",a());return t.src=e,t}});const w=class extends e{get enabled(){return t(this,["enabled"])}set enabled(e){s(this,["enabled"],e)}get id(){return t(this,["id"])}get kind(){return t(this,["kind"])}get label(){return t(this,["label"])}get language(){return t(this,["language"])}get sourceBuffer(){return new x(this)}},E=class{constructor(e){const s="audioTracks",r=e[o],i=e[d];return new Proxy({addEventListener(...t){n(e,[s,"addEventListener"],t,3)},getTrackById:(...t)=>n(e,[s,"getTrackById"],t),get length(){return t(e,[s,"length"])},removeEventListener(...t){n(e,[s,"removeEventListener"],t,3)}},{get:(e,t)=>"number"==typeof t?new w(r,i,[s,t]):e[t]})}},k=v(b,"SourceBufferList",class extends Array{constructor(e){super(),this[h]=e}addEventListener(...e){n(this[h],["sourceBuffers","addEventListener"],e,3)}removeEventListener(...e){n(this[h],["sourceBuffers","removeEventListener"],e,3)}}),x=v(b,"SourceBuffer",(T=class extends u{constructor(e){super(e[o],e[d],["sourceBuffers"]),this[y]=[],this[h]=e}abort(){const e=R(this);n(this,[e,"appendWindowStart"],m,1)}addEventListener(...e){const t=R(this);n(this,[t,"addEventListener"],e,3)}appendBuffer(e){this[g].push(["appendBuffer",[e],e]),M(this)}get appendWindowStart(){const e=R(this);return t(this,[e,"appendWindowStart"])}set appendWindowStart(e){const t=R(this);s(this,[t,"appendWindowStart"],e)}get appendWindowEnd(){const e=R(this);return t(this,[e,"appendWindowEnd"])}set appendWindowEnd(e){const t=R(this);s(this,[t,"appendWindowEnd"],e)}get buffered(){const e=this[h],t=R(this);return new B(e[o],e[d],["sourceBuffers",t,"buffered"])}changeType(e){const t=R(this);n(this,[t,"changeType"],[e],2)}get mode(){const e=R(this);return t(this,[e,"mode"])}set mode(e){const t=R(this);s(this,[t,"mode"],e)}remove(e,t){this[g].push(["remove",[e,t]]),M(this)}removeEventListener(...e){const t=R(this);n(this,[t,"removeEventListener"],e,3)}get timestampOffset(){const e=R(this);return t(this,[e,"timestampOffset"])}set timestampOffset(e){const t=R(this);s(this,[t,"timestampOffset"],e)}get updating(){const e=R(this);return t(this,[e,"updating"])}},y=g,T)),B=v(b,"TimeRanges",class extends e{start(...e){return n(this,["start"],e)}end(...e){return n(this,["end"],e)}get length(){return t(this,["length"])}}),R=e=>e?e[h][p].indexOf(e):-1,M=e=>{if(e[g].length){if(!e.updating){const t=e[g].shift();if(t){const s=R(e);n(e,[s,t[0]],t[1],3,void 0,t[2])}}setTimeout((()=>M(e)),50)}},W={buffered:{get(){return this[l]||(this[l]=new B(this[o],this[d],["buffered"]),setTimeout((()=>{this[l]=void 0}),5e3)),this[l]}},readyState:{get(){return 4===this[f]?4:("number"!=typeof this[f]&&(this[f]=t(this,["readyState"]),setTimeout((()=>{this[f]=void 0}),1e3)),this[f])}}};v(b,"MediaSource",class extends u{constructor(){super(c.U,a()),this[p]=new k(this),r(this,"MediaSource",m)}get activeSourceBuffers(){return[]}addSourceBuffer(e){const t=new x(this);return this[p].push(t),n(this,["addSourceBuffer"],[e]),t}clearLiveSeekableRange(){n(this,["clearLiveSeekableRange"],m,2)}get duration(){return t(this,["duration"])}set duration(e){s(this,["duration"],e)}endOfStream(e){n(this,["endOfStream"],[e],3)}get readyState(){return t(this,["readyState"])}removeSourceBuffer(e){const t=R(e);t>-1&&(this[p].splice(t,1),n(this,["removeSourceBuffer"],[t],1))}setLiveSeekableRange(e,t){n(this,["setLiveSeekableRange"],[e,t],2)}get sourceBuffers(){return this[p]}static isTypeSupported(e){if(!L.has(e)){const t=n(b,["MediaSource","isTypeSupported"],[e]);L.set(e,t)}return L.get(e)}});const C=b.URL=S("URL",class extends URL{});"audioTracks"in b.HTMLMediaElement.prototype&&(v(b,"AudioTrackList",E),v(b,"AudioTrack",w),W.audioTracks={get(){return new E(this)}}),i(b.HTMLMediaElement,W),C.createObjectURL=e=>n(b,["URL","createObjectURL"],[e]),C.revokeObjectURL=e=>n(b,["URL","revokeObjectURL"],[e])},L=new Map;e.f=(e,t,s,n,r)=>{r.map((e=>{delete n[e]})),b(e,n),y(e,t,s,n)}})(self);
@@ -0,0 +1,2 @@
1
+ /* Partytown 0.4.5 - MIT builder.io */
2
+ const e=new Map,t=(e,t)=>({E:e.E,p:t}),r=(e,t)=>new Response(e,{headers:{"content-type":t||"text/html","Cache-Control":"no-store"}});self.oninstall=()=>self.skipWaiting(),self.onactivate=()=>self.clients.claim(),self.onmessage=t=>{const r=t.data,n=e.get(r.E);n&&(e.delete(r.E),clearTimeout(n[1]),n[0](r))},self.onfetch=n=>{const i=n.request,s=new URL(i.url).pathname;s.endsWith("sw.html")?n.respondWith(r('<!DOCTYPE html><html><head><meta charset="utf-8"><script type="module">/* Partytown 0.4.5 - MIT builder.io */\n(e=>{const t=()=>{},r=e=>e.length,n=e=>{try{return e.constructor.name}catch(e){}return""},i=(e,t)=>e.startsWith(t),s=e=>!(i(e,"webkit")||i(e,"toJSON")||i(e,"constructor")||i(e,"toString")||i(e,"_")),o=()=>Math.round(Math.random()*Number.MAX_SAFE_INTEGER).toString(36),a={Anchor:"a",DList:"dl",Image:"img",OList:"ol",Paragraph:"p",Quote:"q",TableCaption:"caption",TableCell:"td",TableCol:"colgroup",TableRow:"tr",TableSection:"tbody",UList:"ul"},l={Graphics:"g",SVG:"svg"},c=Symbol(),u=Symbol(),p=new Map,h=new Map,d={},m=new WeakMap,g=(e,t)=>{if(e)return(t=m.get(e))||(t=e[c])||y(e,t=o()),t},f=(e,t,r,n,i)=>{if((r=d[e])&&r.T){if(e===t)return r.T;if(n=r.T.document,"d"===(i=t.split(".").pop()))return n;if("e"===i)return n.documentElement;if("h"===i)return n.head;if("b"===i)return n.body}return p.get(t)},y=(e,t,r)=>{e&&(p.set(t,e),e[c]=t,e[u]=r=Date.now(),r>w+5e3&&(p.forEach(((e,t)=>{e[u]<w&&e.nodeType&&!e.isConnected&&p.delete(t)})),w=r))};let w=0;const $=e.parent,S=document,v=$.partytown||{},b=(v.lib||"/~partytown/")+"",T=(e,t,r,s,o)=>void 0!==t&&(s=typeof t)?"string"===s||"number"===s||"boolean"===s||null==t?[0,t]:"function"===s?[6]:(r=r||new Set)&&Array.isArray(t)?r.has(t)?[1,[]]:r.add(t)&&[1,t.map((t=>T(e,t,r)))]:"object"===s?""===(o=n(t))?[2,{}]:"Window"===o?[3,[e,e]]:"HTMLCollection"===o||"NodeList"===o?[7,Array.from(t).map((t=>T(e,t,r)[1]))]:o.endsWith("Event")?[5,M(e,t,r)]:"CSSRuleList"===o?[12,Array.from(t).map(E)]:i(o,"CSS")&&o.endsWith("Rule")?[11,E(t)]:"CSSStyleDeclaration"===o?[13,M(e,t,r)]:"Attr"===o?[10,[t.name,t.value]]:t.nodeType?[3,[e,g(t),t.nodeName]]:[2,M(e,t,r,!0,!0)]:void 0:t,M=(e,t,r,n,i,o,a,l)=>{if(o={},!r.has(t))for(a in r.add(t),t)s(a)&&(l=t[a],(n||"function"!=typeof l)&&(i||""!==l)&&(o[a]=T(e,l,r)));return o},E=e=>{let t,r={};for(t in e)C.includes(t)&&(r[t]=String(e[t]));return r},I=(t,r,n,i)=>r?(n=r[0],i=r[1],0===n?i:4===n?N(t,i):1===n?i.map((e=>I(t,e))):3===n?f(i[0],i[1]):5===n?L(x(t,i)):2===n?x(t,i):8===n?i:9===n?new e[r[2]](i):void 0):void 0,N=(e,{U:t,w:r,K:n},i)=>((i=h.get(n))||(i=function(...i){e.postMessage([7,{U:t,w:r,K:n,Q:T(t,this),b:T(t,i)}])},h.set(n,i)),i),L=e=>new("detail"in e?CustomEvent:Event)(e.type,e),x=(e,t,r,n)=>{for(n in r={},t)r[n]=I(e,t[n]);return r},C="cssText,selectorText,href,media,namespaceURI,prefix,name,conditionText".split(","),R=async(e,t)=>{let n,i,s,o,a,l,c={E:t.E},u=r(t.P),p=0;for(;p<u;p++)try{l=p===u-1,n=t.P[p],i=n.U,s=n.a,!d[i]&&i.startsWith("f_")&&await new Promise((e=>{let t=0,r=()=>{d[i]||t++>1e3?e():requestAnimationFrame(r)};r()})),1===s[0]&&s[1]in d[i].T?y(new d[i].T[s[1]](...I(e,s[2])),n.w):(o=f(i,n.w),o?(a=A(e,o,s,l,n.r),n.d&&("string"==typeof n.d?y(a,n.d):d[n.d.U]={U:n.d.U,T:{document:a}}),"object"==typeof(h=a)&&h&&h.then&&(a=await a,c.z=!0),c.L=T(i,a)):c.p=n.w+" not found")}catch(e){l?c.p=String(e.stack||e):console.error(e)}var h;return c},A=(e,t,n,i,s)=>{let o,a,l,c,u,p=0,h=r(n);for(;p<h;p++){a=n[p],o=n[p+1],l=n[p-1];try{if(!Array.isArray(o))if("string"==typeof a||"number"==typeof a){if(p+1===h&&s)return u={},s.map((e=>u[e]=t[e])),u;t=t[a]}else{if(0===o)return void(t[l]=I(e,a));if("function"==typeof t[l]&&(c=I(e,a),"insertRule"===l&&c[1]>r(t.cssRules)&&(c[1]=r(t.cssRules)),t=t[l].apply(t,c),"play"===l))return Promise.resolve()}}catch(e){if(i)throw e;console.debug(e)}}return t},O=(e,t,r)=>{if(!m.has(r)){m.set(r,t);const n=r.document,i=r.history,s=m.get(r.parent),o=()=>e.postMessage([3,{U:t,I:s,R:n.baseURI,S:n.visibilityState}]),a=i.pushState.bind(i),l=i.replaceState.bind(i),c=()=>setTimeout((()=>e.postMessage([11,t,n.baseURI])));i.pushState=(e,t,r)=>{a(e,t,r),c()},i.replaceState=(e,t,r)=>{l(e,t,r),c()},r.addEventListener("popstate",c),r.addEventListener("hashchange",c),n.addEventListener("visibilitychange",(()=>e.postMessage([12,t,n.visibilityState]))),d[t]={U:t,T:r},"complete"===n.readyState?o():r.addEventListener("load",o)}},H=(e,t)=>{let n,i,s,o=t.U,a=t.T,l=a.document;l&&l.body?(n=l.querySelector(\'script[type="text/partytown"]:not([data-ptid]):not([data-pterror]):not([async]):not([defer])\'),n||(n=l.querySelector(\'script[type="text/partytown"]:not([data-ptid]):not([data-pterror])\')),n?(n.dataset.ptid=i=g(n,o),s={U:o,w:i},n.src?(s.R=n.src,s.G=n.dataset.ptsrc||n.src):s.j=n.innerHTML,e.postMessage([5,s])):(t.x||(t.x=1,((e,t,n)=>{let i,s,o=n._ptf,a=(n.partytown||{}).forward||[],l=(r,n)=>e.postMessage([8,{U:t,q:r,b:T(t,Array.from(n))}]);if(n._ptf=void 0,a.map((e=>{s=n,e.split(".").map(((e,t,n)=>{s=s[n[t]]=t+1<r(n)?s[n[t]]||("push"===n[t+1]?[]:{}):(...e)=>l(n,e)}))})),o)for(i=0;i<r(o);i+=2)l(o[i],o[i+1])})(e,o,a),l.dispatchEvent(new CustomEvent("pt0"))),e.postMessage([6,o]))):requestAnimationFrame((()=>H(e,t)))},D=()=>{const e=S.implementation.createHTMLDocument(),t=e.createElement("i"),r=e.createTextNode(""),i=e.createComment(""),s=e.createDocumentFragment(),o=F($,"IntersectionObserver"),c=F($,"MutationObserver"),u=F($,"ResizeObserver"),p=$.performance,h=$.screen,d=Object.getOwnPropertyNames($).map((t=>((e,t,r,n)=>{if(r=t.match(/^(HTML|SVG)(.+)Element$/))return n=r[2],"S"==t[0]?e.createElementNS("http://www.w3.org/2000/svg",l[n]||n.slice(0,2).toLowerCase()+n.slice(2)):e.createElement(a[n]||n)})(e,t))).filter((e=>e)).map((e=>[e])),m=[[$.history],[p],[p.navigation],[p.timing],[h],[h.orientation],[$.visualViewport],[o,12],[c,12],[u,12],[r],[i],[s],[t],[t.attributes],[t.classList],[t.dataset],[t.style],[e],[e.doctype],...d].filter((e=>e[0])).map((e=>{const t=e[0],r=e[1],i=n(t);return[i,$[i].prototype,t,r]})),g=[U("Window",$),U("Node",r)],f={i:JSON.stringify(v,((e,t)=>("function"==typeof t&&(t=String(t)).startsWith(e+"(")&&(t="function "+t),t))),B:new URL(b,$.location)+"",v:g,H:origin,C:k("localStorage"),N:k("sessionStorage")};return m.map((([e,t,r,n])=>P(g,e,t,r,n))),j(g,$,"IntersectionObserverEntry"),f},U=(e,t,r)=>{let n=[],i=[e,"Object",n];for(r in t)_(n,t,r);return i},P=(e,t,r,i,s)=>{if("Object"!==t&&!e.some((e=>e[0]===t))){const o=Object.getPrototypeOf(r),a=n(o),l=[];P(e,a,o,i,s),Object.keys(Object.getOwnPropertyDescriptors(r)).map((e=>_(l,i,e))),e.push([t,a,l,s,i.nodeName])}},_=(e,t,r,i,o,a)=>{try{s(r)&&isNaN(r[0])&&"all"!==r&&("function"==(o=typeof(i=t[r]))?(String(i).includes("[native")||Object.getPrototypeOf(t)[r])&&e.push([r,5]):"object"===o&&null!=i?"Object"!==(a=n(i))&&self[a]&&e.push([r,i.nodeType||a]):"symbol"!==o&&(r.toUpperCase()===r?e.push([r,6,i]):e.push([r,6])))}catch(e){console.warn(e)}},k=e=>{let t,n=[],i=0,s=r($[e]);for(;i<s;i++)t=$[e].key(i),n.push([t,$[e].getItem(t)]);return n},F=(e,r)=>void 0!==e[r]?new e[r](t):0,j=(e,t,r)=>{void 0!==t[r]&&e.push([r,"Object",Object.keys(t[r].prototype).map((e=>[e,6])),12])};let J;(t=>{const r=e.navigator.serviceWorker;return r.getRegistration().then((e=>(r.addEventListener("message",(t=>{return r=t.data,n=t=>e.active&&e.active.postMessage(t),R(J,r).then(n);var r,n})),(e,t)=>{0===t[0]?e.postMessage([1,D()]):((e,t,r)=>{2===t[0]?O(e,o(),$):(r=d[t[1]])&&(5===t[0]?requestAnimationFrame((()=>H(e,r))):4===t[0]&&((e,t,r,n,i)=>{(i=t.T.document.querySelector(`[data-ptid="${r}"]`))&&(n?i.dataset.pterror=n:i.type+="-x",delete i.dataset.ptid),H(e,t)})(e,r,t[2],t[3]))})(e,t)})))})().then((e=>{e&&(J=new Worker(URL.createObjectURL(new Blob([\'/* Partytown 0.4.5 - MIT builder.io */\\n(e=>{const t=Symbol(),r=Symbol(),n=Symbol(),i=Symbol(),s=Symbol(),o=Symbol(),a=Symbol(),l=Symbol(),$=new Map,c={},u=new WeakMap,d=[],h={},p=new Map,g=new Map,m={},f=new Map,y=new Map,w="about:blank",S=e=>e.split(","),v=e=>{if(e=h.B+e,new URL(e).origin!=location.origin)throw"Invalid "+e;return e},b=S("clientWidth,clientHeight,clientTop,clientLeft,innerWidth,innerHeight,offsetWidth,offsetHeight,offsetTop,offsetLeft,outerWidth,outerHeight,pageXOffset,pageYOffset,scrollWidth,scrollHeight,scrollTop,scrollLeft"),I=S("childElementCount,children,firstElementChild,lastElementChild,nextElementSibling,previousElementSibling"),T=S("insertBefore,remove,removeChild,replaceChild"),M=S("className,width,height,hidden,innerHTML,innerText,textContent"),E=S("setAttribute,setAttributeNS,setProperty"),N=S("addEventListener,dispatchEvent,removeEventListener"),L=N.concat(E,S("add,observe,remove,unobserve")),x=/^[A-Z]([A-Z0-9-]*[A-Z0-9])?$/,C=()=>{},R=e=>e.length,A=e=>{try{return e.constructor.name}catch(e){}return""},P=[],H=()=>Math.round(Math.random()*Number.MAX_SAFE_INTEGER).toString(36),O="text/partytown",W=(e,t,r)=>Object.defineProperty(e,t,{...r,configurable:!0}),D=(e,t)=>W(e,"name",{value:t}),k=(e,t,r)=>W(e.prototype,t,r),B=(e,t)=>Object.defineProperties(e.prototype,t),j=(e,t,r)=>k(e,t,{value:r,writable:!0}),U=(e,t)=>t in e[o],F=(e,t)=>e[o][t],_=(e,t,r)=>e[o][t]=r,V=(e,t,r)=>console.warn(`Partytown unable to ${e} cross-origin ${t}: `+r.D),X=[],q=(e,n,i,o,a,l)=>{if(X.push({U:e[t],w:e[r],a:[...e[s],...n],d:o,r:a}),3===i)h.J([10,{E:H(),P:[...X]}],l?[l instanceof ArrayBuffer?l:l.buffer]:void 0),X.length=0;else if(1===i)return z(!0);h.c=setTimeout(z,20)},z=e=>{if(clearTimeout(h.c),R(X)){const t=X[R(X)-1],r={E:H(),P:[...X]};if(X.length=0,e){const e=((e,t)=>{const r=new XMLHttpRequest;return r.open("POST",v("proxytown"),!1),r.send(JSON.stringify(t)),JSON.parse(r.responseText)})(0,r),n=e.z,i=ce(t.U,t.w,t.a,e.L);if(e.p){if(n)return Promise.reject(e.p);throw new Error(e.p)}return n?Promise.resolve(i):i}h.J([10,r])}},G=(e,t,r,n)=>h.i.get&&(n=h.i.get(K(e,t)))!==a?n:n=q(e,t,1,void 0,r),J=(e,t,r,n)=>{if(h.i.set){if((n=h.i.set({value:r,prevent:l,...K(e,t)}))===l)return;n!==a&&(r=n)}M.some((e=>t.includes(e)))&&(f.clear(),t[t.length-1]),t=[...t,$e(e,r),0],q(e,t,2)},Z=(e,t,r,n,i,s,o,l)=>h.i.apply&&(o=h.i.apply({args:r,...K(e,t)}))!==a?o:(l=t[R(t)-1],t=[...t,$e(e,r)],n=n||(L.includes(l)?2:1),"setAttribute"===l&&U(e,r[0])?_(e,r[0],r[1]):T.includes(l)?(f.clear(),y.clear()):E.includes(l)&&(n=2,f.clear()),o=q(e,t,n,i,void 0,s)),Y=(e,t,r)=>{q(e,[1,t,$e(e,r)],1)},K=(e,t)=>({name:t.join("."),continue:a,nodeName:e[n],constructor:A(e)}),Q=(e,t,r,n,i)=>(!(i=$.get(t))&&r&&m[e]&&(i=m[e].k(r,t,n),$.set(t,i)),i),ee=(e,t)=>j(e,"nodeType",t),te=(e,t)=>t.map((t=>k(e,t,{get(){let e=re(this,t),r=y.get(e);return r||(r=G(this,[t]),y.set(e,r)),r}}))),re=(e,n,i)=>[e[t],e[r],n,...(i||P).map((e=>String(e&&e[t]?e[r]:e)))].join("."),ne=(e,t)=>S(t).map((t=>k(e,t,{get(){return U(this,t)||_(this,t,G(this,[t])),F(this,t)},set(e){F(this,t)!==e&&J(this,[t],e),_(this,t,e)}}))),ie=e=>b.map((t=>k(e,t,{get(){const e=f.get(re(this,t));if("number"==typeof e)return e;const r=G(this,[t],b);return r&&"object"==typeof r?(Object.entries(r).map((([e,t])=>f.set(re(this,e),t))),r[t]):r}}))),se=(e,t)=>t.map((t=>{e.prototype[t]=function(...e){let r=re(this,t,e),n=f.get(r);return n||(n=Z(this,[t],e),f.set(r,n)),n}})),oe=(e,n,i,s,o)=>{return void 0!==i&&(o=typeof i)?"string"===o||"boolean"===o||"number"===o||null==i?[0,i]:"function"===o?[4,{U:e,w:n,K:(a=i,(l=u.get(a))||(u.set(a,l=H()),c[l]=a),l)}]:(s=s||new Set)&&Array.isArray(i)?s.has(i)?[1,[]]:s.add(i)&&[1,i.map((t=>oe(e,n,t,s)))]:"object"===o?i[r]?[3,[i[t],i[r]]]:i instanceof Event?[5,le(e,n,i,!1,s)]:ae&&i instanceof TrustedHTML?[0,i.toString()]:i instanceof ArrayBuffer?[8,i]:ArrayBuffer.isView(i)?[9,i.buffer,A(i)]:[2,le(e,n,i,!0,s)]:void 0:i;var a,l},ae="undefined"!=typeof TrustedHTML,le=(e,t,r,n,i,s,o,a)=>{if(s={},!i.has(r))for(o in i.add(r),r)a=r[o],(n||"function"!=typeof a)&&(s[o]=oe(e,t,a,i));return s},$e=(e,n)=>e?oe(e[t],e[r],n):[0,n],ce=(e,t,r,n,i,s,o,a)=>{if(n){if(i=n[0],s=n[1],0===i||11===i||12===i)return s;if(4===i)return de(r,s);if(6===i)return C;if(3===i)return ue(s);if(7===i)return new he(s.map(ue));if(10===i)return new pe(s);if(1===i)return s.map((n=>ce(e,t,r,n)));for(a in o={},s)o[a]=ce(e,t,[...r,a],s[a]);if(13===i)return new m[e].T.CSSStyleDeclaration(e,t,r,o);if(5===i){if("message"===o.type&&o.origin){let e,t=JSON.stringify(o.data),r=d.find((e=>e.m===t));r&&(e=m[r.U],e&&(o.source=e.T,o.origin=e.D.origin))}return new Proxy(new Event(o.type,o),{get:(e,t)=>t in o?o[t]:"function"==typeof e[String(t)]?C:e[String(t)]})}if(2===i)return o}},ue=([e,t,r])=>t===e&&m[e]?m[e].T:Q(e,t,r),de=(e,{U:t,w:r,F:n,K:i})=>(c[i]||u.set(c[i]=function(...i){const s=Q(t,r,n);return Z(s,e,i)},i),c[i]),he=class{constructor(e){(this._=e).map(((e,t)=>this[t]=e))}entries(){return this._.entries()}forEach(e,t){this._.map(e,t)}item(e){return this[e]}keys(){return this._.keys()}get length(){return R(this._)}values(){return this._.values()}[Symbol.iterator](){return this._[Symbol.iterator]()}},pe=class{constructor(e){this.name=e[0],this.value=e[1]}get nodeName(){return this.name}get nodeType(){return 2}},ge=(e,t,r,n,i)=>{let s,o,a=t=>((t=r.get(e.origin))||r.set(e.origin,t=[]),t),l=e=>a().findIndex((t=>t[me]===e)),$={getItem:e=>(s=l(e),s>-1?a()[s][fe]:null),setItem(r,o){s=l(r),s>-1?a()[s][fe]=o:a().push([r,o]),n?Z(e,[t,"setItem"],[r,o],2):V("set",t,i)},removeItem(r){s=l(r),s>-1&&a().splice(s,1),n?Z(e,[t,"removeItem"],[r],2):V("remove",t,i)},key:e=>(o=a()[e],o?o[me]:null),clear(){a().length=0,n?Z(e,[t,"clear"],P,2):V("clear",t,i)},get length(){return a().length}};e[t]=$},me=0,fe=1,ye=(e,t,r)=>{e[r]=D(class extends t{constructor(e,t,r,i){return super(e,t,r,i||{}),new Proxy(this,{get:(e,t)=>e[t]?e[t]:(e[t]||"string"!=typeof t||e[n][t]||(e[n][t]=G(e,[t])),e[n][t]),set:(e,t,r)=>(e[n][t]=r,J(e,[t],r),f.clear(),!0)})}setProperty(...e){this[n][e[0]]=e[1],Z(this,["setProperty"],e,2),e[0],f.clear()}getPropertyValue(e){return this[e]}removeProperty(e){let t=this[n][e];return Z(this,["removeProperty"],[e],2),f.clear(),this[n][e]=void 0,t}},r)},we=(e,t)=>{e[t]=D(class{constructor(e){this.ownerNode=e}get cssRules(){const e=this.ownerNode;return new Proxy({},{get(t,r){const n=String(r);return"item"===n?t=>ve(e,t):"length"===n?Se(e).length:isNaN(n)?t[r]:ve(e,n)}})}insertRule(e,t){const r=Se(this.ownerNode);return(t=void 0===t?0:t)>=0&&t<=r.length&&(Z(this.ownerNode,["sheet","insertRule"],[e,t],2),r.splice(t,0,0)),this.ownerNode,f.clear(),t}deleteRule(e){Z(this.ownerNode,["sheet","deleteRule"],[e],2),Se(this.ownerNode).splice(e,1),this.ownerNode,f.clear()}get type(){return"text/css"}},t);const r={sheet:{get(){return new e[t](this)}}};B(e.HTMLStyleElement,r)},Se=(e,t)=>((t=F(e,2))||(t=G(e,["sheet","cssRules"]),_(e,2,t)),t),ve=(e,t,r)=>(0===(r=Se(e))[t]&&(r[t]=G(e,["sheet","cssRules",parseInt(t,10)])),r[t]),be="0.4.5",Ie=(e,t,r,n,i)=>{try{e.l=t,Te(e,r)}catch(e){console.error(r,e),i=String(e.stack||e)}return e.l="",i},Te=(e,t,r)=>{e.M=1,t=`with(this){${(h.i.globalFns||[]).filter((e=>/[a-zA-Z_$][0-9a-zA-Z_$]*/.test(e))).map((e=>`(typeof ${e}==\\\'function\\\'&&(window.${e}=${e}))`)).join(";")+t.replace(/\\\\bthis\\\\b/g,"(thi$(this)?window:this)").replace(/\\\\/\\\\/# so/g,"//Xso")}\\\\n;function thi$(t){return t===this}}`+(r?"\\\\n//# sourceURL="+r:""),e.A||(t=t.replace(/.postMessage\\\\(/g,`.postMessage(\\\'${e.U}\\\',`)),new Function(t).call(e.T),e.M=0},Me=(e,t,r)=>{(r=F(e,t))&&setTimeout((()=>r.map((e=>e({type:t})))))},Ee=(e,t,r,n,i,s)=>{for(n=e.D;!n.host&&(n=(e=m[e.I]).D,e.U!==e.I););return i=new URL(t||"",n),!r&&h.i.resolveUrl&&(s=h.i.resolveUrl(i,n))?s:i},Ne=(e,t,r)=>Ee(e,t,r)+"",Le=()=>`<script src="${v("partytown.js?v="+be)}"><\\\\/script>`,xe=e=>class{constructor(){this.s="",this.l=[],this.e=[]}get src(){return this.s}set src(t){fetch(Ne(e,t,!0),{mode:"no-cors",keepalive:!0}).then((e=>{e.ok||0===e.status?this.l.map((e=>e({type:"load"}))):this.e.map((e=>e({type:"error"})))}),(()=>this.e.forEach((e=>e({type:"error"})))))}addEventListener(e,t){"load"===e&&this.l.push(t),"error"===e&&this.e.push(t)}get onload(){return this.l[0]}set onload(e){this.l=[e]}get onerror(){return this.e[0]}set onerror(e){this.e=[e]}},Ce={addEventListener:{value(...e){const t=e[0],r=F(this,t)||[];r.push(e[1]),_(this,t,r)}},async:{get:C,set:C},defer:{get:C,set:C},onload:{get(){let e=F(this,"load");return e&&e[0]||null},set(e){_(this,"load",e?[e]:null)}},onerror:{get(){let e=F(this,"error");return e&&e[0]||null},set(e){_(this,"error",e?[e]:null)}},getAttribute:{value(e){return"src"===e?this.src:Z(this,["getAttribute"],[e])}},setAttribute:{value(e,t){Re.includes(e)?this[e]=t:Z(this,["setAttribute"],[e,t])}}},Re=S("src,type"),Ae=(e,t)=>{const r={innerHTML:Pe,innerText:Pe,src:{get(){return F(this,4)||""},set(e){const r=Ne(t,e,!0);e=Ne(t,e),_(this,4,e),J(this,["src"],e),r!==e&&J(this,["dataset","ptsrc"],r)}},textContent:Pe,type:{get(){return G(this,["type"])},set(e){He(e)||(_(this,5,e),J(this,["type"],e))}},...Ce};B(e,r)},Pe={get(){return F(this,3)||""},set(e){_(this,3,e)}},He=e=>!e||"text/javascript"===e,Oe=(e,i,s)=>{const o=D(class extends s{appendChild(e){return this.insertBefore(e,null)}get href(){}set href(e){}insertBefore(e,s){const o=e[t]=this[t],a=e[r],l=e[n],$="SCRIPT"===l,c="IFRAME"===l;if($){const t=F(e,3),r=F(e,5);if(t){if(He(r)){const r=Ie(i,a,t,0,""),n=r?"pterror":"ptid",s=r||a;J(e,["type"],O+"-x"),J(e,["dataset",n],s)}J(e,["innerHTML"],t)}}return Z(this,["insertBefore"],[e,s],2),c&&((e,t)=>{let r,n,i=0,s=()=>{m[e]&&m[e].x&&!m[e].y?(r=F(t,1)?"error":"load",n=F(t,r),n&&n.map((e=>e({type:r})))):i++>2e3?(n=F(t,"error"),n&&n.map((e=>e({type:"error"})))):setTimeout(s,9)};s()})(a,e),$&&(z(!0),h.J([5,o])),e}get nodeName(){return this[n]}get nodeType(){return 3}get ownerDocument(){return i.n}},"Node");te(o,S("childNodes,firstChild,isConnected,lastChild,nextSibling,parentElement,parentNode,previousSibling")),e.Node=o},We=S("AUDIO,CANVAS,VIDEO"),De=S("Audio,MediaSource"),ke=(e,r,n)=>{B(e,{body:{get:()=>r.e},cookie:{get(){return r.A?G(this,["cookie"]):(V("get","cookie",r),"")},set(e){r.A&&J(this,["cookie"],e)}},createElement:{value(e){if(e=e.toUpperCase(),!x.test(e))throw e+" not valid";const r="IFRAME"===e,n=this[t],i=(r?"f_":"")+H(),s=Q(n,i,e);if(Z(this,["createElement"],[e],2,i),r)ze({U:i,I:n,R:w},!0).T.fetch=fetch,J(s,["srcdoc"],Le());else if("SCRIPT"===e){const e=F(s,5);He(e)&&J(s,["type"],O)}return s}},createElementNS:{value(e,r){const n=H(),i=Q(this[t],n,r,e);return Z(this,["createElementNS"],[e,r],2,n),i}},createTextNode:{value(e){const r=this[t],n=H(),i=Q(r,n,"#text");return Z(this,["createTextNode"],[e],2,n),i}},createEvent:{value:e=>new Event(e)},currentScript:{get(){return r.l?Q(this[t],r.l,"SCRIPT"):null}},defaultView:{get:()=>n?null:r.T},documentElement:{get:()=>r.o},getElementsByTagName:{value(e){return"BODY"===(e=e.toUpperCase())?[r.e]:"HEAD"===e?[r.s]:Z(this,["getElementsByTagName"],[e])}},head:{get:()=>r.s},implementation:{get(){return{hasFeature:()=>!0,createHTMLDocument:e=>{const t=H();return Z(this,["implementation","createHTMLDocument"],[e],1,{U:t}),Xe(t,t,r.D+"","hidden",!0,!0).n}}}},location:{get:()=>r.D,set(e){r.D.href=e+""}},nodeType:{value:9},parentNode:{value:null},parentElement:{value:null},readyState:{value:"complete"},visibilityState:{get:()=>r.S||"visible"}}),ne(e,"compatMode,referrer,forms")},Be=(e,t)=>{B(e,{parentElement:{get(){return this.parentNode}},parentNode:{get:()=>t.o}})},je=(e,t)=>{B(e,{localName:{get(){return this[n].toLowerCase()}},namespaceURI:{get(){return this[i]||"http://www.w3.org/1999/xhtml"}},nodeType:{value:1},tagName:{get(){return this[n]}}}),te(e,I),ne(e,"id"),ie(t),se(t,S("getClientRects,getBoundingClientRect"))},Ue=(e,t)=>{const r={};S("hash,host,hostname,href,origin,pathname,port,protocol,search").map((e=>{r[e]={get(){let r,n=F(this,4);return"string"!=typeof n&&(r=G(this,["href"]),_(this,4,r),n=new URL(r)[e]),Ee(t,n)[e]},set(r){let n=F(this,4),i=Ee(t,n);i[e]=new URL(r+"",i.href),_(this,4,i.href),J(this,["href"],i.href)}}})),B(e,r)},Fe=(e,t)=>{const r={contentDocument:{get(){return _e(this).n}},contentWindow:{get(){return _e(this).T}},src:{get(){let e=_e(this).D.href;return e.startsWith("about:")?"":e},set(e){if(!e.startsWith("about:")){let t,r=new XMLHttpRequest,n=_e(this);n.D.href=e=Ne(n,e),n.y=1,_(this,1,void 0),r.open("GET",e,!1),r.send(),t=r.status,t>199&&t<300?(J(this,["srcdoc"],`<base href="${e}">`+r.responseText.replace(/<script>/g,\\\'<script type="text/partytown">\\\').replace(/<script /g,\\\'<script type="text/partytown" \\\').replace(/text\\\\/javascript/g,O)+Le()),z(!0),h.J([5,n.U])):(_(this,1,t),n.y=0)}}},...Ce};B(e,r)},_e=e=>{const n=e[r];return m[n]||ze({U:n,I:e[t],R:G(e,["src"])||w},!0),m[n]},Ve=e=>{const t=(e,t)=>{const{a:r,b:n,c:i,d:s,e:o,f:a}=Z(e,[t],P);return new DOMMatrixReadOnly([r,n,i,s,o,a])},r={...e,getCTM:{value:function(){return t(this,"getCTM")}},getScreenCTM:{value:function(){return t(this,"getScreenCTM")}}};B(e,r)},Xe=(a,l,$,c,u,f)=>{const y=class{constructor(e,a,l,$,c){this[t]=e,this[r]=a,this[s]=l||[],this[n]=$,this[o]={},c&&(this[i]=c)}},b=new(D(class extends URL{assign(){}reload(){}replace(){}},"Location"))($),T=b.origin===h.H||b.origin===w,M={},E=D(class extends y{constructor(){super(a,a);let n,i,o=this,$=0,d=()=>{$||((h.u||(e.g=[G,J,Z,Y,B,H,t,r,s],h.t(v("partytown-media.js?v="+be)),h.u=e.f,delete e.f),h.u)(y,x,M,o,De),$=1)},m={},w=(e,t,r)=>(We.includes(e)&&d(),new(m[e]?m[e]:e.includes("-")?m.UNKNOWN:m.DIV)(a,t,P,e,r));var N,C;o.Window=E,Oe(o,M,y),ye(o,y,"CSSStyleDeclaration"),((e,t,r)=>{e[r]=D(class extends t{now(){return performance.now()}},r)})(o,y,"Performance"),h.v.map((([e,t,n,i,l])=>{const $=qe[e]?L:"EventTarget"===t?x:"Object"===t?y:o[t],c=o[e]=D(12===i?class extends y{constructor(...t){super(a,H()),Y(this,e,t)}}:o[e]||class extends ${},e);l&&(m[l]=c),n.map((([e,t,n])=>{e in c.prototype||e in $.prototype||("string"==typeof t?k(c,e,{get(){if(!U(this,e)){const n=this[r],i=[...this[s],e],l=o[t];l&&_(this,e,new l(a,n,i))}return F(this,e)},set(t){_(this,e,t)}}):5===t?j(c,e,(function(...t){return Z(this,[e],t)})):t>0&&(void 0!==n?j(c,e,n):k(c,e,{get(){return G(this,[e])},set(t){return J(this,[e],t)}})))}))})),S("atob,btoa,crypto,indexedDB,setTimeout,setInterval,clearTimeout,clearInterval").map((t=>{delete E.prototype[t],t in o||(n=e[t],null!=n&&(o[t]="function"!=typeof n||n.toString().startsWith("class")?n:n.bind(e)))})),Object.getOwnPropertyNames(e).map((t=>{t in o||(o[t]=e[t])})),De.map((e=>W(o,e,{get:()=>(d(),o[e])}))),"trustedTypes"in e&&(o.trustedTypes=e.trustedTypes),je(o.Element,o.HTMLElement),ke(o.Document,M,f),N=o.DocumentFragment,ee(N,11),te(N,I),Ue(o.HTMLAnchorElement,M),C=o.HTMLFormElement,B(C,{}),ne(C,"elements"),Fe(o.HTMLIFrameElement),Ae(o.HTMLScriptElement,M),Ve(o.SVGGraphicsElement),Be(o.HTMLHeadElement,M),Be(o.HTMLBodyElement,M),((e,t)=>{B(e,{parentElement:{value:null},parentNode:{get:()=>t.n}})})(o.HTMLHtmlElement,M),we(o,"CSSStyleSheet"),ee(o.Comment,8),ee(o.DocumentType,10),Object.assign(M,{U:a,I:l,T:new Proxy(o,{has:()=>!0}),n:w("#document",a+".d"),o:w("HTML",a+".e"),s:w("HEAD",a+".h"),e:w("BODY",a+".b"),D:b,S:c,A:T,k:w}),o.requestAnimationFrame=e=>setTimeout((()=>e(performance.now())),9),o.cancelAnimationFrame=e=>clearTimeout(e),o.requestIdleCallback=(e,t)=>(t=Date.now(),setTimeout((()=>e({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))})),1)),o.cancelIdleCallback=e=>clearTimeout(e),ge(o,"localStorage",p,T,M),ge(o,"sessionStorage",g,T,M),T||(o.indexeddb=void 0),u&&(i={},o.history={pushState(e){i=e},replaceState(e){i=e},get state(){return i},length:0}),o.Worker=void 0}addEventListener(...e){"load"===e[0]?M.M&&setTimeout((()=>e[1]({type:"load"}))):Z(this,["addEventListener"],e,2)}get body(){return M.e}get document(){return M.n}get documentElement(){return M.o}fetch(e,t){return e="string"==typeof e||e instanceof URL?String(e):e.url,fetch(Ne(M,e),t)}get frameElement(){return a===l?null:Q(l,a,"IFRAME")}get globalThis(){return this}get head(){return M.s}get location(){return b}set location(e){b.href=e+""}get Image(){return xe(M)}get name(){return name+a}get navigator(){return(e=>{let t,r={sendBeacon:(t,r)=>{try{return fetch(Ne(e,t,!0),{method:"POST",body:r,mode:"no-cors",keepalive:!0}),!0}catch(e){return console.error(e),!1}}};for(t in navigator)r[t]=navigator[t];return r})(M)}get origin(){return b.origin}set origin(e){}get parent(){for(let e in m)if(m[e].U===l)return m[e].T;return this}postMessage(...e){m[e[0]]&&(R(d)>50&&d.splice(0,5),d.push({U:e[0],m:JSON.stringify(e[1])}),e=e.slice(1)),Z(this,["postMessage"],e,3)}get self(){return this}get top(){for(let e in m)if(m[e].U===m[e].I)return m[e].T;return this}get window(){return this}get XMLHttpRequest(){const e=XMLHttpRequest,t=String(e),r=D(class extends e{open(...e){e[1]=Ne(M,e[1]),super.open(...e)}set withCredentials(e){}toString(){return t}},A(e));return r.prototype.constructor.toString=()=>t,r}},"Window"),L=class extends y{constructor(e,t,r,n){return super(e,t,r,n),new Proxy(this,{get:(e,t)=>G(e,[t]),set:(e,t,r)=>(J(e,[t],r),!0)})}},x=class extends y{};return N.map((e=>x.prototype[e]=function(...t){return Z(this,[e],t,2)})),ne(E,"devicePixelRatio"),ie(E),se(E,["getComputedStyle"]),new E,M},qe={DOMStringMap:1,NamedNodeMap:1},ze=({U:e,I:t,R:r,S:n},i)=>(m[e]||(m[e]=Xe(e,t,r,n,i)),h.J([5,e]),m[e]),Ge=[],Je=t=>{const r=t.data,n=r[0],i=r[1];h.x?5===n?(async e=>{let t,r=e.U,n=e.w,i=Q(r,n,"SCRIPT"),s=e.j,o=e.R,a=e.G,l="",$=m[r];if(o)try{o=Ee($,o)+"",_(i,4,o),t=await fetch(o),t.ok?(s=await t.text(),$.l=n,Te($,s,a||o),Me(i,"load")):(l=t.statusText,Me(i,"error"))}catch(e){console.error(e),l=String(e.stack||e),Me(i,"error")}else s&&(l=Ie($,n,s,0,l));$.l="",h.J([4,r,n,l])})(i):7===n?(({U:e,w:t,K:r,Q:n,b:i})=>{if(c[r])try{c[r].apply(ce(e,t,[],n),ce(e,t,[],i))}catch(e){console.error(e)}})(i):8===n?(({U:e,q:t,b:r})=>{try{let n=m[e].T,i=0,s=R(t);for(;i<s;i++)i+1<s?n=n[t[i]]:n[t[i]].apply(n,ce(null,e,[],r))}catch(e){console.error(e)}})(i):3===n?ze(i):6===n?(m[i].x=1,m[i].y=0):12===n?m[i].S=r[2]:11===n&&(m[i].D.href=r[2]):1===n?((t=>{const r=h.i=JSON.parse(t.i),n=t.H;h.t=importScripts.bind(e),h.v=t.v,h.B=t.B,h.H=n,h.J=postMessage.bind(e),h.O=t.O,p.set(n,t.C),g.set(n,t.N),e.importScripts=void 0,delete e.postMessage,delete e.WorkerGlobalScope,S("resolveUrl,get,set,apply").map((e=>{r[e]&&(r[e]=new Function("return "+r[e])())})),h.x=1})(i),h.J([2]),[...Ge].map(Je),Ge.length=0):Ge.push(t)};e.onmessage=Je,postMessage([0])})(self);\\n\'],{type:"text/javascript"})),{name:"Partytown 🎉"}),J.onmessage=t=>{const r=t.data;10===r[0]?R(J,r[1]):e(J,r)},$.addEventListener("pt1",(e=>O(J,g(e.detail.frameElement),e.detail))))}))})(window);\n<\/script></head></html>')):s.endsWith("proxytown")&&n.respondWith((n=>new Promise((async i=>{const s=await n.clone().json(),o=await(r=>new Promise((async n=>{const i=[...await self.clients.matchAll()].sort(((e,t)=>e.url>t.url?-1:e.url<t.url?1:0))[0];if(i){const s=[n,setTimeout((()=>{e.delete(r.E),n(t(r,"Timeout"))}),1e4)];e.set(r.E,s),i.postMessage(r)}else n(t(r,"NoParty"))})))(s);i(r(JSON.stringify(o),"application/json"))})))(i))};
@@ -0,0 +1,2 @@
1
+ /* Partytown 0.4.5 - MIT builder.io */
2
+ !function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener("pt0",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.4.5":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement("script")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(".").map((function(e,n,i){p=p[i[n]]=n+1<i.length?"push"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),"complete"==e.readyState?u():(t.addEventListener("DOMContentLoaded",u),t.addEventListener("load",u))}(window,document,navigator,top,window.crossOriginIsolated);