lwc 2.26.0 → 2.26.2

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 (35) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +14 -9
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +14 -9
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +12 -7
  5. package/dist/engine-dom/iife/es5/engine-dom.js +14 -9
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +12 -7
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +14 -9
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +12 -7
  11. package/dist/engine-dom/umd/es5/engine-dom.js +14 -9
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +12 -7
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +12 -7
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +12 -7
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
  20. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
  22. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
  23. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
  24. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
  25. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
  26. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  27. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  28. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  29. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  30. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  31. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  34. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  35. package/package.json +8 -8
@@ -299,9 +299,9 @@ function htmlPropertyToAttribute(propName) {
299
299
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
300
300
  */
301
301
  // Increment whenever the LWC template compiler changes
302
- const LWC_VERSION = "2.26.0";
302
+ const LWC_VERSION = "2.26.2";
303
303
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
304
- /** version: 2.26.0 */
304
+ /** version: 2.26.2 */
305
305
 
306
306
  /**
307
307
  * Copyright (C) 2018 salesforce.com, inc.
@@ -383,7 +383,7 @@ for (let i = 0, len = ElementPrototypeAriaPropertyNames.length; i < len; i += 1)
383
383
  patch$1(propName);
384
384
  }
385
385
  }
386
- /** version: 2.26.0 */
386
+ /** version: 2.26.2 */
387
387
 
388
388
  /**
389
389
  * Copyright (C) 2018 salesforce.com, inc.
@@ -463,7 +463,7 @@ function setFeatureFlagForTest(name, value) {
463
463
  setFeatureFlag(name, value);
464
464
  }
465
465
  }
466
- /** version: 2.26.0 */
466
+ /** version: 2.26.2 */
467
467
 
468
468
  /*
469
469
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4210,9 +4210,14 @@ function mountCustomElement(vnode, parent, anchor, renderer) {
4210
4210
  if (lwcRuntimeFlags.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE) {
4211
4211
  disconnectRootElement(elm);
4212
4212
  }
4213
- };
4213
+ }; // Should never get a tag with upper case letter at this point; the compiler
4214
+ // should produce only tags with lowercase letters. However, the Java
4215
+ // compiler may generate tagnames with uppercase letters so - for backwards
4216
+ // compatibility, we lower case the tagname here.
4217
+
4214
4218
 
4215
- const elm = createCustomElement(sel, upgradeCallback, connectedCallback, disconnectedCallback);
4219
+ const normalizedTagname = sel.toLowerCase();
4220
+ const elm = createCustomElement(normalizedTagname, upgradeCallback, connectedCallback, disconnectedCallback);
4216
4221
  vnode.elm = elm;
4217
4222
  vnode.vm = vm;
4218
4223
  linkNodeToShadow(elm, owner, renderer);
@@ -7251,7 +7256,7 @@ function getComponentConstructor(elm) {
7251
7256
  }
7252
7257
  return ctor;
7253
7258
  }
7254
- /* version: 2.26.0 */
7259
+ /* version: 2.26.2 */
7255
7260
 
7256
7261
  /*
7257
7262
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8075,7 +8080,7 @@ function rendererFactory(baseRenderer) {
8075
8080
  function isNull(obj) {
8076
8081
  return obj === null;
8077
8082
  }
8078
- /** version: 2.26.0 */
8083
+ /** version: 2.26.2 */
8079
8084
 
8080
8085
  /*
8081
8086
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8654,6 +8659,6 @@ defineProperty(LightningElement, 'CustomElementConstructor', {
8654
8659
  });
8655
8660
  freeze(LightningElement);
8656
8661
  seal(LightningElement.prototype);
8657
- /* version: 2.26.0 */
8662
+ /* version: 2.26.2 */
8658
8663
 
8659
8664
  export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, deprecatedBuildCustomElementConstructor as buildCustomElementConstructor, createContextProvider, createElement, freezeTemplate, getComponentConstructor, getComponentDef, hydrateComponent, isComponentConstructor, isNodeShadowed as isNodeFromTemplate, parseFragment, parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, renderer, rendererFactory, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
@@ -302,9 +302,9 @@ var LWC = (function (exports) {
302
302
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
303
303
  */
304
304
  // Increment whenever the LWC template compiler changes
305
- const LWC_VERSION = "2.26.0";
305
+ const LWC_VERSION = "2.26.2";
306
306
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
307
- /** version: 2.26.0 */
307
+ /** version: 2.26.2 */
308
308
 
309
309
  /**
310
310
  * Copyright (C) 2018 salesforce.com, inc.
@@ -386,7 +386,7 @@ var LWC = (function (exports) {
386
386
  patch$1(propName);
387
387
  }
388
388
  }
389
- /** version: 2.26.0 */
389
+ /** version: 2.26.2 */
390
390
 
391
391
  /**
392
392
  * Copyright (C) 2018 salesforce.com, inc.
@@ -466,7 +466,7 @@ var LWC = (function (exports) {
466
466
  setFeatureFlag(name, value);
467
467
  }
468
468
  }
469
- /** version: 2.26.0 */
469
+ /** version: 2.26.2 */
470
470
 
471
471
  /*
472
472
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4213,9 +4213,14 @@ var LWC = (function (exports) {
4213
4213
  if (lwcRuntimeFlags.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE) {
4214
4214
  disconnectRootElement(elm);
4215
4215
  }
4216
- };
4216
+ }; // Should never get a tag with upper case letter at this point; the compiler
4217
+ // should produce only tags with lowercase letters. However, the Java
4218
+ // compiler may generate tagnames with uppercase letters so - for backwards
4219
+ // compatibility, we lower case the tagname here.
4220
+
4217
4221
 
4218
- const elm = createCustomElement(sel, upgradeCallback, connectedCallback, disconnectedCallback);
4222
+ const normalizedTagname = sel.toLowerCase();
4223
+ const elm = createCustomElement(normalizedTagname, upgradeCallback, connectedCallback, disconnectedCallback);
4219
4224
  vnode.elm = elm;
4220
4225
  vnode.vm = vm;
4221
4226
  linkNodeToShadow(elm, owner, renderer);
@@ -7254,7 +7259,7 @@ var LWC = (function (exports) {
7254
7259
  }
7255
7260
  return ctor;
7256
7261
  }
7257
- /* version: 2.26.0 */
7262
+ /* version: 2.26.2 */
7258
7263
 
7259
7264
  /*
7260
7265
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8078,7 +8083,7 @@ var LWC = (function (exports) {
8078
8083
  function isNull(obj) {
8079
8084
  return obj === null;
8080
8085
  }
8081
- /** version: 2.26.0 */
8086
+ /** version: 2.26.2 */
8082
8087
 
8083
8088
  /*
8084
8089
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8657,7 +8662,7 @@ var LWC = (function (exports) {
8657
8662
  });
8658
8663
  freeze(LightningElement);
8659
8664
  seal(LightningElement.prototype);
8660
- /* version: 2.26.0 */
8665
+ /* version: 2.26.2 */
8661
8666
 
8662
8667
  exports.LightningElement = LightningElement;
8663
8668
  exports.__unstable__ProfilerControl = profilerControl;
@@ -1 +1 @@
1
- var LWC=function(e){"use strict";var t=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:n,create:r,defineProperties:o,defineProperty:i,freeze:s,getOwnPropertyDescriptor:l,getOwnPropertyNames:c,getPrototypeOf:a,hasOwnProperty:u,isFrozen:d,keys:f,seal:h,setPrototypeOf:p}=Object,{isArray:m}=Array,{copyWithin:g,fill:w,filter:b,find:y,indexOf:v,join:E,map:C,pop:M,push:S,reduce:T,reverse:k,shift:A,slice:N,sort:L,splice:_,unshift:O,forEach:x}=Array.prototype,{fromCharCode:P}=String,{charCodeAt:$,replace:D,slice:R,toLowerCase:I}=String.prototype;function F(e){return void 0===e}function H(e){return null===e}function B(e){return!0===e}function V(e){return!1===e}function W(e){return"function"==typeof e}function j(e){return"object"==typeof e}function U(e){return"string"==typeof e}function G(){}const z={}.toString;function K(e){return e&&e.toString?m(e)?E.call(C.call(e,K),","):e.toString():"object"==typeof e?z.call(e):e+""}function Y(e,t){do{const n=l(e,t);if(!F(n))return n;e=a(e)}while(null!==e)}const q=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:X,AriaPropNameToAttrNameMap:J}=(()=>{const e=r(null),t=r(null);return x.call(q,(n=>{const r=I.call(D.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),Q=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),Z="http://www.w3.org/2000/svg",ee=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),te=new Map;function ne(e){const t=J[e];if(!F(t))return t;const n=ee.get(e);if(!F(n))return n;const r=te.get(e);if(!F(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=$.call(e,t);o+=n>=65&&n<=90?"-"+P(n+32):P(n)}return te.set(e,o),o}function re(e){return void 0===l(Element.prototype,e)}const oe=new WeakMap;function ie(e){let t=oe.get(e);return void 0===t&&(t={},oe.set(e,t)),t}function se(e,t){return{get(){const n=ie(this);return u.call(n,e)?n[e]:this.hasAttribute(t)?this.getAttribute(t):null},set(n){const r=null==(o=n)?null:String(o);var o;ie(this)[e]=r,null===n?this.removeAttribute(t):this.setAttribute(t,n)},configurable:!0,enumerable:!0}}function le(e){const t=se(e,J[e]);Object.defineProperty(Element.prototype,e,t)}const ce=f(J);for(let e=0,t=ce.length;e<t;e+=1){const t=ce[e];re(t)&&le(t)}const ae={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null,ENABLE_LIGHT_GET_ROOT_NODE_PATCH:null,DISABLE_LIGHT_DOM_UNSCOPED_CSS:null,ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY:null};Q.lwcRuntimeFlags||Object.defineProperty(Q,"lwcRuntimeFlags",{value:r(null)});const ue=Q.lwcRuntimeFlags;let de=[];const fe=h(r(null)),he=h([]);function pe(){const e=de;de=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function me(e){0===de.length&&Promise.resolve().then(pe),S.call(de,e)}const ge=/;(?![^(]*\))/g,we=/:(.+)/;function be(e,t){const n={};for(const r of Object.keys(e))r!==t&&(n[r]=e[r]);return n}function ye(e,t,n){const r=e.refVNodes;(!(t in r)||r[t].key<n.key)&&(r[t]=n)}const ve=new WeakMap;let Ee=null;function Ce(e,t){const n=ve.get(e);if(!F(n)){const e=n[t];if(!F(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Me(e,t){if(null===Ee)return;const n=Ee,o=function(e){let t=ve.get(e);if(F(t)){const n=r(null);t=n,ve.set(e,n)}return t}(e);let i=o[t];if(F(i))i=[],o[t]=i;else if(i[0]===n)return;-1===v.call(i,n)&&n.link(i)}class Se{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=Ee;let n;Ee=this;try{e()}catch(e){n=Object(e)}finally{if(Ee=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=v.call(e[n],this);_.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){S.call(e,this),S.call(this.listeners,e)}}function Te(e,t){Ce(e.component,t)}function ke(e,t){Me(e.component,t)}function Ae(e){return new Se(e)}function Ne(e){return`<${I.call(e.tagName)}>`}function Le(e,t){if(!d(t)&&F(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!H(n);)S.call(t,Ne(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function _e(e,t,n){let r=`[LWC ${e}]: ${t}`;F(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!H(e.owner);)S.call(t,n+Ne(e)),e=e.owner,n+="\t";return E.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}function Oe(e,t){_e("error",e,t)}function xe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Pe(e){return W(e)&&u.call(e,"__circular__")}const $e="undefined"!=typeof HTMLElement?HTMLElement:function(){},De=$e.prototype;function Re(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}n(r(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:Re("offsetHeight")},offsetLeft:{readOnly:!0,error:Re("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Re("offsetTop")},offsetWidth:{readOnly:!0,error:Re("offsetWidth")},role:{attribute:"role"}});let Ie,Fe=null;function He(e,t){return e!==Fe||t!==Ie}function Be(e,t){Fe=null,Ie=void 0}function Ve(e,t){Fe=e,Ie=t}const We=r(null);function je(e,t,n){const{cmpFields:r}=e;n!==r[t]&&(r[t]=n,Te(e,t))}x.call(f(J),(e=>{const t=Y(De,e);F(t)||(We[e]=t)})),x.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=Y(De,e);F(t)||(We[e]=t)}));const{isArray:Ue}=Array,{prototype:Ge,getPrototypeOf:ze,create:Ke,defineProperty:Ye,isExtensible:qe,getOwnPropertyDescriptor:Xe,getOwnPropertyNames:Je,getOwnPropertySymbols:Qe,preventExtensions:Ze,hasOwnProperty:et}=Object,{push:tt,concat:nt}=Array.prototype;function rt(e){return void 0===e}function ot(e){return"function"==typeof e}const it=new WeakMap;function st(e,t){it.set(e,t)}const lt=e=>it.get(e)||e;class ct{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(et.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.wrapGetter(n)),rt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Xe(n,t);if(!rt(r)){const n=this.wrapDescriptor(r);Ye(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;nt.call(Je(t),Qe(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;rt(n)||et.call(e,n)||Ye(e,n,Ke(null)),Ze(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=rt(n)||et.call(t,n)?[]:[n];return tt.apply(r,Je(t)),tt.apply(r,Qe(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!qe(e)&&(!!qe(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return ze(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Xe(n,t);if(rt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Ye(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const at=new WeakMap,ut=new WeakMap,dt=new WeakMap,ft=new WeakMap;class ht extends ct{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=at.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return at.set(e,r),dt.set(r,e),r}wrapSetter(e){const t=ut.get(e);if(!rt(t))return t;const n=function(t){e.call(lt(this),lt(t))};return ut.set(e,n),ft.set(n,e),n}unwrapDescriptor(e){if(et.call(e,"value"))e.value=lt(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.unwrapGetter(n)),rt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=dt.get(e);if(!rt(t))return t;const n=this,r=function(){return lt(e.call(n.wrapValue(this)))};return at.set(r,e),dt.set(e,r),r}unwrapSetter(e){const t=ft.get(e);if(!rt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return ut.set(r,e),ft.set(e,r),r}set(e,t,n){const{originalTarget:r,membrane:{valueMutated:o}}=this;return r[t]!==n?(r[t]=n,o(r,t)):"length"===t&&Ue(r)&&o(r,t),!0}deleteProperty(e,t){const{originalTarget:n,membrane:{valueMutated:r}}=this;return delete n[t],r(n,t),!0}setPrototypeOf(e,t){}preventExtensions(e){if(qe(e)){const{originalTarget:t}=this;if(Ze(t),qe(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!et.call(r,t)||(Ye(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const pt=new WeakMap,mt=new WeakMap;class gt extends ct{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=pt.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return pt.set(e,r),r}wrapSetter(e){const t=mt.get(e);if(!rt(t))return t;const n=function(e){};return mt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function wt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Ue(e))return!0;const t=ze(e);return t===Ge||null===t||null===ze(t)}const bt=(e,t)=>{},yt=(e,t)=>{};function vt(e){return Ue(e)?[]:{}}const Et=Symbol.for("@@lockerLiveValue"),Ct=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=ot(t)?t:yt,this.valueObserved=ot(n)?n:bt,this.valueIsObservable=ot(r)?r:wt,this.tagPropertyKey=o}getProxy(e){const t=lt(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=lt(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return lt(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(rt(t)){const n=new ht(this,e);t=new Proxy(vt(e),n),st(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(rt(t)){const n=new gt(this,e);t=new Proxy(vt(e),n),st(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Me,valueMutated:Ce,tagPropertyKey:Et});function Mt(e){return Ct.getReadOnlyProxy(e)}function St(e){return Ct.getProxy(e)}function Tt(e){e[Et]=void 0}function kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!W(n))throw new TypeError;if(!W(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=_r(this);if(!lr(t))return ke(t,e),n.call(t.elm)},set(t){const n=_r(this);return je(n,e,t),r.call(n.elm,t)}}}const At=s(r(null)),Nt=new WeakMap,Lt=function(){if(H(sr))throw new TypeError("Illegal constructor");const e=sr,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return Tt(this),Lr(o,e),Lr(n,e),1===e.renderMode?e.renderRoot=_t(e):e.renderRoot=n,this};function _t(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,Lr(s,e),s}Lt.prototype={constructor:Lt,dispatchEvent(e){const t=_r(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=_r(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,mr(r,t),n)},removeEventListener(e,t,n){const r=_r(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,mr(r,t),n)},hasAttribute(e){const t=_r(this),{elm:n,renderer:{getAttribute:r}}=t;return!H(r(n,e))},hasAttributeNS(e,t){const n=_r(this),{elm:r,renderer:{getAttribute:o}}=n;return!H(o(r,t,e))},removeAttribute(e){const t=_r(this),{elm:n,renderer:{removeAttribute:r}}=t;Ve(n,e),r(n,e),Be()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=_r(this);Ve(n,t),r(n,t,e),Be()},getAttribute(e){const t=_r(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=_r(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=_r(this),{elm:r,renderer:{setAttribute:o}}=n;Ve(r,e),o(r,e,t),Be()},setAttributeNS(e,t,n){const r=_r(this),{elm:o,renderer:{setAttribute:i}}=r;Ve(o,t),i(o,t,n,e),Be()},getBoundingClientRect(){const e=_r(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=_r(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=_r(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return _r(this).shadowRoot},get refs(){const e=_r(this);if(Jn)return;const{refVNodes:t,hasRefVNodes:n,cmpTemplate:o}=e;if(!n)return;if(H(t))return At;let i=Nt.get(t);if(F(i)){i=r(null);for(const e of f(t))i[e]=t[e].elm;s(i),Nt.set(t,i)}return i},set refs(e){i(this,"refs",{configurable:!0,enumerable:!0,writable:!0,value:e})},get shadowRoot(){return null},get children(){const e=_r(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=_r(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=_r(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=_r(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=_r(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=_r(this);return e.renderer.getLastElementChild(e.elm)},render(){return _r(this).def.template},toString(){return`[object ${_r(this).def.name}]`}};const Ot=r(null),xt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of xt)Ot[e]={value(t){const n=_r(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};o(Lt.prototype,Ot);const Pt=r(null);for(const e in We)Pt[e]=kt(e,We[e]);function $t(e){return{get(){const t=_r(this);return ke(t,e),t.cmpFields[e]},set(t){je(_r(this),e,t)},enumerable:!0,configurable:!0}}o(Lt.prototype,Pt),i(Lt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class Dt extends Se{constructor(e,t){super((()=>{V(this.debouncing)&&(this.debouncing=!0,me((()=>{if(B(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,B(e.isDirty)&&V(r)&&i>0&&Sr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function Rt(e){return{get(){const t=_r(this);if(!lr(t))return ke(t,e),t.cmpProps[e]},set(t){const n=_r(this);n.cmpProps[e]=t,Te(n,e)},enumerable:!0,configurable:!0}}function It(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!W(n))throw new Error;return{get(){return n.call(this)},set(t){const n=_r(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];F(o)&&(o=n.oar[e]=function(e,t){return new Dt(e,t)}(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function Ft(e){return{get(){const t=_r(this);return ke(t,e),t.cmpFields[e]},set(t){const n=_r(this),r=St(t);je(n,e,r)},enumerable:!0,configurable:!0}}function Ht(e){return{get(){const t=_r(this);return ke(t,e),t.cmpFields[e]},set(t){je(_r(this),e,t)},enumerable:!0,configurable:!0}}const Bt=new Map;const Vt={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Wt=new Set;function jt(){return[]}Wt.add(jt);const Ut=r(null),Gt=r(null);function zt(e){let t=Ut[e];return F(t)&&(t=Ut[e]=function(){const t=_r(this),{getHook:n}=t;return n(t.component,e)}),t}function Kt(e){let t=Gt[e];return F(t)&&(t=Gt[e]=function(t){const n=_r(this),{setHook:r}=n;t=Mt(t),r(n.component,e,t)}),t}function Yt(e){return function(){const t=_r(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,N.call(arguments))}}function qt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];F(i)?F(t)||t.apply(this,arguments):He(this,n)&&(this[i]=o)}}function Xt(e,t,n){let s;W(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),i(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=r(null),{attributeChangedCallback:c}=e.prototype,{observedAttributes:a=[]}=e,u=r(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];l[ne(n)]=n,u[n]={get:zt(n),set:Kt(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:Yt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:qt(l,c)},i(s,"observedAttributes",{get:()=>[...a,...f(l)]}),o(s.prototype,u),s}const Jt=Xt($e,c(We),[]);s(Jt),h(Jt.prototype);const Qt=new WeakMap;function Zt(e){const{shadowSupportMode:t,renderMode:i}=e,s=function(e){const t=Bt.get(e);return F(t)?Vt:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:d,wiredMethods:h,observedFields:p}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:b,errorCallback:y,render:v}=m;const E=function(e){let t=a(e);if(H(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Pe(t)){const e=xe(t);t=e===t?Lt:e}return t}(e),C=E!==Lt?tn(E):nn,M=Xt(C.bridge,f(l),f(u)),S=n(r(null),C.props,l),T=n(r(null),C.propsConfig,c),k=n(r(null),C.methods,u),A=n(r(null),C.wire,d,h);g=g||C.connectedCallback,w=w||C.disconnectedCallback,b=b||C.renderedCallback,y=y||C.errorCallback,v=v||C.render;let N=C.shadowSupportMode;F(t)||(N=t);let L=C.renderMode;F(i)||(L="light"===i?0:1);const _=function(e){return ur.get(e)}(e)||C.template,O=e.name||C.name;o(m,p);return{ctor:e,name:O,wire:A,props:S,propsConfig:T,methods:k,bridge:M,template:_,renderMode:L,shadowSupportMode:N,connectedCallback:g,disconnectedCallback:w,renderedCallback:b,errorCallback:y,render:v}}function en(e){if(!W(e))return!1;if(e.prototype instanceof Lt)return!0;let t=e;do{if(Pe(t)){const e=xe(t);if(e===t)return!0;t=e}if(t===Lt)return!0}while(!H(t)&&(t=a(t)));return!1}function tn(e){let t=Qt.get(e);if(F(t)){if(Pe(e)){return t=tn(xe(e)),Qt.set(e,t),t}if(!en(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=Zt(e),Qt.set(e,t)}return t}const nn={ctor:Lt,name:Lt.name,props:Pt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:Jt,template:jt,render:Lt.prototype.render};function rn(e){return`${e}-host`}function on(e){return jn.h("style",{key:"style",attrs:{type:"text/css"}},[jn.t(e)])}function sn(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(m(s))S.apply(r,sn(s,t,n));else{const e=s.$scoped$;if(ue.DISABLE_LIGHT_DOM_UNSCOPED_CSS&&!e&&0===n.renderMode){Oe("Unscoped CSS is not supported in Light DOM. Please use scoped CSS (*.scoped.css) instead of unscoped CSS (*.css).");continue}const i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(F(o)&&(o=cn(n)),c=H(o)||0===o.shadowMode),S.call(r,s(i,l,c))}}return r}function ln(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return F(n)||0===n.length||(o=sn(n,r,e)),o}function cn(e){let t=e;for(;!H(t);){if(1===t.renderMode)return t;t=t.owner}return t}function an(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}function un(e,t){const{renderMode:n,shadowMode:r,renderer:{insertStylesheet:o}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)o(t[e]);else{if(e.hydrated)return C.call(t,on);{const n=function(e){const t=cn(e);return H(t)||1!==t.shadowMode?t:null}(e),r=H(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)o(t[e],r)}}return null}function dn(e){const{type:t}=e;return 2===t||3===t}function fn(e,t){return e.key===t.key&&e.sel===t.sel}function hn(e,t){return"input"===e&&("value"===t||"checked"===t)}function pn(e,t,r){let{props:o}=t.data;const{spread:i}=t.data;if(F(o)&&F(i))return;let s;if(!H(e)){s=e.data.props;const t=e.data.spread;if(s===o&&t===i)return;F(s)&&(s=fe),F(t)||(s=n({},s,t))}F(i)||(o=n({},o,i));const l=H(e),{elm:c,sel:a}=t,{getProperty:u,setProperty:d}=r;for(const e in o){const t=o[e];!l&&t===(hn(a,e)?u(c,e):s[e])&&e in s||d(c,e,t)}}const mn=r(null);function gn(e){if(null==e)return fe;e=U(e)?e:e+"";let t=mn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===$.call(e,n)&&(n>o&&(t[R.call(e,o,n)]=!0),o=n+1);return n>o&&(t[R.call(e,o,n)]=!0),mn[e]=t,t}function wn(e,t){const{elm:n,data:{on:r}}=e;if(F(r))return;const{addEventListener:o}=t;for(const e in r){o(n,e,r[e])}}function bn(e,t,n,r){var o;o=t,Pn.has(o)?Dn(e,t,n,r):Rn(e,t,n,r)}function yn(e,t,n,r){var o,i;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&An(t,n)}(e,t,r);break;case 4:t.elm=e.elm;break;case 5:!function(e,t,n,r){const{children:o,stable:i}=t;i?Rn(e.children,o,n,r):Dn(e.children,o,n,r);t.elm=o[o.length-1].elm}(e,t,n,r);break;case 2:!function(e,t,n){const r=t.elm=e.elm;_n(e,t,n),bn(e.children,t.children,r,n)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:r);break;case 3:!function(e,t,n,r){if(e.ctor!==t.ctor){const o=r.nextSibling(e.elm);Mn(e,n,r,!0),En(t,n,o,r)}else{const n=t.elm=e.elm,o=t.vm=e.vm;_n(e,t,r),F(o)||xn(t,o),bn(e.children,t.children,n,r),F(o)||Sr(o)}}(e,t,n,null!==(i=t.data.renderer)&&void 0!==i?i:r)}}function vn(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);kn(s,o,r),Nn(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);kn(s,o,r),Nn(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);kn(l,o,r);const{renderMode:c,shadowMode:a}=o;s&&(1!==a&&0!==c||(l.$shadowStaticNode$=!0));Nn(l,t,n,r)}(e,t,r,n);break;case 5:!function(e,t,n,r){const{children:o}=e;Cn(o,t,r,n),e.elm=o[o.length-1].elm}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,c=B(s)?Z:void 0,a=e.elm=l(o,c);kn(a,i,r),On(a,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(a,e),_n(null,e,r),Nn(a,t,n,r),Cn(e.children,a,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:En(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function En(e,t,n,r){const{sel:o,owner:i}=e,{createCustomElement:s}=r;let l;const c=s(o,(t=>{l=function(e,t,n){let r=Or(e);if(!F(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Nr(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&Tr(e)}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&kr(e)}));e.elm=c,e.vm=l,kn(c,i,r),On(c,i,r),l&&xn(e,l),_n(null,e,r),Nn(c,t,n,r),l&&(ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||Rr(l)),Cn(e.children,c,r,null),l&&function(e){xr(e)}(l)}function Cn(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];Tn(i)&&vn(i,t,n,r)}}function Mn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&(5===o?Sn(e.children,t,n,r):Ln(i,t,n)),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;Sn(e.children,i,n,t);break}case 3:{const{vm:t}=e;F(t)||function(e){Ar(e)}(t)}}}function Sn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];Tn(i)&&Mn(i,t,n,r)}}function Tn(e){return null!=e}function kn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function An(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function Nn(e,t,n,r){r.insert(e,t,n)}function Ln(e,t,n){n.remove(e,t)}function _n(e,t,n){H(e)&&(wn(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(F(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(F(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=H(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),c=gn(o),a=gn(i);let u;for(u in a)F(c[u])&&l.remove(u);for(u in c)F(a[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((H(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;U(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(F(r))return;const o=H(e)?fe:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Ve(i,e),58===$.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===$.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):H(t)||F(t)?l(i,e):s(i,e,t),Be())}}(e,t,n),pn(e,t,n)}function On(e,t,n){const r=an(t);if(!H(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||F(o)||(e.$shadowToken$=o)}function xn(e,t){const n=e.aChildren||e.children;t.aChildren=n;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var n;const{cmpSlots:o}=e,i=e.cmpSlots=r(null);for(let e=0,r=t.length;e<r;e+=1){const r=t[e];if(H(r))continue;let o="";dn(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const s=i[o]=i[o]||[];S.call(s,r)}if(V(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void hr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(F(i[r])||o[r].length!==i[r].length)return void hr(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void hr(e)}}}(t,n),e.aChildren=n,e.children=he)}const Pn=new WeakMap;function $n(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(Tn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function Dn(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],c=e[s];const a=t.length-1;let u,d,f,h,p=a,m=t[0],g=t[p],w=!1;for(;o<=s&&i<=p;)Tn(l)?Tn(c)?Tn(m)?Tn(g)?fn(l,m)?(yn(l,m,n,r),l=e[++o],m=t[++i]):fn(c,g)?(yn(c,g,n,r),c=e[--s],g=t[--p]):fn(l,g)?(yn(l,g,n,r),Nn(l.elm,n,r.nextSibling(c.elm),r),l=e[++o],g=t[--p]):fn(c,m)?(yn(c,m,n,r),Nn(m.elm,n,l.elm,r),c=e[--s],m=t[++i]):(void 0===u&&(u=$n(e,o,s)),d=u[m.key],F(d)?(vn(m,n,r,l.elm),m=t[++i]):(f=e[d],Tn(f)&&(f.sel!==m.sel?vn(m,n,r,l.elm):(yn(f,m,n,r),w||(w=!0,e=[...e]),e[d]=void 0,Nn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--p]:m=t[++i]:c=e[--s]:l=e[++o];if(o<=s||i<=p)if(o>s){let e,o=p;do{e=t[++o]}while(!Tn(e)&&o<a);h=Tn(e)?e.elm:null,Cn(t,n,r,h,i,p+1)}else Sn(e,n,r,!0,o,s+1)}function Rn(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void Cn(t,n,r,null);if(0===i)return void Sn(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(Tn(i)?Tn(l)?(yn(i,l,n,r),s=l.elm):Mn(i,n,r,!0):Tn(l)&&(vn(l,n,r,s),s=l.elm))}}const In=Symbol.iterator;function Fn(e,t,n=he){const r=Zn(),{key:o,ref:i}=t,s={type:2,sel:e,data:t,children:n,elm:void 0,key:o,owner:r};return F(i)||ye(r,i,s),s}function Hn(e,t,n,r=he){const o=Zn(),{key:i,ref:s}=n;const l={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){S.call(Zn().velements,e)}(l),F(s)||ye(o,s,l),l}function Bn(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:Zn()}}function Vn(e){var t;return t=e,Pn.set(t,1),e}let Wn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const jn=s({s:function(e,t,n,r){F(r)||F(r[e])||0===r[e].length||(n=r[e]);const o=Zn(),{renderMode:i,shadowMode:s}=o;return 0===i?(Vn(n),n):(1===s&&Vn(n),Fn("slot",t,n))},h:Fn,c:Hn,i:function(e,t){const n=[];if(Vn(n),F(e)||null===e)return n;const r=e[In]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);m(e)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];Vn(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?S.apply(n,t):S.call(n,t)}return n},t:Bn,d:function(e){return null==e?"":String(e)},b:function(e){const t=Zn();if(H(t))throw new Error;const n=t;return function(t){ar(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:"c",owner:Zn()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!en(t))throw new Error(`Invalid LWC Constructor ${K(t)} for custom element <${e}>.`);return Hn(e,t,n,r)},fr:function(e,t,n){return{type:5,sel:void 0,key:e,elm:void 0,children:[Bn(""),...t,Bn("")],stable:n,owner:Zn()}},ti:function(e){return e>0&&!(B(e)||V(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:Zn()}},gid:function(e){const t=Zn();if(F(e)||""===e)return e;if(H(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?D.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=Zn();if(F(e)||""===e)return e;if(H(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return Wn(e)}});let Un=!1,Gn=G;const zn={enableProfiler(){Un=!0},disableProfiler(){Un=!1},attachDispatcher(e){Gn=e,this.enableProfiler()},detachDispatcher(){const e=Gn;return Gn=G,this.disableProfiler(),e}};function Kn(e,t){Un&&Gn(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Yn(e,t){Un&&Gn(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function qn(e,t){Un&&Gn(e,0,null==t?void 0:t.tagName,null==t?void 0:t.idx,null==t?void 0:t.renderMode,null==t?void 0:t.shadowMode)}function Xn(e,t){Un&&Gn(e,1,null==t?void 0:t.tagName,null==t?void 0:t.idx,null==t?void 0:t.renderMode,null==t?void 0:t.shadowMode)}let Jn=!1,Qn=null;function Zn(){return Qn}function er(e){Qn=e}function tr(e){return(t,...n)=>{const o=r(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:l}=Zn(),c=!F(i),a=1===s;let u=0;if(c&&r&&(u|=1),c&&a&&(u|=2),!F(o[u]))return o[u];const d=r&&c?" "+i:"",f=r&&c?` class="${i}"`:"",h=c&&a?" "+i:"";let p="";for(let e=0,r=n.length;e<r;e++)switch(n[e]){case 0:p+=t[e]+d;break;case 1:p+=t[e]+f;break;case 2:p+=t[e]+h;break;case 3:p+=t[e]+f+h}return p+=t[t.length-1],o[u]=e(p,l),o[u]}}}const nr=tr(((e,t)=>{const{createFragment:n}=t;return n(e)})),rr=tr(((e,t)=>{const{createFragment:n,getFirstChild:r}=t;return r(n("<svg>"+e+"</svg>"))}));function or(e,t){const n=Jn,o=Qn;let i=[];return Vr(e,e.owner,(()=>{Qn=e,Kn(1,e)}),(()=>{const{component:n,context:o,cmpSlots:s,cmpTemplate:l,tro:c}=e;c.observe((()=>{if(t!==l){if(H(l)||Br(e),c=t,!Wt.has(c))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${K(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=ir(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:c}}=e,{stylesheets:a,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let h,p,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:b}=r;F(g)||(w&&s(n).remove(rn(g)),b&&l(n,rn(g))),F(a)||0===a.length||(h=u),F(h)||(f&&(s(n).add(rn(h)),p=!0),d&&(c(n,rn(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const n=ln(e,t);o.styleVNodes=0===n.length?null:un(e,n)}var c;const a=Boolean(t.hasRefs);e.hasRefVNodes=a,e.refVNodes=a?r(null):null,e.velements=[],Jn=!0,i=t.call(void 0,jn,n,s,o.tplCache);const{styleVNodes:u}=o;H(u)||O.apply(i,u)}))}),(()=>{Jn=n,Qn=o,Yn(1,e)})),i}function ir(e){const{stylesheets:t}=e;if(!F(t))for(let e=0;e<t.length;e++)if(B(t[e].$scoped$))return!0;return!1}let sr=null;function lr(e){return sr===e}function cr(e,t,n){const{component:r,callHook:o,owner:i}=e;Vr(e,i,G,(()=>{o(r,t,n)}),G)}function ar(e,t,n,r){const{callHook:o,owner:i}=e;Vr(e,i,G,(()=>{o(n,t,[r])}),G)}const ur=new Map;function dr(e){return Ae((()=>{const{isDirty:t}=e;V(t)&&(hr(e),function(e){if(B(e.isScheduled))return;e.isScheduled=!0,0===$r.length&&me(Dr);S.call($r,e)}(e))}))}function fr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Zn();let s,l=!1;return Vr(e,o,(()=>{er(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{er(i)})),l?or(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function hr(e){e.isDirty=!0}const pr=new WeakMap;function mr(e,t){if(!W(t))throw new TypeError;let n=pr.get(t);return F(n)&&(n=function(n){ar(e,t,void 0,n)},pr.set(t,n)),n}const gr=r(null),wr=["rendered","connected","disconnected"];function br(e,t){const{component:n,def:r,context:o}=e;for(let e=0,i=t.length;e<i;++e)t[e].call(void 0,n,{},r,o)}let yr=0;const vr=new WeakMap;function Er(e,t,n=[]){return t.apply(e,n)}function Cr(e,t,n){e[t]=n}function Mr(e,t){return e[t]}function Sr(e){xr(e)}function Tr(e){const t=_r(e);qn(7,t),1===t.state&&kr(e),Rr(t),xr(t),Xn(7,t)}function kr(e){Ar(_r(e))}function Ar(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){V(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=gr;t&&br(e,t);Ir(e)&&function(e){const{wiredDisconnecting:t}=e.context;Vr(e,e,G,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),G)}(e);const{disconnectedCallback:n}=e.def;F(n)||(Kn(5,e),cr(e,n),Yn(5,e))}(e),Fr(e),function(e){const{aChildren:t}=e;Hr(t)}(e)}}function Nr(e,t,n,o){const{mode:i,owner:s,tagName:l,hydrated:c}=o,a=tn(t),u={elm:e,def:a,idx:yr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,refVNodes:null,hasRefVNodes:!1,children:he,aChildren:he,velements:he,cmpProps:r(null),cmpFields:r(null),cmpSlots:r(null),oar:r(null),cmpTemplate:null,hydrated:Boolean(c),renderMode:a.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:he,wiredDisconnecting:he},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Er,setHook:Cr,getHook:Mr,renderer:n};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!H(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=H(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,n),u.tro=dr(u),function(e,t){const n=sr;let r;Kn(0,e),sr=e;try{const o=new t;if(sr.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Yn(0,e),sr=n,!F(r))throw Le(e,r),r}}(u,a.ctor),Ir(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=Wr.get(i);if(!F(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=Ur(e,t,s),c=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function Lr(e,t){vr.set(e,t)}function _r(e){return vr.get(e)}function Or(e){return vr.get(e)}function xr(e){if(B(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&Vr(e,e,(()=>{Kn(2,e)}),(()=>{bn(r,t,n,o)}),(()=>{Yn(2,e)}));1===e.state&&Pr(e)}(e,fr(e))}}function Pr(e){const{def:{renderedCallback:t}}=e,{rendered:n}=gr;n&&br(e,n),F(t)||(Kn(4,e),cr(e,t),Yn(4,e))}let $r=[];function Dr(){qn(8);const e=$r.sort(((e,t)=>e.idx-t.idx));$r=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{xr(r)}catch(r){throw t+1<n&&(0===$r.length&&me(Dr),O.apply($r,N.call(e,t+1))),Xn(8),r}}Xn(8)}function Rr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=gr;n&&br(e,n),Ir(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;F(r)||(Kn(3,e),cr(e,r),Yn(3,e))}function Ir(e){return c(e.def.wire).length>0}function Fr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!F(n)){const e=Or(n);F(e)||Ar(e)}}}function Hr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!H(n)&&!F(n.elm))switch(n.type){case 2:Hr(n.children);break;case 3:Ar(_r(n.elm));break}}}function Br(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];H(o)||F(o.elm)||r(o.elm,n)}e.children=he,Fr(e),e.velements=he}function Vr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!F(i)){Le(e,i);const n=H(t)?void 0:function(e){let t=e;for(;!H(t);){if(!F(t.def.errorCallback))return t;t=t.owner}}(t);if(F(n))throw i;Br(e),Kn(6,e);cr(n,n.def.errorCallback,[i,i.wcStack]),Yn(6,e)}}}const Wr=new Map;class jr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Ur(e,t,n){const{method:r,adapter:o,configCallback:s,dynamic:l}=n,c=F(r)?function(e,t){return n=>{je(e,t,n)}}(e,t):function(e,t){return n=>{Vr(e,e.owner,G,(()=>{t.call(e.component,n)}),G)}}(e,r);let a,u;i(c,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),i(c,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),Vr(e,e,G,(()=>{u=new o(c)}),G);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=Ae((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,s,(t=>{Vr(e,e,G,(()=>{u.update(t,a)}),G)}));return F(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=zr(r);if(F(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:c}}=e;S.call(s,(()=>{const e=new jr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.call(l,e)}});c(i,e)}))}(e,n,(t=>{a!==t&&(a=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const Gr=new Map;function zr(e){return Gr.get(e)}function Kr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Wr.set(e,o)}function Yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Wr.set(e,o)}let qr=!1;function Xr(e){const t=fr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:r}}=e;Zr(r(n),t,n,e),Pr(e)}function Jr(e,t,n){var r,o;let i;switch(t.type){case 0:i=function(e,t,n){var r;if(!no(t,e,3,n))return eo(e,t,n);const{setText:o}=n;return o(e,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 1:i=function(e,t,n){var r;if(!no(t,e,8,n))return eo(e,t,n);const{setProperty:o}=n;return o(e,Qr,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 4:i=function(e,t,n){if(!function(e,t,n,r){const{getProperty:o,getAttribute:i}=r;if(3===o(e,"nodeType"))return!!no(n,t,3,r)&&o(e,Qr)===o(t,Qr);if(8===o(e,"nodeType"))return!!no(n,t,8,r)&&o(e,Qr)===o(t,Qr);if(!no(n,t,1,r))return!1;let s=!0;if(o(e,"tagName")!==o(t,"tagName"))return!1;return o(e,"getAttributeNames").call(e).forEach((r=>{i(e,r)!==i(t,r)&&(Oe(`Mismatch hydrating element <${o(e,"tagName").toLowerCase()}>: attribute "${r}" has different values, expected "${i(e,r)}" but found "${i(t,r)}"`,n.owner),s=!1)})),s}(t.fragment,e,t,n))return eo(e,t,n);return t.elm=e,e}(e,t,n);break;case 5:i=function(e,t,n){const{children:r,owner:o}=t;return Zr(e,r,n.getProperty(e,"parentNode"),o),t.elm=r[r.length-1].elm}(e,t,n);break;case 2:i=function(e,t,n){if(!no(t,e,1,n)||!ro(t,e,n))return eo(e,t,n);t.elm=e;const{owner:r}=t,{context:o}=t.data,i=Boolean(!F(o)&&!F(o.lwc)&&"manual"===o.lwc.dom);if(i){const{data:{props:r}}=t,{getProperty:o}=n;F(r)||F(r.innerHTML)||o(e,"innerHTML")===r.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:be(r,"innerHTML")}))}if(to(t,n),!i){const{getFirstChild:o}=n;Zr(o(e),t.children,e,r)}return e}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:i=function(e,t,n){if(!no(t,e,1,n)||!ro(t,e,n))return eo(e,t,n);const{sel:r,mode:o,ctor:i,owner:s}=t,l=Nr(e,i,n,{mode:o,owner:s,tagName:r,hydrated:!0});if(t.elm=e,t.vm=l,xn(t,l),to(t,n),Rr(l),0!==l.renderMode){const{getFirstChild:r}=n;Zr(r(e),t.children,e,l)}return Xr(l),e}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}return n.nextSibling(i)}const Qr="nodeValue";function Zr(e,t,n,r){let o=e,i=null;const{renderer:s}=r;for(let e=0;e<t.length;e++){const r=t[e];H(r)||(o?(o=Jr(o,r,s),i=r.elm):(qr=!0,vn(r,n,s,i),i=r.elm))}if(o){qr=!0;const{nextSibling:e}=s;do{const t=o;o=e(o),Ln(t,n,s)}while(o)}}function eo(e,t,n){qr=!0;const{getProperty:r}=n,o=r(e,"parentNode");return vn(t,o,n,e),Ln(e,o,n),t.elm}function to(e,t){wn(e,t),pn(null,e,t)}function no(e,t,n,r){const{getProperty:o}=r;return o(t,"nodeType")===n}function ro(e,t,n){const{getProperty:r}=n;if(e.sel.toLowerCase()!==r(t,"tagName").toLowerCase())return!1;const o=function(e,t,n){const{data:{attrs:r={}}}=e;let o=!0;for(const[e,i]of Object.entries(r)){const{getAttribute:r}=n,s=r(t,e);String(i)!==s&&(o=!1)}return o}(e,t,n),i=function(e,t,n){const{data:r,owner:o}=e;let{className:i,classMap:s}=r;const{getProperty:l,getClassList:c}=n,a=an(o),u=function(e){return 3===e.type}(e)?function(e){const{template:t}=tn(e.ctor),{stylesheetToken:n}=t;return!F(n)&&ir(t)?rn(n):null}(e):null;if(!H(a)||!H(u))if(F(i))if(F(s)){const e=[a,u],t=b.call(e,(e=>!H(e)));t.length&&(i=E.call(t," "))}else s=Object.assign(Object.assign(Object.assign({},s),H(a)?{}:{[a]:!0}),H(u)?{}:{[u]:!0});else{const e=[a,i,u],t=b.call(e,(e=>!H(e)));i=E.call(t," ")}let d=!0;if(F(i)||String(i)===l(t,"className")){if(!F(s)){const e=c(t);let n="";for(const t in s)n+=" "+t,e.contains(t)||(d=!1);n.trim(),e.length>f(s).length&&(d=!1)}}else d=!1;return d}(e,t,n),s=function(e,t,n){const{data:{style:r,styleDecls:o}}=e,{getAttribute:i}=n,s=i(t,"style")||"";let l=!0;if(F(r)||r===s){if(!F(o)){const e=function(e){const t={},n=e.split(ge);for(const e of n)if(e){const[n,r]=e.split(we);void 0!==n&&void 0!==r&&(t[n.trim()]=r.trim())}return t}(s),t=[];for(let n=0,r=o.length;n<r;n++){const[r,i,s]=o[n];t.push(`${r}: ${i+(s?" important!":"")}`);const c=e[r];F(c)?l=!1:c.startsWith(i)?s&&!c.endsWith("!important")&&(l=!1):l=!1}f(e).length>o.length&&(l=!1),E.call(t,";")}}else l=!1;return l}(e,t,n);return o&&i&&s}let oo=!1;const io=W(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),so=io&&l(document.adoptedStyleSheets,"length").writable,lo=!F(document.documentMode),co=new Map;function ao(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function uo(e,t,n){const r=function(e,t){const{element:n,usedElement:r}=t;return r?lo?ao(e):n.cloneNode(!0):(t.usedElement=!0,n)}(e,n);t.appendChild(r)}function fo(e,t){let n=co.get(e);return F(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},co.set(e,n)),t&&F(n.stylesheet)?n.stylesheet=function(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}(e):!t&&F(n.element)&&(n.element=ao(e)),n}function ho(e,t){const n=fo(e,io);let{roots:r}=n;if(F(r))r=n.roots=new WeakSet;else if(r.has(t))return;r.add(t),io?function(e,t,n){const{adoptedStyleSheets:r}=t,{stylesheet:o}=n;so?r.push(o):t.adoptedStyleSheets=[...r,o]}(0,t,n):uo(e,t,n)}const po=function(){if("undefined"==typeof customElements)return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(1e6*Math.random()),t),new t,!0}catch(e){return!1}}(),mo=(e,t)=>{const n=document.createElement(e);return t(n),n},go=new Map,wo=new WeakSet;let bo=!1;const yo=(e,t)=>class extends HTMLElement{constructor(e){super(),bo?e(this):wo.add(this)}connectedCallback(){wo.has(this)||e(this)}disconnectedCallback(){wo.has(this)||t(this)}},vo=(e,t,n,r)=>{let o=go.get(e);if(F(o)){if(!F(customElements.get(e)))throw new Error(`Unexpected tag name "${e}". This name is a registered custom element, preventing LWC to upgrade the element.`);o=yo(n,r),customElements.define(e,o),go.set(e,o)}bo=!0;try{return new o(t)}finally{bo=!1}};let Eo,Co;ue.ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY&&po&&(Eo=function(){if(!po)throw new Error("Custom elements are not supported in this environment.");const{HTMLElement:e}=window,{hasAttribute:t,setAttribute:n,removeAttribute:r,getAttribute:i}=e.prototype,s=new WeakMap,l=new WeakMap,c=new WeakMap,a=new WeakSet,u=new Map,d=new Map,f=new Map,h=new Map,m=new Set;function g(t,n){class r extends e{constructor(e){super();const r=!F(e);if(r){if(!E(e))throw new TypeError("Failed to create custom element: the provided constructor is not a constructor.");if(!a.has(e))throw new Error(`Failed to create custom element: the provided constructor is unregistered: ${e.name}.`)}const o=r?C(e):d.get(t);F(o)?l.set(this,n):v(this,n,o)}connectedCallback(){var e;const n=s.get(this);if(F(n)){let e=h.get(t);F(e)&&h.set(t,e=new Set),e.add(this)}else null===(e=n.connectedCallback)||void 0===e||e.call(this)}disconnectedCallback(){var e;const n=s.get(this);if(F(n)){const e=h.get(t);F(e)||e.delete(this)}else null===(e=n.disconnectedCallback)||void 0===e||e.call(this)}adoptedCallback(){var e;const t=s.get(this);null===(e=null==t?void 0:t.adoptedCallback)||void 0===e||e.call(this)}attributeChangedCallback(e,t,r){var o;const i=s.get(this);(n===i||(null==i?void 0:i.observedAttributes.has(e)))&&(null===(o=i.attributeChangedCallback)||void 0===o||o.apply(this,[e,t,r]))}}return r.observedAttributes=[...n.observedAttributes],r}function w(e,t){const{observedAttributes:n,attributeChangedCallback:r}=t;return 0===n.size||F(r)?m:new Set([...t.observedAttributes].filter((t=>!e.observedAttributes.has(t))))}function b(e){setTimeout((()=>{throw e}))}let y;function v(e,l,c){p(e,c.UserCtor.prototype),s.set(e,c),c!==l&&function(e,t,s){const l=w(t,s);if(0===l.size)return;const{attributeChangedCallback:c}=s;o(e,{setAttribute:{value:function(e,t){if(l.has(e)){const r=i.call(this,e);n.call(this,e,t);try{c.call(this,e,r,t+"")}catch(e){b(e)}}else n.call(this,e,t)},writable:!0,enumerable:!0,configurable:!0},removeAttribute:{value:function(e){if(l.has(e)){const t=i.call(this,e);r.call(this,e);try{c.call(this,e,t,null)}catch(e){b(e)}}else r.call(this,e)},writable:!0,enumerable:!0,configurable:!0}})}(e,l,c),y=e,new c.UserCtor,function(e,n,r){const o=w(n,r);if(0===w(n,r).size)return;const{attributeChangedCallback:s}=r;o.forEach((n=>{if(t.call(e,n)){const t=i.call(e,n);s.call(e,n,null,t)}}))}(e,l,c)}function E(e){return W(e)&&j(e.prototype)}function C(e){if(!E(e))throw new TypeError("The referenced constructor is not a constructor.");const t=c.get(e);return F(t)?function(e){var t;const{connectedCallback:n,disconnectedCallback:r,adoptedCallback:o,attributeChangedCallback:i}=e.prototype;return{UserCtor:e,PivotCtor:void 0,connectedCallback:n,disconnectedCallback:r,adoptedCallback:o,attributeChangedCallback:i,observedAttributes:new Set(null!==(t=e.observedAttributes)&&void 0!==t?t:[])}}(e):t}const{customElements:M}=window,{define:S,whenDefined:T,get:k}=M;return CustomElementRegistry.prototype.define=function(e,t,n){if(n&&n.extends)throw new DOMException('NotSupportedError: "extends" key in customElements.define() options is not supported.');if(d.has(e))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${e}" has already been used with this registry`);if(!F(f.get(t)))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const r=C(t);a.add(t);let o=u.get(e);F(o)&&(o=g(e,r),S.call(M,e,o)),c.set(t,r),u.set(e,o),d.set(e,r),f.set(t,r),r.PivotCtor=o;const i=h.get(e);if(!F(i)){h.delete(e);for(const e of i){const t=l.get(e);F(t)||(l.delete(e),v(e,t,r))}}},CustomElementRegistry.prototype.get=function(e){const t=k.call(M,e);if(!F(t)){const n=d.get(e);return F(n)?t:n.UserCtor}},CustomElementRegistry.prototype.whenDefined=function(e){return T.call(M,e).then((t=>{const n=d.get(e);return F(n)?F(t)?k.call(M,e):t:n.UserCtor}))},window.HTMLElement=function(){const e=y;if(!F(e))return y=void 0,e;const{constructor:t}=this,n=f.get(t);if(F(n)||F(n.PivotCtor))throw new TypeError("Illegal constructor");const{PivotCtor:r,UserCtor:o}=n;return new r(o)},HTMLElement.prototype=e.prototype,function(e,t){e=I.call(e);let n=u.get(e);if(F(n)){const r=C(t);n=g(e,r),S.call(M,e,n),r.PivotCtor=n,c.set(t,r),u.set(e,n)}return a.add(t),n}}(),Co=window.HTMLElement);const Mo=(e,t,n,r)=>class extends r{constructor(){super(),e(this)}connectedCallback(){t(this)}disconnectedCallback(){n(this)}};let So;function To(e){const t=function(e){var t=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});function n(e){return void 0===e}e.createFragment=void 0;if("function"==typeof HTMLTemplateElement)e.createFragment=function(e){const t=document.createElement("template");return t.innerHTML=e,t.content.firstChild};else{const t={caption:["table"],col:["colgroup","table"],colgroup:["table"],option:["select"],tbody:["table"],td:["tr","tbody","table"],th:["tr","tbody","table"],thead:["table"],tfoot:["table"],tr:["tbody","table"]},r=function(e){return(/<([a-z][^/\0>\x20\t\r\n\f]+)/i.exec(e)||["",""])[1].toLowerCase()};e.createFragment=function(e){const o=t[r(e)];if(!n(o))for(const t of o)e=`<${t}>${e}</${t}>`;const i=document.implementation.createHTMLDocument("");i.body.innerHTML=e;let s=i.body;if(!n(o))for(let e=0;e<o.length;e++)s=s.firstChild;return s.firstChild}}return e.addEventListener=function(e,t,n,r){e.addEventListener(t,n,r)},e.assertInstanceOfHTMLElement=function(e,n){t.invariant(e instanceof HTMLElement,n)},e.attachShadow=function(e,t){return null!==e.shadowRoot?e.shadowRoot:e.attachShadow(t)},e.cloneNode=function(e,t){return e.cloneNode(t)},e.createComment=function(e){return document.createComment(e)},e.createElement=function(e,t){return n(t)?document.createElement(e):document.createElementNS(t,e)},e.createText=function(e){return document.createTextNode(e)},e.dispatchEvent=function(e,t){return e.dispatchEvent(t)},e.getAttribute=function(e,t,r){return n(r)?e.getAttribute(t):e.getAttributeNS(r,t)},e.getBoundingClientRect=function(e){return e.getBoundingClientRect()},e.getChildNodes=function(e){return e.childNodes},e.getChildren=function(e){return e.children},e.getClassList=function(e){return e.classList},e.getElementsByClassName=function(e,t){return e.getElementsByClassName(t)},e.getElementsByTagName=function(e,t){return e.getElementsByTagName(t)},e.getFirstChild=function(e){return e.firstChild},e.getFirstElementChild=function(e){return e.firstElementChild},e.getLastChild=function(e){return e.lastChild},e.getLastElementChild=function(e){return e.lastElementChild},e.getProperty=function(e,t){return e[t]},e.insert=function(e,t,n){t.insertBefore(e,n)},e.isConnected=function(e){return e.isConnected},e.nextSibling=function(e){return e.nextSibling},e.querySelector=function(e,t){return e.querySelector(t)},e.querySelectorAll=function(e,t){return e.querySelectorAll(t)},e.remove=function(e,t){t.removeChild(e)},e.removeAttribute=function(e,t,r){n(r)?e.removeAttribute(t):e.removeAttributeNS(r,t)},e.removeEventListener=function(e,t,n,r){e.removeEventListener(t,n,r)},e.setAttribute=function(e,t,r,o){return n(o)?e.setAttribute(t,r):e.setAttributeNS(o,t,r)},e.setCSSStyleProperty=function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},e.setProperty=function(e,t,n){e[t]=n},e.setText=function(e,t){e.nodeValue=t},e}({});return Object.setPrototypeOf(t,e),t}So=po?ue.ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY?function(e,t,n,r){if(F(Eo)||F(Co))throw new Error("The flag ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY must be set to true to use this feature");const o=Mo(t,n,r,Co);return new(Eo(e,o))(o)}:vo:mo;const ko=n(To(null),{insertStylesheet:function(e,t){F(t)?function(e){const t=fo(e,!1);t.global||(t.global=!0,uo(e,document.head,t))}(e):ho(e,t)},createCustomElement:So,isNativeShadowDefined:Q.$isNativeShadowRootDefined$,isSyntheticShadowDefined:u.call(Element.prototype,"$shadowToken$")});function Ao(e,t,n){const r=Nr(e,t,ko,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[t,r]of Object.entries(n))e[t]=r;return r}function No(e,t,n={}){if(!(e instanceof Element))throw new TypeError(`"hydrateComponent" expects a valid DOM element as the first parameter but instead received ${e}.`);if(!W(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!j(n)||H(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(Or(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{!function(e){qr=!1,Rr(e),Xr(e),qr&&Oe("Hydration completed with errors.",e)}(Ao(e,t,n))}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!H(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!H(e.firstChild);)e.removeChild(e.firstChild)}(e,t),Ao(e,t,n),Tr(e)}}const Lo=new WeakSet;function _o(e){var t;const n=function(e){return tn(e).bridge}(e),{observedAttributes:r}=n,{attributeChangedCallback:o}=n.prototype;return(t=class extends HTMLElement{constructor(){super(),this.isConnected?(No(this,e,{}),Lo.add(this)):Nr(this,e,ko,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){Lo.has(this)?Lo.delete(this):Tr(this)}disconnectedCallback(){kr(this)}attributeChangedCallback(e,t,n){o.call(this,e,t,n)}}).observedAttributes=r,t}const Oo=Node,xo=new WeakMap,Po=new WeakMap;function $o(e,t){const n=t.get(e);return F(n)||n(e),e}if(!ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE){const{appendChild:e,insertBefore:t,removeChild:r,replaceChild:o}=Oo.prototype;n(Oo.prototype,{appendChild(t){return $o(e.call(this,t),xo)},insertBefore(e,n){return $o(t.call(this,e,n),xo)},removeChild(e){return $o(r.call(this,e),Po)},replaceChild(e,t){const n=o.call(this,e,t);return $o(n,Po),$o(e,xo),n}})}const Do=Node;const Ro=new Map;return i(Lt,"CustomElementConstructor",{get(){return function(e){if(e===Lt)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=Ro.get(e);return F(t)&&(t=_o(e),Ro.set(e,t)),t}(this)}}),s(Lt),h(Lt.prototype),e.LightningElement=Lt,e.__unstable__ProfilerControl=zn,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=zr(e);if(!F(t))throw new Error("Adapter already has a context provider.");t=function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}(),function(e,t){Gr.set(e,t)}(e,t);const n=new WeakSet;return(e,r)=>{if(n.has(e))throw new Error(`Adapter was already installed on ${e}.`);n.add(e);const{consumerConnectedCallback:o,consumerDisconnectedCallback:i}=r;e.addEventListener(t,(e=>{const{setNewContext:t,setDisconnectedCallback:n}=e,r={provide(e){t(e)}};n((()=>{F(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!j(t)||H(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${K(t)}".`);const n=t.is;if(!W(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const{createCustomElement:r}=ko,o=I.call(e);return r(o,(e=>{Nr(e,n,ko,{tagName:o,mode:"closed"!==t.mode?"open":"closed",owner:null}),ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||(xo.set(e,Tr),Po.set(e,kr))}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&Tr(e)}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&kr(e)}))},e.freezeTemplate=function(e){},e.getComponentConstructor=function(e){let t=null;if(!F(e)){const n=Or(e);F(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=tn(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:ne(e)};const c={};for(const e in s)c[e]=s[e].value;return{ctor:n,name:r,props:l,methods:c}},e.hydrateComponent=No,e.isComponentConstructor=en,e.isNodeFromTemplate=function(e){if(V(e instanceof Do))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&V(u.call(a(t),"synthetic")))||ko.isSyntheticShadowDefined&&!F(e.$shadowResolver$)},e.parseFragment=nr,e.parseSVGFragment=rr,e.readonly=function(e){return Mt(e)},e.register=function(e){for(let t=0;t<wr.length;++t){const n=wr[t];if(n in e){let t=gr[n];F(t)&&(gr[n]=t=[]),S.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return W(e)&&ur.set(e,t),e},e.registerDecorators=function(e,t){const n=e.prototype,{publicProps:o,publicMethods:s,wire:c,track:a,fields:u}=t,d=r(null),f=r(null),h=r(null),p=r(null),m=r(null),g=r(null);let w;if(!F(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=l(n,e),t.config>0){if(F(w))throw new Error;w=It(e,w)}else w=F(w)||F(w.get)?Rt(e):It(e,w);f[e]=w,i(n,e,w)}if(F(s)||x.call(s,(e=>{if(w=l(n,e),F(w))throw new Error;d[e]=w})),!F(c))for(const e in c){const{adapter:t,method:r,config:o,dynamic:s=[]}=c[e];if(w=l(n,e),1===r){if(F(w))throw new Error;h[e]=w,Kr(w,t,o,s)}else w=Ht(e),p[e]=w,Yr(w,t,o,s),i(n,e,w)}if(!F(a))for(const e in a)w=l(n,e),w=Ft(e),i(n,e,w);if(!F(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(n,t);const r=!F(o)&&t in o,i=!F(a)&&t in a;r||i||(m[t]=$t(t))}return function(e,t){Bt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return Wt.add(e),i(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return F(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=F(e)?void 0:e.shadowAttribute}}),e},e.renderer=ko,e.rendererFactory=To,e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(F(ae[e])){const n=f(ae).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!F(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);i(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},e.setFeatureFlagForTest=function(e,t){},e.setHooks=function(e){var n;t.isFalse(oo,"Hooks are already overridden, only one definition is allowed."),oo=!0,n=e.sanitizeHtmlContent,Wn=n},e.swapComponent=function(e,t){return!1},e.swapStyle=function(e,t){return!1},e.swapTemplate=function(e,t){return!1},e.track=function(e){if(1===arguments.length)return St(e);throw new Error},e.unwrap=function(e){return Ct.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
1
+ var LWC=function(e){"use strict";var t=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});const{assign:n,create:r,defineProperties:o,defineProperty:i,freeze:s,getOwnPropertyDescriptor:l,getOwnPropertyNames:c,getPrototypeOf:a,hasOwnProperty:u,isFrozen:d,keys:f,seal:h,setPrototypeOf:p}=Object,{isArray:m}=Array,{copyWithin:g,fill:w,filter:b,find:y,indexOf:v,join:E,map:C,pop:M,push:S,reduce:T,reverse:k,shift:A,slice:N,sort:L,splice:_,unshift:O,forEach:x}=Array.prototype,{fromCharCode:P}=String,{charCodeAt:$,replace:D,slice:R,toLowerCase:I}=String.prototype;function F(e){return void 0===e}function H(e){return null===e}function B(e){return!0===e}function V(e){return!1===e}function W(e){return"function"==typeof e}function j(e){return"object"==typeof e}function U(e){return"string"==typeof e}function G(){}const z={}.toString;function K(e){return e&&e.toString?m(e)?E.call(C.call(e,K),","):e.toString():"object"==typeof e?z.call(e):e+""}function Y(e,t){do{const n=l(e,t);if(!F(n))return n;e=a(e)}while(null!==e)}const q=["ariaActiveDescendant","ariaAtomic","ariaAutoComplete","ariaBusy","ariaChecked","ariaColCount","ariaColIndex","ariaColSpan","ariaControls","ariaCurrent","ariaDescribedBy","ariaDetails","ariaDisabled","ariaErrorMessage","ariaExpanded","ariaFlowTo","ariaHasPopup","ariaHidden","ariaInvalid","ariaKeyShortcuts","ariaLabel","ariaLabelledBy","ariaLevel","ariaLive","ariaModal","ariaMultiLine","ariaMultiSelectable","ariaOrientation","ariaOwns","ariaPlaceholder","ariaPosInSet","ariaPressed","ariaReadOnly","ariaRelevant","ariaRequired","ariaRoleDescription","ariaRowCount","ariaRowIndex","ariaRowSpan","ariaSelected","ariaSetSize","ariaSort","ariaValueMax","ariaValueMin","ariaValueNow","ariaValueText","role"],{AriaAttrNameToPropNameMap:X,AriaPropNameToAttrNameMap:J}=(()=>{const e=r(null),t=r(null);return x.call(q,(n=>{const r=I.call(D.call(n,/^aria/,(()=>"aria-")));e[r]=n,t[n]=r})),{AriaAttrNameToPropNameMap:e,AriaPropNameToAttrNameMap:t}})(),Q=function(){if("object"==typeof globalThis)return globalThis;let e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),Z="http://www.w3.org/2000/svg",ee=new Map([["accessKey","accesskey"],["readOnly","readonly"],["tabIndex","tabindex"],["bgColor","bgcolor"],["colSpan","colspan"],["rowSpan","rowspan"],["contentEditable","contenteditable"],["crossOrigin","crossorigin"],["dateTime","datetime"],["formAction","formaction"],["isMap","ismap"],["maxLength","maxlength"],["minLength","minlength"],["noValidate","novalidate"],["useMap","usemap"],["htmlFor","for"]]),te=new Map;function ne(e){const t=J[e];if(!F(t))return t;const n=ee.get(e);if(!F(n))return n;const r=te.get(e);if(!F(r))return r;let o="";for(let t=0,n=e.length;t<n;t++){const n=$.call(e,t);o+=n>=65&&n<=90?"-"+P(n+32):P(n)}return te.set(e,o),o}function re(e){return void 0===l(Element.prototype,e)}const oe=new WeakMap;function ie(e){let t=oe.get(e);return void 0===t&&(t={},oe.set(e,t)),t}function se(e,t){return{get(){const n=ie(this);return u.call(n,e)?n[e]:this.hasAttribute(t)?this.getAttribute(t):null},set(n){const r=null==(o=n)?null:String(o);var o;ie(this)[e]=r,null===n?this.removeAttribute(t):this.setAttribute(t,n)},configurable:!0,enumerable:!0}}function le(e){const t=se(e,J[e]);Object.defineProperty(Element.prototype,e,t)}const ce=f(J);for(let e=0,t=ce.length;e<t;e+=1){const t=ce[e];re(t)&&le(t)}const ae={DUMMY_TEST_FLAG:null,ENABLE_ELEMENT_PATCH:null,ENABLE_FORCE_NATIVE_SHADOW_MODE_FOR_TEST:null,ENABLE_HTML_COLLECTIONS_PATCH:null,ENABLE_INNER_OUTER_TEXT_PATCH:null,ENABLE_MIXED_SHADOW_MODE:null,ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE:null,ENABLE_NODE_LIST_PATCH:null,ENABLE_NODE_PATCH:null,ENABLE_REACTIVE_SETTER:null,ENABLE_WIRE_SYNC_EMIT:null,ENABLE_LIGHT_GET_ROOT_NODE_PATCH:null,DISABLE_LIGHT_DOM_UNSCOPED_CSS:null,ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY:null};Q.lwcRuntimeFlags||Object.defineProperty(Q,"lwcRuntimeFlags",{value:r(null)});const ue=Q.lwcRuntimeFlags;let de=[];const fe=h(r(null)),he=h([]);function pe(){const e=de;de=[];for(let t=0,n=e.length;t<n;t+=1)e[t]()}function me(e){0===de.length&&Promise.resolve().then(pe),S.call(de,e)}const ge=/;(?![^(]*\))/g,we=/:(.+)/;function be(e,t){const n={};for(const r of Object.keys(e))r!==t&&(n[r]=e[r]);return n}function ye(e,t,n){const r=e.refVNodes;(!(t in r)||r[t].key<n.key)&&(r[t]=n)}const ve=new WeakMap;let Ee=null;function Ce(e,t){const n=ve.get(e);if(!F(n)){const e=n[t];if(!F(e))for(let t=0,n=e.length;t<n;t+=1){e[t].notify()}}}function Me(e,t){if(null===Ee)return;const n=Ee,o=function(e){let t=ve.get(e);if(F(t)){const n=r(null);t=n,ve.set(e,n)}return t}(e);let i=o[t];if(F(i))i=[],o[t]=i;else if(i[0]===n)return;-1===v.call(i,n)&&n.link(i)}class Se{constructor(e){this.listeners=[],this.callback=e}observe(e){const t=Ee;let n;Ee=this;try{e()}catch(e){n=Object(e)}finally{if(Ee=t,void 0!==n)throw n}}reset(){const{listeners:e}=this,t=e.length;if(t>0){for(let n=0;n<t;n+=1){const t=e[n],r=v.call(e[n],this);_.call(t,r,1)}e.length=0}}notify(){this.callback.call(void 0,this)}link(e){S.call(e,this),S.call(this.listeners,e)}}function Te(e,t){Ce(e.component,t)}function ke(e,t){Me(e.component,t)}function Ae(e){return new Se(e)}function Ne(e){return`<${I.call(e.tagName)}>`}function Le(e,t){if(!d(t)&&F(t.wcStack)){const n=function(e){const t=[];let n=e;for(;!H(n);)S.call(t,Ne(n)),n=n.owner;return t.reverse().join("\n\t")}(e);i(t,"wcStack",{get:()=>n})}}function _e(e,t,n){let r=`[LWC ${e}]: ${t}`;F(n)||(r=`${r}\n${function(e){const t=[];let n="";for(;!H(e.owner);)S.call(t,n+Ne(e)),e=e.owner,n+="\t";return E.call(t,"\n")}(n)}`);try{throw new Error(r)}catch(t){console[e](t)}}function Oe(e,t){_e("error",e,t)}function xe(e){const t=e();return(null==t?void 0:t.__esModule)?t.default:t}function Pe(e){return W(e)&&u.call(e,"__circular__")}const $e="undefined"!=typeof HTMLElement?HTMLElement:function(){},De=$e.prototype;function Re(e){return`Using the \`${e}\` property is an anti-pattern because it rounds the value to an integer. Instead, use the \`getBoundingClientRect\` method to obtain fractional values for the size of an element and its position relative to the viewport.`}n(r(null),{accessKey:{attribute:"accesskey"},accessKeyLabel:{readOnly:!0},className:{attribute:"class",error:"Using the `className` property is an anti-pattern because of slow runtime behavior and potential conflicts with classes provided by the owner element. Use the `classList` API instead."},contentEditable:{attribute:"contenteditable"},dataset:{readOnly:!0,error:"Using the `dataset` property is an anti-pattern because it can't be statically analyzed. Expose each property individually using the `@api` decorator instead."},dir:{attribute:"dir"},draggable:{attribute:"draggable"},dropzone:{attribute:"dropzone",readOnly:!0},hidden:{attribute:"hidden"},id:{attribute:"id"},inputMode:{attribute:"inputmode"},lang:{attribute:"lang"},slot:{attribute:"slot",error:"Using the `slot` property is an anti-pattern."},spellcheck:{attribute:"spellcheck"},style:{attribute:"style"},tabIndex:{attribute:"tabindex"},title:{attribute:"title"},translate:{attribute:"translate"},isContentEditable:{readOnly:!0},offsetHeight:{readOnly:!0,error:Re("offsetHeight")},offsetLeft:{readOnly:!0,error:Re("offsetLeft")},offsetParent:{readOnly:!0},offsetTop:{readOnly:!0,error:Re("offsetTop")},offsetWidth:{readOnly:!0,error:Re("offsetWidth")},role:{attribute:"role"}});let Ie,Fe=null;function He(e,t){return e!==Fe||t!==Ie}function Be(e,t){Fe=null,Ie=void 0}function Ve(e,t){Fe=e,Ie=t}const We=r(null);function je(e,t,n){const{cmpFields:r}=e;n!==r[t]&&(r[t]=n,Te(e,t))}x.call(f(J),(e=>{const t=Y(De,e);F(t)||(We[e]=t)})),x.call(["accessKey","dir","draggable","hidden","id","lang","spellcheck","tabIndex","title"],(e=>{const t=Y(De,e);F(t)||(We[e]=t)}));const{isArray:Ue}=Array,{prototype:Ge,getPrototypeOf:ze,create:Ke,defineProperty:Ye,isExtensible:qe,getOwnPropertyDescriptor:Xe,getOwnPropertyNames:Je,getOwnPropertySymbols:Qe,preventExtensions:Ze,hasOwnProperty:et}=Object,{push:tt,concat:nt}=Array.prototype;function rt(e){return void 0===e}function ot(e){return"function"==typeof e}const it=new WeakMap;function st(e,t){it.set(e,t)}const lt=e=>it.get(e)||e;class ct{constructor(e,t){this.originalTarget=t,this.membrane=e}wrapDescriptor(e){if(et.call(e,"value"))e.value=this.wrapValue(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.wrapGetter(n)),rt(t)||(e.set=this.wrapSetter(t))}return e}copyDescriptorIntoShadowTarget(e,t){const{originalTarget:n}=this,r=Xe(n,t);if(!rt(r)){const n=this.wrapDescriptor(r);Ye(e,t,n)}}lockShadowTarget(e){const{originalTarget:t}=this;nt.call(Je(t),Qe(t)).forEach((t=>{this.copyDescriptorIntoShadowTarget(e,t)}));const{membrane:{tagPropertyKey:n}}=this;rt(n)||et.call(e,n)||Ye(e,n,Ke(null)),Ze(e)}apply(e,t,n){}construct(e,t,n){}get(e,t){const{originalTarget:n,membrane:{valueObserved:r}}=this,o=n[t];return r(n,t),this.wrapValue(o)}has(e,t){const{originalTarget:n,membrane:{tagPropertyKey:r,valueObserved:o}}=this;return o(n,t),t in n||t===r}ownKeys(e){const{originalTarget:t,membrane:{tagPropertyKey:n}}=this,r=rt(n)||et.call(t,n)?[]:[n];return tt.apply(r,Je(t)),tt.apply(r,Qe(t)),r}isExtensible(e){const{originalTarget:t}=this;return!!qe(e)&&(!!qe(t)||(this.lockShadowTarget(e),!1))}getPrototypeOf(e){const{originalTarget:t}=this;return ze(t)}getOwnPropertyDescriptor(e,t){const{originalTarget:n,membrane:{valueObserved:r,tagPropertyKey:o}}=this;r(n,t);let i=Xe(n,t);if(rt(i)){if(t!==o)return;return i={value:void 0,writable:!1,configurable:!1,enumerable:!1},Ye(e,o,i),i}return!1===i.configurable&&this.copyDescriptorIntoShadowTarget(e,t),this.wrapDescriptor(i)}}const at=new WeakMap,ut=new WeakMap,dt=new WeakMap,ft=new WeakMap;class ht extends ct{wrapValue(e){return this.membrane.getProxy(e)}wrapGetter(e){const t=at.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return at.set(e,r),dt.set(r,e),r}wrapSetter(e){const t=ut.get(e);if(!rt(t))return t;const n=function(t){e.call(lt(this),lt(t))};return ut.set(e,n),ft.set(n,e),n}unwrapDescriptor(e){if(et.call(e,"value"))e.value=lt(e.value);else{const{set:t,get:n}=e;rt(n)||(e.get=this.unwrapGetter(n)),rt(t)||(e.set=this.unwrapSetter(t))}return e}unwrapGetter(e){const t=dt.get(e);if(!rt(t))return t;const n=this,r=function(){return lt(e.call(n.wrapValue(this)))};return at.set(r,e),dt.set(e,r),r}unwrapSetter(e){const t=ft.get(e);if(!rt(t))return t;const n=this,r=function(t){e.call(n.wrapValue(this),n.wrapValue(t))};return ut.set(r,e),ft.set(e,r),r}set(e,t,n){const{originalTarget:r,membrane:{valueMutated:o}}=this;return r[t]!==n?(r[t]=n,o(r,t)):"length"===t&&Ue(r)&&o(r,t),!0}deleteProperty(e,t){const{originalTarget:n,membrane:{valueMutated:r}}=this;return delete n[t],r(n,t),!0}setPrototypeOf(e,t){}preventExtensions(e){if(qe(e)){const{originalTarget:t}=this;if(Ze(t),qe(t))return!1;this.lockShadowTarget(e)}return!0}defineProperty(e,t,n){const{originalTarget:r,membrane:{valueMutated:o,tagPropertyKey:i}}=this;return t===i&&!et.call(r,t)||(Ye(r,t,this.unwrapDescriptor(n)),!1===n.configurable&&this.copyDescriptorIntoShadowTarget(e,t),o(r,t),!0)}}const pt=new WeakMap,mt=new WeakMap;class gt extends ct{wrapValue(e){return this.membrane.getReadOnlyProxy(e)}wrapGetter(e){const t=pt.get(e);if(!rt(t))return t;const n=this,r=function(){return n.wrapValue(e.call(lt(this)))};return pt.set(e,r),r}wrapSetter(e){const t=mt.get(e);if(!rt(t))return t;const n=function(e){};return mt.set(e,n),n}set(e,t,n){return!1}deleteProperty(e,t){return!1}setPrototypeOf(e,t){}preventExtensions(e){return!1}defineProperty(e,t,n){return!1}}function wt(e){if(null===e)return!1;if("object"!=typeof e)return!1;if(Ue(e))return!0;const t=ze(e);return t===Ge||null===t||null===ze(t)}const bt=(e,t)=>{},yt=(e,t)=>{};function vt(e){return Ue(e)?[]:{}}const Et=Symbol.for("@@lockerLiveValue"),Ct=new class{constructor(e={}){this.readOnlyObjectGraph=new WeakMap,this.reactiveObjectGraph=new WeakMap;const{valueMutated:t,valueObserved:n,valueIsObservable:r,tagPropertyKey:o}=e;this.valueMutated=ot(t)?t:yt,this.valueObserved=ot(n)?n:bt,this.valueIsObservable=ot(r)?r:wt,this.tagPropertyKey=o}getProxy(e){const t=lt(e);return this.valueIsObservable(t)?this.readOnlyObjectGraph.get(t)===e?e:this.getReactiveHandler(t):t}getReadOnlyProxy(e){return e=lt(e),this.valueIsObservable(e)?this.getReadOnlyHandler(e):e}unwrapProxy(e){return lt(e)}getReactiveHandler(e){let t=this.reactiveObjectGraph.get(e);if(rt(t)){const n=new ht(this,e);t=new Proxy(vt(e),n),st(t,e),this.reactiveObjectGraph.set(e,t)}return t}getReadOnlyHandler(e){let t=this.readOnlyObjectGraph.get(e);if(rt(t)){const n=new gt(this,e);t=new Proxy(vt(e),n),st(t,e),this.readOnlyObjectGraph.set(e,t)}return t}}({valueObserved:Me,valueMutated:Ce,tagPropertyKey:Et});function Mt(e){return Ct.getReadOnlyProxy(e)}function St(e){return Ct.getProxy(e)}function Tt(e){e[Et]=void 0}function kt(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!W(n))throw new TypeError;if(!W(r))throw new TypeError;return{enumerable:o,configurable:i,get(){const t=_r(this);if(!lr(t))return ke(t,e),n.call(t.elm)},set(t){const n=_r(this);return je(n,e,t),r.call(n.elm,t)}}}const At=s(r(null)),Nt=new WeakMap,Lt=function(){if(H(sr))throw new TypeError("Illegal constructor");const e=sr,{def:t,elm:n}=e,{bridge:r}=t,o=this;if(p(n,r.prototype),e.component=this,1===arguments.length){const{callHook:t,setHook:n,getHook:r}=arguments[0];e.callHook=t,e.setHook=n,e.getHook=r}return Tt(this),Lr(o,e),Lr(n,e),1===e.renderMode?e.renderRoot=_t(e):e.renderRoot=n,this};function _t(e){const{elm:t,mode:n,shadowMode:r,def:{ctor:o},renderer:{attachShadow:i}}=e,s=i(t,{"$$lwc-synthetic-mode":1===r,delegatesFocus:Boolean(o.delegatesFocus),mode:n});return e.shadowRoot=s,Lr(s,e),s}Lt.prototype={constructor:Lt,dispatchEvent(e){const t=_r(this),{elm:n,renderer:{dispatchEvent:r}}=t;return r(n,e)},addEventListener(e,t,n){const r=_r(this),{elm:o,renderer:{addEventListener:i}}=r;i(o,e,mr(r,t),n)},removeEventListener(e,t,n){const r=_r(this),{elm:o,renderer:{removeEventListener:i}}=r;i(o,e,mr(r,t),n)},hasAttribute(e){const t=_r(this),{elm:n,renderer:{getAttribute:r}}=t;return!H(r(n,e))},hasAttributeNS(e,t){const n=_r(this),{elm:r,renderer:{getAttribute:o}}=n;return!H(o(r,t,e))},removeAttribute(e){const t=_r(this),{elm:n,renderer:{removeAttribute:r}}=t;Ve(n,e),r(n,e),Be()},removeAttributeNS(e,t){const{elm:n,renderer:{removeAttribute:r}}=_r(this);Ve(n,t),r(n,t,e),Be()},getAttribute(e){const t=_r(this),{elm:n}=t,{getAttribute:r}=t.renderer;return r(n,e)},getAttributeNS(e,t){const n=_r(this),{elm:r}=n,{getAttribute:o}=n.renderer;return o(r,t,e)},setAttribute(e,t){const n=_r(this),{elm:r,renderer:{setAttribute:o}}=n;Ve(r,e),o(r,e,t),Be()},setAttributeNS(e,t,n){const r=_r(this),{elm:o,renderer:{setAttribute:i}}=r;Ve(o,t),i(o,t,n,e),Be()},getBoundingClientRect(){const e=_r(this),{elm:t,renderer:{getBoundingClientRect:n}}=e;return n(t)},get isConnected(){const e=_r(this),{elm:t,renderer:{isConnected:n}}=e;return n(t)},get classList(){const e=_r(this),{elm:t,renderer:{getClassList:n}}=e;return n(t)},get template(){return _r(this).shadowRoot},get refs(){const e=_r(this);if(Jn)return;const{refVNodes:t,hasRefVNodes:n,cmpTemplate:o}=e;if(!n)return;if(H(t))return At;let i=Nt.get(t);if(F(i)){i=r(null);for(const e of f(t))i[e]=t[e].elm;s(i),Nt.set(t,i)}return i},set refs(e){i(this,"refs",{configurable:!0,enumerable:!0,writable:!0,value:e})},get shadowRoot(){return null},get children(){const e=_r(this);return e.renderer.getChildren(e.elm)},get childNodes(){const e=_r(this);return e.renderer.getChildNodes(e.elm)},get firstChild(){const e=_r(this);return e.renderer.getFirstChild(e.elm)},get firstElementChild(){const e=_r(this);return e.renderer.getFirstElementChild(e.elm)},get lastChild(){const e=_r(this);return e.renderer.getLastChild(e.elm)},get lastElementChild(){const e=_r(this);return e.renderer.getLastElementChild(e.elm)},render(){return _r(this).def.template},toString(){return`[object ${_r(this).def.name}]`}};const Ot=r(null),xt=["getElementsByClassName","getElementsByTagName","querySelector","querySelectorAll"];for(const e of xt)Ot[e]={value(t){const n=_r(this),{elm:r,renderer:o}=n;return o[e](r,t)},configurable:!0,enumerable:!0,writable:!0};o(Lt.prototype,Ot);const Pt=r(null);for(const e in We)Pt[e]=kt(e,We[e]);function $t(e){return{get(){const t=_r(this);return ke(t,e),t.cmpFields[e]},set(t){je(_r(this),e,t)},enumerable:!0,configurable:!0}}o(Lt.prototype,Pt),i(Lt,"CustomElementConstructor",{get(){throw new ReferenceError("The current runtime does not support CustomElementConstructor.")},configurable:!0});class Dt extends Se{constructor(e,t){super((()=>{V(this.debouncing)&&(this.debouncing=!0,me((()=>{if(B(this.debouncing)){const{value:n}=this,{isDirty:r,component:o,idx:i}=e;t.call(o,n),this.debouncing=!1,B(e.isDirty)&&V(r)&&i>0&&Sr(e)}})))})),this.debouncing=!1}reset(e){super.reset(),this.debouncing=!1,arguments.length>0&&(this.value=e)}}function Rt(e){return{get(){const t=_r(this);if(!lr(t))return ke(t,e),t.cmpProps[e]},set(t){const n=_r(this);n.cmpProps[e]=t,Te(n,e)},enumerable:!0,configurable:!0}}function It(e,t){const{get:n,set:r,enumerable:o,configurable:i}=t;if(!W(n))throw new Error;return{get(){return n.call(this)},set(t){const n=_r(this);if(r)if(ue.ENABLE_REACTIVE_SETTER){let o=n.oar[e];F(o)&&(o=n.oar[e]=function(e,t){return new Dt(e,t)}(n,r)),o.reset(t),o.observe((()=>{r.call(this,t)}))}else r.call(this,t)},enumerable:o,configurable:i}}function Ft(e){return{get(){const t=_r(this);return ke(t,e),t.cmpFields[e]},set(t){const n=_r(this),r=St(t);je(n,e,r)},enumerable:!0,configurable:!0}}function Ht(e){return{get(){const t=_r(this);return ke(t,e),t.cmpFields[e]},set(t){je(_r(this),e,t)},enumerable:!0,configurable:!0}}const Bt=new Map;const Vt={apiMethods:fe,apiFields:fe,apiFieldsConfig:fe,wiredMethods:fe,wiredFields:fe,observedFields:fe};const Wt=new Set;function jt(){return[]}Wt.add(jt);const Ut=r(null),Gt=r(null);function zt(e){let t=Ut[e];return F(t)&&(t=Ut[e]=function(){const t=_r(this),{getHook:n}=t;return n(t.component,e)}),t}function Kt(e){let t=Gt[e];return F(t)&&(t=Gt[e]=function(t){const n=_r(this),{setHook:r}=n;t=Mt(t),r(n.component,e,t)}),t}function Yt(e){return function(){const t=_r(this),{callHook:n,component:r}=t,o=r[e];return n(t.component,o,N.call(arguments))}}function qt(e,t){return function(n,r,o){if(r===o)return;const i=e[n];F(i)?F(t)||t.apply(this,arguments):He(this,n)&&(this[i]=o)}}function Xt(e,t,n){let s;W(e)?s=class extends e{}:(s=function(){throw new TypeError("Illegal constructor")},p(s,e),p(s.prototype,e.prototype),i(s.prototype,"constructor",{writable:!0,configurable:!0,value:s}));const l=r(null),{attributeChangedCallback:c}=e.prototype,{observedAttributes:a=[]}=e,u=r(null);for(let e=0,n=t.length;e<n;e+=1){const n=t[e];l[ne(n)]=n,u[n]={get:zt(n),set:Kt(n),enumerable:!0,configurable:!0}}for(let e=0,t=n.length;e<t;e+=1){const t=n[e];u[t]={value:Yt(t),writable:!0,configurable:!0}}return u.attributeChangedCallback={value:qt(l,c)},i(s,"observedAttributes",{get:()=>[...a,...f(l)]}),o(s.prototype,u),s}const Jt=Xt($e,c(We),[]);s(Jt),h(Jt.prototype);const Qt=new WeakMap;function Zt(e){const{shadowSupportMode:t,renderMode:i}=e,s=function(e){const t=Bt.get(e);return F(t)?Vt:t}(e),{apiFields:l,apiFieldsConfig:c,apiMethods:u,wiredFields:d,wiredMethods:h,observedFields:p}=s,m=e.prototype;let{connectedCallback:g,disconnectedCallback:w,renderedCallback:b,errorCallback:y,render:v}=m;const E=function(e){let t=a(e);if(H(t))throw new ReferenceError(`Invalid prototype chain for ${e.name}, you must extend LightningElement.`);if(Pe(t)){const e=xe(t);t=e===t?Lt:e}return t}(e),C=E!==Lt?tn(E):nn,M=Xt(C.bridge,f(l),f(u)),S=n(r(null),C.props,l),T=n(r(null),C.propsConfig,c),k=n(r(null),C.methods,u),A=n(r(null),C.wire,d,h);g=g||C.connectedCallback,w=w||C.disconnectedCallback,b=b||C.renderedCallback,y=y||C.errorCallback,v=v||C.render;let N=C.shadowSupportMode;F(t)||(N=t);let L=C.renderMode;F(i)||(L="light"===i?0:1);const _=function(e){return ur.get(e)}(e)||C.template,O=e.name||C.name;o(m,p);return{ctor:e,name:O,wire:A,props:S,propsConfig:T,methods:k,bridge:M,template:_,renderMode:L,shadowSupportMode:N,connectedCallback:g,disconnectedCallback:w,renderedCallback:b,errorCallback:y,render:v}}function en(e){if(!W(e))return!1;if(e.prototype instanceof Lt)return!0;let t=e;do{if(Pe(t)){const e=xe(t);if(e===t)return!0;t=e}if(t===Lt)return!0}while(!H(t)&&(t=a(t)));return!1}function tn(e){let t=Qt.get(e);if(F(t)){if(Pe(e)){return t=tn(xe(e)),Qt.set(e,t),t}if(!en(e))throw new TypeError(`${e} is not a valid component, or does not extends LightningElement from "lwc". You probably forgot to add the extend clause on the class declaration.`);t=Zt(e),Qt.set(e,t)}return t}const nn={ctor:Lt,name:Lt.name,props:Pt,propsConfig:fe,methods:fe,renderMode:1,shadowSupportMode:"reset",wire:fe,bridge:Jt,template:jt,render:Lt.prototype.render};function rn(e){return`${e}-host`}function on(e){return jn.h("style",{key:"style",attrs:{type:"text/css"}},[jn.t(e)])}function sn(e,t,n){const r=[];let o;for(let i=0;i<e.length;i++){let s=e[i];if(m(s))S.apply(r,sn(s,t,n));else{const e=s.$scoped$;if(ue.DISABLE_LIGHT_DOM_UNSCOPED_CSS&&!e&&0===n.renderMode){Oe("Unscoped CSS is not supported in Light DOM. Please use scoped CSS (*.scoped.css) instead of unscoped CSS (*.css).");continue}const i=e||1===n.shadowMode&&1===n.renderMode?t:void 0,l=0===n.renderMode?!e:0===n.shadowMode;let c;1===n.renderMode?c=0===n.shadowMode:(F(o)&&(o=cn(n)),c=H(o)||0===o.shadowMode),S.call(r,s(i,l,c))}}return r}function ln(e,t){const{stylesheets:n,stylesheetToken:r}=t;let o=[];return F(n)||0===n.length||(o=sn(n,r,e)),o}function cn(e){let t=e;for(;!H(t);){if(1===t.renderMode)return t;t=t.owner}return t}function an(e){const{cmpTemplate:t,context:n}=e;return n.hasScopedStyles&&(null==t?void 0:t.stylesheetToken)||null}function un(e,t){const{renderMode:n,shadowMode:r,renderer:{insertStylesheet:o}}=e;if(1===n&&1===r)for(let e=0;e<t.length;e++)o(t[e]);else{if(e.hydrated)return C.call(t,on);{const n=function(e){const t=cn(e);return H(t)||1!==t.shadowMode?t:null}(e),r=H(n)?void 0:n.shadowRoot;for(let e=0;e<t.length;e++)o(t[e],r)}}return null}function dn(e){const{type:t}=e;return 2===t||3===t}function fn(e,t){return e.key===t.key&&e.sel===t.sel}function hn(e,t){return"input"===e&&("value"===t||"checked"===t)}function pn(e,t,r){let{props:o}=t.data;const{spread:i}=t.data;if(F(o)&&F(i))return;let s;if(!H(e)){s=e.data.props;const t=e.data.spread;if(s===o&&t===i)return;F(s)&&(s=fe),F(t)||(s=n({},s,t))}F(i)||(o=n({},o,i));const l=H(e),{elm:c,sel:a}=t,{getProperty:u,setProperty:d}=r;for(const e in o){const t=o[e];!l&&t===(hn(a,e)?u(c,e):s[e])&&e in s||d(c,e,t)}}const mn=r(null);function gn(e){if(null==e)return fe;e=U(e)?e:e+"";let t=mn[e];if(t)return t;t=r(null);let n,o=0;const i=e.length;for(n=0;n<i;n++)32===$.call(e,n)&&(n>o&&(t[R.call(e,o,n)]=!0),o=n+1);return n>o&&(t[R.call(e,o,n)]=!0),mn[e]=t,t}function wn(e,t){const{elm:n,data:{on:r}}=e;if(F(r))return;const{addEventListener:o}=t;for(const e in r){o(n,e,r[e])}}function bn(e,t,n,r){var o;o=t,Pn.has(o)?Dn(e,t,n,r):Rn(e,t,n,r)}function yn(e,t,n,r){var o,i;if(e!==t)switch(t.type){case 0:case 1:!function(e,t,n){t.elm=e.elm,t.text!==e.text&&An(t,n)}(e,t,r);break;case 4:t.elm=e.elm;break;case 5:!function(e,t,n,r){const{children:o,stable:i}=t;i?Rn(e.children,o,n,r):Dn(e.children,o,n,r);t.elm=o[o.length-1].elm}(e,t,n,r);break;case 2:!function(e,t,n){const r=t.elm=e.elm;_n(e,t,n),bn(e.children,t.children,r,n)}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:r);break;case 3:!function(e,t,n,r){if(e.ctor!==t.ctor){const o=r.nextSibling(e.elm);Mn(e,n,r,!0),En(t,n,o,r)}else{const n=t.elm=e.elm,o=t.vm=e.vm;_n(e,t,r),F(o)||xn(t,o),bn(e.children,t.children,n,r),F(o)||Sr(o)}}(e,t,n,null!==(i=t.data.renderer)&&void 0!==i?i:r)}}function vn(e,t,n,r){var o,i;switch(e.type){case 0:!function(e,t,n,r){const{owner:o}=e,{createText:i}=r,s=e.elm=i(e.text);kn(s,o,r),Nn(s,t,n,r)}(e,t,r,n);break;case 1:!function(e,t,n,r){const{owner:o}=e,{createComment:i}=r,s=e.elm=i(e.text);kn(s,o,r),Nn(s,t,n,r)}(e,t,r,n);break;case 4:!function(e,t,n,r){const{owner:o}=e,{cloneNode:i,isSyntheticShadowDefined:s}=r,l=e.elm=i(e.fragment,!0);kn(l,o,r);const{renderMode:c,shadowMode:a}=o;s&&(1!==a&&0!==c||(l.$shadowStaticNode$=!0));Nn(l,t,n,r)}(e,t,r,n);break;case 5:!function(e,t,n,r){const{children:o}=e;Cn(o,t,r,n),e.elm=o[o.length-1].elm}(e,t,r,n);break;case 2:!function(e,t,n,r){const{sel:o,owner:i,data:{svg:s}}=e,{createElement:l}=r,c=B(s)?Z:void 0,a=e.elm=l(o,c);kn(a,i,r),On(a,i,r),function(e,t){var n;const{owner:r,data:{context:o}}=t;1===r.shadowMode&&"manual"===(null===(n=null==o?void 0:o.lwc)||void 0===n?void 0:n.dom)&&(e.$domManual$=!0)}(a,e),_n(null,e,r),Nn(a,t,n,r),Cn(e.children,a,r,null)}(e,t,r,null!==(o=e.data.renderer)&&void 0!==o?o:n);break;case 3:En(e,t,r,null!==(i=e.data.renderer)&&void 0!==i?i:n)}}function En(e,t,n,r){const{sel:o,owner:i}=e,{createCustomElement:s}=r;let l;const c=s(o.toLowerCase(),(t=>{l=function(e,t,n){let r=Or(e);if(!F(r))return r;const{sel:o,mode:i,ctor:s,owner:l}=t;return r=Nr(e,s,n,{mode:i,owner:l,tagName:o}),r}(t,e,r)}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&Tr(e)}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&kr(e)}));e.elm=c,e.vm=l,kn(c,i,r),On(c,i,r),l&&xn(e,l),_n(null,e,r),Nn(c,t,n,r),l&&(ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||Rr(l)),Cn(e.children,c,r,null),l&&function(e){xr(e)}(l)}function Cn(e,t,n,r,o=0,i=e.length){for(;o<i;++o){const i=e[o];Tn(i)&&vn(i,t,n,r)}}function Mn(e,t,n,r=!1){const{type:o,elm:i,sel:s}=e;switch(r&&(5===o?Sn(e.children,t,n,r):Ln(i,t,n)),o){case 2:{const t="slot"===s&&1===e.owner.shadowMode;Sn(e.children,i,n,t);break}case 3:{const{vm:t}=e;F(t)||function(e){Ar(e)}(t)}}}function Sn(e,t,n,r=!1,o=0,i=e.length){for(;o<i;++o){const i=e[o];Tn(i)&&Mn(i,t,n,r)}}function Tn(e){return null!=e}function kn(e,t,n){const{renderRoot:r,renderMode:o,shadowMode:i}=t,{isSyntheticShadowDefined:s}=n;s&&(1!==i&&0!==o||(e.$shadowResolver$=r.$shadowResolver$))}function An(e,t){const{elm:n,text:r}=e,{setText:o}=t;o(n,r)}function Nn(e,t,n,r){r.insert(e,t,n)}function Ln(e,t,n){n.remove(e,t)}function _n(e,t,n){H(e)&&(wn(t,n),function(e,t){const{elm:n,data:{classMap:r}}=e;if(F(r))return;const{getClassList:o}=t,i=o(n);for(const e in r)i.add(e)}(t,n),function(e,t){const{elm:n,data:{styleDecls:r}}=e;if(F(r))return;const{setCSSStyleProperty:o}=t;for(let e=0;e<r.length;e++){const[t,i,s]=r[e];o(n,t,i,s)}}(t,n)),function(e,t,n){const{elm:r,data:{className:o}}=t,i=H(e)?void 0:e.data.className;if(i===o)return;const{getClassList:s}=n,l=s(r),c=gn(o),a=gn(i);let u;for(u in a)F(c[u])&&l.remove(u);for(u in c)F(a[u])&&l.add(u)}(e,t,n),function(e,t,n){const{elm:r,data:{style:o}}=t;if((H(e)?void 0:e.data.style)===o)return;const{setAttribute:i,removeAttribute:s}=n;U(o)&&""!==o?i(r,"style",o):s(r,"style")}(e,t,n),function(e,t,n){const{attrs:r}=t.data;if(F(r))return;const o=H(e)?fe:e.data.attrs;if(o===r)return;const{elm:i}=t,{setAttribute:s,removeAttribute:l}=n;for(const e in r){const t=r[e];o[e]!==t&&(Ve(i,e),58===$.call(e,3)?s(i,e,t,"http://www.w3.org/XML/1998/namespace"):58===$.call(e,5)?s(i,e,t,"http://www.w3.org/1999/xlink"):H(t)||F(t)?l(i,e):s(i,e,t),Be())}}(e,t,n),pn(e,t,n)}function On(e,t,n){const r=an(t);if(!H(r)){const{getClassList:t}=n;t(e).add(r)}const{stylesheetToken:o}=t.context;1!==t.shadowMode||F(o)||(e.$shadowToken$=o)}function xn(e,t){const n=e.aChildren||e.children;t.aChildren=n;const{renderMode:o,shadowMode:i}=t;1!==i&&0!==o||(!function(e,t){var n;const{cmpSlots:o}=e,i=e.cmpSlots=r(null);for(let e=0,r=t.length;e<r;e+=1){const r=t[e];if(H(r))continue;let o="";dn(r)&&(o=(null===(n=r.data.attrs)||void 0===n?void 0:n.slot)||"");const s=i[o]=i[o]||[];S.call(s,r)}if(V(e.isDirty)){const t=f(o);if(t.length!==f(i).length)return void hr(e);for(let n=0,r=t.length;n<r;n+=1){const r=t[n];if(F(i[r])||o[r].length!==i[r].length)return void hr(e);const s=o[r],l=i[r];for(let t=0,n=i[r].length;t<n;t+=1)if(s[t]!==l[t])return void hr(e)}}}(t,n),e.aChildren=n,e.children=he)}const Pn=new WeakMap;function $n(e,t,n){const r={};for(let o=t;o<=n;++o){const t=e[o];if(Tn(t)){const{key:e}=t;void 0!==e&&(r[e]=o)}}return r}function Dn(e,t,n,r){let o=0,i=0,s=e.length-1,l=e[0],c=e[s];const a=t.length-1;let u,d,f,h,p=a,m=t[0],g=t[p],w=!1;for(;o<=s&&i<=p;)Tn(l)?Tn(c)?Tn(m)?Tn(g)?fn(l,m)?(yn(l,m,n,r),l=e[++o],m=t[++i]):fn(c,g)?(yn(c,g,n,r),c=e[--s],g=t[--p]):fn(l,g)?(yn(l,g,n,r),Nn(l.elm,n,r.nextSibling(c.elm),r),l=e[++o],g=t[--p]):fn(c,m)?(yn(c,m,n,r),Nn(m.elm,n,l.elm,r),c=e[--s],m=t[++i]):(void 0===u&&(u=$n(e,o,s)),d=u[m.key],F(d)?(vn(m,n,r,l.elm),m=t[++i]):(f=e[d],Tn(f)&&(f.sel!==m.sel?vn(m,n,r,l.elm):(yn(f,m,n,r),w||(w=!0,e=[...e]),e[d]=void 0,Nn(f.elm,n,l.elm,r))),m=t[++i])):g=t[--p]:m=t[++i]:c=e[--s]:l=e[++o];if(o<=s||i<=p)if(o>s){let e,o=p;do{e=t[++o]}while(!Tn(e)&&o<a);h=Tn(e)?e.elm:null,Cn(t,n,r,h,i,p+1)}else Sn(e,n,r,!0,o,s+1)}function Rn(e,t,n,r){const o=e.length,i=t.length;if(0===o)return void Cn(t,n,r,null);if(0===i)return void Sn(e,n,r,!0);let s=null;for(let o=i-1;o>=0;o-=1){const i=e[o],l=t[o];l!==i&&(Tn(i)?Tn(l)?(yn(i,l,n,r),s=l.elm):Mn(i,n,r,!0):Tn(l)&&(vn(l,n,r,s),s=l.elm))}}const In=Symbol.iterator;function Fn(e,t,n=he){const r=Zn(),{key:o,ref:i}=t,s={type:2,sel:e,data:t,children:n,elm:void 0,key:o,owner:r};return F(i)||ye(r,i,s),s}function Hn(e,t,n,r=he){const o=Zn(),{key:i,ref:s}=n;const l={type:3,sel:e,data:n,children:r,elm:undefined,key:i,ctor:t,owner:o,mode:"open",aChildren:undefined,vm:undefined};return function(e){S.call(Zn().velements,e)}(l),F(s)||ye(o,s,l),l}function Bn(e){return{type:0,sel:undefined,text:e,elm:undefined,key:undefined,owner:Zn()}}function Vn(e){var t;return t=e,Pn.set(t,1),e}let Wn=()=>{throw new Error("sanitizeHtmlContent hook must be implemented.")};const jn=s({s:function(e,t,n,r){F(r)||F(r[e])||0===r[e].length||(n=r[e]);const o=Zn(),{renderMode:i,shadowMode:s}=o;return 0===i?(Vn(n),n):(1===s&&Vn(n),Fn("slot",t,n))},h:Fn,c:Hn,i:function(e,t){const n=[];if(Vn(n),F(e)||null===e)return n;const r=e[In]();let o=r.next(),i=0,{value:s,done:l}=o;for(;!1===l;){o=r.next(),l=o.done;const e=t(s,i,0===i,!0===l);m(e)?S.apply(n,e):S.call(n,e),i+=1,s=o.value}return n},f:function(e){const t=e.length,n=[];Vn(n);for(let r=0;r<t;r+=1){const t=e[r];m(t)?S.apply(n,t):S.call(n,t)}return n},t:Bn,d:function(e){return null==e?"":String(e)},b:function(e){const t=Zn();if(H(t))throw new Error;const n=t;return function(t){ar(n,e,n.component,t)}},k:function(e,t){switch(typeof t){case"number":case"string":return e+":"+t}},co:function(e){return{type:1,sel:undefined,text:e,elm:undefined,key:"c",owner:Zn()}},dc:function(e,t,n,r=he){if(null==t)return null;if(!en(t))throw new Error(`Invalid LWC Constructor ${K(t)} for custom element <${e}>.`);return Hn(e,t,n,r)},fr:function(e,t,n){return{type:5,sel:void 0,key:e,elm:void 0,children:[Bn(""),...t,Bn("")],stable:n,owner:Zn()}},ti:function(e){return e>0&&!(B(e)||V(e))?0:e},st:function(e,t){return{type:4,sel:void 0,key:t,elm:void 0,fragment:e,owner:Zn()}},gid:function(e){const t=Zn();if(F(e)||""===e)return e;if(H(e))return null;const{idx:n,shadowMode:r}=t;return 1===r?D.call(e,/\S+/g,(e=>`${e}-${n}`)):e},fid:function(e){const t=Zn();if(F(e)||""===e)return e;if(H(e))return null;const{idx:n,shadowMode:r}=t;return 1===r&&/^#/.test(e)?`${e}-${n}`:e},shc:function(e){return Wn(e)}});let Un=!1,Gn=G;const zn={enableProfiler(){Un=!0},disableProfiler(){Un=!1},attachDispatcher(e){Gn=e,this.enableProfiler()},detachDispatcher(){const e=Gn;return Gn=G,this.disableProfiler(),e}};function Kn(e,t){Un&&Gn(e,0,t.tagName,t.idx,t.renderMode,t.shadowMode)}function Yn(e,t){Un&&Gn(e,1,t.tagName,t.idx,t.renderMode,t.shadowMode)}function qn(e,t){Un&&Gn(e,0,null==t?void 0:t.tagName,null==t?void 0:t.idx,null==t?void 0:t.renderMode,null==t?void 0:t.shadowMode)}function Xn(e,t){Un&&Gn(e,1,null==t?void 0:t.tagName,null==t?void 0:t.idx,null==t?void 0:t.renderMode,null==t?void 0:t.shadowMode)}let Jn=!1,Qn=null;function Zn(){return Qn}function er(e){Qn=e}function tr(e){return(t,...n)=>{const o=r(null);return function(){const{context:{hasScopedStyles:r,stylesheetToken:i},shadowMode:s,renderer:l}=Zn(),c=!F(i),a=1===s;let u=0;if(c&&r&&(u|=1),c&&a&&(u|=2),!F(o[u]))return o[u];const d=r&&c?" "+i:"",f=r&&c?` class="${i}"`:"",h=c&&a?" "+i:"";let p="";for(let e=0,r=n.length;e<r;e++)switch(n[e]){case 0:p+=t[e]+d;break;case 1:p+=t[e]+f;break;case 2:p+=t[e]+h;break;case 3:p+=t[e]+f+h}return p+=t[t.length-1],o[u]=e(p,l),o[u]}}}const nr=tr(((e,t)=>{const{createFragment:n}=t;return n(e)})),rr=tr(((e,t)=>{const{createFragment:n,getFirstChild:r}=t;return r(n("<svg>"+e+"</svg>"))}));function or(e,t){const n=Jn,o=Qn;let i=[];return Vr(e,e.owner,(()=>{Qn=e,Kn(1,e)}),(()=>{const{component:n,context:o,cmpSlots:s,cmpTemplate:l,tro:c}=e;c.observe((()=>{if(t!==l){if(H(l)||Br(e),c=t,!Wt.has(c))throw new TypeError(`Invalid template returned by the render() method on ${e}. It must return an imported template (e.g.: \`import html from "./${e.def.name}.html"\`), instead, it has returned: ${K(t)}.`);e.cmpTemplate=t,o.tplCache=r(null),o.hasScopedStyles=ir(t),function(e,t){const{elm:n,context:r,renderMode:o,shadowMode:i,renderer:{getClassList:s,removeAttribute:l,setAttribute:c}}=e,{stylesheets:a,stylesheetToken:u}=t,d=1===o&&1===i,{hasScopedStyles:f}=r;let h,p,m;const{stylesheetToken:g,hasTokenInClass:w,hasTokenInAttribute:b}=r;F(g)||(w&&s(n).remove(rn(g)),b&&l(n,rn(g))),F(a)||0===a.length||(h=u),F(h)||(f&&(s(n).add(rn(h)),p=!0),d&&(c(n,rn(h),""),m=!0)),r.stylesheetToken=h,r.hasTokenInClass=p,r.hasTokenInAttribute=m}(e,t);const n=ln(e,t);o.styleVNodes=0===n.length?null:un(e,n)}var c;const a=Boolean(t.hasRefs);e.hasRefVNodes=a,e.refVNodes=a?r(null):null,e.velements=[],Jn=!0,i=t.call(void 0,jn,n,s,o.tplCache);const{styleVNodes:u}=o;H(u)||O.apply(i,u)}))}),(()=>{Jn=n,Qn=o,Yn(1,e)})),i}function ir(e){const{stylesheets:t}=e;if(!F(t))for(let e=0;e<t.length;e++)if(B(t[e].$scoped$))return!0;return!1}let sr=null;function lr(e){return sr===e}function cr(e,t,n){const{component:r,callHook:o,owner:i}=e;Vr(e,i,G,(()=>{o(r,t,n)}),G)}function ar(e,t,n,r){const{callHook:o,owner:i}=e;Vr(e,i,G,(()=>{o(n,t,[r])}),G)}const ur=new Map;function dr(e){return Ae((()=>{const{isDirty:t}=e;V(t)&&(hr(e),function(e){if(B(e.isScheduled))return;e.isScheduled=!0,0===$r.length&&me(Dr);S.call($r,e)}(e))}))}function fr(e){e.tro.reset();const t=function(e){const{def:{render:t},callHook:n,component:r,owner:o}=e,i=Zn();let s,l=!1;return Vr(e,o,(()=>{er(e)}),(()=>{e.tro.observe((()=>{s=n(r,t),l=!0}))}),(()=>{er(i)})),l?or(e,s):[]}(e);return e.isDirty=!1,e.isScheduled=!1,t}function hr(e){e.isDirty=!0}const pr=new WeakMap;function mr(e,t){if(!W(t))throw new TypeError;let n=pr.get(t);return F(n)&&(n=function(n){ar(e,t,void 0,n)},pr.set(t,n)),n}const gr=r(null),wr=["rendered","connected","disconnected"];function br(e,t){const{component:n,def:r,context:o}=e;for(let e=0,i=t.length;e<i;++e)t[e].call(void 0,n,{},r,o)}let yr=0;const vr=new WeakMap;function Er(e,t,n=[]){return t.apply(e,n)}function Cr(e,t,n){e[t]=n}function Mr(e,t){return e[t]}function Sr(e){xr(e)}function Tr(e){const t=_r(e);qn(7,t),1===t.state&&kr(e),Rr(t),xr(t),Xn(7,t)}function kr(e){Ar(_r(e))}function Ar(e){const{state:t}=e;if(2!==t){const{oar:t,tro:n}=e;n.reset();for(const e in t)t[e].reset();!function(e){V(e.isDirty)&&(e.isDirty=!0);e.state=2;const{disconnected:t}=gr;t&&br(e,t);Ir(e)&&function(e){const{wiredDisconnecting:t}=e.context;Vr(e,e,G,(()=>{for(let e=0,n=t.length;e<n;e+=1)t[e]()}),G)}(e);const{disconnectedCallback:n}=e.def;F(n)||(Kn(5,e),cr(e,n),Yn(5,e))}(e),Fr(e),function(e){const{aChildren:t}=e;Hr(t)}(e)}}function Nr(e,t,n,o){const{mode:i,owner:s,tagName:l,hydrated:c}=o,a=tn(t),u={elm:e,def:a,idx:yr++,state:0,isScheduled:!1,isDirty:!0,tagName:l,mode:i,owner:s,refVNodes:null,hasRefVNodes:!1,children:he,aChildren:he,velements:he,cmpProps:r(null),cmpFields:r(null),cmpSlots:r(null),oar:r(null),cmpTemplate:null,hydrated:Boolean(c),renderMode:a.renderMode,context:{stylesheetToken:void 0,hasTokenInClass:void 0,hasTokenInAttribute:void 0,hasScopedStyles:void 0,styleVNodes:null,tplCache:fe,wiredConnecting:he,wiredDisconnecting:he},tro:null,shadowMode:null,component:null,shadowRoot:null,renderRoot:null,callHook:Er,setHook:Cr,getHook:Mr,renderer:n};return u.shadowMode=function(e,t){const{def:n}=e,{isSyntheticShadowDefined:r,isNativeShadowDefined:o}=t;let i;if(r)if(0===n.renderMode)i=0;else if(o)if(ue.ENABLE_MIXED_SHADOW_MODE)if("any"===n.shadowSupportMode)i=0;else{const t=function(e){let t=e.owner;for(;!H(t)&&0===t.renderMode;)t=t.owner;return t}(e);i=H(t)||0!==t.shadowMode?1:0}else i=1;else i=1;else i=0;return i}(u,n),u.tro=dr(u),function(e,t){const n=sr;let r;Kn(0,e),sr=e;try{const o=new t;if(sr.component!==o)throw new TypeError("Invalid component constructor, the class should extend LightningElement.")}catch(e){r=Object(e)}finally{if(Yn(0,e),sr=n,!F(r))throw Le(e,r),r}}(u,a.ctor),Ir(u)&&function(e){const{context:t,def:{wire:n}}=e,r=t.wiredConnecting=[],o=t.wiredDisconnecting=[];for(const t in n){const i=n[t],s=Wr.get(i);if(!F(s)){const{connector:n,computeConfigAndUpdate:i,resetConfigWatcher:l}=Ur(e,t,s),c=s.dynamic.length>0;S.call(r,(()=>{n.connect(),ue.ENABLE_WIRE_SYNC_EMIT||!c?i():Promise.resolve().then(i)})),S.call(o,(()=>{n.disconnect(),l()}))}}}(u),u}function Lr(e,t){vr.set(e,t)}function _r(e){return vr.get(e)}function Or(e){return vr.get(e)}function xr(e){if(B(e.isDirty)){!function(e,t){const{renderRoot:n,children:r,renderer:o}=e;e.children=t,(t.length>0||r.length>0)&&r!==t&&Vr(e,e,(()=>{Kn(2,e)}),(()=>{bn(r,t,n,o)}),(()=>{Yn(2,e)}));1===e.state&&Pr(e)}(e,fr(e))}}function Pr(e){const{def:{renderedCallback:t}}=e,{rendered:n}=gr;n&&br(e,n),F(t)||(Kn(4,e),cr(e,t),Yn(4,e))}let $r=[];function Dr(){qn(8);const e=$r.sort(((e,t)=>e.idx-t.idx));$r=[];for(let t=0,n=e.length;t<n;t+=1){const r=e[t];try{xr(r)}catch(r){throw t+1<n&&(0===$r.length&&me(Dr),O.apply($r,N.call(e,t+1))),Xn(8),r}}Xn(8)}function Rr(e){const{state:t}=e;if(1===t)return;e.state=1;const{connected:n}=gr;n&&br(e,n),Ir(e)&&function(e){const{wiredConnecting:t}=e.context;for(let e=0,n=t.length;e<n;e+=1)t[e]()}(e);const{connectedCallback:r}=e.def;F(r)||(Kn(3,e),cr(e,r),Yn(3,e))}function Ir(e){return c(e.def.wire).length>0}function Fr(e){const{velements:t}=e;for(let e=t.length-1;e>=0;e-=1){const{elm:n}=t[e];if(!F(n)){const e=Or(n);F(e)||Ar(e)}}}function Hr(e){for(let t=0,n=e.length;t<n;t+=1){const n=e[t];if(!H(n)&&!F(n.elm))switch(n.type){case 2:Hr(n.children);break;case 3:Ar(_r(n.elm));break}}}function Br(e){const{children:t,renderRoot:n,renderer:{remove:r}}=e;for(let e=0,o=t.length;e<o;e++){const o=t[e];H(o)||F(o.elm)||r(o.elm,n)}e.children=he,Fr(e),e.velements=he}function Vr(e,t,n,r,o){let i;n();try{r()}catch(e){i=Object(e)}finally{if(o(),!F(i)){Le(e,i);const n=H(t)?void 0:function(e){let t=e;for(;!H(t);){if(!F(t.def.errorCallback))return t;t=t.owner}}(t);if(F(n))throw i;Br(e),Kn(6,e);cr(n,n.def.errorCallback,[i,i.wcStack]),Yn(6,e)}}}const Wr=new Map;class jr extends CustomEvent{constructor(e,{setNewContext:t,setDisconnectedCallback:n}){super(e,{bubbles:!0,composed:!0}),o(this,{setNewContext:{value:t},setDisconnectedCallback:{value:n}})}}function Ur(e,t,n){const{method:r,adapter:o,configCallback:s,dynamic:l}=n,c=F(r)?function(e,t){return n=>{je(e,t,n)}}(e,t):function(e,t){return n=>{Vr(e,e.owner,G,(()=>{t.call(e.component,n)}),G)}}(e,r);let a,u;i(c,"$$DeprecatedWiredElementHostKey$$",{value:e.elm}),i(c,"$$DeprecatedWiredParamsMetaKey$$",{value:l}),Vr(e,e,G,(()=>{u=new o(c)}),G);const{computeConfigAndUpdate:d,ro:f}=function(e,t,n){let r=!1;const o=Ae((()=>{!1===r&&(r=!0,Promise.resolve().then((()=>{r=!1,o.reset(),i()})))})),i=()=>{let r;o.observe((()=>r=t(e))),n(r)};return{computeConfigAndUpdate:i,ro:o}}(e.component,s,(t=>{Vr(e,e,G,(()=>{u.update(t,a)}),G)}));return F(o.contextSchema)||function(e,t,n){const{adapter:r}=t,o=zr(r);if(F(o))return;const{elm:i,context:{wiredConnecting:s,wiredDisconnecting:l},renderer:{dispatchEvent:c}}=e;S.call(s,(()=>{const e=new jr(o,{setNewContext(e){n(e)},setDisconnectedCallback(e){S.call(l,e)}});c(i,e)}))}(e,n,(t=>{a!==t&&(a=t,1===e.state&&d())})),{connector:u,computeConfigAndUpdate:d,resetConfigWatcher:()=>f.reset()}}const Gr=new Map;function zr(e){return Gr.get(e)}function Kr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,method:e.value,configCallback:n,dynamic:r};Wr.set(e,o)}function Yr(e,t,n,r){t.adapter&&(t=t.adapter);const o={adapter:t,configCallback:n,dynamic:r};Wr.set(e,o)}let qr=!1;function Xr(e){const t=fr(e);e.children=t;const{renderRoot:n,renderer:{getFirstChild:r}}=e;Zr(r(n),t,n,e),Pr(e)}function Jr(e,t,n){var r,o;let i;switch(t.type){case 0:i=function(e,t,n){var r;if(!no(t,e,3,n))return eo(e,t,n);const{setText:o}=n;return o(e,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 1:i=function(e,t,n){var r;if(!no(t,e,8,n))return eo(e,t,n);const{setProperty:o}=n;return o(e,Qr,null!==(r=t.text)&&void 0!==r?r:null),t.elm=e,e}(e,t,n);break;case 4:i=function(e,t,n){if(!function(e,t,n,r){const{getProperty:o,getAttribute:i}=r;if(3===o(e,"nodeType"))return!!no(n,t,3,r)&&o(e,Qr)===o(t,Qr);if(8===o(e,"nodeType"))return!!no(n,t,8,r)&&o(e,Qr)===o(t,Qr);if(!no(n,t,1,r))return!1;let s=!0;if(o(e,"tagName")!==o(t,"tagName"))return!1;return o(e,"getAttributeNames").call(e).forEach((r=>{i(e,r)!==i(t,r)&&(Oe(`Mismatch hydrating element <${o(e,"tagName").toLowerCase()}>: attribute "${r}" has different values, expected "${i(e,r)}" but found "${i(t,r)}"`,n.owner),s=!1)})),s}(t.fragment,e,t,n))return eo(e,t,n);return t.elm=e,e}(e,t,n);break;case 5:i=function(e,t,n){const{children:r,owner:o}=t;return Zr(e,r,n.getProperty(e,"parentNode"),o),t.elm=r[r.length-1].elm}(e,t,n);break;case 2:i=function(e,t,n){if(!no(t,e,1,n)||!ro(t,e,n))return eo(e,t,n);t.elm=e;const{owner:r}=t,{context:o}=t.data,i=Boolean(!F(o)&&!F(o.lwc)&&"manual"===o.lwc.dom);if(i){const{data:{props:r}}=t,{getProperty:o}=n;F(r)||F(r.innerHTML)||o(e,"innerHTML")===r.innerHTML&&(t.data=Object.assign(Object.assign({},t.data),{props:be(r,"innerHTML")}))}if(to(t,n),!i){const{getFirstChild:o}=n;Zr(o(e),t.children,e,r)}return e}(e,t,null!==(r=t.data.renderer)&&void 0!==r?r:n);break;case 3:i=function(e,t,n){if(!no(t,e,1,n)||!ro(t,e,n))return eo(e,t,n);const{sel:r,mode:o,ctor:i,owner:s}=t,l=Nr(e,i,n,{mode:o,owner:s,tagName:r,hydrated:!0});if(t.elm=e,t.vm=l,xn(t,l),to(t,n),Rr(l),0!==l.renderMode){const{getFirstChild:r}=n;Zr(r(e),t.children,e,l)}return Xr(l),e}(e,t,null!==(o=t.data.renderer)&&void 0!==o?o:n)}return n.nextSibling(i)}const Qr="nodeValue";function Zr(e,t,n,r){let o=e,i=null;const{renderer:s}=r;for(let e=0;e<t.length;e++){const r=t[e];H(r)||(o?(o=Jr(o,r,s),i=r.elm):(qr=!0,vn(r,n,s,i),i=r.elm))}if(o){qr=!0;const{nextSibling:e}=s;do{const t=o;o=e(o),Ln(t,n,s)}while(o)}}function eo(e,t,n){qr=!0;const{getProperty:r}=n,o=r(e,"parentNode");return vn(t,o,n,e),Ln(e,o,n),t.elm}function to(e,t){wn(e,t),pn(null,e,t)}function no(e,t,n,r){const{getProperty:o}=r;return o(t,"nodeType")===n}function ro(e,t,n){const{getProperty:r}=n;if(e.sel.toLowerCase()!==r(t,"tagName").toLowerCase())return!1;const o=function(e,t,n){const{data:{attrs:r={}}}=e;let o=!0;for(const[e,i]of Object.entries(r)){const{getAttribute:r}=n,s=r(t,e);String(i)!==s&&(o=!1)}return o}(e,t,n),i=function(e,t,n){const{data:r,owner:o}=e;let{className:i,classMap:s}=r;const{getProperty:l,getClassList:c}=n,a=an(o),u=function(e){return 3===e.type}(e)?function(e){const{template:t}=tn(e.ctor),{stylesheetToken:n}=t;return!F(n)&&ir(t)?rn(n):null}(e):null;if(!H(a)||!H(u))if(F(i))if(F(s)){const e=[a,u],t=b.call(e,(e=>!H(e)));t.length&&(i=E.call(t," "))}else s=Object.assign(Object.assign(Object.assign({},s),H(a)?{}:{[a]:!0}),H(u)?{}:{[u]:!0});else{const e=[a,i,u],t=b.call(e,(e=>!H(e)));i=E.call(t," ")}let d=!0;if(F(i)||String(i)===l(t,"className")){if(!F(s)){const e=c(t);let n="";for(const t in s)n+=" "+t,e.contains(t)||(d=!1);n.trim(),e.length>f(s).length&&(d=!1)}}else d=!1;return d}(e,t,n),s=function(e,t,n){const{data:{style:r,styleDecls:o}}=e,{getAttribute:i}=n,s=i(t,"style")||"";let l=!0;if(F(r)||r===s){if(!F(o)){const e=function(e){const t={},n=e.split(ge);for(const e of n)if(e){const[n,r]=e.split(we);void 0!==n&&void 0!==r&&(t[n.trim()]=r.trim())}return t}(s),t=[];for(let n=0,r=o.length;n<r;n++){const[r,i,s]=o[n];t.push(`${r}: ${i+(s?" important!":"")}`);const c=e[r];F(c)?l=!1:c.startsWith(i)?s&&!c.endsWith("!important")&&(l=!1):l=!1}f(e).length>o.length&&(l=!1),E.call(t,";")}}else l=!1;return l}(e,t,n);return o&&i&&s}let oo=!1;const io=W(CSSStyleSheet.prototype.replaceSync)&&m(document.adoptedStyleSheets),so=io&&l(document.adoptedStyleSheets,"length").writable,lo=!F(document.documentMode),co=new Map;function ao(e){const t=document.createElement("style");return t.type="text/css",t.textContent=e,t}function uo(e,t,n){const r=function(e,t){const{element:n,usedElement:r}=t;return r?lo?ao(e):n.cloneNode(!0):(t.usedElement=!0,n)}(e,n);t.appendChild(r)}function fo(e,t){let n=co.get(e);return F(n)&&(n={stylesheet:void 0,element:void 0,roots:void 0,global:!1,usedElement:!1},co.set(e,n)),t&&F(n.stylesheet)?n.stylesheet=function(e){const t=new CSSStyleSheet;return t.replaceSync(e),t}(e):!t&&F(n.element)&&(n.element=ao(e)),n}function ho(e,t){const n=fo(e,io);let{roots:r}=n;if(F(r))r=n.roots=new WeakSet;else if(r.has(t))return;r.add(t),io?function(e,t,n){const{adoptedStyleSheets:r}=t,{stylesheet:o}=n;so?r.push(o):t.adoptedStyleSheets=[...r,o]}(0,t,n):uo(e,t,n)}const po=function(){if("undefined"==typeof customElements)return!1;try{const e=HTMLElement;class t extends e{}return customElements.define("lwc-test-"+Math.floor(1e6*Math.random()),t),new t,!0}catch(e){return!1}}(),mo=(e,t)=>{const n=document.createElement(e);return t(n),n},go=new Map,wo=new WeakSet;let bo=!1;const yo=(e,t)=>class extends HTMLElement{constructor(e){super(),bo?e(this):wo.add(this)}connectedCallback(){wo.has(this)||e(this)}disconnectedCallback(){wo.has(this)||t(this)}},vo=(e,t,n,r)=>{let o=go.get(e);if(F(o)){if(!F(customElements.get(e)))throw new Error(`Unexpected tag name "${e}". This name is a registered custom element, preventing LWC to upgrade the element.`);o=yo(n,r),customElements.define(e,o),go.set(e,o)}bo=!0;try{return new o(t)}finally{bo=!1}};let Eo,Co;ue.ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY&&po&&(Eo=function(){if(!po)throw new Error("Custom elements are not supported in this environment.");const{HTMLElement:e}=window,{hasAttribute:t,setAttribute:n,removeAttribute:r,getAttribute:i}=e.prototype,s=new WeakMap,l=new WeakMap,c=new WeakMap,a=new WeakSet,u=new Map,d=new Map,f=new Map,h=new Map,m=new Set;function g(t,n){class r extends e{constructor(e){super();const r=!F(e);if(r){if(!E(e))throw new TypeError("Failed to create custom element: the provided constructor is not a constructor.");if(!a.has(e))throw new Error(`Failed to create custom element: the provided constructor is unregistered: ${e.name}.`)}const o=r?C(e):d.get(t);F(o)?l.set(this,n):v(this,n,o)}connectedCallback(){var e;const n=s.get(this);if(F(n)){let e=h.get(t);F(e)&&h.set(t,e=new Set),e.add(this)}else null===(e=n.connectedCallback)||void 0===e||e.call(this)}disconnectedCallback(){var e;const n=s.get(this);if(F(n)){const e=h.get(t);F(e)||e.delete(this)}else null===(e=n.disconnectedCallback)||void 0===e||e.call(this)}adoptedCallback(){var e;const t=s.get(this);null===(e=null==t?void 0:t.adoptedCallback)||void 0===e||e.call(this)}attributeChangedCallback(e,t,r){var o;const i=s.get(this);(n===i||(null==i?void 0:i.observedAttributes.has(e)))&&(null===(o=i.attributeChangedCallback)||void 0===o||o.apply(this,[e,t,r]))}}return r.observedAttributes=[...n.observedAttributes],r}function w(e,t){const{observedAttributes:n,attributeChangedCallback:r}=t;return 0===n.size||F(r)?m:new Set([...t.observedAttributes].filter((t=>!e.observedAttributes.has(t))))}function b(e){setTimeout((()=>{throw e}))}let y;function v(e,l,c){p(e,c.UserCtor.prototype),s.set(e,c),c!==l&&function(e,t,s){const l=w(t,s);if(0===l.size)return;const{attributeChangedCallback:c}=s;o(e,{setAttribute:{value:function(e,t){if(l.has(e)){const r=i.call(this,e);n.call(this,e,t);try{c.call(this,e,r,t+"")}catch(e){b(e)}}else n.call(this,e,t)},writable:!0,enumerable:!0,configurable:!0},removeAttribute:{value:function(e){if(l.has(e)){const t=i.call(this,e);r.call(this,e);try{c.call(this,e,t,null)}catch(e){b(e)}}else r.call(this,e)},writable:!0,enumerable:!0,configurable:!0}})}(e,l,c),y=e,new c.UserCtor,function(e,n,r){const o=w(n,r);if(0===w(n,r).size)return;const{attributeChangedCallback:s}=r;o.forEach((n=>{if(t.call(e,n)){const t=i.call(e,n);s.call(e,n,null,t)}}))}(e,l,c)}function E(e){return W(e)&&j(e.prototype)}function C(e){if(!E(e))throw new TypeError("The referenced constructor is not a constructor.");const t=c.get(e);return F(t)?function(e){var t;const{connectedCallback:n,disconnectedCallback:r,adoptedCallback:o,attributeChangedCallback:i}=e.prototype;return{UserCtor:e,PivotCtor:void 0,connectedCallback:n,disconnectedCallback:r,adoptedCallback:o,attributeChangedCallback:i,observedAttributes:new Set(null!==(t=e.observedAttributes)&&void 0!==t?t:[])}}(e):t}const{customElements:M}=window,{define:S,whenDefined:T,get:k}=M;return CustomElementRegistry.prototype.define=function(e,t,n){if(n&&n.extends)throw new DOMException('NotSupportedError: "extends" key in customElements.define() options is not supported.');if(d.has(e))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${e}" has already been used with this registry`);if(!F(f.get(t)))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const r=C(t);a.add(t);let o=u.get(e);F(o)&&(o=g(e,r),S.call(M,e,o)),c.set(t,r),u.set(e,o),d.set(e,r),f.set(t,r),r.PivotCtor=o;const i=h.get(e);if(!F(i)){h.delete(e);for(const e of i){const t=l.get(e);F(t)||(l.delete(e),v(e,t,r))}}},CustomElementRegistry.prototype.get=function(e){const t=k.call(M,e);if(!F(t)){const n=d.get(e);return F(n)?t:n.UserCtor}},CustomElementRegistry.prototype.whenDefined=function(e){return T.call(M,e).then((t=>{const n=d.get(e);return F(n)?F(t)?k.call(M,e):t:n.UserCtor}))},window.HTMLElement=function(){const e=y;if(!F(e))return y=void 0,e;const{constructor:t}=this,n=f.get(t);if(F(n)||F(n.PivotCtor))throw new TypeError("Illegal constructor");const{PivotCtor:r,UserCtor:o}=n;return new r(o)},HTMLElement.prototype=e.prototype,function(e,t){e=I.call(e);let n=u.get(e);if(F(n)){const r=C(t);n=g(e,r),S.call(M,e,n),r.PivotCtor=n,c.set(t,r),u.set(e,n)}return a.add(t),n}}(),Co=window.HTMLElement);const Mo=(e,t,n,r)=>class extends r{constructor(){super(),e(this)}connectedCallback(){t(this)}disconnectedCallback(){n(this)}};let So;function To(e){const t=function(e){var t=Object.freeze({__proto__:null,invariant:function(e,t){if(!e)throw new Error(`Invariant Violation: ${t}`)},isTrue:function(e,t){if(!e)throw new Error(`Assert Violation: ${t}`)},isFalse:function(e,t){if(e)throw new Error(`Assert Violation: ${t}`)},fail:function(e){throw new Error(e)}});function n(e){return void 0===e}e.createFragment=void 0;if("function"==typeof HTMLTemplateElement)e.createFragment=function(e){const t=document.createElement("template");return t.innerHTML=e,t.content.firstChild};else{const t={caption:["table"],col:["colgroup","table"],colgroup:["table"],option:["select"],tbody:["table"],td:["tr","tbody","table"],th:["tr","tbody","table"],thead:["table"],tfoot:["table"],tr:["tbody","table"]},r=function(e){return(/<([a-z][^/\0>\x20\t\r\n\f]+)/i.exec(e)||["",""])[1].toLowerCase()};e.createFragment=function(e){const o=t[r(e)];if(!n(o))for(const t of o)e=`<${t}>${e}</${t}>`;const i=document.implementation.createHTMLDocument("");i.body.innerHTML=e;let s=i.body;if(!n(o))for(let e=0;e<o.length;e++)s=s.firstChild;return s.firstChild}}return e.addEventListener=function(e,t,n,r){e.addEventListener(t,n,r)},e.assertInstanceOfHTMLElement=function(e,n){t.invariant(e instanceof HTMLElement,n)},e.attachShadow=function(e,t){return null!==e.shadowRoot?e.shadowRoot:e.attachShadow(t)},e.cloneNode=function(e,t){return e.cloneNode(t)},e.createComment=function(e){return document.createComment(e)},e.createElement=function(e,t){return n(t)?document.createElement(e):document.createElementNS(t,e)},e.createText=function(e){return document.createTextNode(e)},e.dispatchEvent=function(e,t){return e.dispatchEvent(t)},e.getAttribute=function(e,t,r){return n(r)?e.getAttribute(t):e.getAttributeNS(r,t)},e.getBoundingClientRect=function(e){return e.getBoundingClientRect()},e.getChildNodes=function(e){return e.childNodes},e.getChildren=function(e){return e.children},e.getClassList=function(e){return e.classList},e.getElementsByClassName=function(e,t){return e.getElementsByClassName(t)},e.getElementsByTagName=function(e,t){return e.getElementsByTagName(t)},e.getFirstChild=function(e){return e.firstChild},e.getFirstElementChild=function(e){return e.firstElementChild},e.getLastChild=function(e){return e.lastChild},e.getLastElementChild=function(e){return e.lastElementChild},e.getProperty=function(e,t){return e[t]},e.insert=function(e,t,n){t.insertBefore(e,n)},e.isConnected=function(e){return e.isConnected},e.nextSibling=function(e){return e.nextSibling},e.querySelector=function(e,t){return e.querySelector(t)},e.querySelectorAll=function(e,t){return e.querySelectorAll(t)},e.remove=function(e,t){t.removeChild(e)},e.removeAttribute=function(e,t,r){n(r)?e.removeAttribute(t):e.removeAttributeNS(r,t)},e.removeEventListener=function(e,t,n,r){e.removeEventListener(t,n,r)},e.setAttribute=function(e,t,r,o){return n(o)?e.setAttribute(t,r):e.setAttributeNS(o,t,r)},e.setCSSStyleProperty=function(e,t,n,r){e.style.setProperty(t,n,r?"important":"")},e.setProperty=function(e,t,n){e[t]=n},e.setText=function(e,t){e.nodeValue=t},e}({});return Object.setPrototypeOf(t,e),t}So=po?ue.ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY?function(e,t,n,r){if(F(Eo)||F(Co))throw new Error("The flag ENABLE_SCOPED_CUSTOM_ELEMENT_REGISTRY must be set to true to use this feature");const o=Mo(t,n,r,Co);return new(Eo(e,o))(o)}:vo:mo;const ko=n(To(null),{insertStylesheet:function(e,t){F(t)?function(e){const t=fo(e,!1);t.global||(t.global=!0,uo(e,document.head,t))}(e):ho(e,t)},createCustomElement:So,isNativeShadowDefined:Q.$isNativeShadowRootDefined$,isSyntheticShadowDefined:u.call(Element.prototype,"$shadowToken$")});function Ao(e,t,n){const r=Nr(e,t,ko,{mode:"open",owner:null,tagName:e.tagName.toLowerCase(),hydrated:!0});for(const[t,r]of Object.entries(n))e[t]=r;return r}function No(e,t,n={}){if(!(e instanceof Element))throw new TypeError(`"hydrateComponent" expects a valid DOM element as the first parameter but instead received ${e}.`);if(!W(t))throw new TypeError(`"hydrateComponent" expects a valid component constructor as the second parameter but instead received ${t}.`);if(!j(n)||H(n))throw new TypeError(`"hydrateComponent" expects an object as the third parameter but instead received ${n}.`);if(Or(e))console.warn('"hydrateComponent" expects an element that is not hydrated.',e);else try{!function(e){qr=!1,Rr(e),Xr(e),qr&&Oe("Hydration completed with errors.",e)}(Ao(e,t,n))}catch(r){console.error("Recovering from error while hydrating: ",r),function(e,t){if(e.shadowRoot){const t=e.shadowRoot;for(;!H(t.firstChild);)t.removeChild(t.firstChild)}if("light"===t.renderMode)for(;!H(e.firstChild);)e.removeChild(e.firstChild)}(e,t),Ao(e,t,n),Tr(e)}}const Lo=new WeakSet;function _o(e){var t;const n=function(e){return tn(e).bridge}(e),{observedAttributes:r}=n,{attributeChangedCallback:o}=n.prototype;return(t=class extends HTMLElement{constructor(){super(),this.isConnected?(No(this,e,{}),Lo.add(this)):Nr(this,e,ko,{mode:"open",owner:null,tagName:this.tagName})}connectedCallback(){Lo.has(this)?Lo.delete(this):Tr(this)}disconnectedCallback(){kr(this)}attributeChangedCallback(e,t,n){o.call(this,e,t,n)}}).observedAttributes=r,t}const Oo=Node,xo=new WeakMap,Po=new WeakMap;function $o(e,t){const n=t.get(e);return F(n)||n(e),e}if(!ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE){const{appendChild:e,insertBefore:t,removeChild:r,replaceChild:o}=Oo.prototype;n(Oo.prototype,{appendChild(t){return $o(e.call(this,t),xo)},insertBefore(e,n){return $o(t.call(this,e,n),xo)},removeChild(e){return $o(r.call(this,e),Po)},replaceChild(e,t){const n=o.call(this,e,t);return $o(n,Po),$o(e,xo),n}})}const Do=Node;const Ro=new Map;return i(Lt,"CustomElementConstructor",{get(){return function(e){if(e===Lt)throw new TypeError("Invalid Constructor. LightningElement base class can't be claimed as a custom element.");let t=Ro.get(e);return F(t)&&(t=_o(e),Ro.set(e,t)),t}(this)}}),s(Lt),h(Lt.prototype),e.LightningElement=Lt,e.__unstable__ProfilerControl=zn,e.api=function(){throw new Error},e.buildCustomElementConstructor=function(e){return e.CustomElementConstructor},e.createContextProvider=function(e){let t=zr(e);if(!F(t))throw new Error("Adapter already has a context provider.");t=function(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return e()+e()+"-"+e()+"-"+e()+"-"+e()+"-"+e()+e()+e()}(),function(e,t){Gr.set(e,t)}(e,t);const n=new WeakSet;return(e,r)=>{if(n.has(e))throw new Error(`Adapter was already installed on ${e}.`);n.add(e);const{consumerConnectedCallback:o,consumerDisconnectedCallback:i}=r;e.addEventListener(t,(e=>{const{setNewContext:t,setDisconnectedCallback:n}=e,r={provide(e){t(e)}};n((()=>{F(i)||i(r)})),o(r),e.stopImmediatePropagation()}))}},e.createElement=function(e,t){if(!j(t)||H(t))throw new TypeError(`"createElement" function expects an object as second parameter but received "${K(t)}".`);const n=t.is;if(!W(n))throw new TypeError('"createElement" function expects an "is" option with a valid component constructor.');const{createCustomElement:r}=ko,o=I.call(e);return r(o,(e=>{Nr(e,n,ko,{tagName:o,mode:"closed"!==t.mode?"open":"closed",owner:null}),ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE||(xo.set(e,Tr),Po.set(e,kr))}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&Tr(e)}),(e=>{ue.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE&&kr(e)}))},e.freezeTemplate=function(e){},e.getComponentConstructor=function(e){let t=null;if(!F(e)){const n=Or(e);F(n)||(t=n.def.ctor)}return t},e.getComponentDef=function(e){const t=tn(e),{ctor:n,name:r,props:o,propsConfig:i,methods:s}=t,l={};for(const e in o)l[e]={config:i[e]||0,type:"any",attr:ne(e)};const c={};for(const e in s)c[e]=s[e].value;return{ctor:n,name:r,props:l,methods:c}},e.hydrateComponent=No,e.isComponentConstructor=en,e.isNodeFromTemplate=function(e){if(V(e instanceof Do))return!1;if(e instanceof ShadowRoot)return!1;const t=e.getRootNode();return!!(t instanceof ShadowRoot&&V(u.call(a(t),"synthetic")))||ko.isSyntheticShadowDefined&&!F(e.$shadowResolver$)},e.parseFragment=nr,e.parseSVGFragment=rr,e.readonly=function(e){return Mt(e)},e.register=function(e){for(let t=0;t<wr.length;++t){const n=wr[t];if(n in e){let t=gr[n];F(t)&&(gr[n]=t=[]),S.call(t,e[n])}}},e.registerComponent=function(e,{tmpl:t}){return W(e)&&ur.set(e,t),e},e.registerDecorators=function(e,t){const n=e.prototype,{publicProps:o,publicMethods:s,wire:c,track:a,fields:u}=t,d=r(null),f=r(null),h=r(null),p=r(null),m=r(null),g=r(null);let w;if(!F(o))for(const e in o){const t=o[e];if(g[e]=t.config,w=l(n,e),t.config>0){if(F(w))throw new Error;w=It(e,w)}else w=F(w)||F(w.get)?Rt(e):It(e,w);f[e]=w,i(n,e,w)}if(F(s)||x.call(s,(e=>{if(w=l(n,e),F(w))throw new Error;d[e]=w})),!F(c))for(const e in c){const{adapter:t,method:r,config:o,dynamic:s=[]}=c[e];if(w=l(n,e),1===r){if(F(w))throw new Error;h[e]=w,Kr(w,t,o,s)}else w=Ht(e),p[e]=w,Yr(w,t,o,s),i(n,e,w)}if(!F(a))for(const e in a)w=l(n,e),w=Ft(e),i(n,e,w);if(!F(u))for(let e=0,t=u.length;e<t;e++){const t=u[e];w=l(n,t);const r=!F(o)&&t in o,i=!F(a)&&t in a;r||i||(m[t]=$t(t))}return function(e,t){Bt.set(e,t)}(e,{apiMethods:d,apiFields:f,apiFieldsConfig:g,wiredMethods:h,wiredFields:p,observedFields:m}),e},e.registerTemplate=function(e){return Wt.add(e),i(e,"stylesheetTokens",{enumerable:!0,configurable:!0,get(){const{stylesheetToken:e}=this;return F(e)?e:{hostAttribute:`${e}-host`,shadowAttribute:e}},set(e){this.stylesheetToken=F(e)?void 0:e.shadowAttribute}}),e},e.renderer=ko,e.rendererFactory=To,e.sanitizeAttribute=function(e,t,n,r){return r},e.setFeatureFlag=function(e,t){if("boolean"==typeof t){if(F(ae[e])){const n=f(ae).map((e=>`"${e}"`)).join(", ");console.warn(`Failed to set the value "${t}" for the runtime feature flag "${e}" because it is undefined. Available flags: ${n}.`)}else{const n=ue[e];if(!F(n))return void console.error(`Failed to set the value "${t}" for the runtime feature flag "${e}". "${e}" has already been set with the value "${n}".`);i(ue,e,{value:t})}}else{const n=`Failed to set the value "${t}" for the runtime feature flag "${e}". Runtime feature flags can only be set to a boolean value.`;console.error(n)}},e.setFeatureFlagForTest=function(e,t){},e.setHooks=function(e){var n;t.isFalse(oo,"Hooks are already overridden, only one definition is allowed."),oo=!0,n=e.sanitizeHtmlContent,Wn=n},e.swapComponent=function(e,t){return!1},e.swapStyle=function(e,t){return!1},e.swapTemplate=function(e,t){return!1},e.track=function(e){if(1===arguments.length)return St(e);throw new Error},e.unwrap=function(e){return Ct.unwrapProxy(e)},e.wire=function(e,t){throw new Error},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
@@ -291,7 +291,7 @@ var LWC = (function (exports) {
291
291
  CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);
292
292
  return attributeName;
293
293
  }
294
- /** version: 2.26.0 */
294
+ /** version: 2.26.2 */
295
295
 
296
296
  /**
297
297
  * Copyright (C) 2018 salesforce.com, inc.
@@ -373,7 +373,7 @@ var LWC = (function (exports) {
373
373
  patch$1(propName);
374
374
  }
375
375
  }
376
- /** version: 2.26.0 */
376
+ /** version: 2.26.2 */
377
377
 
378
378
  /**
379
379
  * Copyright (C) 2018 salesforce.com, inc.
@@ -3136,9 +3136,14 @@ var LWC = (function (exports) {
3136
3136
  if (lwcRuntimeFlags.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE) {
3137
3137
  disconnectRootElement(elm);
3138
3138
  }
3139
- };
3139
+ }; // Should never get a tag with upper case letter at this point; the compiler
3140
+ // should produce only tags with lowercase letters. However, the Java
3141
+ // compiler may generate tagnames with uppercase letters so - for backwards
3142
+ // compatibility, we lower case the tagname here.
3143
+
3140
3144
 
3141
- const elm = createCustomElement(sel, upgradeCallback, connectedCallback, disconnectedCallback);
3145
+ const normalizedTagname = sel.toLowerCase();
3146
+ const elm = createCustomElement(normalizedTagname, upgradeCallback, connectedCallback, disconnectedCallback);
3142
3147
  vnode.elm = elm;
3143
3148
  vnode.vm = vm;
3144
3149
  linkNodeToShadow(elm, owner, renderer);
@@ -5646,7 +5651,7 @@ var LWC = (function (exports) {
5646
5651
  }
5647
5652
  return ctor;
5648
5653
  }
5649
- /* version: 2.26.0 */
5654
+ /* version: 2.26.2 */
5650
5655
 
5651
5656
  /*
5652
5657
  * Copyright (c) 2018, salesforce.com, inc.
@@ -6461,7 +6466,7 @@ var LWC = (function (exports) {
6461
6466
  function isNull(obj) {
6462
6467
  return obj === null;
6463
6468
  }
6464
- /** version: 2.26.0 */
6469
+ /** version: 2.26.2 */
6465
6470
 
6466
6471
  /*
6467
6472
  * Copyright (c) 2018, salesforce.com, inc.
@@ -7032,7 +7037,7 @@ var LWC = (function (exports) {
7032
7037
  });
7033
7038
  freeze(LightningElement);
7034
7039
  seal(LightningElement.prototype);
7035
- /* version: 2.26.0 */
7040
+ /* version: 2.26.2 */
7036
7041
 
7037
7042
  exports.LightningElement = LightningElement;
7038
7043
  exports.__unstable__ProfilerControl = profilerControl;
@@ -366,9 +366,9 @@ var LWC = (function (exports) {
366
366
  // Increment whenever the LWC template compiler changes
367
367
 
368
368
 
369
- var LWC_VERSION = "2.26.0";
369
+ var LWC_VERSION = "2.26.2";
370
370
  var LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
371
- /** version: 2.26.0 */
371
+ /** version: 2.26.2 */
372
372
 
373
373
  /**
374
374
  * Copyright (C) 2018 salesforce.com, inc.
@@ -462,7 +462,7 @@ var LWC = (function (exports) {
462
462
  patch$1(propName);
463
463
  }
464
464
  }
465
- /** version: 2.26.0 */
465
+ /** version: 2.26.2 */
466
466
 
467
467
  /**
468
468
  * Copyright (C) 2018 salesforce.com, inc.
@@ -556,7 +556,7 @@ var LWC = (function (exports) {
556
556
  setFeatureFlag(name, value);
557
557
  }
558
558
  }
559
- /** version: 2.26.0 */
559
+ /** version: 2.26.2 */
560
560
 
561
561
  /*
562
562
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5072,9 +5072,14 @@ var LWC = (function (exports) {
5072
5072
  if (lwcRuntimeFlags.ENABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE) {
5073
5073
  disconnectRootElement(elm);
5074
5074
  }
5075
- };
5075
+ }; // Should never get a tag with upper case letter at this point; the compiler
5076
+ // should produce only tags with lowercase letters. However, the Java
5077
+ // compiler may generate tagnames with uppercase letters so - for backwards
5078
+ // compatibility, we lower case the tagname here.
5079
+
5076
5080
 
5077
- var elm = createCustomElement(sel, upgradeCallback, connectedCallback, disconnectedCallback);
5081
+ var normalizedTagname = sel.toLowerCase();
5082
+ var elm = createCustomElement(normalizedTagname, upgradeCallback, connectedCallback, disconnectedCallback);
5078
5083
  vnode.elm = elm;
5079
5084
  vnode.vm = vm;
5080
5085
  linkNodeToShadow(elm, owner, renderer);
@@ -8484,7 +8489,7 @@ var LWC = (function (exports) {
8484
8489
 
8485
8490
  return ctor;
8486
8491
  }
8487
- /* version: 2.26.0 */
8492
+ /* version: 2.26.2 */
8488
8493
 
8489
8494
  /*
8490
8495
  * Copyright (c) 2018, salesforce.com, inc.
@@ -9485,7 +9490,7 @@ var LWC = (function (exports) {
9485
9490
  function isNull(obj) {
9486
9491
  return obj === null;
9487
9492
  }
9488
- /** version: 2.26.0 */
9493
+ /** version: 2.26.2 */
9489
9494
 
9490
9495
  /*
9491
9496
  * Copyright (c) 2018, salesforce.com, inc.
@@ -10152,7 +10157,7 @@ var LWC = (function (exports) {
10152
10157
  });
10153
10158
  freeze(LightningElement);
10154
10159
  seal(LightningElement.prototype);
10155
- /* version: 2.26.0 */
10160
+ /* version: 2.26.2 */
10156
10161
 
10157
10162
  exports.LightningElement = LightningElement;
10158
10163
  exports.__unstable__ProfilerControl = profilerControl;