@esotericsoftware/spine-webgl 4.0.11 → 4.0.15

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 (40) hide show
  1. package/dist/AssetManager.d.ts +33 -33
  2. package/dist/AssetManager.js +37 -37
  3. package/dist/Camera.d.ts +49 -49
  4. package/dist/Camera.js +80 -80
  5. package/dist/CameraController.d.ts +34 -0
  6. package/dist/CameraController.js +96 -0
  7. package/dist/GLTexture.d.ts +46 -46
  8. package/dist/GLTexture.js +102 -102
  9. package/dist/Input.d.ts +56 -54
  10. package/dist/Input.js +211 -214
  11. package/dist/LoadingScreen.d.ts +43 -43
  12. package/dist/LoadingScreen.js +114 -114
  13. package/dist/Matrix4.d.ts +68 -68
  14. package/dist/Matrix4.js +321 -321
  15. package/dist/Mesh.d.ts +88 -88
  16. package/dist/Mesh.js +193 -193
  17. package/dist/PolygonBatcher.d.ts +53 -53
  18. package/dist/PolygonBatcher.js +121 -119
  19. package/dist/SceneRenderer.d.ts +73 -73
  20. package/dist/SceneRenderer.js +476 -476
  21. package/dist/Shader.d.ts +75 -75
  22. package/dist/Shader.js +262 -262
  23. package/dist/ShapeRenderer.d.ts +69 -69
  24. package/dist/ShapeRenderer.js +338 -338
  25. package/dist/SkeletonDebugRenderer.d.ts +60 -60
  26. package/dist/SkeletonDebugRenderer.js +222 -222
  27. package/dist/SkeletonRenderer.d.ts +49 -49
  28. package/dist/SkeletonRenderer.js +295 -295
  29. package/dist/SpineCanvas.d.ts +73 -73
  30. package/dist/SpineCanvas.js +82 -82
  31. package/dist/Vector3.d.ts +47 -47
  32. package/dist/Vector3.js +103 -103
  33. package/dist/WebGL.d.ts +44 -43
  34. package/dist/WebGL.js +96 -96
  35. package/dist/iife/spine-webgl.js +195 -112
  36. package/dist/iife/spine-webgl.js.map +3 -3
  37. package/dist/iife/spine-webgl.min.js +26 -26
  38. package/dist/index.d.ts +18 -17
  39. package/dist/index.js +19 -18
  40. package/package.json +34 -34
package/dist/WebGL.d.ts CHANGED
@@ -1,43 +1,44 @@
1
- /******************************************************************************
2
- * Spine Runtimes License Agreement
3
- * Last updated January 1, 2020. Replaces all prior versions.
4
- *
5
- * Copyright (c) 2013-2020, Esoteric Software LLC
6
- *
7
- * Integration of the Spine Runtimes into software or otherwise creating
8
- * derivative works of the Spine Runtimes is permitted under the terms and
9
- * conditions of Section 2 of the Spine Editor License Agreement:
10
- * http://esotericsoftware.com/spine-editor-license
11
- *
12
- * Otherwise, it is permitted to integrate the Spine Runtimes into software
13
- * or otherwise create derivative works of the Spine Runtimes (collectively,
14
- * "Products"), provided that each user of the Products must obtain their own
15
- * Spine Editor license and redistribution of the Products in any form must
16
- * include this license and copyright notice.
17
- *
18
- * THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
19
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
- * DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
22
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
24
- * BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
25
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
- * THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
- *****************************************************************************/
29
- import { Restorable, BlendMode } from "@esotericsoftware/spine-core";
30
- export declare class ManagedWebGLRenderingContext {
31
- canvas: HTMLCanvasElement | OffscreenCanvas;
32
- gl: WebGLRenderingContext;
33
- private restorables;
34
- constructor(canvasOrContext: HTMLCanvasElement | WebGLRenderingContext | EventTarget, contextConfig?: any);
35
- private setupCanvas;
36
- addRestorable(restorable: Restorable): void;
37
- removeRestorable(restorable: Restorable): void;
38
- }
39
- export declare class WebGLBlendModeConverter {
40
- static getDestGLBlendMode(blendMode: BlendMode): 1 | 771;
41
- static getSourceColorGLBlendMode(blendMode: BlendMode, premultipliedAlpha?: boolean): 1 | 770 | 774;
42
- static getSourceAlphaGLBlendMode(blendMode: BlendMode): 1 | 769 | 771;
43
- }
1
+ /******************************************************************************
2
+ * Spine Runtimes License Agreement
3
+ * Last updated January 1, 2020. Replaces all prior versions.
4
+ *
5
+ * Copyright (c) 2013-2020, Esoteric Software LLC
6
+ *
7
+ * Integration of the Spine Runtimes into software or otherwise creating
8
+ * derivative works of the Spine Runtimes is permitted under the terms and
9
+ * conditions of Section 2 of the Spine Editor License Agreement:
10
+ * http://esotericsoftware.com/spine-editor-license
11
+ *
12
+ * Otherwise, it is permitted to integrate the Spine Runtimes into software
13
+ * or otherwise create derivative works of the Spine Runtimes (collectively,
14
+ * "Products"), provided that each user of the Products must obtain their own
15
+ * Spine Editor license and redistribution of the Products in any form must
16
+ * include this license and copyright notice.
17
+ *
18
+ * THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
19
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ * DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
22
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
24
+ * BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
25
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
+ * THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+ *****************************************************************************/
29
+ /// <reference types="offscreencanvas" />
30
+ import { Restorable, BlendMode } from "@esotericsoftware/spine-core";
31
+ export declare class ManagedWebGLRenderingContext {
32
+ canvas: HTMLCanvasElement | OffscreenCanvas;
33
+ gl: WebGLRenderingContext;
34
+ private restorables;
35
+ constructor(canvasOrContext: HTMLCanvasElement | WebGLRenderingContext | EventTarget, contextConfig?: any);
36
+ private setupCanvas;
37
+ addRestorable(restorable: Restorable): void;
38
+ removeRestorable(restorable: Restorable): void;
39
+ }
40
+ export declare class WebGLBlendModeConverter {
41
+ static getDestGLBlendMode(blendMode: BlendMode): 1 | 771;
42
+ static getSourceColorGLBlendMode(blendMode: BlendMode, premultipliedAlpha?: boolean): 1 | 770 | 774;
43
+ static getSourceAlphaGLBlendMode(blendMode: BlendMode): 1 | 769 | 771;
44
+ }
package/dist/WebGL.js CHANGED
@@ -1,97 +1,97 @@
1
- /******************************************************************************
2
- * Spine Runtimes License Agreement
3
- * Last updated January 1, 2020. Replaces all prior versions.
4
- *
5
- * Copyright (c) 2013-2020, Esoteric Software LLC
6
- *
7
- * Integration of the Spine Runtimes into software or otherwise creating
8
- * derivative works of the Spine Runtimes is permitted under the terms and
9
- * conditions of Section 2 of the Spine Editor License Agreement:
10
- * http://esotericsoftware.com/spine-editor-license
11
- *
12
- * Otherwise, it is permitted to integrate the Spine Runtimes into software
13
- * or otherwise create derivative works of the Spine Runtimes (collectively,
14
- * "Products"), provided that each user of the Products must obtain their own
15
- * Spine Editor license and redistribution of the Products in any form must
16
- * include this license and copyright notice.
17
- *
18
- * THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
19
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
- * DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
22
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
24
- * BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
25
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
- * THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
- *****************************************************************************/
29
- import { BlendMode } from "@esotericsoftware/spine-core";
30
- export class ManagedWebGLRenderingContext {
31
- constructor(canvasOrContext, contextConfig = { alpha: "true" }) {
32
- this.restorables = new Array();
33
- if (!((canvasOrContext instanceof WebGLRenderingContext) || (typeof WebGL2RenderingContext !== 'undefined' && canvasOrContext instanceof WebGL2RenderingContext)))
34
- this.setupCanvas(canvasOrContext, contextConfig);
35
- else {
36
- this.gl = canvasOrContext;
37
- this.canvas = this.gl.canvas;
38
- }
39
- }
40
- setupCanvas(canvas, contextConfig) {
41
- this.gl = (canvas.getContext("webgl2", contextConfig) || canvas.getContext("webgl", contextConfig));
42
- this.canvas = canvas;
43
- canvas.addEventListener("webglcontextlost", (e) => {
44
- let event = e;
45
- if (e)
46
- e.preventDefault();
47
- });
48
- canvas.addEventListener("webglcontextrestored", (e) => {
49
- for (let i = 0, n = this.restorables.length; i < n; i++)
50
- this.restorables[i].restore();
51
- });
52
- }
53
- addRestorable(restorable) {
54
- this.restorables.push(restorable);
55
- }
56
- removeRestorable(restorable) {
57
- let index = this.restorables.indexOf(restorable);
58
- if (index > -1)
59
- this.restorables.splice(index, 1);
60
- }
61
- }
62
- const ONE = 1;
63
- const ONE_MINUS_SRC_COLOR = 0x0301;
64
- const SRC_ALPHA = 0x0302;
65
- const ONE_MINUS_SRC_ALPHA = 0x0303;
66
- const ONE_MINUS_DST_ALPHA = 0x0305;
67
- const DST_COLOR = 0x0306;
68
- export class WebGLBlendModeConverter {
69
- static getDestGLBlendMode(blendMode) {
70
- switch (blendMode) {
71
- case BlendMode.Normal: return ONE_MINUS_SRC_ALPHA;
72
- case BlendMode.Additive: return ONE;
73
- case BlendMode.Multiply: return ONE_MINUS_SRC_ALPHA;
74
- case BlendMode.Screen: return ONE_MINUS_SRC_ALPHA;
75
- default: throw new Error("Unknown blend mode: " + blendMode);
76
- }
77
- }
78
- static getSourceColorGLBlendMode(blendMode, premultipliedAlpha = false) {
79
- switch (blendMode) {
80
- case BlendMode.Normal: return premultipliedAlpha ? ONE : SRC_ALPHA;
81
- case BlendMode.Additive: return premultipliedAlpha ? ONE : SRC_ALPHA;
82
- case BlendMode.Multiply: return DST_COLOR;
83
- case BlendMode.Screen: return ONE;
84
- default: throw new Error("Unknown blend mode: " + blendMode);
85
- }
86
- }
87
- static getSourceAlphaGLBlendMode(blendMode) {
88
- switch (blendMode) {
89
- case BlendMode.Normal: return ONE;
90
- case BlendMode.Additive: return ONE;
91
- case BlendMode.Multiply: return ONE_MINUS_SRC_ALPHA;
92
- case BlendMode.Screen: return ONE_MINUS_SRC_COLOR;
93
- default: throw new Error("Unknown blend mode: " + blendMode);
94
- }
95
- }
96
- }
1
+ /******************************************************************************
2
+ * Spine Runtimes License Agreement
3
+ * Last updated January 1, 2020. Replaces all prior versions.
4
+ *
5
+ * Copyright (c) 2013-2020, Esoteric Software LLC
6
+ *
7
+ * Integration of the Spine Runtimes into software or otherwise creating
8
+ * derivative works of the Spine Runtimes is permitted under the terms and
9
+ * conditions of Section 2 of the Spine Editor License Agreement:
10
+ * http://esotericsoftware.com/spine-editor-license
11
+ *
12
+ * Otherwise, it is permitted to integrate the Spine Runtimes into software
13
+ * or otherwise create derivative works of the Spine Runtimes (collectively,
14
+ * "Products"), provided that each user of the Products must obtain their own
15
+ * Spine Editor license and redistribution of the Products in any form must
16
+ * include this license and copyright notice.
17
+ *
18
+ * THE SPINE RUNTIMES ARE PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY
19
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ * DISCLAIMED. IN NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY
22
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES,
24
+ * BUSINESS INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND
25
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
+ * THE SPINE RUNTIMES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+ *****************************************************************************/
29
+ import { BlendMode } from "@esotericsoftware/spine-core";
30
+ export class ManagedWebGLRenderingContext {
31
+ constructor(canvasOrContext, contextConfig = { alpha: "true" }) {
32
+ this.restorables = new Array();
33
+ if (!((canvasOrContext instanceof WebGLRenderingContext) || (typeof WebGL2RenderingContext !== 'undefined' && canvasOrContext instanceof WebGL2RenderingContext)))
34
+ this.setupCanvas(canvasOrContext, contextConfig);
35
+ else {
36
+ this.gl = canvasOrContext;
37
+ this.canvas = this.gl.canvas;
38
+ }
39
+ }
40
+ setupCanvas(canvas, contextConfig) {
41
+ this.gl = (canvas.getContext("webgl2", contextConfig) || canvas.getContext("webgl", contextConfig));
42
+ this.canvas = canvas;
43
+ canvas.addEventListener("webglcontextlost", (e) => {
44
+ let event = e;
45
+ if (e)
46
+ e.preventDefault();
47
+ });
48
+ canvas.addEventListener("webglcontextrestored", (e) => {
49
+ for (let i = 0, n = this.restorables.length; i < n; i++)
50
+ this.restorables[i].restore();
51
+ });
52
+ }
53
+ addRestorable(restorable) {
54
+ this.restorables.push(restorable);
55
+ }
56
+ removeRestorable(restorable) {
57
+ let index = this.restorables.indexOf(restorable);
58
+ if (index > -1)
59
+ this.restorables.splice(index, 1);
60
+ }
61
+ }
62
+ const ONE = 1;
63
+ const ONE_MINUS_SRC_COLOR = 0x0301;
64
+ const SRC_ALPHA = 0x0302;
65
+ const ONE_MINUS_SRC_ALPHA = 0x0303;
66
+ const ONE_MINUS_DST_ALPHA = 0x0305;
67
+ const DST_COLOR = 0x0306;
68
+ export class WebGLBlendModeConverter {
69
+ static getDestGLBlendMode(blendMode) {
70
+ switch (blendMode) {
71
+ case BlendMode.Normal: return ONE_MINUS_SRC_ALPHA;
72
+ case BlendMode.Additive: return ONE;
73
+ case BlendMode.Multiply: return ONE_MINUS_SRC_ALPHA;
74
+ case BlendMode.Screen: return ONE_MINUS_SRC_ALPHA;
75
+ default: throw new Error("Unknown blend mode: " + blendMode);
76
+ }
77
+ }
78
+ static getSourceColorGLBlendMode(blendMode, premultipliedAlpha = false) {
79
+ switch (blendMode) {
80
+ case BlendMode.Normal: return premultipliedAlpha ? ONE : SRC_ALPHA;
81
+ case BlendMode.Additive: return premultipliedAlpha ? ONE : SRC_ALPHA;
82
+ case BlendMode.Multiply: return DST_COLOR;
83
+ case BlendMode.Screen: return ONE;
84
+ default: throw new Error("Unknown blend mode: " + blendMode);
85
+ }
86
+ }
87
+ static getSourceAlphaGLBlendMode(blendMode) {
88
+ switch (blendMode) {
89
+ case BlendMode.Normal: return ONE;
90
+ case BlendMode.Additive: return ONE;
91
+ case BlendMode.Multiply: return ONE_MINUS_SRC_ALPHA;
92
+ case BlendMode.Screen: return ONE_MINUS_SRC_COLOR;
93
+ default: throw new Error("Unknown blend mode: " + blendMode);
94
+ }
95
+ }
96
+ }
97
97
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiV2ViR0wuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvV2ViR0wudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OzsrRUEyQitFO0FBRS9FLE9BQU8sRUFBYyxTQUFTLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUVyRSxNQUFNLE9BQU8sNEJBQTRCO0lBS3hDLFlBQWEsZUFBd0UsRUFBRSxnQkFBcUIsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFO1FBRnJILGdCQUFXLEdBQUcsSUFBSSxLQUFLLEVBQWMsQ0FBQztRQUc3QyxJQUFJLENBQUMsQ0FBQyxDQUFDLGVBQWUsWUFBWSxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsT0FBTyxzQkFBc0IsS0FBSyxXQUFXLElBQUksZUFBZSxZQUFZLHNCQUFzQixDQUFDLENBQUM7WUFDaEssSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsYUFBYSxDQUFDLENBQUM7YUFDN0M7WUFDSixJQUFJLENBQUMsRUFBRSxHQUFHLGVBQWUsQ0FBQztZQUMxQixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxFQUFFLENBQUMsTUFBTSxDQUFDO1NBQzdCO0lBQ0YsQ0FBQztJQUVPLFdBQVcsQ0FBRSxNQUFXLEVBQUUsYUFBa0I7UUFDbkQsSUFBSSxDQUFDLEVBQUUsR0FBMEIsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxhQUFhLENBQUMsSUFBSSxNQUFNLENBQUMsVUFBVSxDQUFDLE9BQU8sRUFBRSxhQUFhLENBQUMsQ0FBQyxDQUFDO1FBQzNILElBQUksQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDO1FBQ3JCLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxrQkFBa0IsRUFBRSxDQUFDLENBQU0sRUFBRSxFQUFFO1lBQ3RELElBQUksS0FBSyxHQUFzQixDQUFDLENBQUM7WUFDakMsSUFBSSxDQUFDO2dCQUFFLENBQUMsQ0FBQyxjQUFjLEVBQUUsQ0FBQztRQUMzQixDQUFDLENBQUMsQ0FBQztRQUVILE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxzQkFBc0IsRUFBRSxDQUFDLENBQU0sRUFBRSxFQUFFO1lBQzFELEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLE1BQU0sRUFBRSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsRUFBRTtnQkFDdEQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxPQUFPLEVBQUUsQ0FBQztRQUNoQyxDQUFDLENBQUMsQ0FBQztJQUNKLENBQUM7SUFFRCxhQUFhLENBQUUsVUFBc0I7UUFDcEMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVELGdCQUFnQixDQUFFLFVBQXNCO1FBQ3ZDLElBQUksS0FBSyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ2pELElBQUksS0FBSyxHQUFHLENBQUMsQ0FBQztZQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztJQUNuRCxDQUFDO0NBQ0Q7QUFFRCxNQUFNLEdBQUcsR0FBRyxDQUFDLENBQUM7QUFDZCxNQUFNLG1CQUFtQixHQUFHLE1BQU0sQ0FBQztBQUNuQyxNQUFNLFNBQVMsR0FBRyxNQUFNLENBQUM7QUFDekIsTUFBTSxtQkFBbUIsR0FBRyxNQUFNLENBQUM7QUFDbkMsTUFBTSxtQkFBbUIsR0FBRyxNQUFNLENBQUM7QUFDbkMsTUFBTSxTQUFTLEdBQUcsTUFBTSxDQUFDO0FBRXpCLE1BQU0sT0FBTyx1QkFBdUI7SUFDbkMsTUFBTSxDQUFDLGtCQUFrQixDQUFFLFNBQW9CO1FBQzlDLFFBQVEsU0FBUyxFQUFFO1lBQ2xCLEtBQUssU0FBUyxDQUFDLE1BQU0sQ0FBQyxDQUFDLE9BQU8sbUJBQW1CLENBQUM7WUFDbEQsS0FBSyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUM7WUFDcEMsS0FBSyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsT0FBTyxtQkFBbUIsQ0FBQztZQUNwRCxLQUFLLFNBQVMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxPQUFPLG1CQUFtQixDQUFDO1lBQ2xELE9BQU8sQ0FBQyxDQUFDLE1BQU0sSUFBSSxLQUFLLENBQUMsc0JBQXNCLEdBQUcsU0FBUyxDQUFDLENBQUM7U0FDN0Q7SUFDRixDQUFDO0lBRUQsTUFBTSxDQUFDLHlCQUF5QixDQUFFLFNBQW9CLEVBQUUscUJBQThCLEtBQUs7UUFDMUYsUUFBUSxTQUFTLEVBQUU7WUFDbEIsS0FBSyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDbkUsS0FBSyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDckUsS0FBSyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsT0FBTyxTQUFTLENBQUM7WUFDMUMsS0FBSyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUM7WUFDbEMsT0FBTyxDQUFDLENBQUMsTUFBTSxJQUFJLEtBQUssQ0FBQyxzQkFBc0IsR0FBRyxTQUFTLENBQUMsQ0FBQztTQUM3RDtJQUNGLENBQUM7SUFFRCxNQUFNLENBQUMseUJBQXlCLENBQUUsU0FBb0I7UUFDckQsUUFBUSxTQUFTLEVBQUU7WUFDbEIsS0FBSyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUM7WUFDbEMsS0FBSyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsT0FBTyxHQUFHLENBQUM7WUFDcEMsS0FBSyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUMsT0FBTyxtQkFBbUIsQ0FBQztZQUNwRCxLQUFLLFNBQVMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxPQUFPLG1CQUFtQixDQUFDO1lBQ2xELE9BQU8sQ0FBQyxDQUFDLE1BQU0sSUFBSSxLQUFLLENBQUMsc0JBQXNCLEdBQUcsU0FBUyxDQUFDLENBQUM7U0FDN0Q7SUFDRixDQUFDO0NBQ0QifQ==