@operato/grist-editor 1.0.0-beta.43 → 1.0.0-beta.46

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.0-beta.46](https://github.com/hatiolab/operato/compare/v1.0.0-beta.45...v1.0.0-beta.46) (2022-07-11)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * property-editor spec. changed ([b10e4ef](https://github.com/hatiolab/operato/commit/b10e4ef151450a0ca19cbf00c9c96da80ddaaed8))
12
+
13
+
14
+
15
+ ## [1.0.0-beta.45](https://github.com/hatiolab/operato/compare/v1.0.0-beta.44...v1.0.0-beta.45) (2022-07-09)
16
+
17
+
18
+ ### :bug: Bug Fix
19
+
20
+ * add ox-grist-renderer-duration ([91e79c3](https://github.com/hatiolab/operato/commit/91e79c38eda15c1c16a357a75fa296f01029e30d))
21
+
22
+
23
+
24
+ ## [1.0.0-beta.44](https://github.com/hatiolab/operato/compare/v1.0.0-beta.43...v1.0.0-beta.44) (2022-07-07)
25
+
26
+
27
+ ### :bug: Bug Fix
28
+
29
+ * board property-editor style, option-able fullwidth, ox-input-select event ([6d181de](https://github.com/hatiolab/operato/commit/6d181de26467ee0f1733f6367049517c69383f31))
30
+
31
+
32
+
6
33
  ## [1.0.0-beta.43](https://github.com/hatiolab/operato/compare/v1.0.0-beta.42...v1.0.0-beta.43) (2022-07-03)
7
34
 
8
35
  **Note:** Version bump only for package @operato/grist-editor
package/dist/src/index.js CHANGED
@@ -3,14 +3,20 @@ import { OxGristEditorCrontab } from './ox-grist-editor-crontab.js';
3
3
  import { OxGristEditorDuration } from './ox-grist-editor-duration.js';
4
4
  import { OxGristEditorParameters } from './ox-grist-editor-parameters.js';
5
5
  import { OxGristEditorPartitionKeys } from './ox-grist-editor-partition-keys.js';
6
+ import { OxGristEditorQuantifier } from './ox-grist-editor-quantifier.js';
6
7
  import { OxGristEditorValueMap } from './ox-grist-editor-value-map.js';
8
+ import { OxGristRendererDuration } from './ox-grist-renderer-duration.js';
9
+ import { OxGristRendererQuantifier } from './ox-grist-renderer-quantifier';
7
10
  /* register grist renderer/editor for id */
8
11
  registerEditor('parameters', OxGristEditorParameters);
9
12
  registerEditor('value-map', OxGristEditorValueMap);
10
13
  registerEditor('partition-keys', OxGristEditorPartitionKeys);
11
14
  registerEditor('crontab', OxGristEditorCrontab);
12
15
  registerEditor('duration', OxGristEditorDuration);
16
+ registerEditor('quantifier', OxGristEditorQuantifier);
13
17
  registerRenderer('parameters', OxGristRendererJson5);
14
18
  registerRenderer('value-map', OxGristRendererJson5);
15
19
  registerRenderer('partition-keys', OxGristRendererJson5);
20
+ registerRenderer('duration', OxGristRendererDuration);
21
+ registerRenderer('quantifier', OxGristRendererQuantifier);
16
22
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAE5F,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAA;AAChF,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAA;AAEtE,2CAA2C;AAC3C,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AACrD,cAAc,CAAC,WAAW,EAAE,qBAAqB,CAAC,CAAA;AAClD,cAAc,CAAC,gBAAgB,EAAE,0BAA0B,CAAC,CAAA;AAC5D,cAAc,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAA;AAC/C,cAAc,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAA;AAEjD,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,CAAA;AACpD,gBAAgB,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAA;AACnD,gBAAgB,CAAC,gBAAgB,EAAE,oBAAoB,CAAC,CAAA","sourcesContent":["import { OxGristRendererJson5, registerEditor, registerRenderer } from '@operato/data-grist'\n\nimport { OxGristEditorCrontab } from './ox-grist-editor-crontab.js'\nimport { OxGristEditorDuration } from './ox-grist-editor-duration.js'\nimport { OxGristEditorParameters } from './ox-grist-editor-parameters.js'\nimport { OxGristEditorPartitionKeys } from './ox-grist-editor-partition-keys.js'\nimport { OxGristEditorValueMap } from './ox-grist-editor-value-map.js'\n\n/* register grist renderer/editor for id */\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('duration', OxGristEditorDuration)\n\nregisterRenderer('parameters', OxGristRendererJson5)\nregisterRenderer('value-map', OxGristRendererJson5)\nregisterRenderer('partition-keys', OxGristRendererJson5)\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAE5F,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAA;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAA;AAChF,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAA;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAA;AAE1E,2CAA2C;AAC3C,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AACrD,cAAc,CAAC,WAAW,EAAE,qBAAqB,CAAC,CAAA;AAClD,cAAc,CAAC,gBAAgB,EAAE,0BAA0B,CAAC,CAAA;AAC5D,cAAc,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAA;AAC/C,cAAc,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAA;AACjD,cAAc,CAAC,YAAY,EAAE,uBAAuB,CAAC,CAAA;AAErD,gBAAgB,CAAC,YAAY,EAAE,oBAAoB,CAAC,CAAA;AACpD,gBAAgB,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAA;AACnD,gBAAgB,CAAC,gBAAgB,EAAE,oBAAoB,CAAC,CAAA;AACxD,gBAAgB,CAAC,UAAU,EAAE,uBAAuB,CAAC,CAAA;AACrD,gBAAgB,CAAC,YAAY,EAAE,yBAAyB,CAAC,CAAA","sourcesContent":["import { OxGristRendererJson5, registerEditor, registerRenderer } from '@operato/data-grist'\n\nimport { OxGristEditorCrontab } from './ox-grist-editor-crontab.js'\nimport { OxGristEditorDuration } from './ox-grist-editor-duration.js'\nimport { OxGristEditorParameters } from './ox-grist-editor-parameters.js'\nimport { OxGristEditorPartitionKeys } from './ox-grist-editor-partition-keys.js'\nimport { OxGristEditorQuantifier } from './ox-grist-editor-quantifier.js'\nimport { OxGristEditorValueMap } from './ox-grist-editor-value-map.js'\nimport { OxGristRendererDuration } from './ox-grist-renderer-duration.js'\nimport { OxGristRendererQuantifier } from './ox-grist-renderer-quantifier'\n\n/* register grist renderer/editor for id */\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('duration', OxGristEditorDuration)\nregisterEditor('quantifier', OxGristEditorQuantifier)\n\nregisterRenderer('parameters', OxGristRendererJson5)\nregisterRenderer('value-map', OxGristRendererJson5)\nregisterRenderer('partition-keys', OxGristRendererJson5)\nregisterRenderer('duration', OxGristRendererDuration)\nregisterRenderer('quantifier', OxGristRendererQuantifier)\n"]}
@@ -0,0 +1,5 @@
1
+ import '@operato/input/ox-input-quantifier.js';
2
+ import { OxGristEditor } from '@operato/data-grist';
3
+ export declare class OxGristEditorQuantifier extends OxGristEditor {
4
+ get editorTemplate(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,15 @@
1
+ import { __decorate } from "tslib";
2
+ import '@operato/input/ox-input-quantifier.js';
3
+ import { html } from 'lit';
4
+ import { customElement } from 'lit/decorators.js';
5
+ import { OxGristEditor } from '@operato/data-grist';
6
+ let OxGristEditorQuantifier = class OxGristEditorQuantifier extends OxGristEditor {
7
+ get editorTemplate() {
8
+ return html ` <ox-input-quantifier .value=${this.value} /> `;
9
+ }
10
+ };
11
+ OxGristEditorQuantifier = __decorate([
12
+ customElement('ox-grist-editor-quantifier')
13
+ ], OxGristEditorQuantifier);
14
+ export { OxGristEditorQuantifier };
15
+ //# sourceMappingURL=ox-grist-editor-quantifier.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ox-grist-editor-quantifier.js","sourceRoot":"","sources":["../../src/ox-grist-editor-quantifier.ts"],"names":[],"mappings":";AAAA,OAAO,uCAAuC,CAAA;AAE9C,OAAO,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAEjD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAGnD,IAAa,uBAAuB,GAApC,MAAa,uBAAwB,SAAQ,aAAa;IACxD,IAAI,cAAc;QAChB,OAAO,IAAI,CAAA,gCAAgC,IAAI,CAAC,KAAK,MAAM,CAAA;IAC7D,CAAC;CACF,CAAA;AAJY,uBAAuB;IADnC,aAAa,CAAC,4BAA4B,CAAC;GAC/B,uBAAuB,CAInC;SAJY,uBAAuB","sourcesContent":["import '@operato/input/ox-input-quantifier.js'\n\nimport { html } from 'lit'\nimport { customElement } from 'lit/decorators.js'\n\nimport { OxGristEditor } from '@operato/data-grist'\n\n@customElement('ox-grist-editor-quantifier')\nexport class OxGristEditorQuantifier extends OxGristEditor {\n get editorTemplate() {\n return html` <ox-input-quantifier .value=${this.value} /> `\n }\n}\n"]}
@@ -0,0 +1,2 @@
1
+ import { FieldRenderer } from '@operato/data-grist';
2
+ export declare const OxGristRendererDuration: FieldRenderer;
@@ -0,0 +1,33 @@
1
+ import i18next from 'i18next';
2
+ import { html } from 'lit';
3
+ import { detectOverflow } from '@operato/utils';
4
+ function onmouseover(e) {
5
+ const element = e.target;
6
+ if (detectOverflow(element)) {
7
+ element.setAttribute('data-tooltip', element.textContent);
8
+ }
9
+ }
10
+ function onmouseout(e) {
11
+ const element = e.target;
12
+ element.removeAttribute('data-tooltip');
13
+ }
14
+ export const OxGristRendererDuration = (value, column, record, rowIndex, field) => {
15
+ var text = '';
16
+ try {
17
+ var secs = Number(value) || 0;
18
+ var positive = secs >= 0;
19
+ secs = Math.abs(secs);
20
+ const days = Math.floor(secs / (3600 * 24));
21
+ secs -= days * 24 * 3600;
22
+ const hours = Math.floor(secs / 3600);
23
+ secs -= hours * 3600;
24
+ const minutes = Math.floor(secs / 60);
25
+ const seconds = secs - minutes * 60;
26
+ text = `${positive ? '' : '- '}${days ? `${days}${i18next.t('label.days')} ` : ''}${hours ? `${hours}${i18next.t('label.hours')} ` : ''}${minutes ? `${minutes}${i18next.t('label.minutes')} ` : ''}${seconds ? `${seconds}${i18next.t('label.seconds')}` : ''}`.trim();
27
+ }
28
+ catch (e) {
29
+ console.error(e);
30
+ }
31
+ return html `<span @mouseover=${onmouseover} @mouseout=${onmouseout}>${text}</span>`;
32
+ };
33
+ //# sourceMappingURL=ox-grist-renderer-duration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ox-grist-renderer-duration.js","sourceRoot":"","sources":["../../src/ox-grist-renderer-duration.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAG1B,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAE/C,SAAS,WAAW,CAAC,CAAQ;IAC3B,MAAM,OAAO,GAAG,CAAC,CAAC,MAAyB,CAAA;IAC3C,IAAI,cAAc,CAAC,OAAO,CAAC,EAAE;QAC3B,OAAO,CAAC,YAAY,CAAC,cAAc,EAAE,OAAO,CAAC,WAAY,CAAC,CAAA;KAC3D;AACH,CAAC;AAED,SAAS,UAAU,CAAC,CAAQ;IAC1B,MAAM,OAAO,GAAG,CAAC,CAAC,MAAyB,CAAA;IAC3C,OAAO,CAAC,eAAe,CAAC,cAAc,CAAC,CAAA;AACzC,CAAC;AAED,MAAM,CAAC,MAAM,uBAAuB,GAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;IAC/F,IAAI,IAAI,GAAG,EAAE,CAAA;IAEb,IAAI;QACF,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC7B,IAAI,QAAQ,GAAG,IAAI,IAAI,CAAC,CAAA;QAExB,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACrB,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAA;QAC3C,IAAI,IAAI,IAAI,GAAG,EAAE,GAAG,IAAI,CAAA;QACxB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;QACrC,IAAI,IAAI,KAAK,GAAG,IAAI,CAAA;QACpB,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,EAAE,CAAC,CAAA;QACrC,MAAM,OAAO,GAAG,IAAI,GAAG,OAAO,GAAG,EAAE,CAAA;QAEnC,IAAI,GAAG,GAAG,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAC/E,KAAK,CAAC,CAAC,CAAC,GAAG,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,EACnD,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAC1D,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,CAAC,EACxD,EAAE,CAAC,IAAI,EAAE,CAAA;KACV;IAAC,OAAO,CAAC,EAAE;QACV,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;KACjB;IAED,OAAO,IAAI,CAAA,oBAAoB,WAAW,cAAc,UAAU,IAAI,IAAI,SAAS,CAAA;AACrF,CAAC,CAAA","sourcesContent":["import i18next from 'i18next'\nimport { html } from 'lit'\n\nimport { FieldRenderer } from '@operato/data-grist'\nimport { detectOverflow } from '@operato/utils'\n\nfunction onmouseover(e: Event) {\n const element = e.target as HTMLSpanElement\n if (detectOverflow(element)) {\n element.setAttribute('data-tooltip', element.textContent!)\n }\n}\n\nfunction onmouseout(e: Event) {\n const element = e.target as HTMLSpanElement\n element.removeAttribute('data-tooltip')\n}\n\nexport const OxGristRendererDuration: FieldRenderer = (value, column, record, rowIndex, field) => {\n var text = ''\n\n try {\n var secs = Number(value) || 0\n var positive = secs >= 0\n\n secs = Math.abs(secs)\n const days = Math.floor(secs / (3600 * 24))\n secs -= days * 24 * 3600\n const hours = Math.floor(secs / 3600)\n secs -= hours * 3600\n const minutes = Math.floor(secs / 60)\n const seconds = secs - minutes * 60\n\n text = `${positive ? '' : '- '}${days ? `${days}${i18next.t('label.days')} ` : ''}${\n hours ? `${hours}${i18next.t('label.hours')} ` : ''\n }${minutes ? `${minutes}${i18next.t('label.minutes')} ` : ''}${\n seconds ? `${seconds}${i18next.t('label.seconds')}` : ''\n }`.trim()\n } catch (e) {\n console.error(e)\n }\n\n return html`<span @mouseover=${onmouseover} @mouseout=${onmouseout}>${text}</span>`\n}\n"]}
@@ -0,0 +1,2 @@
1
+ import { FieldRenderer } from '@operato/data-grist';
2
+ export declare const OxGristRendererQuantifier: FieldRenderer;
@@ -0,0 +1,6 @@
1
+ import { html } from 'lit';
2
+ export const OxGristRendererQuantifier = (value, column, record, rowIndex, field) => {
3
+ const [min = 1, max = 1] = value || [];
4
+ return html `<span>${min}, ${max}</span>`;
5
+ };
6
+ //# sourceMappingURL=ox-grist-renderer-quantifier.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ox-grist-renderer-quantifier.js","sourceRoot":"","sources":["../../src/ox-grist-renderer-quantifier.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAI1B,MAAM,CAAC,MAAM,yBAAyB,GAAkB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;IACjG,MAAM,CAAC,GAAG,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC,GAAG,KAAK,IAAI,EAAE,CAAA;IAEtC,OAAO,IAAI,CAAA,SAAS,GAAG,KAAK,GAAG,SAAS,CAAA;AAC1C,CAAC,CAAA","sourcesContent":["import { html } from 'lit'\n\nimport { FieldRenderer } from '@operato/data-grist'\n\nexport const OxGristRendererQuantifier: FieldRenderer = (value, column, record, rowIndex, field) => {\n const [min = 1, max = 1] = value || []\n\n return html`<span>${min}, ${max}</span>`\n}\n"]}
@@ -67,6 +67,7 @@ let OxParametersBuilder = class OxParametersBuilder extends LitElement {
67
67
  element.observe = prop.observe;
68
68
  }
69
69
  element.property = prop.property;
70
+ element.editor = prop.editor;
70
71
  element.setAttribute('property-editor', '');
71
72
  this.appendChild(element);
72
73
  });
@@ -1 +1 @@
1
- {"version":3,"file":"ox-parameters-builder.js","sourceRoot":"","sources":["../../src/ox-parameters-builder.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { OxPropertyEditor, PropertySpec } from '@operato/property-editor'\n\n/**\n모든 에디터들은 change 이벤트를 지원해야 한다. 또한, 모든 에디터들은 value속성에 값을 가져야 한다.\n\nExample:\n\n <ox-parameters-builder value=\"{{value}}\">\n <label>Center X</label>\n <input type=\"number\" .value=\"${value.cx}\">\n <label>Width</label>\n <input type=\"number\" .value=\"${value.width}\">\n </ox-parameters-builder>\n*/\n\nconst DEFAULT_VALUE = {\n legend: '',\n number: 0,\n angle: 0,\n string: '',\n text: '',\n textarea: '',\n checkbox: false,\n select: '',\n color: '#000000',\n 'solidcolor-stops': null,\n 'gradientcolor-stops': null,\n 'gltf-selector': '',\n 'image-selector': '',\n multiplecolor: null,\n editortable: null,\n imageselector: '',\n options: null,\n date: null\n} as any\n\n@customElement('ox-parameters-builder')\nclass OxParametersBuilder extends LitElement {\n @property({ type: Object }) value: any\n @property({ type: Array }) props?: PropertySpec[]\n @property({ type: Object }) host: any\n\n render() {\n return html`<slot></slot>`\n }\n\n firstUpdated() {\n this.addEventListener('change', this._onValueChanged.bind(this))\n }\n\n updated(changes: PropertyValues<this>) {\n changes.has('props') && this._onPropsChanged(this.props)\n changes.has('value') && this._setValues()\n }\n\n _onPropsChanged(props: PropertySpec[] | undefined) {\n this.textContent = ''\n ;(props || []).forEach(prop => {\n let elementType = OxPropertyEditor.getEditor(prop.type)\n if (!elementType) {\n console.warn('Property Editor not defined', prop.type)\n return\n }\n let element = document.createElement(elementType) as OxPropertyEditor\n\n element.label = prop.label\n element.type = prop.type\n element.placeholder = prop.placeholder\n element.host = this.host\n // element.context = this.context\n element.setAttribute('name', prop.name)\n\n if (prop.observe) {\n element.observe = prop.observe\n }\n element.property = prop.property\n element.setAttribute('property-editor', '')\n\n this.appendChild(element)\n })\n }\n\n _setValues() {\n var value = this.value || {}\n Array.from(this.querySelectorAll('[name]')).forEach(propertyEditor => {\n const editor = propertyEditor as OxPropertyEditor\n let name = editor.getAttribute('name')\n editor.value = value[name!] === undefined ? DEFAULT_VALUE[editor.type] : value[name!]\n })\n }\n\n _getValues() {\n var value = {} as any\n Array.from(this.querySelectorAll('[name]')).forEach(propertyEditor => {\n const editor = propertyEditor as OxPropertyEditor\n let name = editor.getAttribute('name')\n value[name!] = editor.value === undefined ? DEFAULT_VALUE[editor.type] : editor.value\n })\n\n return value\n }\n\n _onValueChanged(e: Event) {\n e.stopPropagation()\n var prop = e.target as HTMLElement\n\n if (!prop || !prop.hasAttribute('property-editor')) {\n return\n }\n\n this.dispatchEvent(\n new CustomEvent('property-change', {\n bubbles: true,\n composed: true,\n detail: this._getValues()\n })\n )\n }\n}\n"]}
1
+ {"version":3,"file":"ox-parameters-builder.js","sourceRoot":"","sources":["../../src/ox-parameters-builder.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { OxPropertyEditor, PropertySpec } from '@operato/property-editor'\n\n/**\n모든 에디터들은 change 이벤트를 지원해야 한다. 또한, 모든 에디터들은 value속성에 값을 가져야 한다.\n\nExample:\n\n <ox-parameters-builder value=\"{{value}}\">\n <label>Center X</label>\n <input type=\"number\" .value=\"${value.cx}\">\n <label>Width</label>\n <input type=\"number\" .value=\"${value.width}\">\n </ox-parameters-builder>\n*/\n\nconst DEFAULT_VALUE = {\n legend: '',\n number: 0,\n angle: 0,\n string: '',\n text: '',\n textarea: '',\n checkbox: false,\n select: '',\n color: '#000000',\n 'solidcolor-stops': null,\n 'gradientcolor-stops': null,\n 'gltf-selector': '',\n 'image-selector': '',\n multiplecolor: null,\n editortable: null,\n imageselector: '',\n options: null,\n date: null\n} as any\n\n@customElement('ox-parameters-builder')\nclass OxParametersBuilder extends LitElement {\n @property({ type: Object }) value: any\n @property({ type: Array }) props?: PropertySpec[]\n @property({ type: Object }) host: any\n\n render() {\n return html`<slot></slot>`\n }\n\n firstUpdated() {\n this.addEventListener('change', this._onValueChanged.bind(this))\n }\n\n updated(changes: PropertyValues<this>) {\n changes.has('props') && this._onPropsChanged(this.props)\n changes.has('value') && this._setValues()\n }\n\n _onPropsChanged(props: PropertySpec[] | undefined) {\n this.textContent = ''\n ;(props || []).forEach(prop => {\n let elementType = OxPropertyEditor.getEditor(prop.type)\n if (!elementType) {\n console.warn('Property Editor not defined', prop.type)\n return\n }\n let element = document.createElement(elementType) as OxPropertyEditor\n\n element.label = prop.label\n element.type = prop.type\n element.placeholder = prop.placeholder\n element.host = this.host\n // element.context = this.context\n element.setAttribute('name', prop.name)\n\n if (prop.observe) {\n element.observe = prop.observe\n }\n element.property = prop.property\n element.editor = prop.editor\n element.setAttribute('property-editor', '')\n\n this.appendChild(element)\n })\n }\n\n _setValues() {\n var value = this.value || {}\n Array.from(this.querySelectorAll('[name]')).forEach(propertyEditor => {\n const editor = propertyEditor as OxPropertyEditor\n let name = editor.getAttribute('name')\n editor.value = value[name!] === undefined ? DEFAULT_VALUE[editor.type] : value[name!]\n })\n }\n\n _getValues() {\n var value = {} as any\n Array.from(this.querySelectorAll('[name]')).forEach(propertyEditor => {\n const editor = propertyEditor as OxPropertyEditor\n let name = editor.getAttribute('name')\n value[name!] = editor.value === undefined ? DEFAULT_VALUE[editor.type] : editor.value\n })\n\n return value\n }\n\n _onValueChanged(e: Event) {\n e.stopPropagation()\n var prop = e.target as HTMLElement\n\n if (!prop || !prop.hasAttribute('property-editor')) {\n return\n }\n\n this.dispatchEvent(\n new CustomEvent('property-change', {\n bubbles: true,\n composed: true,\n detail: this._getValues()\n })\n )\n }\n}\n"]}
@@ -21,6 +21,7 @@ import { OxGristEditorParameters } from '../src/ox-grist-editor-parameters.js';
21
21
  import { OxGristEditorPartitionKeys } from '../src/ox-grist-editor-partition-keys.js';
22
22
  // import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'
23
23
  import { OxGristEditorValueMap } from '../src/ox-grist-editor-value-map.js';
24
+ import { OxGristRendererDuration } from '../src/ox-grist-renderer-duration.js';
24
25
  // import { OxGristEditorJson } from './ox-grist-editor-json.js'
25
26
  // import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'
26
27
  OxPropertyEditor.register({
@@ -48,6 +49,7 @@ registerEditor('duration', OxGristEditorDuration);
48
49
  registerRenderer('parameters', OxGristRendererJson5);
49
50
  registerRenderer('value-map', OxGristRendererJson5);
50
51
  registerRenderer('partition-keys', OxGristRendererJson5);
52
+ registerRenderer('duration', OxGristRendererDuration);
51
53
  // registerRenderer('crontab', OxGristRendererCrontab)
52
54
  const fetchHandler = async ({ page = 1, limit = 100, sortings = [], filters = [] }) => {
53
55
  var total = 10;
@@ -90,6 +92,7 @@ const fetchHandler = async ({ page = 1, limit = 100, sortings = [], filters = []
90
92
  }
91
93
  : undefined,
92
94
  schedule: '* * * * * *',
95
+ duration: -3600,
93
96
  keyvalue: {},
94
97
  createdAt: Date.now(),
95
98
  updatedAt: Date.now()
@@ -197,6 +200,15 @@ class GristDemo extends LitElement {
197
200
  },
198
201
  width: 120
199
202
  },
203
+ {
204
+ type: 'duration',
205
+ name: 'duration',
206
+ header: i18next.t('field.duration'),
207
+ record: {
208
+ editable: true
209
+ },
210
+ width: 120
211
+ },
200
212
  {
201
213
  type: 'partition-keys',
202
214
  name: 'keyvalue',
@@ -1 +1 @@
1
- {"version":3,"file":"ox-grist-editor-crontab.stories.js","sourceRoot":"","sources":["../../stories/ox-grist-editor-crontab.stories.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/property-editor/ox-property-editor-checkbox.js'\nimport '@operato/property-editor/ox-property-editor-number.js'\nimport '@operato/property-editor/ox-property-editor-string.js'\nimport '@operato/property-editor/ox-property-editor-options.js'\nimport '@operato/property-editor/ox-properties-dynamic-view.js'\nimport '@operato/data-grist'\nimport '@operato/data-grist/ox-filters-form.js'\nimport '@operato/data-grist/ox-sorters-control.js'\nimport '@material/mwc-icon'\n\n/* set grist-editors */\nimport { css, html, LitElement, TemplateResult } from 'lit'\nimport { state } from 'lit/decorators.js'\n\nimport { FetchOption, GristRecord, OxGristRendererJson5, registerEditor, registerRenderer } from '@operato/data-grist'\nimport { i18next } from '@operato/i18n'\nimport { OxPropertyEditor } from '@operato/property-editor'\nimport { CommonGristStyles } from '@operato/styles'\n\nimport { OxGristEditorCrontab } from '../src/ox-grist-editor-crontab.js'\nimport { OxGristEditorDuration } from '../src/ox-grist-editor-duration.js'\nimport { OxGristEditorParameters } from '../src/ox-grist-editor-parameters.js'\nimport { OxGristEditorPartitionKeys } from '../src/ox-grist-editor-partition-keys.js'\n// import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'\nimport { OxGristEditorValueMap } from '../src/ox-grist-editor-value-map.js'\n\n// import { OxGristEditorJson } from './ox-grist-editor-json.js'\n// import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'\n\nOxPropertyEditor.register({\n number: 'ox-property-editor-number',\n string: 'ox-property-editor-string',\n boolean: 'ox-property-editor-checkbox',\n options: 'ox-property-editor-options'\n})\n\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\n\n/* register grist renderer/editor for id */\n// registerEditor('resource-id', OxGristEditorResourceId)\n// registerEditor('resource-object', OxGristEditorResourceObject)\n// registerEditor('resource-code', OxGristEditorResourceCode)\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('duration', OxGristEditorDuration)\n// registerEditor('json', OxGristEditorJson)\n\n// registerRenderer('resource-id', OxGristRendererResourceId)\n// registerRenderer('resource-object', OxGristRendererResourceObject)\nregisterRenderer('parameters', OxGristRendererJson5)\nregisterRenderer('value-map', OxGristRendererJson5)\nregisterRenderer('partition-keys', OxGristRendererJson5)\n// registerRenderer('crontab', OxGristRendererCrontab)\n\nconst fetchHandler = async ({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) => {\n var total = 10\n var start = (page - 1) * limit\n\n return {\n total,\n records: Array(limit * page > total ? total % limit : limit)\n .fill('')\n .map((item, idx) => {\n return {\n id: idx,\n name: `name-${start + idx + 1}`,\n description: `description-${start + idx + 1}`,\n sequence: idx + 1,\n active: true,\n tag: `tag-${idx + 1}`,\n type: idx % 3 === 0 ? 'select' : idx % 3 === 1 ? 'number' : 'string',\n spec: {\n ccp: {\n criticalLimits: 100,\n targetLimits: 200\n },\n qc: {\n criticalLimits: 300,\n targetLimits: true\n }\n },\n options:\n idx % 2 === 0\n ? {\n options: [\n {\n text: 'A',\n value: 'a'\n },\n {\n text: 'B',\n value: 'b'\n }\n ]\n }\n : undefined,\n schedule: '* * * * * *',\n keyvalue: {},\n createdAt: Date.now(),\n updatedAt: Date.now()\n }\n })\n }\n}\n\nclass GristDemo extends LitElement {\n static styles = [\n CommonGristStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n }\n\n #tailer {\n display: flex;\n flex-direction: row;\n margin: 0 var(--margin-default);\n }\n\n #tailer a {\n padding: 0 var(--padding-default) 0 var(--padding-default);\n margin: 0 var(--margin-narrow);\n border-right: 1px solid rgba(0, 0, 0, 0.1);\n font-size: var(--fontsize-default);\n color: var(--primary-color);\n }\n `\n ]\n\n @state() mode: String = 'CARD'\n\n get grist() {\n return this.renderRoot.querySelector('ox-grist')\n }\n\n config: any = {\n list: { fields: ['name', 'description', 'active'] },\n columns: [\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'gutter',\n gutterName: 'button',\n icon: 'add',\n handlers: {\n click: 'record-copy'\n }\n },\n { type: 'gutter', gutterName: 'sequence' },\n {\n type: 'gutter',\n gutterName: 'button',\n icon: 'arrow_upward',\n handlers: {\n click: 'move-up'\n }\n },\n {\n type: 'gutter',\n gutterName: 'button',\n icon: 'arrow_downward',\n handlers: {\n click: 'move-down'\n }\n },\n {\n type: 'number',\n name: 'sequence',\n hidden: true\n },\n {\n type: 'string',\n name: 'id',\n hidden: true\n },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n width: 140\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n width: 180\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n sortable: true,\n width: 60\n },\n {\n type: 'string',\n name: 'tag',\n header: i18next.t('field.tag'),\n record: {\n editable: true\n },\n width: 180\n },\n {\n type: 'select',\n name: 'type',\n header: i18next.t('field.type'),\n record: {\n options: ['', 'number', 'text', 'select', 'boolean', 'file'],\n editable: true\n },\n width: 120\n },\n {\n type: 'crontab',\n name: 'schedule',\n header: i18next.t('field.schedule'),\n record: {\n editable: true\n },\n width: 120\n },\n {\n type: 'partition-keys',\n name: 'keyvalue',\n header: i18next.t('field.keyvalue'),\n record: {\n editable: true,\n options: {\n objectified: true,\n valuetype: 'string'\n }\n },\n width: 120\n },\n {\n type: 'parameters',\n name: 'options',\n header: i18next.t('field.options'),\n record: {\n editable: true,\n renderer: (value: any) => {\n return typeof value === 'string' ? value : typeof value === 'object' ? JSON.stringify(value) : ''\n },\n options: async (value: any, column: any, record: GristRecord, row: GristRecord, field: any) => {\n return {\n name: record.type,\n help: '',\n spec:\n record.type === 'select'\n ? [\n {\n type: 'options',\n name: 'options',\n label: 'options'\n }\n ]\n : [],\n context: this.grist,\n objectified: true /* tell parameters editor not to need to parse */\n }\n }\n },\n width: 120\n },\n {\n type: 'string',\n name: 'unit',\n header: i18next.t('field.unit'),\n record: {\n editable: true\n },\n width: 120\n },\n {\n type: 'number',\n name: 'quota',\n header: i18next.t('field.quota'),\n record: {\n editable: true\n },\n width: 60\n },\n {\n type: 'crontab',\n name: 'spec',\n header: i18next.t('field.spec'),\n record: {\n editable: true,\n options: {\n name,\n objectified: true\n }\n },\n width: 200\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n pagination: {\n infinite: true\n },\n sorters: [\n {\n name: 'sequence'\n }\n ]\n }\n\n render() {\n const mode = this.mode || 'CARD'\n\n return html`\n <ox-grist .config=${this.config} .mode=${mode} auto-fetch .fetchHandler=${fetchHandler}>\n <div id=\"filters\" slot=\"headroom\">\n <ox-filters-form @filters-change=${(e: CustomEvent) => console.log('changed', e.detail)}></ox-filters-form>\n </div>\n\n <div slot=\"headroom\" id=\"headroom\">\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>view_list</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>menu</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n}\n\ncustomElements.define('ox-grist-demo', GristDemo)\n\nexport default {\n title: 'ox-grist-editor-crontab',\n component: 'ox-grist-editor-crontab',\n argTypes: {}\n}\n\ninterface Story<T> {\n (args: T): TemplateResult\n args?: Partial<T>\n argTypes?: Record<string, unknown>\n}\n\ninterface ArgTypes {}\n\nconst Template: Story<ArgTypes> = ({}: ArgTypes) =>\n html`\n <link href=\"https://fonts.googleapis.com/css?family=Material+Icons&display=block\" rel=\"stylesheet\" />\n <link href=\"/themes/app-theme.css\" rel=\"stylesheet\" />\n <link href=\"/themes/oops-theme.css\" rel=\"stylesheet\" />\n <link href=\"/themes/grist-theme.css\" rel=\"stylesheet\" />\n\n <style>\n [slot='headroom'] {\n display: flex;\n flex-direction: row;\n align-items: center;\n padding: var(--padding-default) var(--padding-wide);\n border-top: 2px solid rgba(0, 0, 0, 0.2);\n background-color: var(--theme-white-color);\n box-shadow: var(--box-shadow);\n\n --mdc-icon-size: 24px;\n }\n #sorters mwc-icon,\n #modes mwc-icon {\n --mdc-icon-size: 18px;\n }\n #sorters {\n margin-left: auto;\n margin-right: var(--margin-default);\n padding-left: var(--padding-narrow);\n border-bottom: var(--border-dark-color);\n position: relative;\n color: var(--secondary-color);\n font-size: var(--fontsize-default);\n user-select: none;\n }\n\n #sorters > * {\n padding: var(--padding-narrow);\n vertical-align: middle;\n }\n\n #filters {\n display: flex;\n justify-content: center;\n align-items: center;\n }\n\n #filters * {\n margin-right: var(--margin-default);\n }\n\n @media only screen and (max-width: 460px) {\n #filters {\n flex-direction: column;\n }\n\n #modes {\n display: none;\n }\n }\n </style>\n\n <ox-grist-demo mode=\"LIST\"></ox-grist-demo>\n `\n\nexport const Regular = Template.bind({})\nRegular.args = {}\n"]}
1
+ {"version":3,"file":"ox-grist-editor-crontab.stories.js","sourceRoot":"","sources":["../../stories/ox-grist-editor-crontab.stories.ts"],"names":[],"mappings":"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","sourcesContent":["import '@operato/property-editor/ox-property-editor-checkbox.js'\nimport '@operato/property-editor/ox-property-editor-number.js'\nimport '@operato/property-editor/ox-property-editor-string.js'\nimport '@operato/property-editor/ox-property-editor-options.js'\nimport '@operato/property-editor/ox-properties-dynamic-view.js'\nimport '@operato/data-grist'\nimport '@operato/data-grist/ox-filters-form.js'\nimport '@operato/data-grist/ox-sorters-control.js'\nimport '@material/mwc-icon'\n\n/* set grist-editors */\nimport { css, html, LitElement, TemplateResult } from 'lit'\nimport { state } from 'lit/decorators.js'\n\nimport { FetchOption, GristRecord, OxGristRendererJson5, registerEditor, registerRenderer } from '@operato/data-grist'\nimport { i18next } from '@operato/i18n'\nimport { OxPropertyEditor } from '@operato/property-editor'\nimport { CommonGristStyles } from '@operato/styles'\n\nimport { OxGristEditorCrontab } from '../src/ox-grist-editor-crontab.js'\nimport { OxGristEditorDuration } from '../src/ox-grist-editor-duration.js'\nimport { OxGristEditorParameters } from '../src/ox-grist-editor-parameters.js'\nimport { OxGristEditorPartitionKeys } from '../src/ox-grist-editor-partition-keys.js'\n// import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'\nimport { OxGristEditorValueMap } from '../src/ox-grist-editor-value-map.js'\nimport { OxGristRendererDuration } from '../src/ox-grist-renderer-duration.js'\n\n// import { OxGristEditorJson } from './ox-grist-editor-json.js'\n// import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'\n\nOxPropertyEditor.register({\n number: 'ox-property-editor-number',\n string: 'ox-property-editor-string',\n boolean: 'ox-property-editor-checkbox',\n options: 'ox-property-editor-options'\n})\n\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\n\n/* register grist renderer/editor for id */\n// registerEditor('resource-id', OxGristEditorResourceId)\n// registerEditor('resource-object', OxGristEditorResourceObject)\n// registerEditor('resource-code', OxGristEditorResourceCode)\nregisterEditor('parameters', OxGristEditorParameters)\nregisterEditor('value-map', OxGristEditorValueMap)\nregisterEditor('partition-keys', OxGristEditorPartitionKeys)\nregisterEditor('crontab', OxGristEditorCrontab)\nregisterEditor('duration', OxGristEditorDuration)\n// registerEditor('json', OxGristEditorJson)\n\n// registerRenderer('resource-id', OxGristRendererResourceId)\n// registerRenderer('resource-object', OxGristRendererResourceObject)\nregisterRenderer('parameters', OxGristRendererJson5)\nregisterRenderer('value-map', OxGristRendererJson5)\nregisterRenderer('partition-keys', OxGristRendererJson5)\nregisterRenderer('duration', OxGristRendererDuration)\n// registerRenderer('crontab', OxGristRendererCrontab)\n\nconst fetchHandler = async ({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) => {\n var total = 10\n var start = (page - 1) * limit\n\n return {\n total,\n records: Array(limit * page > total ? total % limit : limit)\n .fill('')\n .map((item, idx) => {\n return {\n id: idx,\n name: `name-${start + idx + 1}`,\n description: `description-${start + idx + 1}`,\n sequence: idx + 1,\n active: true,\n tag: `tag-${idx + 1}`,\n type: idx % 3 === 0 ? 'select' : idx % 3 === 1 ? 'number' : 'string',\n spec: {\n ccp: {\n criticalLimits: 100,\n targetLimits: 200\n },\n qc: {\n criticalLimits: 300,\n targetLimits: true\n }\n },\n options:\n idx % 2 === 0\n ? {\n options: [\n {\n text: 'A',\n value: 'a'\n },\n {\n text: 'B',\n value: 'b'\n }\n ]\n }\n : undefined,\n schedule: '* * * * * *',\n duration: -3600,\n keyvalue: {},\n createdAt: Date.now(),\n updatedAt: Date.now()\n }\n })\n }\n}\n\nclass GristDemo extends LitElement {\n static styles = [\n CommonGristStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n }\n\n #tailer {\n display: flex;\n flex-direction: row;\n margin: 0 var(--margin-default);\n }\n\n #tailer a {\n padding: 0 var(--padding-default) 0 var(--padding-default);\n margin: 0 var(--margin-narrow);\n border-right: 1px solid rgba(0, 0, 0, 0.1);\n font-size: var(--fontsize-default);\n color: var(--primary-color);\n }\n `\n ]\n\n @state() mode: String = 'CARD'\n\n get grist() {\n return this.renderRoot.querySelector('ox-grist')\n }\n\n config: any = {\n list: { fields: ['name', 'description', 'active'] },\n columns: [\n { type: 'gutter', gutterName: 'row-selector', multiple: true },\n {\n type: 'gutter',\n gutterName: 'button',\n icon: 'add',\n handlers: {\n click: 'record-copy'\n }\n },\n { type: 'gutter', gutterName: 'sequence' },\n {\n type: 'gutter',\n gutterName: 'button',\n icon: 'arrow_upward',\n handlers: {\n click: 'move-up'\n }\n },\n {\n type: 'gutter',\n gutterName: 'button',\n icon: 'arrow_downward',\n handlers: {\n click: 'move-down'\n }\n },\n {\n type: 'number',\n name: 'sequence',\n hidden: true\n },\n {\n type: 'string',\n name: 'id',\n hidden: true\n },\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n record: {\n editable: true\n },\n width: 140\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n record: {\n editable: true\n },\n width: 180\n },\n {\n type: 'checkbox',\n name: 'active',\n label: true,\n header: i18next.t('field.active'),\n record: {\n editable: true\n },\n sortable: true,\n width: 60\n },\n {\n type: 'string',\n name: 'tag',\n header: i18next.t('field.tag'),\n record: {\n editable: true\n },\n width: 180\n },\n {\n type: 'select',\n name: 'type',\n header: i18next.t('field.type'),\n record: {\n options: ['', 'number', 'text', 'select', 'boolean', 'file'],\n editable: true\n },\n width: 120\n },\n {\n type: 'crontab',\n name: 'schedule',\n header: i18next.t('field.schedule'),\n record: {\n editable: true\n },\n width: 120\n },\n {\n type: 'duration',\n name: 'duration',\n header: i18next.t('field.duration'),\n record: {\n editable: true\n },\n width: 120\n },\n {\n type: 'partition-keys',\n name: 'keyvalue',\n header: i18next.t('field.keyvalue'),\n record: {\n editable: true,\n options: {\n objectified: true,\n valuetype: 'string'\n }\n },\n width: 120\n },\n {\n type: 'parameters',\n name: 'options',\n header: i18next.t('field.options'),\n record: {\n editable: true,\n renderer: (value: any) => {\n return typeof value === 'string' ? value : typeof value === 'object' ? JSON.stringify(value) : ''\n },\n options: async (value: any, column: any, record: GristRecord, row: GristRecord, field: any) => {\n return {\n name: record.type,\n help: '',\n spec:\n record.type === 'select'\n ? [\n {\n type: 'options',\n name: 'options',\n label: 'options'\n }\n ]\n : [],\n context: this.grist,\n objectified: true /* tell parameters editor not to need to parse */\n }\n }\n },\n width: 120\n },\n {\n type: 'string',\n name: 'unit',\n header: i18next.t('field.unit'),\n record: {\n editable: true\n },\n width: 120\n },\n {\n type: 'number',\n name: 'quota',\n header: i18next.t('field.quota'),\n record: {\n editable: true\n },\n width: 60\n },\n {\n type: 'crontab',\n name: 'spec',\n header: i18next.t('field.spec'),\n record: {\n editable: true,\n options: {\n name,\n objectified: true\n }\n },\n width: 200\n }\n ],\n rows: {\n selectable: {\n multiple: true\n }\n },\n pagination: {\n infinite: true\n },\n sorters: [\n {\n name: 'sequence'\n }\n ]\n }\n\n render() {\n const mode = this.mode || 'CARD'\n\n return html`\n <ox-grist .config=${this.config} .mode=${mode} auto-fetch .fetchHandler=${fetchHandler}>\n <div id=\"filters\" slot=\"headroom\">\n <ox-filters-form @filters-change=${(e: CustomEvent) => console.log('changed', e.detail)}></ox-filters-form>\n </div>\n\n <div slot=\"headroom\" id=\"headroom\">\n <div id=\"modes\">\n <mwc-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>view_list</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>menu</mwc-icon>\n <mwc-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</mwc-icon>\n </div>\n </div>\n </ox-grist>\n `\n }\n}\n\ncustomElements.define('ox-grist-demo', GristDemo)\n\nexport default {\n title: 'ox-grist-editor-crontab',\n component: 'ox-grist-editor-crontab',\n argTypes: {}\n}\n\ninterface Story<T> {\n (args: T): TemplateResult\n args?: Partial<T>\n argTypes?: Record<string, unknown>\n}\n\ninterface ArgTypes {}\n\nconst Template: Story<ArgTypes> = ({}: ArgTypes) =>\n html`\n <link href=\"https://fonts.googleapis.com/css?family=Material+Icons&display=block\" rel=\"stylesheet\" />\n <link href=\"/themes/app-theme.css\" rel=\"stylesheet\" />\n <link href=\"/themes/oops-theme.css\" rel=\"stylesheet\" />\n <link href=\"/themes/grist-theme.css\" rel=\"stylesheet\" />\n\n <style>\n [slot='headroom'] {\n display: flex;\n flex-direction: row;\n align-items: center;\n padding: var(--padding-default) var(--padding-wide);\n border-top: 2px solid rgba(0, 0, 0, 0.2);\n background-color: var(--theme-white-color);\n box-shadow: var(--box-shadow);\n\n --mdc-icon-size: 24px;\n }\n #sorters mwc-icon,\n #modes mwc-icon {\n --mdc-icon-size: 18px;\n }\n #sorters {\n margin-left: auto;\n margin-right: var(--margin-default);\n padding-left: var(--padding-narrow);\n border-bottom: var(--border-dark-color);\n position: relative;\n color: var(--secondary-color);\n font-size: var(--fontsize-default);\n user-select: none;\n }\n\n #sorters > * {\n padding: var(--padding-narrow);\n vertical-align: middle;\n }\n\n #filters {\n display: flex;\n justify-content: center;\n align-items: center;\n }\n\n #filters * {\n margin-right: var(--margin-default);\n }\n\n @media only screen and (max-width: 460px) {\n #filters {\n flex-direction: column;\n }\n\n #modes {\n display: none;\n }\n }\n </style>\n\n <ox-grist-demo mode=\"LIST\"></ox-grist-demo>\n `\n\nexport const Regular = Template.bind({})\nRegular.args = {}\n"]}
@@ -1 +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.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.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/tslib/tslib.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/index.d.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.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","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/record-view/record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/index.d.ts","../../data-grist/dist/index.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/index.d.ts","../src/ox-popup-crontab-input.ts","../src/ox-grist-editor-crontab.ts","../src/ox-popup-duration-input.ts","../src/ox-grist-editor-duration.ts","../../property-editor/dist/src/types.d.ts","../../property-editor/dist/src/ox-property-editor.d.ts","../../property-editor/dist/src/index.d.ts","../src/ox-parameters-builder.ts","../src/ox-popup-parameters-builder.ts","../../../node_modules/@types/lodash-es/add.d.ts","../../../node_modules/@types/lodash-es/after.d.ts","../../../node_modules/@types/lodash-es/ary.d.ts","../../../node_modules/@types/lodash-es/assign.d.ts","../../../node_modules/@types/lodash-es/assignin.d.ts","../../../node_modules/@types/lodash-es/assigninwith.d.ts","../../../node_modules/@types/lodash-es/assignwith.d.ts","../../../node_modules/@types/lodash-es/at.d.ts","../../../node_modules/@types/lodash-es/attempt.d.ts","../../../node_modules/@types/lodash-es/before.d.ts","../../../node_modules/@types/lodash-es/bind.d.ts","../../../node_modules/@types/lodash-es/bindall.d.ts","../../../node_modules/@types/lodash-es/bindkey.d.ts","../../../node_modules/@types/lodash-es/camelcase.d.ts","../../../node_modules/@types/lodash-es/capitalize.d.ts","../../../node_modules/@types/lodash-es/castarray.d.ts","../../../node_modules/@types/lodash-es/ceil.d.ts","../../../node_modules/@types/lodash-es/chain.d.ts","../../../node_modules/@types/lodash-es/chunk.d.ts","../../../node_modules/@types/lodash-es/clamp.d.ts","../../../node_modules/@types/lodash-es/clone.d.ts","../../../node_modules/@types/lodash-es/clonedeep.d.ts","../../../node_modules/@types/lodash-es/clonedeepwith.d.ts","../../../node_modules/@types/lodash-es/clonewith.d.ts","../../../node_modules/@types/lodash-es/compact.d.ts","../../../node_modules/@types/lodash-es/concat.d.ts","../../../node_modules/@types/lodash-es/cond.d.ts","../../../node_modules/@types/lodash-es/conforms.d.ts","../../../node_modules/@types/lodash-es/conformsto.d.ts","../../../node_modules/@types/lodash-es/constant.d.ts","../../../node_modules/@types/lodash-es/countby.d.ts","../../../node_modules/@types/lodash-es/create.d.ts","../../../node_modules/@types/lodash-es/curry.d.ts","../../../node_modules/@types/lodash-es/curryright.d.ts","../../../node_modules/@types/lodash-es/debounce.d.ts","../../../node_modules/@types/lodash-es/deburr.d.ts","../../../node_modules/@types/lodash-es/defaultto.d.ts","../../../node_modules/@types/lodash-es/defaults.d.ts","../../../node_modules/@types/lodash-es/defaultsdeep.d.ts","../../../node_modules/@types/lodash-es/defer.d.ts","../../../node_modules/@types/lodash-es/delay.d.ts","../../../node_modules/@types/lodash-es/difference.d.ts","../../../node_modules/@types/lodash-es/differenceby.d.ts","../../../node_modules/@types/lodash-es/differencewith.d.ts","../../../node_modules/@types/lodash-es/divide.d.ts","../../../node_modules/@types/lodash-es/drop.d.ts","../../../node_modules/@types/lodash-es/dropright.d.ts","../../../node_modules/@types/lodash-es/droprightwhile.d.ts","../../../node_modules/@types/lodash-es/dropwhile.d.ts","../../../node_modules/@types/lodash-es/each.d.ts","../../../node_modules/@types/lodash-es/eachright.d.ts","../../../node_modules/@types/lodash-es/endswith.d.ts","../../../node_modules/@types/lodash-es/entries.d.ts","../../../node_modules/@types/lodash-es/entriesin.d.ts","../../../node_modules/@types/lodash-es/eq.d.ts","../../../node_modules/@types/lodash-es/escape.d.ts","../../../node_modules/@types/lodash-es/escaperegexp.d.ts","../../../node_modules/@types/lodash-es/every.d.ts","../../../node_modules/@types/lodash-es/extend.d.ts","../../../node_modules/@types/lodash-es/extendwith.d.ts","../../../node_modules/@types/lodash-es/fill.d.ts","../../../node_modules/@types/lodash-es/filter.d.ts","../../../node_modules/@types/lodash-es/find.d.ts","../../../node_modules/@types/lodash-es/findindex.d.ts","../../../node_modules/@types/lodash-es/findkey.d.ts","../../../node_modules/@types/lodash-es/findlast.d.ts","../../../node_modules/@types/lodash-es/findlastindex.d.ts","../../../node_modules/@types/lodash-es/findlastkey.d.ts","../../../node_modules/@types/lodash-es/first.d.ts","../../../node_modules/@types/lodash-es/flatmap.d.ts","../../../node_modules/@types/lodash-es/flatmapdeep.d.ts","../../../node_modules/@types/lodash-es/flatmapdepth.d.ts","../../../node_modules/@types/lodash-es/flatten.d.ts","../../../node_modules/@types/lodash-es/flattendeep.d.ts","../../../node_modules/@types/lodash-es/flattendepth.d.ts","../../../node_modules/@types/lodash-es/flip.d.ts","../../../node_modules/@types/lodash-es/floor.d.ts","../../../node_modules/@types/lodash-es/flow.d.ts","../../../node_modules/@types/lodash-es/flowright.d.ts","../../../node_modules/@types/lodash-es/foreach.d.ts","../../../node_modules/@types/lodash-es/foreachright.d.ts","../../../node_modules/@types/lodash-es/forin.d.ts","../../../node_modules/@types/lodash-es/forinright.d.ts","../../../node_modules/@types/lodash-es/forown.d.ts","../../../node_modules/@types/lodash-es/forownright.d.ts","../../../node_modules/@types/lodash-es/frompairs.d.ts","../../../node_modules/@types/lodash-es/functions.d.ts","../../../node_modules/@types/lodash-es/functionsin.d.ts","../../../node_modules/@types/lodash-es/get.d.ts","../../../node_modules/@types/lodash-es/groupby.d.ts","../../../node_modules/@types/lodash-es/gt.d.ts","../../../node_modules/@types/lodash-es/gte.d.ts","../../../node_modules/@types/lodash-es/has.d.ts","../../../node_modules/@types/lodash-es/hasin.d.ts","../../../node_modules/@types/lodash-es/head.d.ts","../../../node_modules/@types/lodash-es/identity.d.ts","../../../node_modules/@types/lodash-es/inrange.d.ts","../../../node_modules/@types/lodash-es/includes.d.ts","../../../node_modules/@types/lodash-es/indexof.d.ts","../../../node_modules/@types/lodash-es/initial.d.ts","../../../node_modules/@types/lodash-es/intersection.d.ts","../../../node_modules/@types/lodash-es/intersectionby.d.ts","../../../node_modules/@types/lodash-es/intersectionwith.d.ts","../../../node_modules/@types/lodash-es/invert.d.ts","../../../node_modules/@types/lodash-es/invertby.d.ts","../../../node_modules/@types/lodash-es/invoke.d.ts","../../../node_modules/@types/lodash-es/invokemap.d.ts","../../../node_modules/@types/lodash-es/isarguments.d.ts","../../../node_modules/@types/lodash-es/isarray.d.ts","../../../node_modules/@types/lodash-es/isarraybuffer.d.ts","../../../node_modules/@types/lodash-es/isarraylike.d.ts","../../../node_modules/@types/lodash-es/isarraylikeobject.d.ts","../../../node_modules/@types/lodash-es/isboolean.d.ts","../../../node_modules/@types/lodash-es/isbuffer.d.ts","../../../node_modules/@types/lodash-es/isdate.d.ts","../../../node_modules/@types/lodash-es/iselement.d.ts","../../../node_modules/@types/lodash-es/isempty.d.ts","../../../node_modules/@types/lodash-es/isequal.d.ts","../../../node_modules/@types/lodash-es/isequalwith.d.ts","../../../node_modules/@types/lodash-es/iserror.d.ts","../../../node_modules/@types/lodash-es/isfinite.d.ts","../../../node_modules/@types/lodash-es/isfunction.d.ts","../../../node_modules/@types/lodash-es/isinteger.d.ts","../../../node_modules/@types/lodash-es/islength.d.ts","../../../node_modules/@types/lodash-es/ismap.d.ts","../../../node_modules/@types/lodash-es/ismatch.d.ts","../../../node_modules/@types/lodash-es/ismatchwith.d.ts","../../../node_modules/@types/lodash-es/isnan.d.ts","../../../node_modules/@types/lodash-es/isnative.d.ts","../../../node_modules/@types/lodash-es/isnil.d.ts","../../../node_modules/@types/lodash-es/isnull.d.ts","../../../node_modules/@types/lodash-es/isnumber.d.ts","../../../node_modules/@types/lodash-es/isobject.d.ts","../../../node_modules/@types/lodash-es/isobjectlike.d.ts","../../../node_modules/@types/lodash-es/isplainobject.d.ts","../../../node_modules/@types/lodash-es/isregexp.d.ts","../../../node_modules/@types/lodash-es/issafeinteger.d.ts","../../../node_modules/@types/lodash-es/isset.d.ts","../../../node_modules/@types/lodash-es/isstring.d.ts","../../../node_modules/@types/lodash-es/issymbol.d.ts","../../../node_modules/@types/lodash-es/istypedarray.d.ts","../../../node_modules/@types/lodash-es/isundefined.d.ts","../../../node_modules/@types/lodash-es/isweakmap.d.ts","../../../node_modules/@types/lodash-es/isweakset.d.ts","../../../node_modules/@types/lodash-es/iteratee.d.ts","../../../node_modules/@types/lodash-es/join.d.ts","../../../node_modules/@types/lodash-es/kebabcase.d.ts","../../../node_modules/@types/lodash-es/keyby.d.ts","../../../node_modules/@types/lodash-es/keys.d.ts","../../../node_modules/@types/lodash-es/keysin.d.ts","../../../node_modules/@types/lodash-es/last.d.ts","../../../node_modules/@types/lodash-es/lastindexof.d.ts","../../../node_modules/@types/lodash-es/lowercase.d.ts","../../../node_modules/@types/lodash-es/lowerfirst.d.ts","../../../node_modules/@types/lodash-es/lt.d.ts","../../../node_modules/@types/lodash-es/lte.d.ts","../../../node_modules/@types/lodash-es/map.d.ts","../../../node_modules/@types/lodash-es/mapkeys.d.ts","../../../node_modules/@types/lodash-es/mapvalues.d.ts","../../../node_modules/@types/lodash-es/matches.d.ts","../../../node_modules/@types/lodash-es/matchesproperty.d.ts","../../../node_modules/@types/lodash-es/max.d.ts","../../../node_modules/@types/lodash-es/maxby.d.ts","../../../node_modules/@types/lodash-es/mean.d.ts","../../../node_modules/@types/lodash-es/meanby.d.ts","../../../node_modules/@types/lodash-es/memoize.d.ts","../../../node_modules/@types/lodash-es/merge.d.ts","../../../node_modules/@types/lodash-es/mergewith.d.ts","../../../node_modules/@types/lodash-es/method.d.ts","../../../node_modules/@types/lodash-es/methodof.d.ts","../../../node_modules/@types/lodash-es/min.d.ts","../../../node_modules/@types/lodash-es/minby.d.ts","../../../node_modules/@types/lodash-es/mixin.d.ts","../../../node_modules/@types/lodash-es/multiply.d.ts","../../../node_modules/@types/lodash-es/negate.d.ts","../../../node_modules/@types/lodash-es/noop.d.ts","../../../node_modules/@types/lodash-es/now.d.ts","../../../node_modules/@types/lodash-es/nth.d.ts","../../../node_modules/@types/lodash-es/ntharg.d.ts","../../../node_modules/@types/lodash-es/omit.d.ts","../../../node_modules/@types/lodash-es/omitby.d.ts","../../../node_modules/@types/lodash-es/once.d.ts","../../../node_modules/@types/lodash-es/orderby.d.ts","../../../node_modules/@types/lodash-es/over.d.ts","../../../node_modules/@types/lodash-es/overargs.d.ts","../../../node_modules/@types/lodash-es/overevery.d.ts","../../../node_modules/@types/lodash-es/oversome.d.ts","../../../node_modules/@types/lodash-es/pad.d.ts","../../../node_modules/@types/lodash-es/padend.d.ts","../../../node_modules/@types/lodash-es/padstart.d.ts","../../../node_modules/@types/lodash-es/parseint.d.ts","../../../node_modules/@types/lodash-es/partial.d.ts","../../../node_modules/@types/lodash-es/partialright.d.ts","../../../node_modules/@types/lodash-es/partition.d.ts","../../../node_modules/@types/lodash-es/pick.d.ts","../../../node_modules/@types/lodash-es/pickby.d.ts","../../../node_modules/@types/lodash-es/property.d.ts","../../../node_modules/@types/lodash-es/propertyof.d.ts","../../../node_modules/@types/lodash-es/pull.d.ts","../../../node_modules/@types/lodash-es/pullall.d.ts","../../../node_modules/@types/lodash-es/pullallby.d.ts","../../../node_modules/@types/lodash-es/pullallwith.d.ts","../../../node_modules/@types/lodash-es/pullat.d.ts","../../../node_modules/@types/lodash-es/random.d.ts","../../../node_modules/@types/lodash-es/range.d.ts","../../../node_modules/@types/lodash-es/rangeright.d.ts","../../../node_modules/@types/lodash-es/rearg.d.ts","../../../node_modules/@types/lodash-es/reduce.d.ts","../../../node_modules/@types/lodash-es/reduceright.d.ts","../../../node_modules/@types/lodash-es/reject.d.ts","../../../node_modules/@types/lodash-es/remove.d.ts","../../../node_modules/@types/lodash-es/repeat.d.ts","../../../node_modules/@types/lodash-es/replace.d.ts","../../../node_modules/@types/lodash-es/rest.d.ts","../../../node_modules/@types/lodash-es/result.d.ts","../../../node_modules/@types/lodash-es/reverse.d.ts","../../../node_modules/@types/lodash-es/round.d.ts","../../../node_modules/@types/lodash-es/sample.d.ts","../../../node_modules/@types/lodash-es/samplesize.d.ts","../../../node_modules/@types/lodash-es/set.d.ts","../../../node_modules/@types/lodash-es/setwith.d.ts","../../../node_modules/@types/lodash-es/shuffle.d.ts","../../../node_modules/@types/lodash-es/size.d.ts","../../../node_modules/@types/lodash-es/slice.d.ts","../../../node_modules/@types/lodash-es/snakecase.d.ts","../../../node_modules/@types/lodash-es/some.d.ts","../../../node_modules/@types/lodash-es/sortby.d.ts","../../../node_modules/@types/lodash-es/sortedindex.d.ts","../../../node_modules/@types/lodash-es/sortedindexby.d.ts","../../../node_modules/@types/lodash-es/sortedindexof.d.ts","../../../node_modules/@types/lodash-es/sortedlastindex.d.ts","../../../node_modules/@types/lodash-es/sortedlastindexby.d.ts","../../../node_modules/@types/lodash-es/sortedlastindexof.d.ts","../../../node_modules/@types/lodash-es/sorteduniq.d.ts","../../../node_modules/@types/lodash-es/sorteduniqby.d.ts","../../../node_modules/@types/lodash-es/split.d.ts","../../../node_modules/@types/lodash-es/spread.d.ts","../../../node_modules/@types/lodash-es/startcase.d.ts","../../../node_modules/@types/lodash-es/startswith.d.ts","../../../node_modules/@types/lodash-es/stubarray.d.ts","../../../node_modules/@types/lodash-es/stubfalse.d.ts","../../../node_modules/@types/lodash-es/stubobject.d.ts","../../../node_modules/@types/lodash-es/stubstring.d.ts","../../../node_modules/@types/lodash-es/stubtrue.d.ts","../../../node_modules/@types/lodash-es/subtract.d.ts","../../../node_modules/@types/lodash-es/sum.d.ts","../../../node_modules/@types/lodash-es/sumby.d.ts","../../../node_modules/@types/lodash-es/tail.d.ts","../../../node_modules/@types/lodash-es/take.d.ts","../../../node_modules/@types/lodash-es/takeright.d.ts","../../../node_modules/@types/lodash-es/takerightwhile.d.ts","../../../node_modules/@types/lodash-es/takewhile.d.ts","../../../node_modules/@types/lodash-es/tap.d.ts","../../../node_modules/@types/lodash-es/template.d.ts","../../../node_modules/@types/lodash-es/templatesettings.d.ts","../../../node_modules/@types/lodash-es/throttle.d.ts","../../../node_modules/@types/lodash-es/times.d.ts","../../../node_modules/@types/lodash-es/toarray.d.ts","../../../node_modules/@types/lodash-es/tofinite.d.ts","../../../node_modules/@types/lodash-es/tointeger.d.ts","../../../node_modules/@types/lodash-es/tolength.d.ts","../../../node_modules/@types/lodash-es/tolower.d.ts","../../../node_modules/@types/lodash-es/tonumber.d.ts","../../../node_modules/@types/lodash-es/topairs.d.ts","../../../node_modules/@types/lodash-es/topairsin.d.ts","../../../node_modules/@types/lodash-es/topath.d.ts","../../../node_modules/@types/lodash-es/toplainobject.d.ts","../../../node_modules/@types/lodash-es/tosafeinteger.d.ts","../../../node_modules/@types/lodash-es/tostring.d.ts","../../../node_modules/@types/lodash-es/toupper.d.ts","../../../node_modules/@types/lodash-es/transform.d.ts","../../../node_modules/@types/lodash-es/trim.d.ts","../../../node_modules/@types/lodash-es/trimend.d.ts","../../../node_modules/@types/lodash-es/trimstart.d.ts","../../../node_modules/@types/lodash-es/truncate.d.ts","../../../node_modules/@types/lodash-es/unary.d.ts","../../../node_modules/@types/lodash-es/unescape.d.ts","../../../node_modules/@types/lodash-es/union.d.ts","../../../node_modules/@types/lodash-es/unionby.d.ts","../../../node_modules/@types/lodash-es/unionwith.d.ts","../../../node_modules/@types/lodash-es/uniq.d.ts","../../../node_modules/@types/lodash-es/uniqby.d.ts","../../../node_modules/@types/lodash-es/uniqwith.d.ts","../../../node_modules/@types/lodash-es/uniqueid.d.ts","../../../node_modules/@types/lodash-es/unset.d.ts","../../../node_modules/@types/lodash-es/unzip.d.ts","../../../node_modules/@types/lodash-es/unzipwith.d.ts","../../../node_modules/@types/lodash-es/update.d.ts","../../../node_modules/@types/lodash-es/updatewith.d.ts","../../../node_modules/@types/lodash-es/uppercase.d.ts","../../../node_modules/@types/lodash-es/upperfirst.d.ts","../../../node_modules/@types/lodash-es/values.d.ts","../../../node_modules/@types/lodash-es/valuesin.d.ts","../../../node_modules/@types/lodash-es/without.d.ts","../../../node_modules/@types/lodash-es/words.d.ts","../../../node_modules/@types/lodash-es/wrap.d.ts","../../../node_modules/@types/lodash-es/xor.d.ts","../../../node_modules/@types/lodash-es/xorby.d.ts","../../../node_modules/@types/lodash-es/xorwith.d.ts","../../../node_modules/@types/lodash-es/zip.d.ts","../../../node_modules/@types/lodash-es/zipobject.d.ts","../../../node_modules/@types/lodash-es/zipobjectdeep.d.ts","../../../node_modules/@types/lodash-es/zipwith.d.ts","../../../node_modules/@types/lodash-es/index.d.ts","../src/ox-grist-editor-parameters.ts","../src/ox-popup-partition-keys-input.ts","../src/ox-grist-editor-partition-keys.ts","../src/ox-popup-value-map-input.ts","../src/ox-grist-editor-value-map.ts","../src/index.ts","../../../node_modules/cronstrue/dist/options.d.ts","../../../node_modules/cronstrue/dist/i18n/locale.d.ts","../../../node_modules/cronstrue/dist/i18n/localeloader.d.ts","../../../node_modules/cronstrue/dist/expressiondescriptor.d.ts","../../../node_modules/cronstrue/dist/cronstrue-i18n.d.ts","../../../node_modules/cronstrue/i18n.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/index.d.ts","../src/ox-grist-renderer-crontab.ts","../stories/ox-grist-editor-crontab.stories.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/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/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/mocha/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","8be48c7828a22d50f128f317cdd8ac25ef0ee54c877b8b5c464887234f619783","6e2c5a9358c2be6791713f778c3af2d3357b8665d881e22f50b3aa861a2a9717","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","1e2ae614a94edfcf851891f18ab17099709fe0214b5a97f1bfa63d1c7730b345",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"380fd4339f2f5ae2c6505a477da678b9006258d757d69ad7971b011ef0ba0b73","328771615e1dd9055b6f487f90d1e99b958bbaf303c2b3b35ca6ad2beebf57f4","fc32e1e56aead89cf0ff04e9346f63ad36e7fa8f390127435eac59ec4c6406b9","e1f4e845333b46bd06238275b874a28c8f7d3be476d07aa452b3fb26e71ded41","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"18f635c293620d1388c3ef3302850537bdad678dd03efb85c8b0d251c37c79df","f9b56f9d07cb05a23ad19b491d9d0d6950a1e8b2e9ef3d827ea6c2e1b64cbb59","555663519c551cda16bd59d2340c972858b2d87711bd8109c2ddeb4662267a05","e8234beadb18b72754bd1d444239b1985f95da0311054c82329f82a5a6657a73","cc79b6086a08f5fe3e84b96a294fa1484a1aee36ec3faa6f4ac289ccc08bfc38","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","e0a32d1c7b757d25b3b1619accddc87a957a100ed065d187f00aa0c0897d9459","88a89ced0185f3e6e7b417a14b930ed2237783a9b402b3301fbb61adabce7891","5dd8516bdca5e56a20779b84758f4f20640e423ff55acf64bfbada36bf54bbba","fe0e774326bff14b64b8208e648b6f374db8e09e39879dd6a09441ef6bea9c74","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","529eea4533eeddb752c74f8a4d7722e6465f47c97d2642ad3781b9a896d856cf","a5352463052128493313d93f3648c837f1365e24a0ec5fd640e0a6468e47654b","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","70594838909a394e4017449b7eb8d414d90f4fab1b1dd493588f6a22f2b575cf","87708ffc11fa926c5f972309ef9f9bd07f2d70dfce4ca2924c276a1961269450","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","924137c8cf52d66a980113d2b9d746908e96f38b65416cf51ec2a00d7132be63","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","55a9ab4848634630b92925ae2a47113b2f29a666edf8095da1f34468246341db","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","55fcf176734c8832af1f653472980628cc9da7f74e2015c953bd67f2636ce7cb","27fba3a14f54b67440df535f6f96b7068ad409544e422c6bb79ec320bce6462a","19f4c3da100f6ae2baeb548f5334cd238ea8da4a62812afe579f9ecc4fd6b35a","d6252ea56085336dbcac32177faf1c2ff2e2cd4bc976bcbe67621e6f3e6d01d3","0f85a0bab1ed365725136ede09c0c4c2af9555e1f9e4ff70482734128696ac1d","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","2bf79e557cf026e2a99571e429f9a384e0c71c6d766a7a5fcea8fd63f505d860","709f62b8c98e1db14602e873218cc5d22f81d64cd88f25adb5b4d2705a7e5d5c","284bf56773e6da050a953484eaca4beaceedce83b49be512a527ce88111a9a1a","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","2f3641dc015c1f0d5a0c6d3425c05cccb6b4a58960014138e988d7ac7e89e95b","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","f75a21fbd14501571d91fc23ca9186bebab93f71c8d70968546238ed5874c749","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","99289d0b04da7b244c71e2d857ffb0ac780a46f800a495e9fc017dd05b662bb4","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","1da789e534bc558808021dd64abf33a91a68e422bbf28aeec236bd74df640401","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","fbfa634e3741c9b9db36bf081b78365170b31650c7d2f8b9e8d631c7b9bb5bd8","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6","b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","415ae3a9be423d2db81b7e16a6c053c83d3f83b1af03a2827aea3de084b70742","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","4d50db18bdcae4a401e888ac0f6b456d44405a860d38b90773158e2f11b1aa24","2fa8eeba1b6d29551683794e35cc3ea7bf2351f425f5023f0c1db691f551010c","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372",{"version":"bd5bcbf7819f68e1d6e1c782077cdabff35bcdbd4f169e77ed5eabe4d46eec92","signature":"53a52369c20283d4b281d9648279583947f2702343ac7f0231d3e51665178219"},{"version":"a3557debb12d120a896f9a1d9c0b0d7305787db8732335de3bc92486d5cfc7a5","signature":"f85950046883a79e75a76bf0d1c135870192f20f05c225d743b41ead8dd7f0a9"},{"version":"46228a06f3592214040845fb656e7593414d05fd3964bc5cb449468017d36995","signature":"daf7193a2b009c11b28305245e5e4e3eb0e4e76dec9cfeebf26818ab8cce624c"},{"version":"874a1c27e26c4c119d8cfc025e9634f8e302a973c31c43f88fb17b4e2813d20e","signature":"5b42a83e2fffe52df8c45af29910df6a1de6b118fdc9eea8576b23b42065f122"},"89ec2f58a1b63a71b5129f7a827a5b2b744404959eb4ab3ad72b85a3387acd06","661d3a80e2683e213ccc991ed2912648342b0fb1bc6b71e4e6957c403a4a26dd","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"ac8faa0f4ee5079670d67e0e94bda99086fb56317b12781dd2a1b7fa09db433d","signature":"0b98ae9c19957b68eb6c1ddada4c52b03b74c4729b51c6dc1e3300869fe66d2a"},{"version":"a8c9f15dba3130fd9c407e3013c917e0494ac76cfbf3058ab837650a9a3e7a88","signature":"2b977d9c3b014be1fc140f696847e4e67362bef8d27ba4d17785f3c9b47be1f5"},"cf93e7b09b66e142429611c27ba2cbf330826057e3c793e1e2861e976fae3940","90e727d145feb03695693fdc9f165a4dc10684713ee5f6aa81e97a6086faa0f8","ee2c6ec73c636c9da5ab4ce9227e5197f55a57241d66ea5828f94b69a4a09a2d","afaf64477630c7297e3733765046c95640ab1c63f0dfb3c624691c8445bc3b08","5aa03223a53ad03171988820b81a6cae9647eabcebcb987d1284799de978d8e3","7f50c8914983009c2b940923d891e621db624ba32968a51db46e0bf480e4e1cb","90fc18234b7d2e19d18ac026361aaf2f49d27c98dc30d9f01e033a9c2b01c765","a980e4d46239f344eb4d5442b69dcf1d46bd2acac8d908574b5a507181f7e2a1","bbbfa4c51cdaa6e2ef7f7be3ae199b319de6b31e3b5afa7e5a2229c14bb2568a","bc7bfe8f48fa3067deb3b37d4b511588b01831ba123a785ea81320fe74dd9540","fd60c0aaf7c52115f0e7f367d794657ac18dbb257255777406829ab65ca85746","15c17866d58a19f4a01a125f3f511567bd1c22235b4fd77bf90c793bf28388c3","51301a76264b1e1b4046f803bda44307fba403183bc274fe9e7227252d7315cb","ddef23e8ace6c2b2ddf8d8092d30b1dd313743f7ff47b2cbb43f36c395896008","9e42df47111429042b5e22561849a512ad5871668097664b8fb06a11640140ac","391fcc749c6f94c6c4b7f017c6a6f63296c1c9ae03fa639f99337dddb9cc33fe","ac4706eb1fb167b19f336a93989763ab175cd7cc6227b0dcbfa6a7824c6ba59a","633220dc1e1a5d0ccf11d3c3e8cadc9124daf80fef468f2ff8186a2775229de3","6de22ad73e332e513454f0292275155d6cb77f2f695b73f0744928c4ebb3a128","ebe0e3c77f5114b656d857213698fade968cff1b3a681d1868f3cfdd09d63b75","22c27a87488a0625657b52b9750122814c2f5582cac971484cda0dcd7a46dc3b","7e7a817c8ec57035b2b74df8d5dbcc376a4a60ad870b27ec35463536158e1156","0e2061f86ca739f34feae42fd7cce27cc171788d251a587215b33eaec456e786","91659b2b090cadffdb593736210910508fc5b77046d4ce180b52580b14b075ec","d0f6c657c45faaf576ca1a1dc64484534a8dc74ada36fd57008edc1aab65a02b","ce0c52b1ebc023b71d3c1fe974804a2422cf1d85d4af74bb1bced36ff3bff8b5","9c6acb4a388887f9a5552eda68987ee5d607152163d72f123193a984c48157c9","90d0a9968cbb7048015736299f96a0cceb01cf583fd2e9a9edbc632ac4c81b01","49abec0571c941ab6f095885a76828d50498511c03bb326eec62a852e58000c5","8eeb4a4ff94460051173d561749539bca870422a6400108903af2fb7a1ffe3d7","49e39b284b87452fed1e27ac0748ba698f5a27debe05084bc5066b3ecf4ed762","59dcf835762f8df90fba5a3f8ba87941467604041cf127fb456543c793b71456","33e0c4c683dcaeb66bedf5bb6cc35798d00ac58d7f3bc82aadb50fa475781d60","605839abb6d150b0d83ed3712e1b3ffbeb309e382770e7754085d36bc2d84a4c","30905c89260ca8da4e72345c72f8e80beb9cc39ee2ee48261e63f76ea1874d1e","0f0a16a0e8037c17e28f537028215e87db047eba52281bd33484d5395402f3c1","530192961885d3ddad87bf9c4390e12689fa29ff515df57f17a57c9125fc77c3","cf533aed4c455b526ddccbb10dae7cc77e9269c3d7862f9e5cedbd4f5c92e05e","f8a60ca31702a0209ef217f8f3b4b32f498813927df2304787ac968c78d8560d","165ba9e775dd769749e2177c383d24578e3b212e4774b0a72ad0f6faee103b68","61448f238fdfa94e5ccce1f43a7cced5e548b1ea2d957bec5259a6e719378381","69fa523e48131ced0a52ab1af36c3a922c5fd7a25e474d82117329fe051f5b85","fa10b79cd06f5dd03435e184fb05cc5f0d02713bfb4ee9d343db527501be334c","c6fb591e363ee4dea2b102bb721c0921485459df23a2d2171af8354cacef4bce","ea7e1f1097c2e61ed6e56fa04a9d7beae9d276d87ac6edb0cd39a3ee649cddfe","e8cf2659d87462aae9c7647e2a256ac7dcaf2a565a9681bfb49328a8a52861e8","7e374cb98b705d35369b3c15444ef2ff5ff983bd2fbb77a287f7e3240abf208c","ca75ba1519f9a426b8c512046ebbad58231d8627678d054008c93c51bc0f3fa5","ff63760147d7a60dcfc4ac16e40aa2696d016b9ffe27e296b43655dfa869d66b","4d434123b16f46b290982907a4d24675442eb651ca95a5e98e4c274be16f1220","57263d6ba38046e85f499f3c0ab518cfaf0a5f5d4f53bdae896d045209ab4aff","d3a535f2cd5d17f12b1abf0b19a64e816b90c8c10a030b58f308c0f7f2acfe2c","be26d49bb713c13bd737d00ae8a61aa394f0b76bc2d5a1c93c74f59402eb8db3","c7012003ac0c9e6c9d3a6418128ddebf6219d904095180d4502b19c42f46a186","d58c55750756bcf73f474344e6b4a9376e5381e4ba7d834dc352264b491423b6","01e2aabfabe22b4bf6d715fc54d72d32fa860a3bd1faa8974e0d672c4b565dfe","ba2c489bb2566c16d28f0500b3d98013917e471c40a4417c03991460cb248e88","39f94b619f0844c454a6f912e5d6868d0beb32752587b134c3c858b10ecd7056","0d2d8b0477b1cf16b34088e786e9745c3e8145bc8eea5919b700ad054e70a095","2a5e963b2b8f33a50bb516215ba54a20801cb379a8e9b1ae0b311e900dc7254c","d8307f62b55feeb5858529314761089746dce957d2b8fd919673a4985fa4342a","bf449ec80fc692b2703ad03e64ae007b3513ecd507dc2ab77f39be6f578e6f5c","f780213dd78998daf2511385dd51abf72905f709c839a9457b6ba2a55df57be7","2b7843e8a9a50bdf511de24350b6d429a3ee28430f5e8af7d3599b1e9aa7057f","05d95be6e25b4118c2eb28667e784f0b25882f6a8486147788df675c85391ab7","62d2721e9f2c9197c3e2e5cffeb2f76c6412121ae155153179049890011eb785","ff5668fb7594c02aca5e7ba7be6c238676226e450681ca96b457f4a84898b2d9","59fd37ea08657fef36c55ddea879eae550ffe21d7e3a1f8699314a85a30d8ae9","84e23663776e080e18b25052eb3459b1a0486b5b19f674d59b96347c0cb7312a","43e5934c7355731eec20c5a2aa7a859086f19f60a4e5fcd80e6684228f6fb767","a49c210c136c518a7c08325f6058fc648f59f911c41c93de2026db692bba0e47","1a92f93597ebc451e9ef4b158653c8d31902de5e6c8a574470ecb6da64932df4","256513ad066ac9898a70ca01e6fbdb3898a4e0fe408fbf70608fdc28ac1af224","d9835850b6cc05c21e8d85692a8071ebcf167a4382e5e39bf700c4a1e816437e","e5ab7190f818442e958d0322191c24c2447ddceae393c4e811e79cda6bd49836","91b4b77ef81466ce894f1aade7d35d3589ddd5c9981109d1dea11f55a4b807a0","03abb209bed94c8c893d9872639e3789f0282061c7aa6917888965e4047a8b5f","e97a07901de562219f5cba545b0945a1540d9663bd9abce66495721af3903eec","bf39ed1fdf29bc8178055ec4ff32be6725c1de9f29c252e31bdc71baf5c227e6","985eabf06dac7288fc355435b18641282f86107e48334a83605739a1fe82ac15","6112d33bcf51e3e6f6a81e419f29580e2f8e773529d53958c7c1c99728d4fb2e","89e9f7e87a573504acc2e7e5ad727a110b960330657d1b9a6d3526e77c83d8be","44bbb88abe9958c7c417e8687abf65820385191685009cc4b739c2d270cb02e9","ab4b506b53d2c4aec4cc00452740c540a0e6abe7778063e95c81a5cd557c19eb","858757bde6d615d0d1ee474c972131c6d79c37b0b61897da7fbd7110beb8af12","60b9dea33807b086a1b4b4b89f72d5da27ad0dd36d6436a6e306600c47438ac4","409c963b1166d0c1d49fdad1dfeb4de27fd2d6662d699009857de9baf43ca7c3","b7674ecfeb5753e965404f7b3d31eec8450857d1a23770cb867c82f264f546ab","c9800b9a9ad7fcdf74ed8972a5928b66f0e4ff674d55fd038a3b1c076911dcbe","99864433e35b24c61f8790d2224428e3b920624c01a6d26ea8b27ee1f62836bb","c391317b9ff8f87d28c6bfe4e50ed92e8f8bfab1bb8a03cd1fe104ff13186f83","42bdc3c98446fdd528e2591213f71ce6f7008fb9bb12413bd57df60d892a3fb5","542d2d689b58c25d39a76312ccaea2fcd10a45fb27b890e18015399c8032e2d9","97d1656f0a563dbb361d22b3d7c2487427b0998f347123abd1c69a4991326c96","d4f53ed7960c9fba8378af3fa28e3cc483d6c0b48e4a152a83ff0973d507307d","0665de5280d65ec32776dc55fb37128e259e60f389cde5b9803cf9e81ad23ce0","73b6945448bb3425b764cfe7b1c4b0b56c010cc66e5f438ef320c53e469797eb","b6dc8fd1c6092da86725c338ca6c263d1c6dd3073046d3ec4eb2d68515062da2","d9198a0f01f00870653347560e10494efeca0bfa2de0988bd5d883a9d2c47edb","d4279865b926d7e2cfe8863b2eae270c4c035b6e923af8f9d7e6462d68679e07","cf72fd8ffa5395f4f1a26be60246ec79c5a9ad201579c9ba63fd2607b5daf184","301a458744666096f84580a78cc3f6e8411f8bab92608cdaa33707546ca2906f","711e70c0916ff5f821ea208043ecd3e67ed09434b8a31d5616286802b58ebebe","e1f2fd9f88dd0e40c358fbf8c8f992211ab00a699e7d6823579b615b874a8453","17db3a9dcb2e1689ff7ace9c94fa110c88da64d69f01dc2f3cec698e4fc7e29e","73fb07305106bb18c2230890fcacf910fd1a7a77d93ac12ec40bc04c49ee5b8e","2c5f341625a45530b040d59a4bc2bc83824d258985ede10c67005be72d3e21d0","c4a262730d4277ecaaf6f6553dabecc84dcca8decaebbf2e16f1df8bbd996397","c23c533d85518f3358c55a7f19ab1a05aad290251e8bba0947bd19ea3c259467","5d0322a0b8cdc67b8c71e4ccaa30286b0c8453211d4c955a217ac2d3590e911f","f5e4032b6e4e116e7fec5b2620a2a35d0b6b8b4a1cc9b94a8e5ee76190153110","9ab26cb62a0e86ab7f669c311eb0c4d665457eb70a103508aa39da6ccee663da","5f64d1a11d8d4ce2c7ee3b72471df76b82d178a48964a14cdfdc7c5ef7276d70","24e2fbc48f65814e691d9377399807b9ec22cd54b51d631ba9e48ee18c5939dd","bfa2648b2ee90268c6b6f19e84da3176b4d46329c9ec0555d470e647d0568dfb","75ef3cb4e7b3583ba268a094c1bd16ce31023f2c3d1ac36e75ca65aca9721534","3be6b3304a81d0301838860fd3b4536c2b93390e785808a1f1a30e4135501514","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9","3ada1b216e45bb9e32e30d8179a0a95870576fe949c33d9767823ccf4f4f4c97","1ace2885dffab849f7c98bffe3d1233260fbf07ee62cb58130167fd67a376a65","2126e5989c0ca5194d883cf9e9c10fe3e5224fbd3e4a4a6267677544e8be0aae","41a6738cf3c756af74753c5033e95c5b33dfc1f6e1287fa769a1ac4027335bf5","6e8630be5b0166cbc9f359b9f9e42801626d64ff1702dcb691af811149766154","e36b77c04e00b4a0bb4e1364f2646618a54910c27f6dc3fc558ca2ced8ca5bc5","2c4ea7e9f95a558f46c89726d1fedcb525ef649eb755a3d7d5055e22b80c2904","4875d65190e789fad05e73abd178297b386806b88b624328222d82e455c0f2e7","bf5302ecfaacee37c2316e33703723d62e66590093738c8921773ee30f2ecc38","62684064fe034d54b87f62ad416f41b98a405dee4146d0ec03b198c3634ea93c","be02cbdb1688c8387f8a76a9c6ed9d75d8bb794ec5b9b1d2ba3339a952a00614","cefaff060473a5dbf4939ee1b52eb900f215f8d6249dc7c058d6b869d599983c","b2797235a4c1a7442a6f326f28ffb966226c3419399dbb33634b8159af2c712f","164d633bbd4329794d329219fc173c3de85d5ad866d44e5b5f0fb60c140e98f2","b74300dd0a52eaf564b3757c07d07e1d92def4e3b8708f12eedb40033e4cafe9","a792f80b1e265b06dce1783992dbee2b45815a7bdc030782464b8cf982337cf2","8816b4b3a87d9b77f0355e616b38ed5054f993cc4c141101297f1914976a94b1","0f35e4da974793534c4ca1cdd9491eab6993f8cf47103dadfc048b899ed9b511","0ccdfcaebf297ec7b9dde20bbbc8539d5951a3d8aaa40665ca469da27f5a86e1","7fcb05c8ce81f05499c7b0488ae02a0a1ac6aebc78c01e9f8c42d98f7ba68140","81c376c9e4d227a4629c7fca9dde3bbdfa44bd5bd281aee0ed03801182368dc5","0f2448f95110c3714797e4c043bbc539368e9c4c33586d03ecda166aa9908843","b2f1a443f7f3982d7325775906b51665fe875c82a62be3528a36184852faa0bb","7568ff1f23363d7ee349105eb936e156d61aea8864187a4c5d85c60594b44a25","8c4d1d9a4eba4eac69e6da0f599a424b2689aee55a455f0b5a7f27a807e064db","e1beb9077c100bdd0fc8e727615f5dae2c6e1207de224569421907072f4ec885","3dda13836320ec71b95a68cd3d91a27118b34c05a2bfda3e7e51f1d8ca9b960b","fedc79cb91f2b3a14e832d7a8e3d58eb02b5d5411c843fcbdc79e35041316b36","99f395322ffae908dcdfbaa2624cc7a2a2cb7b0fbf1a1274aca506f7b57ebcb5","5e1f7c43e8d45f2222a5c61cbc88b074f4aaf1ca4b118ac6d6123c858efdcd71","7388273ab71cb8f22b3f25ffd8d44a37d5740077c4d87023da25575204d57872","0a48ceb01a0fdfc506aa20dfd8a3563edbdeaa53a8333ddf261d2ee87669ea7b","3182d06b874f31e8e55f91ea706c85d5f207f16273480f46438781d0bd2a46a1","ccd47cab635e8f71693fa4e2bbb7969f559972dae97bd5dbd1bbfee77a63b410","89770fa14c037f3dc3882e6c56be1c01bb495c81dec96fa29f868185d9555a5d","7048c397f08c54099c52e6b9d90623dc9dc6811ea142f8af3200e40d66a972e1","512120cd6f026ce1d3cf686c6ab5da80caa40ef92aa47466ec60ba61a48b5551","6cd0cb7f999f221e984157a7640e7871960131f6b221d67e4fdc2a53937c6770","f48b84a0884776f1bc5bf0fcf3f69832e97b97dc55d79d7557f344de900d259b","dca490d986411644b0f9edf6ea701016836558e8677c150dca8ad315178ec735","a028a04948cf98c1233166b48887dad324e8fe424a4be368a287c706d9ccd491","3046ed22c701f24272534b293c10cfd17b0f6a89c2ec6014c9a44a90963dfa06","394da10397d272f19a324c95bea7492faadf2263da157831e02ae1107bd410f5","0580595a99248b2d30d03f2307c50f14eb21716a55beb84dd09d240b1b087a42","a7da9510150f36a9bea61513b107b59a423fdff54429ad38547c7475cd390e95","659615f96e64361af7127645bb91f287f7b46c5d03bea7371e6e02099226d818","1f2a42974920476ce46bb666cd9b3c1b82b2072b66ccd0d775aa960532d78176","500b3ae6095cbab92d81de0b40c9129f5524d10ad955643f81fc07d726c5a667","a957ad4bd562be0662fb99599dbcf0e16d1631f857e5e1a83a3f3afb6c226059","e57a4915266a6a751c6c172e8f30f6df44a495608613e1f1c410196207da9641","7a12e57143b7bc5a52a41a8c4e6283a8f8d59a5e302478185fb623a7157fff5e","17b3426162e1d9cb0a843e8d04212aabe461d53548e671236de957ed3ae9471b","f38e86eb00398d63180210c5090ef6ed065004474361146573f98b3c8a96477d","231d9e32382d3971f58325e5a85ba283a2021243651cb650f82f87a1bf62d649","6532e3e87b87c95f0771611afce929b5bad9d2c94855b19b29b3246937c9840b","65704bbb8f0b55c73871335edd3c9cead7c9f0d4b21f64f5d22d0987c45687f0","787232f574af2253ac860f22a445c755d57c73a69a402823ae81ba0dfdd1ce23","5e63903cd5ebce02486b91647d951d61a16ad80d65f9c56581cd624f39a66007","bcc89a120d8f3c02411f4df6b1d989143c01369314e9b0e04794441e6b078d22","d17531ef42b7c76d953f63bd5c5cd927c4723e62a7e0b2badf812d5f35f784eb","6d4ee1a8e3a97168ea4c4cc1c68bb61a3fd77134f15c71bb9f3f63df3d26b54c","1eb04fea6b47b16922ed79625d90431a8b2fc7ba9d5768b255e62df0c96f1e3a","de0c2eece83bd81b8682f4496f558beb728263e17e74cbc4910e5c9ce7bef689","98866542d45306dab48ecc3ddd98ee54fa983353bc3139dfbc619df882f54d90","9e04c7708917af428c165f1e38536ddb2e8ecd576f55ed11a97442dc34b6b010","31fe6f6d02b53c1a7c34b8d8f8c87ee9b6dd4b67f158cbfff3034b4f3f69c409","2e1d853f84188e8e002361f4bfdd892ac31c68acaeac426a63cd4ff7abf150d0","666b5289ec8a01c4cc0977c62e3fd32e89a8e3fd9e97c8d8fd646f632e63c055","a1107bbb2b10982dba1f7958a6a5cf841e1a19d6976d0ecdc4c43269c7b0eaf2","07fa6122f7495331f39167ec9e4ebd990146a20f99c16c17bc0a98aa81f63b27","39c1483481b35c2123eaab5094a8b548a0c3f1e483ab7338102c3291f1ab18bf","b73e6242c13796e7d5fba225bf1c07c8ee66d31b7bb65f45be14226a9ae492d2","f2931608d541145d189390d6cfb74e1b1e88f73c0b9a80c4356a4daa7fa5e005","8684656fe3bf1425a91bd62b8b455a1c7ec18b074fd695793cfae44ae02e381a","ccf0b9057dd65c7fb5e237de34f706966ebc30c6d3669715ed05e76225f54fbd","d930f077da575e8ea761e3d644d4c6279e2d847bae2b3ea893bbd572315acc21","19b0616946cb615abde72c6d69049f136cc4821b784634771c1d73bec8005f73","553312560ad0ef97b344b653931935d6e80840c2de6ab90b8be43cbacf0d04cf","07d4cdb1a845383da7ab950f5855ee441bd8a038c181d57f6b566822db80a972","f7cb9e46bd6ab9d620d68257b525dbbbbc9b0b148adf500b819d756ebc339de0","e46d6c3120aca07ae8ec3189edf518c667d027478810ca67a62431a0fa545434","9d234b7d2f662a135d430d3190fc21074325f296273125244b2bf8328b5839a0","0554ef14d10acea403348c53436b1dd8d61e7c73ef5872e2fe69cc1c433b02f8","2f6ae5538090db60514336bd1441ca208a8fab13108cfa4b311e61eaca5ff716","17bf4ce505a4cff88fb56177a8f7eb48aa55c22ccc4cce3e49cc5c8ddc54b07d","3d735f493d7da48156b79b4d8a406bf2bbf7e3fe379210d8f7c085028143ee40","41de1b3ddd71bd0d9ed7ac217ca1b15b177dd731d5251cde094945c20a715d03","17d9c562a46c6a25bc2f317c9b06dd4e8e0368cbe9bdf89be6117aeafd577b36","ded799031fe18a0bb5e78be38a6ae168458ff41b6c6542392b009d2abe6a6f32","ed48d467a7b25ee1a2769adebc198b647a820e242c96a5f96c1e6c27a40ab131","b914114df05f286897a1ae85d2df39cfd98ed8da68754d73cf830159e85ddd15","73881e647da3c226f21e0b80e216feaf14a5541a861494c744e9fbe1c3b3a6af","d79e1d31b939fa99694f2d6fbdd19870147401dbb3f42214e84c011e7ec359ab","4f71097eae7aa37941bab39beb2e53e624321fd341c12cc1d400eb7a805691ff","58ebb4f21f3a90dda31a01764462aa617849fdb1b592f3a8d875c85019956aff","a8e8d0e6efff70f3c28d3e384f9d64530c7a7596a201e4879a7fd75c7d55cbb5","df5cbb80d8353bf0511a4047cc7b8434b0be12e280b6cf3de919d5a3380912c0","256eb0520e822b56f720962edd7807ed36abdf7ea23bcadf4a25929a3317c8cf","9cf2cbc9ceb5f718c1705f37ce5454f14d3b89f690d9864394963567673c1b5c","07d3dd790cf1e66bb6fc9806d014dd40bb2055f8d6ca3811cf0e12f92ba4cb9a","1f99fd62e9cff9b50c36f368caf3b9fb79fc6f6c75ca5d3c2ec4afaea08d9109","6558faaacba5622ef7f1fdfb843cd967af2c105469b9ff5c18a81ce85178fca7","34e7f17ae9395b0269cd3f2f0af10709e6dc975c5b44a36b6b70442dc5e25a38","a4295111b54f84c02c27e46b0855b02fad3421ae1d2d7e67ecf16cb49538280a","ce9746b2ceae2388b7be9fe1f009dcecbc65f0bdbc16f40c0027fab0fb848c3b","35ce823a59f397f0e85295387778f51467cea137d787df385be57a2099752bfb","2e5acd3ec67bc309e4f679a70c894f809863c33b9572a8da0b78db403edfa106","1872f3fcea0643d5e03b19a19d777704320f857d1be0eb4ee372681357e20c88","9689628941205e40dcbb2706d1833bd00ce7510d333b2ef08be24ecbf3eb1a37","0317a72a0b63094781476cf1d2d27585d00eb2b0ca62b5287124735912f3d048","6ce4c0ab3450a4fff25d60a058a25039cffd03141549589689f5a17055ad0545","9153ec7b0577ae77349d2c5e8c5dd57163f41853b80c4fb5ce342c7a431cbe1e","f490dfa4619e48edd594a36079950c9fca1230efb3a82aaf325047262ba07379","674f00085caff46d2cbc76fc74740fd31f49d53396804558573421e138be0c12","41d029194c4811f09b350a1e858143c191073007a9ee836061090ed0143ad94f","44a6259ffd6febd8510b9a9b13a700e1d022530d8b33663f0735dbb3bee67b3d","6f4322500aff8676d9b8eef7711c7166708d4a0686b792aa4b158e276ed946a7","e829ff9ecffa3510d3a4d2c3e4e9b54d4a4ccfef004bacbb1d6919ce3ccca01f","62e6fec9dbd012460b47af7e727ec4cd34345b6e4311e781f040e6b640d7f93e","4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","f1142cbba31d7f492d2e7c91d82211a8334e6642efe52b71d9a82cb95ba4e8ae","279cac827be5d48c0f69fe319dc38c876fdd076b66995d9779c43558552d8a50","a70ff3c65dc0e7213bfe0d81c072951db9f5b1e640eb66c1eaed0737879c797b","f75d3303c1750f4fdacd23354657eca09aae16122c344e65b8c14c570ff67df5","3ebae6a418229d4b303f8e0fdb14de83f39fba9f57b39d5f213398bca72137c7","21ba07e33265f59d52dece5ac44f933b2b464059514587e64ad5182ddf34a9b0","2d3d96efba00493059c460fd55e6206b0667fc2e73215c4f1a9eb559b550021f","d23d4a57fff5cec5607521ba3b72f372e3d735d0f6b11a4681655b0bdd0505f4","395c1f3da7e9c87097c8095acbb361541480bf5fd7fa92523985019fef7761dd","d61f3d719293c2f92a04ba73d08536940805938ecab89ac35ceabc8a48ccb648","ca693235a1242bcd97254f43a17592aa84af66ccb7497333ccfea54842fde648","cd41cf040b2e368382f2382ec9145824777233730e3965e9a7ba4523a6a4698e","2e7a9dba6512b0310c037a28d27330520904cf5063ca19f034b74ad280dbfe71","9f2a38baf702e6cb98e0392fa39d25a64c41457a827b935b366c5e0980a6a667","c1dc37f0e7252928f73d03b0d6b46feb26dea3d8737a531ca4c0ec4105e33120","25126b80243fb499517e94fc5afe5c9c5df3a0105618e33581fb5b2f2622f342","d332c2ddcb64012290eb14753c1b49fe3eee9ca067204efba1cf31c1ce1ee020","1be8da453470021f6fe936ba19ee0bfebc7cfa2406953fa56e78940467c90769","d0163ab7b0de6e23b8562af8b5b4adea4182884ca7543488f7ac2a3478f3ae6e","05224e15c6e51c4c6cd08c65f0766723f6b39165534b67546076c226661db691","a5f7158823c7700dd9fc1843a94b9edc309180c969fbfa6d591aeb0b33d3b514","7d30937f8cf9bb0d4b2c2a8fb56a415d7ef393f6252b24e4863f3d7b84285724","e04d074584483dc9c59341f9f36c7220f16eed09f7af1fa3ef9c64c26095faec","619697e06cbc2c77edda949a83a62047e777efacde1433e895b904fe4877c650","88d9a8593d2e6aee67f7b15a25bda62652c77be72b79afbee52bea61d5ffb39e","044d7acfc9bd1af21951e32252cf8f3a11c8b35a704169115ddcbde9fd717de2","a4ca8f13a91bd80e6d7a4f013b8a9e156fbf579bbec981fe724dad38719cfe01","5a216426a68418e37e55c7a4366bc50efc99bda9dc361eae94d7e336da96c027","13b65b640306755096d304e76d4a237d21103de88b474634f7ae13a2fac722d5","7478bd43e449d3ce4e94f3ed1105c65007b21f078b3a791ea5d2c47b30ea6962","601d3e8e71b7d6a24fc003aca9989a6c25fa2b3755df196fd0aaee709d190303","168e0850fcc94011e4477e31eca81a8a8a71e1aed66d056b7b50196b877e86c8","37ba82d63f5f8c6b4fc9b756f24902e47f62ea66aae07e89ace445a54190a86e","f5b66b855f0496bc05f1cd9ba51a6a9de3d989b24aa36f6017257f01c8b65a9f","823b16d378e8456fcc5503d6253c8b13659be44435151c6b9f140c4a38ec98c1","b58b254bf1b586222844c04b3cdec396e16c811463bf187615bb0a1584beb100","a367c2ccfb2460e222c5d10d304e980bd172dd668bcc02f6c2ff626e71e90d75","0718623262ac94b016cb0cfd8d54e4d5b7b1d3941c01d85cf95c25ec1ba5ed8d","d4f3c9a0bd129e9c7cbfac02b6647e34718a2b81a414d914e8bd6b76341172e0","824306df6196f1e0222ff775c8023d399091ada2f10f2995ce53f5e3d4aff7a4","84ca07a8d57f1a6ba8c0cf264180d681f7afae995631c6ca9f2b85ec6ee06c0f","35755e61e9f4ec82d059efdbe3d1abcccc97a8a839f1dbf2e73ac1965f266847","64a918a5aa97a37400ec085ffeea12a14211aa799cd34e5dc828beb1806e95bb","0c8f5489ba6af02a4b1d5ba280e7badd58f30dc8eb716113b679e9d7c31185e5","3334c03c15102700973e3e334954ac1dffb7be7704c67cc272822d5895215c93","7b574ca9ae0417203cdfa621ab1585de5b90c4bc6eea77a465b2eb8b92aa5380","aabcb169451df7f78eb43567fab877a74d134a0a6d9850aa58b38321374ab7c0","1b5effdd8b4e8d9897fc34ab4cd708a446bf79db4cb9a3467e4a30d55b502e14","d772776a7aea246fd72c5818de72c3654f556b2cf0d73b90930c9c187cc055fc","dbd4bd62f433f14a419e4c6130075199eb15f2812d2d8e7c9e1f297f4daac788","427df949f5f10c73bcc77b2999893bc66c17579ad073ee5f5270a2b30651c873","c4c1a5565b9b85abfa1d663ca386d959d55361e801e8d49155a14dd6ca41abe1","7a45a45c277686aaff716db75a8157d0458a0d854bacf072c47fee3d499d7a99","57005b72bce2dc26293e8924f9c6be7ee3a2c1b71028a680f329762fa4439354","8f53b1f97c53c3573c16d0225ee3187d22f14f01421e3c6da1a26a1aace32356","810fdc0e554ed7315c723b91f6fa6ef3a6859b943b4cd82879641563b0e6c390","87a36b177b04d23214aa4502a0011cd65079e208cd60654aefc47d0d65da68ea","28a1c17fcbb9e66d7193caca68bbd12115518f186d90fc729a71869f96e2c07b","cc2d2abbb1cc7d6453c6fee760b04a516aa425187d65e296a8aacff66a49598a","d2413645bc4ab9c3f3688c5281232e6538684e84b49a57d8a1a8b2e5cf9f2041","4e6e21a0f9718282d342e66c83b2cd9aa7cd777dfcf2abd93552da694103b3dc","9006cc15c3a35e49508598a51664aa34ae59fc7ab32d6cc6ea2ec68d1c39448e","74467b184eadee6186a17cac579938d62eceb6d89c923ae67d058e2bcded254e","4169b96bb6309a2619f16d17307da341758da2917ff40c615568217b14357f5e","4a94d6146b38050de0830019a1c6a7820c2e2b90eba1a5ee4e4ab3bc30a72036","903e5ecbc1a8932bff30cc8d38addc4a58108688f9c5c107bd030fd8cccedcdc",{"version":"bfd6155c5630eabf4c5e171eb3db570a0be9437617b08f3c3c89eb9d0a21439c","signature":"362011517f4409d6c74122d9bc0b43df729a33214393dc9290e962e63f3c230b"},{"version":"26e4ca4b5544f7204e8b68e226c2ff143dfcd3a0c3d238fe869a0c032def307a","signature":"015316555055805343eb0a3f20cfc8f229f42ec574b0efa3116408a8d0fb6cfe"},{"version":"0bcb0564a7f2858f4706997413b20c56a24a269be5bacf41a900a513d5af331f","signature":"b430d34c7f9f7f19a1fd228a265db35828c76016647616fef31df12fb18b6dad"},{"version":"afb0a8d2124b4e985aa7af5c37611ed700137340b2300ed6d9756fe3ba785648","signature":"7062cf8864d3a49c52a170c8bae6e02ce3bba5d7cd7320532be29ce4011b39db"},{"version":"84645ff5a1e838f1850695088bc24f498d0a9fa368fe0d23737e8583223bbb3d","signature":"4c21e338158d696e6dfaab8b2f8badc7d590294b93187c787b40c6099f0da732"},{"version":"4cce4310dae232e9e05fc3012afb3efd4182c1640f39ebb7dc0988f39212bfa0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b3a112f3605a9f9f2d280f78ebbc32ea24a7ef79f5301be230dffe8f11022392","02e9dbade17e9f72fc5cf40976f1c2e50eccf7aba591a4c2c25d22a0e82f003c","6f9b63ed4638f2c42e73aba308934d9a9abb03ccebb23d6c02285b3a3a9f48c3","a4dd1be3882ccadefa3e20e62d5af092c2bbe2b04cabf7d0d4ff4084900a9d54","51d1ed7b6adb38ffa0ee3710b1b12d297986a7b0d0448118823a8b9be80d738b","7ef9689059f42ecb6e16da542b861fb3d2a1f6fe4c37d418a8cef3f478b1087e","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","6d1f118cfbf15c813f578cf6b87da76d075698bf7db964cb7c3d75f0309652f7","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","a9e5489311de854cb96bfcf5eaf969c9b322c658e3575f30e03180e4d4ca3994","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","7179b6924a816d72bf206803d8cdc27ccc14f02f2d4f4145d5183eb083f5bf17","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","e56a260134af75a771b5e19534d30007034e2757183546193f8b191683c6b2b9","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","46d98d129de9914564a5c8909c9098175c5896919e8e698d206cfffdfa7c3999","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","4d0fbdd66030d1055e9f355a87e230a7ab9f1803589428676fa58ab9cd1d781c","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","171109b02b7c87120b262c5ca0ccb9ecbc88ad92f81eb4e62b7ef6237f0fc9e2",{"version":"88133671c42b9c84360224f894e3f47d22f52e2176dc4f0ac6ca67b913bf376c","signature":"4cb142e3109eedfda69fbf2479cb400e123b6430033c2602f25d86d5e2a4f7d3"},{"version":"b9e60177370b2c6e5436154d75095e6ab316690e781c62e82c15cf37e04de981","signature":"bb364cce1c0dfc056edf2b5b1b93661f2641ee7ff7f60c89f3244a499f92c1ef"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","025fc13211ed47d2798269017af3ec869122a050d5431a6ad3c1997900e65c58","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"40b991dc3365179e1365643589e168d7ea0588b4dd5bbb3a974ffefa7cb05e7f","bf057bb805c5e1c0e795ac7c759d40ebbe0e9894df9be3413bbdd8d1a2fc229e","74f2bb83d1ccf390f48681be57a30c09e85b4c7a801267746e382b2386fc667e","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","5d357e7965026197a3152fa4e990fa7a4cbaf1578a17dff920ff1a71a325e198","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","70caef0271088abc5f5ae7ff6d84421d35bb192b690fbaa1b2ecf2b0ef01deb6",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[550],[49,550],[130,550],[49,130,550],[49,130,138,550],[47,48,550],[51,550],[71,550],[170,171,172,173,174,175,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,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,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,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,550],[59,61,62,63,64,65,66,67,68,69,70,71,550],[59,60,62,63,64,65,66,67,68,69,70,71,550],[60,61,62,63,64,65,66,67,68,69,70,71,550],[59,60,61,63,64,65,66,67,68,69,70,71,550],[59,60,61,62,64,65,66,67,68,69,70,71,550],[59,60,61,62,63,65,66,67,68,69,70,71,550],[59,60,61,62,63,64,66,67,68,69,70,71,550],[59,60,61,62,63,64,65,67,68,69,70,71,550],[59,60,61,62,63,64,65,66,68,69,70,71,550],[59,60,61,62,63,64,65,66,67,69,70,71,550],[59,60,61,62,63,64,65,66,67,68,70,71,550],[59,60,61,62,63,64,65,66,67,68,69,71,550],[59,60,61,62,63,64,65,66,67,68,69,70,550],[506,550],[509,550],[510,515,550],[511,521,522,529,538,549,550],[511,512,521,529,550],[513,550],[514,515,522,530,550],[515,538,546,550],[516,518,521,529,550],[517,550],[518,519,550],[520,521,550],[521,550],[521,522,523,538,549,550],[521,522,523,538,541,550],[550,554],[524,529,538,549,550],[521,522,524,525,529,538,546,549,550],[524,526,538,546,549,550],[506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556],[521,527,550],[528,549,550],[518,521,529,538,550],[530,550],[531,550],[509,532,550],[533,548,550,554],[534,550],[535,550],[521,536,550],[536,537,550,552],[521,538,539,540,541,550],[538,540,550],[538,539,550],[541,550],[542,550],[521,544,545,550],[544,545,550],[515,529,538,546,550],[547,550],[529,548,550],[510,524,535,549,550],[515,550],[538,550,551],[550,552],[550,553],[510,515,521,523,532,538,549,550,552,554],[538,550,555],[43,550],[483,550],[480,481,482,550],[481,550],[484,550],[46,49,550],[46,550],[44,45,550],[131,132,133,134,135,136,137,138,139,550],[46,49,50,550],[128,550],[102,550],[51,102,550],[53,54,550],[46,51,54,74,87,550],[46,51,52,53,54,85,86,102,550],[46,51,55,71,102,550],[46,51,54,102,550],[46,51,58,72,73,74,102,550],[46,51,75,79,80,81,82,102,550],[46,51,54,74,78,550],[46,51,54,76,77,85,102,550],[46,51,82,102,106,550],[46,51,88,102,550],[46,51,102,104,105,550],[89,90,91,550],[46,89,550],[46,51,55,102,550],[89,102,550],[46,51,54,550],[93,94,95,96,97,98,99,550],[123,550],[125,550],[121,550],[83,85,92,100,102,103,107,120,122,124,126,127,550],[57,84,550],[46,51,54,57,83,550],[46,51,54,55,102,550],[46,51,54,55,56,102,550],[108,109,110,111,112,113,114,115,116,117,118,119,550],[46,51,101,550],[101,102,550],[46,52,53,55,76,77,78,87,88,92,100,101,550],[42,129,162,164,474,476,478,550],[42,51,129,140,146,153,161,550],[42,51,129,140,146,153,163,550],[42,51,129,140,146,153,168,169,473,550],[42,51,129,140,146,153,473,475,550],[42,51,129,140,146,153,473,477,550],[42,51,129,141,485,503,550],[42,51,140,167,550],[42,51,140,146,153,160,550],[42,51,54,129,140,146,160,162,164,167,474,476,478,550],[141,550],[142,143,144,145,550],[51,141,550],[46,51,550],[147,148,149,150,152,550],[51,151,550],[46,51,54,147,550],[46,51,147,550],[46,51,149,550],[165,166,550],[154,155,156,157,158,159,550],[486,487,488,489,490,491,492,493,494,495,498,499,500,501,502,550],[496,497,550],[497,550],[496,550],[46,129,161],[46,129,163],[46,129,168,169],[46,129,475],[46,129,477],[129],[46,51],[51,54,129]],"referencedMap":[[47,1],[130,2],[131,3],[134,4],[132,4],[136,4],[139,5],[138,1],[137,4],[135,4],[133,3],[48,1],[49,6],[54,7],[170,8],[171,8],[172,8],[173,8],[174,8],[175,8],[176,8],[177,8],[178,8],[179,8],[180,8],[181,8],[182,8],[183,8],[184,8],[185,8],[186,8],[187,8],[188,8],[189,8],[190,8],[191,8],[192,8],[193,8],[194,8],[195,8],[196,8],[197,8],[198,8],[199,8],[200,8],[201,8],[202,8],[203,8],[204,8],[205,8],[207,8],[208,8],[206,8],[209,8],[210,8],[211,8],[212,8],[213,8],[214,8],[215,8],[216,8],[217,8],[218,8],[219,8],[220,8],[221,8],[222,8],[223,8],[224,8],[225,8],[226,8],[227,8],[228,8],[229,8],[230,8],[231,8],[232,8],[233,8],[234,8],[235,8],[236,8],[237,8],[238,8],[239,8],[240,8],[241,8],[242,8],[243,8],[244,8],[245,8],[246,8],[247,8],[248,8],[249,8],[250,8],[251,8],[252,8],[253,8],[254,8],[255,8],[256,8],[257,8],[258,8],[259,8],[260,8],[261,8],[262,8],[263,8],[264,8],[265,8],[267,8],[473,9],[268,8],[269,8],[266,8],[270,8],[271,8],[272,8],[273,8],[274,8],[275,8],[276,8],[277,8],[278,8],[279,8],[280,8],[281,8],[282,8],[283,8],[284,8],[285,8],[286,8],[287,8],[288,8],[289,8],[290,8],[291,8],[292,8],[293,8],[294,8],[295,8],[296,8],[297,8],[298,8],[299,8],[300,8],[301,8],[302,8],[303,8],[304,8],[305,8],[306,8],[307,8],[308,8],[309,8],[310,8],[311,8],[312,8],[313,8],[314,8],[315,8],[316,8],[317,8],[318,8],[319,8],[320,8],[321,8],[322,8],[323,8],[324,8],[325,8],[326,8],[327,8],[328,8],[329,8],[330,8],[331,8],[332,8],[333,8],[334,8],[335,8],[336,8],[337,8],[338,8],[339,8],[340,8],[341,8],[342,8],[343,8],[344,8],[345,8],[346,8],[347,8],[348,8],[349,8],[350,8],[351,8],[352,8],[353,8],[354,8],[355,8],[356,8],[357,8],[358,8],[359,8],[360,8],[361,8],[362,8],[363,8],[364,8],[365,8],[366,8],[367,8],[368,8],[369,8],[370,8],[371,8],[372,8],[373,8],[374,8],[375,8],[376,8],[377,8],[378,8],[379,8],[380,8],[381,8],[382,8],[383,8],[384,8],[385,8],[386,8],[387,8],[388,8],[389,8],[390,8],[391,8],[392,8],[393,8],[394,8],[395,8],[396,8],[397,8],[398,8],[399,8],[400,8],[401,8],[402,8],[403,8],[404,8],[405,8],[406,8],[407,8],[408,8],[409,8],[410,8],[411,8],[412,8],[413,8],[414,8],[415,8],[416,8],[417,8],[418,8],[419,8],[420,8],[421,8],[422,8],[423,8],[424,8],[425,8],[426,8],[427,8],[428,8],[429,8],[430,8],[431,8],[432,8],[433,8],[434,8],[435,8],[436,8],[437,8],[438,8],[439,8],[440,8],[441,8],[442,8],[443,8],[444,8],[445,8],[446,8],[447,8],[448,8],[449,8],[450,8],[451,8],[453,8],[452,8],[454,8],[455,8],[456,8],[457,8],[458,8],[459,8],[460,8],[461,8],[462,8],[463,8],[464,8],[465,8],[466,8],[467,8],[468,8],[469,8],[470,8],[471,8],[472,8],[60,10],[61,11],[59,12],[62,13],[63,14],[64,15],[65,16],[66,17],[67,18],[68,19],[69,20],[70,21],[71,22],[558,1],[506,23],[507,23],[509,24],[510,25],[511,26],[512,27],[513,28],[514,29],[515,30],[516,31],[517,32],[518,33],[519,33],[520,34],[521,35],[522,36],[523,37],[508,38],[556,1],[524,39],[525,40],[526,41],[557,42],[527,43],[528,44],[529,45],[530,46],[531,47],[532,48],[533,49],[534,50],[535,51],[536,52],[537,53],[538,54],[540,55],[539,56],[541,57],[542,58],[543,1],[544,59],[545,60],[546,61],[547,62],[548,63],[549,64],[550,65],[551,66],[552,67],[553,68],[554,69],[555,70],[44,71],[43,1],[484,72],[483,73],[481,1],[482,74],[480,1],[485,75],[141,1],[50,76],[45,77],[46,78],[140,79],[51,80],[42,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[129,81],[103,82],[52,83],[86,84],[53,83],[80,85],[87,86],[82,82],[72,87],[55,83],[73,88],[58,88],[75,89],[83,90],[77,83],[76,83],[79,91],[78,92],[74,83],[107,93],[105,94],[106,95],[88,83],[104,1],[92,96],[91,97],[89,98],[90,99],[81,100],[96,82],[95,82],[97,82],[98,82],[94,82],[99,83],[100,101],[93,82],[124,102],[123,1],[126,103],[125,82],[122,104],[121,82],[128,105],[85,106],[84,107],[56,108],[57,109],[120,110],[109,82],[110,82],[111,82],[118,82],[117,82],[119,82],[112,82],[113,82],[114,111],[116,82],[115,82],[101,98],[108,112],[127,83],[102,113],[479,114],[162,115],[164,116],[474,117],[476,118],[478,119],[504,120],[168,121],[161,122],[163,122],[169,122],[475,122],[477,122],[505,123],[142,124],[146,125],[143,126],[145,127],[144,127],[153,128],[152,129],[151,100],[148,130],[149,131],[150,132],[147,127],[167,133],[166,127],[165,1],[158,1],[159,7],[154,7],[160,134],[155,7],[156,7],[157,7],[501,1],[499,1],[494,1],[488,1],[495,1],[487,1],[500,1],[491,1],[503,135],[502,1],[489,1],[492,1],[493,1],[486,1],[490,1],[498,136],[496,137],[497,138]],"exportedModulesMap":[[47,1],[130,2],[131,3],[134,4],[132,4],[136,4],[139,5],[138,1],[137,4],[135,4],[133,3],[48,1],[49,6],[54,7],[170,8],[171,8],[172,8],[173,8],[174,8],[175,8],[176,8],[177,8],[178,8],[179,8],[180,8],[181,8],[182,8],[183,8],[184,8],[185,8],[186,8],[187,8],[188,8],[189,8],[190,8],[191,8],[192,8],[193,8],[194,8],[195,8],[196,8],[197,8],[198,8],[199,8],[200,8],[201,8],[202,8],[203,8],[204,8],[205,8],[207,8],[208,8],[206,8],[209,8],[210,8],[211,8],[212,8],[213,8],[214,8],[215,8],[216,8],[217,8],[218,8],[219,8],[220,8],[221,8],[222,8],[223,8],[224,8],[225,8],[226,8],[227,8],[228,8],[229,8],[230,8],[231,8],[232,8],[233,8],[234,8],[235,8],[236,8],[237,8],[238,8],[239,8],[240,8],[241,8],[242,8],[243,8],[244,8],[245,8],[246,8],[247,8],[248,8],[249,8],[250,8],[251,8],[252,8],[253,8],[254,8],[255,8],[256,8],[257,8],[258,8],[259,8],[260,8],[261,8],[262,8],[263,8],[264,8],[265,8],[267,8],[473,9],[268,8],[269,8],[266,8],[270,8],[271,8],[272,8],[273,8],[274,8],[275,8],[276,8],[277,8],[278,8],[279,8],[280,8],[281,8],[282,8],[283,8],[284,8],[285,8],[286,8],[287,8],[288,8],[289,8],[290,8],[291,8],[292,8],[293,8],[294,8],[295,8],[296,8],[297,8],[298,8],[299,8],[300,8],[301,8],[302,8],[303,8],[304,8],[305,8],[306,8],[307,8],[308,8],[309,8],[310,8],[311,8],[312,8],[313,8],[314,8],[315,8],[316,8],[317,8],[318,8],[319,8],[320,8],[321,8],[322,8],[323,8],[324,8],[325,8],[326,8],[327,8],[328,8],[329,8],[330,8],[331,8],[332,8],[333,8],[334,8],[335,8],[336,8],[337,8],[338,8],[339,8],[340,8],[341,8],[342,8],[343,8],[344,8],[345,8],[346,8],[347,8],[348,8],[349,8],[350,8],[351,8],[352,8],[353,8],[354,8],[355,8],[356,8],[357,8],[358,8],[359,8],[360,8],[361,8],[362,8],[363,8],[364,8],[365,8],[366,8],[367,8],[368,8],[369,8],[370,8],[371,8],[372,8],[373,8],[374,8],[375,8],[376,8],[377,8],[378,8],[379,8],[380,8],[381,8],[382,8],[383,8],[384,8],[385,8],[386,8],[387,8],[388,8],[389,8],[390,8],[391,8],[392,8],[393,8],[394,8],[395,8],[396,8],[397,8],[398,8],[399,8],[400,8],[401,8],[402,8],[403,8],[404,8],[405,8],[406,8],[407,8],[408,8],[409,8],[410,8],[411,8],[412,8],[413,8],[414,8],[415,8],[416,8],[417,8],[418,8],[419,8],[420,8],[421,8],[422,8],[423,8],[424,8],[425,8],[426,8],[427,8],[428,8],[429,8],[430,8],[431,8],[432,8],[433,8],[434,8],[435,8],[436,8],[437,8],[438,8],[439,8],[440,8],[441,8],[442,8],[443,8],[444,8],[445,8],[446,8],[447,8],[448,8],[449,8],[450,8],[451,8],[453,8],[452,8],[454,8],[455,8],[456,8],[457,8],[458,8],[459,8],[460,8],[461,8],[462,8],[463,8],[464,8],[465,8],[466,8],[467,8],[468,8],[469,8],[470,8],[471,8],[472,8],[60,10],[61,11],[59,12],[62,13],[63,14],[64,15],[65,16],[66,17],[67,18],[68,19],[69,20],[70,21],[71,22],[558,1],[506,23],[507,23],[509,24],[510,25],[511,26],[512,27],[513,28],[514,29],[515,30],[516,31],[517,32],[518,33],[519,33],[520,34],[521,35],[522,36],[523,37],[508,38],[556,1],[524,39],[525,40],[526,41],[557,42],[527,43],[528,44],[529,45],[530,46],[531,47],[532,48],[533,49],[534,50],[535,51],[536,52],[537,53],[538,54],[540,55],[539,56],[541,57],[542,58],[543,1],[544,59],[545,60],[546,61],[547,62],[548,63],[549,64],[550,65],[551,66],[552,67],[553,68],[554,69],[555,70],[44,71],[43,1],[484,72],[483,73],[481,1],[482,74],[480,1],[485,75],[141,1],[50,76],[45,77],[46,78],[140,79],[51,80],[42,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[129,81],[103,82],[52,83],[86,84],[53,83],[80,85],[87,86],[82,82],[72,87],[55,83],[73,88],[58,88],[75,89],[83,90],[77,83],[76,83],[79,91],[78,92],[74,83],[107,93],[105,94],[106,95],[88,83],[104,1],[92,96],[91,97],[89,98],[90,99],[81,100],[96,82],[95,82],[97,82],[98,82],[94,82],[99,83],[100,101],[93,82],[124,102],[123,1],[126,103],[125,82],[122,104],[121,82],[128,105],[85,106],[84,107],[56,108],[57,109],[120,110],[109,82],[110,82],[111,82],[118,82],[117,82],[119,82],[112,82],[113,82],[114,111],[116,82],[115,82],[101,98],[108,112],[127,83],[102,113],[162,139],[164,140],[474,141],[476,142],[478,143],[504,144],[161,145],[163,145],[169,145],[475,145],[477,145],[505,146],[142,124],[146,125],[143,126],[145,127],[144,127],[153,128],[152,129],[151,100],[148,130],[149,131],[150,132],[147,127],[167,133],[166,127],[165,1],[158,1],[159,7],[154,7],[160,134],[155,7],[156,7],[157,7],[501,1],[499,1],[494,1],[488,1],[495,1],[487,1],[500,1],[491,1],[503,135],[502,1],[489,1],[492,1],[493,1],[486,1],[490,1],[498,136],[496,137],[497,138]],"semanticDiagnosticsPerFile":[47,130,131,134,132,136,139,138,137,135,133,48,49,54,170,171,172,173,174,175,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,207,208,206,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,473,268,269,266,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,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,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,453,452,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,60,61,59,62,63,64,65,66,67,68,69,70,71,558,506,507,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,508,556,524,525,526,557,527,528,529,530,531,532,533,534,535,536,537,538,540,539,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,44,43,484,483,481,482,480,485,141,50,45,46,140,51,42,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,129,103,52,86,53,80,87,82,72,55,73,58,75,83,77,76,79,78,74,107,105,106,88,104,92,91,89,90,81,96,95,97,98,94,99,100,93,124,123,126,125,122,121,128,85,84,56,57,120,109,110,111,118,117,119,112,113,114,116,115,101,108,127,102,479,162,164,474,476,478,504,168,161,163,169,475,477,505,142,146,143,145,144,153,152,151,148,149,150,147,167,166,165,158,159,154,160,155,156,157,501,499,494,488,495,487,500,491,503,502,489,492,493,486,490,498,496,497]},"version":"4.7.4"}
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.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.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/tslib/tslib.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/index.d.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../../node_modules/@material/mwc-icon/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.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","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/record-view/record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/index.d.ts","../../data-grist/dist/index.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/index.d.ts","../src/ox-popup-crontab-input.ts","../src/ox-grist-editor-crontab.ts","../src/ox-popup-duration-input.ts","../src/ox-grist-editor-duration.ts","../../property-editor/dist/src/types.d.ts","../../property-editor/dist/src/ox-property-editor.d.ts","../../property-editor/dist/src/index.d.ts","../src/ox-parameters-builder.ts","../src/ox-popup-parameters-builder.ts","../../../node_modules/@types/lodash-es/add.d.ts","../../../node_modules/@types/lodash-es/after.d.ts","../../../node_modules/@types/lodash-es/ary.d.ts","../../../node_modules/@types/lodash-es/assign.d.ts","../../../node_modules/@types/lodash-es/assignin.d.ts","../../../node_modules/@types/lodash-es/assigninwith.d.ts","../../../node_modules/@types/lodash-es/assignwith.d.ts","../../../node_modules/@types/lodash-es/at.d.ts","../../../node_modules/@types/lodash-es/attempt.d.ts","../../../node_modules/@types/lodash-es/before.d.ts","../../../node_modules/@types/lodash-es/bind.d.ts","../../../node_modules/@types/lodash-es/bindall.d.ts","../../../node_modules/@types/lodash-es/bindkey.d.ts","../../../node_modules/@types/lodash-es/camelcase.d.ts","../../../node_modules/@types/lodash-es/capitalize.d.ts","../../../node_modules/@types/lodash-es/castarray.d.ts","../../../node_modules/@types/lodash-es/ceil.d.ts","../../../node_modules/@types/lodash-es/chain.d.ts","../../../node_modules/@types/lodash-es/chunk.d.ts","../../../node_modules/@types/lodash-es/clamp.d.ts","../../../node_modules/@types/lodash-es/clone.d.ts","../../../node_modules/@types/lodash-es/clonedeep.d.ts","../../../node_modules/@types/lodash-es/clonedeepwith.d.ts","../../../node_modules/@types/lodash-es/clonewith.d.ts","../../../node_modules/@types/lodash-es/compact.d.ts","../../../node_modules/@types/lodash-es/concat.d.ts","../../../node_modules/@types/lodash-es/cond.d.ts","../../../node_modules/@types/lodash-es/conforms.d.ts","../../../node_modules/@types/lodash-es/conformsto.d.ts","../../../node_modules/@types/lodash-es/constant.d.ts","../../../node_modules/@types/lodash-es/countby.d.ts","../../../node_modules/@types/lodash-es/create.d.ts","../../../node_modules/@types/lodash-es/curry.d.ts","../../../node_modules/@types/lodash-es/curryright.d.ts","../../../node_modules/@types/lodash-es/debounce.d.ts","../../../node_modules/@types/lodash-es/deburr.d.ts","../../../node_modules/@types/lodash-es/defaultto.d.ts","../../../node_modules/@types/lodash-es/defaults.d.ts","../../../node_modules/@types/lodash-es/defaultsdeep.d.ts","../../../node_modules/@types/lodash-es/defer.d.ts","../../../node_modules/@types/lodash-es/delay.d.ts","../../../node_modules/@types/lodash-es/difference.d.ts","../../../node_modules/@types/lodash-es/differenceby.d.ts","../../../node_modules/@types/lodash-es/differencewith.d.ts","../../../node_modules/@types/lodash-es/divide.d.ts","../../../node_modules/@types/lodash-es/drop.d.ts","../../../node_modules/@types/lodash-es/dropright.d.ts","../../../node_modules/@types/lodash-es/droprightwhile.d.ts","../../../node_modules/@types/lodash-es/dropwhile.d.ts","../../../node_modules/@types/lodash-es/each.d.ts","../../../node_modules/@types/lodash-es/eachright.d.ts","../../../node_modules/@types/lodash-es/endswith.d.ts","../../../node_modules/@types/lodash-es/entries.d.ts","../../../node_modules/@types/lodash-es/entriesin.d.ts","../../../node_modules/@types/lodash-es/eq.d.ts","../../../node_modules/@types/lodash-es/escape.d.ts","../../../node_modules/@types/lodash-es/escaperegexp.d.ts","../../../node_modules/@types/lodash-es/every.d.ts","../../../node_modules/@types/lodash-es/extend.d.ts","../../../node_modules/@types/lodash-es/extendwith.d.ts","../../../node_modules/@types/lodash-es/fill.d.ts","../../../node_modules/@types/lodash-es/filter.d.ts","../../../node_modules/@types/lodash-es/find.d.ts","../../../node_modules/@types/lodash-es/findindex.d.ts","../../../node_modules/@types/lodash-es/findkey.d.ts","../../../node_modules/@types/lodash-es/findlast.d.ts","../../../node_modules/@types/lodash-es/findlastindex.d.ts","../../../node_modules/@types/lodash-es/findlastkey.d.ts","../../../node_modules/@types/lodash-es/first.d.ts","../../../node_modules/@types/lodash-es/flatmap.d.ts","../../../node_modules/@types/lodash-es/flatmapdeep.d.ts","../../../node_modules/@types/lodash-es/flatmapdepth.d.ts","../../../node_modules/@types/lodash-es/flatten.d.ts","../../../node_modules/@types/lodash-es/flattendeep.d.ts","../../../node_modules/@types/lodash-es/flattendepth.d.ts","../../../node_modules/@types/lodash-es/flip.d.ts","../../../node_modules/@types/lodash-es/floor.d.ts","../../../node_modules/@types/lodash-es/flow.d.ts","../../../node_modules/@types/lodash-es/flowright.d.ts","../../../node_modules/@types/lodash-es/foreach.d.ts","../../../node_modules/@types/lodash-es/foreachright.d.ts","../../../node_modules/@types/lodash-es/forin.d.ts","../../../node_modules/@types/lodash-es/forinright.d.ts","../../../node_modules/@types/lodash-es/forown.d.ts","../../../node_modules/@types/lodash-es/forownright.d.ts","../../../node_modules/@types/lodash-es/frompairs.d.ts","../../../node_modules/@types/lodash-es/functions.d.ts","../../../node_modules/@types/lodash-es/functionsin.d.ts","../../../node_modules/@types/lodash-es/get.d.ts","../../../node_modules/@types/lodash-es/groupby.d.ts","../../../node_modules/@types/lodash-es/gt.d.ts","../../../node_modules/@types/lodash-es/gte.d.ts","../../../node_modules/@types/lodash-es/has.d.ts","../../../node_modules/@types/lodash-es/hasin.d.ts","../../../node_modules/@types/lodash-es/head.d.ts","../../../node_modules/@types/lodash-es/identity.d.ts","../../../node_modules/@types/lodash-es/inrange.d.ts","../../../node_modules/@types/lodash-es/includes.d.ts","../../../node_modules/@types/lodash-es/indexof.d.ts","../../../node_modules/@types/lodash-es/initial.d.ts","../../../node_modules/@types/lodash-es/intersection.d.ts","../../../node_modules/@types/lodash-es/intersectionby.d.ts","../../../node_modules/@types/lodash-es/intersectionwith.d.ts","../../../node_modules/@types/lodash-es/invert.d.ts","../../../node_modules/@types/lodash-es/invertby.d.ts","../../../node_modules/@types/lodash-es/invoke.d.ts","../../../node_modules/@types/lodash-es/invokemap.d.ts","../../../node_modules/@types/lodash-es/isarguments.d.ts","../../../node_modules/@types/lodash-es/isarray.d.ts","../../../node_modules/@types/lodash-es/isarraybuffer.d.ts","../../../node_modules/@types/lodash-es/isarraylike.d.ts","../../../node_modules/@types/lodash-es/isarraylikeobject.d.ts","../../../node_modules/@types/lodash-es/isboolean.d.ts","../../../node_modules/@types/lodash-es/isbuffer.d.ts","../../../node_modules/@types/lodash-es/isdate.d.ts","../../../node_modules/@types/lodash-es/iselement.d.ts","../../../node_modules/@types/lodash-es/isempty.d.ts","../../../node_modules/@types/lodash-es/isequal.d.ts","../../../node_modules/@types/lodash-es/isequalwith.d.ts","../../../node_modules/@types/lodash-es/iserror.d.ts","../../../node_modules/@types/lodash-es/isfinite.d.ts","../../../node_modules/@types/lodash-es/isfunction.d.ts","../../../node_modules/@types/lodash-es/isinteger.d.ts","../../../node_modules/@types/lodash-es/islength.d.ts","../../../node_modules/@types/lodash-es/ismap.d.ts","../../../node_modules/@types/lodash-es/ismatch.d.ts","../../../node_modules/@types/lodash-es/ismatchwith.d.ts","../../../node_modules/@types/lodash-es/isnan.d.ts","../../../node_modules/@types/lodash-es/isnative.d.ts","../../../node_modules/@types/lodash-es/isnil.d.ts","../../../node_modules/@types/lodash-es/isnull.d.ts","../../../node_modules/@types/lodash-es/isnumber.d.ts","../../../node_modules/@types/lodash-es/isobject.d.ts","../../../node_modules/@types/lodash-es/isobjectlike.d.ts","../../../node_modules/@types/lodash-es/isplainobject.d.ts","../../../node_modules/@types/lodash-es/isregexp.d.ts","../../../node_modules/@types/lodash-es/issafeinteger.d.ts","../../../node_modules/@types/lodash-es/isset.d.ts","../../../node_modules/@types/lodash-es/isstring.d.ts","../../../node_modules/@types/lodash-es/issymbol.d.ts","../../../node_modules/@types/lodash-es/istypedarray.d.ts","../../../node_modules/@types/lodash-es/isundefined.d.ts","../../../node_modules/@types/lodash-es/isweakmap.d.ts","../../../node_modules/@types/lodash-es/isweakset.d.ts","../../../node_modules/@types/lodash-es/iteratee.d.ts","../../../node_modules/@types/lodash-es/join.d.ts","../../../node_modules/@types/lodash-es/kebabcase.d.ts","../../../node_modules/@types/lodash-es/keyby.d.ts","../../../node_modules/@types/lodash-es/keys.d.ts","../../../node_modules/@types/lodash-es/keysin.d.ts","../../../node_modules/@types/lodash-es/last.d.ts","../../../node_modules/@types/lodash-es/lastindexof.d.ts","../../../node_modules/@types/lodash-es/lowercase.d.ts","../../../node_modules/@types/lodash-es/lowerfirst.d.ts","../../../node_modules/@types/lodash-es/lt.d.ts","../../../node_modules/@types/lodash-es/lte.d.ts","../../../node_modules/@types/lodash-es/map.d.ts","../../../node_modules/@types/lodash-es/mapkeys.d.ts","../../../node_modules/@types/lodash-es/mapvalues.d.ts","../../../node_modules/@types/lodash-es/matches.d.ts","../../../node_modules/@types/lodash-es/matchesproperty.d.ts","../../../node_modules/@types/lodash-es/max.d.ts","../../../node_modules/@types/lodash-es/maxby.d.ts","../../../node_modules/@types/lodash-es/mean.d.ts","../../../node_modules/@types/lodash-es/meanby.d.ts","../../../node_modules/@types/lodash-es/memoize.d.ts","../../../node_modules/@types/lodash-es/merge.d.ts","../../../node_modules/@types/lodash-es/mergewith.d.ts","../../../node_modules/@types/lodash-es/method.d.ts","../../../node_modules/@types/lodash-es/methodof.d.ts","../../../node_modules/@types/lodash-es/min.d.ts","../../../node_modules/@types/lodash-es/minby.d.ts","../../../node_modules/@types/lodash-es/mixin.d.ts","../../../node_modules/@types/lodash-es/multiply.d.ts","../../../node_modules/@types/lodash-es/negate.d.ts","../../../node_modules/@types/lodash-es/noop.d.ts","../../../node_modules/@types/lodash-es/now.d.ts","../../../node_modules/@types/lodash-es/nth.d.ts","../../../node_modules/@types/lodash-es/ntharg.d.ts","../../../node_modules/@types/lodash-es/omit.d.ts","../../../node_modules/@types/lodash-es/omitby.d.ts","../../../node_modules/@types/lodash-es/once.d.ts","../../../node_modules/@types/lodash-es/orderby.d.ts","../../../node_modules/@types/lodash-es/over.d.ts","../../../node_modules/@types/lodash-es/overargs.d.ts","../../../node_modules/@types/lodash-es/overevery.d.ts","../../../node_modules/@types/lodash-es/oversome.d.ts","../../../node_modules/@types/lodash-es/pad.d.ts","../../../node_modules/@types/lodash-es/padend.d.ts","../../../node_modules/@types/lodash-es/padstart.d.ts","../../../node_modules/@types/lodash-es/parseint.d.ts","../../../node_modules/@types/lodash-es/partial.d.ts","../../../node_modules/@types/lodash-es/partialright.d.ts","../../../node_modules/@types/lodash-es/partition.d.ts","../../../node_modules/@types/lodash-es/pick.d.ts","../../../node_modules/@types/lodash-es/pickby.d.ts","../../../node_modules/@types/lodash-es/property.d.ts","../../../node_modules/@types/lodash-es/propertyof.d.ts","../../../node_modules/@types/lodash-es/pull.d.ts","../../../node_modules/@types/lodash-es/pullall.d.ts","../../../node_modules/@types/lodash-es/pullallby.d.ts","../../../node_modules/@types/lodash-es/pullallwith.d.ts","../../../node_modules/@types/lodash-es/pullat.d.ts","../../../node_modules/@types/lodash-es/random.d.ts","../../../node_modules/@types/lodash-es/range.d.ts","../../../node_modules/@types/lodash-es/rangeright.d.ts","../../../node_modules/@types/lodash-es/rearg.d.ts","../../../node_modules/@types/lodash-es/reduce.d.ts","../../../node_modules/@types/lodash-es/reduceright.d.ts","../../../node_modules/@types/lodash-es/reject.d.ts","../../../node_modules/@types/lodash-es/remove.d.ts","../../../node_modules/@types/lodash-es/repeat.d.ts","../../../node_modules/@types/lodash-es/replace.d.ts","../../../node_modules/@types/lodash-es/rest.d.ts","../../../node_modules/@types/lodash-es/result.d.ts","../../../node_modules/@types/lodash-es/reverse.d.ts","../../../node_modules/@types/lodash-es/round.d.ts","../../../node_modules/@types/lodash-es/sample.d.ts","../../../node_modules/@types/lodash-es/samplesize.d.ts","../../../node_modules/@types/lodash-es/set.d.ts","../../../node_modules/@types/lodash-es/setwith.d.ts","../../../node_modules/@types/lodash-es/shuffle.d.ts","../../../node_modules/@types/lodash-es/size.d.ts","../../../node_modules/@types/lodash-es/slice.d.ts","../../../node_modules/@types/lodash-es/snakecase.d.ts","../../../node_modules/@types/lodash-es/some.d.ts","../../../node_modules/@types/lodash-es/sortby.d.ts","../../../node_modules/@types/lodash-es/sortedindex.d.ts","../../../node_modules/@types/lodash-es/sortedindexby.d.ts","../../../node_modules/@types/lodash-es/sortedindexof.d.ts","../../../node_modules/@types/lodash-es/sortedlastindex.d.ts","../../../node_modules/@types/lodash-es/sortedlastindexby.d.ts","../../../node_modules/@types/lodash-es/sortedlastindexof.d.ts","../../../node_modules/@types/lodash-es/sorteduniq.d.ts","../../../node_modules/@types/lodash-es/sorteduniqby.d.ts","../../../node_modules/@types/lodash-es/split.d.ts","../../../node_modules/@types/lodash-es/spread.d.ts","../../../node_modules/@types/lodash-es/startcase.d.ts","../../../node_modules/@types/lodash-es/startswith.d.ts","../../../node_modules/@types/lodash-es/stubarray.d.ts","../../../node_modules/@types/lodash-es/stubfalse.d.ts","../../../node_modules/@types/lodash-es/stubobject.d.ts","../../../node_modules/@types/lodash-es/stubstring.d.ts","../../../node_modules/@types/lodash-es/stubtrue.d.ts","../../../node_modules/@types/lodash-es/subtract.d.ts","../../../node_modules/@types/lodash-es/sum.d.ts","../../../node_modules/@types/lodash-es/sumby.d.ts","../../../node_modules/@types/lodash-es/tail.d.ts","../../../node_modules/@types/lodash-es/take.d.ts","../../../node_modules/@types/lodash-es/takeright.d.ts","../../../node_modules/@types/lodash-es/takerightwhile.d.ts","../../../node_modules/@types/lodash-es/takewhile.d.ts","../../../node_modules/@types/lodash-es/tap.d.ts","../../../node_modules/@types/lodash-es/template.d.ts","../../../node_modules/@types/lodash-es/templatesettings.d.ts","../../../node_modules/@types/lodash-es/throttle.d.ts","../../../node_modules/@types/lodash-es/times.d.ts","../../../node_modules/@types/lodash-es/toarray.d.ts","../../../node_modules/@types/lodash-es/tofinite.d.ts","../../../node_modules/@types/lodash-es/tointeger.d.ts","../../../node_modules/@types/lodash-es/tolength.d.ts","../../../node_modules/@types/lodash-es/tolower.d.ts","../../../node_modules/@types/lodash-es/tonumber.d.ts","../../../node_modules/@types/lodash-es/topairs.d.ts","../../../node_modules/@types/lodash-es/topairsin.d.ts","../../../node_modules/@types/lodash-es/topath.d.ts","../../../node_modules/@types/lodash-es/toplainobject.d.ts","../../../node_modules/@types/lodash-es/tosafeinteger.d.ts","../../../node_modules/@types/lodash-es/tostring.d.ts","../../../node_modules/@types/lodash-es/toupper.d.ts","../../../node_modules/@types/lodash-es/transform.d.ts","../../../node_modules/@types/lodash-es/trim.d.ts","../../../node_modules/@types/lodash-es/trimend.d.ts","../../../node_modules/@types/lodash-es/trimstart.d.ts","../../../node_modules/@types/lodash-es/truncate.d.ts","../../../node_modules/@types/lodash-es/unary.d.ts","../../../node_modules/@types/lodash-es/unescape.d.ts","../../../node_modules/@types/lodash-es/union.d.ts","../../../node_modules/@types/lodash-es/unionby.d.ts","../../../node_modules/@types/lodash-es/unionwith.d.ts","../../../node_modules/@types/lodash-es/uniq.d.ts","../../../node_modules/@types/lodash-es/uniqby.d.ts","../../../node_modules/@types/lodash-es/uniqwith.d.ts","../../../node_modules/@types/lodash-es/uniqueid.d.ts","../../../node_modules/@types/lodash-es/unset.d.ts","../../../node_modules/@types/lodash-es/unzip.d.ts","../../../node_modules/@types/lodash-es/unzipwith.d.ts","../../../node_modules/@types/lodash-es/update.d.ts","../../../node_modules/@types/lodash-es/updatewith.d.ts","../../../node_modules/@types/lodash-es/uppercase.d.ts","../../../node_modules/@types/lodash-es/upperfirst.d.ts","../../../node_modules/@types/lodash-es/values.d.ts","../../../node_modules/@types/lodash-es/valuesin.d.ts","../../../node_modules/@types/lodash-es/without.d.ts","../../../node_modules/@types/lodash-es/words.d.ts","../../../node_modules/@types/lodash-es/wrap.d.ts","../../../node_modules/@types/lodash-es/xor.d.ts","../../../node_modules/@types/lodash-es/xorby.d.ts","../../../node_modules/@types/lodash-es/xorwith.d.ts","../../../node_modules/@types/lodash-es/zip.d.ts","../../../node_modules/@types/lodash-es/zipobject.d.ts","../../../node_modules/@types/lodash-es/zipobjectdeep.d.ts","../../../node_modules/@types/lodash-es/zipwith.d.ts","../../../node_modules/@types/lodash-es/index.d.ts","../src/ox-grist-editor-parameters.ts","../src/ox-popup-partition-keys-input.ts","../src/ox-grist-editor-partition-keys.ts","../src/ox-grist-editor-quantifier.ts","../src/ox-popup-value-map-input.ts","../src/ox-grist-editor-value-map.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/index.d.ts","../src/ox-grist-renderer-duration.ts","../src/ox-grist-renderer-quantifier.ts","../src/index.ts","../../../node_modules/cronstrue/dist/options.d.ts","../../../node_modules/cronstrue/dist/i18n/locale.d.ts","../../../node_modules/cronstrue/dist/i18n/localeloader.d.ts","../../../node_modules/cronstrue/dist/expressiondescriptor.d.ts","../../../node_modules/cronstrue/dist/cronstrue-i18n.d.ts","../../../node_modules/cronstrue/i18n.d.ts","../src/ox-grist-renderer-crontab.ts","../stories/ox-grist-editor-crontab.stories.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/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/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/mocha/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","8be48c7828a22d50f128f317cdd8ac25ef0ee54c877b8b5c464887234f619783","6e2c5a9358c2be6791713f778c3af2d3357b8665d881e22f50b3aa861a2a9717","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","1e2ae614a94edfcf851891f18ab17099709fe0214b5a97f1bfa63d1c7730b345","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"380fd4339f2f5ae2c6505a477da678b9006258d757d69ad7971b011ef0ba0b73","328771615e1dd9055b6f487f90d1e99b958bbaf303c2b3b35ca6ad2beebf57f4","fc32e1e56aead89cf0ff04e9346f63ad36e7fa8f390127435eac59ec4c6406b9","e1f4e845333b46bd06238275b874a28c8f7d3be476d07aa452b3fb26e71ded41","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"18f635c293620d1388c3ef3302850537bdad678dd03efb85c8b0d251c37c79df","f9b56f9d07cb05a23ad19b491d9d0d6950a1e8b2e9ef3d827ea6c2e1b64cbb59","555663519c551cda16bd59d2340c972858b2d87711bd8109c2ddeb4662267a05","e8234beadb18b72754bd1d444239b1985f95da0311054c82329f82a5a6657a73","cc79b6086a08f5fe3e84b96a294fa1484a1aee36ec3faa6f4ac289ccc08bfc38","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","e0a32d1c7b757d25b3b1619accddc87a957a100ed065d187f00aa0c0897d9459","88a89ced0185f3e6e7b417a14b930ed2237783a9b402b3301fbb61adabce7891","5dd8516bdca5e56a20779b84758f4f20640e423ff55acf64bfbada36bf54bbba","fe0e774326bff14b64b8208e648b6f374db8e09e39879dd6a09441ef6bea9c74","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","529eea4533eeddb752c74f8a4d7722e6465f47c97d2642ad3781b9a896d856cf","a5352463052128493313d93f3648c837f1365e24a0ec5fd640e0a6468e47654b","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","70594838909a394e4017449b7eb8d414d90f4fab1b1dd493588f6a22f2b575cf","87708ffc11fa926c5f972309ef9f9bd07f2d70dfce4ca2924c276a1961269450","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","924137c8cf52d66a980113d2b9d746908e96f38b65416cf51ec2a00d7132be63","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","55a9ab4848634630b92925ae2a47113b2f29a666edf8095da1f34468246341db","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","55fcf176734c8832af1f653472980628cc9da7f74e2015c953bd67f2636ce7cb","27fba3a14f54b67440df535f6f96b7068ad409544e422c6bb79ec320bce6462a","19f4c3da100f6ae2baeb548f5334cd238ea8da4a62812afe579f9ecc4fd6b35a","d6252ea56085336dbcac32177faf1c2ff2e2cd4bc976bcbe67621e6f3e6d01d3","0f85a0bab1ed365725136ede09c0c4c2af9555e1f9e4ff70482734128696ac1d","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a208a319c19376e0e8d953d58ddee7b2cc8de3be72e110f97c7fbaa23bf1e5b4","709f62b8c98e1db14602e873218cc5d22f81d64cd88f25adb5b4d2705a7e5d5c","284bf56773e6da050a953484eaca4beaceedce83b49be512a527ce88111a9a1a","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","2f3641dc015c1f0d5a0c6d3425c05cccb6b4a58960014138e988d7ac7e89e95b","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","f75a21fbd14501571d91fc23ca9186bebab93f71c8d70968546238ed5874c749","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","99289d0b04da7b244c71e2d857ffb0ac780a46f800a495e9fc017dd05b662bb4","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","1da789e534bc558808021dd64abf33a91a68e422bbf28aeec236bd74df640401","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","fbfa634e3741c9b9db36bf081b78365170b31650c7d2f8b9e8d631c7b9bb5bd8","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6","b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","415ae3a9be423d2db81b7e16a6c053c83d3f83b1af03a2827aea3de084b70742","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","4d50db18bdcae4a401e888ac0f6b456d44405a860d38b90773158e2f11b1aa24","2fa8eeba1b6d29551683794e35cc3ea7bf2351f425f5023f0c1db691f551010c","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372",{"version":"bd5bcbf7819f68e1d6e1c782077cdabff35bcdbd4f169e77ed5eabe4d46eec92","signature":"53a52369c20283d4b281d9648279583947f2702343ac7f0231d3e51665178219"},{"version":"a3557debb12d120a896f9a1d9c0b0d7305787db8732335de3bc92486d5cfc7a5","signature":"f85950046883a79e75a76bf0d1c135870192f20f05c225d743b41ead8dd7f0a9"},{"version":"46228a06f3592214040845fb656e7593414d05fd3964bc5cb449468017d36995","signature":"daf7193a2b009c11b28305245e5e4e3eb0e4e76dec9cfeebf26818ab8cce624c"},{"version":"874a1c27e26c4c119d8cfc025e9634f8e302a973c31c43f88fb17b4e2813d20e","signature":"5b42a83e2fffe52df8c45af29910df6a1de6b118fdc9eea8576b23b42065f122"},"7a286c7ce1f424de104823da3c89ebe10847fb084b98f55e175040ffefb727d1","fbda38155a615eafbfd0b5d5165ebb91873084ca1bff6f865aaaec11f0ca2395","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"03273192613a522e523a2edd6b4844d14982d000c29b2e21660a8eecf7ee63e0","signature":"0b98ae9c19957b68eb6c1ddada4c52b03b74c4729b51c6dc1e3300869fe66d2a"},{"version":"a8c9f15dba3130fd9c407e3013c917e0494ac76cfbf3058ab837650a9a3e7a88","signature":"2b977d9c3b014be1fc140f696847e4e67362bef8d27ba4d17785f3c9b47be1f5"},"cf93e7b09b66e142429611c27ba2cbf330826057e3c793e1e2861e976fae3940","90e727d145feb03695693fdc9f165a4dc10684713ee5f6aa81e97a6086faa0f8","ee2c6ec73c636c9da5ab4ce9227e5197f55a57241d66ea5828f94b69a4a09a2d","afaf64477630c7297e3733765046c95640ab1c63f0dfb3c624691c8445bc3b08","5aa03223a53ad03171988820b81a6cae9647eabcebcb987d1284799de978d8e3","7f50c8914983009c2b940923d891e621db624ba32968a51db46e0bf480e4e1cb","90fc18234b7d2e19d18ac026361aaf2f49d27c98dc30d9f01e033a9c2b01c765","a980e4d46239f344eb4d5442b69dcf1d46bd2acac8d908574b5a507181f7e2a1","bbbfa4c51cdaa6e2ef7f7be3ae199b319de6b31e3b5afa7e5a2229c14bb2568a","bc7bfe8f48fa3067deb3b37d4b511588b01831ba123a785ea81320fe74dd9540","fd60c0aaf7c52115f0e7f367d794657ac18dbb257255777406829ab65ca85746","15c17866d58a19f4a01a125f3f511567bd1c22235b4fd77bf90c793bf28388c3","51301a76264b1e1b4046f803bda44307fba403183bc274fe9e7227252d7315cb","ddef23e8ace6c2b2ddf8d8092d30b1dd313743f7ff47b2cbb43f36c395896008","9e42df47111429042b5e22561849a512ad5871668097664b8fb06a11640140ac","391fcc749c6f94c6c4b7f017c6a6f63296c1c9ae03fa639f99337dddb9cc33fe","ac4706eb1fb167b19f336a93989763ab175cd7cc6227b0dcbfa6a7824c6ba59a","633220dc1e1a5d0ccf11d3c3e8cadc9124daf80fef468f2ff8186a2775229de3","6de22ad73e332e513454f0292275155d6cb77f2f695b73f0744928c4ebb3a128","ebe0e3c77f5114b656d857213698fade968cff1b3a681d1868f3cfdd09d63b75","22c27a87488a0625657b52b9750122814c2f5582cac971484cda0dcd7a46dc3b","7e7a817c8ec57035b2b74df8d5dbcc376a4a60ad870b27ec35463536158e1156","0e2061f86ca739f34feae42fd7cce27cc171788d251a587215b33eaec456e786","91659b2b090cadffdb593736210910508fc5b77046d4ce180b52580b14b075ec","d0f6c657c45faaf576ca1a1dc64484534a8dc74ada36fd57008edc1aab65a02b","ce0c52b1ebc023b71d3c1fe974804a2422cf1d85d4af74bb1bced36ff3bff8b5","9c6acb4a388887f9a5552eda68987ee5d607152163d72f123193a984c48157c9","90d0a9968cbb7048015736299f96a0cceb01cf583fd2e9a9edbc632ac4c81b01","49abec0571c941ab6f095885a76828d50498511c03bb326eec62a852e58000c5","8eeb4a4ff94460051173d561749539bca870422a6400108903af2fb7a1ffe3d7","49e39b284b87452fed1e27ac0748ba698f5a27debe05084bc5066b3ecf4ed762","59dcf835762f8df90fba5a3f8ba87941467604041cf127fb456543c793b71456","33e0c4c683dcaeb66bedf5bb6cc35798d00ac58d7f3bc82aadb50fa475781d60","605839abb6d150b0d83ed3712e1b3ffbeb309e382770e7754085d36bc2d84a4c","30905c89260ca8da4e72345c72f8e80beb9cc39ee2ee48261e63f76ea1874d1e","0f0a16a0e8037c17e28f537028215e87db047eba52281bd33484d5395402f3c1","530192961885d3ddad87bf9c4390e12689fa29ff515df57f17a57c9125fc77c3","cf533aed4c455b526ddccbb10dae7cc77e9269c3d7862f9e5cedbd4f5c92e05e","f8a60ca31702a0209ef217f8f3b4b32f498813927df2304787ac968c78d8560d","165ba9e775dd769749e2177c383d24578e3b212e4774b0a72ad0f6faee103b68","61448f238fdfa94e5ccce1f43a7cced5e548b1ea2d957bec5259a6e719378381","69fa523e48131ced0a52ab1af36c3a922c5fd7a25e474d82117329fe051f5b85","fa10b79cd06f5dd03435e184fb05cc5f0d02713bfb4ee9d343db527501be334c","c6fb591e363ee4dea2b102bb721c0921485459df23a2d2171af8354cacef4bce","ea7e1f1097c2e61ed6e56fa04a9d7beae9d276d87ac6edb0cd39a3ee649cddfe","e8cf2659d87462aae9c7647e2a256ac7dcaf2a565a9681bfb49328a8a52861e8","7e374cb98b705d35369b3c15444ef2ff5ff983bd2fbb77a287f7e3240abf208c","ca75ba1519f9a426b8c512046ebbad58231d8627678d054008c93c51bc0f3fa5","ff63760147d7a60dcfc4ac16e40aa2696d016b9ffe27e296b43655dfa869d66b","4d434123b16f46b290982907a4d24675442eb651ca95a5e98e4c274be16f1220","57263d6ba38046e85f499f3c0ab518cfaf0a5f5d4f53bdae896d045209ab4aff","d3a535f2cd5d17f12b1abf0b19a64e816b90c8c10a030b58f308c0f7f2acfe2c","be26d49bb713c13bd737d00ae8a61aa394f0b76bc2d5a1c93c74f59402eb8db3","c7012003ac0c9e6c9d3a6418128ddebf6219d904095180d4502b19c42f46a186","d58c55750756bcf73f474344e6b4a9376e5381e4ba7d834dc352264b491423b6","01e2aabfabe22b4bf6d715fc54d72d32fa860a3bd1faa8974e0d672c4b565dfe","ba2c489bb2566c16d28f0500b3d98013917e471c40a4417c03991460cb248e88","39f94b619f0844c454a6f912e5d6868d0beb32752587b134c3c858b10ecd7056","0d2d8b0477b1cf16b34088e786e9745c3e8145bc8eea5919b700ad054e70a095","2a5e963b2b8f33a50bb516215ba54a20801cb379a8e9b1ae0b311e900dc7254c","d8307f62b55feeb5858529314761089746dce957d2b8fd919673a4985fa4342a","bf449ec80fc692b2703ad03e64ae007b3513ecd507dc2ab77f39be6f578e6f5c","f780213dd78998daf2511385dd51abf72905f709c839a9457b6ba2a55df57be7","2b7843e8a9a50bdf511de24350b6d429a3ee28430f5e8af7d3599b1e9aa7057f","05d95be6e25b4118c2eb28667e784f0b25882f6a8486147788df675c85391ab7","62d2721e9f2c9197c3e2e5cffeb2f76c6412121ae155153179049890011eb785","ff5668fb7594c02aca5e7ba7be6c238676226e450681ca96b457f4a84898b2d9","59fd37ea08657fef36c55ddea879eae550ffe21d7e3a1f8699314a85a30d8ae9","84e23663776e080e18b25052eb3459b1a0486b5b19f674d59b96347c0cb7312a","43e5934c7355731eec20c5a2aa7a859086f19f60a4e5fcd80e6684228f6fb767","a49c210c136c518a7c08325f6058fc648f59f911c41c93de2026db692bba0e47","1a92f93597ebc451e9ef4b158653c8d31902de5e6c8a574470ecb6da64932df4","256513ad066ac9898a70ca01e6fbdb3898a4e0fe408fbf70608fdc28ac1af224","d9835850b6cc05c21e8d85692a8071ebcf167a4382e5e39bf700c4a1e816437e","e5ab7190f818442e958d0322191c24c2447ddceae393c4e811e79cda6bd49836","91b4b77ef81466ce894f1aade7d35d3589ddd5c9981109d1dea11f55a4b807a0","03abb209bed94c8c893d9872639e3789f0282061c7aa6917888965e4047a8b5f","e97a07901de562219f5cba545b0945a1540d9663bd9abce66495721af3903eec","bf39ed1fdf29bc8178055ec4ff32be6725c1de9f29c252e31bdc71baf5c227e6","985eabf06dac7288fc355435b18641282f86107e48334a83605739a1fe82ac15","6112d33bcf51e3e6f6a81e419f29580e2f8e773529d53958c7c1c99728d4fb2e","89e9f7e87a573504acc2e7e5ad727a110b960330657d1b9a6d3526e77c83d8be","44bbb88abe9958c7c417e8687abf65820385191685009cc4b739c2d270cb02e9","ab4b506b53d2c4aec4cc00452740c540a0e6abe7778063e95c81a5cd557c19eb","858757bde6d615d0d1ee474c972131c6d79c37b0b61897da7fbd7110beb8af12","60b9dea33807b086a1b4b4b89f72d5da27ad0dd36d6436a6e306600c47438ac4","409c963b1166d0c1d49fdad1dfeb4de27fd2d6662d699009857de9baf43ca7c3","b7674ecfeb5753e965404f7b3d31eec8450857d1a23770cb867c82f264f546ab","c9800b9a9ad7fcdf74ed8972a5928b66f0e4ff674d55fd038a3b1c076911dcbe","99864433e35b24c61f8790d2224428e3b920624c01a6d26ea8b27ee1f62836bb","c391317b9ff8f87d28c6bfe4e50ed92e8f8bfab1bb8a03cd1fe104ff13186f83","42bdc3c98446fdd528e2591213f71ce6f7008fb9bb12413bd57df60d892a3fb5","542d2d689b58c25d39a76312ccaea2fcd10a45fb27b890e18015399c8032e2d9","97d1656f0a563dbb361d22b3d7c2487427b0998f347123abd1c69a4991326c96","d4f53ed7960c9fba8378af3fa28e3cc483d6c0b48e4a152a83ff0973d507307d","0665de5280d65ec32776dc55fb37128e259e60f389cde5b9803cf9e81ad23ce0","73b6945448bb3425b764cfe7b1c4b0b56c010cc66e5f438ef320c53e469797eb","b6dc8fd1c6092da86725c338ca6c263d1c6dd3073046d3ec4eb2d68515062da2","d9198a0f01f00870653347560e10494efeca0bfa2de0988bd5d883a9d2c47edb","d4279865b926d7e2cfe8863b2eae270c4c035b6e923af8f9d7e6462d68679e07","cf72fd8ffa5395f4f1a26be60246ec79c5a9ad201579c9ba63fd2607b5daf184","301a458744666096f84580a78cc3f6e8411f8bab92608cdaa33707546ca2906f","711e70c0916ff5f821ea208043ecd3e67ed09434b8a31d5616286802b58ebebe","e1f2fd9f88dd0e40c358fbf8c8f992211ab00a699e7d6823579b615b874a8453","17db3a9dcb2e1689ff7ace9c94fa110c88da64d69f01dc2f3cec698e4fc7e29e","73fb07305106bb18c2230890fcacf910fd1a7a77d93ac12ec40bc04c49ee5b8e","2c5f341625a45530b040d59a4bc2bc83824d258985ede10c67005be72d3e21d0","c4a262730d4277ecaaf6f6553dabecc84dcca8decaebbf2e16f1df8bbd996397","c23c533d85518f3358c55a7f19ab1a05aad290251e8bba0947bd19ea3c259467","5d0322a0b8cdc67b8c71e4ccaa30286b0c8453211d4c955a217ac2d3590e911f","f5e4032b6e4e116e7fec5b2620a2a35d0b6b8b4a1cc9b94a8e5ee76190153110","9ab26cb62a0e86ab7f669c311eb0c4d665457eb70a103508aa39da6ccee663da","5f64d1a11d8d4ce2c7ee3b72471df76b82d178a48964a14cdfdc7c5ef7276d70","24e2fbc48f65814e691d9377399807b9ec22cd54b51d631ba9e48ee18c5939dd","bfa2648b2ee90268c6b6f19e84da3176b4d46329c9ec0555d470e647d0568dfb","75ef3cb4e7b3583ba268a094c1bd16ce31023f2c3d1ac36e75ca65aca9721534","3be6b3304a81d0301838860fd3b4536c2b93390e785808a1f1a30e4135501514","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9","3ada1b216e45bb9e32e30d8179a0a95870576fe949c33d9767823ccf4f4f4c97","1ace2885dffab849f7c98bffe3d1233260fbf07ee62cb58130167fd67a376a65","2126e5989c0ca5194d883cf9e9c10fe3e5224fbd3e4a4a6267677544e8be0aae","41a6738cf3c756af74753c5033e95c5b33dfc1f6e1287fa769a1ac4027335bf5","6e8630be5b0166cbc9f359b9f9e42801626d64ff1702dcb691af811149766154","e36b77c04e00b4a0bb4e1364f2646618a54910c27f6dc3fc558ca2ced8ca5bc5","2c4ea7e9f95a558f46c89726d1fedcb525ef649eb755a3d7d5055e22b80c2904","4875d65190e789fad05e73abd178297b386806b88b624328222d82e455c0f2e7","bf5302ecfaacee37c2316e33703723d62e66590093738c8921773ee30f2ecc38","62684064fe034d54b87f62ad416f41b98a405dee4146d0ec03b198c3634ea93c","be02cbdb1688c8387f8a76a9c6ed9d75d8bb794ec5b9b1d2ba3339a952a00614","cefaff060473a5dbf4939ee1b52eb900f215f8d6249dc7c058d6b869d599983c","b2797235a4c1a7442a6f326f28ffb966226c3419399dbb33634b8159af2c712f","164d633bbd4329794d329219fc173c3de85d5ad866d44e5b5f0fb60c140e98f2","b74300dd0a52eaf564b3757c07d07e1d92def4e3b8708f12eedb40033e4cafe9","a792f80b1e265b06dce1783992dbee2b45815a7bdc030782464b8cf982337cf2","8816b4b3a87d9b77f0355e616b38ed5054f993cc4c141101297f1914976a94b1","0f35e4da974793534c4ca1cdd9491eab6993f8cf47103dadfc048b899ed9b511","0ccdfcaebf297ec7b9dde20bbbc8539d5951a3d8aaa40665ca469da27f5a86e1","7fcb05c8ce81f05499c7b0488ae02a0a1ac6aebc78c01e9f8c42d98f7ba68140","81c376c9e4d227a4629c7fca9dde3bbdfa44bd5bd281aee0ed03801182368dc5","0f2448f95110c3714797e4c043bbc539368e9c4c33586d03ecda166aa9908843","b2f1a443f7f3982d7325775906b51665fe875c82a62be3528a36184852faa0bb","7568ff1f23363d7ee349105eb936e156d61aea8864187a4c5d85c60594b44a25","8c4d1d9a4eba4eac69e6da0f599a424b2689aee55a455f0b5a7f27a807e064db","e1beb9077c100bdd0fc8e727615f5dae2c6e1207de224569421907072f4ec885","3dda13836320ec71b95a68cd3d91a27118b34c05a2bfda3e7e51f1d8ca9b960b","fedc79cb91f2b3a14e832d7a8e3d58eb02b5d5411c843fcbdc79e35041316b36","99f395322ffae908dcdfbaa2624cc7a2a2cb7b0fbf1a1274aca506f7b57ebcb5","5e1f7c43e8d45f2222a5c61cbc88b074f4aaf1ca4b118ac6d6123c858efdcd71","7388273ab71cb8f22b3f25ffd8d44a37d5740077c4d87023da25575204d57872","0a48ceb01a0fdfc506aa20dfd8a3563edbdeaa53a8333ddf261d2ee87669ea7b","3182d06b874f31e8e55f91ea706c85d5f207f16273480f46438781d0bd2a46a1","ccd47cab635e8f71693fa4e2bbb7969f559972dae97bd5dbd1bbfee77a63b410","89770fa14c037f3dc3882e6c56be1c01bb495c81dec96fa29f868185d9555a5d","7048c397f08c54099c52e6b9d90623dc9dc6811ea142f8af3200e40d66a972e1","512120cd6f026ce1d3cf686c6ab5da80caa40ef92aa47466ec60ba61a48b5551","6cd0cb7f999f221e984157a7640e7871960131f6b221d67e4fdc2a53937c6770","f48b84a0884776f1bc5bf0fcf3f69832e97b97dc55d79d7557f344de900d259b","dca490d986411644b0f9edf6ea701016836558e8677c150dca8ad315178ec735","a028a04948cf98c1233166b48887dad324e8fe424a4be368a287c706d9ccd491","3046ed22c701f24272534b293c10cfd17b0f6a89c2ec6014c9a44a90963dfa06","394da10397d272f19a324c95bea7492faadf2263da157831e02ae1107bd410f5","0580595a99248b2d30d03f2307c50f14eb21716a55beb84dd09d240b1b087a42","a7da9510150f36a9bea61513b107b59a423fdff54429ad38547c7475cd390e95","659615f96e64361af7127645bb91f287f7b46c5d03bea7371e6e02099226d818","1f2a42974920476ce46bb666cd9b3c1b82b2072b66ccd0d775aa960532d78176","500b3ae6095cbab92d81de0b40c9129f5524d10ad955643f81fc07d726c5a667","a957ad4bd562be0662fb99599dbcf0e16d1631f857e5e1a83a3f3afb6c226059","e57a4915266a6a751c6c172e8f30f6df44a495608613e1f1c410196207da9641","7a12e57143b7bc5a52a41a8c4e6283a8f8d59a5e302478185fb623a7157fff5e","17b3426162e1d9cb0a843e8d04212aabe461d53548e671236de957ed3ae9471b","f38e86eb00398d63180210c5090ef6ed065004474361146573f98b3c8a96477d","231d9e32382d3971f58325e5a85ba283a2021243651cb650f82f87a1bf62d649","6532e3e87b87c95f0771611afce929b5bad9d2c94855b19b29b3246937c9840b","65704bbb8f0b55c73871335edd3c9cead7c9f0d4b21f64f5d22d0987c45687f0","787232f574af2253ac860f22a445c755d57c73a69a402823ae81ba0dfdd1ce23","5e63903cd5ebce02486b91647d951d61a16ad80d65f9c56581cd624f39a66007","bcc89a120d8f3c02411f4df6b1d989143c01369314e9b0e04794441e6b078d22","d17531ef42b7c76d953f63bd5c5cd927c4723e62a7e0b2badf812d5f35f784eb","6d4ee1a8e3a97168ea4c4cc1c68bb61a3fd77134f15c71bb9f3f63df3d26b54c","1eb04fea6b47b16922ed79625d90431a8b2fc7ba9d5768b255e62df0c96f1e3a","de0c2eece83bd81b8682f4496f558beb728263e17e74cbc4910e5c9ce7bef689","98866542d45306dab48ecc3ddd98ee54fa983353bc3139dfbc619df882f54d90","9e04c7708917af428c165f1e38536ddb2e8ecd576f55ed11a97442dc34b6b010","31fe6f6d02b53c1a7c34b8d8f8c87ee9b6dd4b67f158cbfff3034b4f3f69c409","2e1d853f84188e8e002361f4bfdd892ac31c68acaeac426a63cd4ff7abf150d0","666b5289ec8a01c4cc0977c62e3fd32e89a8e3fd9e97c8d8fd646f632e63c055","a1107bbb2b10982dba1f7958a6a5cf841e1a19d6976d0ecdc4c43269c7b0eaf2","07fa6122f7495331f39167ec9e4ebd990146a20f99c16c17bc0a98aa81f63b27","39c1483481b35c2123eaab5094a8b548a0c3f1e483ab7338102c3291f1ab18bf","b73e6242c13796e7d5fba225bf1c07c8ee66d31b7bb65f45be14226a9ae492d2","f2931608d541145d189390d6cfb74e1b1e88f73c0b9a80c4356a4daa7fa5e005","8684656fe3bf1425a91bd62b8b455a1c7ec18b074fd695793cfae44ae02e381a","ccf0b9057dd65c7fb5e237de34f706966ebc30c6d3669715ed05e76225f54fbd","d930f077da575e8ea761e3d644d4c6279e2d847bae2b3ea893bbd572315acc21","19b0616946cb615abde72c6d69049f136cc4821b784634771c1d73bec8005f73","553312560ad0ef97b344b653931935d6e80840c2de6ab90b8be43cbacf0d04cf","07d4cdb1a845383da7ab950f5855ee441bd8a038c181d57f6b566822db80a972","f7cb9e46bd6ab9d620d68257b525dbbbbc9b0b148adf500b819d756ebc339de0","e46d6c3120aca07ae8ec3189edf518c667d027478810ca67a62431a0fa545434","9d234b7d2f662a135d430d3190fc21074325f296273125244b2bf8328b5839a0","0554ef14d10acea403348c53436b1dd8d61e7c73ef5872e2fe69cc1c433b02f8","2f6ae5538090db60514336bd1441ca208a8fab13108cfa4b311e61eaca5ff716","17bf4ce505a4cff88fb56177a8f7eb48aa55c22ccc4cce3e49cc5c8ddc54b07d","3d735f493d7da48156b79b4d8a406bf2bbf7e3fe379210d8f7c085028143ee40","41de1b3ddd71bd0d9ed7ac217ca1b15b177dd731d5251cde094945c20a715d03","17d9c562a46c6a25bc2f317c9b06dd4e8e0368cbe9bdf89be6117aeafd577b36","ded799031fe18a0bb5e78be38a6ae168458ff41b6c6542392b009d2abe6a6f32","ed48d467a7b25ee1a2769adebc198b647a820e242c96a5f96c1e6c27a40ab131","b914114df05f286897a1ae85d2df39cfd98ed8da68754d73cf830159e85ddd15","73881e647da3c226f21e0b80e216feaf14a5541a861494c744e9fbe1c3b3a6af","d79e1d31b939fa99694f2d6fbdd19870147401dbb3f42214e84c011e7ec359ab","4f71097eae7aa37941bab39beb2e53e624321fd341c12cc1d400eb7a805691ff","58ebb4f21f3a90dda31a01764462aa617849fdb1b592f3a8d875c85019956aff","a8e8d0e6efff70f3c28d3e384f9d64530c7a7596a201e4879a7fd75c7d55cbb5","df5cbb80d8353bf0511a4047cc7b8434b0be12e280b6cf3de919d5a3380912c0","256eb0520e822b56f720962edd7807ed36abdf7ea23bcadf4a25929a3317c8cf","9cf2cbc9ceb5f718c1705f37ce5454f14d3b89f690d9864394963567673c1b5c","07d3dd790cf1e66bb6fc9806d014dd40bb2055f8d6ca3811cf0e12f92ba4cb9a","1f99fd62e9cff9b50c36f368caf3b9fb79fc6f6c75ca5d3c2ec4afaea08d9109","6558faaacba5622ef7f1fdfb843cd967af2c105469b9ff5c18a81ce85178fca7","34e7f17ae9395b0269cd3f2f0af10709e6dc975c5b44a36b6b70442dc5e25a38","a4295111b54f84c02c27e46b0855b02fad3421ae1d2d7e67ecf16cb49538280a","ce9746b2ceae2388b7be9fe1f009dcecbc65f0bdbc16f40c0027fab0fb848c3b","35ce823a59f397f0e85295387778f51467cea137d787df385be57a2099752bfb","2e5acd3ec67bc309e4f679a70c894f809863c33b9572a8da0b78db403edfa106","1872f3fcea0643d5e03b19a19d777704320f857d1be0eb4ee372681357e20c88","9689628941205e40dcbb2706d1833bd00ce7510d333b2ef08be24ecbf3eb1a37","0317a72a0b63094781476cf1d2d27585d00eb2b0ca62b5287124735912f3d048","6ce4c0ab3450a4fff25d60a058a25039cffd03141549589689f5a17055ad0545","9153ec7b0577ae77349d2c5e8c5dd57163f41853b80c4fb5ce342c7a431cbe1e","f490dfa4619e48edd594a36079950c9fca1230efb3a82aaf325047262ba07379","674f00085caff46d2cbc76fc74740fd31f49d53396804558573421e138be0c12","41d029194c4811f09b350a1e858143c191073007a9ee836061090ed0143ad94f","44a6259ffd6febd8510b9a9b13a700e1d022530d8b33663f0735dbb3bee67b3d","6f4322500aff8676d9b8eef7711c7166708d4a0686b792aa4b158e276ed946a7","e829ff9ecffa3510d3a4d2c3e4e9b54d4a4ccfef004bacbb1d6919ce3ccca01f","62e6fec9dbd012460b47af7e727ec4cd34345b6e4311e781f040e6b640d7f93e","4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","f1142cbba31d7f492d2e7c91d82211a8334e6642efe52b71d9a82cb95ba4e8ae","279cac827be5d48c0f69fe319dc38c876fdd076b66995d9779c43558552d8a50","a70ff3c65dc0e7213bfe0d81c072951db9f5b1e640eb66c1eaed0737879c797b","f75d3303c1750f4fdacd23354657eca09aae16122c344e65b8c14c570ff67df5","3ebae6a418229d4b303f8e0fdb14de83f39fba9f57b39d5f213398bca72137c7","21ba07e33265f59d52dece5ac44f933b2b464059514587e64ad5182ddf34a9b0","2d3d96efba00493059c460fd55e6206b0667fc2e73215c4f1a9eb559b550021f","d23d4a57fff5cec5607521ba3b72f372e3d735d0f6b11a4681655b0bdd0505f4","395c1f3da7e9c87097c8095acbb361541480bf5fd7fa92523985019fef7761dd","d61f3d719293c2f92a04ba73d08536940805938ecab89ac35ceabc8a48ccb648","ca693235a1242bcd97254f43a17592aa84af66ccb7497333ccfea54842fde648","cd41cf040b2e368382f2382ec9145824777233730e3965e9a7ba4523a6a4698e","2e7a9dba6512b0310c037a28d27330520904cf5063ca19f034b74ad280dbfe71","9f2a38baf702e6cb98e0392fa39d25a64c41457a827b935b366c5e0980a6a667","c1dc37f0e7252928f73d03b0d6b46feb26dea3d8737a531ca4c0ec4105e33120","25126b80243fb499517e94fc5afe5c9c5df3a0105618e33581fb5b2f2622f342","d332c2ddcb64012290eb14753c1b49fe3eee9ca067204efba1cf31c1ce1ee020","1be8da453470021f6fe936ba19ee0bfebc7cfa2406953fa56e78940467c90769","d0163ab7b0de6e23b8562af8b5b4adea4182884ca7543488f7ac2a3478f3ae6e","05224e15c6e51c4c6cd08c65f0766723f6b39165534b67546076c226661db691","a5f7158823c7700dd9fc1843a94b9edc309180c969fbfa6d591aeb0b33d3b514","7d30937f8cf9bb0d4b2c2a8fb56a415d7ef393f6252b24e4863f3d7b84285724","e04d074584483dc9c59341f9f36c7220f16eed09f7af1fa3ef9c64c26095faec","619697e06cbc2c77edda949a83a62047e777efacde1433e895b904fe4877c650","88d9a8593d2e6aee67f7b15a25bda62652c77be72b79afbee52bea61d5ffb39e","044d7acfc9bd1af21951e32252cf8f3a11c8b35a704169115ddcbde9fd717de2","a4ca8f13a91bd80e6d7a4f013b8a9e156fbf579bbec981fe724dad38719cfe01","5a216426a68418e37e55c7a4366bc50efc99bda9dc361eae94d7e336da96c027","13b65b640306755096d304e76d4a237d21103de88b474634f7ae13a2fac722d5","7478bd43e449d3ce4e94f3ed1105c65007b21f078b3a791ea5d2c47b30ea6962","601d3e8e71b7d6a24fc003aca9989a6c25fa2b3755df196fd0aaee709d190303","168e0850fcc94011e4477e31eca81a8a8a71e1aed66d056b7b50196b877e86c8","37ba82d63f5f8c6b4fc9b756f24902e47f62ea66aae07e89ace445a54190a86e","f5b66b855f0496bc05f1cd9ba51a6a9de3d989b24aa36f6017257f01c8b65a9f","823b16d378e8456fcc5503d6253c8b13659be44435151c6b9f140c4a38ec98c1","b58b254bf1b586222844c04b3cdec396e16c811463bf187615bb0a1584beb100","a367c2ccfb2460e222c5d10d304e980bd172dd668bcc02f6c2ff626e71e90d75","0718623262ac94b016cb0cfd8d54e4d5b7b1d3941c01d85cf95c25ec1ba5ed8d","d4f3c9a0bd129e9c7cbfac02b6647e34718a2b81a414d914e8bd6b76341172e0","824306df6196f1e0222ff775c8023d399091ada2f10f2995ce53f5e3d4aff7a4","84ca07a8d57f1a6ba8c0cf264180d681f7afae995631c6ca9f2b85ec6ee06c0f","35755e61e9f4ec82d059efdbe3d1abcccc97a8a839f1dbf2e73ac1965f266847","64a918a5aa97a37400ec085ffeea12a14211aa799cd34e5dc828beb1806e95bb","0c8f5489ba6af02a4b1d5ba280e7badd58f30dc8eb716113b679e9d7c31185e5","3334c03c15102700973e3e334954ac1dffb7be7704c67cc272822d5895215c93","7b574ca9ae0417203cdfa621ab1585de5b90c4bc6eea77a465b2eb8b92aa5380","aabcb169451df7f78eb43567fab877a74d134a0a6d9850aa58b38321374ab7c0","1b5effdd8b4e8d9897fc34ab4cd708a446bf79db4cb9a3467e4a30d55b502e14","d772776a7aea246fd72c5818de72c3654f556b2cf0d73b90930c9c187cc055fc","dbd4bd62f433f14a419e4c6130075199eb15f2812d2d8e7c9e1f297f4daac788","427df949f5f10c73bcc77b2999893bc66c17579ad073ee5f5270a2b30651c873","c4c1a5565b9b85abfa1d663ca386d959d55361e801e8d49155a14dd6ca41abe1","7a45a45c277686aaff716db75a8157d0458a0d854bacf072c47fee3d499d7a99","57005b72bce2dc26293e8924f9c6be7ee3a2c1b71028a680f329762fa4439354","8f53b1f97c53c3573c16d0225ee3187d22f14f01421e3c6da1a26a1aace32356","810fdc0e554ed7315c723b91f6fa6ef3a6859b943b4cd82879641563b0e6c390","87a36b177b04d23214aa4502a0011cd65079e208cd60654aefc47d0d65da68ea","28a1c17fcbb9e66d7193caca68bbd12115518f186d90fc729a71869f96e2c07b","cc2d2abbb1cc7d6453c6fee760b04a516aa425187d65e296a8aacff66a49598a","d2413645bc4ab9c3f3688c5281232e6538684e84b49a57d8a1a8b2e5cf9f2041","4e6e21a0f9718282d342e66c83b2cd9aa7cd777dfcf2abd93552da694103b3dc","9006cc15c3a35e49508598a51664aa34ae59fc7ab32d6cc6ea2ec68d1c39448e","74467b184eadee6186a17cac579938d62eceb6d89c923ae67d058e2bcded254e","4169b96bb6309a2619f16d17307da341758da2917ff40c615568217b14357f5e","4a94d6146b38050de0830019a1c6a7820c2e2b90eba1a5ee4e4ab3bc30a72036","903e5ecbc1a8932bff30cc8d38addc4a58108688f9c5c107bd030fd8cccedcdc",{"version":"bfd6155c5630eabf4c5e171eb3db570a0be9437617b08f3c3c89eb9d0a21439c","signature":"362011517f4409d6c74122d9bc0b43df729a33214393dc9290e962e63f3c230b"},{"version":"26e4ca4b5544f7204e8b68e226c2ff143dfcd3a0c3d238fe869a0c032def307a","signature":"015316555055805343eb0a3f20cfc8f229f42ec574b0efa3116408a8d0fb6cfe"},{"version":"0bcb0564a7f2858f4706997413b20c56a24a269be5bacf41a900a513d5af331f","signature":"b430d34c7f9f7f19a1fd228a265db35828c76016647616fef31df12fb18b6dad"},{"version":"6a87499eaec59e1e933dcd73daa1807cb890174a2f4ba559202a49c5bb13ae08","signature":"645f91e7f0f51cad1c7ae42c390806cb5e5d8508a54fcddd98ca0385f950dd99"},{"version":"afb0a8d2124b4e985aa7af5c37611ed700137340b2300ed6d9756fe3ba785648","signature":"7062cf8864d3a49c52a170c8bae6e02ce3bba5d7cd7320532be29ce4011b39db"},{"version":"84645ff5a1e838f1850695088bc24f498d0a9fa368fe0d23737e8583223bbb3d","signature":"4c21e338158d696e6dfaab8b2f8badc7d590294b93187c787b40c6099f0da732"},"05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","6d1f118cfbf15c813f578cf6b87da76d075698bf7db964cb7c3d75f0309652f7","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","a9e5489311de854cb96bfcf5eaf969c9b322c658e3575f30e03180e4d4ca3994","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","7179b6924a816d72bf206803d8cdc27ccc14f02f2d4f4145d5183eb083f5bf17","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","e56a260134af75a771b5e19534d30007034e2757183546193f8b191683c6b2b9","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","46d98d129de9914564a5c8909c9098175c5896919e8e698d206cfffdfa7c3999","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","4d0fbdd66030d1055e9f355a87e230a7ab9f1803589428676fa58ab9cd1d781c","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","171109b02b7c87120b262c5ca0ccb9ecbc88ad92f81eb4e62b7ef6237f0fc9e2",{"version":"ba538c65b4b6b0cc43be79dde10bf6c91260665b5745fcc691270e589458e7a5","signature":"0fef6f40aa9f791c6d553f165eb588e25f6718c0a96961629dc05dae3bcdfcf0"},{"version":"99f70bbff7e168baab3de0c30d81aad91c3446ce5f0ecbde337c95033f842f71","signature":"ead2cc87cf4eeb6d50916841209aaabee2c6a6b08593a348356208f59cb83257"},{"version":"389ab2e9b7be8c60621ff4ddefad6c558458f4ecc4d00af3c9883cd529fa2541","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b3a112f3605a9f9f2d280f78ebbc32ea24a7ef79f5301be230dffe8f11022392","02e9dbade17e9f72fc5cf40976f1c2e50eccf7aba591a4c2c25d22a0e82f003c","6f9b63ed4638f2c42e73aba308934d9a9abb03ccebb23d6c02285b3a3a9f48c3","a4dd1be3882ccadefa3e20e62d5af092c2bbe2b04cabf7d0d4ff4084900a9d54","51d1ed7b6adb38ffa0ee3710b1b12d297986a7b0d0448118823a8b9be80d738b","7ef9689059f42ecb6e16da542b861fb3d2a1f6fe4c37d418a8cef3f478b1087e",{"version":"88133671c42b9c84360224f894e3f47d22f52e2176dc4f0ac6ca67b913bf376c","signature":"4cb142e3109eedfda69fbf2479cb400e123b6430033c2602f25d86d5e2a4f7d3"},{"version":"2d6aba975864860ac0ea761d4bc25423800a7e7aa4547a6e91181533d973be1f","signature":"bb364cce1c0dfc056edf2b5b1b93661f2641ee7ff7f60c89f3244a499f92c1ef"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","025fc13211ed47d2798269017af3ec869122a050d5431a6ad3c1997900e65c58","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"40b991dc3365179e1365643589e168d7ea0588b4dd5bbb3a974ffefa7cb05e7f","bf057bb805c5e1c0e795ac7c759d40ebbe0e9894df9be3413bbdd8d1a2fc229e","74f2bb83d1ccf390f48681be57a30c09e85b4c7a801267746e382b2386fc667e","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","5d357e7965026197a3152fa4e990fa7a4cbaf1578a17dff920ff1a71a325e198","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","70caef0271088abc5f5ae7ff6d84421d35bb192b690fbaa1b2ecf2b0ef01deb6",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[554],[49,554],[131,554],[49,131,554],[49,131,139,554],[47,48,554],[54,554],[46,49,50,554],[72,554],[171,172,173,174,175,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,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,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,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,554],[60,62,63,64,65,66,67,68,69,70,71,72,554],[60,61,63,64,65,66,67,68,69,70,71,72,554],[61,62,63,64,65,66,67,68,69,70,71,72,554],[60,61,62,64,65,66,67,68,69,70,71,72,554],[60,61,62,63,65,66,67,68,69,70,71,72,554],[60,61,62,63,64,66,67,68,69,70,71,72,554],[60,61,62,63,64,65,67,68,69,70,71,72,554],[60,61,62,63,64,65,66,68,69,70,71,72,554],[60,61,62,63,64,65,66,67,69,70,71,72,554],[60,61,62,63,64,65,66,67,68,70,71,72,554],[60,61,62,63,64,65,66,67,68,69,71,72,554],[60,61,62,63,64,65,66,67,68,69,70,72,554],[60,61,62,63,64,65,66,67,68,69,70,71,554],[510,554],[513,554],[514,519,554],[515,525,526,533,542,553,554],[515,516,525,533,554],[517,554],[518,519,526,534,554],[519,542,550,554],[520,522,525,533,554],[521,554],[522,523,554],[524,525,554],[525,554],[525,526,527,542,553,554],[525,526,527,542,545,554],[554,558],[528,533,542,553,554],[525,526,528,529,533,542,550,553,554],[528,530,542,550,553,554],[510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560],[525,531,554],[532,553,554],[522,525,533,542,554],[534,554],[535,554],[513,536,554],[537,552,554,558],[538,554],[539,554],[525,540,554],[540,541,554,556],[525,542,543,544,545,554],[542,544,554],[542,543,554],[545,554],[546,554],[525,548,549,554],[548,549,554],[519,533,542,550,554],[551,554],[533,552,554],[514,528,539,553,554],[519,554],[542,554,555],[554,556],[554,557],[514,519,525,527,536,542,553,554,556,558],[542,554,559],[43,554],[505,554],[502,503,504,554],[503,554],[506,554],[46,49,554],[46,554],[44,45,554],[132,133,134,135,136,137,138,139,140,554],[129,554],[103,554],[51,103,554],[53,55,554],[46,51,55,75,88,554],[46,51,52,53,55,86,87,103,554],[46,51,56,72,103,554],[46,51,55,103,554],[46,51,59,73,74,75,103,554],[46,51,76,80,81,82,83,103,554],[46,51,55,75,79,554],[46,51,55,77,78,86,103,554],[46,51,83,103,107,554],[46,51,89,103,554],[46,51,103,105,106,554],[90,91,92,554],[46,90,554],[46,51,56,103,554],[90,103,554],[46,51,55,554],[94,95,96,97,98,99,100,554],[124,554],[126,554],[122,554],[84,86,93,101,103,104,108,121,123,125,127,128,554],[58,85,554],[46,51,55,58,84,554],[46,51,55,56,103,554],[46,51,55,56,57,103,554],[109,110,111,112,113,114,115,116,117,118,119,120,554],[46,51,102,554],[102,103,554],[46,52,53,56,77,78,79,88,89,93,101,102,554],[42,130,163,165,475,477,478,480,499,500,554],[42,51,130,141,147,154,162,554],[42,51,130,141,147,154,164,554],[42,51,130,141,147,154,169,170,474,554],[42,51,130,141,147,154,474,476,554],[42,51,130,141,554],[42,51,130,141,147,154,474,479,554],[42,51,130,142,498,507,554],[42,51,130,142,498,554],[42,51,130,554],[42,51,141,168,554],[42,51,141,147,154,161,554],[42,51,55,130,141,147,161,163,165,168,475,477,480,499,554],[142,554],[143,144,145,146,554],[51,142,554],[46,51,554],[148,149,150,151,153,554],[51,152,554],[46,51,55,148,554],[46,51,148,554],[46,51,150,554],[166,167,554],[51,166,554],[51,554],[155,156,157,158,159,160,554],[481,482,483,484,485,486,487,488,489,490,493,494,495,496,497,554],[491,492,554],[492,554],[491,554],[46,130,162],[46,130,164],[46,130,169,170],[46,130,476],[46,130],[46,130,479],[130],[46,51],[51,55,130]],"referencedMap":[[47,1],[131,2],[132,3],[135,4],[133,4],[137,4],[140,5],[139,1],[138,4],[136,4],[134,3],[48,1],[49,6],[55,7],[54,8],[171,9],[172,9],[173,9],[174,9],[175,9],[176,9],[177,9],[178,9],[179,9],[180,9],[181,9],[182,9],[183,9],[184,9],[185,9],[186,9],[187,9],[188,9],[189,9],[190,9],[191,9],[192,9],[193,9],[194,9],[195,9],[196,9],[197,9],[198,9],[199,9],[200,9],[201,9],[202,9],[203,9],[204,9],[205,9],[206,9],[208,9],[209,9],[207,9],[210,9],[211,9],[212,9],[213,9],[214,9],[215,9],[216,9],[217,9],[218,9],[219,9],[220,9],[221,9],[222,9],[223,9],[224,9],[225,9],[226,9],[227,9],[228,9],[229,9],[230,9],[231,9],[232,9],[233,9],[234,9],[235,9],[236,9],[237,9],[238,9],[239,9],[240,9],[241,9],[242,9],[243,9],[244,9],[245,9],[246,9],[247,9],[248,9],[249,9],[250,9],[251,9],[252,9],[253,9],[254,9],[255,9],[256,9],[257,9],[258,9],[259,9],[260,9],[261,9],[262,9],[263,9],[264,9],[265,9],[266,9],[268,9],[474,10],[269,9],[270,9],[267,9],[271,9],[272,9],[273,9],[274,9],[275,9],[276,9],[277,9],[278,9],[279,9],[280,9],[281,9],[282,9],[283,9],[284,9],[285,9],[286,9],[287,9],[288,9],[289,9],[290,9],[291,9],[292,9],[293,9],[294,9],[295,9],[296,9],[297,9],[298,9],[299,9],[300,9],[301,9],[302,9],[303,9],[304,9],[305,9],[306,9],[307,9],[308,9],[309,9],[310,9],[311,9],[312,9],[313,9],[314,9],[315,9],[316,9],[317,9],[318,9],[319,9],[320,9],[321,9],[322,9],[323,9],[324,9],[325,9],[326,9],[327,9],[328,9],[329,9],[330,9],[331,9],[332,9],[333,9],[334,9],[335,9],[336,9],[337,9],[338,9],[339,9],[340,9],[341,9],[342,9],[343,9],[344,9],[345,9],[346,9],[347,9],[348,9],[349,9],[350,9],[351,9],[352,9],[353,9],[354,9],[355,9],[356,9],[357,9],[358,9],[359,9],[360,9],[361,9],[362,9],[363,9],[364,9],[365,9],[366,9],[367,9],[368,9],[369,9],[370,9],[371,9],[372,9],[373,9],[374,9],[375,9],[376,9],[377,9],[378,9],[379,9],[380,9],[381,9],[382,9],[383,9],[384,9],[385,9],[386,9],[387,9],[388,9],[389,9],[390,9],[391,9],[392,9],[393,9],[394,9],[395,9],[396,9],[397,9],[398,9],[399,9],[400,9],[401,9],[402,9],[403,9],[404,9],[405,9],[406,9],[407,9],[408,9],[409,9],[410,9],[411,9],[412,9],[413,9],[414,9],[415,9],[416,9],[417,9],[418,9],[419,9],[420,9],[421,9],[422,9],[423,9],[424,9],[425,9],[426,9],[427,9],[428,9],[429,9],[430,9],[431,9],[432,9],[433,9],[434,9],[435,9],[436,9],[437,9],[438,9],[439,9],[440,9],[441,9],[442,9],[443,9],[444,9],[445,9],[446,9],[447,9],[448,9],[449,9],[450,9],[451,9],[452,9],[454,9],[453,9],[455,9],[456,9],[457,9],[458,9],[459,9],[460,9],[461,9],[462,9],[463,9],[464,9],[465,9],[466,9],[467,9],[468,9],[469,9],[470,9],[471,9],[472,9],[473,9],[61,11],[62,12],[60,13],[63,14],[64,15],[65,16],[66,17],[67,18],[68,19],[69,20],[70,21],[71,22],[72,23],[562,1],[510,24],[511,24],[513,25],[514,26],[515,27],[516,28],[517,29],[518,30],[519,31],[520,32],[521,33],[522,34],[523,34],[524,35],[525,36],[526,37],[527,38],[512,39],[560,1],[528,40],[529,41],[530,42],[561,43],[531,44],[532,45],[533,46],[534,47],[535,48],[536,49],[537,50],[538,51],[539,52],[540,53],[541,54],[542,55],[544,56],[543,57],[545,58],[546,59],[547,1],[548,60],[549,61],[550,62],[551,63],[552,64],[553,65],[554,66],[555,67],[556,68],[557,69],[558,70],[559,71],[44,72],[43,1],[506,73],[505,74],[503,1],[504,75],[502,1],[507,76],[142,1],[50,77],[45,78],[46,79],[141,80],[51,8],[42,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[130,81],[104,82],[52,83],[87,84],[53,83],[81,85],[88,86],[83,82],[73,87],[56,83],[74,88],[59,88],[76,89],[84,90],[78,83],[77,83],[80,91],[79,92],[75,83],[108,93],[106,94],[107,95],[89,83],[105,1],[93,96],[92,97],[90,98],[91,99],[82,100],[97,82],[96,82],[98,82],[99,82],[95,82],[100,83],[101,101],[94,82],[125,102],[124,1],[127,103],[126,82],[123,104],[122,82],[129,105],[86,106],[85,107],[57,108],[58,109],[121,110],[110,82],[111,82],[112,82],[119,82],[118,82],[120,82],[113,82],[114,82],[115,111],[117,82],[116,82],[102,98],[109,112],[128,83],[103,113],[501,114],[163,115],[165,116],[475,117],[477,118],[478,119],[480,120],[508,121],[499,122],[500,123],[169,124],[162,125],[164,125],[170,125],[476,125],[479,125],[509,126],[143,127],[147,128],[144,129],[146,130],[145,130],[154,131],[153,132],[152,100],[149,133],[150,134],[151,135],[148,130],[168,136],[167,137],[166,1],[159,1],[160,138],[155,138],[161,139],[156,138],[157,138],[158,138],[496,1],[494,1],[489,1],[483,1],[490,1],[482,1],[495,1],[486,1],[498,140],[497,1],[484,1],[487,1],[488,1],[481,1],[485,1],[493,141],[491,142],[492,143]],"exportedModulesMap":[[47,1],[131,2],[132,3],[135,4],[133,4],[137,4],[140,5],[139,1],[138,4],[136,4],[134,3],[48,1],[49,6],[55,7],[54,8],[171,9],[172,9],[173,9],[174,9],[175,9],[176,9],[177,9],[178,9],[179,9],[180,9],[181,9],[182,9],[183,9],[184,9],[185,9],[186,9],[187,9],[188,9],[189,9],[190,9],[191,9],[192,9],[193,9],[194,9],[195,9],[196,9],[197,9],[198,9],[199,9],[200,9],[201,9],[202,9],[203,9],[204,9],[205,9],[206,9],[208,9],[209,9],[207,9],[210,9],[211,9],[212,9],[213,9],[214,9],[215,9],[216,9],[217,9],[218,9],[219,9],[220,9],[221,9],[222,9],[223,9],[224,9],[225,9],[226,9],[227,9],[228,9],[229,9],[230,9],[231,9],[232,9],[233,9],[234,9],[235,9],[236,9],[237,9],[238,9],[239,9],[240,9],[241,9],[242,9],[243,9],[244,9],[245,9],[246,9],[247,9],[248,9],[249,9],[250,9],[251,9],[252,9],[253,9],[254,9],[255,9],[256,9],[257,9],[258,9],[259,9],[260,9],[261,9],[262,9],[263,9],[264,9],[265,9],[266,9],[268,9],[474,10],[269,9],[270,9],[267,9],[271,9],[272,9],[273,9],[274,9],[275,9],[276,9],[277,9],[278,9],[279,9],[280,9],[281,9],[282,9],[283,9],[284,9],[285,9],[286,9],[287,9],[288,9],[289,9],[290,9],[291,9],[292,9],[293,9],[294,9],[295,9],[296,9],[297,9],[298,9],[299,9],[300,9],[301,9],[302,9],[303,9],[304,9],[305,9],[306,9],[307,9],[308,9],[309,9],[310,9],[311,9],[312,9],[313,9],[314,9],[315,9],[316,9],[317,9],[318,9],[319,9],[320,9],[321,9],[322,9],[323,9],[324,9],[325,9],[326,9],[327,9],[328,9],[329,9],[330,9],[331,9],[332,9],[333,9],[334,9],[335,9],[336,9],[337,9],[338,9],[339,9],[340,9],[341,9],[342,9],[343,9],[344,9],[345,9],[346,9],[347,9],[348,9],[349,9],[350,9],[351,9],[352,9],[353,9],[354,9],[355,9],[356,9],[357,9],[358,9],[359,9],[360,9],[361,9],[362,9],[363,9],[364,9],[365,9],[366,9],[367,9],[368,9],[369,9],[370,9],[371,9],[372,9],[373,9],[374,9],[375,9],[376,9],[377,9],[378,9],[379,9],[380,9],[381,9],[382,9],[383,9],[384,9],[385,9],[386,9],[387,9],[388,9],[389,9],[390,9],[391,9],[392,9],[393,9],[394,9],[395,9],[396,9],[397,9],[398,9],[399,9],[400,9],[401,9],[402,9],[403,9],[404,9],[405,9],[406,9],[407,9],[408,9],[409,9],[410,9],[411,9],[412,9],[413,9],[414,9],[415,9],[416,9],[417,9],[418,9],[419,9],[420,9],[421,9],[422,9],[423,9],[424,9],[425,9],[426,9],[427,9],[428,9],[429,9],[430,9],[431,9],[432,9],[433,9],[434,9],[435,9],[436,9],[437,9],[438,9],[439,9],[440,9],[441,9],[442,9],[443,9],[444,9],[445,9],[446,9],[447,9],[448,9],[449,9],[450,9],[451,9],[452,9],[454,9],[453,9],[455,9],[456,9],[457,9],[458,9],[459,9],[460,9],[461,9],[462,9],[463,9],[464,9],[465,9],[466,9],[467,9],[468,9],[469,9],[470,9],[471,9],[472,9],[473,9],[61,11],[62,12],[60,13],[63,14],[64,15],[65,16],[66,17],[67,18],[68,19],[69,20],[70,21],[71,22],[72,23],[562,1],[510,24],[511,24],[513,25],[514,26],[515,27],[516,28],[517,29],[518,30],[519,31],[520,32],[521,33],[522,34],[523,34],[524,35],[525,36],[526,37],[527,38],[512,39],[560,1],[528,40],[529,41],[530,42],[561,43],[531,44],[532,45],[533,46],[534,47],[535,48],[536,49],[537,50],[538,51],[539,52],[540,53],[541,54],[542,55],[544,56],[543,57],[545,58],[546,59],[547,1],[548,60],[549,61],[550,62],[551,63],[552,64],[553,65],[554,66],[555,67],[556,68],[557,69],[558,70],[559,71],[44,72],[43,1],[506,73],[505,74],[503,1],[504,75],[502,1],[507,76],[142,1],[50,77],[45,78],[46,79],[141,80],[51,8],[42,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[130,81],[104,82],[52,83],[87,84],[53,83],[81,85],[88,86],[83,82],[73,87],[56,83],[74,88],[59,88],[76,89],[84,90],[78,83],[77,83],[80,91],[79,92],[75,83],[108,93],[106,94],[107,95],[89,83],[105,1],[93,96],[92,97],[90,98],[91,99],[82,100],[97,82],[96,82],[98,82],[99,82],[95,82],[100,83],[101,101],[94,82],[125,102],[124,1],[127,103],[126,82],[123,104],[122,82],[129,105],[86,106],[85,107],[57,108],[58,109],[121,110],[110,82],[111,82],[112,82],[119,82],[118,82],[120,82],[113,82],[114,82],[115,111],[117,82],[116,82],[102,98],[109,112],[128,83],[103,113],[163,144],[165,145],[475,146],[477,147],[478,148],[480,149],[508,150],[499,150],[500,150],[162,151],[164,151],[170,151],[476,151],[479,151],[509,152],[143,127],[147,128],[144,129],[146,130],[145,130],[154,131],[153,132],[152,100],[149,133],[150,134],[151,135],[148,130],[168,136],[167,137],[166,1],[159,1],[160,138],[155,138],[161,139],[156,138],[157,138],[158,138],[496,1],[494,1],[489,1],[483,1],[490,1],[482,1],[495,1],[486,1],[498,140],[497,1],[484,1],[487,1],[488,1],[481,1],[485,1],[493,141],[491,142],[492,143]],"semanticDiagnosticsPerFile":[47,131,132,135,133,137,140,139,138,136,134,48,49,55,54,171,172,173,174,175,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,208,209,207,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,474,269,270,267,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,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,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,454,453,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,61,62,60,63,64,65,66,67,68,69,70,71,72,562,510,511,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,512,560,528,529,530,561,531,532,533,534,535,536,537,538,539,540,541,542,544,543,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,44,43,506,505,503,504,502,507,142,50,45,46,141,51,42,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,130,104,52,87,53,81,88,83,73,56,74,59,76,84,78,77,80,79,75,108,106,107,89,105,93,92,90,91,82,97,96,98,99,95,100,101,94,125,124,127,126,123,122,129,86,85,57,58,121,110,111,112,119,118,120,113,114,115,117,116,102,109,128,103,501,163,165,475,477,478,480,508,499,500,169,162,164,170,476,479,509,143,147,144,146,145,154,153,152,149,150,151,148,168,167,166,159,160,155,161,156,157,158,496,494,489,483,490,482,495,486,498,497,484,487,488,481,485,493,491,492]},"version":"4.7.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/grist-editor",
3
- "version": "1.0.0-beta.43",
3
+ "version": "1.0.0-beta.46",
4
4
  "description": "Webcomponent for grist-editor following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "license": "MIT",
@@ -19,14 +19,13 @@
19
19
  ".": "./dist/src/index.js",
20
20
  "./ox-grist-editor-duration.js": "./dist/src/ox-grist-editor-duration.js",
21
21
  "./ox-grist-editor-crontab.js": "./dist/src/ox-grist-editor-crontab.js",
22
- "./ox-grist-renderer-crontab.js": "./dist/src/ox-grist-renderer-crontab.js",
23
- "./ox-grist-editor-json.js": "./dist/src/ox-grist-editor-json.js",
24
- "./ox-grist-editor-code.js": "./dist/src/ox-grist-editor-code.js",
25
- "./ox-grist-editor-resource-object.js": "./dist/src/ox-grist-editor-resource-object.js",
26
- "./ox-grist-editor-resource-code.js": "./dist/src/ox-grist-editor-resource-code.js",
27
22
  "./ox-grist-editor-parameters.js": "./dist/src/ox-grist-editor-parameters.js",
28
23
  "./ox-grist-editor-value-map.js": "./dist/src/ox-grist-editor-value-map.js",
29
- "./ox-grist-editor-partition-keys.js": "./dist/src/ox-grist-editor-partition-keys.js"
24
+ "./ox-grist-editor-partition-keys.js": "./dist/src/ox-grist-editor-partition-keys.js",
25
+ "./ox-grist-editor-quantifier.js": "./dist/src/ox-grist-editor-quantifier.js",
26
+ "./ox-grist-renderer-crontab.js": "./dist/src/ox-grist-renderer-crontab.js",
27
+ "./ox-grist-renderer-duration.js": "./dist/src/ox-grist-renderer-duration.js",
28
+ "./ox-grist-renderer-quantifier.js": "./dist/src/ox-grist-renderer-quantifier.js"
30
29
  },
31
30
  "scripts": {
32
31
  "analyze": "cem analyze --litelement",
@@ -41,28 +40,28 @@
41
40
  "storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
42
41
  },
43
42
  "dependencies": {
44
- "@material/mwc-button": "^0.25.3",
45
- "@material/mwc-icon": "^0.25.3",
46
- "@material/mwc-icon-button": "^0.25.3",
47
- "@operato/data-grist": "^1.0.0-beta.43",
48
- "@operato/help": "^1.0.0-beta.43",
49
- "@operato/i18n": "^1.0.0-beta.43",
50
- "@operato/input": "^1.0.0-beta.43",
51
- "@operato/popup": "^1.0.0-beta.43",
52
- "@operato/property-editor": "^1.0.0-beta.43",
53
- "@operato/styles": "^1.0.0-beta.43",
43
+ "@material/mwc-button": "^0.26.1",
44
+ "@material/mwc-icon": "^0.26.1",
45
+ "@material/mwc-icon-button": "^0.26.1",
46
+ "@operato/data-grist": "^1.0.0-beta.46",
47
+ "@operato/help": "^1.0.0-beta.46",
48
+ "@operato/i18n": "^1.0.0-beta.46",
49
+ "@operato/input": "^1.0.0-beta.46",
50
+ "@operato/popup": "^1.0.0-beta.46",
51
+ "@operato/property-editor": "^1.0.0-beta.46",
52
+ "@operato/styles": "^1.0.0-beta.46",
54
53
  "codemirror": "^5.64.0",
55
54
  "codemirror-graphql": "^0.15.2",
56
55
  "cronstrue": "^2.2.0",
57
56
  "cross-fetch": "^3.1.5",
58
- "lit": "^2.2.1",
57
+ "lit": "^2.2.7",
59
58
  "lodash-es": "^4.17.21"
60
59
  },
61
60
  "devDependencies": {
62
61
  "@custom-elements-manifest/analyzer": "^0.4.17",
63
62
  "@hatiolab/prettier-config": "^1.0.0",
64
- "@material/mwc-fab": "^0.25.3",
65
- "@material/mwc-icon": "^0.25.3",
63
+ "@material/mwc-fab": "^0.26.1",
64
+ "@material/mwc-icon": "^0.26.1",
66
65
  "@open-wc/eslint-config": "^4.3.0",
67
66
  "@open-wc/testing": "^3.0.4",
68
67
  "@types/bwip-js": "^2.1.1",
@@ -95,5 +94,5 @@
95
94
  "prettier --write"
96
95
  ]
97
96
  },
98
- "gitHead": "0805780f1672520727db26192475facdadeda165"
97
+ "gitHead": "19717a13b7eec1de312e41db7d5a2653765c976d"
99
98
  }
package/src/index.ts CHANGED
@@ -4,7 +4,10 @@ import { OxGristEditorCrontab } from './ox-grist-editor-crontab.js'
4
4
  import { OxGristEditorDuration } from './ox-grist-editor-duration.js'
5
5
  import { OxGristEditorParameters } from './ox-grist-editor-parameters.js'
6
6
  import { OxGristEditorPartitionKeys } from './ox-grist-editor-partition-keys.js'
7
+ import { OxGristEditorQuantifier } from './ox-grist-editor-quantifier.js'
7
8
  import { OxGristEditorValueMap } from './ox-grist-editor-value-map.js'
9
+ import { OxGristRendererDuration } from './ox-grist-renderer-duration.js'
10
+ import { OxGristRendererQuantifier } from './ox-grist-renderer-quantifier'
8
11
 
9
12
  /* register grist renderer/editor for id */
10
13
  registerEditor('parameters', OxGristEditorParameters)
@@ -12,7 +15,10 @@ registerEditor('value-map', OxGristEditorValueMap)
12
15
  registerEditor('partition-keys', OxGristEditorPartitionKeys)
13
16
  registerEditor('crontab', OxGristEditorCrontab)
14
17
  registerEditor('duration', OxGristEditorDuration)
18
+ registerEditor('quantifier', OxGristEditorQuantifier)
15
19
 
16
20
  registerRenderer('parameters', OxGristRendererJson5)
17
21
  registerRenderer('value-map', OxGristRendererJson5)
18
22
  registerRenderer('partition-keys', OxGristRendererJson5)
23
+ registerRenderer('duration', OxGristRendererDuration)
24
+ registerRenderer('quantifier', OxGristRendererQuantifier)
@@ -0,0 +1,13 @@
1
+ import '@operato/input/ox-input-quantifier.js'
2
+
3
+ import { html } from 'lit'
4
+ import { customElement } from 'lit/decorators.js'
5
+
6
+ import { OxGristEditor } from '@operato/data-grist'
7
+
8
+ @customElement('ox-grist-editor-quantifier')
9
+ export class OxGristEditorQuantifier extends OxGristEditor {
10
+ get editorTemplate() {
11
+ return html` <ox-input-quantifier .value=${this.value} /> `
12
+ }
13
+ }
@@ -0,0 +1,44 @@
1
+ import i18next from 'i18next'
2
+ import { html } from 'lit'
3
+
4
+ import { FieldRenderer } from '@operato/data-grist'
5
+ import { detectOverflow } from '@operato/utils'
6
+
7
+ function onmouseover(e: Event) {
8
+ const element = e.target as HTMLSpanElement
9
+ if (detectOverflow(element)) {
10
+ element.setAttribute('data-tooltip', element.textContent!)
11
+ }
12
+ }
13
+
14
+ function onmouseout(e: Event) {
15
+ const element = e.target as HTMLSpanElement
16
+ element.removeAttribute('data-tooltip')
17
+ }
18
+
19
+ export const OxGristRendererDuration: FieldRenderer = (value, column, record, rowIndex, field) => {
20
+ var text = ''
21
+
22
+ try {
23
+ var secs = Number(value) || 0
24
+ var positive = secs >= 0
25
+
26
+ secs = Math.abs(secs)
27
+ const days = Math.floor(secs / (3600 * 24))
28
+ secs -= days * 24 * 3600
29
+ const hours = Math.floor(secs / 3600)
30
+ secs -= hours * 3600
31
+ const minutes = Math.floor(secs / 60)
32
+ const seconds = secs - minutes * 60
33
+
34
+ text = `${positive ? '' : '- '}${days ? `${days}${i18next.t('label.days')} ` : ''}${
35
+ hours ? `${hours}${i18next.t('label.hours')} ` : ''
36
+ }${minutes ? `${minutes}${i18next.t('label.minutes')} ` : ''}${
37
+ seconds ? `${seconds}${i18next.t('label.seconds')}` : ''
38
+ }`.trim()
39
+ } catch (e) {
40
+ console.error(e)
41
+ }
42
+
43
+ return html`<span @mouseover=${onmouseover} @mouseout=${onmouseout}>${text}</span>`
44
+ }
@@ -0,0 +1,9 @@
1
+ import { html } from 'lit'
2
+
3
+ import { FieldRenderer } from '@operato/data-grist'
4
+
5
+ export const OxGristRendererQuantifier: FieldRenderer = (value, column, record, rowIndex, field) => {
6
+ const [min = 1, max = 1] = value || []
7
+
8
+ return html`<span>${min}, ${max}</span>`
9
+ }
@@ -81,6 +81,7 @@ class OxParametersBuilder extends LitElement {
81
81
  element.observe = prop.observe
82
82
  }
83
83
  element.property = prop.property
84
+ element.editor = prop.editor
84
85
  element.setAttribute('property-editor', '')
85
86
 
86
87
  this.appendChild(element)
@@ -23,6 +23,7 @@ import { OxGristEditorParameters } from '../src/ox-grist-editor-parameters.js'
23
23
  import { OxGristEditorPartitionKeys } from '../src/ox-grist-editor-partition-keys.js'
24
24
  // import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'
25
25
  import { OxGristEditorValueMap } from '../src/ox-grist-editor-value-map.js'
26
+ import { OxGristRendererDuration } from '../src/ox-grist-renderer-duration.js'
26
27
 
27
28
  // import { OxGristEditorJson } from './ox-grist-editor-json.js'
28
29
  // import { OxGristRendererCrontab } from '../src/ox-grist-renderer-crontab.js'
@@ -55,6 +56,7 @@ registerEditor('duration', OxGristEditorDuration)
55
56
  registerRenderer('parameters', OxGristRendererJson5)
56
57
  registerRenderer('value-map', OxGristRendererJson5)
57
58
  registerRenderer('partition-keys', OxGristRendererJson5)
59
+ registerRenderer('duration', OxGristRendererDuration)
58
60
  // registerRenderer('crontab', OxGristRendererCrontab)
59
61
 
60
62
  const fetchHandler = async ({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) => {
@@ -100,6 +102,7 @@ const fetchHandler = async ({ page = 1, limit = 100, sortings = [], filters = []
100
102
  }
101
103
  : undefined,
102
104
  schedule: '* * * * * *',
105
+ duration: -3600,
103
106
  keyvalue: {},
104
107
  createdAt: Date.now(),
105
108
  updatedAt: Date.now()
@@ -235,6 +238,15 @@ class GristDemo extends LitElement {
235
238
  },
236
239
  width: 120
237
240
  },
241
+ {
242
+ type: 'duration',
243
+ name: 'duration',
244
+ header: i18next.t('field.duration'),
245
+ record: {
246
+ editable: true
247
+ },
248
+ width: 120
249
+ },
238
250
  {
239
251
  type: 'partition-keys',
240
252
  name: 'keyvalue',
@@ -1,3 +1,6 @@
1
1
  {
2
- "text.operato": "Operato Framework powered by hatiolab.com"
3
- }
2
+ "label.days": "days",
3
+ "label.hours": "hours",
4
+ "label.minutes": "minutes",
5
+ "label.seconds": "seconds"
6
+ }
@@ -1,3 +1,6 @@
1
1
  {
2
- "text.operato": "hatiolab.com이 제공하는 Operato 프레임워크"
3
- }
2
+ "label.days": "",
3
+ "label.hours": "시간",
4
+ "label.minutes": "분",
5
+ "label.seconds": "초"
6
+ }
@@ -1,3 +1,6 @@
1
1
  {
2
- "text.operato": "Operato Framework powered by hatiolab.com"
3
- }
2
+ "label.days": "days",
3
+ "label.hours": "hours",
4
+ "label.minutes": "minutes",
5
+ "label.seconds": "seconds"
6
+ }
@@ -1,3 +1,6 @@
1
1
  {
2
- "text.operato": "Operato Framework powered by hatiolab.com"
3
- }
2
+ "label.days": "days",
3
+ "label.hours": "hours",
4
+ "label.minutes": "minutes",
5
+ "label.seconds": "seconds"
6
+ }