@operato/scene-openlayers 1.2.54

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +13 -0
  3. package/assets/favicon.ico +0 -0
  4. package/assets/images/spinner.png +0 -0
  5. package/db.sqlite +0 -0
  6. package/dist/editors/index.d.ts +0 -0
  7. package/dist/editors/index.js +2 -0
  8. package/dist/editors/index.js.map +1 -0
  9. package/dist/groups/geography.d.ts +6 -0
  10. package/dist/groups/geography.js +48 -0
  11. package/dist/groups/geography.js.map +1 -0
  12. package/dist/groups/index.d.ts +7 -0
  13. package/dist/groups/index.js +3 -0
  14. package/dist/groups/index.js.map +1 -0
  15. package/dist/index.d.ts +2 -0
  16. package/dist/index.js +3 -0
  17. package/dist/index.js.map +1 -0
  18. package/dist/ol-marker.d.ts +79 -0
  19. package/dist/ol-marker.js +247 -0
  20. package/dist/ol-marker.js.map +1 -0
  21. package/dist/openlayers.d.ts +37 -0
  22. package/dist/openlayers.js +211 -0
  23. package/dist/openlayers.js.map +1 -0
  24. package/dist/templates/index.d.ts +14 -0
  25. package/dist/templates/index.js +4 -0
  26. package/dist/templates/index.js.map +1 -0
  27. package/dist/templates/ol-marker copy.d.ts +14 -0
  28. package/dist/templates/ol-marker copy.js +16 -0
  29. package/dist/templates/ol-marker copy.js.map +1 -0
  30. package/dist/templates/ol-marker.d.ts +14 -0
  31. package/dist/templates/ol-marker.js +16 -0
  32. package/dist/templates/ol-marker.js.map +1 -0
  33. package/dist/templates/ol-path.d.ts +14 -0
  34. package/dist/templates/ol-path.js +16 -0
  35. package/dist/templates/ol-path.js.map +1 -0
  36. package/dist/templates/openlayers.d.ts +14 -0
  37. package/dist/templates/openlayers.js +16 -0
  38. package/dist/templates/openlayers.js.map +1 -0
  39. package/dist/tsconfig.tsbuildinfo +1 -0
  40. package/icons/ol-marker-template.png +0 -0
  41. package/icons/ol-path-template.png +0 -0
  42. package/icons/openlayers-template.png +0 -0
  43. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +15 -0
  44. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +15 -0
  45. package/logs/application-2023-09-02-17.log +15 -0
  46. package/logs/connections-2023-09-02-17.log +76 -0
  47. package/package.json +63 -0
  48. package/schema.gql +3702 -0
  49. package/src/editors/index.ts +0 -0
  50. package/src/groups/geography.ts +48 -0
  51. package/src/groups/index.ts +3 -0
  52. package/src/index.ts +2 -0
  53. package/src/ol-marker.ts +318 -0
  54. package/src/ol-path.ts_x +368 -0
  55. package/src/openlayers.ts +256 -0
  56. package/src/templates/index.ts +4 -0
  57. package/src/templates/ol-marker.ts +16 -0
  58. package/src/templates/ol-path.ts +16 -0
  59. package/src/templates/openlayers.ts +16 -0
  60. package/things-scene.config.js +7 -0
  61. package/translations/en.json +3 -0
  62. package/translations/ko.json +3 -0
  63. package/translations/ms.json +3 -0
  64. package/translations/zh.json +3 -0
  65. package/tsconfig.json +23 -0
  66. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,211 @@
1
+ /*
2
+ * Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ // @ts-ignore
5
+ import OpenLayersStyle from '!!text-loader!ol/ol.css';
6
+ import { Feature, Map, View } from 'ol';
7
+ import { Circle as CircleStyle, Icon, Stroke, Style } from 'ol/style.js';
8
+ import { Tile as TileLayer, Vector as VectorLayer } from 'ol/layer';
9
+ import { Vector as VectorSource, OSM } from 'ol/source';
10
+ import { fromLonLat } from 'ol/proj';
11
+ import { Point } from 'ol/geom';
12
+ import { Component, HTMLOverlayContainer } from '@hatiolab/things-scene';
13
+ const MARKER_PATH = 'M 0,0 C -2,-20 -10,-22 -10,-30 A 10,10 0 1,1 10,-30 C 10,-22 2,-20 0,0 z M -2,-30 a 2,2 0 1,1 4,0 2,2 0 1,1 -4,0';
14
+ const NATURE = {
15
+ mutable: false,
16
+ resizable: true,
17
+ rotatable: true,
18
+ properties: [
19
+ {
20
+ type: 'number',
21
+ label: 'latitude',
22
+ name: 'lat',
23
+ property: {
24
+ step: 0.000001,
25
+ max: 90,
26
+ min: -90
27
+ }
28
+ },
29
+ {
30
+ type: 'number',
31
+ label: 'longitude',
32
+ name: 'lng',
33
+ property: {
34
+ step: 0.000001,
35
+ min: -180,
36
+ max: 180
37
+ }
38
+ },
39
+ {
40
+ type: 'number',
41
+ label: 'zoom',
42
+ name: 'zoom'
43
+ },
44
+ {
45
+ type: 'boolean',
46
+ label: 'show-marker',
47
+ name: 'showMarker'
48
+ }
49
+ ],
50
+ 'value-property': 'latlng',
51
+ help: 'scene/component/openlayers'
52
+ };
53
+ function getGlobalScale(component) {
54
+ var scale = { x: 1, y: 1 };
55
+ var parent = component;
56
+ while (parent) {
57
+ let { x, y } = parent.get('scale') || { x: 1, y: 1 };
58
+ scale.x *= x || 1;
59
+ scale.y *= y || 1;
60
+ parent = parent.parent;
61
+ }
62
+ return scale;
63
+ }
64
+ export default class Openlayers extends HTMLOverlayContainer {
65
+ constructor() {
66
+ super(...arguments);
67
+ this._map = null;
68
+ }
69
+ get eventMap() {
70
+ return {
71
+ 'model-layer': {
72
+ '(self)': {
73
+ change: (after) => {
74
+ after.scale && this.rescale();
75
+ }
76
+ }
77
+ }
78
+ };
79
+ }
80
+ /*
81
+ * 부모의 스케일의 역으로 transform해서, scale을 1로 맞추어준다.
82
+ */
83
+ rescale() {
84
+ var anchor = this._anchor;
85
+ if (!anchor) {
86
+ return;
87
+ }
88
+ var scale = getGlobalScale(this);
89
+ var sx = 1 / scale.x;
90
+ var sy = 1 / scale.y;
91
+ var transform = `scale(${sx}, ${sy})`;
92
+ anchor.style.transform = transform;
93
+ anchor.style.transformOrigin = '0px 0px';
94
+ var { width, height } = this.state;
95
+ anchor.style.width = width * scale.x + 'px';
96
+ anchor.style.height = height * scale.y + 'px';
97
+ }
98
+ createElement() {
99
+ super.createElement();
100
+ this._anchor = document.createElement('div');
101
+ const style = document.createElement('style');
102
+ style.textContent = `
103
+ ${OpenLayersStyle}
104
+ `;
105
+ this.element.appendChild(style);
106
+ this.element.appendChild(this._anchor);
107
+ const { lat, lng, zoom, showMarker } = this.state;
108
+ // 지도의 중심 좌표
109
+ const center = fromLonLat([lng || 126.9783882, lat || 37.5666103]);
110
+ // 타일 레이어 생성 (배경 지도)
111
+ const tileLayer = new TileLayer({
112
+ source: new OSM({
113
+ attributions: ''
114
+ })
115
+ });
116
+ // 벡터 레이어 생성
117
+ const styles = {
118
+ route: new Style({
119
+ stroke: new Stroke({
120
+ width: 6,
121
+ color: [237, 212, 0, 0.8]
122
+ })
123
+ }),
124
+ marker: Openlayers.markerStyle,
125
+ circle: new Style({
126
+ image: new CircleStyle({
127
+ radius: 7,
128
+ stroke: new Stroke({
129
+ color: 'black',
130
+ width: 2
131
+ })
132
+ })
133
+ })
134
+ };
135
+ const vectorSource = new VectorSource();
136
+ const vectorLayer = new VectorLayer({
137
+ source: vectorSource,
138
+ style: function (feature) {
139
+ return styles[feature.get('type')];
140
+ }
141
+ });
142
+ // 지도 생성
143
+ const map = new Map({
144
+ target: this._anchor,
145
+ layers: [tileLayer, vectorLayer],
146
+ view: new View({
147
+ center,
148
+ zoom
149
+ })
150
+ });
151
+ this._map = map;
152
+ this._vectorSource = vectorSource;
153
+ if (showMarker) {
154
+ const marker = new Feature({
155
+ type: 'circle',
156
+ geometry: new Point(center)
157
+ });
158
+ this._vectorSource.addFeatures([marker]);
159
+ }
160
+ this.rescale();
161
+ }
162
+ get tagName() {
163
+ return 'div';
164
+ }
165
+ get map() {
166
+ return this._map;
167
+ }
168
+ dispose() {
169
+ super.dispose();
170
+ delete this._anchor;
171
+ }
172
+ setElementProperties(div) {
173
+ this.rescale();
174
+ }
175
+ onchange(after, before) {
176
+ var _a, _b;
177
+ if (after.zoom) {
178
+ const view = (_a = this.map) === null || _a === void 0 ? void 0 : _a.getView();
179
+ view === null || view === void 0 ? void 0 : view.setCenter(after.zoom);
180
+ }
181
+ if ('lat' in after || 'lng' in after) {
182
+ let { lat, lng } = this.state;
183
+ const view = (_b = this.map) === null || _b === void 0 ? void 0 : _b.getView();
184
+ view === null || view === void 0 ? void 0 : view.setCenter(fromLonLat([lng, lat]));
185
+ }
186
+ super.onchange(after, before);
187
+ this.rescale();
188
+ }
189
+ get latlng() {
190
+ const { lat, lng } = this.state;
191
+ return { lat, lng };
192
+ }
193
+ set latlng(latlng) {
194
+ this.setState(latlng);
195
+ }
196
+ get vectorSource() {
197
+ return this._vectorSource;
198
+ }
199
+ get nature() {
200
+ return NATURE;
201
+ }
202
+ }
203
+ Openlayers.markerStyle = new Style({
204
+ image: new Icon({
205
+ src: 'data:image/svg+xml;charset=utf-8,' +
206
+ encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">' + MARKER_PATH + '</svg>'),
207
+ anchor: [0.5, 1]
208
+ })
209
+ });
210
+ Component.register('openlayers', Openlayers);
211
+ //# sourceMappingURL=openlayers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"openlayers.js","sourceRoot":"","sources":["../src/openlayers.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\n// @ts-ignore\nimport OpenLayersStyle from '!!text-loader!ol/ol.css'\n\nimport { Feature, Map, View } from 'ol'\nimport { Circle as CircleStyle, Fill, Icon, Stroke, Style } from 'ol/style.js'\nimport { Tile as TileLayer, Vector as VectorLayer } from 'ol/layer'\nimport { Vector as VectorSource, OSM } from 'ol/source'\nimport { fromLonLat } from 'ol/proj'\nimport { Geometry, Point } from 'ol/geom'\n\nimport { Component, HTMLOverlayContainer, Properties, ComponentNature, error } from '@hatiolab/things-scene'\n\nconst MARKER_PATH =\n 'M 0,0 C -2,-20 -10,-22 -10,-30 A 10,10 0 1,1 10,-30 C 10,-22 2,-20 0,0 z M -2,-30 a 2,2 0 1,1 4,0 2,2 0 1,1 -4,0'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'latitude',\n name: 'lat',\n property: {\n step: 0.000001,\n max: 90,\n min: -90\n }\n },\n {\n type: 'number',\n label: 'longitude',\n name: 'lng',\n property: {\n step: 0.000001,\n min: -180,\n max: 180\n }\n },\n {\n type: 'number',\n label: 'zoom',\n name: 'zoom'\n },\n {\n type: 'boolean',\n label: 'show-marker',\n name: 'showMarker'\n }\n ],\n 'value-property': 'latlng',\n help: 'scene/component/openlayers'\n}\n\nfunction getGlobalScale(component: Component) {\n var scale = { x: 1, y: 1 }\n var parent = component\n\n while (parent) {\n let { x, y } = parent.get('scale') || { x: 1, y: 1 }\n scale.x *= x || 1\n scale.y *= y || 1\n\n parent = parent.parent\n }\n return scale\n}\n\nexport default class Openlayers extends HTMLOverlayContainer {\n static markerStyle: Style = new Style({\n image: new Icon({\n src:\n 'data:image/svg+xml;charset=utf-8,' +\n encodeURIComponent('<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\">' + MARKER_PATH + '</svg>'),\n anchor: [0.5, 1]\n })\n })\n\n _anchor?: HTMLDivElement\n _map: Map | null = null\n _listenTo?: Component\n _listener?: Function\n _vectorSource?: VectorSource<Geometry>\n\n get eventMap() {\n return {\n 'model-layer': {\n '(self)': {\n change: (after: any) => {\n after.scale && this.rescale()\n }\n }\n }\n }\n }\n\n /*\n * 부모의 스케일의 역으로 transform해서, scale을 1로 맞추어준다.\n */\n rescale() {\n var anchor = this._anchor\n if (!anchor) {\n return\n }\n\n var scale = getGlobalScale(this)\n\n var sx = 1 / scale.x\n var sy = 1 / scale.y\n\n var transform = `scale(${sx}, ${sy})`\n\n anchor!.style.transform = transform\n anchor!.style.transformOrigin = '0px 0px'\n\n var { width, height } = this.state\n anchor.style.width = width * scale.x + 'px'\n anchor.style.height = height * scale.y + 'px'\n }\n\n createElement() {\n super.createElement()\n this._anchor = document.createElement('div')\n\n const style = document.createElement('style')\n style.textContent = `\n ${OpenLayersStyle}\n `\n\n this.element.appendChild(style)\n this.element.appendChild(this._anchor)\n\n const { lat, lng, zoom, showMarker } = this.state\n\n // 지도의 중심 좌표\n const center = fromLonLat([lng || 126.9783882, lat || 37.5666103])\n\n // 타일 레이어 생성 (배경 지도)\n const tileLayer = new TileLayer({\n source: new OSM({\n attributions: ''\n })\n })\n\n // 벡터 레이어 생성\n const styles: { [name: string]: Style } = {\n route: new Style({\n stroke: new Stroke({\n width: 6,\n color: [237, 212, 0, 0.8]\n })\n }),\n marker: Openlayers.markerStyle,\n circle: new Style({\n image: new CircleStyle({\n radius: 7,\n stroke: new Stroke({\n color: 'black',\n width: 2\n })\n })\n })\n }\n\n const vectorSource = new VectorSource()\n const vectorLayer = new VectorLayer({\n source: vectorSource,\n style: function (feature) {\n return styles[feature.get('type')]\n }\n })\n\n // 지도 생성\n const map = new Map({\n target: this._anchor,\n layers: [tileLayer, vectorLayer],\n view: new View({\n center,\n zoom\n })\n })\n\n this._map = map\n this._vectorSource = vectorSource\n\n if (showMarker) {\n const marker = new Feature({\n type: 'circle',\n geometry: new Point(center)\n })\n\n this._vectorSource.addFeatures([marker])\n }\n\n this.rescale()\n }\n\n get tagName() {\n return 'div'\n }\n\n get map() {\n return this._map\n }\n\n dispose() {\n super.dispose()\n\n delete this._anchor\n }\n\n setElementProperties(div: HTMLDivElement) {\n this.rescale()\n }\n\n onchange(after: Properties, before: Properties) {\n if (after.zoom) {\n const view = this.map?.getView()\n view?.setCenter(after.zoom)\n }\n\n if ('lat' in after || 'lng' in after) {\n let { lat, lng } = this.state\n const view = this.map?.getView()\n view?.setCenter(fromLonLat([lng, lat]))\n }\n\n super.onchange(after, before)\n\n this.rescale()\n }\n\n get latlng() {\n const { lat, lng } = this.state\n return { lat, lng }\n }\n\n set latlng(latlng) {\n this.setState(latlng)\n }\n\n get vectorSource() {\n return this._vectorSource\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('openlayers', Openlayers)\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,4 @@
1
+ import openlayers from './openlayers';
2
+ import olMarker from './ol-marker';
3
+ export default [openlayers, olMarker];
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,cAAc,CAAA;AACrC,OAAO,QAAQ,MAAM,aAAa,CAAA;AAElC,eAAe,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA","sourcesContent":["import openlayers from './openlayers'\nimport olMarker from './ol-marker'\n\nexport default [openlayers, olMarker]\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/ol-path-template.png', import.meta.url).href;
2
+ export default {
3
+ type: 'ol-path',
4
+ description: 'ol-path',
5
+ // group: 'geographic',
6
+ group: 'etc',
7
+ icon,
8
+ model: {
9
+ type: 'ol-path',
10
+ left: 10,
11
+ top: 10,
12
+ width: 100,
13
+ height: 20
14
+ }
15
+ };
16
+ //# sourceMappingURL=ol-marker%20copy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ol-marker copy.js","sourceRoot":"","sources":["../../src/templates/ol-marker copy.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,kCAAkC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE9E,eAAe;IACb,IAAI,EAAE,SAAS;IACf,WAAW,EAAE,SAAS;IACtB,uBAAuB;IACvB,KAAK,EAAE,KAAK;IACZ,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/ol-path-template.png', import.meta.url).href\n\nexport default {\n type: 'ol-path',\n description: 'ol-path',\n // group: 'geographic',\n group: 'etc',\n icon,\n model: {\n type: 'ol-path',\n left: 10,\n top: 10,\n width: 100,\n height: 20\n }\n}\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/ol-marker-template.png', import.meta.url).href;
2
+ export default {
3
+ type: 'ol-marker',
4
+ description: 'ol-marker',
5
+ // group: 'geographic',
6
+ group: 'etc',
7
+ icon,
8
+ model: {
9
+ type: 'ol-marker',
10
+ left: 10,
11
+ top: 10,
12
+ width: 55,
13
+ height: 100
14
+ }
15
+ };
16
+ //# sourceMappingURL=ol-marker.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ol-marker.js","sourceRoot":"","sources":["../../src/templates/ol-marker.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,oCAAoC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEhF,eAAe;IACb,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,WAAW;IACxB,uBAAuB;IACvB,KAAK,EAAE,KAAK;IACZ,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,GAAG;KACZ;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/ol-marker-template.png', import.meta.url).href\n\nexport default {\n type: 'ol-marker',\n description: 'ol-marker',\n // group: 'geographic',\n group: 'etc',\n icon,\n model: {\n type: 'ol-marker',\n left: 10,\n top: 10,\n width: 55,\n height: 100\n }\n}\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/ol-path-template.png', import.meta.url).href;
2
+ export default {
3
+ type: 'ol-path',
4
+ description: 'ol-path',
5
+ // group: 'geographic',
6
+ group: 'etc',
7
+ icon,
8
+ model: {
9
+ type: 'ol-path',
10
+ left: 10,
11
+ top: 10,
12
+ width: 100,
13
+ height: 20
14
+ }
15
+ };
16
+ //# sourceMappingURL=ol-path.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ol-path.js","sourceRoot":"","sources":["../../src/templates/ol-path.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,kCAAkC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE9E,eAAe;IACb,IAAI,EAAE,SAAS;IACf,WAAW,EAAE,SAAS;IACtB,uBAAuB;IACvB,KAAK,EAAE,KAAK;IACZ,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/ol-path-template.png', import.meta.url).href\n\nexport default {\n type: 'ol-path',\n description: 'ol-path',\n // group: 'geographic',\n group: 'etc',\n icon,\n model: {\n type: 'ol-path',\n left: 10,\n top: 10,\n width: 100,\n height: 20\n }\n}\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/openlayers-template.png', import.meta.url).href;
2
+ export default {
3
+ type: 'openlayers',
4
+ description: 'openlayers',
5
+ // group: 'geographic',
6
+ group: 'etc',
7
+ icon,
8
+ model: {
9
+ type: 'openlayers',
10
+ left: 10,
11
+ top: 10,
12
+ width: 100,
13
+ height: 20
14
+ }
15
+ };
16
+ //# sourceMappingURL=openlayers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"openlayers.js","sourceRoot":"","sources":["../../src/templates/openlayers.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,qCAAqC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEjF,eAAe;IACb,IAAI,EAAE,YAAY;IAClB,WAAW,EAAE,YAAY;IACzB,uBAAuB;IACvB,KAAK,EAAE,KAAK;IACZ,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/openlayers-template.png', import.meta.url).href\n\nexport default {\n type: 'openlayers',\n description: 'openlayers',\n // group: 'geographic',\n group: 'etc',\n icon,\n model: {\n type: 'openlayers',\n left: 10,\n top: 10,\n width: 100,\n height: 20\n }\n}\n"]}
@@ -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/ol/structs/priorityqueue.d.ts","../../../node_modules/ol/disposable.d.ts","../../../node_modules/ol/events/event.d.ts","../../../node_modules/ol/events.d.ts","../../../node_modules/ol/events/target.d.ts","../../../node_modules/ol/size.d.ts","../../../node_modules/ol/tilerange.d.ts","../../../node_modules/ol/observable.d.ts","../../../node_modules/ol/objecteventtype.d.ts","../../../node_modules/ol/object.d.ts","../../../node_modules/ol/proj/units.d.ts","../../../node_modules/ol/proj/projection.d.ts","../../../node_modules/ol/proj.d.ts","../../../node_modules/ol/geom/geometry.d.ts","../../../node_modules/ol/pixel.d.ts","../../../node_modules/ol/transform.d.ts","../../../node_modules/ol/geom/simplegeometry.d.ts","../../../node_modules/ol/geom/circle.d.ts","../../../node_modules/ol/coordinate.d.ts","../../../node_modules/ol/extent.d.ts","../../../node_modules/ol/array.d.ts","../../../node_modules/ol/tilegrid/tilegrid.d.ts","../../../node_modules/ol/tilecoord.d.ts","../../../node_modules/ol/tile.d.ts","../../../node_modules/ol/tilequeue.d.ts","../../../node_modules/ol/collection.d.ts","../../../node_modules/ol/mapevent.d.ts","../../../node_modules/ol/mapbrowserevent.d.ts","../../../node_modules/ol/centerconstraint.d.ts","../../../node_modules/ol/resolutionconstraint.d.ts","../../../node_modules/ol/rotationconstraint.d.ts","../../../node_modules/ol/view.d.ts","../../../node_modules/ol/render/eventtype.d.ts","../../../node_modules/ol/render/event.d.ts","../../../node_modules/ol/source/source.d.ts","../../../node_modules/ol/color.d.ts","../../../node_modules/ol/colorlike.d.ts","../../../node_modules/ol/style/fill.d.ts","../../../node_modules/ol/style/stroke.d.ts","../../../node_modules/ol/style/text.d.ts","../../../node_modules/ol/geom/geometrycollection.d.ts","../../../node_modules/ol/geom/linearring.d.ts","../../../node_modules/ol/geom/linestring.d.ts","../../../node_modules/ol/geom/multilinestring.d.ts","../../../node_modules/ol/geom/point.d.ts","../../../node_modules/ol/geom/multipoint.d.ts","../../../node_modules/ol/geom/polygon.d.ts","../../../node_modules/ol/geom/multipolygon.d.ts","../../../node_modules/ol/geom.d.ts","../../../node_modules/ol/render/feature.d.ts","../../../node_modules/ol/datatile.d.ts","../../../node_modules/ol/style/image.d.ts","../../../node_modules/ol/render/vectorcontext.d.ts","../../../node_modules/ol/render/canvas/immediate.d.ts","../../../node_modules/ol/render.d.ts","../../../node_modules/ol/style/style.d.ts","../../../node_modules/ol/feature.d.ts","../../../node_modules/ol/render/canvas/executor.d.ts","../../../node_modules/ol/render/canvas.d.ts","../../../node_modules/ol/render/canvas/executorgroup.d.ts","../../../node_modules/ol/source/tileeventtype.d.ts","../../../node_modules/ol/structs/lrucache.d.ts","../../../node_modules/ol/tilecache.d.ts","../../../node_modules/ol/source/tile.d.ts","../../../node_modules/ol/render/canvas/buildergroup.d.ts","../../../node_modules/ol/renderer/vector.d.ts","../../../node_modules/ol/renderer/map.d.ts","../../../node_modules/ol/resolution.d.ts","../../../node_modules/ol/image.d.ts","../../../node_modules/ol/renderer/layer.d.ts","../../../node_modules/ol/layer/layer.d.ts","../../../node_modules/ol/layer/base.d.ts","../../../node_modules/ol/events/eventtype.d.ts","../../../node_modules/ol/layer/group.d.ts","../../../node_modules/ol/control/control.d.ts","../../../node_modules/ol/interaction/interaction.d.ts","../../../node_modules/ol/overlay.d.ts","../../../node_modules/ol/mapbrowsereventtype.d.ts","../../../node_modules/ol/mapeventtype.d.ts","../../../node_modules/ol/map.d.ts","../../../node_modules/ol/source/vectoreventtype.d.ts","../../../node_modules/ol/format/feature.d.ts","../../../node_modules/ol/vectortile.d.ts","../../../node_modules/ol/featureloader.d.ts","../../../node_modules/ol/source/vector.d.ts","../../../node_modules/ol/renderer/canvas/layer.d.ts","../../../node_modules/ol/source/urltile.d.ts","../../../node_modules/ol/vectorrendertile.d.ts","../../../node_modules/ol/source/vectortile.d.ts","../../../node_modules/ol/style/icon.d.ts","../../../node_modules/ol/expr/expression.d.ts","../../../node_modules/ol/style/flat.d.ts","../../../node_modules/ol/layer/basetile.d.ts","../../../node_modules/ol/layer/vectortile.d.ts","../../../node_modules/ol/layer/tile.d.ts","../../../node_modules/ol/imagetile.d.ts","../../../node_modules/ol/renderer/canvas/tilelayer.d.ts","../../../node_modules/ol/renderer/canvas/vectortilelayer.d.ts","../../../node_modules/ol/source/image.d.ts","../../../node_modules/ol/layer/baseimage.d.ts","../../../node_modules/ol/layer/image.d.ts","../../../node_modules/ol/renderer/canvas/imagelayer.d.ts","../../../node_modules/ol/layer/vectorimage.d.ts","../../../node_modules/ol/renderer/canvas/vectorimagelayer.d.ts","../../../node_modules/ol/webgl.d.ts","../../../node_modules/ol/webgl/buffer.d.ts","../../../node_modules/ol/webgl/rendertarget.d.ts","../../../node_modules/ol/webgl/helper.d.ts","../../../node_modules/ol/renderer/webgl/layer.d.ts","../../../node_modules/ol/renderer/webgl/pointslayer.d.ts","../../../node_modules/ol/layer/basevector.d.ts","../../../node_modules/ol/renderer/canvas/vectorlayer.d.ts","../../../node_modules/ol/layer/vector.d.ts","../../../node_modules/ol/layer/graticule.d.ts","../../../node_modules/ol/layer/heatmap.d.ts","../../../node_modules/ol/webgl/palettetexture.d.ts","../../../node_modules/ol/style/expressions.d.ts","../../../node_modules/ol/style/literal.d.ts","../../../node_modules/ol/layer/webglpoints.d.ts","../../../node_modules/ol/reproj/tile.d.ts","../../../node_modules/ol/webgl/basetilerepresentation.d.ts","../../../node_modules/ol/webgl/tiletexture.d.ts","../../../node_modules/ol/renderer/webgl/tilelayerbase.d.ts","../../../node_modules/ol/renderer/webgl/tilelayer.d.ts","../../../node_modules/ol/source/datatile.d.ts","../../../node_modules/ol/source/tileimage.d.ts","../../../node_modules/ol/layer/webgltile.d.ts","../../../node_modules/ol/layer.d.ts","../../../node_modules/ol/source/bingmaps.d.ts","../../../node_modules/ol/source/xyz.d.ts","../../../node_modules/ol/source/cartodb.d.ts","../../../node_modules/ol/source/cluster.d.ts","../../../node_modules/geotiff/dist-node/compression/basedecoder.d.ts","../../../node_modules/geotiff/dist-node/globals.d.ts","../../../node_modules/geotiff/dist-node/rgb.d.ts","../../../node_modules/geotiff/dist-node/compression/index.d.ts","../../../node_modules/geotiff/dist-node/logging.d.ts","../../../node_modules/geotiff/dist-node/pool.d.ts","../../../node_modules/geotiff/dist-node/source/basesource.d.ts","../../../node_modules/geotiff/dist-node/geotiffimage.d.ts","../../../node_modules/geotiff/dist-node/dataslice.d.ts","../../../node_modules/geotiff/dist-node/geotiff.d.ts","../../../node_modules/ol/source/geotiff.d.ts","../../../node_modules/ol/source/iiif.d.ts","../../../node_modules/ol/source/imagearcgisrest.d.ts","../../../node_modules/ol/imagecanvas.d.ts","../../../node_modules/ol/source/imagecanvas.d.ts","../../../node_modules/ol/source/imagemapguide.d.ts","../../../node_modules/ol/source/imagestatic.d.ts","../../../node_modules/ol/source/wms.d.ts","../../../node_modules/ol/source/imagewms.d.ts","../../../node_modules/ol/source/ogcmaptile.d.ts","../../../node_modules/ol/source/ogcvectortile.d.ts","../../../node_modules/ol/source/osm.d.ts","../../../node_modules/ol/source/raster.d.ts","../../../node_modules/ol/source/stadiamaps.d.ts","../../../node_modules/ol/source/tilearcgisrest.d.ts","../../../node_modules/ol/source/tiledebug.d.ts","../../../node_modules/ol/source/tilejson.d.ts","../../../node_modules/ol/source/tilewms.d.ts","../../../node_modules/ol/source/utfgrid.d.ts","../../../node_modules/ol/tilegrid/wmts.d.ts","../../../node_modules/ol/source/wmts.d.ts","../../../node_modules/ol/source/zoomify.d.ts","../../../node_modules/ol/source/arcgisrest.d.ts","../../../node_modules/ol/source/static.d.ts","../../../node_modules/ol/source/mapguide.d.ts","../../../node_modules/ol/source.d.ts","../../../node_modules/@hatiolab/things-scene/things-scene.d.ts","../src/openlayers.ts","../../../node_modules/ol/geolocation.d.ts","../../../node_modules/ol/kinetic.d.ts","../../../node_modules/ol/mapbrowsereventhandler.d.ts","../../../node_modules/ol/util.d.ts","../../../node_modules/ol/index.d.ts","../../../node_modules/ol/style/regularshape.d.ts","../../../node_modules/ol/style/circle.d.ts","../../../node_modules/ol/style/iconimage.d.ts","../../../node_modules/ol/style.d.ts","../src/ol-marker.ts","../src/index.ts","../src/editors/index.ts","../src/groups/geography.ts","../src/groups/index.ts","../src/templates/openlayers.ts","../src/templates/ol-marker.ts","../src/templates/index.ts","../src/templates/ol-path.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},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","b5e3e7307de8b755fe3fab27a234721572743f8c52b4fdc51b9aeaa047cc2d73","a01ea57d11d535163e9a2566af56d23ee7c03d3a23c0f8331fb0c9bdbfe1e724","37df1bef1c2e596406a45144279f572748a69a29424fc80e908c12be0b8a74f1","b01b7753d9dbcf3c03f9cd23d1ed845219943147f1870ffef7126057335358a8","1b5ffa7de8f5a3de507680cc41d9d9aced8c6b8fee4b8fa7a751c4ba6b90d42c","db0642878704403e79ad24fffa3612b9c369e7b42ebbb6b7906effff17647e77","f6db2ec65508f872399fbb42ca5c644684f080522e187307a01dbd68e918b11c","6d14b4b339740a95581ffb0af973d189faa59b7ffc958892c47f3067019a1b56","89f8942bc3baf8207538fb08f7321c59f982156417d814939d7ec8474a47f8ec","0d0e120c7338db86fa7a072ddec40c61a10bcfe4f979345548f697663bfc047d","cc68053b061296e55aea067f00fcf3e1803d8b94e52fafadf3e586e44fd991cf","f743a1b48c7555e9adb36156d05611169973d99e07e21833717875954f83eec9","9b65177fc826dec84b74033911be24896ee2f3cdd9c00851648c1ee4ef59c053","99de8757cb9bfc9869c3425442f06747d91fff9ff6c6b789e2718409daa24a00","4db0245c57b77973c86e295175f44bf307df06ed93bf21803043b1a7c66ac1a3","05cb4ed7c010b962acc5d5ad68763945a2211732bba3de3adfcdaeb8cc0bdc3b","d398bbb9f2b2e496fbb15e3701286a799d7b110c26d5b95cc79813c5ebbf76fc","138beb5176e7b66bd1bedc34ebe4b81e1d4e7408dda2a366a43456a3716b158b","4c400ef70fffd5942c4869a72ab8f670bf293a3df53d2d9bba7edbc1893391d9","3c5daba81c256bf19b424fc424c0af84eb96aa0e191d532125783f6315549469","a118e1e31be16f0f7fca03cbc529f1f0f7f13a842061ba07f7dd6cdbb11e22a6","ea0c069dbec39c1b5cb1a90f2c34dfa21ad822f41743cee766c71d4568315309","b8c696c0592e7c9020aa5656bf8a51f686d6e05196fb91f7ae4cecd4a343d222","5d82277493d0ef266939c0176622cc42f47ee473ce4d39a8cb3824237022baca","288d54de8442fd8c652a2c6fc9c0015e6d5bc27afecd5f413b8d38fd4c3cd6a5","88d60d4ad08076127e1cb7471a8aecf0c90a259a9e23048b41368424458c73a2","26bd3fd4311d248e5d5a610354fef2c5f9de05554cb97bb786bdb8dbcecd5161","6c7e5301ce1bdbb0261ca994db982cdffefbbd7382de91b61fb9bea6dfe10cf2","a2e5839309d27056cc2b8f2a18d62a4ff32df184a904cf21f47cd341e369018d","a561e0c810366fd6146cb99fe54e23450b100766ce3184b44b57e1a9981c0082","8c61c6ab9cdef76768700e83cf94124c750bccaaa1cc9aa52c161160bf5e7a6e","5d80716e2b7c5fe584a75de98934e9a36f7b3f680446d9cffac8562b0fe39107","e7500c857e7eab70a618a07cd3c9d53cec8a375c1a7f3bce171aa818d7939f41","840f99e579b8fffb2a8f57e0e97f68ccfd76ea1d43e9164188662449b4981ea6","e4f8cac6b42c4a77d82bd03834484a727965b61296600d2040504e6ddc2ec530","3af757e431fa3049f7d6894965c9715c7af191a3f14c200f840ff12530c27af6","1a43e41218b653799c374427fb5eb18f33f0a1474daffa69d72cc6960a9d04a3","46ac4d9fd0b5477cd993fa05b6ee50297a79dfc3a2285cdaa183bd8a3e894667","d9c3bf0e2d495e69d721c97bf17223b85d0a48011792acc5b52a1add787c409c","fbbb4c2957c9e3bed8b155117a4a534b692504bfdbeed6977a04c9049c32e1bb","ae8f59dbd8a54876dafefd823a47e8994956b172667564479bd5978b778944e6","6bf2eccce66f95ef7510a695243057faeb5ec27eb4f10fe2c52d1b19f0cca6e4","8d28e9c1c661a9d78a9ca8af6f007e7bee119c928eb5b48579d72b676a16ae88","948d5bd3ec4a91dec9b2c0ee10e6656144bfb1dd38e410e526ff48c2e0c07995","4ef8fb1ec8703f6b170042a1d770228585a4ba0ba32e8faa4c4e4e54f93207e3","50e4fb6c08a89af27d36354716cff10b41c874c203f9b718d2070813694c5929","81dd2f7b5f056dd1df741ab85d3b95acf877dd6b5b1e7a63b6552d4f8441e94c","10d5aad5fd86550f4513f3a403a650c186315f8056756902fe97f618da65d44b","91696aca30467c20342ae0cd90dd6b4068255433174e0ee9dfef8bd519c800b1","27f1fee3da43b03de3e7563641987f0323efb555b326c423fafd950fa9469819","a01498a8dde3f1c1b493b50292082a46ffe8914c538c8f3ce93becc213955800","dcd3d2eea82264fda4a55d6fd0553b122958a56fef900ad329b44822b23330fe","6849254fc851c91087fa9688b617acd59fe48fcbd7bc2314ea6a35efa2585126","cde92fa03022c7ac3d7d485f5ceb1cc1264ee22654a686959749de986be71109","de951da1e450e0f7713f95a550508eb7b7f7cba10640ed7cf3a5fba7ca189aa0","12977e1335830ea72e484ee1f0823d672a016e6d0df7e1369810d654d9935308","5017436c94942ea52df0e70f00907d772fe2bd27194274f882003d3d7ee7829a","7eecc5afa366a435ffe49a245923b24d501a5ade2adbf06ed922683ac67d391c","5311ad8dd41c4d9ce74b1b284abcf7952ced9958306be8e5f7e7e3b965fa29d6","fad1a6e78141f81260b644f82594b474fabcf5bba1b179e8defe695c9026be31","669437bba68c48efc51d96d35e85e20738b276e3551a4548889c7b71f37850a1","b4e820c00f00374d37da986d29842aebab80a7ab7e9affecffb816ea811a35fa","b39fa4482ca51ce365973794f94e2306569ba897403f4bcb246e0eef0d0d2e29","dba567c6afca08bbd4616bf0ea3a128aeba083f932e1ec7753d194d057e35b58","f59ea33bd574d11cdf5227130090b63664bc0cd6015af9ca4a99d3b783f10c5e","00064851af96110dc8cea7c84fcee9fe209e0a5e98968f2d60f585b0e0dcf078","159af4701f917a10a89cccf1f644f6f40f220d4ba8610227fea68f0eb9c3205f","cf6cf7979e945e58880f260079f89a69a32bef09ee03d3ec64a984f36c86adce","80aff7afd99f57cec1a70876a7f34aa0ee82d354f7258d3f3829f4b8ff5829f5","1f6d5c7a3ee16920d19aed8777281cb065bcfabeb3e51bcac0386c372e5e0677","79ea7a193440268f82e4d7c6a0d395a9d3d55f1de797d29f7f88bd6d587fa488","9c324ecb46587fa931c400dca194d55b9dbe07c15e8a4e9ae86f06b56a5953c0","7b10d36e808c643668c5ed3c12b73a97495ec0ec68f7b8cc31db9139e6740105","ff5304ef796250a681bfe1d6422a7b5decb8204b37755015358cc7241ca134d6","4801186a50f323065b9f5737b6234abed8577fc1e5ebb5e749ba1e35ebf77f9d","138cda5d763fac6e1a6f31d28a3c7f3dce0bd7f14eae7ce10f19c03a97baff1b","a4e4b9c051d0f71403a20ec58bf68f29e7c35d708c495b6a21776ca0469ce456","cf69621bf0ecc07b6aa01eea23be4f8e75c10330096dbb5dfa53f61af730f821","58404c09a7a50fd9906ac2ecc2f70aec65848a5fdba3497ce2454440976636e2","238adc7f460b4703c35d82981dbe2912c01d332309203dda953732ed4c0c3546","0d14977b110e40c89ec3a6cd50eadaf257400c08f6fb545b3002adb8f5adda35","4659d957ba537bbcee4ee7c34b23fe4c9b305f65701802621fc57a6e38967292","51cf79ac7b47e3eea4627869c044f0d563d3bdb113889f1901b6d33783b1781f","b7b5d5ffb7d958e00a4dc16106202f9c71aa57c1c53e4f251d13170f36b7cae9","8a42736cd1b0d1680a05f63fe7b6e378ba68a3c5e74edfbcea9b48d8ab885825","7b6450a2363a741a4fec239afd93b55b6679197b35b28c108a49e7daa3123bc7","c7745f8f4139806378b38db9fb2e44aaaa329ce822fda2739a90126a84d3d0ad","6f9ae463a84ace3771ca556baa7bf6fe2e5e58e4520ace6c9c9d5a3156f13004","7e1cfdde676a9042e3feef5b3bd8fa8198e48e003c0db57aab225247757c3f61","daf8ef8f3714b38e9f3fbffd50704340987966de7f8cacd17b06c6d53b673246","d2e829175e3689ab0a9eddfa594b9e9411c4f285d1d0a1f3d779ef0d5c730f2a","07e2f56b9c07bde30662588166e2413e229e9f42e58e27afe36d6684a55f2bf5","cf46eed8b500044434833782f76c9f3134cd47b20e27ca4a70179779dc7e6875","cc108dcf9b287bffdccadc4f3e26e683bc7a06b94143b15b28da8d4894d5f46b","35fc9dd7a1ea9ac144f26095ae7290eb7493d71e06a3e61d2da2ab60a0c33dd6","568426d28353f8bc686d3fb96cfbaecebd6e8ff50cdebfed2010a1c19b78cfa2","f54057b5c747c33f5cd4f972faa04598e534fdd2437a01ee7aa484967b4bd323","79d562813d05e1e60bff8e7da5415ef8d8fb392e45ac44fcd2ad19cd5e5823df","af5086e2881b82d7605ab9ad26966676314d9f71bb7737042321c59d26743787","3d82826182b2ac9e894a292a11ce7b4d8a9c1be9bfa213f35e1601cfb2a0e25c","f0f226728ca9a191a464817c5df2fc9d7e1b0424b2a2345eb279725660ad7688","df35a4570d3a5b9b302e36af1a765a7219d7d92ddc658e76316f68de0e1cdb92","0e2bbcac4aa37f2fd5103820d5bb7bf83ff7bd0f9edce8217857b1803367ecab","c8a8977122db663648c6d91f5f214505477a93e9238b3d486823a40a734521f4","6f7cc8f6aaa5061b348f468a028c3163dfdddc1b704d183a794388cadb41932f","fba62647de7927d3558ae41406e3dca5a34010702ed6428d071b6acf64d9b99a","374acfaae252703d35a7cf518c6a48205fd4bbc8fd51e42b4740c48bf2c15159","7b95cbc73d21bae8f82459a3a7546628a9d7d9184dd3e5f657f4332e336c5e30","9c7dd4f4b897099e8dc51e995751827507cf869a954d117a7bbd31add0ea3c5c","9ea6d6258cf3e3cda154388b012e0982262df87cd9f2f3e032a47410913aa10f","7176c2b507c632d101701bafcc0a6a452d02a6a09616ae53ef5e196465168953","9e06ccbfd42cf165db6dbbdbfe43339bea942af997668d9358622f7551cd762b","1fcebc10892731b4b4fc8f12aadd8ce1df2672a0c1b7695b76c0916061e769da","5c835bb073b3e71d3340a8d0005003cbc61d324223c8816619d8f6d17bad90cc","038df71ede5869295b2f64f59e2d6ebaf9398f732376c5752ac6e97b8d209eed","b834ed8a53237d79982f3c65f82652f462e7abe49e6b16efbd9e4dd6bf4d4973","c91d8180295aeaf611929f72cc9c47fe1e85140cf0734505f45e56e4e996a1e3","d764842addb951561dee836d8940ad58a5419382ddb666444602e3bbaff81057","92b95dc0207b98c7764b52a6a30de9125d0a5b9e89442a66143b3e504ee215f9","b547b763c576afeac2bc97820ef4a385603aa2e306a17aa6019f037a3cfc02f3","791af775fbc64a8187503710ebe44b61f0a04affec19cdaa39285a2c333c376f","2f35ac4a94034a75a110f87156b1fa89f679ae00d01bd232c55a33624da178df","eb21612598db8ba85496f041e756d3f9bffa1882c1885b685c1137b06bc8802a","199650ed2704f9dfcc679c94cf066c3b46d907b70bd3c74de1093e45570aa503","ca141bfbf219b9f0c144bd278d5f1edc4412b7ca09a00121466c586d0995e264","99a0c762f3b042b7fe7c449c91e7aaee425e9a2b2ee8fa5c59be1e9b3bb55766","04f50e29badda93ca5d5b3f7745ffb9cf606e588af4c17b68ba6eed867fe047d","a0fd9aaca64673ee543be1c7083efe73a801bbfc2d86f4d74f1d610eb401e2eb","8d244c71792f50a54a86de454168f0d48d54e45539a9431865e649337fd8e7e7","c47b68d301d8dd045807548bf6e053889a909e3866231aab2586d01beb65b9ce","87da701a4488a17c765fd0fd0a25504b21fa108b2b9bbcc28fa8058323938ee0","899caab3ba9a3dc13536401e7590bb22e2f0385f955658433ccde7f2fac1d040","18e496f03a0dac2230893cd955ec5895467a7cb9c399dd35eacbcb7a7dc4e164","121411fa6571f666c4b74b868f8799660f978a45c623e453a623009e08a0c656","57c6df1fb93aeb862ddd8cb8770f12b473b3d3cb4aa659d1015e4251424d5596","0f9530750161bf0b4cca0f8e9ebe2c61df5c894cda213427a3f0560defe5598d","2809aa91788e2e60d340edbded8c1dbd7d72771e3416b14b9985e3a444a420c5","00e67c1002bb58a27333688e4164814b75561e3df850d61cfd1cde8ad1c8a5ee","5c46d41a962b5002b029582acf4d3d3b6f151c5e6c506d90cc49669c5722cbfa","a48625313ec9d35e9858e3fb9eeb28e8fff697dfb1226c8404a346730486f174","92978696f61af1026516c78b37d3a9787f335e46028cddf6b1b23801839827b4","ebed0352846677c97884426726b8b6b5ed8ee6b7bdeadb36d2779ef5caa1dd61","4490073a656a939c432bfb3fa05e5afb3f50cd4274afb645d361c800ffd21b41","8764c6550730a1fd8aee6a23ece45dd5e48554fd1d3648f35bf44e067042b2d0","6cfd5368a3b9178083f314790fa752f4ffa2f23350fd7966b2abe7d019eabf88","39c3228bec27a17768cf66f3ec723394aef035cb5694a85276238d92e897f257","f7a620ebf354c052a656c027c1b9cd6c45382c8b850b17356d380892483f87e9","f21c823d9fdbc21af67e422a87e390ae8bf0fb945a62f3d93390766f79b2f0fb","8c1671b1acdb4d960104cfe4384af6ac731ddf0d7be954dd105bb61d9a29280a","09fa121e2dbf5b725fe5c502602c1ae6b4b7a6d5fc3a6aef68bfbe818115dcce","1689ef8d6af4dfb417b4bf890da443b3377331522d96991fb4a67eee93ccf6b4","dc9374f06c66112d61c1b53db3f1dbcf02253750490a97bd737ac792948877ef","f7eefb8cc69f69836e36d8f2e4c47ff12823f05bb192902cf937db3ddecbd798","296f95dff6a68a78b17e1899556c379eb86c008b44845dc62f74ea5fb81bccc3","b22ae9acbf95b556a7adf915831c015edf504fce58b442cd47752ce128acc025","3078b87cee6fc33eaf042a35688ca5027ac12e5768e423624ab36ccf1993b1cf","af1b7571c9976ac2b81cfa82caf3ff75afa43ae20c3bc833e681c43e25bf46e0","16720d6851e11807440a6f83d588ca2b4e24a655143a0974971c97055d056ce7","7b3e11221b7bda7c4f0e4916fdd509e4e25512075e4b1e19c435f60a283005ea","15baae571ca91d88ba323ddd0cbe3f910603dcd9945e4c4f4daf49d371c216a7","b3f2713c7a0851f2a11a4ddfce3079bd51fe8183fb2f7ea32b8fc22843129746","402209d81dadfbc1559e2e7dc445f894da11ef2e9bb7ed54dec7652f24d28add","076be6b6d57171b4da5e3796465ff03462c89f975ce2ef8803555372fc650dc9","3cb8e1eba960a7db20a5ce2ba0b8b3faf4bb3f844e3fcc378747876f224bc3f6","d0458ea3bee892768bc555a9f2a9245334c1fc21bc45c8787da5f22e524f826b","9049e275aa6ab96a5672eb9ae5cc4e2929927e2ff963c1ebb9baf47397ce0ef6","1790a89f79b5e65e2b2a5b5f5de8c3fb6cfd9c13599a3291f49babe33c97006c","055ea1ef508723c51e9851460c2e5d9d476ec1c911bfa8c655ddaaf28d3882db","7116a83b274d2f842d0269c1d35a36158289a4ed4a9b11ddb6d52aff5d1ae8aa",{"version":"654efc505a922fa6fc7461e0bbff59a1c2a925a7a4df3353f0c07ee5cdad37b5","signature":"d1e0e9548fd83cf87c66f0a7511656fd6c3879fd609d4223366b1028d6ab15b3"},"8d91a185898da172a81042720823215304fc8d6258da9c720476012e997d2bb5","3785578856de4b020c410ea0690e14132e175298425a7f29f344012aac4ab795","67e135c1eff1ceb76432ca402f9c300fb8f00e1da9af6fa04dc98160efa67ded","9677f7d3f19218dd6fc02151f43c7ef9870a99040c60e26efa1de35351f005c5","15f5bf20d5a46817c689227b6b5a519a37a5dedeed35a4f28fdf905d8b113b98","78abc00dc67dca85b32b4b50b47aae3c864f2d178a6d4a5cb6f31a0dd630fd7c","c9ec670902faff631508df22f593a770d9f57f6ef7d0127424df031efbb945ba","eb365debf5b8a707a69d88b14c7c487f61fd60a2b8750c6d849c691cf0038381","a430884211109a78a9397db15faad69c96941c38e9da890ca5c398a508bc5170",{"version":"95c855ed8a5585348aab0fad0bc3b604670aab4b7766c0964e3ebf5fbabed8f0","signature":"1f73fdb802b1d4902b77bc802eba4153dfd0372880dd69cd4633e92ce91d57ac"},{"version":"2695ee80cf5f077e6d517e09d2d27caf639b7d4f234970a1acb7cd706c42377c","signature":"954a11d0b0b0e6b533c2ced7c0362bae6709d7b1caaca80b2e9835a4c007fc2b"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"db7b636ea0f25259a453456b509a9c62df8e3706abc1cda9d04766a125cf8330","signature":"57dad3c48bc2ec75c4ffdd67fc0e8004abc8d569662936b0a2344b8d51def36f"},{"version":"8b8762fe71bd917de9d0ff1b22685c5a19c6696e93aa65acefc33a0a0116d6d6","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"38fe2524bc380f2b39083817f4243dad81d37686b5c96c745906671beb5ca219","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"1bc2a60de0d3891dc9f78612fdd8b6c1a1f8fddfa58c0c621f371564f460ee16","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"aed23462b8ecb3c6c9a0542b06003794f428e125a8713332435974f31277d69b","signature":"e4ca4d8a87d3c81f481decf9000b72ba30371c8088de609814b2f0be74314bb2"},{"version":"614714a56925f9d97615be5672f733a9f761b238a1f86effd0f2e772a6b12c4a","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"d32f90e6cf32e99c86009b5f79fa50bc750fe54e17137d9bb029c377a2822ee2","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"3dd49afd822c82b63b3905a13e22240f34cf367aea4f4dd0e6564f4bddcb8370","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","93db4c949a785a3dbef7f5e08523be538e468c580dd276178b818e761b3b68cd","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"6e335a70826a634c5a1a1fa36a2dacbf3712ef2be7a517540ae1de8a1e8ea4f6","affectsGlobalScope":true},"576115ea69691c96f8f2b9fcfde5d0fb9b5f047dfa7dec242ebc08694c3b3190","df8529626079d6f9d5d3cd7b6fb7db9cda5a3118d383d8cd46c52aadb59593e7","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","51fd089a29b2a91c69bdaa28882cf1340dac3df3a068327b6a044d21a79bf8f5",{"version":"0066ebbd0f4ef9656983a2017969afa6460879e894ebaf6f2969631ad9b5b430","affectsGlobalScope":true},"fe6dba0e8c69f2b244e3da38e53dd2cc9e51b2543e647e805396af73006613f7","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"5810080a0da989a944d3b691b7b479a4a13c75947fb538abb8070710baa5ccee","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","8904e5b670bbfc712dda607853de9227206e7dad93ac97109fe30875c5f12b78","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"a54ee34c2cc03ec4bbf0c9b10a08b9f909a21b3314f90a743de7b12b85867cef","affectsGlobalScope":true},{"version":"8a985c7d30aea82342d5017730b546bb2b734fe37a2684ca55d4734deb019d58","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","5ba5b760345053acdf5beb1a9048ff43a51373f3d87849963779c1711ea7cbcc","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"4905d61a3e1e9b12e12dbf8660fc8d2f085734da6da8d725f395bf41a04853d6"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"fileIdsList":[[278],[232,278],[235,278],[236,241,269,278],[237,248,249,256,266,277,278],[237,238,248,256,278],[239,278],[240,241,249,257,278],[241,266,274,278],[242,244,248,256,278],[243,278],[244,245,278],[248,278],[246,248,278],[248,249,250,266,277,278],[248,249,250,263,266,269,278],[278,282],[244,248,251,256,266,277,278],[248,249,251,252,256,266,274,277,278],[251,253,266,274,277,278],[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],[248,254,278],[255,277,278,282],[244,248,256,266,278],[257,278],[258,278],[235,259,278],[260,276,278,282],[261,278],[262,278],[248,263,264,278],[263,265,278,280],[236,248,266,267,268,269,278],[236,266,268,278],[266,267,278],[269,278],[270,278],[235,266,278],[248,272,273,278],[272,273,278],[241,256,266,274,278],[275,278],[256,276,278],[236,251,262,277,278],[241,278],[266,278,279],[255,278,280],[278,281],[236,241,248,250,259,266,277,278,280,282],[266,278,283],[176,177,178,179,180,181,183,184,278],[181,182,185,278],[49,62,63,278],[46,47,51,52,53,278],[79,278],[47,53,70,123,278],[55,61,278],[49,66,67,278],[46,48,278],[46,278],[45,46,47,278],[49,55,56,62,278],[46,47,51,52,53,57,93,99,278],[55,63,100,125,126,128,278],[55,56,57,63,100,278],[46,47,51,52,53,55,56,62,90,278],[57,60,61,84,85,86,87,88,89,90,91,278],[57,60,62,278],[53,56,62,63,278],[47,57,278],[57,60,62,86,278],[57,60,62,88,278],[57,60,62,89,90,278],[57,60,61,62,63,85,88,278],[57,59,62,278],[48,63,94,111,112,278],[63,112,278],[66,67,278],[45,50,51,53,67,68,69,70,71,75,100,106,112,120,123,126,131,139,157,189,214,215,216,217,278],[46,47,51,52,53,62,71,75,123,278],[114,117,137,138,144,146,156,157,158,162,170,278],[46,47,51,52,53,63,78,113,114,278],[63,113,114,123,142,278],[46,47,51,53,63,76,77,107,113,114,115,123,278],[57,63,98,99,100,114,115,123,128,132,135,141,147,153,155,278],[55,57,63,82,83,86,88,128,156,278],[46,47,51,53,63,69,115,116,278],[57,63,88,100,128,153,154,278],[142,143,145,278],[46,47,51,53,58,63,75,76,77,78,100,113,114,115,123,278],[107,136,137,140,278],[57,128,154,155,278],[57,63,98,99,123,128,147,154,278],[46,47,51,53,63,76,77,98,99,114,115,123,132,141,154,278],[63,88,114,128,153,161,278],[63,123,136,151,159,160,167,168,169,278],[46,47,49,51,52,53,58,59,60,62,63,67,68,69,70,71,75,76,77,78,100,110,114,115,117,118,119,120,121,122,278],[58,62,70,123,278],[48,123,278],[46,123,278],[46,47,51,52,278],[46,47,48,278],[46,47,49,51,52,53,58,62,63,123,278],[54,55,62,63,278],[54,62,63,65,278],[49,58,60,77,97,100,278],[49,53,59,80,81,82,83,101,278],[63,96,102,278],[59,60,62,63,100,102,278],[56,57,59,61,63,83,84,86,87,88,89,90,91,93,95,96,278],[46,59,123,278],[56,57,63,92,99,100,278],[57,60,61,81,82,83,84,86,87,88,89,90,91,93,95,99,100,101,278],[58,94,112,123,129,144,278],[59,62,63,78,94,113,114,123,278],[55,58,63,65,67,107,123,129,137,138,139,278],[58,100,145,146,278],[56,58,99,100,103,108,123,129,154,278],[55,99,100,108,123,131,137,140,278],[50,51,55,58,62,67,78,100,103,107,109,110,112,114,123,278],[45,60,62,100,109,114,123,278],[46,56,60,78,99,100,108,114,278],[78,113,114,123,151,278],[47,63,92,100,114,123,149,151,152,278],[58,151,159,165,166,170,278],[49,59,62,63,67,105,123,136,151,152,164,278],[55,65,66,67,139,278],[49,63,278],[63,65,66,78,107,128,130,132,142,168,169,172,173,174,175,186,187,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,206,207,208,209,210,278],[55,56,63,94,112,278],[64,66,67,169,278],[56,64,78,173,278],[57,63,78,88,100,128,278],[46,49,55,56,65,78,94,107,278],[56,168,185,278],[49,56,63,64,78,169,278],[46,47,51,52,53,55,56,63,78,112,278],[56,78,112,142,278],[49,55,56,63,78,142,189,278],[56,112,142,278],[56,63,78,112,142,278],[56,62,78,112,142,193,278],[94,112,278],[56,67,78,169,278],[56,64,78,125,126,132,278],[64,67,78,173,278],[45,46,47,51,52,53,55,63,78,114,123,142,189,278],[53,55,56,75,78,278],[64,67,173,278],[63,94,112,278],[46,47,49,50,51,52,53,55,56,64,65,66,67,78,104,106,278],[56,64,65,67,78,169,278],[56,64,65,173,278],[55,56,64,65,67,78,106,130,139,163,278],[49,64,67,78,169,278],[56,62,64,65,67,78,139,169,193,278],[46,55,56,64,65,66,67,78,107,278],[55,62,63,64,66,67,107,202,278],[46,47,51,52,53,55,57,62,63,69,78,100,124,125,127,278],[49,55,56,63,64,65,67,78,100,125,126,130,131,278],[49,55,56,63,94,112,193,278],[56,64,67,78,139,169,205,278],[49,56,64,65,67,78,169,278],[49,56,63,64,66,67,78,139,169,278],[81,82,83,95,99,133,219,220,221,278],[49,81,82,219,278],[79,100,159,161,278],[79,80,278],[49,79,133,134,278],[49,79,95,278],[48,49,79,278],[46,49,94,278],[49,79,133,160,278],[49,80,81,82,95,278],[57,62,81,82,83,93,95,98,100,278],[49,81,82,278],[48,55,66,278],[105,278],[65,278],[49,50,62,63,64,66,278],[49,62,63,65,278],[44,46,62,67,123,278],[49,66,278],[58,62,278],[66,67,98,103,114,126,278],[55,63,66,67,100,125,127,278],[46,47,49,51,52,53,55,56,58,60,62,63,72,73,74,114,278],[48,65,67,151,278],[148,278],[45,59,123,148,149,150,278],[151,278],[94,139,149,163,164,278],[43,278],[43,226,278],[43,213,223,278],[43,56,88,171,211,212,213,218,222,278],[43,56,75,92,123,171,211,212,278],[43,228,229,278],[176,177,178,179,180,181,183,184],[181,182,185],[49,62,63],[46,47,51,52,53],[79],[47,53,70,123],[55,61],[49,66,67],[46,48],[46],[45,46,47],[49,55,56,62],[46,47,51,52,53,57,93,99],[55,63,100,125,126,128],[55,56,57,63,100],[46,47,51,52,53,55,56,62,90],[57,60,61,84,85,86,87,88,89,90,91],[57,60,62],[53,56,62,63],[47,57],[57,60,62,86],[57,60,62,88],[57,60,62,89,90],[57,60,61,62,63,85,88],[57,59,62],[48,63,94,111,112],[63,112],[66,67],[45,50,51,53,67,68,69,70,71,75,100,106,112,120,123,126,131,139,157,189,214,215,216,217],[46,47,51,52,53,62,71,75,123],[114,117,137,138,144,146,156,157,158,162,170],[46,47,51,52,53,63,78,113,114],[63,113,114,123,142],[46,47,51,53,63,76,77,107,113,114,115,123],[57,63,98,99,100,114,115,123,128,132,135,141,147,153,155],[55,57,63,82,83,86,88,128,156],[46,47,51,53,63,69,115,116],[57,63,88,100,128,153,154],[142,143,145],[46,47,51,53,58,63,75,76,77,78,100,113,114,115,123],[107,136,137,140],[57,128,154,155],[57,63,98,99,123,128,147,154],[46,47,51,53,63,76,77,98,99,114,115,123,132,141,154],[63,88,114,128,153,161],[63,123,136,151,159,160,167,168,169],[46,47,49,51,52,53,58,59,60,62,63,67,68,69,70,71,75,76,77,78,100,110,114,115,117,118,119,120,121,122],[58,62,70,123],[48,123],[46,123],[46,47,51,52],[46,47,48],[46,47,49,51,52,53,58,62,63,123],[54,55,62,63],[54,62,63,65],[49,58,60,77,97,100],[49,53,59,80,81,82,83,101],[63,96,102],[59,60,62,63,100,102],[56,57,59,61,63,83,84,86,87,88,89,90,91,93,95,96],[46,59,123],[56,57,63,92,99,100],[57,60,61,81,82,83,84,86,87,88,89,90,91,93,95,99,100,101],[58,94,112,123,129,144],[59,62,63,78,94,113,114,123],[55,58,63,65,67,107,123,129,137,138,139],[58,100,145,146],[56,58,99,100,103,108,123,129,154],[55,99,100,108,123,131,137,140],[50,51,55,58,62,67,78,100,103,107,109,110,112,114,123],[45,60,62,100,109,114,123],[46,56,60,78,99,100,108,114],[78,113,114,123,151],[47,63,92,100,114,123,149,151,152],[58,151,159,165,166,170],[49,59,62,63,67,105,123,136,151,152,164],[55,65,66,67,139],[49,63],[63,65,66,78,107,128,130,132,142,168,169,172,173,174,175,186,187,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,206,207,208,209,210],[55,56,63,94,112],[64,66,67,169],[56,64,78,173],[57,63,78,88,100,128],[46,49,55,56,65,78,94,107],[56,168,185],[49,56,63,64,78,169],[46,47,51,52,53,55,56,63,78,112],[56,78,112,142],[49,55,56,63,78,142,189],[56,112,142],[56,63,78,112,142],[56,62,78,112,142,193],[94,112],[56,67,78,169],[56,64,78,125,126,132],[64,67,78,173],[45,46,47,51,52,53,55,63,78,114,123,142,189],[53,55,56,75,78],[64,67,173],[63,94,112],[46,47,49,50,51,52,53,55,56,64,65,66,67,78,104,106],[56,64,65,67,78,169],[56,64,65,173],[55,56,64,65,67,78,106,130,139,163],[49,64,67,78,169],[56,62,64,65,67,78,139,169,193],[46,55,56,64,65,66,67,78,107],[55,62,63,64,66,67,107,202],[46,47,51,52,53,55,57,62,63,69,78,100,124,125,127],[49,55,56,63,64,65,67,78,100,125,126,130,131],[49,55,56,63,94,112,193],[56,64,67,78,139,169,205],[49,56,64,65,67,78,169],[49,56,63,64,66,67,78,139,169],[81,82,83,95,99,133,219,220,221],[49,81,82,219],[79,100,159,161],[79,80],[49,79,133,134],[49,79,95],[48,49,79],[46,49,94],[49,79,133,160],[49,80,81,82,95],[57,62,81,82,83,93,95,98,100],[49,81,82],[48,55,66],[105],[65],[49,50,62,63,64,66],[49,62,63,65],[44,46,62,67,123],[49,66],[58,62],[66,67,98,103,114,126],[55,63,66,67,100,125,127],[46,47,49,51,52,53,55,56,58,60,62,63,72,73,74,114],[48,65,67,151],[148],[45,59,123,148,149,150],[151],[94,139,149,163,164],[213,223],[212,213,218,222],[92,123,211,212]],"referencedMap":[[212,1],[232,2],[233,2],[235,3],[236,4],[237,5],[238,6],[239,7],[240,8],[241,9],[242,10],[243,11],[244,12],[245,12],[247,13],[246,14],[248,13],[249,15],[250,16],[234,17],[284,1],[251,18],[252,19],[253,20],[285,21],[254,22],[255,23],[256,24],[257,25],[258,26],[259,27],[260,28],[261,29],[262,30],[263,31],[264,31],[265,32],[266,33],[268,34],[267,35],[269,36],[270,37],[271,38],[272,39],[273,40],[274,41],[275,42],[276,43],[277,44],[278,45],[279,46],[280,47],[281,48],[282,49],[283,50],[176,1],[179,1],[184,1],[185,51],[183,52],[177,1],[180,1],[181,1],[178,1],[182,1],[64,1],[72,53],[69,54],[79,1],[80,55],[118,56],[62,57],[94,58],[45,1],[47,59],[46,60],[116,1],[48,61],[134,1],[63,62],[100,63],[127,64],[125,65],[214,66],[92,67],[61,68],[57,69],[84,70],[85,68],[86,68],[87,71],[89,72],[91,73],[88,68],[90,74],[60,75],[112,76],[189,77],[139,78],[218,79],[119,80],[215,1],[171,81],[115,82],[143,83],[136,84],[154,85],[157,86],[117,87],[158,88],[144,89],[114,90],[138,91],[156,92],[146,93],[137,94],[162,95],[170,96],[123,97],[71,98],[216,99],[121,1],[70,100],[122,1],[53,101],[52,1],[51,102],[120,103],[58,1],[56,104],[55,105],[54,1],[98,106],[102,107],[108,108],[101,109],[103,109],[97,110],[77,111],[76,1],[93,112],[96,113],[145,114],[129,115],[140,116],[147,117],[155,118],[141,119],[113,120],[110,121],[109,122],[152,123],[153,124],[167,125],[166,126],[163,127],[111,1],[73,128],[74,1],[49,1],[211,129],[208,130],[172,131],[174,132],[175,133],[168,134],[186,135],[187,136],[142,137],[188,138],[190,139],[191,140],[192,141],[194,142],[210,143],[195,144],[196,145],[197,146],[198,147],[78,148],[199,149],[209,150],[107,151],[200,152],[201,153],[104,1],[169,154],[202,155],[203,156],[130,157],[204,158],[128,159],[124,1],[132,160],[193,161],[206,162],[173,163],[207,164],[105,1],[44,1],[222,165],[220,166],[160,167],[81,168],[135,169],[133,170],[221,171],[95,172],[161,173],[219,174],[82,168],[99,175],[83,176],[67,177],[106,178],[66,179],[65,180],[205,181],[68,182],[50,183],[59,184],[217,1],[131,185],[126,186],[75,187],[148,1],[164,188],[149,189],[151,190],[159,1],[150,191],[165,192],[43,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],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[225,1],[226,193],[227,194],[224,195],[223,196],[213,197],[230,198],[229,193],[231,193],[228,193]],"exportedModulesMap":[[232,2],[233,2],[235,3],[236,4],[237,5],[238,6],[239,7],[240,8],[241,9],[242,10],[243,11],[244,12],[245,12],[247,13],[246,14],[248,13],[249,15],[250,16],[234,17],[284,1],[251,18],[252,19],[253,20],[285,21],[254,22],[255,23],[256,24],[257,25],[258,26],[259,27],[260,28],[261,29],[262,30],[263,31],[264,31],[265,32],[266,33],[268,34],[267,35],[269,36],[270,37],[271,38],[272,39],[273,40],[274,41],[275,42],[276,43],[277,44],[278,45],[279,46],[280,47],[281,48],[282,49],[283,50],[185,199],[183,200],[72,201],[69,202],[80,203],[118,204],[62,205],[94,206],[47,207],[46,208],[48,209],[63,210],[100,211],[127,212],[125,213],[214,214],[92,215],[61,216],[57,217],[84,218],[85,216],[86,216],[87,219],[89,220],[91,221],[88,216],[90,222],[60,223],[112,224],[189,225],[139,226],[218,227],[119,228],[171,229],[115,230],[143,231],[136,232],[154,233],[157,234],[117,235],[158,236],[144,237],[114,238],[138,239],[156,240],[146,241],[137,242],[162,243],[170,244],[123,245],[71,246],[216,247],[70,248],[53,249],[51,250],[120,251],[56,252],[55,253],[98,254],[102,255],[108,256],[101,257],[103,257],[97,258],[77,259],[93,260],[96,261],[145,262],[129,263],[140,264],[147,265],[155,266],[141,267],[113,268],[110,269],[109,270],[152,271],[153,272],[167,273],[166,274],[163,275],[73,276],[211,277],[208,278],[172,279],[174,280],[175,281],[168,282],[186,283],[187,284],[142,285],[188,286],[190,287],[191,288],[192,289],[194,290],[210,291],[195,292],[196,293],[197,294],[198,295],[78,296],[199,297],[209,298],[107,299],[200,300],[201,301],[169,302],[202,303],[203,304],[130,305],[204,306],[128,307],[132,308],[193,309],[206,310],[173,311],[207,312],[222,313],[220,314],[160,315],[81,316],[135,317],[133,318],[221,319],[95,320],[161,321],[219,322],[82,316],[99,323],[83,324],[67,325],[106,326],[66,327],[65,328],[205,329],[68,330],[50,331],[59,332],[131,333],[126,334],[75,335],[164,336],[149,337],[151,338],[150,339],[165,340],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[42,1],[224,341],[223,342],[213,343]],"semanticDiagnosticsPerFile":[212,232,233,235,236,237,238,239,240,241,242,243,244,245,247,246,248,249,250,234,284,251,252,253,285,254,255,256,257,258,259,260,261,262,263,264,265,266,268,267,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,176,179,184,185,183,177,180,181,178,182,64,72,69,79,80,118,62,94,45,47,46,116,48,134,63,100,127,125,214,92,61,57,84,85,86,87,89,91,88,90,60,112,189,139,218,119,215,171,115,143,136,154,157,117,158,144,114,138,156,146,137,162,170,123,71,216,121,70,122,53,52,51,120,58,56,55,54,98,102,108,101,103,97,77,76,93,96,145,129,140,147,155,141,113,110,109,152,153,167,166,163,111,73,74,49,211,208,172,174,175,168,186,187,142,188,190,191,192,194,210,195,196,197,198,78,199,209,107,200,201,104,169,202,203,130,204,128,124,132,193,206,173,207,105,44,222,220,160,81,135,133,221,95,161,219,82,99,83,67,106,66,65,205,68,50,59,217,131,126,75,148,164,149,151,159,150,165,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,225,226,227,224,223,[213,[{"file":"../src/openlayers.ts","start":108,"length":25,"messageText":"Cannot find module '!!text-loader!ol/ol.css' or its corresponding type declarations.","category":1,"code":2307}]],230,229,231,228],"affectedFilesPendingEmit":[[212,1],[232,1],[233,1],[235,1],[236,1],[237,1],[238,1],[239,1],[240,1],[241,1],[242,1],[243,1],[244,1],[245,1],[247,1],[246,1],[248,1],[249,1],[250,1],[234,1],[284,1],[251,1],[252,1],[253,1],[285,1],[254,1],[255,1],[256,1],[257,1],[258,1],[259,1],[260,1],[261,1],[262,1],[263,1],[264,1],[265,1],[266,1],[268,1],[267,1],[269,1],[270,1],[271,1],[272,1],[273,1],[274,1],[275,1],[276,1],[277,1],[278,1],[279,1],[280,1],[281,1],[282,1],[283,1],[176,1],[179,1],[184,1],[185,1],[183,1],[177,1],[180,1],[181,1],[178,1],[182,1],[64,1],[72,1],[69,1],[79,1],[80,1],[118,1],[62,1],[94,1],[45,1],[47,1],[46,1],[116,1],[48,1],[134,1],[63,1],[100,1],[127,1],[125,1],[214,1],[92,1],[61,1],[57,1],[84,1],[85,1],[86,1],[87,1],[89,1],[91,1],[88,1],[90,1],[60,1],[112,1],[189,1],[139,1],[218,1],[119,1],[215,1],[171,1],[115,1],[143,1],[136,1],[154,1],[157,1],[117,1],[158,1],[144,1],[114,1],[138,1],[156,1],[146,1],[137,1],[162,1],[170,1],[123,1],[71,1],[216,1],[121,1],[70,1],[122,1],[53,1],[52,1],[51,1],[120,1],[58,1],[56,1],[55,1],[54,1],[98,1],[102,1],[108,1],[101,1],[103,1],[97,1],[77,1],[76,1],[93,1],[96,1],[145,1],[129,1],[140,1],[147,1],[155,1],[141,1],[113,1],[110,1],[109,1],[152,1],[153,1],[167,1],[166,1],[163,1],[111,1],[73,1],[74,1],[49,1],[211,1],[208,1],[172,1],[174,1],[175,1],[168,1],[186,1],[187,1],[142,1],[188,1],[190,1],[191,1],[192,1],[194,1],[210,1],[195,1],[196,1],[197,1],[198,1],[78,1],[199,1],[209,1],[107,1],[200,1],[201,1],[104,1],[169,1],[202,1],[203,1],[130,1],[204,1],[128,1],[124,1],[132,1],[193,1],[206,1],[173,1],[207,1],[105,1],[44,1],[222,1],[220,1],[160,1],[81,1],[135,1],[133,1],[221,1],[95,1],[161,1],[219,1],[82,1],[99,1],[83,1],[67,1],[106,1],[66,1],[65,1],[205,1],[68,1],[50,1],[59,1],[217,1],[131,1],[126,1],[75,1],[148,1],[164,1],[149,1],[151,1],[159,1],[150,1],[165,1],[43,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],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[225,1],[226,1],[227,1],[224,1],[223,1],[213,1],[230,1],[229,1],[231,1],[228,1]]},"version":"4.9.5"}
Binary file
Binary file
Binary file
@@ -0,0 +1,15 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 2
5
+ },
6
+ "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1693644477938,
10
+ "name": "logs/application-2023-09-02-17.log",
11
+ "hash": "073852452c690e6c166bc502218f263bc72f4f306c80409ea44d2b0d370508c3"
12
+ }
13
+ ],
14
+ "hashType": "sha256"
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "keep": {
3
+ "days": true,
4
+ "amount": 14
5
+ },
6
+ "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
+ "files": [
8
+ {
9
+ "date": 1693644479025,
10
+ "name": "logs/connections-2023-09-02-17.log",
11
+ "hash": "f4c542d3ea19229266eb51e27b792fff046b88ba32086d353d0f7cb32287f20f"
12
+ }
13
+ ],
14
+ "hashType": "sha256"
15
+ }
@@ -0,0 +1,15 @@
1
+ 2023-09-02T17:47:58+09:00 info: File Storage is Ready.
2
+ 2023-09-02T17:47:59+09:00 error: oracledb module loading failed
3
+ 2023-09-02T17:47:59+09:00 error: oracledb module loading failed
4
+ 2023-09-02T17:48:00+09:00 info: Default DataSource established
5
+ 2023-09-02T17:48:01+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2023-09-02T17:48:01+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2023-09-02T17:50:40+09:00 info: File Storage is Ready.
8
+ 2023-09-02T17:50:41+09:00 error: oracledb module loading failed
9
+ 2023-09-02T17:50:41+09:00 error: oracledb module loading failed
10
+ 2023-09-02T17:50:46+09:00 info: File Storage is Ready.
11
+ 2023-09-02T17:50:46+09:00 error: oracledb module loading failed
12
+ 2023-09-02T17:50:46+09:00 error: oracledb module loading failed
13
+ 2023-09-02T17:50:47+09:00 info: Default DataSource established
14
+ 2023-09-02T17:50:47+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
15
+ 2023-09-02T17:50:47+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql