lwc 2.5.1 → 2.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +84 -73
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +85 -74
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +2 -2
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +68 -55
  5. package/dist/engine-dom/iife/es5/engine-dom.js +125 -93
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +2 -2
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +106 -72
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +86 -75
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +2 -2
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +69 -56
  11. package/dist/engine-dom/umd/es5/engine-dom.js +126 -94
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +2 -2
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +107 -73
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +66 -73
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +2 -2
  16. package/dist/engine-server/esm/es2017/engine-server.js +66 -73
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +75 -39
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +76 -40
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +75 -39
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +76 -40
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +75 -39
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +77 -41
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +76 -40
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +77 -41
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +76 -40
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +3 -3
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +3 -3
  33. package/dist/wire-service/iife/es5/wire-service.js +3 -3
  34. package/dist/wire-service/iife/es5/wire-service.min.js +1 -1
  35. package/dist/wire-service/iife/es5/wire-service_debug.js +3 -3
  36. package/dist/wire-service/umd/es2017/wire-service.js +4 -4
  37. package/dist/wire-service/umd/es2017/wire-service_debug.js +4 -4
  38. package/dist/wire-service/umd/es5/wire-service.js +4 -4
  39. package/dist/wire-service/umd/es5/wire-service.min.js +1 -1
  40. package/dist/wire-service/umd/es5/wire-service_debug.js +4 -4
  41. package/package.json +8 -8
@@ -1,7 +1,7 @@
1
1
  (function (factory) {
2
2
  typeof define === 'function' && define.amd ? define(factory) :
3
3
  factory();
4
- }((function () { 'use strict';
4
+ })((function () { 'use strict';
5
5
 
6
6
  var _create, _create2;
7
7
 
@@ -195,7 +195,7 @@
195
195
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
196
196
  return Symbol('x').toString() === 'Symbol(x)';
197
197
  }();
198
- /** version: 2.5.1 */
198
+ /** version: 2.5.4 */
199
199
 
200
200
  /*
201
201
  * Copyright (c) 2018, salesforce.com, inc.
@@ -528,7 +528,7 @@
528
528
  }
529
529
 
530
530
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
531
- /** version: 2.5.1 */
531
+ /** version: 2.5.4 */
532
532
 
533
533
  /*
534
534
  * Copyright (c) 2018, salesforce.com, inc.
@@ -586,7 +586,7 @@
586
586
  var currentTarget = eventCurrentTargetGetter.call(event);
587
587
 
588
588
  if (process.env.NODE_ENV !== 'production') {
589
- assert.invariant(isFalse(isHostElement(currentTarget)), 'This routine should not be used to wrap event listeners for host elements and shadow roots.');
589
+ assert.invariant(isFalse(isSyntheticShadowHost(currentTarget)), 'This routine should not be used to wrap event listeners for host elements and shadow roots.');
590
590
  }
591
591
 
592
592
  var composed = event.composed;
@@ -1019,6 +1019,15 @@
1019
1019
  function isNodeShadowed(node) {
1020
1020
  return !isUndefined(getNodeOwnerKey(node));
1021
1021
  }
1022
+ /**
1023
+ * Returns true if this node is a shadow host, is in a shadow host, or contains a shadow host
1024
+ * anywhere in its tree.
1025
+ */
1026
+
1027
+
1028
+ function isNodeOrDescendantsShadowed(node) {
1029
+ return isNodeShadowed(node) || isSyntheticShadowHost(node) || containsHost(node);
1030
+ }
1022
1031
  /*
1023
1032
  * Copyright (c) 2018, salesforce.com, inc.
1024
1033
  * All rights reserved.
@@ -1218,13 +1227,13 @@
1218
1227
  }
1219
1228
 
1220
1229
  function getFilteredChildNodes(node) {
1221
- if (!isHostElement(node) && !isSlotElement(node)) {
1230
+ if (!isSyntheticShadowHost(node) && !isSlotElement(node)) {
1222
1231
  // regular element - fast path
1223
1232
  var children = childNodesGetter.call(node);
1224
1233
  return arrayFromCollection(children);
1225
1234
  }
1226
1235
 
1227
- if (isHostElement(node)) {
1236
+ if (isSyntheticShadowHost(node)) {
1228
1237
  // we need to get only the nodes that were slotted
1229
1238
  var slots = arrayFromCollection(querySelectorAll$1.call(node, 'slot'));
1230
1239
  var resolver = getShadowRootResolver(getShadowRoot(node)); // Typescript is inferring the wrong function type for this particular
@@ -1636,7 +1645,7 @@
1636
1645
 
1637
1646
 
1638
1647
  function hasMountedChildren(node) {
1639
- return isSyntheticSlotElement(node) || isHostElement(node);
1648
+ return isSyntheticSlotElement(node) || isSyntheticShadowHost(node);
1640
1649
  }
1641
1650
 
1642
1651
  function getShadowParent(node, value) {
@@ -1757,9 +1766,9 @@
1757
1766
 
1758
1767
 
1759
1768
  function childNodesGetterPatched() {
1760
- if (isHostElement(this)) {
1769
+ if (isSyntheticShadowHost(this)) {
1761
1770
  var owner = getNodeOwner(this);
1762
- var childNodes = isNull(owner) ? [] : getAllMatches(owner, getFilteredChildNodes(this));
1771
+ var childNodes = isNull(owner) ? getFilteredChildNodes(this) : getAllMatches(owner, getFilteredChildNodes(this));
1763
1772
 
1764
1773
  if (process.env.NODE_ENV !== 'production' && isFalse(hasNativeSymbolSupport) && isExternalChildNodeAccessorFlagOn()) {
1765
1774
  // inserting a comment node as the first childNode to trick the IE11
@@ -1868,7 +1877,8 @@
1868
1877
  textContent: {
1869
1878
  get: function get() {
1870
1879
  if (!runtimeFlags.ENABLE_NODE_PATCH) {
1871
- if (isNodeShadowed(this) || isHostElement(this)) {
1880
+ // See note on get innerHTML in faux-shadow/element.ts
1881
+ if (isNodeOrDescendantsShadowed(this)) {
1872
1882
  return textContentGetterPatched.call(this);
1873
1883
  }
1874
1884
 
@@ -1973,7 +1983,7 @@
1973
1983
  return false;
1974
1984
  }
1975
1985
 
1976
- if (isNodeShadowed(this) || isHostElement(this)) {
1986
+ if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
1977
1987
  return containsPatched.call(this, otherNode);
1978
1988
  }
1979
1989
 
@@ -1994,7 +2004,7 @@
1994
2004
  cloneNode: {
1995
2005
  value: function value(deep) {
1996
2006
  if (!runtimeFlags.ENABLE_NODE_PATCH) {
1997
- if (isNodeShadowed(this) || isHostElement(this)) {
2007
+ if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
1998
2008
  return cloneNodePatched.call(this, deep);
1999
2009
  }
2000
2010
 
@@ -2128,7 +2138,7 @@
2128
2138
  createDocumentFragment = _document.createDocumentFragment;
2129
2139
 
2130
2140
  function hasInternalSlot(root) {
2131
- return Boolean(InternalSlot.get(root));
2141
+ return InternalSlot.has(root);
2132
2142
  }
2133
2143
 
2134
2144
  function getInternalSlot(root) {
@@ -2180,14 +2190,36 @@
2180
2190
  // and we can avoid having to cast the type before calling this method in a few places.
2181
2191
 
2182
2192
 
2183
- function isHostElement(node) {
2184
- return !isUndefined(InternalSlot.get(node));
2193
+ function isSyntheticShadowHost(node) {
2194
+ var shadowRootRecord = InternalSlot.get(node);
2195
+ return !isUndefined(shadowRootRecord) && node === shadowRootRecord.host;
2196
+ }
2197
+
2198
+ function isSyntheticShadowRoot(node) {
2199
+ var shadowRootRecord = InternalSlot.get(node);
2200
+ return !isUndefined(shadowRootRecord) && node === shadowRootRecord.shadowRoot;
2201
+ } // Return true if any descendant is a host element
2202
+
2203
+
2204
+ function containsHost(node) {
2205
+ // IE requires all arguments
2206
+ // https://developer.mozilla.org/en-US/docs/Web/API/Document/createTreeWalker#browser_compatibility
2207
+ var walker = document.createTreeWalker(node, NodeFilter.SHOW_ELEMENT, null, false);
2208
+ var descendant;
2209
+
2210
+ while (!isNull(descendant = walker.nextNode())) {
2211
+ if (isSyntheticShadowHost(descendant)) {
2212
+ return true;
2213
+ }
2214
+ }
2215
+
2216
+ return false;
2185
2217
  }
2186
2218
 
2187
2219
  var uid = 0;
2188
2220
 
2189
2221
  function attachShadow(elm, options) {
2190
- if (!isUndefined(InternalSlot.get(elm))) {
2222
+ if (InternalSlot.has(elm)) {
2191
2223
  throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");
2192
2224
  }
2193
2225
 
@@ -2730,7 +2762,7 @@
2730
2762
  } else {
2731
2763
  current = current.parentNode;
2732
2764
  }
2733
- } else if ((current instanceof SyntheticShadowRoot || isInstanceOfNativeShadowRoot(current)) && (composed || current !== startRoot)) {
2765
+ } else if ((isSyntheticShadowRoot(current) || isInstanceOfNativeShadowRoot(current)) && (composed || current !== startRoot)) {
2734
2766
  current = current.host;
2735
2767
  } else if (current instanceof _Node) {
2736
2768
  current = current.parentNode;
@@ -2792,7 +2824,7 @@
2792
2824
  lastRoot = root;
2793
2825
  }
2794
2826
 
2795
- if (!(root instanceof SyntheticShadowRoot) || !isUndefined(rootIdx) && rootIdx > -1) {
2827
+ if (!isSyntheticShadowRoot(root) || !isUndefined(rootIdx) && rootIdx > -1) {
2796
2828
  return ancestor;
2797
2829
  }
2798
2830
  }
@@ -3585,10 +3617,10 @@
3585
3617
  if (ArrayIndexOf.call(targetObservers, this) === -1) {
3586
3618
  ArrayPush.call(targetObservers, this);
3587
3619
  } // else There is more bookkeeping to do here https://dom.spec.whatwg.org/#dom-mutationobserver-observe Step #7
3588
- // If the target is a SyntheticShadowRoot, observe the host since the shadowRoot is an empty documentFragment
3620
+ // SyntheticShadowRoot instances are not actually a part of the DOM so observe the host instead.
3589
3621
 
3590
3622
 
3591
- if (target instanceof SyntheticShadowRoot) {
3623
+ if (isSyntheticShadowRoot(target)) {
3592
3624
  target = target.host;
3593
3625
  } // maintain a list of all nodes observed by this observer
3594
3626
 
@@ -3631,7 +3663,7 @@
3631
3663
  */
3632
3664
 
3633
3665
  function patchedAddEventListener$1(type, listener, optionsOrCapture) {
3634
- if (isHostElement(this)) {
3666
+ if (isSyntheticShadowHost(this)) {
3635
3667
  // Typescript does not like it when you treat the `arguments` object as an array
3636
3668
  // @ts-ignore type-mismatch
3637
3669
  return addCustomElementEventListener.apply(this, arguments);
@@ -3659,7 +3691,7 @@
3659
3691
  }
3660
3692
 
3661
3693
  function patchedRemoveEventListener$1(_type, _listener, _optionsOrCapture) {
3662
- if (isHostElement(this)) {
3694
+ if (isSyntheticShadowHost(this)) {
3663
3695
  // Typescript does not like it when you treat the `arguments` object as an array
3664
3696
  // @ts-ignore type-mismatch
3665
3697
  return removeCustomElementEventListener.apply(this, arguments);
@@ -3825,7 +3857,7 @@
3825
3857
  var actualCurrentTarget = originalCurrentTarget;
3826
3858
  var actualPath = composedPath; // Address the possibility that `currentTarget` is a shadow root
3827
3859
 
3828
- if (isHostElement(originalCurrentTarget)) {
3860
+ if (isSyntheticShadowHost(originalCurrentTarget)) {
3829
3861
  var context = eventToContextMap.get(this);
3830
3862
 
3831
3863
  if (context === 1
@@ -3836,7 +3868,7 @@
3836
3868
  } // Address the possibility that `target` is a shadow root
3837
3869
 
3838
3870
 
3839
- if (isHostElement(originalTarget) && eventToShadowRootMap.has(this)) {
3871
+ if (isSyntheticShadowHost(originalTarget) && eventToShadowRootMap.has(this)) {
3840
3872
  actualPath = pathComposer(getShadowRoot(originalTarget), this.composed);
3841
3873
  }
3842
3874
 
@@ -3873,7 +3905,7 @@
3873
3905
 
3874
3906
  var actualTarget = originalTarget;
3875
3907
 
3876
- if (isHostElement(originalTarget) && eventToShadowRootMap.has(this)) {
3908
+ if (isSyntheticShadowHost(originalTarget) && eventToShadowRootMap.has(this)) {
3877
3909
  actualTarget = getShadowRoot(originalTarget);
3878
3910
  }
3879
3911
 
@@ -4137,7 +4169,7 @@
4137
4169
  var ownerKey = getNodeOwnerKey(context); // a node inside a shadow.
4138
4170
 
4139
4171
  if (!isUndefined(ownerKey)) {
4140
- if (isHostElement(context)) {
4172
+ if (isSyntheticShadowHost(context)) {
4141
4173
  // element with shadowRoot attached
4142
4174
  var owner = getNodeOwner(context);
4143
4175
 
@@ -4202,7 +4234,7 @@
4202
4234
  }
4203
4235
 
4204
4236
  function shadowRootGetterPatched() {
4205
- if (isHostElement(this)) {
4237
+ if (isSyntheticShadowHost(this)) {
4206
4238
  var shadow = getShadowRoot(this);
4207
4239
 
4208
4240
  if (shadow.mode === 'open') {
@@ -4240,7 +4272,10 @@
4240
4272
  innerHTML: {
4241
4273
  get: function get() {
4242
4274
  if (!runtimeFlags.ENABLE_ELEMENT_PATCH) {
4243
- if (isNodeShadowed(this) || isHostElement(this)) {
4275
+ // If this element is in synthetic shadow, if it's a synthetic shadow host,
4276
+ // or if any of its descendants are synthetic shadow hosts, then we can't
4277
+ // use the native innerHTML because it would expose private node internals.
4278
+ if (isNodeOrDescendantsShadowed(this)) {
4244
4279
  return innerHTMLGetterPatched.call(this);
4245
4280
  }
4246
4281
 
@@ -4263,7 +4298,8 @@
4263
4298
  outerHTML: {
4264
4299
  get: function get() {
4265
4300
  if (!runtimeFlags.ENABLE_ELEMENT_PATCH) {
4266
- if (isNodeShadowed(this) || isHostElement(this)) {
4301
+ // See notes above on get innerHTML
4302
+ if (isNodeOrDescendantsShadowed(this)) {
4267
4303
  return outerHTMLGetterPatched.call(this);
4268
4304
  }
4269
4305
 
@@ -4364,7 +4400,7 @@
4364
4400
 
4365
4401
  var nodeList = arrayFromCollection(querySelectorAll$1.apply(this, ArraySlice.call(arguments)));
4366
4402
 
4367
- if (isHostElement(this)) {
4403
+ if (isSyntheticShadowHost(this)) {
4368
4404
  // element with shadowRoot attached
4369
4405
  var owner = getNodeOwner(this);
4370
4406
 
@@ -4424,7 +4460,7 @@
4424
4460
  function getFilteredArrayOfNodes(context, unfilteredNodes, shadowDomSemantic) {
4425
4461
  var filtered;
4426
4462
 
4427
- if (isHostElement(context)) {
4463
+ if (isSyntheticShadowHost(context)) {
4428
4464
  // element with shadowRoot attached
4429
4465
  var owner = getNodeOwner(context);
4430
4466
 
@@ -4623,7 +4659,7 @@
4623
4659
 
4624
4660
 
4625
4661
  function isTabbable(element) {
4626
- if (isHostElement(element) && isDelegatingFocus(element)) {
4662
+ if (isSyntheticShadowHost(element) && isDelegatingFocus(element)) {
4627
4663
  return false;
4628
4664
  }
4629
4665
 
@@ -5322,7 +5358,7 @@
5322
5358
  disableKeyboardFocusNavigationRoutines();
5323
5359
  }
5324
5360
 
5325
- if (isHostElement(this) && isDelegatingFocus(this)) {
5361
+ if (isSyntheticShadowHost(this) && isDelegatingFocus(this)) {
5326
5362
  hostElementFocus.call(this);
5327
5363
  return;
5328
5364
  } // Typescript does not like it when you treat the `arguments` object as an array
@@ -5341,14 +5377,14 @@
5341
5377
  defineProperties(HTMLElement.prototype, {
5342
5378
  tabIndex: {
5343
5379
  get: function get() {
5344
- if (isHostElement(this)) {
5380
+ if (isSyntheticShadowHost(this)) {
5345
5381
  return tabIndexGetterPatched.call(this);
5346
5382
  }
5347
5383
 
5348
5384
  return tabIndexGetter.call(this);
5349
5385
  },
5350
5386
  set: function set(v) {
5351
- if (isHostElement(this)) {
5387
+ if (isSyntheticShadowHost(this)) {
5352
5388
  return tabIndexSetterPatched.call(this, v);
5353
5389
  }
5354
5390
 
@@ -5359,7 +5395,7 @@
5359
5395
  },
5360
5396
  blur: {
5361
5397
  value: function value() {
5362
- if (isHostElement(this)) {
5398
+ if (isSyntheticShadowHost(this)) {
5363
5399
  return blurPatched.call(this);
5364
5400
  }
5365
5401
 
@@ -5389,7 +5425,7 @@
5389
5425
  }
5390
5426
 
5391
5427
  if (!runtimeFlags.ENABLE_ELEMENT_PATCH) {
5392
- if (isNodeShadowed(this) || isHostElement(this)) {
5428
+ if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
5393
5429
  return getInnerText(this);
5394
5430
  }
5395
5431
 
@@ -5423,7 +5459,7 @@
5423
5459
  }
5424
5460
 
5425
5461
  if (!runtimeFlags.ENABLE_ELEMENT_PATCH) {
5426
- if (isNodeShadowed(this) || isHostElement(this)) {
5462
+ if (isNodeShadowed(this) || isSyntheticShadowHost(this)) {
5427
5463
  return getInnerText(this);
5428
5464
  }
5429
5465
 
@@ -5524,7 +5560,7 @@
5524
5560
  if (node instanceof Element) {
5525
5561
  setShadowToken(node, shadowToken);
5526
5562
 
5527
- if (isHostElement(node)) {
5563
+ if (isSyntheticShadowHost(node)) {
5528
5564
  // Root LWC elements can't get content slotted into them, therefore we don't observe their children.
5529
5565
  return;
5530
5566
  }
@@ -5627,6 +5663,6 @@
5627
5663
  },
5628
5664
  configurable: true
5629
5665
  });
5630
- /** version: 2.5.1 */
5666
+ /** version: 2.5.4 */
5631
5667
 
5632
- })));
5668
+ }));
@@ -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})(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,d=h.push,b=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,de=ue.setAttribute,be=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 dt(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 bt(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=!(rr.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"mode"in n&&"delegatesFocus"in 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=rr.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 rr.get(e)===Jn(n);if(C(t))return!0;if(C(rr.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(rr.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),d.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,bt(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)&&d.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)&&d.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 bt(ae.call(e));if(Qn(e)){var t=bt(me.call(e,"slot")),n=Xn(Jn(e));return b.call(t,(function(e,t){return n===Xn(t)&&d.apply(e,sn(t)),e}),[])}var r=bt(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=bt(ae.call(e));return p.call(n,(function(e){return!zt(e)||!nn(t,e)}))}function fn(e){switch(e.nodeType){case 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;default: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 dn(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 bn=/[&\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,bn,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?dt(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 dt(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?dt(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)?dt(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){return!L(Kn.get(e))}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 Zn=0;function er(e,t){if(!L(Kn.get(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=Zn++;return qt(e,Gt,{value:u}),Vn(o,i),f(o,lr.prototype),o}var tr={constructor:{writable:!0,configurable:!0,value:lr},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},nr={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 ir(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}}},rr=new WeakMap;function lr(){throw new TypeError("Illegal constructor")}function or(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=(o instanceof lr||ht(o))&&(t||o!==n)?o.host:o instanceof $?o.parentNode:null;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,d=h.push,b=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,de=ue.setAttribute,be=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 dt(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 bt(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=!(or.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"mode"in n&&"delegatesFocus"in n&&(n=Jn(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=or.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=Qn(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 or.get(e)===Qn(n);if(C(t))return!0;if(C(or.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(or.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),d.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){return zt(e)||Zn(e)||function(e){var t,n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,null,!1);for(;!M(t=n.nextNode());)if(Zn(t))return!0;return!1}(e)}function Qt(e){for(var t=le.call(e);!M(t)&&nn(t);)e=t,t=le.call(e);return e}function Zt(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 nn(r);if(o===e)return!1;if(M(o)||Vt(o)===l)r=o;else{if(!nn(o))return!1;if(!M(r=en(Qt(o)))){if(r===e)return!0;if(Vt(r)===n)return!0}}}return!1}function en(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 tn(e){return nn(e)&&zt(e)}function nn(e){return e instanceof HTMLSlotElement}function rn(e,t){var n=Vt(t);return L(n)||Yt(e)===n}function ln(e){var t=Jn(e);return un(t,bt(ae.call(t)))}function on(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!rn(e,o)&&Zt(e,o)&&d.call(n,o)}return n}function an(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!rn(e,l)&&Zt(e,l))return l}return null}function un(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];rn(e,o)&&d.call(n,o)}return n}function cn(e,t){for(var n=0,r=t.length;n<r;n+=1)if(rn(e,t[n]))return t[n];return null}function sn(e){if(!Zn(e)&&!nn(e))return bt(ae.call(e));if(Zn(e)){var t=bt(me.call(e,"slot")),n=Vn(Qn(e));return b.call(t,(function(e,t){return n===Vn(t)&&d.apply(e,fn(t)),e}),[])}var r=bt(ae.call(e)),l=Vn(e);return p.call(r,(function(e){return l===Vn(e)}))}function fn(e){var t=en(e);if(M(t))return[];var n=bt(ae.call(e));return p.call(n,(function(e){return!zt(e)||!rn(t,e)}))}function hn(e){if(e.nodeType===F){for(var t=sn(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==K&&(n+=hn(o))}return n}return e.nodeValue}var pn=new WeakMap;function gn(){throw new TypeError("Illegal constructor")}function mn(e){var t=o(gn.prototype);return pn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}gn.prototype=o(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:gn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return pn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){T.call(pn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(pn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(pn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return pn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=pn.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(gn,NodeList);var vn=new WeakMap;function dn(){throw new TypeError("Illegal constructor")}function bn(e){var t=o(dn.prototype);return vn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}dn.prototype=o(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:dn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return vn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=vn.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(dn,HTMLCollection);var En=/[&\u00A0"]/g,yn=/[&\u00A0<>]/g,wn=String.prototype,Tn=wn.replace,Nn=wn.toLowerCase;function Ln(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function Mn(e){return Tn.call(e,En,Ln)}var Cn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Sn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function On(e){switch(e.nodeType){case F:for(var t,n=e.attributes,r=De.call(e),l="<"+Nn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Mn(t.value)+'"';return l+=">",Cn.has(r)?l:l+function(e){for(var t="",n=sn(e),r=0,l=n.length;r<l;r+=1)t+=On(n[r]);return t}(e)+"</"+Nn.call(r)+">";case W:var a=e.data,i=e.parentNode;return i instanceof Element&&Sn.has(De.call(i))?a:function(e){return Tn.call(e,yn,Ln)}(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 An(e){return tn(e)||Zn(e)}function Hn(e,t){var n=en(e);if(t===n)return Qn(n);if(t instanceof Element){if(Vt(e)===Vt(t))return t;if(!M(n)&&nn(t)){var r=en(t);if(!M(r)&&rn(n,r))return r}}return null}function _n(){return Un(this).length>0}function Rn(){return Un(this)[0]||null}function Pn(){var e=Un(this);return e[e.length-1]||null}function Dn(){return hn(this)}function $n(){var e=ne.call(this);return M(e)?e:Hn(this,e)}function Bn(){var e=ne.call(this);if(M(e))return null;var t=Hn(this,e);return t instanceof Element?t:null}function In(e){return this.getRootNode()===e?10:Xt(this)!==Xt(e)?35:X.call(this,e)}function kn(e){return null!=e&&Xt(this)===Xt(e)&&0!=(X.call(this,e)&I)}function xn(e){var t=q.call(this,!1);if(!e)return t;for(var n=Un(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function Fn(){if(Zn(this)){var e=en(this);return mn(M(e)?sn(this):un(e,sn(this)))}return ae.call(this)}var Wn=$.prototype.getRootNode,jn=L(Wn)?function(){for(var e,t=this;!M(e=ne.call(t));)t=e;return t}:Wn;a($.prototype,{firstChild:{get:function(){return An(this)?Rn.call(this):Z.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return An(this)?Pn.call(this):ee.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Et.ENABLE_NODE_PATCH?dt(this)?te.call(this):Dn.call(this):Jt(this)?Dn.call(this):te.call(this)},set:function(e){oe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(zt(this))return $n.call(this);var e=ne.call(this);return!M(e)&&tn(e)?en(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(zt(this))return Bn.call(this);var e=le.call(this);return!M(e)&&tn(e)?en(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return An(this)?Fn.call(this):ae.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return An(this)?_n.call(this):J.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return dt(this)?X.call(this,e):In.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Et.ENABLE_NODE_PATCH?dt(this)?Q.call(this,e):kn.call(this,e):null!=e&&(zt(this)||Zn(this)?kn.call(this,e):Q.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Et.ENABLE_NODE_PATCH?C(e)?dt(this)?q.call(this,e):xn.call(this,e):q.call(this,e):zt(this)||Zn(this)?xn.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)?jn.call(this,e):M(n=en(t=this))?jn.call(t):Qn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(this)}}});var Un=function(e){return e.childNodes};function Kn(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())||tn(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 Gn=new WeakMap,qn=document.createDocumentFragment;function Xn(e){var t=Gn.get(e);if(L(t))throw new TypeError;return t}function Vn(e){return e.$shadowResolver$}function Yn(e,t){e.$shadowResolver$=t}function zn(e){return Xn(e).delegatesFocus}function Jn(e){return Xn(e).host}function Qn(e){return Xn(e).shadowRoot}function Zn(e){var t=Gn.get(e);return!L(t)&&e===t.host}function er(e){var t=Gn.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 tr=0;function nr(e,t){if(Gn.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=qn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Gn.set(o,a),Gn.set(e,a);var i=function(){return o},u=i.nodeKey=tr++;return qt(e,Gt,{value:u}),Yn(o,i),f(o,ir.prototype),o}var rr={constructor:{writable:!0,configurable:!0,value:ir},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},lr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=Jn(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;!rn(e,r);)r=le.call(r);return nn(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return Xn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return sr(this,mt(Jn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Kn(this,mt(Jn(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 Jn(this)}},mode:{configurable:!0,get:function(){return Xn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},or=new WeakMap,ar={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return V.call(Jn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Y.call(Jn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return G.call(Jn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(Jn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Ft(Jn(e),t,Bt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return or.set(e,this),Tt.apply(Jn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Wt(Jn(e),t,Bt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return Jn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return mn(ln(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=Jn(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=Jn(this);return 0!=(X.call(t,e)&I)&&rn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return Un(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=Un(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return Un(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(Jn(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 Jn(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=Un(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==K&&(t+=hn(l))}return t},set:function(e){var t=Jn(this);oe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!L(e)&&C(e.composed)?Jn(this).getRootNode(e):this}}};function ir(){throw new TypeError("Illegal constructor")}function ur(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=!er(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 ar(e,t){if(M(e))return null;for(var n,r,l,o,a=or(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),!(l instanceof lr)||!L(o)&&o>-1)return n;return null}function ir(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:ar(e,or(l,!0))}l(tr,{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 rr.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}}},{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return dn(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),bt(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),bt(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)}}},nr),lr.prototype=o(DocumentFragment.prototype,tr),i(lr,Symbol.hasInstance,{value:function(e){return A(e)&&!M(e)&&(ht(e)||c(e)===lr.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return ir(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))||dt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=bt(Je.apply(this,y.call(arguments))),t=g.call(e,(function(e){return L(Xt(e))||dt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=bt(Je.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=bt(Ze.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return dn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=bt(et.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return dn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=bt(tt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return dn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=bt(nt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:lr,configurable:!0,writable:!0});var ur=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var cr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function sr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!ur)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!ur.get.call(e)})()&&(HTMLElement.prototype.click=function(){wt.call(this,"click",sr);try{cr.value.call(this)}finally{Nt.call(this,"click",sr)}}),!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 fr,hr,pr=CustomEvent;function gr(e,t){var n=new pr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(gr.prototype=pr.prototype,window.CustomEvent=gr,"undefined"!=typeof ClipboardEvent){var mr=l(o(null),{copy:1,cut:1,paste:1});a(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===mr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(fr=u(HTMLIFrameElement.prototype,"contentWindow"),hr=fr.get,fr.get=function(){var e,t=hr.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",fr));var vr,dr=MutationObserver,br=dr.prototype,Er=br.disconnect,yr=br.observe,wr=br.takeRecords,Tr="$$lwcObserverCallbackWrapper$$",Nr=new WeakMap;function Lr(e){return e.$$lwcNodeObservers$$}function Mr(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 Cr(e,t){for(var n=t;!M(n);){var r=Lr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Sr(e,t){return b.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Yt(r)))Cr(t,r)&&d.call(e,n);else if(l.length>0){var a=l[0];if(Cr(t,a)){var i=Lr(r);!i||i[0]!==t&&-1===m.call(i,t)?d.call(e,Mr(n)):d.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Vt(r)===Vt(c)&&Cr(t,r))d.call(e,n);else if(u){var s=Lr(u);!s||s[0]!==t&&-1===m.call(s,t)||d.call(e,Mr(n))}}return e}),[])}function Or(e){var t=function(e){var t=e[Tr];return L(t)&&(t=e[Tr]=function(t,n){var r=Sr(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new dr(t)}function Ar(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 Hr(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 _r(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=or(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Xt(e))?e:ar(t,n);if(r===t||r===t.body)return L(Xt(e))?e:ar(t,n);var l=r,o=n;Qn(r)&&(1===Ot.get(this)&&(l=Jn(r)));return Qn(e)&&rr.has(this)&&(o=or(Jn(e),this.composed)),ar(l,o)}function Rr(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Boolean(Kn.get(t)));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Qn(e)&&rr.has(this)&&(l=Jn(e)),or(l,this.composed)}function Pr(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)),ar(n,or(e,!0))},enumerable:!0,configurable:!0})}Or.prototype=dr.prototype,Or.prototype.disconnect=function(){var e=this;Er.call(this);var t=Nr.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)},Or.prototype.observe=function(e,t){var n,r=Lr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&d.call(r,this),e instanceof lr&&(e=e.host),Nr.has(this)){var l=Nr.get(this);-1===m.call(l,e)&&d.call(l,e)}else Nr.set(this,[e]);return yr.call(this,e,t)},Or.prototype.takeRecords=function(){return Sr(wr.call(this),this)},i(window,"MutationObserver",{value:Or,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:Ar,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Hr,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:_r,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:Rr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:_r,enumerable:!0,configurable:!0},path:{get:Rr,enumerable:!0,configurable:!0}}),Pr(FocusEvent),Pr(MouseEvent);var Dr={childList:!0},$r=new WeakMap;function Br(e){var t=bt(ae.call(e));return b.call(t,(function(e,t){return t instanceof Element&&tn(t)?d.apply(e,Br(t)):d.call(e,t),e}),[])}function Ir(){var e=ne.call(this);return!M(e)&&tn(e)&&Xt(e)!==Xt(this)?e:null}function kr(e,t){var n,r=Xt(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Xt(t))||dt(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 xr(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t}function Fr(){return Sn(this)}function Wr(){var e=Zt(this),t=M(e)?[]:an(e,cn(this));return dn(p.call(t,(function(e){return e instanceof Element})))}function jr(){return this.children.length}function Ur(){return this.children[0]||null}function Kr(){var e=this.children;return e.item(e.length-1)||null}function Gr(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))||dt(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||$r.get(this)||($r.set(this,!0),vr||(vr=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(d.call(t,n),Tt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(vr,this,Dr))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten),n=t?Br(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?Br(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){de.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:Ir,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?dt(this)?Ae.call(this):xr.call(this):zt(this)||Qn(this)?xr.call(this):Ae.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?dt(this)?Re.call(this):Fr.call(this):zt(this)||Qn(this)?Fr.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"]?er(this,e):be.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)?Wr.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return On(this)?jr.call(this):Ee.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return On(this)?Ur.call(this):ye.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return On(this)?Kr.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Ir,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=bt(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))||dt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=bt(me.apply(this,y.call(arguments)));if(!Et.ENABLE_NODE_LIST_PATCH){var t=Gr(this,e,0);return gn(t)}return gn(Gr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=bt(Fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return dn(kr(this,e));var t=Gr(this,e,1);return dn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=bt(fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return dn(kr(this,e));var t=Gr(this,e,1);return dn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=bt(he.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return dn(kr(this,e));var t=Gr(this,e,1);return dn(t)},writable:!0,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"getElementsByClassName")&&i(HTMLElement.prototype,"getElementsByClassName",u(Element.prototype,"getElementsByClassName"));var qr="\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",Xr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Vr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!Xr.has(De.call(e))||!pe.call(e,"disabled")}))}var Yr=new WeakMap;function zr(e){return(!Qn(e)||!Yn(e))&&(ke.call(e,qr)&&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 Jr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=bt(me.call(this,qr)),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,qr);M(a)||a.focus.apply(a,arguments)}}function Qr(e){var t=mt(e),n=Vr(bt(Je.call(t,qr))),r=Vr(bt(me.call(e,qr))),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 Zr(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function el(e){e.preventDefault(),e.stopPropagation()}function tl(e,t){lt.call(e,"focusin",el,!0),lt.call(e,"focusout",el,!0),t(),ot.call(e,"focusin",el,!0),ot.call(e,"focusout",el,!0)}function nl(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(cl(t.getRootNode(),l))return l}return null}(e,n);M(l)?tl(r,(function(){t.blur()})):tl(r,(function(){l.focus()}))}var rl=!1;function ll(){rl=!0}function ol(){rl=!1}function al(){return!rl}function il(e){if(!rl){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=Qr(t);if(1===Zr(t,r)){var o=cl.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))nl(l.next,n,r);else tl(vt(a),(function(){a.focus()}))}else t===n&&nl(E.call(l.prev),n,r)}}}}function ul(e){if(!rl){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=Qr(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=Zr(n,t);1===o&&nl(r.next,l,t),2===o&&nl(E.call(r.prev),l,t)}}}}function cl(e,t){if(!zr(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 sl(e){Nt.call(e,"focusin",il,!0)}function fl(e){var t=mt(e);Yr.get(t)||(Yr.set(t,!0),wt.call(t,"mousedown",ll,!0),wt.call(t,"mouseup",(function(){setTimeout(ol)}),!0),wt.call(t,"dragstart",ol,!0))}function hl(e){Nt.call(e,"focusin",ul,!0)}function pl(e){var t=vt(e);return at.call(t,e)}function gl(e){var t=vt(e);return it.call(t)}function ml(e){return"visible"===e.visibility&&"none"!==e.display}function vl(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=pl(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++)d.apply(t,vl(l[o]));if(!ml(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=gl(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 dl(e){if(!ml(pl(e)))return fn(e)||"";for(var t=function(e){var t=vt(e),n=gl(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++)d.apply(n,vl(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=gl(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,El=bl.blur,yl=bl.focus;function wl(){return Yn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function Tl(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&&hl(this),0===n&&t&&sl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(fl(l=this),sl(l),wt.call(l,"focusin",ul,!0)),0===o&&t&&function(e){fl(e),hl(e),wt.call(e,"focusin",il,!0)}(this)))}function Nl(){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 El.call(this)}function Ll(){var e=al();e&&ll(),Qn(this)&&Yn(this)?Jr.call(this):(yl.apply(this,arguments),e&&ol())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Qn(this)?wl.call(this):Be.call(this)},set:function(e){return Qn(this)?Tl.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Qn(this))return Nl.call(this);El.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Ll.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?dt(this)?Ne.call(this):dl(this):zt(this)||Qn(this)?dl(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?dt(this)?Ce.call(this):dl(this):zt(this)||Qn(this)?dl(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)||de.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Ml,Cl=function(){},Sl={childList:!0};function Ol(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(Ml,e,Sl);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)Ol(l[o],t,n)}}function Al(e){if(L(Ml)&&(Ml=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||Ol(u,Cl,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&&Ol(f,l,o)}}))}))),L(Xn(e)))throw new Error("Invalid Element");ct.call(Ml,e,Sl)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&Al(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}));
10
+ */function cr(e,t){if(M(e))return null;for(var n,r,l,o,a=ur(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),!er(l)||!L(o)&&o>-1)return n;return null}function sr(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:cr(e,ur(l,!0))}l(rr,ar,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return bn(p.call(ln(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,cn(n=Jn(this),bt(me.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return mn((t=e,un(n=Jn(this),bt(me.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=Un(this),t="",n=0,r=e.length;n<r;n+=1)t+=On(e[n]);return t},set:function(e){var t=Jn(this);He.call(t,e)}}},lr),ir.prototype=o(DocumentFragment.prototype,rr),i(ir,Symbol.hasInstance,{value:function(e){return A(e)&&!M(e)&&(ht(e)||c(e)===ir.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return sr(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Kn(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))||dt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=bt(Je.apply(this,y.call(arguments))),t=g.call(e,(function(e){return L(Xt(e))||dt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=bt(Je.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return mn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=bt(Ze.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=bt(et.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=bt(tt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=bt(nt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||dt(e)}));return mn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:ir,configurable:!0,writable:!0});var fr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var hr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function pr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!fr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!fr.get.call(e)})()&&(HTMLElement.prototype.click=function(){wt.call(this,"click",pr);try{hr.value.call(this)}finally{Nt.call(this,"click",pr)}}),!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 gr,mr,vr=CustomEvent;function dr(e,t){var n=new vr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(dr.prototype=vr.prototype,window.CustomEvent=dr,"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&&(gr=u(HTMLIFrameElement.prototype,"contentWindow"),mr=gr.get,gr.get=function(){var e,t=mr.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",gr));var Er,yr=MutationObserver,wr=yr.prototype,Tr=wr.disconnect,Nr=wr.observe,Lr=wr.takeRecords,Mr="$$lwcObserverCallbackWrapper$$",Cr=new WeakMap;function Sr(e){return e.$$lwcNodeObservers$$}function Or(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 Ar(e,t){for(var n=t;!M(n);){var r=Sr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Hr(e,t){return b.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Yt(r)))Ar(t,r)&&d.call(e,n);else if(l.length>0){var a=l[0];if(Ar(t,a)){var i=Sr(r);!i||i[0]!==t&&-1===m.call(i,t)?d.call(e,Or(n)):d.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Vt(r)===Vt(c)&&Ar(t,r))d.call(e,n);else if(u){var s=Sr(u);!s||s[0]!==t&&-1===m.call(s,t)||d.call(e,Or(n))}}return e}),[])}function _r(e){var t=function(e){var t=e[Mr];return L(t)&&(t=e[Mr]=function(t,n){var r=Hr(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new yr(t)}function Rr(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 Pr(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 Dr(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=ur(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Xt(e))?e:cr(t,n);if(r===t||r===t.body)return L(Xt(e))?e:cr(t,n);var l=r,o=n;Zn(r)&&(1===Ot.get(this)&&(l=Qn(r)));return Zn(e)&&or.has(this)&&(o=ur(Qn(e),this.composed)),cr(l,o)}function $r(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Gn.has(t));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Zn(e)&&or.has(this)&&(l=Qn(e)),ur(l,this.composed)}function Br(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)),cr(n,ur(e,!0))},enumerable:!0,configurable:!0})}_r.prototype=yr.prototype,_r.prototype.disconnect=function(){var e=this;Tr.call(this);var t=Cr.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)},_r.prototype.observe=function(e,t){var n,r=Sr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&d.call(r,this),er(e)&&(e=e.host),Cr.has(this)){var l=Cr.get(this);-1===m.call(l,e)&&d.call(l,e)}else Cr.set(this,[e]);return Nr.call(this,e,t)},_r.prototype.takeRecords=function(){return Hr(Lr.call(this),this)},i(window,"MutationObserver",{value:_r,configurable:!0,writable:!0}),a(yt,{addEventListener:{value:function(e,t,n){if(Zn(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(Zn(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:Rr,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Pr,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:Dr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ue.call(this);return M(e)?null:1===Ot.get(this)?Qn(e):e},enumerable:!0,configurable:!0},composedPath:{value:$r,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Dr,enumerable:!0,configurable:!0},path:{get:$r,enumerable:!0,configurable:!0}}),Br(FocusEvent),Br(MouseEvent);var Ir={childList:!0},kr=new WeakMap;function xr(e){var t=bt(ae.call(e));return b.call(t,(function(e,t){return t instanceof Element&&nn(t)?d.apply(e,xr(t)):d.call(e,t),e}),[])}function Fr(){var e=ne.call(this);return!M(e)&&nn(e)&&Xt(e)!==Xt(this)?e:null}function Wr(e,t){var n,r=Xt(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Xt(t))||dt(e)})):y.call(t);else if(Zn(e)){var l=en(e);n=M(l)?[]:Yt(e)?on(e,t):un(l,t)}else n=p.call(t,(function(e){return Vt(e)===r}));return n}function jr(){for(var e=Un(this),t="",n=0,r=e.length;n<r;n+=1)t+=On(e[n]);return t}function Ur(){return On(this)}function Kr(){var e=en(this),t=M(e)?[]:un(e,sn(this));return bn(p.call(t,(function(e){return e instanceof Element})))}function Gr(){return this.children.length}function qr(){return this.children[0]||null}function Xr(){var e=this.children;return e.item(e.length-1)||null}function Vr(e,t,n){var r;if(Zn(e)){var l=en(e);r=M(l)?[]:Yt(e)?on(e,t):un(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))||dt(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||kr.get(this)||(kr.set(this,!0),Er||(Er=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(d.call(t,n),Tt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(Er,this,Ir))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten),n=t?xr(this):fn(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?xr(this):fn(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){de.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(zt(this)){var e=en(this);return mn(M(e)?[]:un(e,sn(this)))}return ae.call(this)},enumerable:!0,configurable:!0}}),a(Text.prototype,{assignedSlot:{get:Fr,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?dt(this)?Ae.call(this):jr.call(this):Jt(this)?jr.call(this):Ae.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?dt(this)?Re.call(this):Ur.call(this):Jt(this)?Ur.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"]?nr(this,e):be.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Zn(this)){var e=Qn(this);if("open"===e.mode)return e}return We.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return An(this)?Kr.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return An(this)?Gr.call(this):Ee.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return An(this)?qr.call(this):ye.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return An(this)?Xr.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:Fr,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=bt(me.apply(this,y.call(arguments)));if(Zn(this)){var n=en(this);return M(n)?null:Yt(this)?an(this,t):cn(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))||dt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=bt(me.apply(this,y.call(arguments)));if(!Et.ENABLE_NODE_LIST_PATCH){var t=Vr(this,e,0);return mn(t)}return mn(Vr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=bt(Fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Wr(this,e));var t=Vr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=bt(fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Wr(this,e));var t=Vr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=bt(he.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(Wr(this,e));var t=Vr(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 Yr="\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",zr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Jr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!zr.has(De.call(e))||!pe.call(e,"disabled")}))}var Qr=new WeakMap;function Zr(e){return(!Zn(e)||!zn(e))&&(ke.call(e,Yr)&&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 el(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=bt(me.call(this,Yr)),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,Yr);M(a)||a.focus.apply(a,arguments)}}function tl(e){var t=mt(e),n=Jr(bt(Je.call(t,Yr))),r=Jr(bt(me.call(e,Yr))),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 nl(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function rl(e){e.preventDefault(),e.stopPropagation()}function ll(e,t){lt.call(e,"focusin",rl,!0),lt.call(e,"focusout",rl,!0),t(),ot.call(e,"focusin",rl,!0),ot.call(e,"focusout",rl,!0)}function ol(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(hl(t.getRootNode(),l))return l}return null}(e,n);M(l)?ll(r,(function(){t.blur()})):ll(r,(function(){l.focus()}))}var al=!1;function il(){al=!0}function ul(){al=!1}function cl(){return!al}function sl(e){if(!al){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=tl(t);if(1===nl(t,r)){var o=hl.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))ol(l.next,n,r);else ll(vt(a),(function(){a.focus()}))}else t===n&&ol(E.call(l.prev),n,r)}}}}function fl(e){if(!al){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=tl(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=nl(n,t);1===o&&ol(r.next,l,t),2===o&&ol(E.call(r.prev),l,t)}}}}function hl(e,t){if(!Zr(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 pl(e){Nt.call(e,"focusin",sl,!0)}function gl(e){var t=mt(e);Qr.get(t)||(Qr.set(t,!0),wt.call(t,"mousedown",il,!0),wt.call(t,"mouseup",(function(){setTimeout(ul)}),!0),wt.call(t,"dragstart",ul,!0))}function ml(e){Nt.call(e,"focusin",fl,!0)}function vl(e){var t=vt(e);return at.call(t,e)}function dl(e){var t=vt(e);return it.call(t)}function bl(e){return"visible"===e.visibility&&"none"!==e.display}function El(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=vl(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++)d.apply(t,El(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=dl(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 yl(e){if(!bl(vl(e)))return hn(e)||"";for(var t=function(e){var t=vt(e),n=dl(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++)d.apply(n,El(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=dl(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 wl=HTMLElement.prototype,Tl=wl.blur,Nl=wl.focus;function Ll(){return zn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function Ml(e){var t=zn(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&&ml(this),0===n&&t&&pl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(gl(l=this),pl(l),wt.call(l,"focusin",fl,!0)),0===o&&t&&function(e){gl(e),ml(e),wt.call(e,"focusin",sl,!0)}(this)))}function Cl(){if(zn(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 Tl.call(this)}function Sl(){var e=cl();e&&il(),Zn(this)&&zn(this)?el.call(this):(Nl.apply(this,arguments),e&&ul())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Zn(this)?Ll.call(this):Be.call(this)},set:function(e){return Zn(this)?Ml.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Zn(this))return Cl.call(this);Tl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Sl.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?dt(this)?Ne.call(this):yl(this):zt(this)||Zn(this)?yl(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?dt(this)?Ce.call(this):yl(this):zt(this)||Zn(this)?yl(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)||de.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Ol,Al=function(){},Hl={childList:!0};function _l(e,t,n){var r=Vn(e);if(r!==t&&(Yn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Zn(e))return;L(r)&&ct.call(Ol,e,Hl);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)_l(l[o],t,n)}}function Rl(e){if(L(Ol)&&(Ol=new ut((function(e){T.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Vn(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||_l(u,Al,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&&_l(f,l,o)}}))}))),L(Vn(e)))throw new Error("Invalid Element");ct.call(Ol,e,Hl)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&Rl(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}));