lwc 2.5.8 → 2.6.1

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 (39) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +161 -129
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +161 -129
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +2 -2
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +144 -125
  5. package/dist/engine-dom/iife/es5/engine-dom.js +174 -138
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +2 -2
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +159 -136
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +161 -129
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +2 -2
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +144 -125
  11. package/dist/engine-dom/umd/es5/engine-dom.js +174 -138
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +2 -2
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +159 -136
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +161 -129
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +2 -2
  16. package/dist/engine-server/esm/es2017/engine-server.js +161 -129
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +23 -130
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +23 -130
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +23 -130
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +23 -124
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +23 -124
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +23 -130
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +23 -130
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +23 -124
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +23 -124
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  34. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  35. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  36. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  37. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  38. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  39. package/package.json +8 -8
@@ -195,7 +195,7 @@
195
195
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
196
196
  return Symbol('x').toString() === 'Symbol(x)';
197
197
  }();
198
- /** version: 2.5.8 */
198
+ /** version: 2.6.1 */
199
199
 
200
200
  /*
201
201
  * Copyright (c) 2018, salesforce.com, inc.
@@ -516,20 +516,6 @@
516
516
 
517
517
  return cloned;
518
518
  }
519
- /**
520
- * Copyright (C) 2018 salesforce.com, inc.
521
- */
522
-
523
-
524
- if (!_globalThis.lwcRuntimeFlags) {
525
- Object.defineProperty(_globalThis, 'lwcRuntimeFlags', {
526
- value: create(null)
527
- });
528
- }
529
-
530
- var runtimeFlags = _globalThis.lwcRuntimeFlags;
531
- /** version: 2.5.8 */
532
-
533
519
  /*
534
520
  * Copyright (c) 2018, salesforce.com, inc.
535
521
  * All rights reserved.
@@ -537,6 +523,7 @@
537
523
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
538
524
  */
539
525
 
526
+
540
527
  var eventTargetPrototype = typeof EventTarget !== 'undefined' ? EventTarget.prototype : _Node.prototype;
541
528
  var addEventListener = eventTargetPrototype.addEventListener,
542
529
  dispatchEvent = eventTargetPrototype.dispatchEvent,
@@ -589,17 +576,9 @@
589
576
  assert.invariant(isFalse(isSyntheticShadowHost(currentTarget)), 'This routine should not be used to wrap event listeners for host elements and shadow roots.');
590
577
  }
591
578
 
592
- var composed = event.composed;
593
- var shouldInvoke;
579
+ var actualTarget = getActualTarget(event);
594
580
 
595
- if (runtimeFlags.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE) {
596
- shouldInvoke = !(eventToShadowRootMap.has(event) && isFalse(composed));
597
- } else {
598
- var actualTarget = getActualTarget(event);
599
- shouldInvoke = shouldInvokeListener(event, actualTarget, currentTarget);
600
- }
601
-
602
- if (!shouldInvoke) {
581
+ if (!shouldInvokeListener(event, actualTarget, currentTarget)) {
603
582
  return;
604
583
  }
605
584
 
@@ -620,25 +599,6 @@
620
599
 
621
600
 
622
601
  var eventToContextMap = new WeakMap();
623
-
624
- function isChildNode(root, node) {
625
- return !!(compareDocumentPosition.call(root, node) & DOCUMENT_POSITION_CONTAINED_BY);
626
- }
627
-
628
- var GET_ROOT_NODE_CONFIG_FALSE = {
629
- composed: false
630
- };
631
-
632
- function getRootNodeHost(node, options) {
633
- var rootNode = node.getRootNode(options);
634
-
635
- if (isSyntheticShadowRoot(rootNode)) {
636
- rootNode = getHost(rootNode);
637
- }
638
-
639
- return rootNode;
640
- }
641
-
642
602
  var customElementToWrappedListeners = new WeakMap();
643
603
 
644
604
  function getEventMap(elm) {
@@ -683,16 +643,9 @@
683
643
  currentTarget = getShadowRoot(currentTarget);
684
644
  }
685
645
 
686
- var shouldInvoke;
687
-
688
- if (runtimeFlags.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE) {
689
- shouldInvoke = shouldInvokeShadowRootListener(event);
690
- } else {
691
- var actualTarget = getActualTarget(event);
692
- shouldInvoke = shouldInvokeListener(event, actualTarget, currentTarget);
693
- }
646
+ var actualTarget = getActualTarget(event);
694
647
 
695
- if (shouldInvoke) {
648
+ if (shouldInvokeListener(event, actualTarget, currentTarget)) {
696
649
  listener.call(currentTarget, event);
697
650
  }
698
651
  };
@@ -719,16 +672,9 @@
719
672
  customElementWrappedListener = function customElementWrappedListener(event) {
720
673
  // currentTarget is always defined inside an event listener
721
674
  var currentTarget = eventCurrentTargetGetter.call(event);
722
- var shouldInvoke;
723
-
724
- if (runtimeFlags.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE) {
725
- shouldInvoke = shouldInvokeCustomElementListener(event);
726
- } else {
727
- var actualTarget = getActualTarget(event);
728
- shouldInvoke = shouldInvokeListener(event, actualTarget, currentTarget);
729
- }
675
+ var actualTarget = getActualTarget(event);
730
676
 
731
- if (shouldInvoke) {
677
+ if (shouldInvokeListener(event, actualTarget, currentTarget)) {
732
678
  listener.call(currentTarget, event);
733
679
  }
734
680
  };
@@ -845,66 +791,6 @@
845
791
  }
846
792
  }
847
793
 
848
- function shouldInvokeCustomElementListener(event) {
849
- var composed = event.composed;
850
-
851
- if (isTrue(composed)) {
852
- // Listeners on host elements should always be invoked for {composed: true} events.
853
- return true;
854
- } // If this {composed: false} event was dispatched on any root.
855
-
856
-
857
- if (eventToShadowRootMap.has(event)) {
858
- return false;
859
- }
860
-
861
- var target = eventTargetGetter.call(event);
862
- var currentTarget = eventCurrentTargetGetter.call(event); // If this {composed: false} event was dispatched on the current target host.
863
-
864
- if (target === currentTarget) {
865
- return true;
866
- } // At this point the event must be {bubbles: true, composed: false} and was dispatched from a
867
- // shadow-excluding descendant node. In this case, we only invoke the listener if the target
868
- // host was assigned to a slot in the composed subtree of the current target host.
869
-
870
-
871
- var targetHost = getRootNodeHost(target, GET_ROOT_NODE_CONFIG_FALSE);
872
- var currentTargetHost = currentTarget;
873
- return isChildNode(targetHost, currentTargetHost);
874
- }
875
-
876
- function shouldInvokeShadowRootListener(event) {
877
- var composed = event.composed;
878
- var target = eventTargetGetter.call(event);
879
- var currentTarget = eventCurrentTargetGetter.call(event); // If the event was dispatched on the host or its root.
880
-
881
- if (target === currentTarget) {
882
- // Invoke the listener if the event was dispatched directly on the root.
883
- return eventToShadowRootMap.get(event) === getShadowRoot(target);
884
- } // At this point the event is {bubbles: true} and was dispatched from a shadow-including descendant node.
885
-
886
-
887
- if (isTrue(composed)) {
888
- // Invoke the listener if the event is {composed: true}.
889
- return true;
890
- } // At this point the event must be {bubbles: true, composed: false}.
891
-
892
-
893
- if (isTrue(eventToShadowRootMap.has(event))) {
894
- // Don't invoke the listener because the event was dispatched on a descendant root.
895
- return false;
896
- }
897
-
898
- var targetHost = getRootNodeHost(target, GET_ROOT_NODE_CONFIG_FALSE);
899
- var currentTargetHost = currentTarget;
900
- var isCurrentTargetSlotted = isChildNode(targetHost, currentTargetHost); // At this point the event must be {bubbles: true, composed: false} and was dispatched from a
901
- // shadow-excluding descendant node. In this case, we only invoke the listener if the target
902
- // host was assigned to a slot in the composed subtree of the current target host, or the
903
- // descendant node is in the shadow tree of the current root.
904
-
905
- return isCurrentTargetSlotted || targetHost === currentTargetHost;
906
- }
907
-
908
794
  function addCustomElementEventListener(type, listener, _options) {
909
795
  if (process.env.NODE_ENV !== 'production') {
910
796
  if (!isFunction(listener)) {
@@ -1620,6 +1506,20 @@
1620
1506
  }
1621
1507
  }
1622
1508
  }
1509
+ /**
1510
+ * Copyright (C) 2018 salesforce.com, inc.
1511
+ */
1512
+
1513
+
1514
+ if (!_globalThis.lwcRuntimeFlags) {
1515
+ Object.defineProperty(_globalThis, 'lwcRuntimeFlags', {
1516
+ value: create(null)
1517
+ });
1518
+ }
1519
+
1520
+ var runtimeFlags = _globalThis.lwcRuntimeFlags;
1521
+ /** version: 2.6.1 */
1522
+
1623
1523
  /*
1624
1524
  * Copyright (c) 2018, salesforce.com, inc.
1625
1525
  * All rights reserved.
@@ -1634,7 +1534,6 @@
1634
1534
  * because we don't want to patch the children getters for those elements.
1635
1535
  */
1636
1536
 
1637
-
1638
1537
  function hasMountedChildren(node) {
1639
1538
  return isSyntheticSlotElement(node) || isSyntheticShadowHost(node);
1640
1539
  }
@@ -5633,6 +5532,6 @@
5633
5532
  },
5634
5533
  configurable: true
5635
5534
  });
5636
- /** version: 2.5.8 */
5535
+ /** version: 2.6.1 */
5637
5536
 
5638
5537
  }));
@@ -1,4 +1,4 @@
1
- !function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}var l=Object.assign,o=Object.create,a=Object.defineProperties,i=Object.defineProperty,u=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,s=Object.hasOwnProperty,f=Object.setPrototypeOf,h=Array.prototype,p=h.filter,g=h.find,m=h.indexOf,v=h.map,b=h.push,d=h.reduce,E=h.reverse,y=h.slice,w=h.splice,T=h.forEach,N=String.prototype.charCodeAt;function L(e){return void 0===e}function M(e){return null===e}function C(e){return!0===e}function S(e){return!1===e}function O(e){return"function"==typeof e}function A(e){return"object"===r(e)}var H,_,R=function(){if("object"===("undefined"==typeof globalThis?"undefined":r(globalThis)))return globalThis;var 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}(),P="$shadowResolver$",D="$shadowToken$",$=Node,B=$.prototype,I=$.DOCUMENT_POSITION_CONTAINED_BY,k=$.DOCUMENT_POSITION_PRECEDING,x=$.DOCUMENT_POSITION_FOLLOWING,F=$.ELEMENT_NODE,W=$.TEXT_NODE,j=$.CDATA_SECTION_NODE,U=$.PROCESSING_INSTRUCTION_NODE,K=$.COMMENT_NODE,G=B.appendChild,q=B.cloneNode,X=B.compareDocumentPosition,V=B.insertBefore,Y=B.removeChild,z=B.replaceChild,J=B.hasChildNodes,Q=HTMLElement.prototype.contains,Z=u(B,"firstChild").get,ee=u(B,"lastChild").get,te=u(B,"textContent").get,ne=u(B,"parentNode").get,re=u(B,"ownerDocument").get,le=s.call(B,"parentElement")?u(B,"parentElement").get:u(HTMLElement.prototype,"parentElement").get,oe=u(B,"textContent").set,ae=s.call(B,"childNodes")?u(B,"childNodes").get:u(HTMLElement.prototype,"childNodes").get,ie=s.call(B,"isConnected")?u(B,"isConnected").get:function(){var e=re.call(this);return null===e||0!=(X.call(e,this)&I)},ue=Element.prototype,ce=ue.getAttribute,se=ue.getBoundingClientRect,fe=ue.getElementsByTagName,he=ue.getElementsByTagNameNS,pe=ue.hasAttribute,ge=ue.querySelector,me=ue.querySelectorAll,ve=ue.removeAttribute,be=ue.setAttribute,de=s.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ee=u(Element.prototype,"childElementCount").get,ye=u(Element.prototype,"firstElementChild").get,we=u(Element.prototype,"lastElementChild").get,Te=u(HTMLElement.prototype,"innerText"),Ne=Te?Te.get:null,Le=Te?Te.set:null,Me=u(HTMLElement.prototype,"outerText"),Ce=Me?Me.get:null,Se=Me?Me.set:null,Oe=s.call(Element.prototype,"innerHTML")?u(Element.prototype,"innerHTML"):u(HTMLElement.prototype,"innerHTML"),Ae=Oe.get,He=Oe.set,_e=s.call(Element.prototype,"outerHTML")?u(Element.prototype,"outerHTML"):u(HTMLElement.prototype,"outerHTML"),Re=_e.get,Pe=_e.set,De=u(Element.prototype,"tagName").get,$e=u(HTMLElement.prototype,"tabIndex"),Be=$e.get,Ie=$e.set,ke=s.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xe=s.call(Element.prototype,"children")?u(Element.prototype,"children").get:u(HTMLElement.prototype,"children").get,Fe=HTMLElement.prototype.getElementsByClassName,We=s.call(Element.prototype,"shadowRoot")?u(Element.prototype,"shadowRoot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(H=HTMLSlotElement.prototype.assignedNodes,_=HTMLSlotElement.prototype.assignedElements):(H=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},_=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var je=u(Event.prototype,"target").get,Ue=u(Event.prototype,"currentTarget").get,Ke=u(FocusEvent.prototype,"relatedTarget").get,Ge=s.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},qe=u(Document.prototype,"activeElement").get,Xe=s.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Ve=s.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Ye=u(Document.prototype,"defaultView").get,ze=Document.prototype,Je=ze.querySelectorAll,Qe=ze.getElementById,Ze=ze.getElementsByClassName,et=ze.getElementsByTagName,tt=ze.getElementsByTagNameNS,nt=HTMLDocument.prototype.getElementsByName,rt=window,lt=rt.addEventListener,ot=rt.removeEventListener,at=rt.getComputedStyle,it=rt.getSelection,ut=MutationObserver,ct=ut.prototype.observe,st=null;"undefined"!=typeof ShadowRoot&&(st=ShadowRoot);var ft=!M(st),ht=M(st)?function(){return!1}:function(e){return e instanceof st};var pt,gt=Document.prototype.createElement;function mt(e){var t=re.call(e);return null===t?e:t}function vt(e){var t=mt(e),n=Ye.call(t);if(null===n)throw new TypeError;return n}function bt(e){if(L(pt)){var t=mt(e);pt=t.body&&"temporary-bypass"===ce.call(t.body,"data-global-patching-bypass")}return C(pt)}function dt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)};f(e,HTMLElement.constructor),f(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,i(Document.prototype,"createElement",{value:function(t,n){var r=gt.apply(this,y.call(arguments));return 4===t.length&&115===N.call(t,0)&&108===N.call(t,1)&&111===N.call(t,2)&&116===N.call(t,3)&&f(r,e.prototype),r}})}(),R.lwcRuntimeFlags||Object.defineProperty(R,"lwcRuntimeFlags",{value:o(null)});var Et=R.lwcRuntimeFlags,yt="undefined"!=typeof EventTarget?EventTarget.prototype:$.prototype,wt=yt.addEventListener,Tt=yt.dispatchEvent,Nt=yt.removeEventListener,Lt=new WeakMap,Mt=new WeakMap;function Ct(e,t,n){if(t===n)return!0;var r=Mt.get(e);return L(r)&&(r=e.composedPath(),Mt.set(e,r)),r.includes(n)}function St(e){if(!function(e){return O(e)||A(e)&&!M(e)&&O(e.handleEvent)}(e))return e;var t=Lt.get(e);return L(t)&&(t=function(t){var n,r=Ue.call(t),l=t.composed;Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=!(lr.has(t)&&S(l)):n=Ct(t,Dt(t),r);if(n)return O(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Lt.set(e,t)),t}var Ot=new WeakMap;function At(e,t){return!!(X.call(e,t)&I)}var Ht={composed:!1};function _t(e,t){var n=e.getRootNode(t);return Zn(n)&&(n=zn(n)),n}var Rt=new WeakMap;function Pt(e){var t=Rt.get(e);return L(t)&&(t=o(null),Rt.set(e,t)),t}function Dt(e){var t;return null!==(t=lr.get(e))&&void 0!==t?t:je.call(e)}var $t=new WeakMap;function Bt(e){if(!O(e))throw new TypeError;var t=$t.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);(ht(r)||(r=Jn(r)),Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)?n=function(e){var t=e.composed,n=je.call(e),r=Ue.call(e);if(n===r)return lr.get(e)===Jn(n);if(C(t))return!0;if(C(lr.has(e)))return!1;var l=_t(n,Ht),o=r;return At(l,o)||l===o}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=1,$t.set(e,t)),t}var It=new WeakMap;function kt(e){if(!O(e))throw new TypeError;var t=It.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=function(e){if(C(e.composed))return!0;if(lr.has(e))return!1;var t=je.call(e),n=Ue.call(e);if(t===n)return!0;return At(_t(t,Ht),n)}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=0,It.set(e,t)),t}function xt(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Pt(Ue.call(e))[r];i(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),i(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var u=y.call(a);function c(n){T.call(u,(function(r){S(t)&&r.placement===n&&-1!==m.call(a,r)&&r.call(void 0,e)}))}Ot.set(e,1),c(1),S(t)&&S(n)&&(Ot.set(e,0),c(0)),Ot.set(e,2)}function Ft(e,t,n){var r=Pt(e),l=r[t];L(l)&&(l=r[t]=[]),-1===m.call(l,n)&&(0===l.length&&wt.call(e,t,xt),b.call(l,n))}function Wt(e,t,n){var r,l;L(l=Pt(e)[t])||-1===(r=m.call(l,n))||(w.call(l,r,1),0===l.length&&Nt.call(e,t,xt))}function jt(e,t,n){O(t)&&Ft(this,e,kt(t))}function Ut(e,t,n){O(t)&&Wt(this,e,kt(t))}var Kt="$$HostElementKey$$",Gt="$$ShadowedNodeKey$$";function qt(e,t,n){var r=e,l=n.value;r[t]=l}function Xt(e){return e[Kt]}function Vt(e){for(var t,n=e;!M(n);){if(!L(t=Xt(n)))return t;n=ne.call(n)}}function Yt(e){return e[Gt]}function zt(e){return!L(Xt(e))}function Jt(e){for(var t=le.call(e);!M(t)&&tn(t);)e=t,t=le.call(e);return e}function Qt(e,t){for(var n=Yt(e),r=t instanceof Element?t:le.call(t);!M(r)&&r!==e;){var l=Vt(r),o=le.call(r);if(l===n)return tn(r);if(o===e)return!1;if(M(o)||Vt(o)===l)r=o;else{if(!tn(o))return!1;if(!M(r=Zt(Jt(o)))){if(r===e)return!0;if(Vt(r)===n)return!0}}}return!1}function Zt(e){if(!(e instanceof $))return null;var t=Vt(e);if(L(t))return null;for(var n=e;!M(n)&&Yt(n)!==t;)n=ne.call(n);return M(n)?null:n}function en(e){return tn(e)&&zt(e)}function tn(e){return e instanceof HTMLSlotElement}function nn(e,t){var n=Vt(t);return L(n)||Yt(e)===n}function rn(e){var t=zn(e);return an(t,dt(ae.call(t)))}function ln(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!nn(e,o)&&Qt(e,o)&&b.call(n,o)}return n}function on(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!nn(e,l)&&Qt(e,l))return l}return null}function an(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];nn(e,o)&&b.call(n,o)}return n}function un(e,t){for(var n=0,r=t.length;n<r;n+=1)if(nn(e,t[n]))return t[n];return null}function cn(e){if(!Qn(e)&&!tn(e))return dt(ae.call(e));if(Qn(e)){var t=dt(me.call(e,"slot")),n=Xn(Jn(e));return d.call(t,(function(e,t){return n===Xn(t)&&b.apply(e,sn(t)),e}),[])}var r=dt(ae.call(e)),l=Xn(e);return p.call(r,(function(e){return l===Xn(e)}))}function sn(e){var t=Zt(e);if(M(t))return[];var n=dt(ae.call(e));return p.call(n,(function(e){return!zt(e)||!nn(t,e)}))}function fn(e){if(e.nodeType===F){for(var t=cn(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==K&&(n+=fn(o))}return n}return e.nodeValue}var hn=new WeakMap;function pn(){throw new TypeError("Illegal constructor")}function gn(e){var t=o(pn.prototype);return hn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}pn.prototype=o(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:pn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return hn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){T.call(hn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return hn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=hn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),f(pn,NodeList);var mn=new WeakMap;function vn(){throw new TypeError("Illegal constructor")}function bn(e){var t=o(vn.prototype);return mn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}vn.prototype=o(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:vn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return mn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=mn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===ce.call(l,"id")||e===ce.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),f(vn,HTMLCollection);var dn=/[&\u00A0"]/g,En=/[&\u00A0<>]/g,yn=String.prototype,wn=yn.replace,Tn=yn.toLowerCase;function Nn(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function Ln(e){return wn.call(e,dn,Nn)}var Mn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Cn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Sn(e){switch(e.nodeType){case F:for(var t,n=e.attributes,r=De.call(e),l="<"+Tn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Ln(t.value)+'"';return l+=">",Mn.has(r)?l:l+function(e){for(var t="",n=cn(e),r=0,l=n.length;r<l;r+=1)t+=Sn(n[r]);return t}(e)+"</"+Tn.call(r)+">";case W:var a=e.data,i=e.parentNode;return i instanceof Element&&Cn.has(De.call(i))?a:function(e){return wn.call(e,En,Nn)}(a);case j:return"<!CDATA[[".concat(e.data,"]]>");case U:return"<?".concat(e.target," ").concat(e.data,"?>");case K:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function On(e){return en(e)||Qn(e)}function An(e,t){var n=Zt(e);if(t===n)return Jn(n);if(t instanceof Element){if(Vt(e)===Vt(t))return t;if(!M(n)&&tn(t)){var r=Zt(t);if(!M(r)&&nn(n,r))return r}}return null}function Hn(){return jn(this).length>0}function _n(){return jn(this)[0]||null}function Rn(){var e=jn(this);return e[e.length-1]||null}function Pn(){return fn(this)}function Dn(){var e=ne.call(this);return M(e)?e:An(this,e)}function $n(){var e=ne.call(this);if(M(e))return null;var t=An(this,e);return t instanceof Element?t:null}function Bn(e){return this.getRootNode()===e?10:Xt(this)!==Xt(e)?35:X.call(this,e)}function In(e){return null!=e&&Xt(this)===Xt(e)&&0!=(X.call(this,e)&I)}function kn(e){var t=q.call(this,!1);if(!e)return t;for(var n=jn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function xn(){if(Qn(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)}var Fn=$.prototype.getRootNode,Wn=L(Fn)?function(){for(var e,t=this;!M(e=ne.call(t));)t=e;return t}:Fn;a($.prototype,{firstChild:{get:function(){return On(this)?_n.call(this):Z.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return On(this)?Rn.call(this):ee.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Et.ENABLE_NODE_PATCH?bt(this)?te.call(this):Pn.call(this):zt(this)||Qn(this)?Pn.call(this):te.call(this)},set:function(e){oe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(zt(this))return Dn.call(this);var e=ne.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(zt(this))return $n.call(this);var e=le.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return On(this)?xn.call(this):ae.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return On(this)?Hn.call(this):J.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return bt(this)?X.call(this,e):Bn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Et.ENABLE_NODE_PATCH?bt(this)?Q.call(this,e):In.call(this,e):null!=e&&(zt(this)||Qn(this)?In.call(this,e):Q.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Et.ENABLE_NODE_PATCH?C(e)?bt(this)?q.call(this,e):kn.call(this,e):q.call(this,e):zt(this)||Qn(this)?kn.call(this,e):q.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return C(!L(e)&&!!e.composed)?Wn.call(this,e):M(n=Zt(t=this))?Wn.call(t):Jn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(this)}}});var jn=function(e){return e.childNodes};function Un(e,t,n,r){var l=Ve.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!L(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!M(l))for(var i=0;i<l.length;i++){var u=l[i];-1===a.indexOf(u.getRootNode())||en(u)||o.push(u)}return o}s.call(HTMLElement.prototype,"contains")&&i(HTMLElement.prototype,"contains",u($.prototype,"contains")),s.call(HTMLElement.prototype,"parentElement")&&i(HTMLElement.prototype,"parentElement",u($.prototype,"parentElement"));var Kn=new WeakMap,Gn=document.createDocumentFragment;function qn(e){var t=Kn.get(e);if(L(t))throw new TypeError;return t}function Xn(e){return e.$shadowResolver$}function Vn(e,t){e.$shadowResolver$=t}function Yn(e){return qn(e).delegatesFocus}function zn(e){return qn(e).host}function Jn(e){return qn(e).shadowRoot}function Qn(e){var t=Kn.get(e);return!L(t)&&e===t.host}function Zn(e){var t=Kn.get(e);return!L(t)&&e===t.shadowRoot}i($.prototype,P,{set:function(e){var t,n;L(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,qt(t,Kt,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),i(R,"$isNativeShadowRootDefined$",{value:ft});var er=0;function tr(e,t){if(Kn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=mt(e),o=Gn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Kn.set(o,a),Kn.set(e,a);var i=function(){return o},u=i.nodeKey=er++;return qt(e,Gt,{value:u}),Vn(o,i),f(o,ar.prototype),o}var nr={constructor:{writable:!0,configurable:!0,value:ar},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},rr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=zn(this),t=mt(e),n=qe.call(t);if(M(n))return n;if(0==(X.call(e,n)&I))return null;for(var r=n;!nn(e,r);)r=le.call(r);return tn(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return qn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return cr(this,mt(zn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Un(this,mt(zn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return zn(this)}},mode:{configurable:!0,get:function(){return qn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},lr=new WeakMap,or={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return V.call(zn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Y.call(zn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return G.call(zn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(zn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Ft(zn(e),t,Bt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return lr.set(e,this),Tt.apply(zn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Wt(zn(e),t,Bt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return zn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return gn(rn(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=zn(this);return this===e?0:this.contains(e)?20:X.call(t,e)&I?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=zn(this);return 0!=(X.call(t,e)&I)&&nn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return jn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=jn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return jn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(zn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return zn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==K&&(t+=fn(l))}return t},set:function(e){var t=zn(this);oe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!L(e)&&C(e.composed)?zn(this).getRootNode(e):this}}};function ar(){throw new TypeError("Illegal constructor")}function ir(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof $))return r;n=e.getRootNode()}for(var l,o=e;!M(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=M(a)?o.parentNode:a}else o=!Zn(o)&&!ht(o)||!t&&o===n?o instanceof $?o.parentNode:null:o.host;return l=e instanceof Window?e.document:mt(e),r[r.length-1]===l&&r.push(window),r}
1
+ !function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}var l=Object.assign,o=Object.create,a=Object.defineProperties,i=Object.defineProperty,u=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,s=Object.hasOwnProperty,f=Object.setPrototypeOf,h=Array.prototype,p=h.filter,g=h.find,m=h.indexOf,v=h.map,b=h.push,d=h.reduce,y=h.reverse,E=h.slice,w=h.splice,T=h.forEach,N=String.prototype.charCodeAt;function L(e){return void 0===e}function M(e){return null===e}function C(e){return!0===e}function S(e){return!1===e}function O(e){return"function"==typeof e}function H(e){return"object"===r(e)}var A,R,_=function(){if("object"===("undefined"==typeof globalThis?"undefined":r(globalThis)))return globalThis;var 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}(),P="$shadowResolver$",D="$shadowToken$",$=Node,B=$.prototype,I=$.DOCUMENT_POSITION_CONTAINED_BY,k=$.DOCUMENT_POSITION_PRECEDING,x=$.DOCUMENT_POSITION_FOLLOWING,F=$.ELEMENT_NODE,W=$.TEXT_NODE,j=$.CDATA_SECTION_NODE,U=$.PROCESSING_INSTRUCTION_NODE,K=$.COMMENT_NODE,G=B.appendChild,q=B.cloneNode,X=B.compareDocumentPosition,Y=B.insertBefore,V=B.removeChild,z=B.replaceChild,J=B.hasChildNodes,Q=HTMLElement.prototype.contains,Z=u(B,"firstChild").get,ee=u(B,"lastChild").get,te=u(B,"textContent").get,ne=u(B,"parentNode").get,re=u(B,"ownerDocument").get,le=s.call(B,"parentElement")?u(B,"parentElement").get:u(HTMLElement.prototype,"parentElement").get,oe=u(B,"textContent").set,ae=s.call(B,"childNodes")?u(B,"childNodes").get:u(HTMLElement.prototype,"childNodes").get,ie=s.call(B,"isConnected")?u(B,"isConnected").get:function(){var e=re.call(this);return null===e||0!=(X.call(e,this)&I)},ue=Element.prototype,ce=ue.getAttribute,se=ue.getBoundingClientRect,fe=ue.getElementsByTagName,he=ue.getElementsByTagNameNS,pe=ue.hasAttribute,ge=ue.querySelector,me=ue.querySelectorAll,ve=ue.removeAttribute,be=ue.setAttribute,de=s.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},ye=u(Element.prototype,"childElementCount").get,Ee=u(Element.prototype,"firstElementChild").get,we=u(Element.prototype,"lastElementChild").get,Te=u(HTMLElement.prototype,"innerText"),Ne=Te?Te.get:null,Le=Te?Te.set:null,Me=u(HTMLElement.prototype,"outerText"),Ce=Me?Me.get:null,Se=Me?Me.set:null,Oe=s.call(Element.prototype,"innerHTML")?u(Element.prototype,"innerHTML"):u(HTMLElement.prototype,"innerHTML"),He=Oe.get,Ae=Oe.set,Re=s.call(Element.prototype,"outerHTML")?u(Element.prototype,"outerHTML"):u(HTMLElement.prototype,"outerHTML"),_e=Re.get,Pe=Re.set,De=u(Element.prototype,"tagName").get,$e=u(HTMLElement.prototype,"tabIndex"),Be=$e.get,Ie=$e.set,ke=s.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xe=s.call(Element.prototype,"children")?u(Element.prototype,"children").get:u(HTMLElement.prototype,"children").get,Fe=HTMLElement.prototype.getElementsByClassName,We=s.call(Element.prototype,"shadowRoot")?u(Element.prototype,"shadowRoot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(A=HTMLSlotElement.prototype.assignedNodes,R=HTMLSlotElement.prototype.assignedElements):(A=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},R=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var je=u(Event.prototype,"target").get,Ue=u(Event.prototype,"currentTarget").get,Ke=u(FocusEvent.prototype,"relatedTarget").get,Ge=s.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},qe=u(Document.prototype,"activeElement").get,Xe=s.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Ye=s.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Ve=u(Document.prototype,"defaultView").get,ze=Document.prototype,Je=ze.querySelectorAll,Qe=ze.getElementById,Ze=ze.getElementsByClassName,et=ze.getElementsByTagName,tt=ze.getElementsByTagNameNS,nt=HTMLDocument.prototype.getElementsByName,rt=window,lt=rt.addEventListener,ot=rt.removeEventListener,at=rt.getComputedStyle,it=rt.getSelection,ut=MutationObserver,ct=ut.prototype.observe,st=null;"undefined"!=typeof ShadowRoot&&(st=ShadowRoot);var ft=!M(st),ht=M(st)?function(){return!1}:function(e){return e instanceof st};var pt,gt=Document.prototype.createElement;function mt(e){var t=re.call(e);return null===t?e:t}function vt(e){var t=mt(e),n=Ve.call(t);if(null===n)throw new TypeError;return n}function bt(e){if(L(pt)){var t=mt(e);pt=t.body&&"temporary-bypass"===ce.call(t.body,"data-global-patching-bypass")}return C(pt)}function dt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)};f(e,HTMLElement.constructor),f(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,i(Document.prototype,"createElement",{value:function(t,n){var r=gt.apply(this,E.call(arguments));return 4===t.length&&115===N.call(t,0)&&108===N.call(t,1)&&111===N.call(t,2)&&116===N.call(t,3)&&f(r,e.prototype),r}})}();var yt="undefined"!=typeof EventTarget?EventTarget.prototype:$.prototype,Et=yt.addEventListener,wt=yt.dispatchEvent,Tt=yt.removeEventListener,Nt=new WeakMap,Lt=new WeakMap;function Mt(e,t,n){if(t===n)return!0;var r=Lt.get(e);return L(r)&&(r=e.composedPath(),Lt.set(e,r)),r.includes(n)}function Ct(e){if(!function(e){return O(e)||H(e)&&!M(e)&&O(e.handleEvent)}(e))return e;var t=Nt.get(e);return L(t)&&(t=function(t){var n=Ue.call(t);if(Mt(t,At(t),n))return O(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Nt.set(e,t)),t}var St=new WeakMap,Ot=new WeakMap;function Ht(e){var t=Ot.get(e);return L(t)&&(t=o(null),Ot.set(e,t)),t}function At(e){var t;return null!==(t=tr.get(e))&&void 0!==t?t:je.call(e)}var Rt=new WeakMap;function _t(e){if(!O(e))throw new TypeError;var t=Rt.get(e);return L(t)&&((t=function(t){var n=Ue.call(t);ht(n)||(n=Yn(n)),Mt(t,At(t),n)&&e.call(n,t)}).placement=1,Rt.set(e,t)),t}var Pt=new WeakMap;function Dt(e){if(!O(e))throw new TypeError;var t=Pt.get(e);return L(t)&&((t=function(t){var n=Ue.call(t);Mt(t,At(t),n)&&e.call(n,t)}).placement=0,Pt.set(e,t)),t}function $t(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Ht(Ue.call(e))[r];i(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),i(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var u=E.call(a);function c(n){T.call(u,(function(r){S(t)&&r.placement===n&&-1!==m.call(a,r)&&r.call(void 0,e)}))}St.set(e,1),c(1),S(t)&&S(n)&&(St.set(e,0),c(0)),St.set(e,2)}function Bt(e,t,n){var r=Ht(e),l=r[t];L(l)&&(l=r[t]=[]),-1===m.call(l,n)&&(0===l.length&&Et.call(e,t,$t),b.call(l,n))}function It(e,t,n){var r,l;L(l=Ht(e)[t])||-1===(r=m.call(l,n))||(w.call(l,r,1),0===l.length&&Tt.call(e,t,$t))}function kt(e,t,n){O(t)&&Bt(this,e,Dt(t))}function xt(e,t,n){O(t)&&It(this,e,Dt(t))}var Ft="$$HostElementKey$$",Wt="$$ShadowedNodeKey$$";function jt(e,t,n){var r=e,l=n.value;r[t]=l}function Ut(e){return e[Ft]}function Kt(e){for(var t,n=e;!M(n);){if(!L(t=Ut(n)))return t;n=ne.call(n)}}function Gt(e){return e[Wt]}function qt(e){return!L(Ut(e))}function Xt(e){for(var t=le.call(e);!M(t)&&Jt(t);)e=t,t=le.call(e);return e}function Yt(e,t){for(var n=Gt(e),r=t instanceof Element?t:le.call(t);!M(r)&&r!==e;){var l=Kt(r),o=le.call(r);if(l===n)return Jt(r);if(o===e)return!1;if(M(o)||Kt(o)===l)r=o;else{if(!Jt(o))return!1;if(!M(r=Vt(Xt(o)))){if(r===e)return!0;if(Kt(r)===n)return!0}}}return!1}function Vt(e){if(!(e instanceof $))return null;var t=Kt(e);if(L(t))return null;for(var n=e;!M(n)&&Gt(n)!==t;)n=ne.call(n);return M(n)?null:n}function zt(e){return Jt(e)&&qt(e)}function Jt(e){return e instanceof HTMLSlotElement}function Qt(e,t){var n=Kt(t);return L(n)||Gt(e)===n}function Zt(e){var t=Xn(e);return nn(t,dt(ae.call(t)))}function en(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!Qt(e,o)&&Yt(e,o)&&b.call(n,o)}return n}function tn(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!Qt(e,l)&&Yt(e,l))return l}return null}function nn(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];Qt(e,o)&&b.call(n,o)}return n}function rn(e,t){for(var n=0,r=t.length;n<r;n+=1)if(Qt(e,t[n]))return t[n];return null}function ln(e){if(!Vn(e)&&!Jt(e))return dt(ae.call(e));if(Vn(e)){var t=dt(me.call(e,"slot")),n=Kn(Yn(e));return d.call(t,(function(e,t){return n===Kn(t)&&b.apply(e,on(t)),e}),[])}var r=dt(ae.call(e)),l=Kn(e);return p.call(r,(function(e){return l===Kn(e)}))}function on(e){var t=Vt(e);if(M(t))return[];var n=dt(ae.call(e));return p.call(n,(function(e){return!qt(e)||!Qt(t,e)}))}function an(e){if(e.nodeType===F){for(var t=ln(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==K&&(n+=an(o))}return n}return e.nodeValue}var un=new WeakMap;function cn(){throw new TypeError("Illegal constructor")}function sn(e){var t=o(cn.prototype);return un.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}cn.prototype=o(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:cn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return un.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){T.call(un.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(un.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(un.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return un.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=un.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),f(cn,NodeList);var fn=new WeakMap;function hn(){throw new TypeError("Illegal constructor")}function pn(e){var t=o(hn.prototype);return fn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}hn.prototype=o(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:hn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return fn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=fn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===ce.call(l,"id")||e===ce.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),f(hn,HTMLCollection);var gn=/[&\u00A0"]/g,mn=/[&\u00A0<>]/g,vn=String.prototype,bn=vn.replace,dn=vn.toLowerCase;function yn(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function En(e){return bn.call(e,gn,yn)}var wn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Tn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Nn(e){switch(e.nodeType){case F:for(var t,n=e.attributes,r=De.call(e),l="<"+dn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+En(t.value)+'"';return l+=">",wn.has(r)?l:l+function(e){for(var t="",n=ln(e),r=0,l=n.length;r<l;r+=1)t+=Nn(n[r]);return t}(e)+"</"+dn.call(r)+">";case W:var a=e.data,i=e.parentNode;return i instanceof Element&&Tn.has(De.call(i))?a:function(e){return bn.call(e,mn,yn)}(a);case j:return"<!CDATA[[".concat(e.data,"]]>");case U:return"<?".concat(e.target," ").concat(e.data,"?>");case K:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}_.lwcRuntimeFlags||Object.defineProperty(_,"lwcRuntimeFlags",{value:o(null)});var Ln=_.lwcRuntimeFlags;function Mn(e){return zt(e)||Vn(e)}function Cn(e,t){var n=Vt(e);if(t===n)return Yn(n);if(t instanceof Element){if(Kt(e)===Kt(t))return t;if(!M(n)&&Jt(t)){var r=Vt(t);if(!M(r)&&Qt(n,r))return r}}return null}function Sn(){return xn(this).length>0}function On(){return xn(this)[0]||null}function Hn(){var e=xn(this);return e[e.length-1]||null}function An(){return an(this)}function Rn(){var e=ne.call(this);return M(e)?e:Cn(this,e)}function _n(){var e=ne.call(this);if(M(e))return null;var t=Cn(this,e);return t instanceof Element?t:null}function Pn(e){return this.getRootNode()===e?10:Ut(this)!==Ut(e)?35:X.call(this,e)}function Dn(e){return null!=e&&Ut(this)===Ut(e)&&0!=(X.call(this,e)&I)}function $n(e){var t=q.call(this,!1);if(!e)return t;for(var n=xn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function Bn(){if(Vn(this)){var e=Vt(this);return sn(M(e)?[]:nn(e,ln(this)))}return ae.call(this)}var In=$.prototype.getRootNode,kn=L(In)?function(){for(var e,t=this;!M(e=ne.call(t));)t=e;return t}:In;a($.prototype,{firstChild:{get:function(){return Mn(this)?On.call(this):Z.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return Mn(this)?Hn.call(this):ee.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Ln.ENABLE_NODE_PATCH?bt(this)?te.call(this):An.call(this):qt(this)||Vn(this)?An.call(this):te.call(this)},set:function(e){oe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(qt(this))return Rn.call(this);var e=ne.call(this);return!M(e)&&zt(e)?Vt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(qt(this))return _n.call(this);var e=le.call(this);return!M(e)&&zt(e)?Vt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return Mn(this)?Bn.call(this):ae.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return Mn(this)?Sn.call(this):J.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return bt(this)?X.call(this,e):Pn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Ln.ENABLE_NODE_PATCH?bt(this)?Q.call(this,e):Dn.call(this,e):null!=e&&(qt(this)||Vn(this)?Dn.call(this,e):Q.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Ln.ENABLE_NODE_PATCH?C(e)?bt(this)?q.call(this,e):$n.call(this,e):q.call(this,e):qt(this)||Vn(this)?$n.call(this,e):q.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return C(!L(e)&&!!e.composed)?kn.call(this,e):M(n=Vt(t=this))?kn.call(t):Yn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(this)}}});var xn=function(e){return e.childNodes};function Fn(e,t,n,r){var l=Ye.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!L(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!M(l))for(var i=0;i<l.length;i++){var u=l[i];-1===a.indexOf(u.getRootNode())||zt(u)||o.push(u)}return o}s.call(HTMLElement.prototype,"contains")&&i(HTMLElement.prototype,"contains",u($.prototype,"contains")),s.call(HTMLElement.prototype,"parentElement")&&i(HTMLElement.prototype,"parentElement",u($.prototype,"parentElement"));var Wn=new WeakMap,jn=document.createDocumentFragment;function Un(e){var t=Wn.get(e);if(L(t))throw new TypeError;return t}function Kn(e){return e.$shadowResolver$}function Gn(e,t){e.$shadowResolver$=t}function qn(e){return Un(e).delegatesFocus}function Xn(e){return Un(e).host}function Yn(e){return Un(e).shadowRoot}function Vn(e){var t=Wn.get(e);return!L(t)&&e===t.host}function zn(e){var t=Wn.get(e);return!L(t)&&e===t.shadowRoot}i($.prototype,P,{set:function(e){var t,n;L(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,jt(t,Ft,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),i(_,"$isNativeShadowRootDefined$",{value:ft});var Jn=0;function Qn(e,t){if(Wn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=mt(e),o=jn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Wn.set(o,a),Wn.set(e,a);var i=function(){return o},u=i.nodeKey=Jn++;return jt(e,Wt,{value:u}),Gn(o,i),f(o,rr.prototype),o}var Zn={constructor:{writable:!0,configurable:!0,value:rr},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},er={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=Xn(this),t=mt(e),n=qe.call(t);if(M(n))return n;if(0==(X.call(e,n)&I))return null;for(var r=n;!Qt(e,r);)r=le.call(r);return Jt(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return Un(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ar(this,mt(Xn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Fn(this,mt(Xn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return Xn(this)}},mode:{configurable:!0,get:function(){return Un(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},tr=new WeakMap,nr={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Y.call(Xn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return V.call(Xn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return G.call(Xn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(Xn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Bt(Xn(e),t,_t(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return tr.set(e,this),wt.apply(Xn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&It(Xn(e),t,_t(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return Xn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return sn(Zt(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=Xn(this);return this===e?0:this.contains(e)?20:X.call(t,e)&I?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=Xn(this);return 0!=(X.call(t,e)&I)&&Qt(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return xn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=xn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return xn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(Xn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return Xn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=xn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==K&&(t+=an(l))}return t},set:function(e){var t=Xn(this);oe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!L(e)&&C(e.composed)?Xn(this).getRootNode(e):this}}};function rr(){throw new TypeError("Illegal constructor")}function lr(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof $))return r;n=e.getRootNode()}for(var l,o=e;!M(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=M(a)?o.parentNode:a}else o=!zn(o)&&!ht(o)||!t&&o===n?o instanceof $?o.parentNode:null:o.host;return l=e instanceof Window?e.document:mt(e),r[r.length-1]===l&&r.push(window),r}
2
2
  /**
3
3
  @license
4
4
  Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
@@ -7,4 +7,4 @@
7
7
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
8
8
  Code distributed by Google as part of the polymer project is also
9
9
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
10
- */function ur(e,t){if(M(e))return null;for(var n,r,l,o,a=ir(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!Zn(l)||!L(o)&&o>-1)return n;return null}function cr(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:ur(e,ir(l,!0))}l(nr,or,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return bn(p.call(rn(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,un(n=zn(this),dt(me.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return gn((t=e,an(n=zn(this),dt(me.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t},set:function(e){var t=zn(this);He.call(t,e)}}},rr),ar.prototype=o(DocumentFragment.prototype,nr),i(ar,Symbol.hasInstance,{value:function(e){return A(e)&&!M(e)&&(ht(e)||c(e)===ar.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return cr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Un(this,this,e,t)},i(Document.prototype,"activeElement",{get:function(){var e=qe.call(this);if(M(e))return e;for(;!L(Xt(e));)if(M(e=le.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),i(Document.prototype,"getElementById",{value:function(){var e=Qe.apply(this,y.call(arguments));return M(e)?null:L(Xt(e))||bt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=g.call(e,(function(e){return L(Xt(e))||bt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=dt(Ze.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=dt(et.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=dt(tt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=dt(nt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ar,configurable:!0,writable:!0});var sr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var fr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function hr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!sr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!sr.get.call(e)})()&&(HTMLElement.prototype.click=function(){wt.call(this,"click",hr);try{fr.value.call(this)}finally{Nt.call(this,"click",hr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=l(o(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var pr,gr,mr=CustomEvent;function vr(e,t){var n=new mr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(vr.prototype=mr.prototype,window.CustomEvent=vr,"undefined"!=typeof ClipboardEvent){var br=l(o(null),{copy:1,cut:1,paste:1});a(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===br[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(pr=u(HTMLIFrameElement.prototype,"contentWindow"),gr=pr.get,pr.get=function(){var e,t=gr.call(this);return M(t)||L(Xt(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},i(HTMLIFrameElement.prototype,"contentWindow",pr));var dr,Er=MutationObserver,yr=Er.prototype,wr=yr.disconnect,Tr=yr.observe,Nr=yr.takeRecords,Lr="$$lwcObserverCallbackWrapper$$",Mr=new WeakMap;function Cr(e){return e.$$lwcNodeObservers$$}function Sr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,i=o(MutationRecord.prototype);return a(i,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),i}function Or(e,t){for(var n=t;!M(n);){var r=Cr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Ar(e,t){return d.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Yt(r)))Or(t,r)&&b.call(e,n);else if(l.length>0){var a=l[0];if(Or(t,a)){var i=Cr(r);!i||i[0]!==t&&-1===m.call(i,t)?b.call(e,Sr(n)):b.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Vt(r)===Vt(c)&&Or(t,r))b.call(e,n);else if(u){var s=Cr(u);!s||s[0]!==t&&-1===m.call(s,t)||b.call(e,Sr(n))}}return e}),[])}function Hr(e){var t=function(e){var t=e[Lr];return L(t)&&(t=e[Lr]=function(t,n){var r=Ar(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new Er(t)}function _r(e,t,n){if(arguments.length>1){var r=y.call(arguments);return r[1]=St(r[1]),lt.apply(this,r)}return lt.apply(this,arguments)}function Rr(e,t,n){if(arguments.length>1){var r=y.call(arguments);r[1]=St(r[1]),ot.apply(this,r)}ot.apply(this,arguments)}function Pr(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=ir(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Xt(e))?e:ur(t,n);if(r===t||r===t.body)return L(Xt(e))?e:ur(t,n);var l=r,o=n;Qn(r)&&(1===Ot.get(this)&&(l=Jn(r)));return Qn(e)&&lr.has(this)&&(o=ir(Jn(e),this.composed)),ur(l,o)}function Dr(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Kn.has(t));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Qn(e)&&lr.has(this)&&(l=Jn(e)),ir(l,this.composed)}function $r(e){var t=u(e.prototype,"relatedTarget").get;i(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(M(e))return null;if(!(e instanceof $&&zt(e)))return e;var n=Ue.call(this);return M(n)&&(n=mt(e)),ur(n,ir(e,!0))},enumerable:!0,configurable:!0})}Hr.prototype=Er.prototype,Hr.prototype.disconnect=function(){var e=this;wr.call(this);var t=Mr.get(this);L(t)||(T.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!L(n)){var r=m.call(n,e);-1!==r&&w.call(n,r,1)}})),t.length=0)},Hr.prototype.observe=function(e,t){var n,r=Cr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&b.call(r,this),Zn(e)&&(e=e.host),Mr.has(this)){var l=Mr.get(this);-1===m.call(l,e)&&b.call(l,e)}else Mr.set(this,[e]);return Tr.call(this,e,t)},Hr.prototype.takeRecords=function(){return Ar(Nr.call(this),this)},i(window,"MutationObserver",{value:Hr,configurable:!0,writable:!0}),a(yt,{addEventListener:{value:function(e,t,n){if(Qn(this))return jt.apply(this,arguments);if(arguments.length<2){var r=y.call(arguments);return r.length>1&&(r[1]=St(r[1])),wt.apply(this,r)}var l=St(t);return wt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Qn(this))return Ut.apply(this,arguments);var r=y.call(arguments);arguments.length>1&&(r[1]=St(r[1])),Nt.apply(this,r),Nt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&a(Window.prototype,{addEventListener:{value:_r,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Rr,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:Pr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ue.call(this);return M(e)?null:1===Ot.get(this)?Jn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Dr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Pr,enumerable:!0,configurable:!0},path:{get:Dr,enumerable:!0,configurable:!0}}),$r(FocusEvent),$r(MouseEvent);var Br={childList:!0},Ir=new WeakMap;function kr(e){var t=dt(ae.call(e));return d.call(t,(function(e,t){return t instanceof Element&&tn(t)?b.apply(e,kr(t)):b.call(e,t),e}),[])}function xr(){var e=ne.call(this);return!M(e)&&tn(e)&&Xt(e)!==Xt(this)?e:null}function Fr(e,t){var n,r=Xt(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);else if(Qn(e)){var l=Zt(e);n=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else n=p.call(t,(function(e){return Vt(e)===r}));return n}function Wr(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t}function jr(){return Sn(this)}function Ur(){var e=Zt(this),t=M(e)?[]:an(e,cn(this));return bn(p.call(t,(function(e){return e instanceof Element})))}function Kr(){return this.children.length}function Gr(){return this.children[0]||null}function qr(){var e=this.children;return e.item(e.length-1)||null}function Xr(e,t,n){var r;if(Qn(e)){var l=Zt(e);r=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else if(zt(e)){var o=Xt(e);if(L(o))if(1===n){var a=Vt(e);r=p.call(t,(function(e){return Vt(e)===a}))}else r=y.call(t);else r=p.call(t,(function(e){return Vt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);return r}a(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Ir.get(this)||(Ir.set(this,!0),dr||(dr=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(b.call(t,n),Tt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(dr,this,Br))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten),n=t?kr(this):sn(this);return p.call(n,(function(e){return e instanceof Element}))}return _.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten);return t?kr(this):sn(this)}return H.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=ce.call(this,"name");return M(e)?"":e},set:function(e){be.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(zt(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)},enumerable:!0,configurable:!0}}),a(Text.prototype,{assignedSlot:{get:xr,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Ae.call(this):Wr.call(this):zt(this)||Qn(this)?Wr.call(this):Ae.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Re.call(this):jr.call(this):zt(this)||Qn(this)?jr.call(this):Re.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?tr(this,e):de.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Qn(this)){var e=Jn(this);if("open"===e.mode)return e}return We.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return On(this)?Ur.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return On(this)?Kr.call(this):Ee.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return On(this)?Gr.call(this):ye.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return On(this)?qr.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:xr,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"innerHTML")&&i(HTMLElement.prototype,"innerHTML",u(Element.prototype,"innerHTML")),s.call(HTMLElement.prototype,"outerHTML")&&i(HTMLElement.prototype,"outerHTML",u(Element.prototype,"outerHTML")),s.call(HTMLElement.prototype,"children")&&i(HTMLElement.prototype,"children",u(Element.prototype,"children")),a(Element.prototype,{querySelector:{value:function(){var e=this,t=dt(me.apply(this,y.call(arguments)));if(Qn(this)){var n=Zt(this);return M(n)?null:Yt(this)?on(this,t):un(n,t)}if(zt(this)){var r=Xt(this);if(L(r)){if(!Et.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=Vt(this),o=g.call(t,(function(e){return Vt(e)===l}));return L(o)?null:o}var a=g.call(t,(function(e){return Vt(e)===r}));return L(a)?null:a}if(!(Et.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return L(i)?null:i}var u=g.call(t,(function(t){return L(Xt(t))||bt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=dt(me.apply(this,y.call(arguments)));if(!Et.ENABLE_NODE_LIST_PATCH){var t=Xr(this,e,0);return gn(t)}return gn(Xr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=dt(Fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Fr(this,e));var t=Xr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=dt(fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Fr(this,e));var t=Xr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=dt(he.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Fr(this,e));var t=Xr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"getElementsByClassName")&&i(HTMLElement.prototype,"getElementsByClassName",u(Element.prototype,"getElementsByClassName"));var Vr="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Yr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function zr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!Yr.has(De.call(e))||!pe.call(e,"disabled")}))}var Jr=new WeakMap;function Qr(e){return(!Qn(e)||!Yn(e))&&(ke.call(e,Vr)&&function(e){var t=se.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Zr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=dt(me.call(this,Vr)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ge.call(this,Vr);M(a)||a.focus.apply(a,arguments)}}function el(e){var t=mt(e),n=zr(dt(Je.call(t,Vr))),r=zr(dt(me.call(e,Vr))),l=r[0],o=r[r.length-1],a=m.call(n,e),i=a>-1?a:m.call(n,l),u=0===r.length?i+1:m.call(n,o)+1;return{prev:y.call(n,0,i),inner:r,next:y.call(n,u)}}function tl(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function nl(e){e.preventDefault(),e.stopPropagation()}function rl(e,t){lt.call(e,"focusin",nl,!0),lt.call(e,"focusout",nl,!0),t(),ot.call(e,"focusin",nl,!0),ot.call(e,"focusout",nl,!0)}function ll(e,t,n){var r=vt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(fl(t.getRootNode(),l))return l}return null}(e,n);M(l)?rl(r,(function(){t.blur()})):rl(r,(function(){l.focus()}))}var ol=!1;function al(){ol=!0}function il(){ol=!1}function ul(){return!ol}function cl(e){if(!ol){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=el(t);if(1===tl(t,r)){var o=fl.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))ll(l.next,n,r);else rl(vt(a),(function(){a.focus()}))}else t===n&&ll(E.call(l.prev),n,r)}}}}function sl(e){if(!ol){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=el(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=tl(n,t);1===o&&ll(r.next,l,t),2===o&&ll(E.call(r.prev),l,t)}}}}function fl(e,t){if(!Qr(t))return!1;for(var n=mt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===ce.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function hl(e){Nt.call(e,"focusin",cl,!0)}function pl(e){var t=mt(e);Jr.get(t)||(Jr.set(t,!0),wt.call(t,"mousedown",al,!0),wt.call(t,"mouseup",(function(){setTimeout(il)}),!0),wt.call(t,"dragstart",il,!0))}function gl(e){Nt.call(e,"focusin",sl,!0)}function ml(e){var t=vt(e);return at.call(t,e)}function vl(e){var t=vt(e);return it.call(t)}function bl(e){return"visible"===e.visibility&&"none"!==e.display}function dl(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=ml(e);if("OPTION"===n)return[1,Ne.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)b.apply(t,dl(l[o]));if(!bl(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===W})(e)&&t.push(function(e){var t=vl(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function El(e){if(!bl(ml(e)))return fn(e)||"";for(var t=function(e){var t=vt(e),n=vl(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)b.apply(n,dl(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=vt(t),i=vl(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var yl=HTMLElement.prototype,wl=yl.blur,Tl=yl.focus;function Nl(){return Yn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function Ll(e){var t=Yn(this),n=Be.call(this),r=pe.call(this,"tabindex");Ie.call(this,e);var l,o=Be.call(this),a=pe.call(this,"tabindex"),i=n!==o;(r&&(i||S(a))&&(-1===n&&gl(this),0===n&&t&&hl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(pl(l=this),hl(l),wt.call(l,"focusin",sl,!0)),0===o&&t&&function(e){pl(e),gl(e),wt.call(e,"focusin",cl,!0)}(this)))}function Ml(){if(Yn(this)){var e=(n=mt(t=this),M(r=qe.call(n))||0!=(X.call(t,r)&I)?r:null);if(!M(e))return void e.blur()}var t,n,r;return wl.call(this)}function Cl(){var e=ul();e&&al(),Qn(this)&&Yn(this)?Zr.call(this):(Tl.apply(this,arguments),e&&il())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Qn(this)?Nl.call(this):Be.call(this)},set:function(e){return Qn(this)?Ll.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Qn(this))return Ml.call(this);wl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Cl.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Ne&&null!==Le&&i(HTMLElement.prototype,"innerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ne.call(this):El(this):zt(this)||Qn(this)?El(this):Ne.call(this):Ne.call(this)},set:function(e){Le.call(this,e)},enumerable:!0,configurable:!0}),null!==Ce&&null!==Se&&i(HTMLElement.prototype,"outerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ce.call(this):El(this):zt(this)||Qn(this)?El(this):Ce.call(this):Ce.call(this)},set:function(e){Se.call(this,e)},enumerable:!0,configurable:!0}),i(Element.prototype,D,{set:function(e){var t=this.$$ShadowTokenKey$$;L(t)||t===e||ve.call(this,t),L(e)||be.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Sl,Ol=function(){},Al={childList:!0};function Hl(e,t,n){var r=Xn(e);if(r!==t&&(Vn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Qn(e))return;L(r)&&ct.call(Sl,e,Al);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)Hl(l[o],t,n)}}function _l(e){if(L(Sl)&&(Sl=new ut((function(e){T.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Xn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];X.call(t,u)&$.DOCUMENT_POSITION_CONTAINED_BY||Hl(u,Ol,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];X.call(t,f)&$.DOCUMENT_POSITION_CONTAINED_BY&&Hl(f,l,o)}}))}))),L(Xn(e)))throw new Error("Invalid Element");ct.call(Sl,e,Al)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&_l(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}));
10
+ */function or(e,t){if(M(e))return null;for(var n,r,l,o,a=lr(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!zn(l)||!L(o)&&o>-1)return n;return null}function ar(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:or(e,lr(l,!0))}l(Zn,nr,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return pn(p.call(Zt(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,rn(n=Xn(this),dt(me.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return sn((t=e,nn(n=Xn(this),dt(me.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=xn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Nn(e[n]);return t},set:function(e){var t=Xn(this);Ae.call(t,e)}}},er),rr.prototype=o(DocumentFragment.prototype,Zn),i(rr,Symbol.hasInstance,{value:function(e){return H(e)&&!M(e)&&(ht(e)||c(e)===rr.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return ar(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Fn(this,this,e,t)},i(Document.prototype,"activeElement",{get:function(){var e=qe.call(this);if(M(e))return e;for(;!L(Ut(e));)if(M(e=le.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),i(Document.prototype,"getElementById",{value:function(){var e=Qe.apply(this,E.call(arguments));return M(e)?null:L(Ut(e))||bt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=dt(Je.apply(this,E.call(arguments))),t=g.call(e,(function(e){return L(Ut(e))||bt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=dt(Je.apply(this,E.call(arguments))),t=p.call(e,(function(e){return L(Ut(e))||bt(e)}));return sn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=dt(Ze.apply(this,E.call(arguments))),t=p.call(e,(function(e){return L(Ut(e))||bt(e)}));return pn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=dt(et.apply(this,E.call(arguments))),t=p.call(e,(function(e){return L(Ut(e))||bt(e)}));return pn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=dt(tt.apply(this,E.call(arguments))),t=p.call(e,(function(e){return L(Ut(e))||bt(e)}));return pn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=dt(nt.apply(this,E.call(arguments))),t=p.call(e,(function(e){return L(Ut(e))||bt(e)}));return sn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:rr,configurable:!0,writable:!0});var ir=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var ur=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function cr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!ir)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!ir.get.call(e)})()&&(HTMLElement.prototype.click=function(){Et.call(this,"click",cr);try{ur.value.call(this)}finally{Tt.call(this,"click",cr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=l(o(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var sr,fr,hr=CustomEvent;function pr(e,t){var n=new hr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(pr.prototype=hr.prototype,window.CustomEvent=pr,"undefined"!=typeof ClipboardEvent){var gr=l(o(null),{copy:1,cut:1,paste:1});a(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===gr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(sr=u(HTMLIFrameElement.prototype,"contentWindow"),fr=sr.get,sr.get=function(){var e,t=fr.call(this);return M(t)||L(Ut(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},i(HTMLIFrameElement.prototype,"contentWindow",sr));var mr,vr=MutationObserver,br=vr.prototype,dr=br.disconnect,yr=br.observe,Er=br.takeRecords,wr="$$lwcObserverCallbackWrapper$$",Tr=new WeakMap;function Nr(e){return e.$$lwcNodeObservers$$}function Lr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,i=o(MutationRecord.prototype);return a(i,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),i}function Mr(e,t){for(var n=t;!M(n);){var r=Nr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Cr(e,t){return d.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Gt(r)))Mr(t,r)&&b.call(e,n);else if(l.length>0){var a=l[0];if(Mr(t,a)){var i=Nr(r);!i||i[0]!==t&&-1===m.call(i,t)?b.call(e,Lr(n)):b.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Kt(r)===Kt(c)&&Mr(t,r))b.call(e,n);else if(u){var s=Nr(u);!s||s[0]!==t&&-1===m.call(s,t)||b.call(e,Lr(n))}}return e}),[])}function Sr(e){var t=function(e){var t=e[wr];return L(t)&&(t=e[wr]=function(t,n){var r=Cr(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new vr(t)}function Or(e,t,n){if(arguments.length>1){var r=E.call(arguments);return r[1]=Ct(r[1]),lt.apply(this,r)}return lt.apply(this,arguments)}function Hr(e,t,n){if(arguments.length>1){var r=E.call(arguments);r[1]=Ct(r[1]),ot.apply(this,r)}ot.apply(this,arguments)}function Ar(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=lr(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Ut(e))?e:or(t,n);if(r===t||r===t.body)return L(Ut(e))?e:or(t,n);var l=r,o=n;Vn(r)&&(1===St.get(this)&&(l=Yn(r)));return Vn(e)&&tr.has(this)&&(o=lr(Yn(e),this.composed)),or(l,o)}function Rr(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Wn.has(t));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Vn(e)&&tr.has(this)&&(l=Yn(e)),lr(l,this.composed)}function _r(e){var t=u(e.prototype,"relatedTarget").get;i(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(M(e))return null;if(!(e instanceof $&&qt(e)))return e;var n=Ue.call(this);return M(n)&&(n=mt(e)),or(n,lr(e,!0))},enumerable:!0,configurable:!0})}Sr.prototype=vr.prototype,Sr.prototype.disconnect=function(){var e=this;dr.call(this);var t=Tr.get(this);L(t)||(T.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!L(n)){var r=m.call(n,e);-1!==r&&w.call(n,r,1)}})),t.length=0)},Sr.prototype.observe=function(e,t){var n,r=Nr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&b.call(r,this),zn(e)&&(e=e.host),Tr.has(this)){var l=Tr.get(this);-1===m.call(l,e)&&b.call(l,e)}else Tr.set(this,[e]);return yr.call(this,e,t)},Sr.prototype.takeRecords=function(){return Cr(Er.call(this),this)},i(window,"MutationObserver",{value:Sr,configurable:!0,writable:!0}),a(yt,{addEventListener:{value:function(e,t,n){if(Vn(this))return kt.apply(this,arguments);if(arguments.length<2){var r=E.call(arguments);return r.length>1&&(r[1]=Ct(r[1])),Et.apply(this,r)}var l=Ct(t);return Et.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Vn(this))return xt.apply(this,arguments);var r=E.call(arguments);arguments.length>1&&(r[1]=Ct(r[1])),Tt.apply(this,r),Tt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&a(Window.prototype,{addEventListener:{value:Or,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Hr,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:Ar,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ue.call(this);return M(e)?null:1===St.get(this)?Yn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Rr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Ar,enumerable:!0,configurable:!0},path:{get:Rr,enumerable:!0,configurable:!0}}),_r(FocusEvent),_r(MouseEvent);var Pr={childList:!0},Dr=new WeakMap;function $r(e){var t=dt(ae.call(e));return d.call(t,(function(e,t){return t instanceof Element&&Jt(t)?b.apply(e,$r(t)):b.call(e,t),e}),[])}function Br(){var e=ne.call(this);return!M(e)&&Jt(e)&&Ut(e)!==Ut(this)?e:null}function Ir(e,t){var n,r=Ut(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Ut(t))||bt(e)})):E.call(t);else if(Vn(e)){var l=Vt(e);n=M(l)?[]:Gt(e)?en(e,t):nn(l,t)}else n=p.call(t,(function(e){return Kt(e)===r}));return n}function kr(){for(var e=xn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Nn(e[n]);return t}function xr(){return Nn(this)}function Fr(){var e=Vt(this),t=M(e)?[]:nn(e,ln(this));return pn(p.call(t,(function(e){return e instanceof Element})))}function Wr(){return this.children.length}function jr(){return this.children[0]||null}function Ur(){var e=this.children;return e.item(e.length-1)||null}function Kr(e,t,n){var r;if(Vn(e)){var l=Vt(e);r=M(l)?[]:Gt(e)?en(e,t):nn(l,t)}else if(qt(e)){var o=Ut(e);if(L(o))if(1===n){var a=Kt(e);r=p.call(t,(function(e){return Kt(e)===a}))}else r=E.call(t);else r=p.call(t,(function(e){return Kt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?p.call(t,(function(t){return L(Ut(t))||bt(e)})):E.call(t);return r}a(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Dr.get(this)||(Dr.set(this,!0),mr||(mr=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(b.call(t,n),wt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(mr,this,Pr))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(qt(this)){var t=!L(e)&&C(e.flatten),n=t?$r(this):on(this);return p.call(n,(function(e){return e instanceof Element}))}return R.apply(this,E.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(qt(this)){var t=!L(e)&&C(e.flatten);return t?$r(this):on(this)}return A.apply(this,E.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=ce.call(this,"name");return M(e)?"":e},set:function(e){be.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(qt(this)){var e=Vt(this);return sn(M(e)?[]:nn(e,ln(this)))}return ae.call(this)},enumerable:!0,configurable:!0}}),a(Text.prototype,{assignedSlot:{get:Br,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Ln.ENABLE_ELEMENT_PATCH?bt(this)?He.call(this):kr.call(this):qt(this)||Vn(this)?kr.call(this):He.call(this)},set:function(e){Ae.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Ln.ENABLE_ELEMENT_PATCH?bt(this)?_e.call(this):xr.call(this):qt(this)||Vn(this)?xr.call(this):_e.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?Qn(this,e):de.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Vn(this)){var e=Yn(this);if("open"===e.mode)return e}return We.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return Mn(this)?Fr.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return Mn(this)?Wr.call(this):ye.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return Mn(this)?jr.call(this):Ee.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return Mn(this)?Ur.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Br,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"innerHTML")&&i(HTMLElement.prototype,"innerHTML",u(Element.prototype,"innerHTML")),s.call(HTMLElement.prototype,"outerHTML")&&i(HTMLElement.prototype,"outerHTML",u(Element.prototype,"outerHTML")),s.call(HTMLElement.prototype,"children")&&i(HTMLElement.prototype,"children",u(Element.prototype,"children")),a(Element.prototype,{querySelector:{value:function(){var e=this,t=dt(me.apply(this,E.call(arguments)));if(Vn(this)){var n=Vt(this);return M(n)?null:Gt(this)?tn(this,t):rn(n,t)}if(qt(this)){var r=Ut(this);if(L(r)){if(!Ln.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=Kt(this),o=g.call(t,(function(e){return Kt(e)===l}));return L(o)?null:o}var a=g.call(t,(function(e){return Kt(e)===r}));return L(a)?null:a}if(!(Ln.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return L(i)?null:i}var u=g.call(t,(function(t){return L(Ut(t))||bt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=dt(me.apply(this,E.call(arguments)));if(!Ln.ENABLE_NODE_LIST_PATCH){var t=Kr(this,e,0);return sn(t)}return sn(Kr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=dt(Fe.apply(this,E.call(arguments)));if(!Ln.ENABLE_HTML_COLLECTIONS_PATCH)return pn(Ir(this,e));var t=Kr(this,e,1);return pn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=dt(fe.apply(this,E.call(arguments)));if(!Ln.ENABLE_HTML_COLLECTIONS_PATCH)return pn(Ir(this,e));var t=Kr(this,e,1);return pn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=dt(he.apply(this,E.call(arguments)));if(!Ln.ENABLE_HTML_COLLECTIONS_PATCH)return pn(Ir(this,e));var t=Kr(this,e,1);return pn(t)},writable:!0,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"getElementsByClassName")&&i(HTMLElement.prototype,"getElementsByClassName",u(Element.prototype,"getElementsByClassName"));var Gr="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",qr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Xr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!qr.has(De.call(e))||!pe.call(e,"disabled")}))}var Yr=new WeakMap;function Vr(e){return(!Vn(e)||!qn(e))&&(ke.call(e,Gr)&&function(e){var t=se.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function zr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=dt(me.call(this,Gr)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ge.call(this,Gr);M(a)||a.focus.apply(a,arguments)}}function Jr(e){var t=mt(e),n=Xr(dt(Je.call(t,Gr))),r=Xr(dt(me.call(e,Gr))),l=r[0],o=r[r.length-1],a=m.call(n,e),i=a>-1?a:m.call(n,l),u=0===r.length?i+1:m.call(n,o)+1;return{prev:E.call(n,0,i),inner:r,next:E.call(n,u)}}function Qr(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function Zr(e){e.preventDefault(),e.stopPropagation()}function el(e,t){lt.call(e,"focusin",Zr,!0),lt.call(e,"focusout",Zr,!0),t(),ot.call(e,"focusin",Zr,!0),ot.call(e,"focusout",Zr,!0)}function tl(e,t,n){var r=vt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(ul(t.getRootNode(),l))return l}return null}(e,n);M(l)?el(r,(function(){t.blur()})):el(r,(function(){l.focus()}))}var nl=!1;function rl(){nl=!0}function ll(){nl=!1}function ol(){return!nl}function al(e){if(!nl){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=Jr(t);if(1===Qr(t,r)){var o=ul.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))tl(l.next,n,r);else el(vt(a),(function(){a.focus()}))}else t===n&&tl(y.call(l.prev),n,r)}}}}function il(e){if(!nl){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=Jr(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=Qr(n,t);1===o&&tl(r.next,l,t),2===o&&tl(y.call(r.prev),l,t)}}}}function ul(e,t){if(!Vr(t))return!1;for(var n=mt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===ce.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function cl(e){Tt.call(e,"focusin",al,!0)}function sl(e){var t=mt(e);Yr.get(t)||(Yr.set(t,!0),Et.call(t,"mousedown",rl,!0),Et.call(t,"mouseup",(function(){setTimeout(ll)}),!0),Et.call(t,"dragstart",ll,!0))}function fl(e){Tt.call(e,"focusin",il,!0)}function hl(e){var t=vt(e);return at.call(t,e)}function pl(e){var t=vt(e);return it.call(t)}function gl(e){return"visible"===e.visibility&&"none"!==e.display}function ml(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=hl(e);if("OPTION"===n)return[1,Ne.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)b.apply(t,ml(l[o]));if(!gl(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===W})(e)&&t.push(function(e){var t=pl(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function vl(e){if(!gl(hl(e)))return an(e)||"";for(var t=function(e){var t=vt(e),n=pl(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)b.apply(n,ml(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=vt(t),i=pl(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var bl=HTMLElement.prototype,dl=bl.blur,yl=bl.focus;function El(){return qn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function wl(e){var t=qn(this),n=Be.call(this),r=pe.call(this,"tabindex");Ie.call(this,e);var l,o=Be.call(this),a=pe.call(this,"tabindex"),i=n!==o;(r&&(i||S(a))&&(-1===n&&fl(this),0===n&&t&&cl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(sl(l=this),cl(l),Et.call(l,"focusin",il,!0)),0===o&&t&&function(e){sl(e),fl(e),Et.call(e,"focusin",al,!0)}(this)))}function Tl(){if(qn(this)){var e=(n=mt(t=this),M(r=qe.call(n))||0!=(X.call(t,r)&I)?r:null);if(!M(e))return void e.blur()}var t,n,r;return dl.call(this)}function Nl(){var e=ol();e&&rl(),Vn(this)&&qn(this)?zr.call(this):(yl.apply(this,arguments),e&&ll())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Vn(this)?El.call(this):Be.call(this)},set:function(e){return Vn(this)?wl.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Vn(this))return Tl.call(this);dl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Nl.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Ne&&null!==Le&&i(HTMLElement.prototype,"innerText",{get:function(){return Ln.ENABLE_INNER_OUTER_TEXT_PATCH?Ln.ENABLE_ELEMENT_PATCH?bt(this)?Ne.call(this):vl(this):qt(this)||Vn(this)?vl(this):Ne.call(this):Ne.call(this)},set:function(e){Le.call(this,e)},enumerable:!0,configurable:!0}),null!==Ce&&null!==Se&&i(HTMLElement.prototype,"outerText",{get:function(){return Ln.ENABLE_INNER_OUTER_TEXT_PATCH?Ln.ENABLE_ELEMENT_PATCH?bt(this)?Ce.call(this):vl(this):qt(this)||Vn(this)?vl(this):Ce.call(this):Ce.call(this)},set:function(e){Se.call(this,e)},enumerable:!0,configurable:!0}),i(Element.prototype,D,{set:function(e){var t=this.$$ShadowTokenKey$$;L(t)||t===e||ve.call(this,t),L(e)||be.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Ll,Ml=function(){},Cl={childList:!0};function Sl(e,t,n){var r=Kn(e);if(r!==t&&(Gn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Vn(e))return;L(r)&&ct.call(Ll,e,Cl);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)Sl(l[o],t,n)}}function Ol(e){if(L(Ll)&&(Ll=new ut((function(e){T.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Kn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];X.call(t,u)&$.DOCUMENT_POSITION_CONTAINED_BY||Sl(u,Ml,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];X.call(t,f)&$.DOCUMENT_POSITION_CONTAINED_BY&&Sl(f,l,o)}}))}))),L(Kn(e)))throw new Error("Invalid Element");ct.call(Ll,e,Cl)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&Ol(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}));