@operato/scene-sted 1.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +13 -0
  4. package/assets/favicon.ico +0 -0
  5. package/assets/images/spinner.png +0 -0
  6. package/db.sqlite +0 -0
  7. package/dist/editors/index.d.ts +0 -0
  8. package/dist/editors/index.js +2 -0
  9. package/dist/editors/index.js.map +1 -0
  10. package/dist/groups/index.d.ts +7 -0
  11. package/dist/groups/index.js +3 -0
  12. package/dist/groups/index.js.map +1 -0
  13. package/dist/groups/sted.d.ts +6 -0
  14. package/dist/groups/sted.js +48 -0
  15. package/dist/groups/sted.js.map +1 -0
  16. package/dist/index.d.ts +1 -0
  17. package/dist/index.js +2 -0
  18. package/dist/index.js.map +1 -0
  19. package/dist/mass-fraction.d.ts +21 -0
  20. package/dist/mass-fraction.js +58 -0
  21. package/dist/mass-fraction.js.map +1 -0
  22. package/dist/templates/index.d.ts +14 -0
  23. package/dist/templates/index.js +3 -0
  24. package/dist/templates/index.js.map +1 -0
  25. package/dist/templates/mass-fraction.d.ts +14 -0
  26. package/dist/templates/mass-fraction.js +16 -0
  27. package/dist/templates/mass-fraction.js.map +1 -0
  28. package/icons/mass-fraction-template.png +0 -0
  29. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +25 -0
  30. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +25 -0
  31. package/logs/application-2022-12-05-00.log +12 -0
  32. package/logs/application-2022-12-05-01.log +18 -0
  33. package/logs/application-2022-12-05-02.log +29 -0
  34. package/logs/connections-2022-12-05-00.log +35 -0
  35. package/logs/connections-2022-12-05-01.log +105 -0
  36. package/logs/connections-2022-12-05-02.log +140 -0
  37. package/package.json +63 -0
  38. package/src/editors/index.ts +0 -0
  39. package/src/groups/index.ts +3 -0
  40. package/src/groups/sted.ts +48 -0
  41. package/src/index.ts +1 -0
  42. package/src/mass-fraction.ts +71 -0
  43. package/src/templates/index.ts +3 -0
  44. package/src/templates/mass-fraction.ts +16 -0
  45. package/things-scene.config.js +9 -0
  46. package/translations/en.json +3 -0
  47. package/translations/ko.json +3 -0
  48. package/translations/ms.json +3 -0
  49. package/translations/zh.json +3 -0
  50. package/tsconfig.json +23 -0
  51. package/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ### [1.1.16](https://github.com/things-scene/operato-scene/compare/v1.1.15...v1.1.16) (2022-12-04)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * add sted module ([bbcf4c5](https://github.com/things-scene/operato-scene/commit/bbcf4c51bf0ccf5f4fc2c051b6e5e85d71b2d7b8))
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) hatiolab.com
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ ## build
2
+
3
+ `$ yarn build`
4
+
5
+ | type | filename | for | tested |
6
+ | ---- | ------------------------------------------ | -------------- | ------ |
7
+ | UMD | things-scene-sted.js | modern browser | O |
8
+ | UMD | things-scene-sted-ie.js | ie 11 | O |
9
+ | ESM | things-scene-sted.mjs | modern browser | O |
10
+
11
+ ## publish
12
+
13
+ `$ yarn publish`
Binary file
Binary file
package/db.sqlite ADDED
Binary file
File without changes
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/editors/index.ts"],"names":[],"mappings":"","sourcesContent":[""]}
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ name: string;
3
+ description: string;
4
+ icon: string;
5
+ templates: never[];
6
+ }[];
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { sted } from './sted';
2
+ export default [sted];
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/groups/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAE7B,eAAe,CAAC,IAAI,CAAC,CAAA","sourcesContent":["import { sted } from './sted'\n\nexport default [sted]\n"]}
@@ -0,0 +1,6 @@
1
+ export declare const sted: {
2
+ name: string;
3
+ description: string;
4
+ icon: string;
5
+ templates: never[];
6
+ };
@@ -0,0 +1,48 @@
1
+ const icon = `
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
+ viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" xml:space="preserve">
4
+ <style type="text/css">
5
+ .st0{fill:{{strokeColor}};}
6
+ </style>
7
+ <g>
8
+ <g>
9
+ <path class="st0" d="M33.2,15.2v4.6h-4.6v-4.6H33.2 M34,14.4h-6.1v6.1H34V14.4L34,14.4z"/>
10
+ </g>
11
+ <g>
12
+ <g>
13
+ <path class="st0" d="M17.5,15.3l2.2,2.2l-2.2,2.2l-2.2-2.2L17.5,15.3 M17.5,14.2l-3.3,3.3l3.3,3.3l3.3-3.3L17.5,14.2L17.5,14.2z"
14
+ />
15
+ </g>
16
+ <g>
17
+ <path class="st0" d="M19.8,7.2v4.6h-4.6V7.2H19.8 M20.6,6.5h-6.1v6.1h6.1V6.5L20.6,6.5z"/>
18
+ </g>
19
+ <g>
20
+ <path class="st0" d="M19.8,23.1v4.6h-4.6v-4.6H19.8 M20.6,22.4h-6.1v6.1h6.1V22.4L20.6,22.4z"/>
21
+ </g>
22
+ </g>
23
+ <g>
24
+ <g>
25
+ <polygon class="st0" points="13.3,17.4 10.6,19.6 10.6,15.2 13.3,17.4 "/>
26
+ </g>
27
+ <rect x="8.2" y="16.9" class="st0" width="3.4" height="0.9"/>
28
+ </g>
29
+ <g>
30
+ <g>
31
+ <polygon class="st0" points="26.8,17.4 24,19.6 24,15.2 26.8,17.4 "/>
32
+ </g>
33
+ <rect x="21.7" y="16.9" class="st0" width="3.4" height="0.9"/>
34
+ </g>
35
+ <g>
36
+ <path class="st0" d="M4.1,15.2c1.3,0,2.3,1,2.3,2.3s-1,2.3-2.3,2.3s-2.3-1-2.3-2.3S2.8,15.2,4.1,15.2 M4.1,14.4
37
+ c-1.7,0-3.1,1.4-3.1,3.1c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1C7.1,15.8,5.8,14.4,4.1,14.4L4.1,14.4z"/>
38
+ </g>
39
+ </g>
40
+ </svg>
41
+ `;
42
+ export const sted = {
43
+ name: 'sted',
44
+ description: 'a group of Smart Thermal Energy Platform',
45
+ icon,
46
+ templates: []
47
+ };
48
+ //# sourceMappingURL=sted.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sted.js","sourceRoot":"","sources":["../../src/groups/sted.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwCZ,CAAA;AAED,MAAM,CAAC,MAAM,IAAI,GAAG;IAClB,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,0CAA0C;IACvD,IAAI;IACJ,SAAS,EAAE,EAAE;CACd,CAAA","sourcesContent":["const icon = `\n<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 35 35\" style=\"enable-background:new 0 0 35 35;\" xml:space=\"preserve\">\n <style type=\"text/css\">\n .st0{fill:{{strokeColor}};}\n </style>\n <g>\n <g>\n <path class=\"st0\" d=\"M33.2,15.2v4.6h-4.6v-4.6H33.2 M34,14.4h-6.1v6.1H34V14.4L34,14.4z\"/>\n </g>\n <g>\n <g>\n <path class=\"st0\" d=\"M17.5,15.3l2.2,2.2l-2.2,2.2l-2.2-2.2L17.5,15.3 M17.5,14.2l-3.3,3.3l3.3,3.3l3.3-3.3L17.5,14.2L17.5,14.2z\"\n />\n </g>\n <g>\n <path class=\"st0\" d=\"M19.8,7.2v4.6h-4.6V7.2H19.8 M20.6,6.5h-6.1v6.1h6.1V6.5L20.6,6.5z\"/>\n </g>\n <g>\n <path class=\"st0\" d=\"M19.8,23.1v4.6h-4.6v-4.6H19.8 M20.6,22.4h-6.1v6.1h6.1V22.4L20.6,22.4z\"/>\n </g>\n </g>\n <g>\n <g>\n <polygon class=\"st0\" points=\"13.3,17.4 10.6,19.6 10.6,15.2 13.3,17.4 \t\t\t\"/>\n </g>\n <rect x=\"8.2\" y=\"16.9\" class=\"st0\" width=\"3.4\" height=\"0.9\"/>\n </g>\n <g>\n <g>\n <polygon class=\"st0\" points=\"26.8,17.4 24,19.6 24,15.2 26.8,17.4 \t\t\t\"/>\n </g>\n <rect x=\"21.7\" y=\"16.9\" class=\"st0\" width=\"3.4\" height=\"0.9\"/>\n </g>\n <g>\n <path class=\"st0\" d=\"M4.1,15.2c1.3,0,2.3,1,2.3,2.3s-1,2.3-2.3,2.3s-2.3-1-2.3-2.3S2.8,15.2,4.1,15.2 M4.1,14.4\n c-1.7,0-3.1,1.4-3.1,3.1c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1C7.1,15.8,5.8,14.4,4.1,14.4L4.1,14.4z\"/>\n </g>\n </g>\n</svg>\n`\n\nexport const sted = {\n name: 'sted',\n description: 'a group of Smart Thermal Energy Platform',\n icon,\n templates: []\n}\n"]}
@@ -0,0 +1 @@
1
+ export { default as MassFraction } from './mass-fraction';
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export { default as MassFraction } from './mass-fraction';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,iBAAiB,CAAA","sourcesContent":["export { default as MassFraction } from './mass-fraction'\n"]}
@@ -0,0 +1,21 @@
1
+ import '@operato/input/ox-input-mass-fraction.js';
2
+ import '@operato/property-editor/ox-property-editor-mass-fraction.js';
3
+ import { HTMLOverlayContainer } from '@hatiolab/things-scene';
4
+ export default class MassFraction extends HTMLOverlayContainer {
5
+ static get nature(): {
6
+ mutable: boolean;
7
+ resizable: boolean;
8
+ rotatable: boolean;
9
+ properties: {
10
+ type: string;
11
+ label: string;
12
+ name: string;
13
+ }[];
14
+ help: string;
15
+ };
16
+ oncreate_element(fraction: HTMLElement): void;
17
+ dispose(): void;
18
+ setElementProperties(div: HTMLElement): void;
19
+ reposition(): void;
20
+ get tagName(): string;
21
+ }
@@ -0,0 +1,58 @@
1
+ /*
2
+ * Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ const NATURE = {
5
+ mutable: false,
6
+ resizable: true,
7
+ rotatable: true,
8
+ properties: [
9
+ {
10
+ type: 'mass-fraction',
11
+ label: 'default-value',
12
+ name: 'defaultValue'
13
+ }
14
+ ],
15
+ help: 'scene/component/graphql'
16
+ };
17
+ import '@operato/input/ox-input-mass-fraction.js';
18
+ import '@operato/property-editor/ox-property-editor-mass-fraction.js';
19
+ import { Component, HTMLOverlayContainer } from '@hatiolab/things-scene';
20
+ import { OxPropertyEditor } from '@operato/property-editor';
21
+ OxPropertyEditor.register({
22
+ 'mass-fraction': 'ox-property-editor-mass-fraction'
23
+ });
24
+ export default class MassFraction extends HTMLOverlayContainer {
25
+ static get nature() {
26
+ return NATURE;
27
+ }
28
+ oncreate_element(fraction) {
29
+ var { defaultValue } = this.state;
30
+ // fraction.style.setProperty('--button-background-color', '#fafbfc')
31
+ fraction.style.setProperty('--input-padding', '2px');
32
+ fraction.defaultValue = defaultValue;
33
+ this.reposition();
34
+ }
35
+ dispose() {
36
+ super.dispose();
37
+ }
38
+ /*
39
+ * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,
40
+ * 그에 따른 html element의 반영이 필요한 부분을 구현한다.
41
+ *
42
+ * ThingsComponent state => HTML element properties
43
+ */
44
+ setElementProperties(div) { }
45
+ /*
46
+ * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
47
+ * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
48
+ */
49
+ reposition() {
50
+ super.reposition();
51
+ // TODO how to resize..
52
+ }
53
+ get tagName() {
54
+ return 'ox-input-mass-fraction';
55
+ }
56
+ }
57
+ Component.register('mass-fraction', MassFraction);
58
+ //# sourceMappingURL=mass-fraction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mass-fraction.js","sourceRoot":"","sources":["../src/mass-fraction.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,eAAe;YACrB,KAAK,EAAE,eAAe;YACtB,IAAI,EAAE,cAAc;SACrB;KACF;IACD,IAAI,EAAE,yBAAyB;CAChC,CAAA;AAED,OAAO,0CAA0C,CAAA;AACjD,OAAO,8DAA8D,CAAA;AAErE,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAS,MAAM,wBAAwB,CAAA;AAC/E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAE3D,gBAAgB,CAAC,QAAQ,CAAC;IACxB,eAAe,EAAE,kCAAkC;CACpD,CAAC,CAAA;AAEF,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,oBAAoB;IAC5D,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAED,gBAAgB,CAAC,QAAqB;QACpC,IAAI,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAEjC,qEAAqE;QACrE,QAAQ,CAAC,KAAK,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC,CACnD;QAAC,QAAgB,CAAC,YAAY,GAAG,YAAY,CAAA;QAE9C,IAAI,CAAC,UAAU,EAAE,CAAA;IACnB,CAAC;IAED,OAAO;QACL,KAAK,CAAC,OAAO,EAAE,CAAA;IACjB,CAAC;IAED;;;;;OAKG;IACH,oBAAoB,CAAC,GAAgB,IAAG,CAAC;IAEzC;;;OAGG;IACH,UAAU;QACR,KAAK,CAAC,UAAU,EAAE,CAAA;QAElB,uBAAuB;IACzB,CAAC;IAED,IAAI,OAAO;QACT,OAAO,wBAAwB,CAAA;IACjC,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,YAAY,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'mass-fraction',\n label: 'default-value',\n name: 'defaultValue'\n }\n ],\n help: 'scene/component/graphql'\n}\n\nimport '@operato/input/ox-input-mass-fraction.js'\nimport '@operato/property-editor/ox-property-editor-mass-fraction.js'\n\nimport { Component, HTMLOverlayContainer, error } from '@hatiolab/things-scene'\nimport { OxPropertyEditor } from '@operato/property-editor'\n\nOxPropertyEditor.register({\n 'mass-fraction': 'ox-property-editor-mass-fraction'\n})\n\nexport default class MassFraction extends HTMLOverlayContainer {\n static get nature() {\n return NATURE\n }\n\n oncreate_element(fraction: HTMLElement) {\n var { defaultValue } = this.state\n\n // fraction.style.setProperty('--button-background-color', '#fafbfc')\n fraction.style.setProperty('--input-padding', '2px')\n ;(fraction as any).defaultValue = defaultValue\n\n this.reposition()\n }\n\n dispose() {\n super.dispose()\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n setElementProperties(div: HTMLElement) {}\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n\n // TODO how to resize..\n }\n\n get tagName() {\n return 'ox-input-mass-fraction'\n }\n}\n\nComponent.register('mass-fraction', MassFraction)\n"]}
@@ -0,0 +1,14 @@
1
+ declare const _default: {
2
+ type: string;
3
+ description: string;
4
+ group: string;
5
+ icon: string;
6
+ model: {
7
+ type: string;
8
+ left: number;
9
+ top: number;
10
+ width: number;
11
+ height: number;
12
+ };
13
+ }[];
14
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import massFraction from './mass-fraction';
2
+ export default [massFraction];
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAA;AAE1C,eAAe,CAAC,YAAY,CAAC,CAAA","sourcesContent":["import massFraction from './mass-fraction'\n\nexport default [massFraction]\n"]}
@@ -0,0 +1,14 @@
1
+ declare const _default: {
2
+ type: string;
3
+ description: string;
4
+ group: string;
5
+ icon: string;
6
+ model: {
7
+ type: string;
8
+ left: number;
9
+ top: number;
10
+ width: number;
11
+ height: number;
12
+ };
13
+ };
14
+ export default _default;
@@ -0,0 +1,16 @@
1
+ const icon = new URL('../../icons/mass-fraction-template.png', import.meta.url).href;
2
+ export default {
3
+ type: 'mass-fraction',
4
+ description: 'mass-fraction',
5
+ group: 'sted',
6
+ /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
7
+ icon,
8
+ model: {
9
+ type: 'mass-fraction',
10
+ left: 10,
11
+ top: 10,
12
+ width: 500,
13
+ height: 100
14
+ }
15
+ };
16
+ //# sourceMappingURL=mass-fraction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mass-fraction.js","sourceRoot":"","sources":["../../src/templates/mass-fraction.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,wCAAwC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEpF,eAAe;IACb,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,eAAe;IAC5B,KAAK,EAAE,MAAM;IACb,gGAAgG;IAChG,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,eAAe;QACrB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;KACZ;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/mass-fraction-template.png', import.meta.url).href\n\nexport default {\n type: 'mass-fraction',\n description: 'mass-fraction',\n group: 'sted',\n /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */\n icon,\n model: {\n type: 'mass-fraction',\n left: 10,\n top: 10,\n width: 500,\n height: 100\n }\n}\n"]}
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 2
5
+ },
6
+ "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1670168760005,
10
+ "name": "logs/application-2022-12-05-00.log",
11
+ "hash": "312f8f541375dfca03a2128197ae692f2d535beaee1340872f2ef1aa42d2e11f"
12
+ },
13
+ {
14
+ "date": 1670171980707,
15
+ "name": "logs/application-2022-12-05-01.log",
16
+ "hash": "e5b7ad8a9350d3684d22dd09825144eae6ed4800ccd7e84d6be8acfec247cf62"
17
+ },
18
+ {
19
+ "date": 1670173319509,
20
+ "name": "logs/application-2022-12-05-02.log",
21
+ "hash": "a72561953e7c407485e499ee6920cdd4e91bd5066bab9175237e3a0966a7a9e0"
22
+ }
23
+ ],
24
+ "hashType": "sha256"
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 14
5
+ },
6
+ "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1670168761421,
10
+ "name": "logs/connections-2022-12-05-00.log",
11
+ "hash": "91f187f187cd241f571713066b1f8129ea845d69b8cf89cc3cfd560212be96b1"
12
+ },
13
+ {
14
+ "date": 1670171981907,
15
+ "name": "logs/connections-2022-12-05-01.log",
16
+ "hash": "8e7c1d81404616f4be99887e160de4d62ea4607711259c1965efe9d882656a12"
17
+ },
18
+ {
19
+ "date": 1670173320630,
20
+ "name": "logs/connections-2022-12-05-02.log",
21
+ "hash": "9d96183941bedc65c9751484ec30c891c7a92961e1cf8ea122acf371a3613469"
22
+ }
23
+ ],
24
+ "hashType": "sha256"
25
+ }
@@ -0,0 +1,12 @@
1
+ 2022-12-05T00:46:00+09:00 info: File Storage is Ready.
2
+ 2022-12-05T00:46:01+09:00 error: oracledb module loading failed
3
+ 2022-12-05T00:46:10+09:00 info: File Storage is Ready.
4
+ 2022-12-05T00:46:11+09:00 error: oracledb module loading failed
5
+ 2022-12-05T00:46:11+09:00 info: Default DataSource established
6
+ 2022-12-05T00:46:11+09:00 info: Transaction DataSource established
7
+ 2022-12-05T00:46:38+09:00 info: File Storage is Ready.
8
+ 2022-12-05T00:46:39+09:00 error: oracledb module loading failed
9
+ 2022-12-05T00:46:40+09:00 info: Default DataSource established
10
+ 2022-12-05T00:46:40+09:00 info: Transaction DataSource established
11
+ 2022-12-05T00:46:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2022-12-05T00:46:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,18 @@
1
+ 2022-12-05T01:39:41+09:00 info: File Storage is Ready.
2
+ 2022-12-05T01:39:42+09:00 error: oracledb module loading failed
3
+ 2022-12-05T01:39:42+09:00 info: Default DataSource established
4
+ 2022-12-05T01:39:43+09:00 info: Transaction DataSource established
5
+ 2022-12-05T01:39:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2022-12-05T01:39:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2022-12-05T01:49:34+09:00 info: File Storage is Ready.
8
+ 2022-12-05T01:49:34+09:00 error: oracledb module loading failed
9
+ 2022-12-05T01:49:35+09:00 info: Default DataSource established
10
+ 2022-12-05T01:49:35+09:00 info: Transaction DataSource established
11
+ 2022-12-05T01:49:36+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2022-12-05T01:49:36+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
+ 2022-12-05T01:50:37+09:00 info: File Storage is Ready.
14
+ 2022-12-05T01:50:38+09:00 error: oracledb module loading failed
15
+ 2022-12-05T01:50:39+09:00 info: Default DataSource established
16
+ 2022-12-05T01:50:39+09:00 info: Transaction DataSource established
17
+ 2022-12-05T01:50:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
+ 2022-12-05T01:50:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,29 @@
1
+ 2022-12-05T02:02:00+09:00 info: File Storage is Ready.
2
+ 2022-12-05T02:02:00+09:00 error: oracledb module loading failed
3
+ 2022-12-05T02:02:01+09:00 info: Default DataSource established
4
+ 2022-12-05T02:02:01+09:00 info: Transaction DataSource established
5
+ 2022-12-05T02:02:02+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2022-12-05T02:02:02+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2022-12-05T02:05:18+09:00 info: File Storage is Ready.
8
+ 2022-12-05T02:05:19+09:00 error: oracledb module loading failed
9
+ 2022-12-05T02:05:19+09:00 info: Default DataSource established
10
+ 2022-12-05T02:05:20+09:00 info: Transaction DataSource established
11
+ 2022-12-05T02:05:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2022-12-05T02:05:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
+ 2022-12-05T02:21:30+09:00 info: File Storage is Ready.
14
+ 2022-12-05T02:21:30+09:00 error: oracledb module loading failed
15
+ 2022-12-05T02:21:31+09:00 info: Default DataSource established
16
+ 2022-12-05T02:21:31+09:00 info: Transaction DataSource established
17
+ 2022-12-05T02:21:32+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
+ 2022-12-05T02:21:32+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
19
+ 2022-12-05T02:38:17+09:00 info: File Storage is Ready.
20
+ 2022-12-05T02:38:19+09:00 error: oracledb module loading failed
21
+ 2022-12-05T02:38:19+09:00 info: Default DataSource established
22
+ 2022-12-05T02:38:19+09:00 info: Transaction DataSource established
23
+ 2022-12-05T02:38:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
24
+ 2022-12-05T02:38:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
25
+ 2022-12-05T02:39:11+09:00 error: thumbnail not found
26
+ 2022-12-05T02:39:11+09:00 error: thumbnail not found
27
+ 2022-12-05T02:39:11+09:00 error: thumbnail not found
28
+ 2022-12-05T02:39:11+09:00 error: thumbnail not found
29
+ 2022-12-05T02:39:11+09:00 error: thumbnail not found
@@ -0,0 +1,35 @@
1
+ 2022-12-05T00:46:40+09:00 info: Initializing ConnectionManager...
2
+ 2022-12-05T00:46:40+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2022-12-05T00:46:40+09:00 info: Connector 'echo-back' started to ready
4
+ 2022-12-05T00:46:40+09:00 info: Connector 'http-connector' started to ready
5
+ 2022-12-05T00:46:40+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2022-12-05T00:46:40+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2022-12-05T00:46:40+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2022-12-05T00:46:40+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2022-12-05T00:46:40+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2022-12-05T00:46:40+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2022-12-05T00:46:40+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2022-12-05T00:46:40+09:00 info: Connector 'socket-server' started to ready
13
+ 2022-12-05T00:46:40+09:00 info: echo-back-servers are ready
14
+ 2022-12-05T00:46:40+09:00 info: echo-back connections are ready
15
+ 2022-12-05T00:46:40+09:00 info: http-connector connections are ready
16
+ 2022-12-05T00:46:40+09:00 info: graphql-connector connections are ready
17
+ 2022-12-05T00:46:40+09:00 info: sqlite-connector connections are ready
18
+ 2022-12-05T00:46:40+09:00 info: postgresql-connector connections are ready
19
+ 2022-12-05T00:46:40+09:00 info: mqtt-connector connections are ready
20
+ 2022-12-05T00:46:40+09:00 info: mssql-connector connections are ready
21
+ 2022-12-05T00:46:40+09:00 info: oracle-connector connections are ready
22
+ 2022-12-05T00:46:40+09:00 info: mysql-connector connections are ready
23
+ 2022-12-05T00:46:40+09:00 info: socket servers are ready
24
+ 2022-12-05T00:46:40+09:00 info: All connector for 'echo-back-server' ready
25
+ 2022-12-05T00:46:40+09:00 info: All connector for 'echo-back' ready
26
+ 2022-12-05T00:46:40+09:00 info: All connector for 'http-connector' ready
27
+ 2022-12-05T00:46:40+09:00 info: All connector for 'graphql-connector' ready
28
+ 2022-12-05T00:46:40+09:00 info: All connector for 'sqlite-connector' ready
29
+ 2022-12-05T00:46:40+09:00 info: All connector for 'postgresql-connector' ready
30
+ 2022-12-05T00:46:40+09:00 info: All connector for 'mqtt-connector' ready
31
+ 2022-12-05T00:46:40+09:00 info: All connector for 'mssql-connector' ready
32
+ 2022-12-05T00:46:40+09:00 info: All connector for 'oracle-connector' ready
33
+ 2022-12-05T00:46:40+09:00 info: All connector for 'mysql-connector' ready
34
+ 2022-12-05T00:46:40+09:00 info: All connector for 'socket-server' ready
35
+ 2022-12-05T00:46:40+09:00 info: ConnectionManager initialization done:
@@ -0,0 +1,105 @@
1
+ 2022-12-05T01:39:43+09:00 info: Initializing ConnectionManager...
2
+ 2022-12-05T01:39:43+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2022-12-05T01:39:43+09:00 info: Connector 'echo-back' started to ready
4
+ 2022-12-05T01:39:43+09:00 info: Connector 'http-connector' started to ready
5
+ 2022-12-05T01:39:43+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2022-12-05T01:39:43+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2022-12-05T01:39:43+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2022-12-05T01:39:43+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2022-12-05T01:39:43+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2022-12-05T01:39:43+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2022-12-05T01:39:43+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2022-12-05T01:39:43+09:00 info: Connector 'socket-server' started to ready
13
+ 2022-12-05T01:39:43+09:00 info: echo-back-servers are ready
14
+ 2022-12-05T01:39:43+09:00 info: echo-back connections are ready
15
+ 2022-12-05T01:39:43+09:00 info: http-connector connections are ready
16
+ 2022-12-05T01:39:43+09:00 info: graphql-connector connections are ready
17
+ 2022-12-05T01:39:43+09:00 info: sqlite-connector connections are ready
18
+ 2022-12-05T01:39:43+09:00 info: postgresql-connector connections are ready
19
+ 2022-12-05T01:39:43+09:00 info: mqtt-connector connections are ready
20
+ 2022-12-05T01:39:43+09:00 info: mssql-connector connections are ready
21
+ 2022-12-05T01:39:43+09:00 info: oracle-connector connections are ready
22
+ 2022-12-05T01:39:43+09:00 info: mysql-connector connections are ready
23
+ 2022-12-05T01:39:43+09:00 info: socket servers are ready
24
+ 2022-12-05T01:39:43+09:00 info: All connector for 'echo-back-server' ready
25
+ 2022-12-05T01:39:43+09:00 info: All connector for 'echo-back' ready
26
+ 2022-12-05T01:39:43+09:00 info: All connector for 'http-connector' ready
27
+ 2022-12-05T01:39:43+09:00 info: All connector for 'graphql-connector' ready
28
+ 2022-12-05T01:39:43+09:00 info: All connector for 'sqlite-connector' ready
29
+ 2022-12-05T01:39:43+09:00 info: All connector for 'postgresql-connector' ready
30
+ 2022-12-05T01:39:43+09:00 info: All connector for 'mqtt-connector' ready
31
+ 2022-12-05T01:39:43+09:00 info: All connector for 'mssql-connector' ready
32
+ 2022-12-05T01:39:43+09:00 info: All connector for 'oracle-connector' ready
33
+ 2022-12-05T01:39:43+09:00 info: All connector for 'mysql-connector' ready
34
+ 2022-12-05T01:39:43+09:00 info: All connector for 'socket-server' ready
35
+ 2022-12-05T01:39:43+09:00 info: ConnectionManager initialization done:
36
+ 2022-12-05T01:49:36+09:00 info: Initializing ConnectionManager...
37
+ 2022-12-05T01:49:36+09:00 info: Connector 'echo-back-server' started to ready
38
+ 2022-12-05T01:49:36+09:00 info: Connector 'echo-back' started to ready
39
+ 2022-12-05T01:49:36+09:00 info: Connector 'http-connector' started to ready
40
+ 2022-12-05T01:49:36+09:00 info: Connector 'graphql-connector' started to ready
41
+ 2022-12-05T01:49:36+09:00 info: Connector 'sqlite-connector' started to ready
42
+ 2022-12-05T01:49:36+09:00 info: Connector 'postgresql-connector' started to ready
43
+ 2022-12-05T01:49:36+09:00 info: Connector 'mqtt-connector' started to ready
44
+ 2022-12-05T01:49:36+09:00 info: Connector 'mssql-connector' started to ready
45
+ 2022-12-05T01:49:36+09:00 info: Connector 'oracle-connector' started to ready
46
+ 2022-12-05T01:49:36+09:00 info: Connector 'mysql-connector' started to ready
47
+ 2022-12-05T01:49:36+09:00 info: Connector 'socket-server' started to ready
48
+ 2022-12-05T01:49:36+09:00 info: echo-back-servers are ready
49
+ 2022-12-05T01:49:36+09:00 info: echo-back connections are ready
50
+ 2022-12-05T01:49:36+09:00 info: http-connector connections are ready
51
+ 2022-12-05T01:49:36+09:00 info: graphql-connector connections are ready
52
+ 2022-12-05T01:49:36+09:00 info: sqlite-connector connections are ready
53
+ 2022-12-05T01:49:36+09:00 info: postgresql-connector connections are ready
54
+ 2022-12-05T01:49:36+09:00 info: mqtt-connector connections are ready
55
+ 2022-12-05T01:49:36+09:00 info: mssql-connector connections are ready
56
+ 2022-12-05T01:49:36+09:00 info: oracle-connector connections are ready
57
+ 2022-12-05T01:49:36+09:00 info: mysql-connector connections are ready
58
+ 2022-12-05T01:49:36+09:00 info: socket servers are ready
59
+ 2022-12-05T01:49:36+09:00 info: All connector for 'echo-back-server' ready
60
+ 2022-12-05T01:49:36+09:00 info: All connector for 'echo-back' ready
61
+ 2022-12-05T01:49:36+09:00 info: All connector for 'http-connector' ready
62
+ 2022-12-05T01:49:36+09:00 info: All connector for 'graphql-connector' ready
63
+ 2022-12-05T01:49:36+09:00 info: All connector for 'sqlite-connector' ready
64
+ 2022-12-05T01:49:36+09:00 info: All connector for 'postgresql-connector' ready
65
+ 2022-12-05T01:49:36+09:00 info: All connector for 'mqtt-connector' ready
66
+ 2022-12-05T01:49:36+09:00 info: All connector for 'mssql-connector' ready
67
+ 2022-12-05T01:49:36+09:00 info: All connector for 'oracle-connector' ready
68
+ 2022-12-05T01:49:36+09:00 info: All connector for 'mysql-connector' ready
69
+ 2022-12-05T01:49:36+09:00 info: All connector for 'socket-server' ready
70
+ 2022-12-05T01:49:36+09:00 info: ConnectionManager initialization done:
71
+ 2022-12-05T01:50:39+09:00 info: Initializing ConnectionManager...
72
+ 2022-12-05T01:50:39+09:00 info: Connector 'echo-back-server' started to ready
73
+ 2022-12-05T01:50:39+09:00 info: Connector 'echo-back' started to ready
74
+ 2022-12-05T01:50:39+09:00 info: Connector 'http-connector' started to ready
75
+ 2022-12-05T01:50:39+09:00 info: Connector 'graphql-connector' started to ready
76
+ 2022-12-05T01:50:39+09:00 info: Connector 'sqlite-connector' started to ready
77
+ 2022-12-05T01:50:39+09:00 info: Connector 'postgresql-connector' started to ready
78
+ 2022-12-05T01:50:39+09:00 info: Connector 'mqtt-connector' started to ready
79
+ 2022-12-05T01:50:39+09:00 info: Connector 'mssql-connector' started to ready
80
+ 2022-12-05T01:50:39+09:00 info: Connector 'oracle-connector' started to ready
81
+ 2022-12-05T01:50:39+09:00 info: Connector 'mysql-connector' started to ready
82
+ 2022-12-05T01:50:39+09:00 info: Connector 'socket-server' started to ready
83
+ 2022-12-05T01:50:39+09:00 info: echo-back-servers are ready
84
+ 2022-12-05T01:50:39+09:00 info: echo-back connections are ready
85
+ 2022-12-05T01:50:39+09:00 info: http-connector connections are ready
86
+ 2022-12-05T01:50:39+09:00 info: graphql-connector connections are ready
87
+ 2022-12-05T01:50:39+09:00 info: sqlite-connector connections are ready
88
+ 2022-12-05T01:50:39+09:00 info: postgresql-connector connections are ready
89
+ 2022-12-05T01:50:39+09:00 info: mqtt-connector connections are ready
90
+ 2022-12-05T01:50:39+09:00 info: mssql-connector connections are ready
91
+ 2022-12-05T01:50:39+09:00 info: oracle-connector connections are ready
92
+ 2022-12-05T01:50:39+09:00 info: mysql-connector connections are ready
93
+ 2022-12-05T01:50:39+09:00 info: socket servers are ready
94
+ 2022-12-05T01:50:39+09:00 info: All connector for 'echo-back-server' ready
95
+ 2022-12-05T01:50:39+09:00 info: All connector for 'echo-back' ready
96
+ 2022-12-05T01:50:39+09:00 info: All connector for 'http-connector' ready
97
+ 2022-12-05T01:50:39+09:00 info: All connector for 'graphql-connector' ready
98
+ 2022-12-05T01:50:39+09:00 info: All connector for 'sqlite-connector' ready
99
+ 2022-12-05T01:50:39+09:00 info: All connector for 'postgresql-connector' ready
100
+ 2022-12-05T01:50:39+09:00 info: All connector for 'mqtt-connector' ready
101
+ 2022-12-05T01:50:39+09:00 info: All connector for 'mssql-connector' ready
102
+ 2022-12-05T01:50:39+09:00 info: All connector for 'oracle-connector' ready
103
+ 2022-12-05T01:50:39+09:00 info: All connector for 'mysql-connector' ready
104
+ 2022-12-05T01:50:39+09:00 info: All connector for 'socket-server' ready
105
+ 2022-12-05T01:50:39+09:00 info: ConnectionManager initialization done:
@@ -0,0 +1,140 @@
1
+ 2022-12-05T02:02:02+09:00 info: Initializing ConnectionManager...
2
+ 2022-12-05T02:02:02+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2022-12-05T02:02:02+09:00 info: Connector 'echo-back' started to ready
4
+ 2022-12-05T02:02:02+09:00 info: Connector 'http-connector' started to ready
5
+ 2022-12-05T02:02:02+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2022-12-05T02:02:02+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2022-12-05T02:02:02+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2022-12-05T02:02:02+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2022-12-05T02:02:02+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2022-12-05T02:02:02+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2022-12-05T02:02:02+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2022-12-05T02:02:02+09:00 info: Connector 'socket-server' started to ready
13
+ 2022-12-05T02:02:02+09:00 info: echo-back-servers are ready
14
+ 2022-12-05T02:02:02+09:00 info: echo-back connections are ready
15
+ 2022-12-05T02:02:02+09:00 info: http-connector connections are ready
16
+ 2022-12-05T02:02:02+09:00 info: graphql-connector connections are ready
17
+ 2022-12-05T02:02:02+09:00 info: sqlite-connector connections are ready
18
+ 2022-12-05T02:02:02+09:00 info: postgresql-connector connections are ready
19
+ 2022-12-05T02:02:02+09:00 info: mqtt-connector connections are ready
20
+ 2022-12-05T02:02:02+09:00 info: mssql-connector connections are ready
21
+ 2022-12-05T02:02:02+09:00 info: oracle-connector connections are ready
22
+ 2022-12-05T02:02:02+09:00 info: mysql-connector connections are ready
23
+ 2022-12-05T02:02:02+09:00 info: socket servers are ready
24
+ 2022-12-05T02:02:02+09:00 info: All connector for 'echo-back-server' ready
25
+ 2022-12-05T02:02:02+09:00 info: All connector for 'echo-back' ready
26
+ 2022-12-05T02:02:02+09:00 info: All connector for 'http-connector' ready
27
+ 2022-12-05T02:02:02+09:00 info: All connector for 'graphql-connector' ready
28
+ 2022-12-05T02:02:02+09:00 info: All connector for 'sqlite-connector' ready
29
+ 2022-12-05T02:02:02+09:00 info: All connector for 'postgresql-connector' ready
30
+ 2022-12-05T02:02:02+09:00 info: All connector for 'mqtt-connector' ready
31
+ 2022-12-05T02:02:02+09:00 info: All connector for 'mssql-connector' ready
32
+ 2022-12-05T02:02:02+09:00 info: All connector for 'oracle-connector' ready
33
+ 2022-12-05T02:02:02+09:00 info: All connector for 'mysql-connector' ready
34
+ 2022-12-05T02:02:02+09:00 info: All connector for 'socket-server' ready
35
+ 2022-12-05T02:02:02+09:00 info: ConnectionManager initialization done:
36
+ 2022-12-05T02:05:20+09:00 info: Initializing ConnectionManager...
37
+ 2022-12-05T02:05:20+09:00 info: Connector 'echo-back-server' started to ready
38
+ 2022-12-05T02:05:20+09:00 info: Connector 'echo-back' started to ready
39
+ 2022-12-05T02:05:20+09:00 info: Connector 'http-connector' started to ready
40
+ 2022-12-05T02:05:20+09:00 info: Connector 'graphql-connector' started to ready
41
+ 2022-12-05T02:05:20+09:00 info: Connector 'sqlite-connector' started to ready
42
+ 2022-12-05T02:05:20+09:00 info: Connector 'postgresql-connector' started to ready
43
+ 2022-12-05T02:05:20+09:00 info: Connector 'mqtt-connector' started to ready
44
+ 2022-12-05T02:05:20+09:00 info: Connector 'mssql-connector' started to ready
45
+ 2022-12-05T02:05:20+09:00 info: Connector 'oracle-connector' started to ready
46
+ 2022-12-05T02:05:20+09:00 info: Connector 'mysql-connector' started to ready
47
+ 2022-12-05T02:05:20+09:00 info: Connector 'socket-server' started to ready
48
+ 2022-12-05T02:05:20+09:00 info: echo-back-servers are ready
49
+ 2022-12-05T02:05:20+09:00 info: echo-back connections are ready
50
+ 2022-12-05T02:05:20+09:00 info: http-connector connections are ready
51
+ 2022-12-05T02:05:20+09:00 info: graphql-connector connections are ready
52
+ 2022-12-05T02:05:20+09:00 info: sqlite-connector connections are ready
53
+ 2022-12-05T02:05:20+09:00 info: postgresql-connector connections are ready
54
+ 2022-12-05T02:05:20+09:00 info: mqtt-connector connections are ready
55
+ 2022-12-05T02:05:20+09:00 info: mssql-connector connections are ready
56
+ 2022-12-05T02:05:20+09:00 info: oracle-connector connections are ready
57
+ 2022-12-05T02:05:20+09:00 info: mysql-connector connections are ready
58
+ 2022-12-05T02:05:20+09:00 info: socket servers are ready
59
+ 2022-12-05T02:05:20+09:00 info: All connector for 'echo-back-server' ready
60
+ 2022-12-05T02:05:20+09:00 info: All connector for 'echo-back' ready
61
+ 2022-12-05T02:05:20+09:00 info: All connector for 'http-connector' ready
62
+ 2022-12-05T02:05:20+09:00 info: All connector for 'graphql-connector' ready
63
+ 2022-12-05T02:05:20+09:00 info: All connector for 'sqlite-connector' ready
64
+ 2022-12-05T02:05:20+09:00 info: All connector for 'postgresql-connector' ready
65
+ 2022-12-05T02:05:20+09:00 info: All connector for 'mqtt-connector' ready
66
+ 2022-12-05T02:05:20+09:00 info: All connector for 'mssql-connector' ready
67
+ 2022-12-05T02:05:20+09:00 info: All connector for 'oracle-connector' ready
68
+ 2022-12-05T02:05:20+09:00 info: All connector for 'mysql-connector' ready
69
+ 2022-12-05T02:05:20+09:00 info: All connector for 'socket-server' ready
70
+ 2022-12-05T02:05:20+09:00 info: ConnectionManager initialization done:
71
+ 2022-12-05T02:21:32+09:00 info: Initializing ConnectionManager...
72
+ 2022-12-05T02:21:32+09:00 info: Connector 'echo-back-server' started to ready
73
+ 2022-12-05T02:21:32+09:00 info: Connector 'echo-back' started to ready
74
+ 2022-12-05T02:21:32+09:00 info: Connector 'http-connector' started to ready
75
+ 2022-12-05T02:21:32+09:00 info: Connector 'graphql-connector' started to ready
76
+ 2022-12-05T02:21:32+09:00 info: Connector 'sqlite-connector' started to ready
77
+ 2022-12-05T02:21:32+09:00 info: Connector 'postgresql-connector' started to ready
78
+ 2022-12-05T02:21:32+09:00 info: Connector 'mqtt-connector' started to ready
79
+ 2022-12-05T02:21:32+09:00 info: Connector 'mssql-connector' started to ready
80
+ 2022-12-05T02:21:32+09:00 info: Connector 'oracle-connector' started to ready
81
+ 2022-12-05T02:21:32+09:00 info: Connector 'mysql-connector' started to ready
82
+ 2022-12-05T02:21:32+09:00 info: Connector 'socket-server' started to ready
83
+ 2022-12-05T02:21:32+09:00 info: echo-back-servers are ready
84
+ 2022-12-05T02:21:32+09:00 info: echo-back connections are ready
85
+ 2022-12-05T02:21:32+09:00 info: http-connector connections are ready
86
+ 2022-12-05T02:21:32+09:00 info: graphql-connector connections are ready
87
+ 2022-12-05T02:21:32+09:00 info: sqlite-connector connections are ready
88
+ 2022-12-05T02:21:32+09:00 info: postgresql-connector connections are ready
89
+ 2022-12-05T02:21:32+09:00 info: mqtt-connector connections are ready
90
+ 2022-12-05T02:21:32+09:00 info: mssql-connector connections are ready
91
+ 2022-12-05T02:21:32+09:00 info: oracle-connector connections are ready
92
+ 2022-12-05T02:21:32+09:00 info: mysql-connector connections are ready
93
+ 2022-12-05T02:21:32+09:00 info: socket servers are ready
94
+ 2022-12-05T02:21:32+09:00 info: All connector for 'echo-back-server' ready
95
+ 2022-12-05T02:21:32+09:00 info: All connector for 'echo-back' ready
96
+ 2022-12-05T02:21:32+09:00 info: All connector for 'http-connector' ready
97
+ 2022-12-05T02:21:32+09:00 info: All connector for 'graphql-connector' ready
98
+ 2022-12-05T02:21:32+09:00 info: All connector for 'sqlite-connector' ready
99
+ 2022-12-05T02:21:32+09:00 info: All connector for 'postgresql-connector' ready
100
+ 2022-12-05T02:21:32+09:00 info: All connector for 'mqtt-connector' ready
101
+ 2022-12-05T02:21:32+09:00 info: All connector for 'mssql-connector' ready
102
+ 2022-12-05T02:21:32+09:00 info: All connector for 'oracle-connector' ready
103
+ 2022-12-05T02:21:32+09:00 info: All connector for 'mysql-connector' ready
104
+ 2022-12-05T02:21:32+09:00 info: All connector for 'socket-server' ready
105
+ 2022-12-05T02:21:32+09:00 info: ConnectionManager initialization done:
106
+ 2022-12-05T02:38:20+09:00 info: Initializing ConnectionManager...
107
+ 2022-12-05T02:38:20+09:00 info: Connector 'echo-back-server' started to ready
108
+ 2022-12-05T02:38:20+09:00 info: Connector 'echo-back' started to ready
109
+ 2022-12-05T02:38:20+09:00 info: Connector 'http-connector' started to ready
110
+ 2022-12-05T02:38:20+09:00 info: Connector 'graphql-connector' started to ready
111
+ 2022-12-05T02:38:20+09:00 info: Connector 'sqlite-connector' started to ready
112
+ 2022-12-05T02:38:20+09:00 info: Connector 'postgresql-connector' started to ready
113
+ 2022-12-05T02:38:20+09:00 info: Connector 'mqtt-connector' started to ready
114
+ 2022-12-05T02:38:20+09:00 info: Connector 'mssql-connector' started to ready
115
+ 2022-12-05T02:38:20+09:00 info: Connector 'oracle-connector' started to ready
116
+ 2022-12-05T02:38:20+09:00 info: Connector 'mysql-connector' started to ready
117
+ 2022-12-05T02:38:20+09:00 info: Connector 'socket-server' started to ready
118
+ 2022-12-05T02:38:20+09:00 info: echo-back-servers are ready
119
+ 2022-12-05T02:38:20+09:00 info: echo-back connections are ready
120
+ 2022-12-05T02:38:20+09:00 info: http-connector connections are ready
121
+ 2022-12-05T02:38:20+09:00 info: graphql-connector connections are ready
122
+ 2022-12-05T02:38:20+09:00 info: sqlite-connector connections are ready
123
+ 2022-12-05T02:38:20+09:00 info: postgresql-connector connections are ready
124
+ 2022-12-05T02:38:20+09:00 info: mqtt-connector connections are ready
125
+ 2022-12-05T02:38:20+09:00 info: mssql-connector connections are ready
126
+ 2022-12-05T02:38:20+09:00 info: oracle-connector connections are ready
127
+ 2022-12-05T02:38:20+09:00 info: mysql-connector connections are ready
128
+ 2022-12-05T02:38:20+09:00 info: socket servers are ready
129
+ 2022-12-05T02:38:20+09:00 info: All connector for 'echo-back-server' ready
130
+ 2022-12-05T02:38:20+09:00 info: All connector for 'echo-back' ready
131
+ 2022-12-05T02:38:20+09:00 info: All connector for 'http-connector' ready
132
+ 2022-12-05T02:38:20+09:00 info: All connector for 'graphql-connector' ready
133
+ 2022-12-05T02:38:20+09:00 info: All connector for 'sqlite-connector' ready
134
+ 2022-12-05T02:38:20+09:00 info: All connector for 'postgresql-connector' ready
135
+ 2022-12-05T02:38:20+09:00 info: All connector for 'mqtt-connector' ready
136
+ 2022-12-05T02:38:20+09:00 info: All connector for 'mssql-connector' ready
137
+ 2022-12-05T02:38:20+09:00 info: All connector for 'oracle-connector' ready
138
+ 2022-12-05T02:38:20+09:00 info: All connector for 'mysql-connector' ready
139
+ 2022-12-05T02:38:20+09:00 info: All connector for 'socket-server' ready
140
+ 2022-12-05T02:38:20+09:00 info: ConnectionManager initialization done:
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@operato/scene-sted",
3
+ "description": "scene module for smart thermal energy design platform",
4
+ "version": "1.1.16",
5
+ "things-scene": true,
6
+ "browser": "src/index.js",
7
+ "author": "heartyoh",
8
+ "license": "MIT",
9
+ "main": "dist/index.js",
10
+ "module": "dist/index.js",
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "@oprato:registry": "https://registry.npmjs.org"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/things-scene/operato-scene.git",
18
+ "directory": "packages/sted"
19
+ },
20
+ "scripts": {
21
+ "serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
22
+ "serve:dev": "npm run serve",
23
+ "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
24
+ "build": "tsc",
25
+ "prepublish": "tsc",
26
+ "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
27
+ "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
28
+ "migration": "things-factory-migration"
29
+ },
30
+ "dependencies": {
31
+ "@hatiolab/things-scene": "^3.0.19",
32
+ "@operato/input": "^1.1.23"
33
+ },
34
+ "devDependencies": {
35
+ "@hatiolab/prettier-config": "^1.0.0",
36
+ "@things-factory/builder": "^6.0.0-alpha.0",
37
+ "@things-factory/operato-board": "^6.0.0-alpha.0",
38
+ "@typescript-eslint/eslint-plugin": "^4.33.0",
39
+ "@typescript-eslint/parser": "^4.33.0",
40
+ "@web/dev-server": "^0.1.28",
41
+ "concurrently": "^5.3.0",
42
+ "eslint": "^7.32.0",
43
+ "eslint-config-prettier": "^8.3.0",
44
+ "husky": "^4.3.8",
45
+ "lint-staged": "^10.5.4",
46
+ "prettier": "^2.4.1",
47
+ "tslib": "^2.3.1",
48
+ "typescript": "^4.8.4"
49
+ },
50
+ "prettier": "@hatiolab/prettier-config",
51
+ "husky": {
52
+ "hooks": {
53
+ "pre-commit": "lint-staged"
54
+ }
55
+ },
56
+ "lint-staged": {
57
+ "*.ts": [
58
+ "eslint --fix",
59
+ "prettier --write"
60
+ ]
61
+ },
62
+ "gitHead": "75d50633ce2523e6c05ed14d369c1f83b2601f5a"
63
+ }
File without changes
@@ -0,0 +1,3 @@
1
+ import { sted } from './sted'
2
+
3
+ export default [sted]
@@ -0,0 +1,48 @@
1
+ const icon = `
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
+ viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" xml:space="preserve">
4
+ <style type="text/css">
5
+ .st0{fill:{{strokeColor}};}
6
+ </style>
7
+ <g>
8
+ <g>
9
+ <path class="st0" d="M33.2,15.2v4.6h-4.6v-4.6H33.2 M34,14.4h-6.1v6.1H34V14.4L34,14.4z"/>
10
+ </g>
11
+ <g>
12
+ <g>
13
+ <path class="st0" d="M17.5,15.3l2.2,2.2l-2.2,2.2l-2.2-2.2L17.5,15.3 M17.5,14.2l-3.3,3.3l3.3,3.3l3.3-3.3L17.5,14.2L17.5,14.2z"
14
+ />
15
+ </g>
16
+ <g>
17
+ <path class="st0" d="M19.8,7.2v4.6h-4.6V7.2H19.8 M20.6,6.5h-6.1v6.1h6.1V6.5L20.6,6.5z"/>
18
+ </g>
19
+ <g>
20
+ <path class="st0" d="M19.8,23.1v4.6h-4.6v-4.6H19.8 M20.6,22.4h-6.1v6.1h6.1V22.4L20.6,22.4z"/>
21
+ </g>
22
+ </g>
23
+ <g>
24
+ <g>
25
+ <polygon class="st0" points="13.3,17.4 10.6,19.6 10.6,15.2 13.3,17.4 "/>
26
+ </g>
27
+ <rect x="8.2" y="16.9" class="st0" width="3.4" height="0.9"/>
28
+ </g>
29
+ <g>
30
+ <g>
31
+ <polygon class="st0" points="26.8,17.4 24,19.6 24,15.2 26.8,17.4 "/>
32
+ </g>
33
+ <rect x="21.7" y="16.9" class="st0" width="3.4" height="0.9"/>
34
+ </g>
35
+ <g>
36
+ <path class="st0" d="M4.1,15.2c1.3,0,2.3,1,2.3,2.3s-1,2.3-2.3,2.3s-2.3-1-2.3-2.3S2.8,15.2,4.1,15.2 M4.1,14.4
37
+ c-1.7,0-3.1,1.4-3.1,3.1c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1C7.1,15.8,5.8,14.4,4.1,14.4L4.1,14.4z"/>
38
+ </g>
39
+ </g>
40
+ </svg>
41
+ `
42
+
43
+ export const sted = {
44
+ name: 'sted',
45
+ description: 'a group of Smart Thermal Energy Platform',
46
+ icon,
47
+ templates: []
48
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { default as MassFraction } from './mass-fraction'
@@ -0,0 +1,71 @@
1
+ /*
2
+ * Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+
5
+ const NATURE = {
6
+ mutable: false,
7
+ resizable: true,
8
+ rotatable: true,
9
+ properties: [
10
+ {
11
+ type: 'mass-fraction',
12
+ label: 'default-value',
13
+ name: 'defaultValue'
14
+ }
15
+ ],
16
+ help: 'scene/component/graphql'
17
+ }
18
+
19
+ import '@operato/input/ox-input-mass-fraction.js'
20
+ import '@operato/property-editor/ox-property-editor-mass-fraction.js'
21
+
22
+ import { Component, HTMLOverlayContainer, error } from '@hatiolab/things-scene'
23
+ import { OxPropertyEditor } from '@operato/property-editor'
24
+
25
+ OxPropertyEditor.register({
26
+ 'mass-fraction': 'ox-property-editor-mass-fraction'
27
+ })
28
+
29
+ export default class MassFraction extends HTMLOverlayContainer {
30
+ static get nature() {
31
+ return NATURE
32
+ }
33
+
34
+ oncreate_element(fraction: HTMLElement) {
35
+ var { defaultValue } = this.state
36
+
37
+ // fraction.style.setProperty('--button-background-color', '#fafbfc')
38
+ fraction.style.setProperty('--input-padding', '2px')
39
+ ;(fraction as any).defaultValue = defaultValue
40
+
41
+ this.reposition()
42
+ }
43
+
44
+ dispose() {
45
+ super.dispose()
46
+ }
47
+
48
+ /*
49
+ * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,
50
+ * 그에 따른 html element의 반영이 필요한 부분을 구현한다.
51
+ *
52
+ * ThingsComponent state => HTML element properties
53
+ */
54
+ setElementProperties(div: HTMLElement) {}
55
+
56
+ /*
57
+ * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
58
+ * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
59
+ */
60
+ reposition() {
61
+ super.reposition()
62
+
63
+ // TODO how to resize..
64
+ }
65
+
66
+ get tagName() {
67
+ return 'ox-input-mass-fraction'
68
+ }
69
+ }
70
+
71
+ Component.register('mass-fraction', MassFraction)
@@ -0,0 +1,3 @@
1
+ import massFraction from './mass-fraction'
2
+
3
+ export default [massFraction]
@@ -0,0 +1,16 @@
1
+ const icon = new URL('../../icons/mass-fraction-template.png', import.meta.url).href
2
+
3
+ export default {
4
+ type: 'mass-fraction',
5
+ description: 'mass-fraction',
6
+ group: 'sted',
7
+ /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
8
+ icon,
9
+ model: {
10
+ type: 'mass-fraction',
11
+ left: 10,
12
+ top: 10,
13
+ width: 500,
14
+ height: 100
15
+ }
16
+ }
@@ -0,0 +1,9 @@
1
+ // import editors from './dist/editors'
2
+ import groups from './dist/groups'
3
+ import templates from './dist/templates'
4
+
5
+ export default {
6
+ // editors,
7
+ templates,
8
+ groups
9
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "label.default-value": "default value"
3
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "label.default-value": "기본값"
3
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "label.default-value": "default value"
3
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "label.default-value": "default value"
3
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2018",
4
+ "module": "esnext",
5
+ "moduleResolution": "node",
6
+ "noEmitOnError": true,
7
+ "lib": ["es2017", "dom"],
8
+ "strict": true,
9
+ "esModuleInterop": false,
10
+ "allowSyntheticDefaultImports": true,
11
+ "experimentalDecorators": true,
12
+ "importHelpers": true,
13
+ "outDir": "dist",
14
+ "sourceMap": true,
15
+ "inlineSources": true,
16
+ "rootDir": "src",
17
+ "declaration": true,
18
+ "incremental": true,
19
+ "typeRoots": ["./node_modules"],
20
+ "types": ["node"]
21
+ },
22
+ "include": ["**/*.ts", "*.d.ts"]
23
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.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/@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-element/lit-element.d.ts","../../node_modules/lit-html/is-server.d.ts","../../node_modules/lit/index.d.ts","../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../node_modules/@operato/property-editor/dist/src/types.d.ts","../../node_modules/@operato/property-editor/dist/src/ox-property-editor.d.ts","../../node_modules/@operato/property-editor/dist/src/ox-property-editor-mass-fraction.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","../../node_modules/@operato/property-editor/dist/src/index.d.ts","./src/mass-fraction.ts","./src/index.ts","./src/editors/index.ts","./src/groups/sted.ts","./src/groups/index.ts","./src/templates/mass-fraction.ts","./src/templates/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","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":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","62da965db3bd1b4ce135048ae8a317d7eb1949068824cb949dd4a91f7e3d6c2d","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","7e179e586b1a68348e7366c735b6efdd6e13e180071f4a14a5d439f9bc020cf3","43a01da5bcf0279000f91b0f73342885d9cb23c96e60e7e1699822714af92124","7b39394d42c881a93c9e663cfd90b4c78e03dc96131a0209457a850694de3492","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"434c3f188ffc1966b414213f143f626997d710d4e653167dba53d2e9ae1f8c39","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"cb53516b0d559a2aa524f5c3933f65a01af309955cc50d71b04f7c991262cab0","signature":"b7a350190b61af1e93fef5f8ac5c61ae2c72cbccc2ac3db27f38983eccdbc0a2"},{"version":"5f5b0422be57b34ade6e73002f576ab6f5ae3e2b4dcf5f2382ef32821f5a3b6b","signature":"5f990ab95bb488db763dd6cfe0a6b7270cbf2b8076dcc76742b768bfbe571de3"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"d9c09e0b3e077a21d300c36b4ed11994e7e3796b9ccffce15e4c4af99661e8b3","signature":"a05808d78c0354830aa2db55f2131f0903aaafc20a11abddaed5aeec346cc82b"},{"version":"735731a196e051bdd1607d791efde96139d6892571a8d1eb7dcc8bea16ccdd39","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"7c52eda27866e3b20a68ffc2a7ec924ff2e2e0e996776773824e68cf1da2acf3","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"ee7ca84b906a24066e7b17b50240da856cf4a673a4cab1e972c4c78e2dcff389","signature":"e4ca4d8a87d3c81f481decf9000b72ba30371c8088de609814b2f0be74314bb2"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[70,126],[126],[44,45,126],[50,53,126],[55,56,126],[50,55,56,126],[53,54,55,126],[58,60,61,62,63,64,65,66,67,68,69,70,126],[58,59,61,62,63,64,65,66,67,68,69,70,126],[59,60,61,62,63,64,65,66,67,68,69,70,126],[58,59,60,62,63,64,65,66,67,68,69,70,126],[58,59,60,61,63,64,65,66,67,68,69,70,126],[58,59,60,61,62,64,65,66,67,68,69,70,126],[58,59,60,61,62,63,65,66,67,68,69,70,126],[58,59,60,61,62,63,64,66,67,68,69,70,126],[58,59,60,61,62,63,64,65,67,68,69,70,126],[58,59,60,61,62,63,64,65,66,68,69,70,126],[58,59,60,61,62,63,64,65,66,67,69,70,126],[58,59,60,61,62,63,64,65,66,67,68,70,126],[58,59,60,61,62,63,64,65,66,67,68,69,126],[80,126],[83,126],[84,89,117,126],[85,96,97,104,114,125,126],[85,86,96,104,126],[87,126],[88,89,97,105,126],[89,114,122,126],[90,92,96,104,126],[91,126],[92,93,126],[96,126],[94,96,126],[96,97,98,114,125,126],[96,97,98,111,114,117,126],[126,130],[99,104,114,125,126],[96,97,99,100,104,114,122,125,126],[99,101,114,122,125,126],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102,126],[103,125,126],[92,96,104,114,126],[105,126],[106,126],[83,107,126],[108,124,126,130],[109,126],[110,126],[96,111,112,126],[111,113,126,128],[84,96,114,115,116,117,126],[84,114,116,126],[114,115,126],[117,126],[118,126],[96,120,121,126],[120,121,126],[89,104,114,122,126],[123,126],[104,124,126],[84,99,110,125,126],[89,126],[114,126,127],[126,128],[126,129],[84,89,96,98,107,114,125,126,128,130],[114,126,131],[47,126],[46,50,126],[50,126],[48,49,126],[46,50,51,52,126],[43,76,126],[43,126],[43,73,126],[43,57,71,72,126],[43,78,126],[73],[57,71]],"referencedMap":[[71,1],[44,2],[45,2],[46,3],[54,4],[72,5],[57,6],[56,7],[55,2],[59,8],[60,9],[58,10],[61,11],[62,12],[63,13],[64,14],[65,15],[66,16],[67,17],[68,18],[69,19],[70,20],[80,21],[81,21],[83,22],[84,23],[85,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,31],[95,32],[94,33],[96,32],[97,34],[98,35],[82,36],[132,2],[99,37],[100,38],[101,39],[133,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[112,50],[113,51],[114,52],[116,53],[115,54],[117,55],[118,56],[119,2],[120,57],[121,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[48,69],[47,2],[51,70],[49,71],[52,2],[50,72],[53,73],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[75,2],[77,74],[76,75],[74,76],[73,77],[79,78],[78,75]],"exportedModulesMap":[[71,1],[44,2],[45,2],[46,3],[54,4],[72,5],[57,6],[56,7],[55,2],[59,8],[60,9],[58,10],[61,11],[62,12],[63,13],[64,14],[65,15],[66,16],[67,17],[68,18],[69,19],[70,20],[80,21],[81,21],[83,22],[84,23],[85,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,31],[95,32],[94,33],[96,32],[97,34],[98,35],[82,36],[132,2],[99,37],[100,38],[101,39],[133,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[112,50],[113,51],[114,52],[116,53],[115,54],[117,55],[118,56],[119,2],[120,57],[121,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[48,69],[47,2],[51,70],[49,71],[52,2],[50,72],[53,73],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[75,2],[74,79],[73,80]],"semanticDiagnosticsPerFile":[71,44,45,46,54,72,57,56,55,59,60,58,61,62,63,64,65,66,67,68,69,70,80,81,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,48,47,51,49,52,50,53,43,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,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,75,77,76,74,73,79,78]},"version":"4.9.3"}