@3mo/theme 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Theme
2
+
3
+ Tools & tokens for theming 3MO components & applications.
@@ -0,0 +1,14 @@
1
+ import { LocalStorage } from '@a11d/local-storage';
2
+ import { Color } from '@3mo/color';
3
+ import { ColorSet } from './ColorSet.js';
4
+ export declare class AccentStorage extends LocalStorage<Color | ColorSet | undefined> {
5
+ private styleElement?;
6
+ constructor();
7
+ get value(): Color | ColorSet | undefined;
8
+ set value(value: Color | ColorSet | undefined);
9
+ private parseColor;
10
+ private parseColorSet;
11
+ get medianColor(): Color | undefined;
12
+ injectCss(): void;
13
+ }
14
+ //# sourceMappingURL=Accent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Accent.d.ts","sourceRoot":"","sources":["../Accent.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAClD,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAExC,qBAAa,aAAc,SAAQ,YAAY,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC5E,OAAO,CAAC,YAAY,CAAC,CAAkB;;IAOvC,IAAa,KAAK,iCAUjB;IACD,IAAa,KAAK,CAAC,KAAK,8BAAA,EAIvB;IAED,OAAO,CAAC,UAAU,CAKjB;IAED,OAAO,CAAC,aAAa,CAKpB;IAED,IAAI,WAAW,sBAEd;IAED,SAAS;CAoBT"}
package/dist/Accent.js ADDED
@@ -0,0 +1,56 @@
1
+ import { css, unsafeCSS } from '@a11d/lit';
2
+ import { RootCssInjector } from '@a11d/lit-application';
3
+ import { LocalStorage } from '@a11d/local-storage';
4
+ import { Color } from '@3mo/color';
5
+ import { ColorSet } from './ColorSet.js';
6
+ export class AccentStorage extends LocalStorage {
7
+ constructor() {
8
+ super('Theme.Accent', new Color('rgb(0, 119, 200)'));
9
+ this.parseColor = (value) => {
10
+ if (typeof value === 'object' && value !== null && '$type' in value && value.$type === 'Color' && 'color' in value) {
11
+ return new Color(value.color);
12
+ }
13
+ return undefined;
14
+ };
15
+ this.parseColorSet = (value) => {
16
+ if (typeof value === 'object' && value !== null && '$type' in value && value.$type === 'ColorSet' && 'colors' in value) {
17
+ return new ColorSet(...value.colors.map(c => c.color));
18
+ }
19
+ return undefined;
20
+ };
21
+ this.injectCss();
22
+ }
23
+ get value() {
24
+ let value = super.value;
25
+ value = this.parseColor(value) || this.parseColorSet(value);
26
+ if (!value) {
27
+ window.localStorage.removeItem(this.name);
28
+ }
29
+ return value || this.defaultValue;
30
+ }
31
+ set value(value) {
32
+ value['$type'] = value instanceof ColorSet ? 'ColorSet' : 'Color';
33
+ super.value = value;
34
+ this.injectCss();
35
+ }
36
+ get medianColor() {
37
+ return this.value instanceof ColorSet ? this.value.medianColor : this.value;
38
+ }
39
+ injectCss() {
40
+ const value = this.value;
41
+ const medianColor = this.medianColor;
42
+ const firstColor = value instanceof ColorSet ? value.colors[0] : value;
43
+ const secondColor = value instanceof ColorSet ? value.colors[1] : value;
44
+ const thirdColor = value instanceof ColorSet ? value.colors[2] : value;
45
+ this.styleElement = RootCssInjector.inject(css `
46
+ [application] {
47
+ --mo-color-accent-base-r:${unsafeCSS(medianColor === null || medianColor === void 0 ? void 0 : medianColor.r)};
48
+ --mo-color-accent-base-g:${unsafeCSS(medianColor === null || medianColor === void 0 ? void 0 : medianColor.g)};
49
+ --mo-color-accent-base-b:${unsafeCSS(medianColor === null || medianColor === void 0 ? void 0 : medianColor.b)};
50
+ --mo-color-accent-gradient-1: ${unsafeCSS(firstColor === null || firstColor === void 0 ? void 0 : firstColor.rgb)};
51
+ --mo-color-accent-gradient-2: ${unsafeCSS(secondColor === null || secondColor === void 0 ? void 0 : secondColor.rgb)};
52
+ --mo-color-accent-gradient-3: ${unsafeCSS(thirdColor === null || thirdColor === void 0 ? void 0 : thirdColor.rgb)};
53
+ }
54
+ `, this.styleElement);
55
+ }
56
+ }
@@ -0,0 +1,13 @@
1
+ import { LocalStorage } from '@a11d/local-storage';
2
+ export declare const enum Background {
3
+ System = "system",
4
+ Light = "light",
5
+ Dark = "dark"
6
+ }
7
+ export declare class BackgroundStorage extends LocalStorage<Background> {
8
+ private application?;
9
+ constructor();
10
+ get calculatedValue(): Background.Light | Background.Dark;
11
+ private updateAttributeValue;
12
+ }
13
+ //# sourceMappingURL=Background.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Background.d.ts","sourceRoot":"","sources":["../Background.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAGlD,0BAAkB,UAAU;IAC3B,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,IAAI,SAAS;CACb;AAED,qBAAa,iBAAkB,SAAQ,YAAY,CAAC,UAAU,CAAC;IAC9D,OAAO,CAAC,WAAW,CAAC,CAAa;;IAajC,IAAI,eAAe,uCAMlB;IAED,OAAO,CAAC,oBAAoB;CAG5B"}
@@ -0,0 +1,26 @@
1
+ import { Application } from '@a11d/lit-application';
2
+ import { LocalStorage } from '@a11d/local-storage';
3
+ import { Theme } from './Theme.js';
4
+ export class BackgroundStorage extends LocalStorage {
5
+ constructor() {
6
+ super('Theme.Background', "system" /* Background.System */);
7
+ window.matchMedia('(prefers-color-scheme: dark)').onchange = () => this.updateAttributeValue();
8
+ window.matchMedia('(prefers-color-scheme: light)').onchange = () => this.updateAttributeValue();
9
+ Application.addInitializer(application => {
10
+ this.application = application;
11
+ this.updateAttributeValue();
12
+ Theme.background.changed.subscribe(() => this.updateAttributeValue());
13
+ });
14
+ }
15
+ get calculatedValue() {
16
+ return this.value !== "system" /* Background.System */
17
+ ? this.value
18
+ : window.matchMedia('(prefers-color-scheme: dark)').matches
19
+ ? "dark" /* Background.Dark */
20
+ : "light" /* Background.Light */;
21
+ }
22
+ updateAttributeValue() {
23
+ var _a;
24
+ (_a = this.application) === null || _a === void 0 ? void 0 : _a.setAttribute('data-theme', this.calculatedValue);
25
+ }
26
+ }
@@ -0,0 +1,18 @@
1
+ import ColorString from 'color-string';
2
+ export declare class Color {
3
+ readonly color: ColorString.Color;
4
+ constructor(color: string | [r: number, g: number, b: number, a: number]);
5
+ get r(): number;
6
+ get g(): number;
7
+ get b(): number;
8
+ get a(): number;
9
+ get hex(): string;
10
+ get rgb(): string;
11
+ get rgbPercent(): string;
12
+ get hsl(): string;
13
+ get hsv(): string;
14
+ get keyword(): string;
15
+ toString(): string;
16
+ valueOf(): string;
17
+ }
18
+ //# sourceMappingURL=Color.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Color.d.ts","sourceRoot":"","sources":["../../../Color/Color.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,cAAc,CAAA;AAEtC,qBAAa,KAAK;IACjB,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC,KAAK,CAAA;gBAErB,KAAK,EAAE,MAAM,GAAG,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,CAAC;IAMxE,IAAI,CAAC,WAA2B;IAChC,IAAI,CAAC,WAA2B;IAChC,IAAI,CAAC,WAA2B;IAChC,IAAI,CAAC,WAA2B;IAEhC,IAAI,GAAG,WAA4C;IACnD,IAAI,GAAG,WAA4C;IACnD,IAAI,UAAU,WAAoD;IAClE,IAAI,GAAG,WAA4C;IACnD,IAAI,GAAG,WAA4C;IACnD,IAAI,OAAO,WAAgD;IAE3D,QAAQ;IACR,OAAO;CACP"}
@@ -0,0 +1,2 @@
1
+ export * from './Color.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Color/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { Color } from '@3mo/color';
2
+ export declare class ColorSet {
3
+ readonly colors: Color[];
4
+ constructor(...colors: Array<Color | string>);
5
+ get medianColor(): Color;
6
+ }
7
+ //# sourceMappingURL=ColorSet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColorSet.d.ts","sourceRoot":"","sources":["../ColorSet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAElC,qBAAa,QAAQ;IACpB,QAAQ,CAAC,MAAM,UAAqB;gBAExB,GAAG,MAAM,EAAE,KAAK,CAAC,KAAK,GAAG,MAAM,CAAC;IAI5C,IAAI,WAAW,UAMd;CACD"}
@@ -0,0 +1,14 @@
1
+ import { Color } from '@3mo/color';
2
+ export class ColorSet {
3
+ constructor(...colors) {
4
+ this.colors = new Array();
5
+ this.colors = colors.map(color => color instanceof Color ? color : new Color(color));
6
+ }
7
+ get medianColor() {
8
+ const color = this.colors[Math.floor(this.colors.length / 2)];
9
+ if (!color) {
10
+ throw new Error('No colors found');
11
+ }
12
+ return color;
13
+ }
14
+ }
@@ -0,0 +1,14 @@
1
+ import { LocalStorage } from '@a11d/local-storage';
2
+ import { Color } from '@3mo/color';
3
+ import { ColorSet } from './ColorSet.js';
4
+ export declare class AccentStorage extends LocalStorage<Color | ColorSet | undefined> {
5
+ private styleElement?;
6
+ constructor();
7
+ get value(): Color | ColorSet | undefined;
8
+ set value(value: Color | ColorSet | undefined);
9
+ private parseColor;
10
+ private parseColorSet;
11
+ get medianColor(): Color | undefined;
12
+ injectCss(): void;
13
+ }
14
+ //# sourceMappingURL=Accent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Accent.d.ts","sourceRoot":"","sources":["../../Accent.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAClD,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAExC,qBAAa,aAAc,SAAQ,YAAY,CAAC,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC5E,OAAO,CAAC,YAAY,CAAC,CAAkB;;IAOvC,IAAa,KAAK,iCAUjB;IACD,IAAa,KAAK,CAAC,KAAK,8BAAA,EAIvB;IAED,OAAO,CAAC,UAAU,CAKjB;IAED,OAAO,CAAC,aAAa,CAKpB;IAED,IAAI,WAAW,sBAEd;IAED,SAAS;CAWT"}
@@ -0,0 +1,13 @@
1
+ import { LocalStorage } from '@a11d/local-storage';
2
+ export declare const enum Background {
3
+ System = "system",
4
+ Light = "light",
5
+ Dark = "dark"
6
+ }
7
+ export declare class BackgroundStorage extends LocalStorage<Background> {
8
+ private application?;
9
+ constructor();
10
+ get calculatedValue(): Background.Light | Background.Dark;
11
+ private updateAttributeValue;
12
+ }
13
+ //# sourceMappingURL=Background.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Background.d.ts","sourceRoot":"","sources":["../../Background.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAGlD,0BAAkB,UAAU;IAC3B,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,IAAI,SAAS;CACb;AAED,qBAAa,iBAAkB,SAAQ,YAAY,CAAC,UAAU,CAAC;IAC9D,OAAO,CAAC,WAAW,CAAC,CAAa;;IAajC,IAAI,eAAe,uCAMlB;IAED,OAAO,CAAC,oBAAoB;CAG5B"}
@@ -0,0 +1,7 @@
1
+ import { Color } from '@3mo/color';
2
+ export declare class ColorSet {
3
+ readonly colors: Color[];
4
+ constructor(...colors: Array<Color | string>);
5
+ get medianColor(): Color;
6
+ }
7
+ //# sourceMappingURL=ColorSet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColorSet.d.ts","sourceRoot":"","sources":["../../ColorSet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAElC,qBAAa,QAAQ;IACpB,QAAQ,CAAC,MAAM,UAAqB;gBAExB,GAAG,MAAM,EAAE,KAAK,CAAC,KAAK,GAAG,MAAM,CAAC;IAI5C,IAAI,WAAW,UAMd;CACD"}
@@ -0,0 +1,7 @@
1
+ import { BackgroundStorage } from './Background.js';
2
+ import { AccentStorage } from './Accent.js';
3
+ export declare class Theme {
4
+ static readonly background: BackgroundStorage;
5
+ static readonly accent: AccentStorage;
6
+ }
7
+ //# sourceMappingURL=Theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../../Theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAE3C,qBAAa,KAAK;IACjB,MAAM,CAAC,QAAQ,CAAC,UAAU,oBAAwB;IAClD,MAAM,CAAC,QAAQ,CAAC,MAAM,gBAAoB;CAC1C"}
@@ -0,0 +1,6 @@
1
+ export * from './ColorSet.js';
2
+ export * from './Background.js';
3
+ export * from './Accent.js';
4
+ export * from './Theme.js';
5
+ export * from './styles.css.js';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=styles.css.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.css.d.ts","sourceRoot":"","sources":["../../styles.css.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import { BackgroundStorage } from './Background.js';
2
+ import { AccentStorage } from './Accent.js';
3
+ export declare class Theme {
4
+ static readonly background: BackgroundStorage;
5
+ static readonly accent: AccentStorage;
6
+ }
7
+ //# sourceMappingURL=Theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../Theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAE3C,qBAAa,KAAK;IACjB,MAAM,CAAC,QAAQ,CAAC,UAAU,oBAAwB;IAClD,MAAM,CAAC,QAAQ,CAAC,MAAM,gBAAoB;CAC1C"}
package/dist/Theme.js ADDED
@@ -0,0 +1,7 @@
1
+ import { BackgroundStorage } from './Background.js';
2
+ import { AccentStorage } from './Accent.js';
3
+ class Theme {
4
+ }
5
+ Theme.background = new BackgroundStorage;
6
+ Theme.accent = new AccentStorage;
7
+ export { Theme };
package/dist/bundle.js ADDED
@@ -0,0 +1,25 @@
1
+ (()=>{var t={777:t=>{"use strict";t.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},969:(t,e,n)=>{var r=n(777),o=n(119),i=Object.hasOwnProperty,s=Object.create(null);for(var a in r)i.call(r,a)&&(s[r[a]]=a);var c=t.exports={to:{},get:{}};function l(t,e,n){return Math.min(Math.max(e,t),n)}function h(t){var e=Math.round(t).toString(16).toUpperCase();return e.length<2?"0"+e:e}c.get=function(t){var e,n;switch(t.substring(0,3).toLowerCase()){case"hsl":e=c.get.hsl(t),n="hsl";break;case"hwb":e=c.get.hwb(t),n="hwb";break;default:e=c.get.rgb(t),n="rgb"}return e?{model:n,value:e}:null},c.get.rgb=function(t){if(!t)return null;var e,n,o,s=[0,0,0,1];if(e=t.match(/^#([a-f0-9]{6})([a-f0-9]{2})?$/i)){for(o=e[2],e=e[1],n=0;n<3;n++){var a=2*n;s[n]=parseInt(e.slice(a,a+2),16)}o&&(s[3]=parseInt(o,16)/255)}else if(e=t.match(/^#([a-f0-9]{3,4})$/i)){for(o=(e=e[1])[3],n=0;n<3;n++)s[n]=parseInt(e[n]+e[n],16);o&&(s[3]=parseInt(o+o,16)/255)}else if(e=t.match(/^rgba?\(\s*([+-]?\d+)(?=[\s,])\s*(?:,\s*)?([+-]?\d+)(?=[\s,])\s*(?:,\s*)?([+-]?\d+)\s*(?:[,|\/]\s*([+-]?[\d\.]+)(%?)\s*)?\)$/)){for(n=0;n<3;n++)s[n]=parseInt(e[n+1],0);e[4]&&(e[5]?s[3]=.01*parseFloat(e[4]):s[3]=parseFloat(e[4]))}else{if(!(e=t.match(/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,?\s*([+-]?[\d\.]+)\%\s*,?\s*([+-]?[\d\.]+)\%\s*(?:[,|\/]\s*([+-]?[\d\.]+)(%?)\s*)?\)$/)))return(e=t.match(/^(\w+)$/))?"transparent"===e[1]?[0,0,0,0]:i.call(r,e[1])?((s=r[e[1]])[3]=1,s):null:null;for(n=0;n<3;n++)s[n]=Math.round(2.55*parseFloat(e[n+1]));e[4]&&(e[5]?s[3]=.01*parseFloat(e[4]):s[3]=parseFloat(e[4]))}for(n=0;n<3;n++)s[n]=l(s[n],0,255);return s[3]=l(s[3],0,1),s},c.get.hsl=function(t){if(!t)return null;var e=t.match(/^hsla?\(\s*([+-]?(?:\d{0,3}\.)?\d+)(?:deg)?\s*,?\s*([+-]?[\d\.]+)%\s*,?\s*([+-]?[\d\.]+)%\s*(?:[,|\/]\s*([+-]?(?=\.\d|\d)(?:0|[1-9]\d*)?(?:\.\d*)?(?:[eE][+-]?\d+)?)\s*)?\)$/);if(e){var n=parseFloat(e[4]);return[(parseFloat(e[1])%360+360)%360,l(parseFloat(e[2]),0,100),l(parseFloat(e[3]),0,100),l(isNaN(n)?1:n,0,1)]}return null},c.get.hwb=function(t){if(!t)return null;var e=t.match(/^hwb\(\s*([+-]?\d{0,3}(?:\.\d+)?)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?(?=\.\d|\d)(?:0|[1-9]\d*)?(?:\.\d*)?(?:[eE][+-]?\d+)?)\s*)?\)$/);if(e){var n=parseFloat(e[4]);return[(parseFloat(e[1])%360+360)%360,l(parseFloat(e[2]),0,100),l(parseFloat(e[3]),0,100),l(isNaN(n)?1:n,0,1)]}return null},c.to.hex=function(){var t=o(arguments);return"#"+h(t[0])+h(t[1])+h(t[2])+(t[3]<1?h(Math.round(255*t[3])):"")},c.to.rgb=function(){var t=o(arguments);return t.length<4||1===t[3]?"rgb("+Math.round(t[0])+", "+Math.round(t[1])+", "+Math.round(t[2])+")":"rgba("+Math.round(t[0])+", "+Math.round(t[1])+", "+Math.round(t[2])+", "+t[3]+")"},c.to.rgb.percent=function(){var t=o(arguments),e=Math.round(t[0]/255*100),n=Math.round(t[1]/255*100),r=Math.round(t[2]/255*100);return t.length<4||1===t[3]?"rgb("+e+"%, "+n+"%, "+r+"%)":"rgba("+e+"%, "+n+"%, "+r+"%, "+t[3]+")"},c.to.hsl=function(){var t=o(arguments);return t.length<4||1===t[3]?"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)":"hsla("+t[0]+", "+t[1]+"%, "+t[2]+"%, "+t[3]+")"},c.to.hwb=function(){var t=o(arguments),e="";return t.length>=4&&1!==t[3]&&(e=", "+t[3]),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+e+")"},c.to.keyword=function(t){return s[t.slice(0,3)]}},119:(t,e,n)=>{"use strict";var r=n(774),o=Array.prototype.concat,i=Array.prototype.slice,s=t.exports=function(t){for(var e=[],n=0,s=t.length;n<s;n++){var a=t[n];r(a)?e=o.call(e,i.call(a)):e.push(a)}return e};s.wrap=function(t){return function(){return t(s(arguments))}}},774:t=>{t.exports=function(t){return!(!t||"string"==typeof t)&&(t instanceof Array||Array.isArray(t)||t.length>=0&&(t.splice instanceof Function||Object.getOwnPropertyDescriptor(t,t.length-1)&&"String"!==t.constructor.name))}},388:(t,e)=>{"use strict";(function(t){t.Unidentified="Unidentified",t.Alt="Alt",t.AltGraph="AltGraph",t.CapsLock="CapsLock",t.Control="Control",t.Fn="Fn",t.FnLock="FnLock",t.Hyper="Hyper",t.Meta="Meta",t.NumLock="NumLock",t.ScrollLock="ScrollLock",t.Shift="Shift",t.Super="Super",t.Symbol="Symbol",t.SymbolLock="SymbolLock",t.Enter="Enter",t.Tab="Tab",t.ArrowDown="ArrowDown",t.ArrowLeft="ArrowLeft",t.ArrowRight="ArrowRight",t.ArrowUp="ArrowUp",t.End="End",t.Home="Home",t.PageDown="PageDown",t.PageUp="PageUp",t.Backspace="Backspace",t.Clear="Clear",t.Copy="Copy",t.CrSel="CrSel",t.Cut="Cut",t.Delete="Delete",t.EraseEof="EraseEof",t.ExSel="ExSel",t.Insert="Insert",t.Paste="Paste",t.Redo="Redo",t.Undo="Undo",t.Accept="Accept",t.Again="Again",t.Attn="Attn",t.Cancel="Cancel",t.ContextMenu="ContextMenu",t.Escape="Escape",t.Execute="Execute",t.Find="Find",t.Finish="Finish",t.Help="Help",t.Pause="Pause",t.Play="Play",t.Props="Props",t.Select="Select",t.ZoomIn="ZoomIn",t.ZoomOut="ZoomOut",t.BrightnessDown="BrightnessDown",t.BrightnessUp="BrightnessUp",t.Eject="Eject",t.LogOff="LogOff",t.Power="Power",t.PowerOff="PowerOff",t.PrintScreen="PrintScreen",t.Hibernate="Hibernate",t.Standby="Standby",t.WakeUp="WakeUp",t.AllCandidates="AllCandidates",t.Alphanumeric="Alphanumeric",t.CodeInput="CodeInput",t.Compose="Compose",t.Convert="Convert",t.Dead="Dead",t.FinalMode="FinalMode",t.GroupFirst="GroupFirst",t.GroupLast="GroupLast",t.GroupNext="GroupNext",t.GroupPrevious="GroupPrevious",t.ModeChange="ModeChange",t.NextCandidate="NextCandidate",t.NonConvert="NonConvert",t.PreviousCandidate="PreviousCandidate",t.Process="Process",t.SingleCandidate="SingleCandidate",t.HangulMode="HangulMode",t.HanjaMode="HanjaMode",t.JunjaMode="JunjaMode",t.Eisu="Eisu",t.Hankaku="Hankaku",t.Hiragana="Hiragana",t.HiraganaKatakana="HiraganaKatakana",t.KanaMode="KanaMode",t.KanjiMode="KanjiMode",t.Katakana="Katakana",t.Romaji="Romaji",t.Zenkaku="Zenkaku",t.ZenkakuHanaku="ZenkakuHanaku",t.F1="F1",t.F2="F2",t.F3="F3",t.F4="F4",t.F5="F5",t.F6="F6",t.F7="F7",t.F8="F8",t.F9="F9",t.F10="F10",t.F11="F11",t.F12="F12",t.F13="F13",t.F14="F14",t.F15="F15",t.F16="F16",t.F17="F17",t.F18="F18",t.F19="F19",t.F20="F20",t.Soft1="Soft1",t.Soft2="Soft2",t.Soft3="Soft3",t.Soft4="Soft4",t.AppSwitch="AppSwitch",t.Call="Call",t.Camera="Camera",t.CameraFocus="CameraFocus",t.EndCall="EndCall",t.GoBack="GoBack",t.GoHome="GoHome",t.HeadsetHook="HeadsetHook",t.LastNumberRedial="LastNumberRedial",t.Notification="Notification",t.MannerMode="MannerMode",t.VoiceDial="VoiceDial",t.ChannelDown="ChannelDown",t.ChannelUp="ChannelUp",t.MediaFastForward="MediaFastForward",t.MediaPause="MediaPause",t.MediaPlay="MediaPlay",t.MediaPlayPause="MediaPlayPause",t.MediaRecord="MediaRecord",t.MediaRewind="MediaRewind",t.MediaStop="MediaStop",t.MediaTrackNext="MediaTrackNext",t.MediaTrackPrevious="MediaTrackPrevious",t.AudioBalanceLeft="AudioBalanceLeft",t.AudioBalanceRight="AudioBalanceRight",t.AudioBassDown="AudioBassDown",t.AudioBassBoostDown="AudioBassBoostDown",t.AudioBassBoostToggle="AudioBassBoostToggle",t.AudioBassBoostUp="AudioBassBoostUp",t.AudioBassUp="AudioBassUp",t.AudioFaderFront="AudioFaderFront",t.AudioFaderRear="AudioFaderRear",t.AudioSurroundModeNext="AudioSurroundModeNext",t.AudioTrebleDown="AudioTrebleDown",t.AudioTrebleUp="AudioTrebleUp",t.AudioVolumeDown="AudioVolumeDown",t.AudioVolumeMute="AudioVolumeMute",t.AudioVolumeUp="AudioVolumeUp",t.MicrophoneToggle="MicrophoneToggle",t.MicrophoneVolumeDown="MicrophoneVolumeDown",t.MicrophoneVolumeMute="MicrophoneVolumeMute",t.MicrophoneVolumeUp="MicrophoneVolumeUp",t.TV="TV",t.TV3DMode="TV3DMode",t.TVAntennaCable="TVAntennaCable",t.TVAudioDescription="TVAudioDescription",t.TVAudioDescriptionMixDown="TVAudioDescriptionMixDown",t.TVAudioDescriptionMixUp="TVAudioDescriptionMixUp",t.TVContentsMenu="TVContentsMenu",t.TVDataService="TVDataService",t.TVInput="TVInput",t.TVInputComponent1="TVInputComponent1",t.TVInputComponent2="TVInputComponent2",t.TVInputComposite1="TVInputComposite1",t.TVInputComposite2="TVInputComposite2",t.TVInputHDMI1="TVInputHDMI1",t.TVInputHDMI2="TVInputHDMI2",t.TVInputHDMI3="TVInputHDMI3",t.TVInputHDMI4="TVInputHDMI4",t.TVInputVGA1="TVInputVGA1",t.TVMediaContext="TVMediaContext",t.TVNetwork="TVNetwork",t.TVNumberEntry="TVNumberEntry",t.TVPower="TVPower",t.TVRadioService="TVRadioService",t.TVSatellite="TVSatellite",t.TVSatelliteBS="TVSatelliteBS",t.TVSatelliteCS="TVSatelliteCS",t.TVSatelliteToggle="TVSatelliteToggle",t.TVTerrestrialAnalog="TVTerrestrialAnalog",t.TVTerrestrialDigital="TVTerrestrialDigital",t.TVTimer="TVTimer",t.AVRInput="AVRInput",t.AVRPower="AVRPower",t.ColorF0Red="ColorF0Red",t.ColorF1Green="ColorF1Green",t.ColorF2Yellow="ColorF2Yellow",t.ColorF3Blue="ColorF3Blue",t.ColorF4Grey="ColorF4Grey",t.ColorF5Brown="ColorF5Brown",t.ClosedCaptionToggle="ClosedCaptionToggle",t.Dimmer="Dimmer",t.DisplaySwap="DisplaySwap",t.DVR="DVR",t.Exit="Exit",t.FavoriteClear0="FavoriteClear0",t.FavoriteClear1="FavoriteClear1",t.FavoriteClear2="FavoriteClear2",t.FavoriteClear3="FavoriteClear3",t.FavoriteRecall0="FavoriteRecall0",t.FavoriteRecall1="FavoriteRecall1",t.FavoriteRecall2="FavoriteRecall2",t.FavoriteRecall3="FavoriteRecall3",t.FavoriteStore0="FavoriteStore0",t.FavoriteStore1="FavoriteStore1",t.FavoriteStore2="FavoriteStore2",t.FavoriteStore3="FavoriteStore3",t.Guide="Guide",t.GuideNextDay="GuideNextDay",t.GuidePreviousDay="GuidePreviousDay",t.Info="Info",t.InstantReplay="InstantReplay",t.Link="Link",t.ListProgram="ListProgram",t.LiveContent="LiveContent",t.Lock="Lock",t.MediaApps="MediaApps",t.MediaAudioTrack="MediaAudioTrack",t.MediaLast="MediaLast",t.MediaSkipBackward="MediaSkipBackward",t.MediaSkipForward="MediaSkipForward",t.MediaStepBackward="MediaStepBackward",t.MediaStepForward="MediaStepForward",t.MediaTopMenu="MediaTopMenu",t.NavigateIn="NavigateIn",t.NavigateNext="NavigateNext",t.NavigateOut="NavigateOut",t.NavigatePrevious="NavigatePrevious",t.NextFavoriteChannel="NextFavoriteChannel",t.NextUserProfile="NextUserProfile",t.OnDemand="OnDemand",t.Pairing="Pairing",t.PinPDown="PinPDown",t.PinPMove="PinPMove",t.PinPToggle="PinPToggle",t.PinPUp="PinPUp",t.PlaySpeedDown="PlaySpeedDown",t.PlaySpeedReset="PlaySpeedReset",t.PlaySpeedUp="PlaySpeedUp",t.RandomToggle="RandomToggle",t.RcLowBattery="RcLowBattery",t.RecordSpeedNext="RecordSpeedNext",t.RfBypass="RfBypass",t.ScanChannelsToggle="ScanChannelsToggle",t.ScreenModeNext="ScreenModeNext",t.Settings="Settings",t.SplitScreenToggle="SplitScreenToggle",t.STBInput="STBInput",t.STBPower="STBPower",t.Subtitle="Subtitle",t.Teletext="Teletext",t.VideoModeNext="VideoModeNext",t.Wink="Wink",t.ZoomToggle="ZoomToggle",t.SpeechCorrectionList="SpeechCorrectionList",t.SpeechInputToggle="SpeechInputToggle",t.Close="Close",t.New="New",t.Open="Open",t.Print="Print",t.Save="Save",t.SpellCheck="SpellCheck",t.MailForward="MailForward",t.MailReply="MailReply",t.MailSend="MailSend",t.LaunchCalculator="LaunchCalculator",t.LaunchCalendar="LaunchCalendar",t.LaunchContacts="LaunchContacts",t.LaunchMail="LaunchMail",t.LaunchMediaPlayer="LaunchMediaPlayer",t.LaunchMusicPlayer="LaunchMusicPlayer",t.LaunchMyComputer="LaunchMyComputer",t.LaunchPhone="LaunchPhone",t.LaunchScreenSaver="LaunchScreenSaver",t.LaunchSpreadsheet="LaunchSpreadsheet",t.LaunchWebBrowser="LaunchWebBrowser",t.LaunchWebCam="LaunchWebCam",t.LaunchWordProcessor="LaunchWordProcessor",t.LaunchApplication1="LaunchApplication1",t.LaunchApplication2="LaunchApplication2",t.LaunchApplication3="LaunchApplication3",t.LaunchApplication4="LaunchApplication4",t.LaunchApplication5="LaunchApplication5",t.LaunchApplication6="LaunchApplication6",t.LaunchApplication7="LaunchApplication7",t.LaunchApplication8="LaunchApplication8",t.LaunchApplication9="LaunchApplication9",t.LaunchApplication10="LaunchApplication10",t.LaunchApplication11="LaunchApplication11",t.LaunchApplication12="LaunchApplication12",t.LaunchApplication13="LaunchApplication13",t.LaunchApplication14="LaunchApplication14",t.LaunchApplication15="LaunchApplication15",t.LaunchApplication16="LaunchApplication16",t.BrowserBack="BrowserBack",t.BrowserFavorites="BrowserFavorites",t.BrowserForward="BrowserForward",t.BrowserHome="BrowserHome",t.BrowserRefresh="BrowserRefresh",t.BrowserSearch="BrowserSearch",t.BrowserStop="BrowserStop",t.Decimal="Decimal",t.Key11="Key11",t.Key12="Key12",t.Multiply="Multiply",t.Add="Add",t.Divide="Divide",t.Subtract="Subtract",t.Separator="Separator"})(e.s||(e.s={}))}},e={};function n(r){var o=e[r];if(void 0!==o)return o.exports;var i=e[r]={exports:{}};return t[r](i,i.exports,n),i.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";var t=n(969),e=n.n(t);class r{constructor(t){var n;this.color=t instanceof Array?t:null===(n=e().get(t))||void 0===n?void 0:n.value}get r(){return this.color[0]}get g(){return this.color[1]}get b(){return this.color[2]}get a(){return this.color[3]}get hex(){return e().to.hex(this.color)}get rgb(){return e().to.rgb(this.color)}get rgbPercent(){return e().to.rgb.percent(this.color)}get hsl(){return e().to.hsl(this.color)}get hsv(){return e().to.hwb(this.color)}get keyword(){return e().to.keyword(this.color)}toString(){return this.hex}valueOf(){return this.hex}}class o{constructor(...t){this.colors=new Array,this.colors=t.map((t=>t instanceof r?t:new r(t)))}get medianColor(){const t=this.colors[Math.floor(this.colors.length/2)];if(!t)throw new Error("No colors found");return t}}class i{constructor(t,e){this.rootStyle=e,this.styleElement=document.createElement("style"),t.addController(this)}hostConnected(){s.inject(this.rootStyle,this.styleElement)}hostDisconnected(){this.styleElement?.remove()}}class s{static inject(t,e=document.createElement("style")){return e.innerHTML=t.cssText,document.head.appendChild(e),e}}class a extends Set{async execute(t){await Promise.allSettled([...this].map((e=>e(t))))}}class c{static open(t=window.location.pathname,e=0){return new Promise(((n,r)=>{window.matchMedia("(display-mode: standalone)").matches&&0===e&&!manifest?.display_override?.includes("tabbed")&&(e=1);const o=window.open(t,void 0,0===e?"":"popup");if(!o)return r(new Error("Failed to open a window, probably because the permission is denied."));o.resizeTo(window.outerWidth*c.windowSizeReductionMultiplier,window.outerHeight*c.windowSizeReductionMultiplier),o.moveTo(window.screenX+(window.outerWidth-o.outerWidth)/2,window.screenY+(window.outerHeight-o.outerHeight)/2),o.addEventListener("Application.initialized",(()=>n(o)),{once:!0})}))}static async openAndFocus(...t){(await c.open(...t)).focus()}}c.windowSizeReductionMultiplier=.9;class l extends Error{constructor(t,e=l.defaultMessageByErrorCode.get(t)){super(e),this.statusCode=t}}function h(t){return(e,n)=>{Object.defineProperty(e,n,{get(){const e=[...this.renderRoot?.querySelectorAll("*")??[]].find((e=>t in e.constructor&&!0===e.constructor[t]));if(!e)throw new Error(`${this.constructor.name}'s ${n} cannot be found.`);return e}})}}function u(){return(t,e)=>{Object.defineProperty(t,e,{get(){return[...window.document.querySelectorAll("*")].find((t=>t instanceof this))}})}}l.defaultMessageByErrorCode=new Map([[400,"Bad Request"],[401,"Unauthorized"],[402,"Payment Required"],[404,"Page Not Found"],[403,"Access Denied"],[405,"Method Not Allowed"],[406,"Not Accepted"],[407,"Proxy Authentication Required"],[408,"Request Timeout"],[409,"Conflict"],[410,"Gone"],[411,"Length Required"],[412,"Precondition Failed"],[413,"Request Entity Too Large"],[414,"Request Uri Too Long"],[415,"Unsupported Media Type"],[416,"Requested Range Not Satisfiable"],[417,"Expectation Failed"],[421,"Misdirected Request"],[422,"Unprocessable Entity"],[423,"Locked"],[424,"Failed Dependency"],[426,"Upgrade Required"],[428,"Precondition Required"],[429,"Too Many Requests"],[431,"Request Header Fields TooLarge"],[451,"Unavailable For Legal Reasons"],[500,"Internal Server Error"],[501,"Not Implemented"],[502,"Bad Gateway"],[503,"Service Unavailable"],[504,"Gateway Timeout"],[505,"Http Version Not Supported"],[506,"Variant Also Negotiates"],[507,"Insufficient Storage"],[508,"Loop Detected"],[510,"Not Extended"],[511,"Network Authentication Required"]]);const d=t=>{Object.defineProperty(t.prototype,"inert",{enumerable:!0,configurable:!1,get:()=>!1,set:t=>t})};var p=n(388),f=/[$_\p{ID_Start}]/u,g=/[$_\u200C\u200D\p{ID_Continue}]/u;function m(t,e){return(e?/^[\x00-\xFF]*$/:/^[\x00-\x7F]*$/).test(t)}function v(t,e=!1){const n=[];let r=0;for(;r<t.length;){const o=t[r],i=function(o){if(!e)throw new TypeError(o);n.push({type:"INVALID_CHAR",index:r,value:t[r++]})};if("*"!==o)if("+"!==o&&"?"!==o)if("\\"!==o)if("{"!==o)if("}"!==o)if(":"!==o)if("("!==o)n.push({type:"CHAR",index:r,value:t[r++]});else{let e=1,o="",s=r+1,a=!1;if("?"===t[s]){i(`Pattern cannot start with "?" at ${s}`);continue}for(;s<t.length;){if(!m(t[s],!1)){i(`Invalid character '${t[s]}' at ${s}.`),a=!0;break}if("\\"!==t[s]){if(")"===t[s]){if(e--,0===e){s++;break}}else if("("===t[s]&&(e++,"?"!==t[s+1])){i(`Capturing groups are not allowed at ${s}`),a=!0;break}o+=t[s++]}else o+=t[s++]+t[s++]}if(a)continue;if(e){i(`Unbalanced pattern at ${r}`);continue}if(!o){i(`Missing pattern at ${r}`);continue}n.push({type:"PATTERN",index:r,value:o}),r=s}else{let e="",o=r+1;for(;o<t.length;){const n=t.substr(o,1);if(!(o===r+1&&f.test(n)||o!==r+1&&g.test(n)))break;e+=t[o++]}if(!e){i(`Missing parameter name at ${r}`);continue}n.push({type:"NAME",index:r,value:e}),r=o}else n.push({type:"CLOSE",index:r,value:t[r++]});else n.push({type:"OPEN",index:r,value:t[r++]});else n.push({type:"ESCAPED_CHAR",index:r++,value:t[r++]});else n.push({type:"MODIFIER",index:r,value:t[r++]});else n.push({type:"ASTERISK",index:r,value:t[r++]})}return n.push({type:"END",index:r,value:""}),n}function y(t,e={}){const n=v(t),{prefixes:r="./"}=e,o=`[^${w(void 0===e.delimiter?"/#?":e.delimiter)}]+?`,i=[];let s=0,a=0,c="",l=new Set;const h=t=>{if(a<n.length&&n[a].type===t)return n[a++].value},u=()=>{const t=h("MODIFIER");return t||h("ASTERISK")},d=t=>{const e=h(t);if(void 0!==e)return e;const{type:r,index:o}=n[a];throw new TypeError(`Unexpected ${r} at ${o}, expected ${t}`)},p=()=>{let t,e="";for(;t=h("CHAR")||h("ESCAPED_CHAR");)e+=t;return e},f=e.encodePart||(t=>t);for(;a<n.length;){const t=h("CHAR"),e=h("NAME");let n=h("PATTERN");if(e||n||!h("ASTERISK")||(n=".*"),e||n){let a=t||"";-1===r.indexOf(a)&&(c+=a,a=""),c&&(i.push(f(c)),c="");const h=e||s++;if(l.has(h))throw new TypeError(`Duplicate name '${h}'.`);l.add(h),i.push({name:h,prefix:f(a),suffix:"",pattern:n||o,modifier:u()||""});continue}const a=t||h("ESCAPED_CHAR");if(a){c+=a;continue}if(h("OPEN")){const t=p(),e=h("NAME")||"";let n=h("PATTERN")||"";e||n||!h("ASTERISK")||(n=".*");const r=p();d("CLOSE");const a=u()||"";if(!e&&!n&&!a){c+=t;continue}if(!e&&!n&&!t)continue;c&&(i.push(f(c)),c=""),i.push({name:e||(n?s++:""),pattern:e&&!n?o:n,prefix:f(t),suffix:f(r),modifier:a})}else c&&(i.push(f(c)),c=""),d("END")}return i}function w(t){return t.replace(/([.+*?^${}()[\]|/\\])/g,"\\$1")}function b(t){return t&&t.ignoreCase?"ui":"u"}function A(t,e,n={}){const{strict:r=!1,start:o=!0,end:i=!0,encode:s=(t=>t)}=n,a=`[${w(void 0===n.endsWith?"":n.endsWith)}]|$`,c=`[${w(void 0===n.delimiter?"/#?":n.delimiter)}]`;let l=o?"^":"";for(const n of t)if("string"==typeof n)l+=w(s(n));else{const t=w(s(n.prefix)),r=w(s(n.suffix));if(n.pattern)if(e&&e.push(n),t||r)if("+"===n.modifier||"*"===n.modifier){const e="*"===n.modifier?"?":"";l+=`(?:${t}((?:${n.pattern})(?:${r}${t}(?:${n.pattern}))*)${r})${e}`}else l+=`(?:${t}(${n.pattern})${r})${n.modifier}`;else"+"===n.modifier||"*"===n.modifier?l+=`((?:${n.pattern})${n.modifier})`:l+=`(${n.pattern})${n.modifier}`;else l+=`(?:${t}${r})${n.modifier}`}if(i)r||(l+=`${c}?`),l+=n.endsWith?`(?=${a})`:"$";else{const e=t[t.length-1],n="string"==typeof e?c.indexOf(e[e.length-1])>-1:void 0===e;r||(l+=`(?:${c}(?=${a}))?`),n||(l+=`(?=${c}|${a})`)}return new RegExp(l,b(n))}function $(t,e,n){return t instanceof RegExp?function(t,e){if(!e)return t;const n=/\((?:\?<(.*?)>)?(?!\?)/g;let r=0,o=n.exec(t.source);for(;o;)e.push({name:o[1]||r++,prefix:"",suffix:"",modifier:"",pattern:""}),o=n.exec(t.source);return t}(t,e):Array.isArray(t)?function(t,e,n){const r=t.map((t=>$(t,e,n).source));return new RegExp(`(?:${r.join("|")})`,b(n))}(t,e,n):function(t,e,n){return A(y(t,n),e,n)}(t,e,n)}var C={delimiter:"",prefixes:"",sensitive:!0,strict:!0},S={delimiter:".",prefixes:"",sensitive:!0,strict:!0},x={delimiter:"/",prefixes:"/",sensitive:!0,strict:!0};function E(t,e){return t.startsWith(e)?t.substring(e.length,t.length):t}function k(t){return!(!t||t.length<2)&&("["===t[0]||("\\"===t[0]||"{"===t[0])&&"["===t[1])}var _=["ftp","file","http","https","ws","wss"];function P(t){if(!t)return!0;for(const e of _)if(t.test(e))return!0;return!1}function T(t){switch(t){case"ws":case"http":return"80";case"wws":case"https":return"443";case"ftp":return"21";default:return""}}function R(t){if(""===t)return t;if(/^[-+.A-Za-z0-9]*$/.test(t))return t.toLowerCase();throw new TypeError(`Invalid protocol '${t}'.`)}function M(t){if(""===t)return t;const e=new URL("https://example.com");return e.username=t,e.username}function L(t){if(""===t)return t;const e=new URL("https://example.com");return e.password=t,e.password}function N(t){if(""===t)return t;if(/[\t\n\r #%/:<>?@[\]^\\|]/g.test(t))throw new TypeError(`Invalid hostname '${t}'`);const e=new URL("https://example.com");return e.hostname=t,e.hostname}function I(t){if(""===t)return t;if(/[^0-9a-fA-F[\]:]/g.test(t))throw new TypeError(`Invalid IPv6 hostname '${t}'`);return t.toLowerCase()}function F(t){if(""===t)return t;if(/^[0-9]*$/.test(t)&&parseInt(t)<=65535)return t;throw new TypeError(`Invalid port '${t}'.`)}function H(t){if(""===t)return t;const e=new URL("https://example.com");return e.pathname="/"!==t[0]?"/-"+t:t,"/"!==t[0]?e.pathname.substring(2,e.pathname.length):e.pathname}function D(t){if(""===t)return t;return new URL(`data:${t}`).pathname}function U(t){if(""===t)return t;const e=new URL("https://example.com");return e.search=t,e.search.substring(1,e.search.length)}function O(t){if(""===t)return t;const e=new URL("https://example.com");return e.hash=t,e.hash.substring(1,e.hash.length)}var V=["protocol","username","password","hostname","port","pathname","search","hash"],B="*";function j(t,e){if("string"!=typeof t)throw new TypeError("parameter 1 is not of type 'string'.");const n=new URL(t,e);return{protocol:n.protocol.substring(0,n.protocol.length-1),username:n.username,password:n.password,hostname:n.hostname,port:n.port,pathname:n.pathname,search:""!=n.search?n.search.substring(1,n.search.length):void 0,hash:""!=n.hash?n.hash.substring(1,n.hash.length):void 0}}function W(t,e){return e?q(t):t}function G(t,e,n){let r;if("string"==typeof e.baseURL)try{r=new URL(e.baseURL),t.protocol=W(r.protocol.substring(0,r.protocol.length-1),n),t.username=W(r.username,n),t.password=W(r.password,n),t.hostname=W(r.hostname,n),t.port=W(r.port,n),t.pathname=W(r.pathname,n),t.search=W(r.search.substring(1,r.search.length),n),t.hash=W(r.hash.substring(1,r.hash.length),n)}catch{throw new TypeError(`invalid baseURL '${e.baseURL}'.`)}if("string"==typeof e.protocol&&(t.protocol=function(t,e){var n,r;return r=":",t=(n=t).endsWith(r)?n.substr(0,n.length-r.length):n,e||""===t?t:R(t)}(e.protocol,n)),"string"==typeof e.username&&(t.username=function(t,e){if(e||""===t)return t;const n=new URL("https://example.com");return n.username=t,n.username}(e.username,n)),"string"==typeof e.password&&(t.password=function(t,e){if(e||""===t)return t;const n=new URL("https://example.com");return n.password=t,n.password}(e.password,n)),"string"==typeof e.hostname&&(t.hostname=function(t,e){return e||""===t?t:k(t)?I(t):N(t)}(e.hostname,n)),"string"==typeof e.port&&(t.port=function(t,e,n){return T(e)===t&&(t=""),n||""===t?t:F(t)}(e.port,t.protocol,n)),"string"==typeof e.pathname){if(t.pathname=e.pathname,r&&!function(t,e){return!(!t.length||"/"!==t[0]&&(!e||t.length<2||"\\"!=t[0]&&"{"!=t[0]||"/"!=t[1]))}(t.pathname,n)){const e=r.pathname.lastIndexOf("/");e>=0&&(t.pathname=W(r.pathname.substring(0,e+1),n)+t.pathname)}t.pathname=function(t,e,n){if(n||""===t)return t;if(e&&!_.includes(e))return new URL(`${e}:${t}`).pathname;const r="/"==t[0];return t=new URL(r?t:"/-"+t,"https://example.com").pathname,r||(t=t.substring(2,t.length)),t}(t.pathname,t.protocol,n)}return"string"==typeof e.search&&(t.search=function(t,e){if(t=E(t,"?"),e||""===t)return t;const n=new URL("https://example.com");return n.search=t,n.search?n.search.substring(1,n.search.length):""}(e.search,n)),"string"==typeof e.hash&&(t.hash=function(t,e){if(t=E(t,"#"),e||""===t)return t;const n=new URL("https://example.com");return n.hash=t,n.hash?n.hash.substring(1,n.hash.length):""}(e.hash,n)),t}function q(t){return t.replace(/([+*?:{}()\\])/g,"\\$1")}function z(t,e){const n=`[^${r=void 0===e.delimiter?"/#?":e.delimiter,r.replace(/([.+*?^${}()[\]|/\\])/g,"\\$1")}]+?`;var r;const o=/[$_\u200C\u200D\p{ID_Continue}]/u;let i="";for(let r=0;r<t.length;++r){const s=t[r],a=r>0?t[r-1]:null,c=r<t.length-1?t[r+1]:null;if("string"==typeof s){i+=q(s);continue}if(""===s.pattern){if(""===s.modifier){i+=q(s.prefix);continue}i+=`{${q(s.prefix)}}${s.modifier}`;continue}const l="number"!=typeof s.name,h=void 0!==e.prefixes?e.prefixes:"./";let u=""!==s.suffix||""!==s.prefix&&(1!==s.prefix.length||!h.includes(s.prefix));if(!u&&l&&s.pattern===n&&""===s.modifier&&c&&!c.prefix&&!c.suffix)if("string"==typeof c){const t=c.length>0?c[0]:"";u=o.test(t)}else u="number"==typeof c.name;if(!u&&""===s.prefix&&a&&"string"==typeof a&&a.length>0){const t=a[a.length-1];u=h.includes(t)}u&&(i+="{"),i+=q(s.prefix),l&&(i+=`:${s.name}`),".*"===s.pattern?l||a&&"string"!=typeof a&&!a.modifier&&!u&&""===s.prefix?i+="(.*)":i+="*":s.pattern===n?l||(i+=`(${n})`):i+=`(${s.pattern})`,s.pattern===n&&l&&""!==s.suffix&&o.test(s.suffix[0])&&(i+="\\"),i+=q(s.suffix),u&&(i+="}"),i+=s.modifier}return i}function K(t,e){void 0===e&&(e={});for(var n=function(t){for(var e=[],n=0;n<t.length;){var r=t[n];if("*"!==r&&"+"!==r&&"?"!==r)if("\\"!==r)if("{"!==r)if("}"!==r)if(":"!==r)if("("!==r)e.push({type:"CHAR",index:n,value:t[n++]});else{var o=1,i="";if("?"===t[a=n+1])throw new TypeError('Pattern cannot start with "?" at '.concat(a));for(;a<t.length;)if("\\"!==t[a]){if(")"===t[a]){if(0==--o){a++;break}}else if("("===t[a]&&(o++,"?"!==t[a+1]))throw new TypeError("Capturing groups are not allowed at ".concat(a));i+=t[a++]}else i+=t[a++]+t[a++];if(o)throw new TypeError("Unbalanced pattern at ".concat(n));if(!i)throw new TypeError("Missing pattern at ".concat(n));e.push({type:"PATTERN",index:n,value:i}),n=a}else{for(var s="",a=n+1;a<t.length;){var c=t.charCodeAt(a);if(!(c>=48&&c<=57||c>=65&&c<=90||c>=97&&c<=122||95===c))break;s+=t[a++]}if(!s)throw new TypeError("Missing parameter name at ".concat(n));e.push({type:"NAME",index:n,value:s}),n=a}else e.push({type:"CLOSE",index:n,value:t[n++]});else e.push({type:"OPEN",index:n,value:t[n++]});else e.push({type:"ESCAPED_CHAR",index:n++,value:t[n++]});else e.push({type:"MODIFIER",index:n,value:t[n++]})}return e.push({type:"END",index:n,value:""}),e}(t),r=e.prefixes,o=void 0===r?"./":r,i="[^".concat(Y(e.delimiter||"/#?"),"]+?"),s=[],a=0,c=0,l="",h=function(t){if(c<n.length&&n[c].type===t)return n[c++].value},u=function(t){var e=h(t);if(void 0!==e)return e;var r=n[c],o=r.type,i=r.index;throw new TypeError("Unexpected ".concat(o," at ").concat(i,", expected ").concat(t))},d=function(){for(var t,e="";t=h("CHAR")||h("ESCAPED_CHAR");)e+=t;return e};c<n.length;){var p=h("CHAR"),f=h("NAME"),g=h("PATTERN");if(f||g){var m=p||"";-1===o.indexOf(m)&&(l+=m,m=""),l&&(s.push(l),l=""),s.push({name:f||a++,prefix:m,suffix:"",pattern:g||i,modifier:h("MODIFIER")||""})}else{var v=p||h("ESCAPED_CHAR");if(v)l+=v;else if(l&&(s.push(l),l=""),h("OPEN")){m=d();var y=h("NAME")||"",w=h("PATTERN")||"",b=d();u("CLOSE"),s.push({name:y||(w?a++:""),pattern:y&&!w?i:w,prefix:m,suffix:b,modifier:h("MODIFIER")||""})}else u("END")}}return s}function Z(t,e){return function(t,e){void 0===e&&(e={});var n=X(e),r=e.encode,o=void 0===r?function(t){return t}:r,i=e.validate,s=void 0===i||i,a=t.map((function(t){if("object"==typeof t)return new RegExp("^(?:".concat(t.pattern,")$"),n)}));return function(e){for(var n="",r=0;r<t.length;r++){var i=t[r];if("string"!=typeof i){var c=e?e[i.name]:void 0,l="?"===i.modifier||"*"===i.modifier,h="*"===i.modifier||"+"===i.modifier;if(Array.isArray(c)){if(!h)throw new TypeError('Expected "'.concat(i.name,'" to not repeat, but got an array'));if(0===c.length){if(l)continue;throw new TypeError('Expected "'.concat(i.name,'" to not be empty'))}for(var u=0;u<c.length;u++){var d=o(c[u],i);if(s&&!a[r].test(d))throw new TypeError('Expected all "'.concat(i.name,'" to match "').concat(i.pattern,'", but got "').concat(d,'"'));n+=i.prefix+d+i.suffix}}else if("string"!=typeof c&&"number"!=typeof c){if(!l){var p=h?"an array":"a string";throw new TypeError('Expected "'.concat(i.name,'" to be ').concat(p))}}else{d=o(String(c),i);if(s&&!a[r].test(d))throw new TypeError('Expected "'.concat(i.name,'" to match "').concat(i.pattern,'", but got "').concat(d,'"'));n+=i.prefix+d+i.suffix}}else n+=i}return n}}(K(t,e),e)}function J(t,e){var n=[];return function(t,e,n){void 0===n&&(n={});var r=n.decode,o=void 0===r?function(t){return t}:r;return function(n){var r=t.exec(n);if(!r)return!1;for(var i=r[0],s=r.index,a=Object.create(null),c=function(t){if(void 0===r[t])return"continue";var n=e[t-1];"*"===n.modifier||"+"===n.modifier?a[n.name]=r[t].split(n.prefix+n.suffix).map((function(t){return o(t,n)})):a[n.name]=o(r[t],n)},l=1;l<r.length;l++)c(l);return{path:i,index:s,params:a}}}(tt(t,n,e),n,e)}function Y(t){return t.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1")}function X(t){return t&&t.sensitive?"":"i"}function Q(t,e,n){return function(t,e,n){void 0===n&&(n={});for(var r=n.strict,o=void 0!==r&&r,i=n.start,s=void 0===i||i,a=n.end,c=void 0===a||a,l=n.encode,h=void 0===l?function(t){return t}:l,u=n.delimiter,d=void 0===u?"/#?":u,p=n.endsWith,f="[".concat(Y(void 0===p?"":p),"]|$"),g="[".concat(Y(d),"]"),m=s?"^":"",v=0,y=t;v<y.length;v++){var w=y[v];if("string"==typeof w)m+=Y(h(w));else{var b=Y(h(w.prefix)),A=Y(h(w.suffix));if(w.pattern)if(e&&e.push(w),b||A)if("+"===w.modifier||"*"===w.modifier){var $="*"===w.modifier?"?":"";m+="(?:".concat(b,"((?:").concat(w.pattern,")(?:").concat(A).concat(b,"(?:").concat(w.pattern,"))*)").concat(A,")").concat($)}else m+="(?:".concat(b,"(").concat(w.pattern,")").concat(A,")").concat(w.modifier);else"+"===w.modifier||"*"===w.modifier?m+="((?:".concat(w.pattern,")").concat(w.modifier,")"):m+="(".concat(w.pattern,")").concat(w.modifier);else m+="(?:".concat(b).concat(A,")").concat(w.modifier)}}if(c)o||(m+="".concat(g,"?")),m+=n.endsWith?"(?=".concat(f,")"):"$";else{var C=t[t.length-1],S="string"==typeof C?g.indexOf(C[C.length-1])>-1:void 0===C;o||(m+="(?:".concat(g,"(?=").concat(f,"))?")),S||(m+="(?=".concat(g,"|").concat(f,")"))}return new RegExp(m,X(n))}(K(t,n),e,n)}function tt(t,e,n){return t instanceof RegExp?function(t,e){if(!e)return t;for(var n=/\((?:\?<(.*?)>)?(?!\?)/g,r=0,o=n.exec(t.source);o;)e.push({name:o[1]||r++,prefix:"",suffix:"",modifier:"",pattern:""}),o=n.exec(t.source);return t}(t,e):Array.isArray(t)?function(t,e,n){var r=t.map((function(t){return tt(t,e,n).source}));return new RegExp("(?:".concat(r.join("|"),")"),X(n))}(t,e,n):Q(t,e,n)}globalThis.URLPattern||(globalThis.URLPattern=class{constructor(t={},e,n){this.regexp={},this.keys={},this.component_pattern={};try{let r;if("string"==typeof e?r=e:n=e,"string"==typeof t){const e=new class{constructor(t){this.tokenList=[],this.internalResult={},this.tokenIndex=0,this.tokenIncrement=1,this.componentStart=0,this.state=0,this.groupDepth=0,this.hostnameIPv6BracketDepth=0,this.shouldTreatAsStandardURL=!1,this.input=t}get result(){return this.internalResult}parse(){for(this.tokenList=v(this.input,!0);this.tokenIndex<this.tokenList.length;this.tokenIndex+=this.tokenIncrement){if(this.tokenIncrement=1,"END"===this.tokenList[this.tokenIndex].type){if(0===this.state){this.rewind(),this.isHashPrefix()?this.changeState(9,1):this.isSearchPrefix()?(this.changeState(8,1),this.internalResult.hash=""):(this.changeState(7,0),this.internalResult.search="",this.internalResult.hash="");continue}if(2===this.state){this.rewindAndSetState(5);continue}this.changeState(10,0);break}if(this.groupDepth>0){if(!this.isGroupClose())continue;this.groupDepth-=1}if(this.isGroupOpen())this.groupDepth+=1;else switch(this.state){case 0:this.isProtocolSuffix()&&(this.internalResult.username="",this.internalResult.password="",this.internalResult.hostname="",this.internalResult.port="",this.internalResult.pathname="",this.internalResult.search="",this.internalResult.hash="",this.rewindAndSetState(1));break;case 1:if(this.isProtocolSuffix()){this.computeShouldTreatAsStandardURL();let t=7,e=1;this.shouldTreatAsStandardURL&&(this.internalResult.pathname="/"),this.nextIsAuthoritySlashes()?(t=2,e=3):this.shouldTreatAsStandardURL&&(t=2),this.changeState(t,e)}break;case 2:this.isIdentityTerminator()?this.rewindAndSetState(3):(this.isPathnameStart()||this.isSearchPrefix()||this.isHashPrefix())&&this.rewindAndSetState(5);break;case 3:this.isPasswordPrefix()?this.changeState(4,1):this.isIdentityTerminator()&&this.changeState(5,1);break;case 4:this.isIdentityTerminator()&&this.changeState(5,1);break;case 5:this.isIPv6Open()?this.hostnameIPv6BracketDepth+=1:this.isIPv6Close()&&(this.hostnameIPv6BracketDepth-=1),this.isPortPrefix()&&!this.hostnameIPv6BracketDepth?this.changeState(6,1):this.isPathnameStart()?this.changeState(7,0):this.isSearchPrefix()?this.changeState(8,1):this.isHashPrefix()&&this.changeState(9,1);break;case 6:this.isPathnameStart()?this.changeState(7,0):this.isSearchPrefix()?this.changeState(8,1):this.isHashPrefix()&&this.changeState(9,1);break;case 7:this.isSearchPrefix()?this.changeState(8,1):this.isHashPrefix()&&this.changeState(9,1);break;case 8:this.isHashPrefix()&&this.changeState(9,1)}}}changeState(t,e){switch(this.state){case 0:case 2:case 10:break;case 1:this.internalResult.protocol=this.makeComponentString();break;case 3:this.internalResult.username=this.makeComponentString();break;case 4:this.internalResult.password=this.makeComponentString();break;case 5:this.internalResult.hostname=this.makeComponentString();break;case 6:this.internalResult.port=this.makeComponentString();break;case 7:this.internalResult.pathname=this.makeComponentString();break;case 8:this.internalResult.search=this.makeComponentString();break;case 9:this.internalResult.hash=this.makeComponentString()}this.changeStateWithoutSettingComponent(t,e)}changeStateWithoutSettingComponent(t,e){this.state=t,this.componentStart=this.tokenIndex+e,this.tokenIndex+=e,this.tokenIncrement=0}rewind(){this.tokenIndex=this.componentStart,this.tokenIncrement=0}rewindAndSetState(t){this.rewind(),this.state=t}safeToken(t){return t<0&&(t=this.tokenList.length-t),t<this.tokenList.length?this.tokenList[t]:this.tokenList[this.tokenList.length-1]}isNonSpecialPatternChar(t,e){const n=this.safeToken(t);return n.value===e&&("CHAR"===n.type||"ESCAPED_CHAR"===n.type||"INVALID_CHAR"===n.type)}isProtocolSuffix(){return this.isNonSpecialPatternChar(this.tokenIndex,":")}nextIsAuthoritySlashes(){return this.isNonSpecialPatternChar(this.tokenIndex+1,"/")&&this.isNonSpecialPatternChar(this.tokenIndex+2,"/")}isIdentityTerminator(){return this.isNonSpecialPatternChar(this.tokenIndex,"@")}isPasswordPrefix(){return this.isNonSpecialPatternChar(this.tokenIndex,":")}isPortPrefix(){return this.isNonSpecialPatternChar(this.tokenIndex,":")}isPathnameStart(){return this.isNonSpecialPatternChar(this.tokenIndex,"/")}isSearchPrefix(){if(this.isNonSpecialPatternChar(this.tokenIndex,"?"))return!0;if("?"!==this.tokenList[this.tokenIndex].value)return!1;const t=this.safeToken(this.tokenIndex-1);return"NAME"!==t.type&&"PATTERN"!==t.type&&"CLOSE"!==t.type&&"ASTERISK"!==t.type}isHashPrefix(){return this.isNonSpecialPatternChar(this.tokenIndex,"#")}isGroupOpen(){return"OPEN"==this.tokenList[this.tokenIndex].type}isGroupClose(){return"CLOSE"==this.tokenList[this.tokenIndex].type}isIPv6Open(){return this.isNonSpecialPatternChar(this.tokenIndex,"[")}isIPv6Close(){return this.isNonSpecialPatternChar(this.tokenIndex,"]")}makeComponentString(){const t=this.tokenList[this.tokenIndex],e=this.safeToken(this.componentStart).index;return this.input.substring(e,t.index)}computeShouldTreatAsStandardURL(){const t={};Object.assign(t,C),t.encodePart=R;const e=$(this.makeComponentString(),void 0,t);this.shouldTreatAsStandardURL=P(e)}}(t);if(e.parse(),t=e.result,void 0===r&&"string"!=typeof t.protocol)throw new TypeError("A base URL must be provided for a relative constructor string.");t.baseURL=r}else{if(!t||"object"!=typeof t)throw new TypeError("parameter 1 is not of type 'string' and cannot convert to dictionary.");if(r)throw new TypeError("parameter 1 is not of type 'string'.")}void 0===n&&(n={ignoreCase:!1});const o={ignoreCase:!0===n.ignoreCase},i={pathname:B,protocol:B,username:B,password:B,hostname:B,port:B,search:B,hash:B};let s;for(s of(this.pattern=G(i,t,!0),T(this.pattern.protocol)===this.pattern.port&&(this.pattern.port=""),V)){if(!(s in this.pattern))continue;const t={},e=this.pattern[s];switch(this.keys[s]=[],s){case"protocol":Object.assign(t,C),t.encodePart=R;break;case"username":Object.assign(t,C),t.encodePart=M;break;case"password":Object.assign(t,C),t.encodePart=L;break;case"hostname":Object.assign(t,S),k(e)?t.encodePart=I:t.encodePart=N;break;case"port":Object.assign(t,C),t.encodePart=F;break;case"pathname":P(this.regexp.protocol)?(Object.assign(t,x,o),t.encodePart=H):(Object.assign(t,C,o),t.encodePart=D);break;case"search":Object.assign(t,C,o),t.encodePart=U;break;case"hash":Object.assign(t,C,o),t.encodePart=O}try{const n=y(e,t);this.regexp[s]=A(n,this.keys[s],t),this.component_pattern[s]=z(n,t)}catch{throw new TypeError(`invalid ${s} pattern '${this.pattern[s]}'.`)}}}catch(t){throw new TypeError(`Failed to construct 'URLPattern': ${t.message}`)}}test(t={},e){let n,r={pathname:"",protocol:"",username:"",password:"",hostname:"",port:"",search:"",hash:""};if("string"!=typeof t&&e)throw new TypeError("parameter 1 is not of type 'string'.");if(void 0===t)return!1;try{r=G(r,"object"==typeof t?t:j(t,e),!1)}catch(t){return!1}for(n of V)if(!this.regexp[n].exec(r[n]))return!1;return!0}exec(t={},e){let n={pathname:"",protocol:"",username:"",password:"",hostname:"",port:"",search:"",hash:""};if("string"!=typeof t&&e)throw new TypeError("parameter 1 is not of type 'string'.");if(void 0===t)return;try{n=G(n,"object"==typeof t?t:j(t,e),!1)}catch(t){return null}let r,o={};for(r of(o.inputs=e?[t,e]:[t],V)){let t=this.regexp[r].exec(n[r]);if(!t)return null;let e={};for(let[n,o]of this.keys[r].entries())if("string"==typeof o.name||"number"==typeof o.name){let r=t[n+1];e[o.name]=r}o[r]={input:n[r]||"",groups:e}}return o}get protocol(){return this.component_pattern.protocol}get username(){return this.component_pattern.username}get password(){return this.component_pattern.password}get hostname(){return this.component_pattern.hostname}get port(){return this.component_pattern.port}get pathname(){return this.component_pattern.pathname}get search(){return this.component_pattern.search}get hash(){return this.component_pattern.hash}});class et extends Map{constructor(){super(...arguments),this.basePath=""}set(t,e){return super.set(this.basePath+t,e)}}class nt{get basePath(){return nt.container.basePath}set basePath(t){nt.container.basePath=t}static getPathOf(t){const e=this.getRouteOf(t);return void 0===e?void 0:Z(e)(t.parameters)}static setPathByPage(t){const e=nt.getPathOf(t);e&&(nt.path=e)}static match(t,e="all"){const n=nt.getRouteOf(t),r=void 0!==n&&J(n)(nt.path);if(!1===r)return!1;if("ignore-parameters"===e)return!0;const o=r.params;return Object.keys(o).every((e=>e in(t.parameters??{})&&o[e]===t.parameters[e]))}static getRouteOf(t){return[...nt.container].find((([,{pageConstructor:e}])=>e.name===t.constructor.name))?.[0]}static get path(){return window.location.pathname+window.location.search}static set path(t){window.history.pushState(null,"",t),window.dispatchEvent(new PopStateEvent("popstate"))}}nt.container=new et;const rt=new WeakMap,ot=t=>{if((t=>void 0!==t.pattern)(t))return t.pattern;let e=rt.get(t);return void 0===e&&rt.set(t,e=new URLPattern({pathname:t.path})),e};class it{constructor(t,e,n){this.routes=[],this.o=[],this.t={},this.i=t=>{if(t.routes===this)return;const e=t.routes;this.o.push(e),e.l=this,t.stopImmediatePropagation(),t.onDisconnect=()=>{var t;null===(t=this.o)||void 0===t||t.splice(this.o.indexOf(e)>>>0,1)};const n=st(this.t);void 0!==n&&e.goto(n)},(this.h=t).addController(this),this.routes=[...e],this.fallback=null==n?void 0:n.fallback}link(t){var e,n;if(null==t?void 0:t.startsWith("/"))return t;if(null==t?void 0:t.startsWith("."))throw Error("Not implemented");return null!=t||(t=this.u),(null!==(n=null===(e=this.l)||void 0===e?void 0:e.link())&&void 0!==n?n:"")+t}async goto(t){var e;let n;if(0===this.routes.length&&void 0===this.fallback)n=t,this.u="",this.t={0:n};else{const r=this.v(t);if(void 0===r)throw Error("No route found for "+t);const o=ot(r).exec({pathname:t}),i=null!==(e=null==o?void 0:o.pathname.groups)&&void 0!==e?e:{};if(n=st(i),"function"==typeof r.enter&&!1===await r.enter(i))return;this.p=r,this.t=i,this.u=void 0===n?t:t.substring(0,t.length-n.length)}if(void 0!==n)for(const t of this.o)t.goto(n);this.h.requestUpdate()}outlet(){var t,e;return null===(e=null===(t=this.p)||void 0===t?void 0:t.render)||void 0===e?void 0:e.call(t,this.t)}get params(){return this.t}v(t){const e=this.routes.find((e=>ot(e).test({pathname:t})));return e||void 0===this.fallback?e:this.fallback?{...this.fallback,path:"/*"}:void 0}hostConnected(){this.h.addEventListener(at.eventName,this.i);const t=new at(this);this.h.dispatchEvent(t),this._=t.onDisconnect}hostDisconnected(){var t;null===(t=this._)||void 0===t||t.call(this),this.l=void 0}}const st=t=>{let e;for(const n of Object.keys(t))/\d+/.test(n)&&(void 0===e||n>e)&&(e=n);return e&&t[e]};class at extends Event{constructor(t){super(at.eventName,{bubbles:!0,composed:!0,cancelable:!1}),this.routes=t}}at.eventName="lit-routes-connected";const ct=location.origin||location.protocol+"//"+location.host;class lt extends it{constructor(){super(...arguments),this.m=t=>{const e=0!==t.button||t.metaKey||t.ctrlKey||t.shiftKey;if(t.defaultPrevented||e)return;const n=t.composedPath().find((t=>"A"===t.tagName));if(void 0===n||""!==n.target||n.hasAttribute("download")||"external"===n.getAttribute("rel"))return;const r=n.href;if(""===r||r.startsWith("mailto:"))return;const o=window.location;n.origin===ct&&(t.preventDefault(),r!==o.href&&(window.history.pushState({},"",r),this.goto(n.pathname)))},this.R=t=>{this.goto(window.location.pathname)}}hostConnected(){super.hostConnected(),window.addEventListener("click",this.m),window.addEventListener("popstate",this.R),this.goto(window.location.pathname)}hostDisconnected(){super.hostDisconnected(),window.removeEventListener("click",this.m),window.removeEventListener("popstate",this.R)}}class ht extends lt{hostConnected(){this.importDecoratorRoutesIfAvailable(),super.hostConnected()}constructor(...t){super(...t),this.host=t[0]}importDecoratorRoutesIfAvailable(){const t=[...nt.container].filter((([,{routerHostConstructor:t}])=>this.host.constructor===t||this.host.constructor.prototype instanceof t)).map((([t,{pageConstructor:e}])=>({route:t,pageConstructor:e})));for(const{pageConstructor:e,route:n}of t)this.routes.push({path:n,render:t=>this.currentPage?.parameters===t&&this.currentPage?.constructor===e?this.currentPage:this.currentPage=new e(t)})}}const ut=window,dt=ut.ShadowRoot&&(void 0===ut.ShadyCSS||ut.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,pt=Symbol(),ft=new WeakMap;class gt{constructor(t,e,n){if(this._$cssResult$=!0,n!==pt)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(dt&&void 0===t){const n=void 0!==e&&1===e.length;n&&(t=ft.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),n&&ft.set(e,t))}return t}toString(){return this.cssText}}const mt=t=>new gt("string"==typeof t?t:t+"",void 0,pt),vt=(t,...e)=>{const n=1===t.length?t[0]:e.reduce(((e,n,r)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(n)+t[r+1]),t[0]);return new gt(n,t,pt)},yt=dt?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const n of t.cssRules)e+=n.cssText;return mt(e)})(t):t;var wt;const bt=window,At=bt.trustedTypes,$t=At?At.emptyScript:"",Ct=bt.reactiveElementPolyfillSupport,St={toAttribute(t,e){switch(e){case Boolean:t=t?$t:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let n=t;switch(e){case Boolean:n=null!==t;break;case Number:n=null===t?null:Number(t);break;case Object:case Array:try{n=JSON.parse(t)}catch(t){n=null}}return n}},xt=(t,e)=>e!==t&&(e==e||t==t),Et={attribute:!0,type:String,converter:St,reflect:!1,hasChanged:xt};class kt extends HTMLElement{constructor(){super(),this._$Ei=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$El=null,this.u()}static addInitializer(t){var e;this.finalize(),(null!==(e=this.h)&&void 0!==e?e:this.h=[]).push(t)}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach(((e,n)=>{const r=this._$Ep(n,e);void 0!==r&&(this._$Ev.set(r,n),t.push(r))})),t}static createProperty(t,e=Et){if(e.state&&(e.attribute=!1),this.finalize(),this.elementProperties.set(t,e),!e.noAccessor&&!this.prototype.hasOwnProperty(t)){const n="symbol"==typeof t?Symbol():"__"+t,r=this.getPropertyDescriptor(t,n,e);void 0!==r&&Object.defineProperty(this.prototype,t,r)}}static getPropertyDescriptor(t,e,n){return{get(){return this[e]},set(r){const o=this[t];this[e]=r,this.requestUpdate(t,o,n)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||Et}static finalize(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),void 0!==t.h&&(this.h=[...t.h]),this.elementProperties=new Map(t.elementProperties),this._$Ev=new Map,this.hasOwnProperty("properties")){const t=this.properties,e=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const n of e)this.createProperty(n,t[n])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const n=new Set(t.flat(1/0).reverse());for(const t of n)e.unshift(yt(t))}else void 0!==t&&e.push(yt(t));return e}static _$Ep(t,e){const n=e.attribute;return!1===n?void 0:"string"==typeof n?n:"string"==typeof t?t.toLowerCase():void 0}u(){var t;this._$E_=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$Eg(),this.requestUpdate(),null===(t=this.constructor.h)||void 0===t||t.forEach((t=>t(this)))}addController(t){var e,n;(null!==(e=this._$ES)&&void 0!==e?e:this._$ES=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(n=t.hostConnected)||void 0===n||n.call(t))}removeController(t){var e;null===(e=this._$ES)||void 0===e||e.splice(this._$ES.indexOf(t)>>>0,1)}_$Eg(){this.constructor.elementProperties.forEach(((t,e)=>{this.hasOwnProperty(e)&&(this._$Ei.set(e,this[e]),delete this[e])}))}createRenderRoot(){var t;const e=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return((t,e)=>{dt?t.adoptedStyleSheets=e.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):e.forEach((e=>{const n=document.createElement("style"),r=ut.litNonce;void 0!==r&&n.setAttribute("nonce",r),n.textContent=e.cssText,t.appendChild(n)}))})(e,this.constructor.elementStyles),e}connectedCallback(){var t;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostConnected)||void 0===e?void 0:e.call(t)}))}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$ES)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostDisconnected)||void 0===e?void 0:e.call(t)}))}attributeChangedCallback(t,e,n){this._$AK(t,n)}_$EO(t,e,n=Et){var r;const o=this.constructor._$Ep(t,n);if(void 0!==o&&!0===n.reflect){const i=(void 0!==(null===(r=n.converter)||void 0===r?void 0:r.toAttribute)?n.converter:St).toAttribute(e,n.type);this._$El=t,null==i?this.removeAttribute(o):this.setAttribute(o,i),this._$El=null}}_$AK(t,e){var n;const r=this.constructor,o=r._$Ev.get(t);if(void 0!==o&&this._$El!==o){const t=r.getPropertyOptions(o),i="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==(null===(n=t.converter)||void 0===n?void 0:n.fromAttribute)?t.converter:St;this._$El=o,this[o]=i.fromAttribute(e,t.type),this._$El=null}}requestUpdate(t,e,n){let r=!0;void 0!==t&&(((n=n||this.constructor.getPropertyOptions(t)).hasChanged||xt)(this[t],e)?(this._$AL.has(t)||this._$AL.set(t,e),!0===n.reflect&&this._$El!==t&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(t,n))):r=!1),!this.isUpdatePending&&r&&(this._$E_=this._$Ej())}async _$Ej(){this.isUpdatePending=!0;try{await this._$E_}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var t;if(!this.isUpdatePending)return;this.hasUpdated,this._$Ei&&(this._$Ei.forEach(((t,e)=>this[e]=t)),this._$Ei=void 0);let e=!1;const n=this._$AL;try{e=this.shouldUpdate(n),e?(this.willUpdate(n),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostUpdate)||void 0===e?void 0:e.call(t)})),this.update(n)):this._$Ek()}catch(t){throw e=!1,this._$Ek(),t}e&&this._$AE(n)}willUpdate(t){}_$AE(t){var e;null===(e=this._$ES)||void 0===e||e.forEach((t=>{var e;return null===(e=t.hostUpdated)||void 0===e?void 0:e.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$Ek(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$E_}shouldUpdate(t){return!0}update(t){void 0!==this._$EC&&(this._$EC.forEach(((t,e)=>this._$EO(e,this[e],t))),this._$EC=void 0),this._$Ek()}updated(t){}firstUpdated(t){}}var _t;kt.finalized=!0,kt.elementProperties=new Map,kt.elementStyles=[],kt.shadowRootOptions={mode:"open"},null==Ct||Ct({ReactiveElement:kt}),(null!==(wt=bt.reactiveElementVersions)&&void 0!==wt?wt:bt.reactiveElementVersions=[]).push("1.6.1");const Pt=window,Tt=Pt.trustedTypes,Rt=Tt?Tt.createPolicy("lit-html",{createHTML:t=>t}):void 0,Mt="$lit$",Lt=`lit$${(Math.random()+"").slice(9)}$`,Nt="?"+Lt,It=`<${Nt}>`,Ft=document,Ht=()=>Ft.createComment(""),Dt=t=>null===t||"object"!=typeof t&&"function"!=typeof t,Ut=Array.isArray,Ot=t=>Ut(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]),Vt="[ \t\n\f\r]",Bt=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,jt=/-->/g,Wt=/>/g,Gt=RegExp(`>|${Vt}(?:([^\\s"'>=/]+)(${Vt}*=${Vt}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),qt=/'/g,zt=/"/g,Kt=/^(?:script|style|textarea|title)$/i,Zt=t=>(e,...n)=>({_$litType$:t,strings:e,values:n}),Jt=Zt(1),Yt=Zt(2),Xt=Symbol.for("lit-noChange"),Qt=Symbol.for("lit-nothing"),te=new WeakMap,ee=Ft.createTreeWalker(Ft,129,null,!1),ne=(t,e)=>{const n=t.length-1,r=[];let o,i=2===e?"<svg>":"",s=Bt;for(let e=0;e<n;e++){const n=t[e];let a,c,l=-1,h=0;for(;h<n.length&&(s.lastIndex=h,c=s.exec(n),null!==c);)h=s.lastIndex,s===Bt?"!--"===c[1]?s=jt:void 0!==c[1]?s=Wt:void 0!==c[2]?(Kt.test(c[2])&&(o=RegExp("</"+c[2],"g")),s=Gt):void 0!==c[3]&&(s=Gt):s===Gt?">"===c[0]?(s=null!=o?o:Bt,l=-1):void 0===c[1]?l=-2:(l=s.lastIndex-c[2].length,a=c[1],s=void 0===c[3]?Gt:'"'===c[3]?zt:qt):s===zt||s===qt?s=Gt:s===jt||s===Wt?s=Bt:(s=Gt,o=void 0);const u=s===Gt&&t[e+1].startsWith("/>")?" ":"";i+=s===Bt?n+It:l>=0?(r.push(a),n.slice(0,l)+Mt+n.slice(l)+Lt+u):n+Lt+(-2===l?(r.push(void 0),e):u)}const a=i+(t[n]||"<?>")+(2===e?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==Rt?Rt.createHTML(a):a,r]};class re{constructor({strings:t,_$litType$:e},n){let r;this.parts=[];let o=0,i=0;const s=t.length-1,a=this.parts,[c,l]=ne(t,e);if(this.el=re.createElement(c,n),ee.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(r=ee.nextNode())&&a.length<s;){if(1===r.nodeType){if(r.hasAttributes()){const t=[];for(const e of r.getAttributeNames())if(e.endsWith(Mt)||e.startsWith(Lt)){const n=l[i++];if(t.push(e),void 0!==n){const t=r.getAttribute(n.toLowerCase()+Mt).split(Lt),e=/([.?@])?(.*)/.exec(n);a.push({type:1,index:o,name:e[2],strings:t,ctor:"."===e[1]?ce:"?"===e[1]?he:"@"===e[1]?ue:ae})}else a.push({type:6,index:o})}for(const e of t)r.removeAttribute(e)}if(Kt.test(r.tagName)){const t=r.textContent.split(Lt),e=t.length-1;if(e>0){r.textContent=Tt?Tt.emptyScript:"";for(let n=0;n<e;n++)r.append(t[n],Ht()),ee.nextNode(),a.push({type:2,index:++o});r.append(t[e],Ht())}}}else if(8===r.nodeType)if(r.data===Nt)a.push({type:2,index:o});else{let t=-1;for(;-1!==(t=r.data.indexOf(Lt,t+1));)a.push({type:7,index:o}),t+=Lt.length-1}o++}}static createElement(t,e){const n=Ft.createElement("template");return n.innerHTML=t,n}}function oe(t,e,n=t,r){var o,i,s,a;if(e===Xt)return e;let c=void 0!==r?null===(o=n._$Co)||void 0===o?void 0:o[r]:n._$Cl;const l=Dt(e)?void 0:e._$litDirective$;return(null==c?void 0:c.constructor)!==l&&(null===(i=null==c?void 0:c._$AO)||void 0===i||i.call(c,!1),void 0===l?c=void 0:(c=new l(t),c._$AT(t,n,r)),void 0!==r?(null!==(s=(a=n)._$Co)&&void 0!==s?s:a._$Co=[])[r]=c:n._$Cl=c),void 0!==c&&(e=oe(t,c._$AS(t,e.values),c,r)),e}class ie{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var e;const{el:{content:n},parts:r}=this._$AD,o=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:Ft).importNode(n,!0);ee.currentNode=o;let i=ee.nextNode(),s=0,a=0,c=r[0];for(;void 0!==c;){if(s===c.index){let e;2===c.type?e=new se(i,i.nextSibling,this,t):1===c.type?e=new c.ctor(i,c.name,c.strings,this,t):6===c.type&&(e=new de(i,this,t)),this._$AV.push(e),c=r[++a]}s!==(null==c?void 0:c.index)&&(i=ee.nextNode(),s++)}return o}v(t){let e=0;for(const n of this._$AV)void 0!==n&&(void 0!==n.strings?(n._$AI(t,n,e),e+=n.strings.length-2):n._$AI(t[e])),e++}}class se{constructor(t,e,n,r){var o;this.type=2,this._$AH=Qt,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=n,this.options=r,this._$Cp=null===(o=null==r?void 0:r.isConnected)||void 0===o||o}get _$AU(){var t,e;return null!==(e=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==e?e:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===(null==t?void 0:t.nodeType)&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=oe(this,t,e),Dt(t)?t===Qt||null==t||""===t?(this._$AH!==Qt&&this._$AR(),this._$AH=Qt):t!==this._$AH&&t!==Xt&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):Ot(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==Qt&&Dt(this._$AH)?this._$AA.nextSibling.data=t:this.$(Ft.createTextNode(t)),this._$AH=t}g(t){var e;const{values:n,_$litType$:r}=t,o="number"==typeof r?this._$AC(t):(void 0===r.el&&(r.el=re.createElement(r.h,this.options)),r);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===o)this._$AH.v(n);else{const t=new ie(o,this),e=t.u(this.options);t.v(n),this.$(e),this._$AH=t}}_$AC(t){let e=te.get(t.strings);return void 0===e&&te.set(t.strings,e=new re(t)),e}T(t){Ut(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let n,r=0;for(const o of t)r===e.length?e.push(n=new se(this.k(Ht()),this.k(Ht()),this,this.options)):n=e[r],n._$AI(o),r++;r<e.length&&(this._$AR(n&&n._$AB.nextSibling,r),e.length=r)}_$AR(t=this._$AA.nextSibling,e){var n;for(null===(n=this._$AP)||void 0===n||n.call(this,!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){var e;void 0===this._$AM&&(this._$Cp=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}}class ae{constructor(t,e,n,r,o){this.type=1,this._$AH=Qt,this._$AN=void 0,this.element=t,this.name=e,this._$AM=r,this.options=o,n.length>2||""!==n[0]||""!==n[1]?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=Qt}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,n,r){const o=this.strings;let i=!1;if(void 0===o)t=oe(this,t,e,0),i=!Dt(t)||t!==this._$AH&&t!==Xt,i&&(this._$AH=t);else{const r=t;let s,a;for(t=o[0],s=0;s<o.length-1;s++)a=oe(this,r[n+s],e,s),a===Xt&&(a=this._$AH[s]),i||(i=!Dt(a)||a!==this._$AH[s]),a===Qt?t=Qt:t!==Qt&&(t+=(null!=a?a:"")+o[s+1]),this._$AH[s]=a}i&&!r&&this.j(t)}j(t){t===Qt?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class ce extends ae{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===Qt?void 0:t}}const le=Tt?Tt.emptyScript:"";class he extends ae{constructor(){super(...arguments),this.type=4}j(t){t&&t!==Qt?this.element.setAttribute(this.name,le):this.element.removeAttribute(this.name)}}class ue extends ae{constructor(t,e,n,r,o){super(t,e,n,r,o),this.type=5}_$AI(t,e=this){var n;if((t=null!==(n=oe(this,t,e,0))&&void 0!==n?n:Qt)===Xt)return;const r=this._$AH,o=t===Qt&&r!==Qt||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==Qt&&(r===Qt||o);o&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,n;"function"==typeof this._$AH?this._$AH.call(null!==(n=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==n?n:this.element,t):this._$AH.handleEvent(t)}}class de{constructor(t,e,n){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(t){oe(this,t)}}const pe={O:Mt,P:Lt,A:Nt,C:1,M:ne,L:ie,D:Ot,R:oe,I:se,V:ae,H:he,N:ue,U:ce,F:de},fe=Pt.litHtmlPolyfillSupport;null==fe||fe(re,se),(null!==(_t=Pt.litHtmlVersions)&&void 0!==_t?_t:Pt.litHtmlVersions=[]).push("2.7.1");const ge=(t,e,n)=>{var r,o;const i=null!==(r=null==n?void 0:n.renderBefore)&&void 0!==r?r:e;let s=i._$litPart$;if(void 0===s){const t=null!==(o=null==n?void 0:n.renderBefore)&&void 0!==o?o:null;i._$litPart$=s=new se(e.insertBefore(Ht(),t),t,void 0,null!=n?n:{})}return s._$AI(t),s};var me,ve;class ye extends kt{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,e;const n=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=n.firstChild),n}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=ge(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!1)}render(){return Xt}}ye.finalized=!0,ye._$litElement$=!0,null===(me=globalThis.litElementHydrateSupport)||void 0===me||me.call(globalThis,{LitElement:ye});const we=globalThis.litElementPolyfillSupport;null==we||we({LitElement:ye});(null!==(ve=globalThis.litElementVersions)&&void 0!==ve?ve:globalThis.litElementVersions=[]).push("3.3.1");const be=(t,e)=>"method"===e.kind&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(n){n.createProperty(e.key,t)}}:{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:e.key,initializer(){"function"==typeof e.initializer&&(this[e.key]=e.initializer.call(this))},finisher(n){n.createProperty(e.key,t)}};function Ae(t){return(e,n)=>void 0!==n?((t,e,n)=>{e.constructor.createProperty(n,t)})(t,e,n):be(t,e)}var $e;null===($e=window.HTMLSlotElement)||void 0===$e||$e.prototype.assignedElements;const Ce=Symbol.for(""),Se=t=>{if((null==t?void 0:t.r)===Ce)return null==t?void 0:t._$litStatic$},xe=(t,...e)=>({_$litStatic$:e.reduce(((e,n,r)=>e+(t=>{if(void 0!==t._$litStatic$)return t._$litStatic$;throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t}. Use 'unsafeStatic' to pass non-literal values, but\n take care to ensure page security.`)})(n)+t[r+1]),t[0]),r:Ce}),Ee=new Map,ke=t=>(e,...n)=>{const r=n.length;let o,i;const s=[],a=[];let c,l=0,h=!1;for(;l<r;){for(c=e[l];l<r&&void 0!==(i=n[l],o=Se(i));)c+=o+e[++l],h=!0;a.push(i),s.push(c),l++}if(l===r&&s.push(e[r]),h){const t=s.join("$$lit$$");void 0===(e=Ee.get(t))&&(s.raw=s,Ee.set(t,e=s)),n=a}return t(e,...n)},_e=ke(Jt),{I:Pe}=(ke(Yt),pe),Te=(t,e)=>void 0===e?void 0!==(null==t?void 0:t._$litType$):(null==t?void 0:t._$litType$)===e,Re=t=>void 0===t.strings,Me=()=>document.createComment(""),Le=(t,e,n)=>{var r;const o=t._$AA.parentNode,i=void 0===e?t._$AB:e._$AA;if(void 0===n){const e=o.insertBefore(Me(),i),r=o.insertBefore(Me(),i);n=new Pe(e,r,t,t.options)}else{const e=n._$AB.nextSibling,s=n._$AM,a=s!==t;if(a){let e;null===(r=n._$AQ)||void 0===r||r.call(n,t),n._$AM=t,void 0!==n._$AP&&(e=t._$AU)!==s._$AU&&n._$AP(e)}if(e!==i||a){let t=n._$AA;for(;t!==e;){const e=t.nextSibling;o.insertBefore(t,i),t=e}}}return n},Ne=(t,e,n=t)=>(t._$AI(e,n),t),Ie={},Fe=(t,e=Ie)=>t._$AH=e,He=t=>t._$AH,De=t=>{var e;null===(e=t._$AP)||void 0===e||e.call(t,!1,!0);let n=t._$AA;const r=t._$AB.nextSibling;for(;n!==r;){const t=n.nextSibling;n.remove(),n=t}},Ue=t=>{t._$AR()},Oe=1,Ve=2,Be=3,je=4,We=6,Ge=t=>(...e)=>({_$litDirective$:t,values:e});class qe{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,n){this._$Ct=t,this._$AM=e,this._$Ci=n}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}const ze=(t,e)=>{var n,r;const o=t._$AN;if(void 0===o)return!1;for(const t of o)null===(r=(n=t)._$AO)||void 0===r||r.call(n,e,!1),ze(t,e);return!0},Ke=t=>{let e,n;do{if(void 0===(e=t._$AM))break;n=e._$AN,n.delete(t),t=e}while(0===(null==n?void 0:n.size))},Ze=t=>{for(let e;e=t._$AM;t=e){let n=e._$AN;if(void 0===n)e._$AN=n=new Set;else if(n.has(t))break;n.add(t),Xe(e)}};function Je(t){void 0!==this._$AN?(Ke(this),this._$AM=t,Ze(this)):this._$AM=t}function Ye(t,e=!1,n=0){const r=this._$AH,o=this._$AN;if(void 0!==o&&0!==o.size)if(e)if(Array.isArray(r))for(let t=n;t<r.length;t++)ze(r[t],!1),Ke(r[t]);else null!=r&&(ze(r,!1),Ke(r));else ze(this,t)}const Xe=t=>{var e,n,r,o;t.type==Ve&&(null!==(e=(r=t)._$AP)&&void 0!==e||(r._$AP=Ye),null!==(n=(o=t)._$AQ)&&void 0!==n||(o._$AQ=Je))};class Qe extends qe{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,n){super._$AT(t,e,n),Ze(this),this.isConnected=t._$AU}_$AO(t,e=!0){var n,r;t!==this.isConnected&&(this.isConnected=t,t?null===(n=this.reconnected)||void 0===n||n.call(this):null===(r=this.disconnected)||void 0===r||r.call(this)),e&&(ze(this,t),Ke(this))}setValue(t){if(Re(this._$Ct))this._$Ct._$AI(t,this);else{const e=[...this._$Ct._$AH];e[this._$Ci]=t,this._$Ct._$AI(e,this,0)}}disconnected(){}reconnected(){}}class tn{constructor(t){this.G=t}disconnect(){this.G=void 0}reconnect(t){this.G=t}deref(){return this.G}}class en{constructor(){this.Y=void 0,this.Z=void 0}get(){return this.Y}pause(){var t;null!==(t=this.Y)&&void 0!==t||(this.Y=new Promise((t=>this.Z=t)))}resume(){var t;null===(t=this.Z)||void 0===t||t.call(this),this.Y=this.Z=void 0}}class nn extends Qe{constructor(){super(...arguments),this._$Cq=new tn(this),this._$CK=new en}render(t,e){return Xt}update(t,[e,n]){if(this.isConnected||this.disconnected(),e===this._$CX)return;this._$CX=e;let r=0;const{_$Cq:o,_$CK:i}=this;return(async(t,e)=>{for await(const n of t)if(!1===await e(n))return})(e,(async t=>{for(;i.get();)await i.get();const s=o.deref();if(void 0!==s){if(s._$CX!==e)return!1;void 0!==n&&(t=n(t,r)),s.commitValue(t,r),r++}return!0})),Xt}commitValue(t,e){this.setValue(t)}disconnected(){this._$Cq.disconnect(),this._$CK.pause()}reconnected(){this._$Cq.reconnect(this),this._$CK.resume()}}Ge(nn),Ge(class extends nn{constructor(t){if(super(t),t.type!==Ve)throw Error("asyncAppend can only be used in child expressions")}update(t,e){return this._$CJ=t,super.update(t,e)}commitValue(t,e){0===e&&Ue(this._$CJ);const n=Le(this._$CJ);Ne(n,t)}}),Ge(class extends qe{constructor(t){super(t),this.tt=new WeakMap}render(t){return[t]}update(t,[e]){if(Te(this.et)&&(!Te(e)||this.et.strings!==e.strings)){const e=He(t).pop();let n=this.tt.get(this.et.strings);if(void 0===n){const t=document.createDocumentFragment();n=ge(Qt,t),n.setConnected(!1),this.tt.set(this.et.strings,n)}Fe(n,[e]),Le(n,void 0,e)}if(Te(e)){if(!Te(this.et)||this.et.strings!==e.strings){const n=this.tt.get(e.strings);if(void 0!==n){const e=He(n).pop();Ue(t),Le(t,void 0,e),Fe(t,[e])}}this.et=e}else this.et=void 0;return this.render(e)}}),Ge(class extends qe{constructor(t){var e;if(super(t),t.type!==Oe||"class"!==t.name||(null===(e=t.strings)||void 0===e?void 0:e.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return" "+Object.keys(t).filter((e=>t[e])).join(" ")+" "}update(t,[e]){var n,r;if(void 0===this.it){this.it=new Set,void 0!==t.strings&&(this.nt=new Set(t.strings.join(" ").split(/\s/).filter((t=>""!==t))));for(const t in e)e[t]&&!(null===(n=this.nt)||void 0===n?void 0:n.has(t))&&this.it.add(t);return this.render(e)}const o=t.element.classList;this.it.forEach((t=>{t in e||(o.remove(t),this.it.delete(t))}));for(const t in e){const n=!!e[t];n===this.it.has(t)||(null===(r=this.nt)||void 0===r?void 0:r.has(t))||(n?(o.add(t),this.it.add(t)):(o.remove(t),this.it.delete(t)))}return Xt}});const rn={};Ge(class extends qe{constructor(){super(...arguments),this.st=rn}render(t,e){return e()}update(t,[e,n]){if(Array.isArray(e)){if(Array.isArray(this.st)&&this.st.length===e.length&&e.every(((t,e)=>t===this.st[e])))return Xt}else if(this.st===e)return Xt;return this.st=Array.isArray(e)?Array.from(e):e,this.render(e,n)}}),Ge(class extends qe{constructor(){super(...arguments),this.key=Qt}render(t,e){return this.key=t,e}update(t,[e,n]){return e!==this.key&&(Fe(t),this.key=e),n}}),Ge(class extends qe{constructor(t){if(super(t),t.type!==Be&&t.type!==Oe&&t.type!==je)throw Error("The `live` directive is not allowed on child or event bindings");if(!Re(t))throw Error("`live` bindings can only contain a single expression")}render(t){return t}update(t,[e]){if(e===Xt||e===Qt)return e;const n=t.element,r=t.name;if(t.type===Be){if(e===n[r])return Xt}else if(t.type===je){if(!!e===n.hasAttribute(r))return Xt}else if(t.type===Oe&&n.getAttribute(r)===e+"")return Xt;return Fe(t),e}});const on=new WeakMap,sn=(Ge(class extends Qe{render(t){return Qt}update(t,[e]){var n;const r=e!==this.G;return r&&void 0!==this.G&&this.ot(void 0),(r||this.rt!==this.lt)&&(this.G=e,this.ct=null===(n=t.options)||void 0===n?void 0:n.host,this.ot(this.lt=t.element)),Qt}ot(t){var e;if("function"==typeof this.G){const n=null!==(e=this.ct)&&void 0!==e?e:globalThis;let r=on.get(n);void 0===r&&(r=new WeakMap,on.set(n,r)),void 0!==r.get(this.G)&&this.G.call(this.ct,void 0),r.set(this.G,t),void 0!==t&&this.G.call(this.ct,t)}else this.G.value=t}get rt(){var t,e,n;return"function"==typeof this.G?null===(e=on.get(null!==(t=this.ct)&&void 0!==t?t:globalThis))||void 0===e?void 0:e.get(this.G):null===(n=this.G)||void 0===n?void 0:n.value}disconnected(){this.rt===this.lt&&this.ot(void 0)}reconnected(){this.ot(this.lt)}}),(t,e,n)=>{const r=new Map;for(let o=e;o<=n;o++)r.set(t[o],o);return r}),an=(Ge(class extends qe{constructor(t){if(super(t),t.type!==Ve)throw Error("repeat() can only be used in text expressions")}dt(t,e,n){let r;void 0===n?n=e:void 0!==e&&(r=e);const o=[],i=[];let s=0;for(const e of t)o[s]=r?r(e,s):s,i[s]=n(e,s),s++;return{values:i,keys:o}}render(t,e,n){return this.dt(t,e,n).values}update(t,[e,n,r]){var o;const i=He(t),{values:s,keys:a}=this.dt(e,n,r);if(!Array.isArray(i))return this.ht=a,s;const c=null!==(o=this.ht)&&void 0!==o?o:this.ht=[],l=[];let h,u,d=0,p=i.length-1,f=0,g=s.length-1;for(;d<=p&&f<=g;)if(null===i[d])d++;else if(null===i[p])p--;else if(c[d]===a[f])l[f]=Ne(i[d],s[f]),d++,f++;else if(c[p]===a[g])l[g]=Ne(i[p],s[g]),p--,g--;else if(c[d]===a[g])l[g]=Ne(i[d],s[g]),Le(t,l[g+1],i[d]),d++,g--;else if(c[p]===a[f])l[f]=Ne(i[p],s[f]),Le(t,i[d],i[p]),p--,f++;else if(void 0===h&&(h=sn(a,f,g),u=sn(c,d,p)),h.has(c[d]))if(h.has(c[p])){const e=u.get(a[f]),n=void 0!==e?i[e]:null;if(null===n){const e=Le(t,i[d]);Ne(e,s[f]),l[f]=e}else l[f]=Ne(n,s[f]),Le(t,i[d],n),i[e]=null;f++}else De(i[p]),p--;else De(i[d]),d++;for(;f<=g;){const e=Le(t,l[g+1]);Ne(e,s[f]),l[f++]=e}for(;d<=p;){const t=i[d++];null!==t&&De(t)}return this.ht=a,Fe(t,l),Xt}}),"important"),cn=" !"+an;Ge(class extends qe{constructor(t){var e;if(super(t),t.type!==Oe||"style"!==t.name||(null===(e=t.strings)||void 0===e?void 0:e.length)>2)throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(t){return Object.keys(t).reduce(((e,n)=>{const r=t[n];return null==r?e:e+`${n=n.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${r};`}),"")}update(t,[e]){const{style:n}=t.element;if(void 0===this.ut){this.ut=new Set;for(const t in e)this.ut.add(t);return this.render(e)}this.ut.forEach((t=>{null==e[t]&&(this.ut.delete(t),t.includes("-")?n.removeProperty(t):n[t]="")}));for(const t in e){const r=e[t];if(null!=r){this.ut.add(t);const e=r.endsWith(cn);t.includes("-")||e?n.setProperty(t,e?r.slice(0,-11):r,e?an:""):n[t]=r}}return Xt}}),Ge(class extends qe{constructor(t){if(super(t),t.type!==Ve)throw Error("templateContent can only be used in child bindings")}render(t){return this.vt===t?Xt:(this.vt=t,document.importNode(t.content,!0))}});class ln extends qe{constructor(t){if(super(t),this.et=Qt,t.type!==Ve)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===Qt||null==t)return this.ft=void 0,this.et=t;if(t===Xt)return t;if("string"!=typeof t)throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.et)return this.ft;this.et=t;const e=[t];return e.raw=e,this.ft={_$litType$:this.constructor.resultType,strings:e,values:[]}}}ln.directiveName="unsafeHTML",ln.resultType=1;Ge(ln);class hn extends ln{}hn.directiveName="unsafeSVG",hn.resultType=2;Ge(hn);const un=t=>!(t=>null===t||"object"!=typeof t&&"function"!=typeof t)(t)&&"function"==typeof t.then,dn=1073741823;Ge(class extends Qe{constructor(){super(...arguments),this._$C_t=dn,this._$Cwt=[],this._$Cq=new tn(this),this._$CK=new en}render(...t){var e;return null!==(e=t.find((t=>!un(t))))&&void 0!==e?e:Xt}update(t,e){const n=this._$Cwt;let r=n.length;this._$Cwt=e;const o=this._$Cq,i=this._$CK;this.isConnected||this.disconnected();for(let t=0;t<e.length&&!(t>this._$C_t);t++){const s=e[t];if(!un(s))return this._$C_t=t,s;t<r&&s===n[t]||(this._$C_t=dn,r=0,Promise.resolve(s).then((async t=>{for(;i.get();)await i.get();const e=o.deref();if(void 0!==e){const n=e._$Cwt.indexOf(s);n>-1&&n<e._$C_t&&(e._$C_t=n,e.setValue(t))}})))}return Xt}disconnected(){this._$Cq.disconnect(),this._$CK.pause()}reconnected(){this._$Cq.reconnect(this),this._$CK.resume()}});const pn=Qt,fn=t=>e=>"function"==typeof e?((t,e)=>(customElements.define(t,e),e))(t,e):((t,e)=>{const{kind:n,elements:r}=e;return{kind:n,elements:r,finisher(e){customElements.define(t,e)}}})(t,e);class gn extends ye{initialized(){}connected(){}disconnected(){}get template(){return pn}render(){return this.template}firstUpdated(t){super.firstUpdated(t),this.initialized()}connectedCallback(){super.connectedCallback(),this.connected()}disconnectedCallback(){super.disconnectedCallback(),this.disconnected()}}class mn extends qe{constructor(t){if(super(t),t.type!==We)throw new Error("style directive can only be used on an element");const e=t;this.element=e.element}render(t){for(const[e,n]of Object.entries(t)){([...mn.handlers].find((t=>t.handles(this.element,[e,n])))??mn.defaultHandler).apply(this.element,[e,n])}}}mn.handlers=new Set,mn.defaultHandler=new class{handles(){return!0}apply(t,[e,n]){t.style[e]=null==n?"":n}};const vn=Ge(mn);function yn(t,e,n,r){var o,i=arguments.length,s=i<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,r);else for(var a=t.length-1;a>=0;a--)(o=t[a])&&(s=(i<3?o(s):i>3?o(e,n,s):o(e,n))||s);return i>3&&s&&Object.defineProperty(e,n,s),s}Object.create;Object.create;let wn=class{handles(t,[e]){return e.startsWith("--")}apply(t,[e,n]){t.style.setProperty(e,n)}};wn=yn([t=>{const e=new t;mn.handlers.add(e)}],wn);class bn{constructor(t){this.host=t,this.host.addController(this)}}const An=t=>(e,n)=>{e.constructor.addInitializer((e=>e.addController(new class extends bn{constructor(){super(e),this.hasChanged=!1}get value(){return this.host[n]}hostUpdate(){this.value!==this.oldValue&&(this.hasChanged=!0)}hostUpdated(){this.hasChanged&&(this.hasChanged=!1,t.call(this.host,this.value,this.oldValue),this.oldValue=this.value)}})))},$n=t=>(e,n)=>(t?.updated&&An(t.updated)(e,n),function(t){return Ae({...t,state:!0})}(t)(e,n));async function Cn(t){const e=t=>Symbol.iterator in t?[...t]:[t];if(void 0===t)return e(this);if("function"==typeof t){let n=t.call(this);if(n instanceof Promise&&(n=await n),n instanceof EventTarget)return e(n);if(Symbol.iterator in n&&[...n].every((t=>t instanceof EventTarget)))return e(n);throw new TypeError(`${this.constructor}.target is not an EventTarget`)}return e(t??this)}class Sn extends bn{constructor(t,...e){super(t),this.host=t,this.options=function(t){const e="string"==typeof t[0];return{target:e?void 0:t[0].target,type:e?t[0]:t[0].type,listener:e?t[1]:t[0].listener,options:e?t[2]:t[0].options}}(e)}async subscribe(){const t=await Cn.call(this.host,this.options.target);for(const e of t)e.removeEventListener(this.options.type,this.options.listener,this.options.options)}async unsubscribe(){const t=await Cn.call(this.host,this.options.target);for(const e of t)e?.addEventListener(this.options.type,this.options.listener,this.options.options)}async hostDisconnected(){await this.subscribe()}async hostConnected(){await this.unsubscribe()}}const xn=(...t)=>(e,n,r)=>{e.constructor.addInitializer((e=>{e.addController(new class extends Sn{constructor(){const{type:n,target:r,options:o}=function(t){const e=(t=>"string"==typeof t[0])(t);return{type:e?t[0]:t[0].type,target:e?void 0:t[0].target,options:e?t[1]:t[0].options}}(t);super(e,{type:n,target:r,options:o,listener:void 0})}hostConnected(){const t=r?"function"==typeof r.get?r.get:r.value:Object.getOwnPropertyDescriptor(e,n)?.value;return this.options.listener=t.bind(e),super.hostConnected()}})}))};class En{constructor(){this.handlers=new Set}subscribe(t){this.handlers.add(t)}unsubscribe(t){this.handlers.delete(t)}dispatch(t){for(const e of this.handlers)e(t)}}class kn extends gn{constructor(){super(...arguments),this.router=new ht(this,[],{fallback:{render:()=>new Mn({error:404})}}),this.rootCssInjector=new i(this,this.constructor.styles),this.shallRenderRouter=!1}static get styles(){return vt`:root{color-scheme:light dark}[application],body,html{margin:0;padding:0;scrollbar-width:thin;display:block;min-height:100vh;min-height:100dvh}[application]{display:flex;flex-direction:column}::-webkit-scrollbar{width:5px;height:5px}::-webkit-scrollbar-thumb{background:rgba(128,128,128,.75)}lit-page-host{display:flex;flex:1;margin:auto;width:100%;max-width:var(--lit-application-page-host-max-width,2560px)}lit-page-host>*{padding:max(min(1rem,1vw),min(1rem,1vh))}`}createRenderRoot(){return this}async connectedCallback(){this.setAttribute("application",""),await kn.connectingHooks.execute(),super.connectedCallback(),window.dispatchEvent(new Event("Application.connected"))}async initialized(){window.dispatchEvent(new Event("Application.initialized")),await kn.beforeRouteHooks.execute(),this.shallRenderRouter=!0}get documentTitle(){return[this.pageHeading,manifest?.short_name].filter(Boolean).join(" | ")}get template(){return Jt`${this.notificationHostTemplate} ${this.bodyTemplate} ${this.dialogHostTemplate}`}get notificationHostTemplate(){return Jt`<lit-notification-host></lit-notification-host>`}get bodyTemplate(){return Jt`${this.pageHostTemplate}`}get pageHostTemplate(){return Jt`<lit-page-host @pageHeadingChange="${t=>this.pageHeading=t.detail}">${this.shallRenderRouter?this.router.outlet():pn}</lit-page-host>`}get dialogHostTemplate(){return Jt`<lit-dialog-host></lit-dialog-host>`}}var _n;kn.connectingHooks=new a,kn.beforeRouteHooks=new a,yn([(_n={updated(){document.title=this.documentTitle}},(t,e)=>(_n?.updated&&An(_n.updated)(t,e),Ae(_n)(t,e)))],kn.prototype,"pageHeading",void 0),yn([$n()],kn.prototype,"shallRenderRouter",void 0),yn([u()],kn,"instance",void 0);const Pn=(...t)=>e=>{const{routerHostConstructor:n,routes:r}=function(...t){return"string"==typeof t[0]?{routerHostConstructor:kn,routes:t}:{routerHostConstructor:t[0],routes:t.slice(1)}}(...t);for(const t of r)nt.container.set(t,{routerHostConstructor:n,pageConstructor:e})};class Tn extends gn{static pageElement(){return t=>{t[Tn.pageElementConstructorSymbol]=!0}}async navigate(t=0,e=!1){if(!1!==e||!nt.match(this,"all"))if(0===t)nt.setPathByPage(this);else{const e=window.location.origin+nt.getPathOf(this);await c.openAndFocus(e,2===t?1:0)}}constructor(t){super(),this.parameters=t}async connectedCallback(){await Tn.connectingHooks.execute(this),super.connectedCallback()}refresh(t=this.parameters){return new this.constructor(t).navigate(0,!0)}}var Rn;Tn.connectingHooks=new a,Tn.pageElementConstructorSymbol=Symbol("PageComponent.PageElementConstructor"),Tn.defaultPageElementTag=xe`lit-page`,yn([h(Tn.pageElementConstructorSymbol)],Tn.prototype,"pageElement",void 0);let Mn=Rn=class extends Tn{static get styles(){return vt`
2
+ .code {
3
+ font-size: 60px;
4
+ font-weight: 400;
5
+ text-align: center;
6
+ }
7
+
8
+ h1, h2 {
9
+ text-align: center;
10
+ margin: 0;
11
+ }
12
+ `}get template(){return _e`
13
+ <${Tn.defaultPageElementTag} heading=${`Error ${this.parameters.error}`} fullHeight>
14
+ <div ${vn({display:"flex",gap:"8px",flexDirection:"column",alignItems:"center",justifyContent:"center"})}>
15
+ <div class='code'>${this.errorTemplate}</div>
16
+ <div ${vn({display:"flex",gap:"4px",flexDirection:"column"})}>
17
+ <h1>${this.parameters.message??l.defaultMessageByErrorCode.get(this.parameters.error)??"Unknown Error"}</h1>
18
+ </div>
19
+ </div>
20
+ </${Tn.defaultPageElementTag}>
21
+ `}get errorTemplate(){const t=String(this.parameters.error),e=Rn.emojisByErrorCodes.get(this.parameters.error);return e?Jt`
22
+ <span>${t.charAt(0)}</span>${e}<span>${t.charAt(2)}</span>
23
+ `:Jt`
24
+ <span>${t}</span>
25
+ `}};Mn.emojisByErrorCodes=new Map([[400,"😟"],[401,"⛔"],[402,"🤑"],[404,"🧐"],[403,"🔒"],[405,"🚫"],[406,"😵"],[407,"🤐"],[408,"⏲"],[409,"😵"],[500,"😥"],[501,"😳"],[502,"🥴"],[503,"😴"],[504,"⌚"],[505,"🙄"],[506,"🤪"],[507,"💾"],[508,"➰"]]),Mn=Rn=yn([fn("lit-page-error"),Pn("/error/:error")],Mn);let Ln=class extends gn{get template(){return Jt`<div part="pageHolder" ${vn({display:"grid",gridTemplateRows:"1fr",width:"100%"})}><slot></slot></div>`}};yn([u()],Ln,"instance",void 0),Ln=yn([fn("lit-page-host")],Ln);class Nn extends Error{constructor(t){super(`Dialog "${t.tagName.toLowerCase()}" was cancelled.`)}}let In=class extends gn{createRenderRoot(){return this}};yn([u()],In,"instance",void 0),In=yn([fn("lit-dialog-host")],In);class Fn{constructor(t,e,n){this.name=t,this.defaultValue=e,this.reviver=n,this.changed=new En,Fn.container.add(this)}get value(){const t=window.localStorage.getItem(this.name)??void 0;if(void 0===t)return this.defaultValue;try{return JSON.parse(t,this.reviver)}catch(e){return t}}set value(t){window.localStorage.setItem(this.name,JSON.stringify(t)),this.changed.dispatch(t),Fn.changed.dispatch(this)}}Fn.changed=new En,Fn.container=new Set;class Hn extends gn{static dialogElement(){return t=>{t[Hn.dialogElementConstructorSymbol]=!0}}static getHost(){return Promise.resolve(In.instance??kn.instance??document.body)}get primaryActionElement(){return this.dialogElement.primaryActionElement}get secondaryActionElement(){return this.dialogElement.secondaryActionElement}get cancellationActionElement(){return this.dialogElement.cancellationActionElement}constructor(t){super(),this.parameters=t,this.handleAction=async t=>{const e=new Map([["primary",this.primaryAction],["secondary",this.secondaryAction],["cancellation",this.cancellationAction]]),n=e.get(t)?.bind(this);if(!n)throw new Error(`No action for key ${t}`);try{this.dialogElement.executingAction=t;const e=await n();this.dialogElement.manualClose&&"cancellation"!==t||this.close(e)}catch(t){throw notificationHost.notifyError(t.message),t}finally{this.dialogElement.executingAction=void 0}}}async handleBeforeUnload(){this.dialogElement.boundToWindow&&await this.handleAction("cancellation")}async handleKeyDown(t){[...(await Hn.getHost()).children].filter((t=>t instanceof Hn)).reverse()[0]===this&&(!0===this.dialogElement.primaryOnEnter&&t.key===p.s.Enter&&await this.handleAction("primary"),this.dialogElement.preventCancellationOnEscape||t.key!==p.s.Escape||await this.handleAction("cancellation"))}async connectedCallback(){await Hn.connectingHooks.execute(this),super.connectedCallback()}confirm(t=0){return 0===t?this.confirmAsDialog():this.confirmAsPopup(t)}async confirmAsDialog(){return(await Hn.getHost()).appendChild(this),new Promise(((t,e)=>{this._confirmationPromiseExecutor=[t,e]}))}async confirmAsPopup(t){this._popupWindow=await c.open(Un.route,2===t?1:0);const e=new(this._popupWindow.customElements.get(this.tagName.toLowerCase()))(this.parameters);[...this.constructor.elementProperties.keys()].forEach((t=>e[t]=this[t]));const n=this._popupWindow.document.querySelector("[application]");await n.updateComplete;const r=this._popupWindow.document.querySelector("lit-page-dialog"),o=e.confirm();return await e.updateComplete,e.dialogElement.dialogHeadingChange.subscribe((t=>r.heading=t)),e.dialogElement.boundToWindow=!0,r.heading=e.dialogElement.heading,o}async pop(t=1){this.open=!1;try{const e=await this.confirm(t);this._confirmationPromiseExecutor?.[0](e)}catch(t){this._confirmationPromiseExecutor?.[1](t)}finally{this._popupWindow?.close(),this.remove()}}close(t){this.open=!1,t instanceof Error?this._confirmationPromiseExecutor?.[1](t):this._confirmationPromiseExecutor?.[0](t),this.remove()}get open(){return this.dialogElement.open??!1}set open(t){this.dialogElement&&(this.dialogElement.open=t)}firstUpdated(t){this.dialogElement.handleAction=this.handleAction,this.dialogElement.requestPopup?.subscribe((()=>this.pop())),this.dialogElement.poppable&&window.location.pathname!==Un.route&&0!==Hn.poppableConfirmationStrategy.value?this.pop(Hn.poppableConfirmationStrategy.value):(this.open=!0,super.firstUpdated(t))}primaryAction(){throw new Error("Not implemented.")}secondaryAction(){return this.cancellationAction()}cancellationAction(){return new Nn(this)}}var Dn;Hn.connectingHooks=new a,Hn.dialogElementConstructorSymbol=Symbol("DialogComponent.DialogElementConstructor"),Hn.defaultDialogElementTag=xe`lit-dialog`,Hn.poppableConfirmationStrategy=new Fn("DialogComponent.PoppableConfirmationStrategy",0),yn([h(Hn.dialogElementConstructorSymbol)],Hn.prototype,"dialogElement",void 0),yn([xn({target:window,type:"beforeunload"})],Hn.prototype,"handleBeforeUnload",null),yn([xn({target:window,type:"keydown"})],Hn.prototype,"handleKeyDown",null);let Un=Dn=class extends Tn{constructor(){super(...arguments),this.heading=""}get template(){return _e`<${Tn.defaultPageElementTag} heading=${this.heading}></${Tn.defaultPageElementTag}>`}};Un.route="/dialog",yn([$n()],Un.prototype,"heading",void 0),Un=Dn=yn([Pn(Dn.route),fn("lit-page-dialog")],Un);Ge(class extends Qe{constructor(t){if(super(t),t.type!==We)throw new Error("routerLink can only be used on an element")}update(t,e){const n=!this.parameters;return this.element=t.element,this.parameters=function(...t){return t[0]instanceof Tn||t[0]instanceof Hn?{component:t[0],matchMode:"all",selectionChangeHandler:void 0,invocationHandler:void 0}:t[0]}(...e),this.isConnected&&this.addEventListeners(),n&&this.executeSelectionChange(),super.update(t,e)}render(...t){return Xt}disconnected(){this.removeEventListeners()}handleEvent(t){switch(t.type){case"click":case"auxclick":t.preventDefault(),this.invoke(t);break;case"popstate":this.executeSelectionChange()}}addEventListeners(){window.addEventListener("popstate",this),this.element.addEventListener("click",this),this.element.addEventListener("auxclick",this)}removeEventListeners(){window.removeEventListener("popstate",this),this.element.removeEventListener("click",this),this.element.removeEventListener("auxclick",this)}invoke(t){const e=new(0,this.parameters.component.constructor)(this.parameters.component.parameters);e instanceof Tn?e.navigate((()=>{switch(!0){case t.ctrlKey||t.metaKey||"auxclick"===t.type:return 1;case t.shiftKey:return 2;default:return 0}})(),"auxclick"===t.type):e.confirm((()=>{switch(!0){case t.ctrlKey||t.metaKey||"auxclick"===t.type:return 1;case t.shiftKey:return 2;default:return 0}})()),this.parameters.invocationHandler?.()}executeSelectionChange(){const t=!(this.parameters.component instanceof Hn)&&nt.match(this.parameters.component,this.parameters.matchMode);t?this.element.setAttribute("data-router-selected",""):this.element.removeAttribute("data-router-selected"),this.parameters.selectionChangeHandler&&this.parameters.selectionChangeHandler.call(this.element,t)}});var On;function Vn(...t){return"string"!=typeof t[0]?t[0]:{message:t[0],actions:t.slice(1)}}let Bn=On=class extends gn{constructor(){super(...arguments),this.notifications=new Set}notifyInfo(...t){return this.notify({type:"info",...Vn(...t)})}notifySuccess(...t){return this.notify({type:"success",...Vn(...t)})}notifyWarning(...t){return this.notify({type:"warning",...Vn(...t)})}notifyError(...t){return this.notify({type:"error",...Vn(...t)})}notifyAndThrowError(t,...e){const n=Vn(...e);throw n.message??(n.message=t.message),this.notifyError(n),t}async notify(t){const e=new On.NotificationComponentConstructor;e.notification=t,e instanceof ye&&(this.notifications.add(e),this.requestUpdate()),await e.show(),e instanceof ye&&(this.notifications.delete(e),this.requestUpdate()),On.shownNotifications.add(t)}createRenderRoot(){return this}static get styles(){return vt`:host{z-index:var(--lit-notification-host-z-index,8);position:fixed;inset-block-end:0;inset-inline:0;max-height:max(50vh,50%);display:grid;justify-items:center;justify-content:center;gap:.5vh;overflow:hidden}`}get template(){return Jt`${this.notifications}`}};var jn;Bn.shownNotifications=new Set,Bn.notificationComponent=()=>t=>{On.NotificationComponentConstructor=t},yn([$n()],Bn.prototype,"notifications",void 0),yn([u()],Bn,"instance",void 0),Bn=On=yn([fn("lit-notification-host"),t=>{d(t)}],Bn),Object.defineProperty(globalThis,"notificationHost",{get:()=>Bn.instance,configurable:!1}),kn.connectingHooks.add((async()=>{globalThis.manifest=void 0;const t=globalThis.document.head.querySelector("link[rel=manifest]");try{if(t){const e=await fetch(t.href),n=await e.text();globalThis.manifest=JSON.parse(n)}}catch{}}));jn=class{static get serviceWorkerContainer(){return navigator.serviceWorker}static async registerServiceWorker(t){try{await(this.serviceWorkerContainer?.register(t,{scope:"/"})),await this.requestInstallation()}catch(t){console.error(t)}}static async unregisterServiceWorkers(){const t=await(this.serviceWorkerContainer?.getRegistrations())||[];for(const e of t)e.unregister()}static async requestInstallation(){if(!1===(void 0!==this.pwaPrompt))return;await(this.pwaPrompt?.prompt());const t=await(this.pwaPrompt?.userChoice);if("accepted"!==t?.outcome)throw new Error("PWA installation was not accepted")}},window.addEventListener("beforeinstallprompt",(t=>{jn.pwaPrompt=t,t.preventDefault()}));class Wn{}Wn.background=new class extends Fn{constructor(){super("Theme.Background","system"),window.matchMedia("(prefers-color-scheme: dark)").onchange=()=>this.updateAttributeValue(),window.matchMedia("(prefers-color-scheme: light)").onchange=()=>this.updateAttributeValue(),kn.addInitializer((t=>{this.application=t,this.updateAttributeValue(),Wn.background.changed.subscribe((()=>this.updateAttributeValue()))}))}get calculatedValue(){return"system"!==this.value?this.value:window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}updateAttributeValue(){var t;null===(t=this.application)||void 0===t||t.setAttribute("data-theme",this.calculatedValue)}},Wn.accent=new class extends Fn{constructor(){super("Theme.Accent",new r("rgb(0, 119, 200)")),this.parseColor=t=>{if("object"==typeof t&&null!==t&&"$type"in t&&"Color"===t.$type&&"color"in t)return new r(t.color)},this.parseColorSet=t=>{if("object"==typeof t&&null!==t&&"$type"in t&&"ColorSet"===t.$type&&"colors"in t)return new o(...t.colors.map((t=>t.color)))},this.injectCss()}get value(){let t=super.value;return t=this.parseColor(t)||this.parseColorSet(t),t||window.localStorage.removeItem(this.name),t||this.defaultValue}set value(t){t.$type=t instanceof o?"ColorSet":"Color",super.value=t,this.injectCss()}get medianColor(){return this.value instanceof o?this.value.medianColor:this.value}injectCss(){const t=this.value,e=this.medianColor,n=t instanceof o?t.colors[0]:t,r=t instanceof o?t.colors[1]:t,i=t instanceof o?t.colors[2]:t;this.styleElement=s.inject(vt`[application]{--mo-color-accent-base-r:${mt(null==e?void 0:e.r)}--mo-color-accent-base-g:${mt(null==e?void 0:e.g)}--mo-color-accent-base-b:${mt(null==e?void 0:e.b)}--mo-color-accent-gradient-1:${mt(null==n?void 0:n.rgb)}--mo-color-accent-gradient-2:${mt(null==r?void 0:r.rgb)}--mo-color-accent-gradient-3:${mt(null==i?void 0:i.rgb)}}`,this.styleElement)}};s.inject(vt`@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap);*{font-weight:400;font-size:var(--mo-font-size-m);box-sizing:border-box}html{width:100%;height:100%}body{height:100%;width:100%;overflow:auto}[application][data-theme=light]{color-scheme:light;--mo-color-background-base:255,255,255;--mo-color-foreground-base:0,0,0;--mo-color-background:rgb(220, 221, 225)!important;--mo-color-foreground:black!important;--mo-color-foreground-transparent:rgb(48, 48, 48)!important;--mo-color-surface-base:255,255,255;--mo-color-gray-base:121,121,121;--mo-shadow-base:95,81,78;--mo-color-error-base:176,0,32;--mo-field-background:rgba(var(--mo-color-foreground-base), 0.09);--mo-alternating-background:rgba(var(--mo-color-foreground-base), 0.05)}[application][data-theme=dark]{color-scheme:dark;--mo-color-background-base:0,0,0;--mo-color-foreground-base:255,255,255;--mo-color-background:rgb(16, 17, 20)!important;--mo-color-surface-base:42,43,47;--mo-color-foreground:white!important;--mo-color-foreground-transparent:rgb(220, 220, 220)!important;--mo-color-gray-base:165,165,165;--mo-shadow-base:0,1,3;--mo-color-error-base:255,61,96}[application]{--mo-font-family:Roboto,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;--mo-border-radius:4px;--mo-shadow:rgba(var(--mo-shadow-base), .4) 0 1px 2px 0,rgba(var(--mo-shadow-base), .2) 0 1px 3px 1px!important;--mo-shadow-deep:0px 5px 5px -3px rgba(var(--mo-shadow-base), 0.2),0px 8px 10px 1px rgba(var(--mo-shadow-base), 0.14),0px 3px 14px 2px rgba(var(--mo-shadow-base), 0.12);--mo-color-error:rgb(var(--mo-color-error-base))!important;--mo-color-on-surface:rgba(var(--mo-color-foreground-base), 0.87)!important;--mo-color-gray:rgb(var(--mo-color-gray-base))!important;--mo-color-gray-transparent:rgba(var(--mo-color-gray-base), 0.5)!important;--mo-color-transparent-gray-alpha:.04;--mo-color-transparent-gray-1:rgba(var(--mo-color-foreground-base), calc(var(--mo-color-transparent-gray-alpha) * 1));--mo-color-transparent-gray-2:rgba(var(--mo-color-foreground-base), calc(var(--mo-color-transparent-gray-alpha) * 2));--mo-color-transparent-gray-3:rgba(var(--mo-color-foreground-base), calc(var(--mo-color-transparent-gray-alpha) * 3));--mo-color-transparent-gray:var(--mo-color-transparent-gray-1);--mo-color-accessible-base-value:calc(((((var(--mo-color-accent-base-r) * 299) + (var(--mo-color-accent-base-g) * 587) + (var(--mo-color-accent-base-b) * 114)) / 1000) - 128) * -1000);--mo-color-accessible-base:var(--mo-color-accessible-base-value),var(--mo-color-accessible-base-value),var(--mo-color-accessible-base-value);--mo-color-accessible:rgb(var(--mo-color-accessible-base));--mo-color-accent-base:var(--mo-color-accent-base-r),var(--mo-color-accent-base-g),var(--mo-color-accent-base-b);--mo-color-accent:rgb(var(--mo-color-accent-base));--mo-color-accent-transparent:rgba(var(--mo-color-accent-base), 0.25);--mo-color-accent-gradient:linear-gradient(135deg, rgb(var(--mo-color-accent-gradient-1)), rgb(var(--mo-color-accent-gradient-2)), rgb(var(--mo-color-accent-gradient-3)));--mo-color-accent-gradient-transparent:linear-gradient(135deg, rgba(var(--mo-color-accent-gradient-1), 0.25), rgba(var(--mo-color-accent-gradient-2), 0.25), rgba(var(--mo-color-accent-gradient-3), 0.25));--mo-color-surface:rgb(var(--mo-color-surface-base))!important;font-family:var(--mo-font-family);background-color:var(--mo-color-background);color:var(--mo-color-foreground)}`)})()})();
@@ -0,0 +1,6 @@
1
+ export * from './ColorSet.js';
2
+ export * from './Background.js';
3
+ export * from './Accent.js';
4
+ export * from './Theme.js';
5
+ export * from './styles.css.js';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export * from './ColorSet.js';
2
+ export * from './Background.js';
3
+ export * from './Accent.js';
4
+ export * from './Theme.js';
5
+ export * from './styles.css.js';
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=styles.css.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.css.d.ts","sourceRoot":"","sources":["../styles.css.ts"],"names":[],"mappings":""}
@@ -0,0 +1,83 @@
1
+ import { css } from '@a11d/lit';
2
+ import { RootCssInjector } from '@a11d/lit-application';
3
+ RootCssInjector.inject(css `
4
+ @import 'https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap';
5
+
6
+ * {
7
+ font-weight: 400;
8
+ font-size: var(--mo-font-size-m);
9
+ box-sizing: border-box;
10
+ }
11
+
12
+ html {
13
+ width: 100%;
14
+ height: 100%;
15
+ }
16
+
17
+ body {
18
+ height: 100%;
19
+ width: 100%;
20
+ overflow: auto;
21
+ }
22
+
23
+ [application][data-theme=light] {
24
+ color-scheme: light;
25
+ --mo-color-background-base: 255, 255, 255;
26
+ --mo-color-foreground-base: 0, 0, 0;
27
+ --mo-color-background: rgb(220, 221, 225) !important;
28
+ --mo-color-foreground: black !important;
29
+ --mo-color-foreground-transparent: rgb(48, 48, 48) !important;
30
+ --mo-color-surface-base: 255, 255, 255;
31
+ --mo-color-gray-base: 121, 121, 121;
32
+ --mo-shadow-base: 95, 81, 78;
33
+ --mo-color-error-base: 176, 0, 32;
34
+ --mo-field-background: rgba(var(--mo-color-foreground-base), 0.09);
35
+ --mo-alternating-background: rgba(var(--mo-color-foreground-base), 0.05);
36
+ }
37
+
38
+ [application][data-theme=dark] {
39
+ color-scheme: dark;
40
+ --mo-color-background-base: 0, 0, 0;
41
+ --mo-color-foreground-base: 255, 255, 255;
42
+ --mo-color-background: rgb(16, 17, 20) !important;
43
+ --mo-color-surface-base: 42, 43, 47;
44
+ --mo-color-foreground: white !important;
45
+ --mo-color-foreground-transparent: rgb(220, 220, 220) !important;
46
+ --mo-color-gray-base: 165, 165, 165;
47
+ --mo-shadow-base: 0, 1, 3;
48
+ --mo-color-error-base: 255, 61, 96;
49
+ }
50
+
51
+ [application] {
52
+ --mo-font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
53
+ --mo-border-radius: 4px;
54
+ /* Shadows */
55
+ --mo-shadow: rgba(var(--mo-shadow-base), .4) 0 1px 2px 0, rgba(var(--mo-shadow-base), .2) 0 1px 3px 1px !important;
56
+ --mo-shadow-deep: 0px 5px 5px -3px rgba(var(--mo-shadow-base), 0.2), 0px 8px 10px 1px rgba(var(--mo-shadow-base), 0.14), 0px 3px 14px 2px rgba(var(--mo-shadow-base), 0.12);
57
+ /* Colors */
58
+ --mo-color-error: rgb(var(--mo-color-error-base)) !important;
59
+ --mo-color-on-surface: rgba(var(--mo-color-foreground-base), 0.87) !important;
60
+ --mo-color-gray: rgb(var(--mo-color-gray-base)) !important;
61
+ --mo-color-gray-transparent: rgba(var(--mo-color-gray-base), 0.5) !important;
62
+ --mo-color-transparent-gray-alpha: .04;
63
+ --mo-color-transparent-gray-1: rgba(var(--mo-color-foreground-base), calc(var(--mo-color-transparent-gray-alpha) * 1)); /* 4% */
64
+ --mo-color-transparent-gray-2: rgba(var(--mo-color-foreground-base), calc(var(--mo-color-transparent-gray-alpha) * 2)); /* 8% */
65
+ --mo-color-transparent-gray-3: rgba(var(--mo-color-foreground-base), calc(var(--mo-color-transparent-gray-alpha) * 3)); /* 12% */
66
+ --mo-color-transparent-gray: var(--mo-color-transparent-gray-1);
67
+ /* TODO: Replace with @color-contrast when available: https://caniuse.com/mdn-css_types_color_color-contrast */
68
+ /* More info: https://css-tricks.com/css-variables-calc-rgb-enforcing-high-contrast-colors/ */
69
+ --mo-color-accessible-base-value: calc(((((var(--mo-color-accent-base-r) * 299) + (var(--mo-color-accent-base-g) * 587) + (var(--mo-color-accent-base-b) * 114)) / 1000) - 128) * -1000);
70
+ --mo-color-accessible-base: var(--mo-color-accessible-base-value), var(--mo-color-accessible-base-value), var(--mo-color-accessible-base-value);
71
+ --mo-color-accessible: rgb(var(--mo-color-accessible-base));
72
+ --mo-color-accent-base: var(--mo-color-accent-base-r), var(--mo-color-accent-base-g), var(--mo-color-accent-base-b);
73
+ --mo-color-accent: rgb(var(--mo-color-accent-base));
74
+ --mo-color-accent-transparent: rgba(var(--mo-color-accent-base), 0.25);
75
+ --mo-color-accent-gradient: linear-gradient(135deg, rgb(var(--mo-color-accent-gradient-1)), rgb(var(--mo-color-accent-gradient-2)), rgb(var(--mo-color-accent-gradient-3)));
76
+ --mo-color-accent-gradient-transparent: linear-gradient(135deg, rgba(var(--mo-color-accent-gradient-1), 0.25), rgba(var(--mo-color-accent-gradient-2), 0.25), rgba(var(--mo-color-accent-gradient-3), 0.25));
77
+ --mo-color-surface: rgb(var(--mo-color-surface-base)) !important;
78
+
79
+ font-family: var(--mo-font-family);
80
+ background-color: var(--mo-color-background);
81
+ color: var(--mo-color-foreground);
82
+ }
83
+ `);
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../../../node_modules/lit-html/development/static.d.ts","../../../node_modules/lit/development/static-html.d.ts","../../../node_modules/lit-html/development/directive-helpers.d.ts","../../../node_modules/lit-html/development/async-directive.d.ts","../../../node_modules/lit-html/development/directives/async-replace.d.ts","../../../node_modules/lit-html/development/directives/async-append.d.ts","../../../node_modules/lit-html/development/directives/cache.d.ts","../../../node_modules/lit-html/development/directives/choose.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit-html/development/directives/guard.d.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit-html/development/directives/join.d.ts","../../../node_modules/lit-html/development/directives/keyed.d.ts","../../../node_modules/lit-html/development/directives/live.d.ts","../../../node_modules/lit-html/development/directives/map.d.ts","../../../node_modules/lit-html/development/directives/range.d.ts","../../../node_modules/lit-html/development/directives/ref.d.ts","../../../node_modules/lit-html/development/directives/repeat.d.ts","../../../node_modules/lit-html/development/directives/style-map.d.ts","../../../node_modules/lit-html/development/directives/template-content.d.ts","../../../node_modules/lit-html/development/directives/unsafe-html.d.ts","../../../node_modules/lit-html/development/directives/unsafe-svg.d.ts","../../../node_modules/lit-html/development/directives/until.d.ts","../../../node_modules/lit-html/development/directives/when.d.ts","../../../node_modules/@a11d/lit/dist/types.d.ts","../../../node_modules/@a11d/lit/dist/component/nothing.d.ts","../../../node_modules/@a11d/lit/dist/component/component.d.ts","../../../node_modules/@a11d/lit/dist/component/index.d.ts","../../../node_modules/@a11d/lit/dist/controller/controller.d.ts","../../../node_modules/@a11d/lit/dist/controller/index.d.ts","../../../node_modules/@a11d/lit/dist/query/query.d.ts","../../../node_modules/@a11d/lit/dist/query/queryall.d.ts","../../../node_modules/@a11d/lit/dist/query/queryallasnodelist.d.ts","../../../node_modules/@a11d/lit/dist/query/index.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@a11d/lit/dist/style/style.d.ts","../../../node_modules/@a11d/lit/dist/style/custompropertystylehandler.d.ts","../../../node_modules/@a11d/lit/dist/style/index.d.ts","../../../node_modules/@a11d/lit/dist/updated/updated.d.ts","../../../node_modules/@a11d/lit/dist/updated/property.d.ts","../../../node_modules/@a11d/lit/dist/updated/state.d.ts","../../../node_modules/@a11d/lit/dist/updated/index.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/eventlistenertarget.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/eventlistener.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/extracteventhandler.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/eventlistenercontroller.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/index.d.ts","../../../node_modules/@a11d/lit/dist/event/eventdispatcher.d.ts","../../../node_modules/@a11d/lit/dist/event/pureeventdispatcher.d.ts","../../../node_modules/@a11d/lit/dist/event/htmlelementeventdispatcher.d.ts","../../../node_modules/@a11d/lit/dist/event/event.d.ts","../../../node_modules/@a11d/lit/dist/event/index.d.ts","../../../node_modules/@a11d/lit/dist/index.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/rootcssinjectorcontroller.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/hookset.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/windowhelper.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/httperrorcode.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/httperror.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/querysymbolizedelement.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/queryinstanceelement.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/noninertable.d.ts","../../../node_modules/ts-key-enum/dist/declarations/key.enum.d.ts","../../../node_modules/@a11d/lit-application/dist/utilities/index.d.ts","../../../node_modules/urlpattern-polyfill/dist/types.d.ts","../../../node_modules/urlpattern-polyfill/dist/index.d.ts","../../../node_modules/@a11d/lit-application/dist/page/pagecomponent.d.ts","../../../node_modules/@a11d/lit-application/dist/page/pageerror.d.ts","../../../node_modules/@a11d/lit-application/dist/page/pagehost.d.ts","../../../node_modules/@a11d/lit-application/dist/page/page.d.ts","../../../node_modules/@a11d/lit-application/dist/page/index.d.ts","../../../node_modules/@a11d/lit-application/dist/router/routescontainer.d.ts","../../../node_modules/@a11d/lit-application/dist/router/router.d.ts","../../../node_modules/@lit-labs/router/routes.d.ts","../../../node_modules/@lit-labs/router/router.d.ts","../../../node_modules/@lit-labs/router/index.d.ts","../../../node_modules/@a11d/lit-application/dist/router/routercontroller.d.ts","../../../node_modules/@a11d/local-storage/dist/localstorage.d.ts","../../../node_modules/@a11d/local-storage/dist/index.d.ts","../../../node_modules/@a11d/lit-application/dist/dialog/dialogcomponent.d.ts","../../../node_modules/@a11d/lit-application/dist/dialog/dialogcancellederror.d.ts","../../../node_modules/@a11d/lit-application/dist/dialog/dialoghost.d.ts","../../../node_modules/@a11d/lit-application/dist/dialog/dialog.d.ts","../../../node_modules/@a11d/lit-application/dist/dialog/pagedialog.d.ts","../../../node_modules/@a11d/lit-application/dist/dialog/index.d.ts","../../../node_modules/@a11d/lit-application/dist/router/routerlink.d.ts","../../../node_modules/@a11d/lit-application/dist/router/route.d.ts","../../../node_modules/@a11d/lit-application/dist/router/index.d.ts","../../../node_modules/@a11d/lit-application/dist/application.d.ts","../../../node_modules/@a11d/lit-application/dist/notification/notificationcomponent.d.ts","../../../node_modules/@a11d/lit-application/dist/notification/notificationhost.d.ts","../../../node_modules/@a11d/lit-application/dist/notification/index.d.ts","../../../node_modules/@a11d/lit-application/dist/pwahelper/manifest.d.ts","../../../node_modules/@a11d/lit-application/dist/pwahelper/manifestprovider.d.ts","../../../node_modules/@a11d/lit-application/dist/pwahelper/pwahelper.d.ts","../../../node_modules/@a11d/lit-application/dist/pwahelper/index.d.ts","../../../node_modules/@a11d/lit-application/dist/index.d.ts","../../../node_modules/@types/color-string/index.d.ts","../../color/color.ts","../../color/index.ts","../colorset.ts","../accent.ts","../theme.ts","../background.ts","../styles.css.ts","../index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/clean-css/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cookie/index.d.ts","../../../node_modules/@types/cors/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/relateurl/index.d.ts","../../../node_modules/@types/html-minifier/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-function/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jasmine/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586","impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"d27ead0e913b4225279e8beb10450ecaf54af5ed145a6ecbbed18bb130815006","impliedFormat":99},{"version":"2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38","impliedFormat":1},{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true,"impliedFormat":1},{"version":"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","impliedFormat":99},{"version":"5a4af5e4727864a08625d5c892d7cba8916d205c7f0c68e15eda5d6579968497","impliedFormat":99},{"version":"4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"4b8e8a20b14b5ae700743222a80ab3dcb44822d269b29a7779fe25fe1f0f87a3","impliedFormat":99},{"version":"d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","impliedFormat":99},{"version":"411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","impliedFormat":99},{"version":"6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","impliedFormat":99},{"version":"938dd6c2b518b1ae8598db5e2bc7db03be0c6a774c4cb846ca92b51bb353e019","impliedFormat":99},{"version":"d36d25c50d6bff81a153e87b70c07285955fba8a9d317c453dc74aad826e8cbb","impliedFormat":99},{"version":"effe65dcf890703716bead4f38170fcbe769cb49e8c8260c11b8c402cac443e1","impliedFormat":99},{"version":"0848a16732172391d2d0210f754b66ac925cd7c1b501ad8e4fd405e6ade688a8","impliedFormat":99},{"version":"bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","impliedFormat":99},{"version":"e8265198b29dccb14667214f65f77c5e4744a8797f75d96bcf8b150b23a56705","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"bbc354c6a2740b087f1139e88e90309de480c5390362e2f0d32a145d8d7cf539","impliedFormat":99},{"version":"15c9478a8a3d630ac5e738aca25fca15d0842aaeb97fb1a9c1e80eddc5a0e14c","impliedFormat":99},{"version":"64eadb7a84951a80b7aaedef30839bd2357eeebb609bc7c16cf5fac9d290f377","impliedFormat":99},{"version":"c42f9b18f5f559b133cf9b409f678afb30df9c6498865aae9a1abad0f1e727a8","impliedFormat":99},{"version":"8ac4cf12b1be6335c272e8a0b4b1847e03adda3b7870aebeeddd44204c020d86","impliedFormat":99},{"version":"f45c48c0408187f2261d7f86ef92654e0615efd0c161983e900bd58d9cfa1eba","impliedFormat":99},{"version":"89069f48799198a4faeddffd2324ddd831fc8e099b5b1917bfeee379c2013773","impliedFormat":99},{"version":"c129757c71727fdcc3cba63f2daf16c375bdd72905062f75dd2da0c8a9003be4","impliedFormat":99},{"version":"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","impliedFormat":99},{"version":"78ff0bc9b3e12c71af9cb45078452ae777c0fd7653a51fcbcf7126c17801170f","impliedFormat":99},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"f599ef6a8f8678be036ae5ac26b00657664ed26d9e0ebaf9244739b267410646","impliedFormat":99},{"version":"5a30f5ba1701cbb29cb2ff3aca0064a8b0b8b4398d30caad7a0c5ace9636854e","impliedFormat":99},{"version":"6d1d62eec2761a26d0b1ecb3f2fb0e7c549ca975bfec7d62ace252d5415d7646","impliedFormat":99},{"version":"f0d4da8c4cc589095f0c2dc87ba5cd73394c382b54793357b6cf821dbd26c8e4","impliedFormat":99},{"version":"8eda58842fed4ca236afe50dd183d569d2cf0cb99be517e955c1c033d8b6bd58","impliedFormat":99},{"version":"5ab260f41bbd61e51a501a54a9c255ccd2c7eba9b857827e60e2abc21e604dc7","impliedFormat":99},{"version":"3e3c92a1eb358f0abd3ef107f6101b985b8f786ad8a3d87c1215c0704e493616","impliedFormat":99},{"version":"8dd4e138149125dc155176b74312deb81a1adc7717ba2de966e93eb161c15c16","impliedFormat":99},{"version":"c50cdef58c53c1f6ccddb43b206fb327857af2bac581192d325ee8df817638d5","impliedFormat":99},{"version":"053a19c91aaa80cc06d7113a41b7e776972bc1f31a4c7246e0164f6041918979","impliedFormat":99},{"version":"ccf24cd06f3a6ed653dbfcfd162241399c727bfedd91ce5e6fabfa1e1796c37e","impliedFormat":99},{"version":"d58ccd9064506e6b18e5deb6d80d775caa48447a2af4f26b5b1258a23470a574","impliedFormat":99},{"version":"2145b5a1d55b65d7468b4b7aab3ebb9441b9933baf76a7f09477fba2e3d24131","impliedFormat":99},{"version":"eaf71303faefce7c63f3da861d339223be2e958279aaa97368310b9751dad0bc","affectsGlobalScope":true,"impliedFormat":99},{"version":"e7cced15e4b925db8163736482d9b94c360292708fe5c23337399c993e7fe467","impliedFormat":99},{"version":"897b6cfbdd419d1b097bae2046d561c6daa88ef3fcdb38a7c15abdb3d72486a6","impliedFormat":99},{"version":"29b4dec65519308a54baf0eb25c283780d99edd1de21977d076287ef12812cff","impliedFormat":99},{"version":"de097f57fc69df69563d86f1cdf6efa95cd2439de37780ea44607998b9ffd346","impliedFormat":99},{"version":"927f5e39c8cae873fb3cdbb93b4cc5d302decbfb8f5d9b2113988dcf8a150371","impliedFormat":99},{"version":"b5eff6ee2627a0823b3f6721dff0799638053af3e00f3c69321a35c990cb2a3a","impliedFormat":99},{"version":"d805d6516df5747712a1a2ce3b63ac704a5a74bc18c97476ab16687571ee7f87","impliedFormat":99},{"version":"dba12ebd03d0b06be80194e5ef9e83f87405ebfbffe263bd1c612174a7b72520","impliedFormat":99},{"version":"d9d368ee6bb0e1679b9272bcf6dd00a97ef64dc381ed5e60d6120d8eef00e278","impliedFormat":99},{"version":"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","impliedFormat":1},{"version":"fb0904dac39e543e79a205ffa6542acae56c1b75b8226496a0cb2add1ce3fbd8","impliedFormat":99},{"version":"e05ca0f0182a4f2eec95d6e3ac4be24f463cf18ca667ee3760e56bb62b5e7c66","impliedFormat":99},{"version":"b7c61d25584bff3e0323487ef667d0889a8cb91f65c82131c2ce696064a28db2","impliedFormat":99},{"version":"7c92e5def3eacf27f9ff98e77b8b1018ecf54e8933dc612eb3215db7f0f31c43","impliedFormat":99},{"version":"cf3be859d20ff27b0555a6b720a1c7b1401eab9bd3e4bd006421aa86191a41bd","impliedFormat":99},{"version":"9a61960c52594a209431a0175c3e4ccc949122d3f7b416972cfcf31bc8e60bf1","impliedFormat":99},{"version":"de1f4ff92d8c421b5d6d26bb848007a52c66a51d426c3bcc7d26781f1a8dc7d9","impliedFormat":99},{"version":"111268277716746b65ab5166f24df33648a989a2c7116a2312e03ca328d06d01","impliedFormat":99},{"version":"52b9bef7fbab53ca48ec58f7784eb07617f0e322d8648fdf17b205bd612b3bad","impliedFormat":99},{"version":"019a7d171d48aec3d22b042b4f4a1699af13f34f26e3177ef5fdae9f6af072ee","impliedFormat":99},{"version":"fc2bd60d17f9e6d1277bebd5a651bce5822291c149568c121e606d7f53349a1a","impliedFormat":99},{"version":"ca0b61ddd472250bfdf1a1258208a69ad014e66daf2862b47b4c835945243bd3","impliedFormat":99},{"version":"9a3edeb212dd00a8a24c582d780f831bb779ea9ae4fa34b4279561887d4bd066","affectsGlobalScope":true,"impliedFormat":99},{"version":"72d30486d50c5624b446418a54c93ef2cdfb781ee5801fec3ef642094498c640","impliedFormat":99},{"version":"091729c3d769cc65f63d535d4998222f16da87311f5f6fc49e407b1dbd39d274","impliedFormat":99},{"version":"e4d538ed427096d8326aeefaf4870b8ba01330dc2a3bf08b2c719062c50fa9ec","impliedFormat":99},{"version":"673a6be5d1871dc1c26385ffb6bee5cee8c914195502e67c7a830c8058ea3a22","impliedFormat":99},{"version":"316dc3227824fdf0bf060cd652ea678ae1e572638064c5aaeab803b2c5bd6dd9","impliedFormat":99},{"version":"6e7a65eccaf0a79610e54b691c511825eb893539bc4ce7f7890487336d9a952c","impliedFormat":99},{"version":"a1c7cf0bc9cf64c96155790be498c3c33a11ea17b28c9f6023f00a4d7c7a79a6","impliedFormat":99},{"version":"e81f9dcc8ef6425eca81f7a7a0d9ac8e3912c1964853941a7d94fdeff7375a8f","impliedFormat":99},{"version":"5715cebc0ea32362955e00e642af2385d68c6e1efc83260457c3227865b6e277","impliedFormat":99},{"version":"75a975b89cbd7761819ff5bf0abb55bd878dc8340c8302b03a34e063b62360ce","impliedFormat":99},{"version":"5cbe961b50ebedcf6fc8a2261d32fb4a4fe9da2b078188fb9766e39b43c4bac7","impliedFormat":99},{"version":"3db3c9c6f7d46a44f82f9eb43a9d9b54d8fd7e58f6032cf7dc3b4fc2824ebf46","impliedFormat":99},{"version":"fd7123ab10a15c7546a11a83c8d48be78b42eeaadbedbe56a4eb0769b2fef983","impliedFormat":99},{"version":"0dfd40eaa343a4d42e9b00d80c63ed591309756e3a33489fb3828565138e860e","impliedFormat":1},{"version":"6eeef3165969859fba61b1deb52c207558c692b9303d9aa7196dd0f045fcfc87","impliedFormat":99},{"version":"6f86608fc7780f98895bb87ced7248a78d6564c507543580ac28312fb398d3b7","impliedFormat":99},{"version":"625175cd716f37f20336fe776fdab89991265b6fb9cf6d1ddcfa9e94b8be862e","affectsGlobalScope":true,"impliedFormat":99},{"version":"e3f8b64af157c4e2f937bb623903ba326cd172e1f7ae586afb33ebe80665682f","impliedFormat":99},{"version":"682363ff42b71ede6f7a5314d3b29f450c1d3154760c2eb0afaf605b75a1c9be","affectsGlobalScope":true,"impliedFormat":99},{"version":"c508f6b530e051f4416551d6852a679dccd58055f5e156d2261fb9f5da9670b8","affectsGlobalScope":true,"impliedFormat":99},{"version":"2b35c561e334fdfb06744518fa1a9497a57c5960504b3249f51b0addf44d6381","impliedFormat":99},{"version":"cb7522e4ed7031b1db0e7b88e4e9a814905a665695646a9a9b8a6cc06281a32d","impliedFormat":99},{"version":"0017d4dfc66117f58989fe40de05ed985d5ff75d1def6881d546cbc80a4ed4bb","impliedFormat":99},{"version":"f236a82713fddf422e938883a57ed6a429db10bcc049f4d24d67730eeae39e65","impliedFormat":99},{"version":"0d78e4b818d3a50f75d6dba3d7ef89fba6e3b9bb46f59744f9daf1b83395a52e","affectsGlobalScope":true,"impliedFormat":99},{"version":"57d3594e1d5211c88575aaf1ad3bb05ed6275b4b14961eae6dc6551b00cf2ec2","impliedFormat":99},{"version":"98c72c5523634004d6ed9b556e3530797f3b9ca0e0b27e99de87ece11cf142a2","impliedFormat":99},{"version":"aa3d7d3eaf0a50a7b26f5e3deecd6cee022415c6f62c6f870cb21f309768b71c","impliedFormat":99},{"version":"dab8d04540735ee6c89f762118f2d9bcaa29b92b9c560749912c1fced3f7eaf1","impliedFormat":99},{"version":"5135fe5fa63b10bccc9f30b2d035c656c20b6e82410fc4b7a702bf3fcdd90194","impliedFormat":99},{"version":"de6a55da2966a89046fddb20e321c086f364e7d801001d428050a20e2dcb8fbc","impliedFormat":99},{"version":"5d55751fc883055eb5fc6ba592ea24ce56b287d66c06b85587f0051b5405bb25","impliedFormat":99},{"version":"caaaf12730860e0e636e66c3a9c8c069223071a89277d245bdaa9f0188417045","affectsGlobalScope":true,"impliedFormat":99},{"version":"eb16df1c88ad4a3a27cfcbe907abeb86b65c984f347bfc9139169f0e0e46c879","impliedFormat":99},{"version":"a9b3c95ceac6e0e7c454f1fd0b16e2fd947950f0648686bac159b9c30ac79c28","affectsGlobalScope":true,"impliedFormat":99},{"version":"c30b00d7cb918193c8cd8e08a385371d01839baab14731b82d8cddd6d0cde4b6","impliedFormat":99},{"version":"10898263ee5078d46df3224cb319c3896ea0971723348bea09c77910bb3bbc37","impliedFormat":99},{"version":"947f86ed7ecfb994225acca098157062cab9ba146d8eddeb8a625aa7ac93c405","impliedFormat":99},{"version":"53460389c5f96094495d5179120f0a9d5b700fac8d54a4f31a9e385af5cd701a","impliedFormat":99},{"version":"444bfada9b193f9e07f08ebfbae3cf3f574711209b86aae0de864bcbd10817ea","impliedFormat":99},{"version":"eeb50dd059452eaea5aa7d411c966ed82c83e52aa7fc9ea335b28bd14fc02ed5","impliedFormat":99},{"version":"339686c83509dbe4174cbfe8566ab0faf07f3ae12f95d021da40c0e60799779d","affectsGlobalScope":true,"impliedFormat":99},{"version":"046db58a91c1a270f460d9b7d1f22faf73919d82723d482022560228435e525d","impliedFormat":99},{"version":"36655a23bd7ef68a1695504a47c4bad359b9cdd3a3465691030add0aaa62687a","impliedFormat":99},{"version":"d237726b81441ab52fb419378bab0e34a7c97cdaa23d1e127953e10d7afb4109","affectsGlobalScope":true,"impliedFormat":99},{"version":"08494a13c39febf9fd1ffdbbf5f637312d0db20c29a80569236d00d1b43c74a8","impliedFormat":99},{"version":"732ad7bcd8b6972fd1da9cda0279704d72e7c3d9f15103ca57a6efa2f2299894","impliedFormat":99},{"version":"c81003f618565f7ec62105cb84b621563852c38278e2721e7e538b465a55fd9c","impliedFormat":99},{"version":"9992bf6c132b08048ec136537caea10fdefa29f615bde9e04ff314e4de6792ab","impliedFormat":1},{"version":"b1a4a624241f840b8e02a58716bd891b580f2b900d46fd5511c18dc0ee79ed18","impliedFormat":99},{"version":"8803501b4d9b272d092c5341f690a81186782b80f7cd500cbb3c89a451dd30d7","impliedFormat":99},{"version":"a1015828c72da77648e770a67484933daea5ec93517be83c914b588b122524eb","signature":"04ff5bf46ae0c3b2f78a4a316dd0c0f97dbaf45c527c9ab6fdf7c05229af5c0a","impliedFormat":99},{"version":"700c695c5655f0829ec32a8f4509dffa9afb1015e6ef0713b24f7f7bffc607ea","signature":"648312cfeafa6ae16556c674c9570b07e328115fe1e49aa0d5e688e4b3b178ab","impliedFormat":99},{"version":"65948f61b1d28a9abdcf0818f277fff9cb45748cf64257c5c520eef1a2a0f9b7","signature":"6702ef8f29217e1c207323594aeb6a95de218225158d7ebe4d74fdb6cff1b822","impliedFormat":99},{"version":"6709c26a18df992d596ffc46dee1bb213bc72a4e4cfbb1e2c7ebd071ad4349cc","signature":"52dac5b7f76c4fdad4fcfc5ff652b1bf154c793c43edf37640ad0669754b47bc","impliedFormat":99},{"version":"7510c69115d7b4750538ceb39d231ca472b3d8ef8e0e79b53c1600baf068d382","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"311b96ee7e4bb717d8fb0cdba0d064fe030f359efac6557f070d96fc1a6995b0","signature":"77649ab0d638ba1186b4c218e0368acac579444cec9e3e25cdc7a24e012df469","impliedFormat":99},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","impliedFormat":1},{"version":"2d1323c55cb7a4f2cf73f03797b26645a7657dd0217beb41b0079b0490ec3370","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","impliedFormat":1},{"version":"efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dea2650c477f53d503a27f78ed17b13d7184c2f922eb4d3367ccf52634765467","impliedFormat":1},{"version":"e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","impliedFormat":1},{"version":"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","impliedFormat":1},{"version":"951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","impliedFormat":1},{"version":"e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","impliedFormat":1},{"version":"43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","impliedFormat":1},{"version":"cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","impliedFormat":1},{"version":"3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","impliedFormat":1},{"version":"9dcd1a6ae84def6ce3e80b27a367912e5b8e9f15c039143820ab76f7ceb8f3ab","impliedFormat":1},{"version":"0def05b4e59413659e7f1cad8b0e32858d7d272a4701457e7fea95618f6ef7db","impliedFormat":1},{"version":"3f6bff86e78e065dad71ca8e395824703f56977f7309139127e58718d7915410","impliedFormat":1},{"version":"ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","impliedFormat":1},{"version":"54c9959f2d8ba97a5fcc4345ac2fca6f1bc20fe5764570b7fef37bea107bc70b","impliedFormat":1},{"version":"de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","impliedFormat":1},{"version":"8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","impliedFormat":1},{"version":"7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","impliedFormat":1},{"version":"f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","impliedFormat":1},{"version":"6746c740192f7ea0efb8cd17be737f09ae11ec6322d35103dcb269959dc57026","affectsGlobalScope":true,"impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"1171e4dfda53f093511e29b1f993a21fca24925055640cacc94226eefb7bb062","impliedFormat":1},{"version":"458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"5774751340e987a6a9e4a5dcc03ff68a6515adc2b91423e1af2f660fc8f30e81","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"c8a34d0c858532a9fab7f0b65f3cff6507df055a0cd8b965c4fd5667b5a0cf7d","impliedFormat":1},{"version":"3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","impliedFormat":1},{"version":"c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","impliedFormat":1},{"version":"3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","impliedFormat":1},{"version":"eac647a94fb1f09789e12dfecb52dcd678d05159a4796b4e415aa15892f3b103","impliedFormat":1},{"version":"b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","impliedFormat":1},{"version":"8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","impliedFormat":1},{"version":"ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","impliedFormat":1},{"version":"083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","impliedFormat":1},{"version":"274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","impliedFormat":1},{"version":"6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","impliedFormat":1},{"version":"5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","impliedFormat":1},{"version":"f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","impliedFormat":1},{"version":"0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","impliedFormat":1},{"version":"05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","impliedFormat":1},{"version":"e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","impliedFormat":1},{"version":"d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","impliedFormat":1},{"version":"e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","impliedFormat":1},{"version":"1fc49547f60101e7fac0d9113a52c29178be082d46d7525009aebafdbb170a69","impliedFormat":1},{"version":"401845ce10d4d9848a8e39f5004446eef7c3db2de5e9341b8a17c9b00aefcc0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","impliedFormat":1},{"version":"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","impliedFormat":1},{"version":"9cdb157e06005f2614aa42ddd4d6b46a3623145349bbac5dd1ee221fb71dcc25","impliedFormat":1}],"root":[[170,175]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[56,123,166,222],[222],[149,222],[71,123,148,154,166,222],[123,222],[149,150,151,152,153,222],[123,136,222],[133,140,154,157,158,161,165,222],[159,160,222],[160,222],[56,123,159,222],[136,137,138,139,222],[71,123,140,166,222],[123,136,166,222],[56,123,222],[162,163,164,222],[166,222],[135,142,146,155,156,222],[123,140,222],[141,222],[123,145,222],[55,123,140,154,157,222],[127,222],[124,125,126,127,128,129,130,131,132,222],[56,59,60,222],[96,97,222],[59,222],[99,222],[118,119,120,121,222],[59,113,222],[59,99,113,222],[113,114,115,116,222],[55,56,59,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,98,100,104,108,112,117,122,222],[101,102,103,222],[70,222],[106,222],[106,107,222],[55,105,123,222],[109,110,111,222],[59,109,222],[59,70,109,222],[147,222],[143,144,222],[143,222],[59,135,222],[52,222],[60,222],[52,60,222],[52,60,68,222],[50,51,222],[195,222,229,230],[186,222,229],[195,197,222,229,233],[221,222,229,237],[195,222,229],[222,242,244],[222,241,242,243],[192,195,222,229,235,236],[222,231,236,237,248],[192,193,222,229,250],[193,222,229],[222,253],[222,234,255,256],[192,195,197,200,210,221,222,229],[222,261],[222,262],[222,266,268,269,270,271,272,273,274,275,276,277,278],[222,266,267,269,270,271,272,273,274,275,276,277,278],[222,267,268,269,270,271,272,273,274,275,276,277,278],[222,266,267,268,270,271,272,273,274,275,276,277,278],[222,266,267,268,269,271,272,273,274,275,276,277,278],[222,266,267,268,269,270,272,273,274,275,276,277,278],[222,266,267,268,269,270,271,273,274,275,276,277,278],[222,266,267,268,269,270,271,272,274,275,276,277,278],[222,266,267,268,269,270,271,272,273,275,276,277,278],[222,266,267,268,269,270,271,272,273,274,276,277,278],[222,266,267,268,269,270,271,272,273,274,275,277,278],[222,266,267,268,269,270,271,272,273,274,275,276,278],[222,266,267,268,269,270,271,272,273,274,275,276,277],[222,246],[222,247],[195,221,222,229,281,282],[176,222],[179,222],[180,185,213,222],[181,192,193,200,210,221,222],[181,182,192,200,222],[183,222],[184,185,193,201,222],[185,210,218,222],[186,188,192,200,222],[187,222],[188,189,222],[192,222],[190,192,222],[192,193,194,210,221,222],[192,193,194,207,210,213,222],[222,226],[188,195,200,210,221,222],[192,193,195,196,200,210,218,221,222],[195,197,210,218,221,222],[176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228],[192,198,222],[199,221,222],[188,192,200,210,222],[201,222],[202,222],[179,203,222],[204,220,222,226],[205,222],[206,222],[192,207,208,222],[207,209,222,224],[180,192,210,211,212,213,222],[180,210,212,222],[210,211,222],[213,222],[214,222],[192,216,217,222],[216,217,222],[185,200,210,218,222],[219,222],[200,220,222],[180,195,206,221,222],[185,222],[210,222,223],[222,224],[222,225],[180,185,192,194,203,210,221,222,224,226],[210,222,227],[222,290,329],[222,290,314,329],[222,329],[222,290],[222,290,315,329],[222,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328],[222,315,329],[193,222,249],[195,222,229,247],[53,222],[222,233],[222,229,336,337,338,339,340,341,342,343,344,345,346],[222,335,336,345],[222,336,345],[222,332,335,336,345],[222,335,336,337,338,339,340,341,342,343,344,346],[222,336],[185,222,335,345],[185,222,229,233,255,333,334,347],[192,195,197,210,218,221,222,227,229],[222,351],[195,210,222,229],[52,56,222],[55,56,222],[56,222],[55,56,75,222],[55,56,74,222],[55,222],[55,56,91,222],[54,55,222],[61,62,63,64,65,66,67,68,69,222],[52,56,57,58,222],[71,222],[134,222],[49,167,222],[49,168,222],[49,123,148,166,169,170,222],[49,148,166,172,222],[49,169,222],[49,170,171,172,173,174,222],[49,123,166,222],[49,171,173,222],[148,169,170],[148],[169],[170,171,172,173,174],[171,173]],"referencedMap":[[158,1],[152,2],[150,3],[149,4],[151,5],[154,6],[153,7],[166,8],[161,9],[159,10],[160,11],[140,12],[139,5],[136,13],[137,14],[138,15],[165,16],[162,2],[163,17],[164,2],[157,18],[156,19],[142,20],[146,21],[155,22],[141,19],[125,5],[128,23],[127,2],[133,24],[131,2],[130,5],[129,5],[124,5],[126,2],[97,25],[98,26],[96,27],[99,27],[100,28],[121,2],[118,2],[120,2],[122,29],[119,2],[114,30],[116,31],[113,2],[115,2],[117,32],[123,33],[104,34],[101,27],[102,27],[103,35],[107,36],[108,37],[106,38],[95,2],[112,39],[110,40],[111,41],[109,27],[148,42],[147,5],[145,43],[144,44],[143,45],[50,2],[60,46],[61,47],[64,48],[62,48],[66,48],[69,49],[68,2],[67,48],[65,48],[63,47],[51,2],[52,50],[231,51],[232,52],[234,53],[167,2],[238,54],[230,55],[239,2],[240,55],[245,56],[241,2],[244,57],[242,2],[237,58],[249,59],[251,60],[252,61],[254,62],[258,2],[257,63],[259,64],[260,2],[261,2],[262,65],[263,66],[264,2],[243,2],[265,2],[267,67],[268,68],[266,69],[269,70],[270,71],[271,72],[272,73],[273,74],[274,75],[275,76],[276,77],[277,78],[278,79],[279,62],[247,80],[246,81],[250,2],[280,2],[282,2],[283,82],[176,83],[177,83],[179,84],[180,85],[181,86],[182,87],[183,88],[184,89],[185,90],[186,91],[187,92],[188,93],[189,93],[191,94],[190,95],[192,94],[193,96],[194,97],[178,98],[228,2],[195,99],[196,100],[197,101],[229,102],[198,103],[199,104],[200,105],[201,106],[202,107],[203,108],[204,109],[205,110],[206,111],[207,112],[208,112],[209,113],[210,114],[212,115],[211,116],[213,117],[214,118],[215,2],[216,119],[217,120],[218,121],[219,122],[220,123],[221,124],[222,125],[223,126],[224,127],[225,128],[226,129],[227,130],[284,2],[285,94],[286,2],[287,2],[288,2],[236,2],[235,2],[256,2],[289,2],[314,131],[315,132],[290,133],[293,133],[312,131],[313,131],[303,131],[302,134],[300,131],[295,131],[308,131],[306,131],[310,131],[294,131],[307,131],[311,131],[296,131],[297,131],[309,131],[291,131],[298,131],[299,131],[301,131],[305,131],[316,135],[304,131],[292,131],[329,136],[328,2],[323,135],[325,137],[324,135],[317,135],[318,135],[320,135],[322,135],[326,137],[327,137],[319,137],[321,137],[330,138],[248,139],[331,55],[332,2],[333,2],[54,140],[53,2],[255,141],[253,2],[349,2],[347,142],[346,143],[337,144],[338,145],[345,146],[339,145],[340,144],[341,144],[342,144],[343,147],[336,148],[344,143],[335,2],[348,149],[350,150],[351,2],[352,151],[334,2],[105,2],[281,152],[57,153],[74,154],[73,154],[55,155],[76,156],[75,157],[77,154],[78,2],[79,154],[80,154],[81,155],[82,2],[83,158],[84,154],[85,2],[86,2],[87,157],[88,154],[89,154],[90,154],[91,154],[92,159],[93,157],[94,2],[58,2],[56,160],[71,155],[70,161],[59,162],[72,163],[233,2],[132,2],[49,2],[46,2],[47,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[48,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[135,164],[134,2],[168,165],[169,166],[171,167],[173,168],[170,169],[175,170],[174,171],[172,172]],"exportedModulesMap":[[158,1],[152,2],[150,3],[149,4],[151,5],[154,6],[153,7],[166,8],[161,9],[159,10],[160,11],[140,12],[139,5],[136,13],[137,14],[138,15],[165,16],[162,2],[163,17],[164,2],[157,18],[156,19],[142,20],[146,21],[155,22],[141,19],[125,5],[128,23],[127,2],[133,24],[131,2],[130,5],[129,5],[124,5],[126,2],[97,25],[98,26],[96,27],[99,27],[100,28],[121,2],[118,2],[120,2],[122,29],[119,2],[114,30],[116,31],[113,2],[115,2],[117,32],[123,33],[104,34],[101,27],[102,27],[103,35],[107,36],[108,37],[106,38],[95,2],[112,39],[110,40],[111,41],[109,27],[148,42],[147,5],[145,43],[144,44],[143,45],[50,2],[60,46],[61,47],[64,48],[62,48],[66,48],[69,49],[68,2],[67,48],[65,48],[63,47],[51,2],[52,50],[231,51],[232,52],[234,53],[167,2],[238,54],[230,55],[239,2],[240,55],[245,56],[241,2],[244,57],[242,2],[237,58],[249,59],[251,60],[252,61],[254,62],[258,2],[257,63],[259,64],[260,2],[261,2],[262,65],[263,66],[264,2],[243,2],[265,2],[267,67],[268,68],[266,69],[269,70],[270,71],[271,72],[272,73],[273,74],[274,75],[275,76],[276,77],[277,78],[278,79],[279,62],[247,80],[246,81],[250,2],[280,2],[282,2],[283,82],[176,83],[177,83],[179,84],[180,85],[181,86],[182,87],[183,88],[184,89],[185,90],[186,91],[187,92],[188,93],[189,93],[191,94],[190,95],[192,94],[193,96],[194,97],[178,98],[228,2],[195,99],[196,100],[197,101],[229,102],[198,103],[199,104],[200,105],[201,106],[202,107],[203,108],[204,109],[205,110],[206,111],[207,112],[208,112],[209,113],[210,114],[212,115],[211,116],[213,117],[214,118],[215,2],[216,119],[217,120],[218,121],[219,122],[220,123],[221,124],[222,125],[223,126],[224,127],[225,128],[226,129],[227,130],[284,2],[285,94],[286,2],[287,2],[288,2],[236,2],[235,2],[256,2],[289,2],[314,131],[315,132],[290,133],[293,133],[312,131],[313,131],[303,131],[302,134],[300,131],[295,131],[308,131],[306,131],[310,131],[294,131],[307,131],[311,131],[296,131],[297,131],[309,131],[291,131],[298,131],[299,131],[301,131],[305,131],[316,135],[304,131],[292,131],[329,136],[328,2],[323,135],[325,137],[324,135],[317,135],[318,135],[320,135],[322,135],[326,137],[327,137],[319,137],[321,137],[330,138],[248,139],[331,55],[332,2],[333,2],[54,140],[53,2],[255,141],[253,2],[349,2],[347,142],[346,143],[337,144],[338,145],[345,146],[339,145],[340,144],[341,144],[342,144],[343,147],[336,148],[344,143],[335,2],[348,149],[350,150],[351,2],[352,151],[334,2],[105,2],[281,152],[57,153],[74,154],[73,154],[55,155],[76,156],[75,157],[77,154],[78,2],[79,154],[80,154],[81,155],[82,2],[83,158],[84,154],[85,2],[86,2],[87,157],[88,154],[89,154],[90,154],[91,154],[92,159],[93,157],[94,2],[58,2],[56,160],[71,155],[70,161],[59,162],[72,163],[233,2],[132,2],[49,2],[46,2],[47,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[48,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[135,164],[134,2],[168,165],[169,166],[171,173],[173,174],[170,175],[175,176],[172,177]],"semanticDiagnosticsPerFile":[158,152,150,149,151,154,153,166,161,159,160,140,139,136,137,138,165,162,163,164,157,156,142,146,155,141,125,128,127,133,131,130,129,124,126,97,98,96,99,100,121,118,120,122,119,114,116,113,115,117,123,104,101,102,103,107,108,106,95,112,110,111,109,148,147,145,144,143,50,60,61,64,62,66,69,68,67,65,63,51,52,231,232,234,167,238,230,239,240,245,241,244,242,237,249,251,252,254,258,257,259,260,261,262,263,264,243,265,267,268,266,269,270,271,272,273,274,275,276,277,278,279,247,246,250,280,282,283,176,177,179,180,181,182,183,184,185,186,187,188,189,191,190,192,193,194,178,228,195,196,197,229,198,199,200,201,202,203,204,205,206,207,208,209,210,212,211,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,284,285,286,287,288,236,235,256,289,314,315,290,293,312,313,303,302,300,295,308,306,310,294,307,311,296,297,309,291,298,299,301,305,316,304,292,329,328,323,325,324,317,318,320,322,326,327,319,321,330,248,331,332,333,54,53,255,253,349,347,346,337,338,345,339,340,341,342,343,336,344,335,348,350,351,352,334,105,281,57,74,73,55,76,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,58,56,71,70,59,72,233,132,49,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,48,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,135,134,168,169,171,173,170,175,174,172]},"version":"5.0.3"}
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@3mo/theme",
3
+ "version": "0.0.1",
4
+ "description": "Tools & tokens for theming 3MO components & applications.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/3mo-esolutions/web-components"
8
+ },
9
+ "keywords": [
10
+ "lit",
11
+ "web-component",
12
+ "theme"
13
+ ],
14
+ "author": "3MO GmbH",
15
+ "license": "MIT",
16
+ "homepage": "https://www.3mo.de",
17
+ "type": "module",
18
+ "main": "dist/index.js",
19
+ "types": "dist/index.d.ts",
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "dependencies": {
24
+ "@a11d/lit": "x",
25
+ "@a11d/local-storage": "x",
26
+ "@a11d/lit-application": "x",
27
+ "@3mo/color": "x",
28
+ "tslib": "x"
29
+ }
30
+ }