@lightningjs/renderer 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/core/CoreNode.d.ts +1 -1
- package/dist/src/core/CoreTextNode.js +8 -0
- package/dist/src/core/CoreTextNode.js.map +1 -1
- package/dist/src/core/lib/ImageWorker.d.ts +2 -2
- package/dist/src/core/lib/ImageWorker.js +12 -31
- package/dist/src/core/lib/ImageWorker.js.map +1 -1
- package/dist/src/core/lib/WebGlContextWrapper.d.ts +60 -109
- package/dist/src/core/lib/WebGlContextWrapper.js +158 -164
- package/dist/src/core/lib/WebGlContextWrapper.js.map +1 -1
- package/dist/src/core/lib/textureCompression.js +10 -19
- package/dist/src/core/lib/textureCompression.js.map +1 -1
- package/dist/src/core/lib/validateImageBitmap.d.ts +1 -2
- package/dist/src/core/lib/validateImageBitmap.js +4 -4
- package/dist/src/core/lib/validateImageBitmap.js.map +1 -1
- package/dist/src/core/platform.js +5 -2
- package/dist/src/core/platform.js.map +1 -1
- package/dist/src/core/platforms/web/WebGlContextWrapper.d.ts +5 -5
- package/dist/src/core/renderers/webgl/WebGlCoreShader.destroy.d.ts +1 -0
- package/dist/src/core/renderers/webgl/WebGlCoreShader.destroy.js +2 -0
- package/dist/src/core/renderers/webgl/WebGlCoreShader.destroy.js.map +1 -0
- package/dist/src/core/renderers/webgl/WebGlRenderer.js +5 -3
- package/dist/src/core/renderers/webgl/WebGlRenderer.js.map +1 -1
- package/dist/src/core/renderers/webgl/WebGlShaderProgram.js +4 -1
- package/dist/src/core/renderers/webgl/WebGlShaderProgram.js.map +1 -1
- package/dist/src/core/renderers/webgl/internal/RendererUtils.js +1 -2
- package/dist/src/core/renderers/webgl/internal/RendererUtils.js.map +1 -1
- package/dist/src/core/renderers/webgl/shaders/effects/LinearGradientEffect.d.ts +0 -1
- package/dist/src/core/renderers/webgl/shaders/effects/LinearGradientEffect.js +14 -35
- package/dist/src/core/renderers/webgl/shaders/effects/LinearGradientEffect.js.map +1 -1
- package/dist/src/core/renderers/webgl/shaders/effects/RadialGradientEffect.js +8 -25
- package/dist/src/core/renderers/webgl/shaders/effects/RadialGradientEffect.js.map +1 -1
- package/dist/src/core/text-rendering/SdfFontHandler.js +5 -7
- package/dist/src/core/text-rendering/SdfFontHandler.js.map +1 -1
- package/dist/tsconfig.dist.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/core/CoreTextNode.ts +9 -0
- package/src/core/renderers/webgl/WebGlCtxTexture.test.ts +113 -0
- package/src/core/renderers/webgl/WebGlRenderer.ts +4 -3
- package/src/core/renderers/webgl/WebGlShaderProgram.ts +3 -1
- package/src/core/renderers/webgl/internal/RendererUtils.ts +1 -2
- package/src/core/text-rendering/SdfFontHandler.ts +5 -8
- package/dist/src/core/AutosizeManager.d.ts +0 -29
- package/dist/src/core/AutosizeManager.js +0 -169
- package/dist/src/core/AutosizeManager.js.map +0 -1
- package/dist/src/core/animations/Animation.d.ts +0 -21
- package/dist/src/core/animations/Animation.js +0 -194
- package/dist/src/core/animations/Animation.js.map +0 -1
- package/dist/src/core/animations/Playback.d.ts +0 -64
- package/dist/src/core/animations/Playback.js +0 -169
- package/dist/src/core/animations/Playback.js.map +0 -1
- package/dist/src/core/animations/Transition.d.ts +0 -27
- package/dist/src/core/animations/Transition.js +0 -52
- package/dist/src/core/animations/Transition.js.map +0 -1
- package/dist/src/core/animations/utils.d.ts +0 -2
- package/dist/src/core/animations/utils.js +0 -136
- package/dist/src/core/animations/utils.js.map +0 -1
- package/dist/src/core/renderers/webgl/WebGlRenderOp.d.ts +0 -45
- package/dist/src/core/renderers/webgl/WebGlRenderOp.js +0 -127
- package/dist/src/core/renderers/webgl/WebGlRenderOp.js.map +0 -1
- package/dist/src/core/shaders/webgl/SdfShadowShader.d.ts +0 -9
- package/dist/src/core/shaders/webgl/SdfShadowShader.js +0 -100
- package/dist/src/core/shaders/webgl/SdfShadowShader.js.map +0 -1
- package/dist/src/core/text-rendering/CanvasFont.d.ts +0 -14
- package/dist/src/core/text-rendering/CanvasFont.js +0 -111
- package/dist/src/core/text-rendering/CanvasFont.js.map +0 -1
- package/dist/src/core/text-rendering/CoreFont.d.ts +0 -33
- package/dist/src/core/text-rendering/CoreFont.js +0 -48
- package/dist/src/core/text-rendering/CoreFont.js.map +0 -1
- package/dist/src/core/text-rendering/FontManager.d.ts +0 -11
- package/dist/src/core/text-rendering/FontManager.js +0 -42
- package/dist/src/core/text-rendering/FontManager.js.map +0 -1
- package/dist/src/core/text-rendering/SdfFont.d.ts +0 -29
- package/dist/src/core/text-rendering/SdfFont.js +0 -142
- package/dist/src/core/text-rendering/SdfFont.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
|
@@ -81,53 +81,32 @@ export class LinearGradientEffect extends ShaderEffect {
|
|
|
81
81
|
type: 'float',
|
|
82
82
|
},
|
|
83
83
|
};
|
|
84
|
-
static methods = {
|
|
85
|
-
calcPoint: `
|
|
86
|
-
vec2 function(float d, float angle) {
|
|
87
|
-
return d * vec2(cos(angle), sin(angle)) + (u_dimensions * 0.5);
|
|
88
|
-
}
|
|
89
|
-
`,
|
|
90
|
-
};
|
|
91
84
|
static ColorLoop = (amount) => {
|
|
92
85
|
let loop = '';
|
|
93
86
|
for (let i = 2; i < amount; i++) {
|
|
94
|
-
loop += `
|
|
87
|
+
loop += `
|
|
88
|
+
mixAmount = smoothstep(stops[${i - 1}], stops[${i}], dist);
|
|
89
|
+
colorOut = mix(colorOut, colors[${i}], mixAmount);`;
|
|
95
90
|
}
|
|
96
91
|
return loop;
|
|
97
92
|
};
|
|
98
93
|
static onColorize = (props) => {
|
|
99
94
|
const colors = props.colors.length || 1;
|
|
100
95
|
return `
|
|
101
|
-
float a = angle
|
|
102
|
-
float
|
|
103
|
-
vec2 f = $calcPoint(lineDist * 0.5, a);
|
|
104
|
-
vec2 t = $calcPoint(lineDist * 0.5, a + PI);
|
|
105
|
-
vec2 gradVec = t - f;
|
|
106
|
-
float dist = dot(v_nodeCoordinate.xy * u_dimensions - f, gradVec) / dot(gradVec, gradVec);
|
|
107
|
-
|
|
108
|
-
//return early if dist is lower or equal to first stop
|
|
109
|
-
if(dist <= stops[0]) {
|
|
110
|
-
return mix(maskColor, colors[0], clamp(colors[0].a, 0.0, 1.0));
|
|
111
|
-
}
|
|
112
|
-
const int amount = ${colors};
|
|
113
|
-
const int last = amount - 1;
|
|
96
|
+
float a = angle + (PI / 180.0 * 90.0);
|
|
97
|
+
float aspectRatio = u_dimensions.x / u_dimensions.y;
|
|
114
98
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
99
|
+
vec2 gradDir = vec2(cos(a), sin(a));
|
|
100
|
+
float lineDist = abs(aspectRatio * gradDir.x) + abs(gradDir.y);
|
|
118
101
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
float right = stops[i + 1];
|
|
122
|
-
if(dist >= left && dist <= right) {
|
|
123
|
-
float localDist = smoothstep(left, right, dist);
|
|
124
|
-
vec4 colorOut = mix(colors[i], colors[i + 1], localDist);
|
|
125
|
-
return mix(maskColor, colorOut, clamp(colorOut.a, 0.0, 1.0));
|
|
126
|
-
}
|
|
127
|
-
}
|
|
102
|
+
vec2 pos = v_nodeCoordinate.xy * vec2(aspectRatio, 1.0) - vec2(aspectRatio * 0.5, 0.5);
|
|
103
|
+
float dist = dot(pos, gradDir) / lineDist + 0.5;
|
|
128
104
|
|
|
129
|
-
|
|
130
|
-
|
|
105
|
+
float stopCalc = smoothstep(stops[0], stops[1], dist);
|
|
106
|
+
vec4 colorOut = mix(colors[0], colors[1], stopCalc);
|
|
107
|
+
float mixAmount;
|
|
108
|
+
${this.ColorLoop(colors)}
|
|
109
|
+
return mix(maskColor, colorOut, clamp(colorOut.a, 0.0, 1.0));
|
|
131
110
|
`;
|
|
132
111
|
};
|
|
133
112
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LinearGradientEffect.js","sourceRoot":"","sources":["../../../../../../../src/core/renderers/webgl/shaders/effects/LinearGradientEffect.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AACH,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AAC7D,OAAO,EAEL,YAAY,GAGb,MAAM,mBAAmB,CAAC;AAwB3B;;GAEG;AACH,MAAM,OAAO,oBAAqB,SAAQ,YAAY;IACpD,MAAM,CAAC,eAAe,CAA4B;IAChC,IAAI,GAAG,gBAAgB,CAAC;IAE1C,MAAM,CAAU,YAAY,CAAC,KAAgC;QAC3D,IAAK,KAAK,CAAC,MAA0C,CAAC,KAAiB,EAAE,CAAC;YACxE,OAAO,iBACH,KAAK,CAAC,MAA0C,CAAC,KAAkB;iBAClE,MACL,EAAE,CAAC;QACL,CAAC;QACD,OAAO,iBAAiB,KAAK,CAAC,MAAO,CAAC,MAAM,EAAE,CAAC;IACjD,CAAC;IAED,MAAM,CAAU,eAAe,CAC7B,KAAgC;QAEhC,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAExD,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,IAAI,EAAE,CAAC;QAC9B,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC;YACzD,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;YAC9B,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,MAAM,GAAG,GAAG,KAAK,CAAC;YAClB,OAAO,CAAC,GAAG,OAAO,EAAE,CAAC,EAAE,EAAE,CAAC;gBACxB,IAAI,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;oBACb,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAE,CAAC;oBACnB,IAAI,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,SAAS,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,SAAS,EAAE,CAAC;wBAC3D,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAE,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAE,CAAC,GAAG,CAAC,CAAC;oBAC3D,CAAC;gBACH,CAAC;qBAAM,CAAC;oBACN,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACzC,CAAC;YACH,CAAC;YACD,KAAK,GAAG,GAAG,CAAC;QACd,CAAC;QACD,OAAO;YACL,MAAM;YACN,KAAK;YACL,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,CAAC;SACxB,CAAC;IACJ,CAAC;IAED,MAAM,CAAU,QAAQ,GAAyB;QAC/C,KAAK,EAAE;YACL,KAAK,EAAE,CAAC;YACR,MAAM,EAAE,WAAW;YACnB,IAAI,EAAE,OAAO;SACd;QACD,MAAM,EAAE;YACN,KAAK,EAAE,UAAU;YACjB,SAAS,EAAE,CAAC,KAAe,EAAY,EAAE;gBACvC,OAAO,KAAK,CAAC,MAAM,CACjB,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,2BAA2B,CAAC,GAAG,CAAC,CAAC,EAC1D,EAAc,CACf,CAAC;YACJ,CAAC;YACD,kBAAkB,EAAE,yBAAyB;YAC7C,IAAI,EAAE,CAAC,KAAgC,EAAE,EAAE,CAAC,KAAK,CAAC,MAAO,CAAC,MAAM;YAChE,MAAM,EAAE,YAAY;YACpB,IAAI,EAAE,MAAM;SACb;QACD,KAAK,EAAE;YACL,KAAK,EAAE,EAAE;YACT,IAAI,EAAE,CAAC,KAAgC,EAAE,EAAE,CAAC,KAAK,CAAC,MAAO,CAAC,MAAM;YAChE,MAAM,EAAE,YAAY;YACpB,IAAI,EAAE,OAAO;SACd;KACF,CAAC;IAEF,MAAM,
|
|
1
|
+
{"version":3,"file":"LinearGradientEffect.js","sourceRoot":"","sources":["../../../../../../../src/core/renderers/webgl/shaders/effects/LinearGradientEffect.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AACH,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AAC7D,OAAO,EAEL,YAAY,GAGb,MAAM,mBAAmB,CAAC;AAwB3B;;GAEG;AACH,MAAM,OAAO,oBAAqB,SAAQ,YAAY;IACpD,MAAM,CAAC,eAAe,CAA4B;IAChC,IAAI,GAAG,gBAAgB,CAAC;IAE1C,MAAM,CAAU,YAAY,CAAC,KAAgC;QAC3D,IAAK,KAAK,CAAC,MAA0C,CAAC,KAAiB,EAAE,CAAC;YACxE,OAAO,iBACH,KAAK,CAAC,MAA0C,CAAC,KAAkB;iBAClE,MACL,EAAE,CAAC;QACL,CAAC;QACD,OAAO,iBAAiB,KAAK,CAAC,MAAO,CAAC,MAAM,EAAE,CAAC;IACjD,CAAC;IAED,MAAM,CAAU,eAAe,CAC7B,KAAgC;QAEhC,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAExD,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,IAAI,EAAE,CAAC;QAC9B,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC;YACzD,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC;YAC9B,IAAI,CAAC,GAAG,CAAC,CAAC;YACV,MAAM,GAAG,GAAG,KAAK,CAAC;YAClB,OAAO,CAAC,GAAG,OAAO,EAAE,CAAC,EAAE,EAAE,CAAC;gBACxB,IAAI,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;oBACb,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAE,CAAC;oBACnB,IAAI,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,SAAS,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,SAAS,EAAE,CAAC;wBAC3D,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAE,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAE,CAAC,GAAG,CAAC,CAAC;oBAC3D,CAAC;gBACH,CAAC;qBAAM,CAAC;oBACN,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACzC,CAAC;YACH,CAAC;YACD,KAAK,GAAG,GAAG,CAAC;QACd,CAAC;QACD,OAAO;YACL,MAAM;YACN,KAAK;YACL,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,CAAC;SACxB,CAAC;IACJ,CAAC;IAED,MAAM,CAAU,QAAQ,GAAyB;QAC/C,KAAK,EAAE;YACL,KAAK,EAAE,CAAC;YACR,MAAM,EAAE,WAAW;YACnB,IAAI,EAAE,OAAO;SACd;QACD,MAAM,EAAE;YACN,KAAK,EAAE,UAAU;YACjB,SAAS,EAAE,CAAC,KAAe,EAAY,EAAE;gBACvC,OAAO,KAAK,CAAC,MAAM,CACjB,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,2BAA2B,CAAC,GAAG,CAAC,CAAC,EAC1D,EAAc,CACf,CAAC;YACJ,CAAC;YACD,kBAAkB,EAAE,yBAAyB;YAC7C,IAAI,EAAE,CAAC,KAAgC,EAAE,EAAE,CAAC,KAAK,CAAC,MAAO,CAAC,MAAM;YAChE,MAAM,EAAE,YAAY;YACpB,IAAI,EAAE,MAAM;SACb;QACD,KAAK,EAAE;YACL,KAAK,EAAE,EAAE;YACT,IAAI,EAAE,CAAC,KAAgC,EAAE,EAAE,CAAC,KAAK,CAAC,MAAO,CAAC,MAAM;YAChE,MAAM,EAAE,YAAY;YACpB,IAAI,EAAE,OAAO;SACd;KACF,CAAC;IAEF,MAAM,CAAC,SAAS,GAAG,CAAC,MAAc,EAAU,EAAE;QAC5C,IAAI,IAAI,GAAG,EAAE,CAAC;QACd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAChC,IAAI,IAAI;qCACuB,CAAC,GAAG,CAAC,YAAY,CAAC;wCACf,CAAC,gBAAgB,CAAC;QACtD,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC,CAAC;IAEF,MAAM,CAAU,UAAU,GAAG,CAAC,KAAgC,EAAE,EAAE;QAChE,MAAM,MAAM,GAAG,KAAK,CAAC,MAAO,CAAC,MAAM,IAAI,CAAC,CAAC;QACzC,OAAO;;;;;;;;;;;;;QAaH,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC;;KAEzB,CAAC;IACJ,CAAC,CAAC"}
|
|
@@ -101,7 +101,9 @@ export class RadialGradientEffect extends ShaderEffect {
|
|
|
101
101
|
static ColorLoop = (amount) => {
|
|
102
102
|
let loop = '';
|
|
103
103
|
for (let i = 2; i < amount; i++) {
|
|
104
|
-
loop += `
|
|
104
|
+
loop += `
|
|
105
|
+
mixAmount = smoothstep(stops[${i - 1}], stops[${i}], dist);
|
|
106
|
+
colorOut = mix(colorOut, colors[${i}], mixAmount);`;
|
|
105
107
|
}
|
|
106
108
|
return loop;
|
|
107
109
|
};
|
|
@@ -113,30 +115,11 @@ export class RadialGradientEffect extends ShaderEffect {
|
|
|
113
115
|
|
|
114
116
|
float dist = length((point - projection) / vec2(width, height));
|
|
115
117
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
const int amount = ${colors};
|
|
122
|
-
const int last = amount - 1;
|
|
123
|
-
|
|
124
|
-
if(dist >= stops[last]) {
|
|
125
|
-
return mix(maskColor, colors[last], clamp(colors[last].a, 0.0, 1.0));
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
for(int i = 0; i < last; i++) {
|
|
129
|
-
float left = stops[i];
|
|
130
|
-
float right = stops[i + 1];
|
|
131
|
-
if(dist >= left && dist <= right) {
|
|
132
|
-
float localDist = smoothstep(left, right, dist);
|
|
133
|
-
vec4 colorOut = mix(colors[i], colors[i + 1], localDist);
|
|
134
|
-
return mix(maskColor, colorOut, clamp(colorOut.a, 0.0, 1.0));
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
//final fallback
|
|
139
|
-
return mix(maskColor, colors[last], clamp(colors[last].a, 0.0, 1.0));
|
|
118
|
+
float stopCalc = smoothstep(stops[0], stops[1], dist);
|
|
119
|
+
vec4 colorOut = mix(colors[0], colors[1], stopCalc);
|
|
120
|
+
float mixAmount;
|
|
121
|
+
${this.ColorLoop(colors)}
|
|
122
|
+
return mix(maskColor, colorOut, clamp(colorOut.a, 0.0, 1.0));
|
|
140
123
|
`;
|
|
141
124
|
};
|
|
142
125
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadialGradientEffect.js","sourceRoot":"","sources":["../../../../../../../src/core/renderers/webgl/shaders/effects/RadialGradientEffect.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"RadialGradientEffect.js","sourceRoot":"","sources":["../../../../../../../src/core/renderers/webgl/shaders/effects/RadialGradientEffect.ts"],"names":[],"mappings":"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"}
|
|
@@ -154,13 +154,11 @@ export const loadFont = async (stage, options) => {
|
|
|
154
154
|
const nwff = (nodesWaitingForFont[fontFamily] = []);
|
|
155
155
|
// Create loading promise
|
|
156
156
|
const loadPromise = (async () => {
|
|
157
|
-
// Load font JSON data
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
const fontData = (await response.json());
|
|
163
|
-
if (!fontData || !fontData.chars) {
|
|
157
|
+
// Load font JSON data via the platform's fetch abstraction so behaviour
|
|
158
|
+
// can be overridden per platform (XHR, Fetch API, custom loaders, etc.).
|
|
159
|
+
const blob = (await stage.platform.fetch(atlasDataUrl));
|
|
160
|
+
const fontData = JSON.parse(await blob.text());
|
|
161
|
+
if (fontData === null || fontData.chars === undefined) {
|
|
164
162
|
throw new Error('Invalid SDF font data format');
|
|
165
163
|
}
|
|
166
164
|
// Atlas texture should be provided externally
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SdfFontHandler.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/SdfFontHandler.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"SdfFontHandler.js","sourceRoot":"","sources":["../../../../src/core/text-rendering/SdfFontHandler.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/env.d.ts","../src/utils.ts","../src/core/utils.ts","../src/common/ieventemitter.ts","../src/common/eventemitter.ts","../src/core/animations/coreanimation.ts","../src/core/animations/animationmanager.ts","../src/core/renderers/coreshadernode.ts","../src/core/renderers/coreshaderprogram.ts","../src/core/coreshadermanager.ts","../src/core/renderers/webgl/internal/webglutils.ts","../src/core/platforms/web/webglcontextwrapper.ts","../src/core/platforms/platform.ts","../src/core/platforms/web/lib/texturecompression.ts","../src/core/textures/imagetexture.ts","../src/core/textures/subtexture.ts","../src/core/texturememorymanager.ts","../src/core/renderers/corecontexttexture.ts","../src/core/textureerror.ts","../src/core/textures/texture.ts","../src/core/platforms/glcontextwrapper.ts","../src/core/renderers/webgl/internal/shaderutils.ts","../src/core/lib/utils.ts","../src/core/lib/matrix3d.ts","../src/core/coretextnode.ts","../src/core/text-rendering/textrenderer.ts","../src/core/lib/contextspy.ts","../src/main-api/utils.ts","../src/core/textures/colortexture.ts","../src/core/platforms/web/lib/imageworker.ts","../src/core/platforms/web/lib/imageworkerdefault.ts","../src/core/platforms/web/lib/utils.ts","../src/core/platforms/web/lib/texturesvg.ts","../src/core/platforms/web/webplatform.ts","../src/common/ianimationcontroller.ts","../src/main-api/inode.ts","../src/core/lib/colorparser.ts","../src/core/renderers/canvas/canvastexture.ts","../src/core/lib/colorcache.ts","../src/core/renderers/canvas/canvasshadernode.ts","../src/core/renderers/canvas/canvasrenderer.ts","../src/core/renderers/corerenderop.ts","../src/core/renderers/webgl/internal/rendererutils.ts","../src/core/renderers/webgl/webglctxtexture.ts","../src/core/renderers/webgl/internal/buffercollection.ts","../src/core/shaders/webgl/default.ts","../src/core/renderers/webgl/webglshaderprogram.ts","../src/core/renderers/webgl/webglshadernode.ts","../src/core/renderers/webgl/sdfrenderop.ts","../src/core/renderers/webgl/webglctxsubtexture.ts","../src/core/textures/rendertexture.ts","../src/core/renderers/webgl/webglctxrendertexture.ts","../src/core/renderers/webgl/webglrenderer.ts","../src/main-api/inspector.ts","../src/main-api/renderer.ts","../src/core/stage.ts","../src/core/renderers/corerenderer.ts","../src/core/textures/noisetexture.ts","../src/core/coretexturemanager.ts","../src/core/lib/rendercoords.ts","../src/core/animations/coreanimationcontroller.ts","../src/core/autosizer.ts","../src/core/lib/collectionutils.ts","../src/core/corenode.ts","../src/common/commontypes.ts","../src/core/platforms/web/lib/imageworkernooptions.ts","../src/core/platforms/web/webplatformchrome50.ts","../src/core/platforms/web/lib/imageworkerlegacy.ts","../src/core/platforms/web/webplatformlegacy.ts","../src/core/platforms/web/webplatformnext.ts","../src/core/platforms/web/lib/createimagebitmap.ts","../src/core/shaders/utils.ts","../src/core/shaders/templates/bordertemplate.ts","../src/core/shaders/canvas/border.ts","../src/core/shaders/templates/holepunchtemplate.ts","../src/core/shaders/canvas/utils/render.ts","../src/core/shaders/canvas/holepunch.ts","../src/core/shaders/templates/lineargradienttemplate.ts","../src/core/shaders/canvas/lineargradient.ts","../src/core/shaders/templates/radialgradienttemplate.ts","../src/core/shaders/canvas/radialgradient.ts","../src/core/shaders/templates/roundedtemplate.ts","../src/core/shaders/canvas/rounded.ts","../src/core/shaders/templates/roundedwithbordertemplate.ts","../src/core/shaders/canvas/roundedwithborder.ts","../src/core/shaders/templates/shadowtemplate.ts","../src/core/shaders/templates/roundedwithborderandshadowtemplate.ts","../src/core/shaders/canvas/shadow.ts","../src/core/shaders/canvas/roundedwithborderandshadow.ts","../src/core/shaders/templates/roundedwithshadowtemplate.ts","../src/core/shaders/canvas/roundedwithshadow.ts","../src/core/shaders/webgl/border.ts","../src/core/shaders/webgl/defaultbatched.ts","../src/core/shaders/webgl/holepunch.ts","../src/core/shaders/webgl/lineargradient.ts","../src/core/shaders/webgl/radialgradient.ts","../src/core/shaders/webgl/rounded.ts","../src/core/shaders/webgl/roundedwithborder.ts","../src/core/shaders/webgl/roundedwithborderandshadow.ts","../src/core/shaders/webgl/shadow.ts","../src/core/shaders/webgl/roundedwithshadow.ts","../src/core/shaders/webgl/sdfshader.ts","../src/core/text-rendering/utils.ts","../src/core/text-rendering/textlayoutengine.ts","../src/core/text-rendering/canvasfonthandler.ts","../src/core/text-rendering/canvastextrenderer.ts","../src/core/text-rendering/sdffonthandler.ts","../src/core/text-rendering/sdftextrenderer.ts","../exports/canvas-shaders.ts","../exports/canvas.ts","../exports/index.ts","../exports/inspector.ts","../exports/platform.ts","../exports/utils.ts","../exports/webgl-shaders.ts","../exports/webgl.ts"],"fileIdsList":[[98,132,135,137,139,141,143,146,147,149],[96,98,99,164],[61,64,66,73,75,77,78,80,83,84,93,94,102,105,111,112,113,114,117,122,123,131,133,136,138,140,144],[112],[70,71,79,92,125,127,128],[60,61,63,81],[104,106,150,152,153,154,155,156,157,158,159],[102,106,111,166,173],[77,122],[62],[64],[60,61,63,122],[60,63,64,65,93,123],[81,122],[60,63,64,66,78,81,82,93,102,103,111,114,115,117,118,119,120,121,123],[60,66,67,114],[78,81,82,84,114,115,122,123],[63,71,73,74,77,78,87,109,114,115,116],[122],[95],[80],[78,80],[70,73,79,114],[73],[70,73,78],[60,73],[69,78,79,80],[70,71,72,73,79,88,89,90,91,114],[73,88,92,124],[71,73,88,90,92,126],[92],[74,76,78,95,96,97,98,114,115,122],[66,97,114,122],[60,76,95,123],[75,78],[66,67,76,78,85,114,122],[60,114,122],[79],[81,100,102,103,106,111,114,123],[75,79,81,102,109,123],[60,74,75,78,79,102,123],[60,75,76,78,79,81,101,123],[71,74,76,78,79,81,101,102,103,104,105,106,107,108,109,110,114,115,122,123],[66,79,80,81,105,111,114,122],[67,79,80,102,103,104,106,111,122],[80,81,95,98,131],[80,81,98,133,134],[98,136],[98,138],[80,81,98,134,140],[80,81,98,132,134,141,142],[80,81,98,134,143,145,146],[80,81,98,134,141,146,148],[80,98,134,144],[66,80,130],[66,130],[66],[66,130,131,140,144],[66,130,131,140],[66,130,140,144],[60,80],[80,106,131],[106],[80,81,106,133],[80,81,106,111,136],[81,106,111,122,138],[80,81,106,122,140],[80,81,106,122,142],[80,81,106,122,145],[80,81,106,122,148,158],[81,106],[106,144],[60,63,65,66,68,71,75,78,81,83,84,85,86,87,92,113,115,117,122,123],[83,84,114,122,161,162],[60,83,84,114,161,162,163],[73,83,84,114,122,161,162],[60,83,84,102,103,106,107,111,114,115,160,161,162,165],[84],[83,114,115],[60,61,78,114],[78,117],[71,72,78,117],[60,73,78,117,123],[63,74,76,77,81,117,123],[64,66,83,93,122],[60,64,78,83,93,113,122],[60,63,66,68,71,75,83,84,92,94,99,111,112,114,117,122]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ba0a094f93834bf1d227ddfb621d45ffe5b37e4dfe0b8518cdb769713f86633","affectsGlobalScope":true,"impliedFormat":99},{"version":"51d08744a73f37d742991a8c1520cddb5b4467be59d51cf323ab648689b773c8","signature":"fd1af2ef5ae768945eeffcdeeb952b99d60c62a80a2e6a5d4fa12810c1c9acd4","impliedFormat":99},{"version":"ba0436dc1e7dd857a26192df6d04aa3c8d5ae9b619f2530ce4e1ccf73b423638","signature":"ee40f42d658eb673fa53ff333ab90b838d3d4397fcf6a4ce49cfba5202f7c4ab","impliedFormat":99},{"version":"5de4a2417fe760f83ce7c2e9e54067e98cd4152d76536003ef991fb737b161ea","signature":"11f10eef6b087b59bd9e527db506274380a36587a1bff3450e220ad7ec2ce45e","impliedFormat":99},{"version":"42637ec4fa701148d4feb23a2964911e95126f46f167fbccb406bc12729c7430","signature":"881f25b23cf946459048e2d76abdbb7056c728a15d92d20f2e76af12725cee7e","impliedFormat":99},{"version":"be89b93c8c4ba8bbf6978db90a2cb8b1c8a82f5b18ab222949b5875964bf174e","signature":"57c524f11a2ccc3fbb107176c4fbfdffa7159848bd8753a0197fb2a04c6d3c77","impliedFormat":99},{"version":"2f14e768b6006e0c9217f4f2d61ee87125118db122f239ea2b9f6269483696c1","signature":"86af1ef9e30559df431a169a1f9d87bc81421080efff8b87c971e75a54db67dd","impliedFormat":99},{"version":"6ae1dbd5661f184b6f78a55e139365b2fbee940b12e895fe16b272a850ff3459","signature":"c1a0fd4511bbf56aedef22aba390ce4fffcef26adaec16684eea65a35e408b66","impliedFormat":99},{"version":"13efb809be1e53bb68e743278191453b4c49183787d9c6e9d9f0bbc9397ec5e6","signature":"97326a2f5f0fce22509018fe77795cb2313d61f1ef71eff134612c81ec2ac600","impliedFormat":99},{"version":"0b64f0264b09bb808e8de6f7cd615395bc16c7eb367fcd5c54a5056b5bf5adcb","signature":"6dde36af67f486d0925af4ba0339e7a66b7f71fd36f1a4d928869ccbf4dfdda0","impliedFormat":99},{"version":"c1e884d41fb830745a0de5126e20c3b9f8cdd3940623cfacf57cf98b0a65d402","signature":"8e859e1af27f614aae3f8d163c831280e842bda6c53f11c60b78deaedcff6d92","impliedFormat":99},{"version":"e9d216f0e19aa76dfbd4c84c0cb58c7592656bad123edba102d092db1d9051fc","signature":"f0bb499d2f42be2415d5760e4ead9703103b35729cda8c712b92d3ac171876ca","impliedFormat":99},{"version":"4d8040cafb0fd27c024883bab7469561aefecc633b3d41b8c3ec9ff5cd478f3e","signature":"ce373bd47e1d078abcc10e037afbc52fae41284c23b679ec533f5e2de948740d","impliedFormat":99},{"version":"7506c9793143aa85897195bc356a28bac0c77a4969d32c968e18129c66969eb8","signature":"2cd450a808b6a4643287fc23d522957dfae443fad5680b646f2945c52d126fcb","impliedFormat":99},{"version":"3cf008509f915b508569b6fb740a139aba87ee37a69acacb19d36679cece1067","signature":"050b367212e3e86d6472ee25ebfa88f23a0691a98dd20e7dd7489dab5313d2c8","impliedFormat":99},{"version":"9e539779a0e8db554d5aca38c354bb863b694b7ac191a350b134300815e7683f","signature":"178bbaca724c8e19c6e3be26bbacb719daad5c0f3a5e3a2a645bae5b187edc48","impliedFormat":99},{"version":"66aa16fd53e49d3c126b1f14031bdb04a1bb4a77f144cdb87996c848d0d6480a","signature":"09333de2a7b46780e840f7e6cd51de5620ca8b9b84f540854058169a0fb87820","impliedFormat":99},{"version":"f8bb12172e9e15b67dd4f651bfbb0940b8ef8d8edc89e98220e479134936d7fb","signature":"7fa0036a92ef198a2140758b695b615596e7860cde2f8f50dc8772f1ae23fde0","impliedFormat":99},{"version":"eb5ebb320aa1183949c8d38cbb1d1a4adb66d89c2eabe482d06cbfcbb623a5c8","signature":"a99803c578fe88e219cf00596426fe7a7d4562fff03a9c2814b84e9d0b6a23df","impliedFormat":99},{"version":"824b17541616f7891dec3c133bda3846a91b6ceddf5c221b11606bef1a05d842","signature":"25ce49c3576ca9d969630d1fba75b742f37784c6c51a690743bfb1e516d7ec0c","impliedFormat":99},{"version":"b9e81a3da39763161010c4dcb6d12f4460ffc36eb775bef384c4e36a7fbb4cfc","signature":"ecdc1ca4120d9799a56b7d8dd589df68cf4fdba08b533e5b2e1950d1b3d60006","impliedFormat":99},{"version":"70a0b4888a5fdc0f94a6d4b9327b0e428b432c71cb96a3b3699d082c171a3c86","signature":"2fb80582116f4b75789f9cb20713774950ddb3196863bc0c30e8c649ff43a6f2","impliedFormat":99},{"version":"c95ab3cb063622388d9e49e976bab8e5805e53a3ea74dbabd41b7f1e15ab230d","signature":"208a5854bcfb067c89fbaa71b9b0d643d0c87b63d2652c20cf8d97dc18b95add","impliedFormat":99},{"version":"00225081075bead20c946a2202ff71bbc0c0d881a37299a85153534b8db95ead","signature":"82b4959cc8e78b6523427a16b137e53509dbae64f14851b999756aaffe318ce7","impliedFormat":99},{"version":"a744b77077cdcf690cc3fa2adb703b1d6ff9f5497948d55bc188d3e1c37aca75","signature":"8895501a1adfa3c7436a5016eeca48eb6a7c26e7b73e80c52b008d734a1c37b7","impliedFormat":99},{"version":"09b00d183c6b3d0a9f61d8c81748a0ed32f973c099c342e36f9d8d7c7a644fdb","signature":"c1e47438480b259fd6292c2e59d10059e1c76d1795d46b8271a1636932f2f715","impliedFormat":99},{"version":"91fc62e55e9c0e46aeb37d1286e50805ea903c159ae1bf544f5ee54b5717995d","signature":"826d87ec474ecd59c827441df44d49f420dbe099333c3344e31dfada8cc39902","impliedFormat":99},{"version":"7f6e6e6104931e7907c74e53d336094350978646d9c02c2a205ffcea90b58e61","signature":"f02942f8ae408270e572fa4c23aca8f42b496b83a836bfc8cec4f559e8ce1125","impliedFormat":99},{"version":"9a729c87e869555d84041be47223a22bdea8b5bfc73a4f65a28866c8afd47b17","signature":"68cfd7feb1396181cc75d8cfbd95ae5e76e2ffee3c99aeb04e4d3175737c7a97","impliedFormat":99},{"version":"6aa33d25a99620395dd2f796dda36819ec88e3ddd233ea0fb7c101e3f08cc0dd","signature":"348b04d01c12484b0bcf0b51459ec6484e39c372dff8955829e9e35212eec213","impliedFormat":99},{"version":"4a79889f8577b7d5afd98b71a3d55295b1e39e153f78b907cd109713d70db9c9","signature":"0901521f88b1ff86af8ce6c58a6be3e0878d09587051931d934921d23c455375","impliedFormat":99},{"version":"19e4b1b3c142e250ba5403b4dcae1d943adaea2066816be4556c3efd6891b48e","signature":"1ef2b085e389863587d5c7c7d13140c64c9777d1de27fb5dbf624cea67a0fce0","impliedFormat":99},{"version":"368e5d7d8adb1d06a0d13fa66d4de51b7597e27c9081d547338d3f45cf931131","signature":"3a40830fa52d8c298f98360c96529c2be63dad326d0007af0d111538ce8d6901","impliedFormat":99},{"version":"0ed708bafdea54b669cf594c143de04a22a2bb9f69dbc8ffef3d681cfda5e9d6","signature":"e67a9dd698238f69378fdc73412c0fc83eb34e08a336aa2e194e111c02a4a36d","impliedFormat":99},{"version":"cd3353c087e03546d356d446993cf1347c13de8650914068988c06c3f5c1d4bc","signature":"18ba5f48d81404839647f24a785897883dc699b89397499eea03ae01cc88075c","impliedFormat":99},{"version":"acab9e99a2de0d1d20a7451ecbbdedc4d0372c3fc725f582b46688981520155e","signature":"06dcab8f25e15fdc5e573e9d552a55fd8bdd35830647d211e2e392d9f81f7f3c","impliedFormat":99},{"version":"93d6bb317f0d77cf8ea12575ff3951f7dd1b54db0fe20ecbbbcd3d9963da625e","signature":"566b53d6bd25dd8a6d93ef387b4a0ae8a795c1ea4854298c3a328fc6712aebb5","impliedFormat":99},{"version":"3f82e7cef37ef702eb56571d83a0e53acbe82e7fd4c731db2bcaad3f1bf80e6c","signature":"a3802aaf9d8320c01fa1156886402ae5383f9e49f104c261b1e3203c72c89dbc","impliedFormat":99},{"version":"f309bd228e2982f60f7ed817323e80d1187c1520248ae02059bd93d23eaa1acf","signature":"2885b4f117dd1d518624b16d3993749c17042fe5d799b60a46d9654d45fc1be1","impliedFormat":99},{"version":"7f205f17b22dd2ab59ed5991e6fb4dc76ebcf6a1efb91bca19457775b4097eaa","signature":"70dd0bd75de1a7b08011eddfacc2d0f1787ff28e7c588b860af4579a0dbc941f","impliedFormat":99},{"version":"fd97fef3fce1fba45888b97a55a2e7e8f5527d548d444eecd74e1db3aa8cb08b","signature":"f48eefee39bf44aefbbce05a6840b54309c8a31f05641e2c94fc82e76ce807a1","impliedFormat":99},{"version":"406863eae1f7adee4bfaf6b80f541e72ba3ff57a80997eae34dc2677733f62cc","signature":"21248172fdb4c3ce859fa761a360940384895116a845e10fb20812ef4d29431c","impliedFormat":99},{"version":"f638ddcc22cc0182ced219152bb85dc126570f133e490ebfe3e1fc32b2ec7f29","signature":"6a1d1356c721505eb3dc472e1b631e880da82d2b8fdb483be9c3386a46c82a7c","impliedFormat":99},{"version":"edb92ee1a5b2a0b91e54ebb6504f16d12ae048c5007ff6cfc4f93411a2375b2f","signature":"412f28e19739cd68e7a510b7d2417e61e8c035567caec11199d2bc608bdd9049","impliedFormat":99},{"version":"fe059ad5602551efe1fd96feb8639a3b5b8519e4f13ae3562c67c45b32df8ec8","signature":"9c7e28c8554bb1e4ee50e06a4037967d79eb8126b3ee24c1676633381a352e0f","impliedFormat":99},{"version":"dc6d6d277e6627f3639b5ccea6f6d58273b2216bafd818d5c71d38455d79da7e","signature":"11d90ddf914600d7cdba80dc93576c8e4b9590b42542a4e4db56e36af1c3c341","impliedFormat":99},{"version":"9ac750c32fd9d98cfaae47448d23b4295b92c81a3842acbde7fd4ed8aff3d09c","signature":"b99fb3db745e05805dd318a7610b2cdd549f05b1ed07adb8f16245addadb78f3","impliedFormat":99},{"version":"856fb8ec7842e79d82b20fa60eb94885d6236df0369e6b9f0c75169ba11178e8","signature":"6494935de0834e0fdf32549bb1d99db0baace738f94db109f0fe24f9908e5e13","impliedFormat":99},{"version":"899bb0fa7ad8e8f2e36c331b51a4168fa8714e8fb08c8ea662c59906d89b5795","signature":"566fed4f1624f5af82eaf5e00df742493ea0ac396b8407cb0af1587440f03da5","impliedFormat":99},{"version":"e0b807278a7eed1236ac49425924be2eef6a1a82e33fd97bf8cc21b7d8bc2dc0","signature":"76c2c064d1ec7016eb04f3b857c850f405ee31b5de030ba14949c842d10b3ed4","impliedFormat":99},{"version":"37d417d8e07de3d2bf23b926bc2b7a2f68e2083e227987878fb285983172f0fa","signature":"8adbddff6d8303fdf5de01602f8c2b9a28efc3bf60530eeba3857aa7f550f655","impliedFormat":99},{"version":"59eff4434a1dee49ed455270cf7a4dfe84d88db36185092ae5733f462e72f180","signature":"4649e209c8e55ea7da478772401659c9afe839176071603a3aebaf7a096963e8","impliedFormat":99},{"version":"fe350aa7bd9ba45d9e7ed10fa2ae07a23d4720c1791070b69060e424d7bdf31d","signature":"1745542a9cd61dea502e363ea6f2fdcaf61e37b9a683bac1ce29bf82c4e193d5","impliedFormat":99},{"version":"080ef68cb739c663b974cc84b33883aeac7839eabade7f77dd760648302ee9f6","signature":"0ac7bb457ac07cb746a4cd0f9056cd13d06ac92515df7f4d04fdb426c0d04789","impliedFormat":99},{"version":"e6846a4494bcc42cd5e18558f269128928206895ae335a1a1f8d8755c0015858","signature":"147dea73a1812befb25fa16d0f35efaff0f17320b901d8f9a22b275eac9e2ebd","impliedFormat":99},{"version":"2415614daaf6621d606c9d0a7bea278e5b505914d47b5fea2832f0be6e348eb1","signature":"230774b131e9cf85d2f9904ca48c6bc42521ca5b085c9601fceaa472b249a63e","impliedFormat":99},{"version":"34f0da1c3e1b1a906ca88a49c9c37e7e976f56ef0d7f7a562f3f459c2d519247","signature":"7a483fb2215b5d16372b26efe149e55ab716c52b752b9af1f5d9c64103c27d10","impliedFormat":99},{"version":"cd590c2da019805851133b25cf44be9c7f99e89a9888dd6d8a68a769512c667c","signature":"46d6995fa6153325dae9fcaf8eb7fdc183936a42a3fb851efcda43cc0bf7edef","impliedFormat":99},{"version":"9b9d70363c327d22ea8e0b8a35dec53ec63ca438c256e010e284a8bb54f3b99e","signature":"8aa95be4a204a0a1df189c4f3c58584c005f19f512dfe0cc664dc73c653da11e","impliedFormat":99},{"version":"8537b931a2666f64673f350100f408d703edb0a35b705099034cdce6a164b335","signature":"9b47d61d6e847112cf7e9f2fb1631d36e81d966b79b46ede120eaf85058f6a97","impliedFormat":99},{"version":"819166128c4a222f29524ed88cb79df43a5b85e8d0186859fdefff5828994559","signature":"775f83aba0a790ff27ad5e6642106c49f74e3918fc405f7d2431e4bd58c60ea9","impliedFormat":99},{"version":"c9eff3fee02c0f60bd21b4472d32e6781dd680e6877c62a268d5842641d38252","signature":"3ea67cb40367de619dc4addce96f4d5e80160ea305c6afe526d44a1b7988a3ea","impliedFormat":99},{"version":"8d59e2583567b1644d515390886f9448e2b74c5807b06953aa1f55581ad3a66e","signature":"05b142f6ee1495a2241cdeb8edebe68ec86f73de919b39c68a6a42dae460a524","impliedFormat":99},{"version":"e7cf2bbaf7bb0a40be7bc08028edb1acd01582c6118adbc304767a8acc2b7d89","signature":"840341412f90dc0cd165bf2e0364ea422154cb3ee6b8f01fc0b45ca8227751b6","impliedFormat":99},{"version":"2accc5d167e3f6469fe824a754d75da6673b769ac7871c774ea2b550967f673a","signature":"6033589d06e12b3c3c9847974d7a3d1d2b838f575295611772f427b1e09a9719","impliedFormat":99},{"version":"ade60cf70633551c03e78934872a45ce58866f29171ecab7c71eaccad87734c1","signature":"18ba204a908da4aece7a8e5919ec556f8493e535ca08ed165d53fd72f7f43df0","impliedFormat":99},{"version":"3baf2dee52419bab3dc8e3af0f1a434b4ef3c8c20129112c9210c2e9509daf3f","signature":"211119813e2fc8cccb2630db0a6f889981efe71c55fe89b63a56c7fcc4dd9b1f","impliedFormat":99},{"version":"4c0e6ec19bf21f91b7eea91251655ee8aa8fffc66e44ac3dabe1db1822539823","signature":"e76000bf56e7303a06281974d287fabf1d9219ec9b45e18aa1eef4d6e1026856","impliedFormat":99},{"version":"02598a75c65eb545b30fb97b29a1ec2f6eecd1d8d4709a6776eedd1824bd9b3b","signature":"160bde8c2e4379c48043740eab17a6163842f750e56692052a08d28475181ef0","impliedFormat":99},{"version":"3130d3bd1498fe0fb67e8b70d644a73772b0d9ee4cbaefdf885574c7ddb69ddf","signature":"2291caf1b1e7ec37a1ffd42ea02c88bac063bbe210886ead78056aaa81b117c7","impliedFormat":99},{"version":"6c200ec4f5e1b4282c66c9ba7c3fef3e7d92b46678c1043f08d5ae9728f13b7b","signature":"20166865cbc1461da0c5c09438c8221c83e897918a1d8fa708003b5d3e412bdf","impliedFormat":99},{"version":"80fb1e124b3befd9e215f0585a7587232ca8617623289795d526a54a6c1b2f90","signature":"6b38678a012f8055e5f0a8aa9c1ca13d8a6d60110541d60e244a132b31f1fec2","impliedFormat":99},{"version":"e3d6ae9f282b044965d33d9ac07a2ff7a9740ac18ec120a1108322b1b10af0a4","signature":"a13bbfb6077d7cb71485da903e99986a83312876720b182476136dcce73775d5","impliedFormat":99},{"version":"fcf7e7036b5f6414b3ed3329784ff67013ccec57c3e9e3f947a5989820e8f398","signature":"47e1b725b6d55b6284e63568e9074f195005f8b79e066b28449663aef9aed95c","impliedFormat":99},{"version":"fd4726084fc420f22d41ed89924588eb763d505dad1e962cb7342262f3768a9b","signature":"42e936ecc3b9b7ad5a489eeaea7c25af8d7b71162a08e00ad638648e87a7ee51","impliedFormat":99},{"version":"a98565fe3f6544349391fcfa5b85228a7c930432e7cb0ece5836e0bb3bcc4df2","signature":"e6f972dc162ead1d86897a3488316aab8b034472695d40eac74b6557e184919d","impliedFormat":99},{"version":"6778505747ca2fe895398a950e1b7ae1ec2082598ab40f4747ed92b38f432486","signature":"d91415fa00b3eef01ae2e08e8ffaf7cef9fa568515c83ac1474a22cc55bb3718","impliedFormat":99},{"version":"4c07cb4af489aa7e5386c5c71589b9c1dc19d6cd844a40fff43b306c2595d302","signature":"912202a19d5e8972357af639e5e65d06c9171e30d4bf077fcdfe184c30effc7c","impliedFormat":99},{"version":"732171c867502bf996c071ca99ebd61b81b3c9180c764e8487923afbfd923c43","signature":"16ea4109bf543dd521c2e9cd4ff0f8c498250ce26f6fe55739e077e0761c8807","impliedFormat":99},{"version":"559e7d0c8fc59a863ab372f153cac32ed9b8a491cecbb55ae99eae5dafb63183","signature":"9ab0406e79c8ae7a4f552c6609b8ce436242d74abbeebd1f4303a63c53ccb56a","impliedFormat":99},{"version":"7ece36a110abd08f05dd49a92252701bcbddf4fe293ae01cbf9c601016d7bba1","signature":"76fdce1e19f5cf3a2243a37f1778f534dc527e73c25100a14d63994c2f0b8760","impliedFormat":99},{"version":"2090d0eca18e731bd8d969d2cba352c8df8cf90ba868f4cfa283dad83808bb08","signature":"4dcaec244d4486f21fa7800fd6853c914df66154d4ca6b7cf0aa0370c5e6a656","impliedFormat":99},{"version":"9b0ff49d36b7824d21256ddb1ba4768b457813540c0d62f554cea3dc9c64f216","signature":"5111e2e2ffb1264243951a0c15fa3498e2c0c23e74599f535ad2227a16d8c503","impliedFormat":99},{"version":"2ec552907133a2cf71b3ac6691c4c967b9812c55fb4aae93c84b244dec1f1138","signature":"6a0b240c302708869a73e229cd379d6604160cb4eea371f0a24b1cc44fd710fd","impliedFormat":99},{"version":"2439c9e3342755a2b1f94156bb03be2b0a5e3eb5348455bfb818cf6ec1810b30","signature":"b6c5cb675d41673f3d27982b79d6b96033d9f0976ff9c62a49b4d61bbfc71b1f","impliedFormat":99},{"version":"0e7d1baa841b8ce02d9b4c0e2cc28ba995c002d931bd0858613ea0d18c7ee69c","signature":"db5ff6f8ae2b0a4ff8cb16b43646b5561304b219fcc10ab1c470965743fe7662","impliedFormat":99},{"version":"7749ed7783d1b596ff2a559c6f1791c26663aa481de28c7f1f1088da957b4c19","signature":"e4bf9388266333a7b08b77dfc53f0bd5cc25da0e148c7a896aaac443c6becb47","impliedFormat":99},{"version":"5fdf113dbbe850c8aa72bae575e5e3b16d721b6aff1a9403b891ecc142f2e1c9","signature":"986c6fa0b20de6185466d165274d7896f8734b92302b70ffccf4614be069db61","impliedFormat":99},{"version":"f01a50cf37609b6fd68a162f19d1399ea4d6e784b53fa93d445f4192ba2227c1","signature":"02fad959da0f7217696defb6dead5557228c3ef9791e4cbb28164d4bea2a8245","impliedFormat":99},{"version":"a6f783cd14b1236fd93670f8bd6b5240f071360ac6b0e45a50162328e18076bb","signature":"43065306646acc1b02890238154e075cb4e2a6cbc73e213e1f56fcc6ad568d37","impliedFormat":99},{"version":"70abff315bc54a5d05ea49691b7c87d88510d6fb501a2988f728052a8c3a9b70","signature":"ccd53c52eddd8eaa19baaf4ac4224f18b3c9ee90cbdb62001f1477e59c5006be","impliedFormat":99},{"version":"5ce2ef299565dd538dbae555e49d9165607c98b4623894bdcd57defa75d5aa66","signature":"fc4560cb792ceead9e3fea2f6af6cfc1f6c3ae85091f1857c7d268a11c01b948","impliedFormat":99},{"version":"c7205820e804b0a2e14ca3aa30af92887627dcef8944fe3e260a9fd0e4bff6bd","signature":"3cdbb5ee633613ec6a9f05133cb58f37dc9600addb234645c281fa12bbec37ff","impliedFormat":99},{"version":"dea2f44cd31947f991cba9799e0b2c32fb505e334eac1c2bbef841366c7cce26","signature":"e7f707dc443bc70c46576168b519c3ba5479373575af4399855ca8b0b3013a02","impliedFormat":99},{"version":"2a2f055ec91fd4a2da87bc5f8ab27116ad452b64527116ea70ca6b9acf0dcaec","signature":"8b97d49f33fb21b2b6616c0600cb2e3968deede70049dd50e38e7d5e60258e48","impliedFormat":99},{"version":"4fb42330f9a63d62f635ecd7875cd137ca0768a72dd2d77a8e499b2d865b1339","signature":"a61270eb38bce478ba85ad3126a149e7d178fdfc02d91d901ec450ca2a08a3c9","impliedFormat":99},{"version":"989f0349d96b3f6dfcd6c14980fd7fb88ad6f7030183e6aa3ab737633dd6b648","signature":"b02e020e0ad1378e97a9e1d26795695ac5527087e5c174e8aea70ec0d00192e9","impliedFormat":99},{"version":"0b7f4df70b2fbc7e90c94a703d809030b24fd121445d07eb735e32286ef46d06","signature":"b34ecdba664a2ec3b8dbf9e941b6dbe316902ba0e406a7c31299e7eb959fb7e9","impliedFormat":99},{"version":"d87858efdb535b05d169b22601f65d8ca82d6e3b7ddd7f38645373f0936827ea","signature":"66fc58d212375c49354827feb93cf399644bddf49c6d5aa7cd716cd81cf5b691","impliedFormat":99},{"version":"30d55aeaa2023bf1741360ae54ded373993ad84fac37a0c51da15e1fd4bae5a0","signature":"5cf4cc52274a28bd8ab9406ed3e98fa53551f4b4cf1a34bd65b78b5e1439414f","impliedFormat":99},{"version":"6bd4ee1a9b711e709fcea6caace0391f479d7de7d01227f6c61ef1d71be801c1","signature":"0c184d4bfd1585aefffd168cf5f09cd420bebc653e912e418c24cab332f186e3","impliedFormat":99},{"version":"f1e93bcf479bf169e1d6702475e03d9674246683fc867e399b8efa99f6a410bc","signature":"d4ddbde0ad7387fe5129919e6f01803225906697af15bb29e0a2c5d0ec6056f4","impliedFormat":99},{"version":"52da757ac1c31ce1d39cbdd9fc2a6b7536ca57ed7c8d4820766f1f2a20233c25","signature":"48706ca10c8d5d293d1546c75598d177ec2e218aadc913c0c0e22d140788e167","impliedFormat":99},{"version":"8ca170400622ef866364e492266f8241db0ae20cbc57912931ca39545a416504","signature":"c430ada62ab9935c53a79e6d72008eee291d10a6b38380e016217a1ddbd876d7","impliedFormat":99},{"version":"d0abfa19ac6ceecf5e54008ba6358f55a31e5ac4aa5171cb5572f43a85c95f21","signature":"9a9f677f1c5a10068fe5bd9492449d3286c81009410a4efbc0c01720e76fccd9","impliedFormat":99},{"version":"c443bb9d05382282847c545e15e25203a6812b4394b67ebc9ef74a0a2a13a4ed","signature":"ce43e2dd65f632ef9507b64db36a0f6b3d5e1629660b4a1e3b68463519b56f52","impliedFormat":99},{"version":"e764a7109ea6986151c6510e0b7b36864ae60f9dbbecd3294656a56c38d5d0b8","signature":"ddc749b51a994ebd89f4e034e43c3d63194cd79d38b9f4ff9eca1e9691fdf7ab","impliedFormat":99},{"version":"1095592be3f7630f67edb2a1681e8c5873bb823d622fb13c16812d4471f95060","signature":"5779a3beccd25719ed449aa5b36496c690aedf1513bb4b9d0f62a06d15065aa9","impliedFormat":99},{"version":"c13ae93c52c5c83574356ce89ca352e1678f8e83d108ff889c148c7d9e647046","signature":"dad66df5c6f61ed2d640e4b1bd1c251ea8baf76e41b504c328a64519dcb457a4","impliedFormat":99},{"version":"a7193152de3eae35775571c6c8d797e9d46ffa5ee8a9d2f111ca1e8338b80ecc","signature":"a34189c39e64e75e77d978d1c1705f53c585e7598705ffb45487f46c26b2cae1","impliedFormat":99},{"version":"756acb82b79db98fe9bd034fead6f2acbdc4a5fdd18bf080654a54111dc577f1","signature":"b5e7dc922a6ba13fd0816be1fd36301ed2ff7b8701c967c6b31efddc6d979caf","impliedFormat":99},{"version":"56148315ae495bfcc65aa8cb1488068051ac0542cf16746766c4d20304d9cfb1","signature":"db959774546bdddc7101c53894e3138cd245b33175f7c9377f9343eec1a8d680","impliedFormat":99},{"version":"ced59bb0807ff89b09ceab247bb3e96eb92b749f76ba345a11ee0847bc69bf21","signature":"708983bc2119bb450def1cad417be1837a1585939e468ecef67105deae1b40b3","impliedFormat":99},{"version":"4d6cde6ff7c07288b8fd15eac68eb57fffcede2d34746d57bd7001f0a87d38c1","signature":"8c826192b6757cbc3ffc140a36dc8ada7957796bd2242467287ae231450b4f99","impliedFormat":99},{"version":"438b4f6cce10e0fe41c399013be35aebf81afc03a4eaa7545c7cbc1c44999cbf","signature":"2560d1b3b4dd06af6b5163953192a0577ee86f1a9a8aed2ca429012b15084e93","impliedFormat":99},{"version":"b28aeeacae8001059b0d56fdcde97ce729184c69fa2a79959860460d06dca6de","signature":"10c7bdc6518b5f312287ce56e2ad08318c9c6a205f70fc51138764c9f0579ccd","impliedFormat":99}],"root":[[59,174]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"experimentalDecorators":true,"module":100,"noImplicitAny":false,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[167,1],[168,2],[169,3],[170,4],[171,5],[172,6],[173,7],[174,8],[123,9],[63,10],[93,10],[65,11],[64,12],[119,13],[120,14],[122,15],[68,16],[83,17],[117,18],[121,19],[97,20],[81,21],[79,22],[71,23],[88,24],[72,25],[91,26],[70,27],[92,28],[125,29],[127,30],[128,31],[99,32],[98,33],[96,34],[76,35],[115,36],[66,37],[103,21],[101,38],[80,38],[107,39],[110,40],[108,41],[102,42],[111,43],[106,44],[105,45],[132,46],[135,47],[137,48],[139,49],[141,50],[143,51],[147,52],[149,53],[146,54],[134,21],[131,55],[133,56],[136,57],[138,57],[140,55],[145,58],[142,59],[148,60],[144,56],[130,61],[150,62],[104,63],[151,63],[152,64],[153,65],[154,66],[155,67],[156,68],[157,69],[159,70],[160,71],[158,72],[114,73],[163,74],[164,75],[165,76],[166,77],[162,78],[84,79],[161,78],[75,80],[87,81],[73,82],[116,81],[109,81],[74,83],[78,84],[94,85],[112,86],[113,87],[86,19]],"latestChangedDtsFile":"./src/core/platforms/web/WebPlatformLegacy.d.ts","version":"5.6.3"}
|
|
1
|
+
{"fileNames":["../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/env.d.ts","../src/utils.ts","../src/core/utils.ts","../src/common/IEventEmitter.ts","../src/common/EventEmitter.ts","../src/core/animations/CoreAnimation.ts","../src/core/animations/AnimationManager.ts","../src/core/renderers/CoreShaderNode.ts","../src/core/renderers/CoreShaderProgram.ts","../src/core/CoreShaderManager.ts","../src/core/renderers/webgl/internal/WebGlUtils.ts","../src/core/platforms/web/WebGlContextWrapper.ts","../src/core/platforms/Platform.ts","../src/core/platforms/web/lib/textureCompression.ts","../src/core/textures/ImageTexture.ts","../src/core/textures/SubTexture.ts","../src/core/TextureMemoryManager.ts","../src/core/renderers/CoreContextTexture.ts","../src/core/TextureError.ts","../src/core/textures/Texture.ts","../src/core/platforms/GlContextWrapper.ts","../src/core/renderers/webgl/internal/ShaderUtils.ts","../src/core/lib/utils.ts","../src/core/lib/Matrix3d.ts","../src/core/CoreTextNode.ts","../src/core/text-rendering/TextRenderer.ts","../src/core/lib/ContextSpy.ts","../src/main-api/utils.ts","../src/core/textures/ColorTexture.ts","../src/core/platforms/web/lib/ImageWorker.ts","../src/core/platforms/web/lib/ImageWorkerDefault.ts","../src/core/platforms/web/lib/utils.ts","../src/core/platforms/web/lib/textureSvg.ts","../src/core/platforms/web/WebPlatform.ts","../src/common/IAnimationController.ts","../src/main-api/INode.ts","../src/core/lib/colorParser.ts","../src/core/renderers/canvas/CanvasTexture.ts","../src/core/lib/colorCache.ts","../src/core/renderers/canvas/CanvasShaderNode.ts","../src/core/renderers/canvas/CanvasRenderer.ts","../src/core/renderers/CoreRenderOp.ts","../src/core/renderers/webgl/internal/RendererUtils.ts","../src/core/renderers/webgl/WebGlCtxTexture.ts","../src/core/renderers/webgl/internal/BufferCollection.ts","../src/core/shaders/webgl/Default.ts","../src/core/renderers/webgl/WebGlShaderProgram.ts","../src/core/renderers/webgl/WebGlShaderNode.ts","../src/core/renderers/webgl/SdfRenderOp.ts","../src/core/renderers/webgl/WebGlCtxSubTexture.ts","../src/core/textures/RenderTexture.ts","../src/core/renderers/webgl/WebGlCtxRenderTexture.ts","../src/core/renderers/webgl/WebGlRenderer.ts","../src/main-api/Inspector.ts","../src/main-api/Renderer.ts","../src/core/Stage.ts","../src/core/renderers/CoreRenderer.ts","../src/core/textures/NoiseTexture.ts","../src/core/CoreTextureManager.ts","../src/core/lib/RenderCoords.ts","../src/core/animations/CoreAnimationController.ts","../src/core/Autosizer.ts","../src/core/lib/collectionUtils.ts","../src/core/CoreNode.ts","../src/common/CommonTypes.ts","../src/core/platforms/web/lib/ImageWorkerNoOptions.ts","../src/core/platforms/web/WebPlatformChrome50.ts","../src/core/platforms/web/lib/ImageWorkerLegacy.ts","../src/core/platforms/web/WebPlatformLegacy.ts","../src/core/platforms/web/WebPlatformNext.ts","../src/core/platforms/web/lib/createImageBitmap.ts","../src/core/shaders/utils.ts","../src/core/shaders/templates/BorderTemplate.ts","../src/core/shaders/canvas/Border.ts","../src/core/shaders/templates/HolePunchTemplate.ts","../src/core/shaders/canvas/utils/render.ts","../src/core/shaders/canvas/HolePunch.ts","../src/core/shaders/templates/LinearGradientTemplate.ts","../src/core/shaders/canvas/LinearGradient.ts","../src/core/shaders/templates/RadialGradientTemplate.ts","../src/core/shaders/canvas/RadialGradient.ts","../src/core/shaders/templates/RoundedTemplate.ts","../src/core/shaders/canvas/Rounded.ts","../src/core/shaders/templates/RoundedWithBorderTemplate.ts","../src/core/shaders/canvas/RoundedWithBorder.ts","../src/core/shaders/templates/ShadowTemplate.ts","../src/core/shaders/templates/RoundedWithBorderAndShadowTemplate.ts","../src/core/shaders/canvas/Shadow.ts","../src/core/shaders/canvas/RoundedWithBorderAndShadow.ts","../src/core/shaders/templates/RoundedWithShadowTemplate.ts","../src/core/shaders/canvas/RoundedWithShadow.ts","../src/core/shaders/webgl/Border.ts","../src/core/shaders/webgl/DefaultBatched.ts","../src/core/shaders/webgl/HolePunch.ts","../src/core/shaders/webgl/LinearGradient.ts","../src/core/shaders/webgl/RadialGradient.ts","../src/core/shaders/webgl/Rounded.ts","../src/core/shaders/webgl/RoundedWithBorder.ts","../src/core/shaders/webgl/RoundedWithBorderAndShadow.ts","../src/core/shaders/webgl/Shadow.ts","../src/core/shaders/webgl/RoundedWithShadow.ts","../src/core/shaders/webgl/SdfShader.ts","../src/core/text-rendering/Utils.ts","../src/core/text-rendering/TextLayoutEngine.ts","../src/core/text-rendering/CanvasFontHandler.ts","../src/core/text-rendering/CanvasTextRenderer.ts","../src/core/text-rendering/SdfFontHandler.ts","../src/core/text-rendering/SdfTextRenderer.ts","../exports/canvas-shaders.ts","../exports/canvas.ts","../exports/index.ts","../exports/inspector.ts","../exports/platform.ts","../exports/utils.ts","../exports/webgl-shaders.ts","../exports/webgl.ts"],"fileIdsList":[[98,132,135,137,139,141,143,146,147,149],[96,98,99,164],[61,64,66,73,75,77,78,80,83,84,93,94,102,105,111,112,113,114,117,122,123,131,133,136,138,140,144],[112],[70,71,79,92,125,127,128],[60,61,63,81],[104,106,150,152,153,154,155,156,157,158,159],[102,106,111,166,173],[77,122],[62],[81,122],[60,63,64,66,78,81,82,93,102,103,111,114,115,117,118,119,120,121,123],[60,66,67,114],[78,81,82,84,114,115,122,123],[63,71,73,74,77,78,87,109,114,115,116],[60,63,65,66,68,71,75,78,81,83,84,85,86,87,92,113,115,117,122,123],[60,61,78,114],[64],[60,61,63,122],[60,63,64,65,93,123],[122],[95],[80],[78,80],[70,73,79,114],[69,78,79,80],[70,71,72,73,79,88,89,90,91,114],[73,88,92,124],[71,73,88,90,92,126],[92],[73],[70,73,78],[60,73],[75,78],[66,67,76,78,85,114,122],[60,114,122],[74,76,78,95,96,97,98,114,115,122],[66,97,114,122],[60,76,95,123],[81,100,102,103,106,111,114,123],[75,79,81,102,109,123],[60,74,75,78,79,102,123],[60,75,76,78,79,81,101,123],[71,74,76,78,79,81,101,102,103,104,105,106,107,108,109,110,114,115,122,123],[66,79,80,81,105,111,114,122],[67,79,80,102,103,104,106,111,122],[79],[80,81,95,98,131],[80,81,98,133,134],[98,136],[98,138],[80,81,98,134,140],[80,81,98,132,134,141,142],[80,81,98,134,143,145,146],[80,81,98,134,141,146,148],[80,98,134,144],[66,80,130],[66,130],[66],[66,130,131,140,144],[66,130,131,140],[66,130,140,144],[60,80],[80,106,131],[106],[80,81,106,133],[80,81,106,111,136],[81,106,111,122,138],[80,81,106,122,140],[80,81,106,122,142],[80,81,106,122,145],[80,81,106,122,148,158],[81,106],[106,144],[83,84,114,122,161,162],[60,83,84,114,161,162,163],[73,83,84,114,122,161,162],[60,83,84,102,103,106,107,111,114,115,160,161,162,165],[84],[83,114,115],[78,117],[71,72,78,117],[60,73,78,117,123],[63,74,76,77,81,117,123],[64,66,83,93,122],[60,64,78,83,93,113,122],[60,63,66,68,71,75,83,84,92,94,99,111,112,114,117,122]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ba0a094f93834bf1d227ddfb621d45ffe5b37e4dfe0b8518cdb769713f86633","affectsGlobalScope":true,"impliedFormat":99},{"version":"51d08744a73f37d742991a8c1520cddb5b4467be59d51cf323ab648689b773c8","signature":"fd1af2ef5ae768945eeffcdeeb952b99d60c62a80a2e6a5d4fa12810c1c9acd4","impliedFormat":99},{"version":"ba0436dc1e7dd857a26192df6d04aa3c8d5ae9b619f2530ce4e1ccf73b423638","signature":"ee40f42d658eb673fa53ff333ab90b838d3d4397fcf6a4ce49cfba5202f7c4ab","impliedFormat":99},{"version":"5de4a2417fe760f83ce7c2e9e54067e98cd4152d76536003ef991fb737b161ea","signature":"11f10eef6b087b59bd9e527db506274380a36587a1bff3450e220ad7ec2ce45e","impliedFormat":99},{"version":"42637ec4fa701148d4feb23a2964911e95126f46f167fbccb406bc12729c7430","signature":"881f25b23cf946459048e2d76abdbb7056c728a15d92d20f2e76af12725cee7e","impliedFormat":99},{"version":"be89b93c8c4ba8bbf6978db90a2cb8b1c8a82f5b18ab222949b5875964bf174e","signature":"57c524f11a2ccc3fbb107176c4fbfdffa7159848bd8753a0197fb2a04c6d3c77","impliedFormat":99},{"version":"2f14e768b6006e0c9217f4f2d61ee87125118db122f239ea2b9f6269483696c1","signature":"86af1ef9e30559df431a169a1f9d87bc81421080efff8b87c971e75a54db67dd","impliedFormat":99},{"version":"6ae1dbd5661f184b6f78a55e139365b2fbee940b12e895fe16b272a850ff3459","signature":"c1a0fd4511bbf56aedef22aba390ce4fffcef26adaec16684eea65a35e408b66","impliedFormat":99},{"version":"13efb809be1e53bb68e743278191453b4c49183787d9c6e9d9f0bbc9397ec5e6","signature":"97326a2f5f0fce22509018fe77795cb2313d61f1ef71eff134612c81ec2ac600","impliedFormat":99},{"version":"0b64f0264b09bb808e8de6f7cd615395bc16c7eb367fcd5c54a5056b5bf5adcb","signature":"6dde36af67f486d0925af4ba0339e7a66b7f71fd36f1a4d928869ccbf4dfdda0","impliedFormat":99},{"version":"c1e884d41fb830745a0de5126e20c3b9f8cdd3940623cfacf57cf98b0a65d402","signature":"8e859e1af27f614aae3f8d163c831280e842bda6c53f11c60b78deaedcff6d92","impliedFormat":99},{"version":"e9d216f0e19aa76dfbd4c84c0cb58c7592656bad123edba102d092db1d9051fc","signature":"1ec2e11f88da9138973dd7f5bec75620929b5779f689b4cd53c82a5b68605026","impliedFormat":99},{"version":"4d8040cafb0fd27c024883bab7469561aefecc633b3d41b8c3ec9ff5cd478f3e","signature":"ce373bd47e1d078abcc10e037afbc52fae41284c23b679ec533f5e2de948740d","impliedFormat":99},{"version":"7506c9793143aa85897195bc356a28bac0c77a4969d32c968e18129c66969eb8","signature":"2cd450a808b6a4643287fc23d522957dfae443fad5680b646f2945c52d126fcb","impliedFormat":99},{"version":"3cf008509f915b508569b6fb740a139aba87ee37a69acacb19d36679cece1067","signature":"050b367212e3e86d6472ee25ebfa88f23a0691a98dd20e7dd7489dab5313d2c8","impliedFormat":99},{"version":"9e539779a0e8db554d5aca38c354bb863b694b7ac191a350b134300815e7683f","signature":"178bbaca724c8e19c6e3be26bbacb719daad5c0f3a5e3a2a645bae5b187edc48","impliedFormat":99},{"version":"66aa16fd53e49d3c126b1f14031bdb04a1bb4a77f144cdb87996c848d0d6480a","signature":"09333de2a7b46780e840f7e6cd51de5620ca8b9b84f540854058169a0fb87820","impliedFormat":99},{"version":"f8bb12172e9e15b67dd4f651bfbb0940b8ef8d8edc89e98220e479134936d7fb","signature":"7fa0036a92ef198a2140758b695b615596e7860cde2f8f50dc8772f1ae23fde0","impliedFormat":99},{"version":"eb5ebb320aa1183949c8d38cbb1d1a4adb66d89c2eabe482d06cbfcbb623a5c8","signature":"a99803c578fe88e219cf00596426fe7a7d4562fff03a9c2814b84e9d0b6a23df","impliedFormat":99},{"version":"824b17541616f7891dec3c133bda3846a91b6ceddf5c221b11606bef1a05d842","signature":"25ce49c3576ca9d969630d1fba75b742f37784c6c51a690743bfb1e516d7ec0c","impliedFormat":99},{"version":"b9e81a3da39763161010c4dcb6d12f4460ffc36eb775bef384c4e36a7fbb4cfc","signature":"ecdc1ca4120d9799a56b7d8dd589df68cf4fdba08b533e5b2e1950d1b3d60006","impliedFormat":99},{"version":"70a0b4888a5fdc0f94a6d4b9327b0e428b432c71cb96a3b3699d082c171a3c86","signature":"2fb80582116f4b75789f9cb20713774950ddb3196863bc0c30e8c649ff43a6f2","impliedFormat":99},{"version":"c95ab3cb063622388d9e49e976bab8e5805e53a3ea74dbabd41b7f1e15ab230d","signature":"208a5854bcfb067c89fbaa71b9b0d643d0c87b63d2652c20cf8d97dc18b95add","impliedFormat":99},{"version":"00225081075bead20c946a2202ff71bbc0c0d881a37299a85153534b8db95ead","signature":"82b4959cc8e78b6523427a16b137e53509dbae64f14851b999756aaffe318ce7","impliedFormat":99},{"version":"c9658f3b7195e92997293514f21580db33409d7b6ae0a5e261c5de100b12adb7","signature":"8895501a1adfa3c7436a5016eeca48eb6a7c26e7b73e80c52b008d734a1c37b7","impliedFormat":99},{"version":"09b00d183c6b3d0a9f61d8c81748a0ed32f973c099c342e36f9d8d7c7a644fdb","signature":"c1e47438480b259fd6292c2e59d10059e1c76d1795d46b8271a1636932f2f715","impliedFormat":99},{"version":"91fc62e55e9c0e46aeb37d1286e50805ea903c159ae1bf544f5ee54b5717995d","signature":"826d87ec474ecd59c827441df44d49f420dbe099333c3344e31dfada8cc39902","impliedFormat":99},{"version":"7f6e6e6104931e7907c74e53d336094350978646d9c02c2a205ffcea90b58e61","signature":"f02942f8ae408270e572fa4c23aca8f42b496b83a836bfc8cec4f559e8ce1125","impliedFormat":99},{"version":"9a729c87e869555d84041be47223a22bdea8b5bfc73a4f65a28866c8afd47b17","signature":"68cfd7feb1396181cc75d8cfbd95ae5e76e2ffee3c99aeb04e4d3175737c7a97","impliedFormat":99},{"version":"6aa33d25a99620395dd2f796dda36819ec88e3ddd233ea0fb7c101e3f08cc0dd","signature":"348b04d01c12484b0bcf0b51459ec6484e39c372dff8955829e9e35212eec213","impliedFormat":99},{"version":"4a79889f8577b7d5afd98b71a3d55295b1e39e153f78b907cd109713d70db9c9","signature":"0901521f88b1ff86af8ce6c58a6be3e0878d09587051931d934921d23c455375","impliedFormat":99},{"version":"19e4b1b3c142e250ba5403b4dcae1d943adaea2066816be4556c3efd6891b48e","signature":"1ef2b085e389863587d5c7c7d13140c64c9777d1de27fb5dbf624cea67a0fce0","impliedFormat":99},{"version":"368e5d7d8adb1d06a0d13fa66d4de51b7597e27c9081d547338d3f45cf931131","signature":"3a40830fa52d8c298f98360c96529c2be63dad326d0007af0d111538ce8d6901","impliedFormat":99},{"version":"0ed708bafdea54b669cf594c143de04a22a2bb9f69dbc8ffef3d681cfda5e9d6","signature":"e67a9dd698238f69378fdc73412c0fc83eb34e08a336aa2e194e111c02a4a36d","impliedFormat":99},{"version":"cd3353c087e03546d356d446993cf1347c13de8650914068988c06c3f5c1d4bc","signature":"18ba5f48d81404839647f24a785897883dc699b89397499eea03ae01cc88075c","impliedFormat":99},{"version":"acab9e99a2de0d1d20a7451ecbbdedc4d0372c3fc725f582b46688981520155e","signature":"06dcab8f25e15fdc5e573e9d552a55fd8bdd35830647d211e2e392d9f81f7f3c","impliedFormat":99},{"version":"93d6bb317f0d77cf8ea12575ff3951f7dd1b54db0fe20ecbbbcd3d9963da625e","signature":"566b53d6bd25dd8a6d93ef387b4a0ae8a795c1ea4854298c3a328fc6712aebb5","impliedFormat":99},{"version":"3f82e7cef37ef702eb56571d83a0e53acbe82e7fd4c731db2bcaad3f1bf80e6c","signature":"a3802aaf9d8320c01fa1156886402ae5383f9e49f104c261b1e3203c72c89dbc","impliedFormat":99},{"version":"f309bd228e2982f60f7ed817323e80d1187c1520248ae02059bd93d23eaa1acf","signature":"2885b4f117dd1d518624b16d3993749c17042fe5d799b60a46d9654d45fc1be1","impliedFormat":99},{"version":"7f205f17b22dd2ab59ed5991e6fb4dc76ebcf6a1efb91bca19457775b4097eaa","signature":"70dd0bd75de1a7b08011eddfacc2d0f1787ff28e7c588b860af4579a0dbc941f","impliedFormat":99},{"version":"fd97fef3fce1fba45888b97a55a2e7e8f5527d548d444eecd74e1db3aa8cb08b","signature":"f48eefee39bf44aefbbce05a6840b54309c8a31f05641e2c94fc82e76ce807a1","impliedFormat":99},{"version":"406863eae1f7adee4bfaf6b80f541e72ba3ff57a80997eae34dc2677733f62cc","signature":"21248172fdb4c3ce859fa761a360940384895116a845e10fb20812ef4d29431c","impliedFormat":99},{"version":"75c0517859f938323964be93caccf491654f3b3f6b1a4537bc38ab3e23d98036","signature":"6a1d1356c721505eb3dc472e1b631e880da82d2b8fdb483be9c3386a46c82a7c","impliedFormat":99},{"version":"edb92ee1a5b2a0b91e54ebb6504f16d12ae048c5007ff6cfc4f93411a2375b2f","signature":"412f28e19739cd68e7a510b7d2417e61e8c035567caec11199d2bc608bdd9049","impliedFormat":99},{"version":"fe059ad5602551efe1fd96feb8639a3b5b8519e4f13ae3562c67c45b32df8ec8","signature":"9c7e28c8554bb1e4ee50e06a4037967d79eb8126b3ee24c1676633381a352e0f","impliedFormat":99},{"version":"dc6d6d277e6627f3639b5ccea6f6d58273b2216bafd818d5c71d38455d79da7e","signature":"11d90ddf914600d7cdba80dc93576c8e4b9590b42542a4e4db56e36af1c3c341","impliedFormat":99},{"version":"1c586e0672cccd76f88a3c4b5499b84b85e4e7f5714481739da423a257500ce2","signature":"b99fb3db745e05805dd318a7610b2cdd549f05b1ed07adb8f16245addadb78f3","impliedFormat":99},{"version":"856fb8ec7842e79d82b20fa60eb94885d6236df0369e6b9f0c75169ba11178e8","signature":"6494935de0834e0fdf32549bb1d99db0baace738f94db109f0fe24f9908e5e13","impliedFormat":99},{"version":"899bb0fa7ad8e8f2e36c331b51a4168fa8714e8fb08c8ea662c59906d89b5795","signature":"566fed4f1624f5af82eaf5e00df742493ea0ac396b8407cb0af1587440f03da5","impliedFormat":99},{"version":"e0b807278a7eed1236ac49425924be2eef6a1a82e33fd97bf8cc21b7d8bc2dc0","signature":"76c2c064d1ec7016eb04f3b857c850f405ee31b5de030ba14949c842d10b3ed4","impliedFormat":99},{"version":"37d417d8e07de3d2bf23b926bc2b7a2f68e2083e227987878fb285983172f0fa","signature":"8adbddff6d8303fdf5de01602f8c2b9a28efc3bf60530eeba3857aa7f550f655","impliedFormat":99},{"version":"59eff4434a1dee49ed455270cf7a4dfe84d88db36185092ae5733f462e72f180","signature":"4649e209c8e55ea7da478772401659c9afe839176071603a3aebaf7a096963e8","impliedFormat":99},{"version":"425df37164ba24a136660c1ee085074c42e42d435e79c968e3dbcdb9827f2955","signature":"1745542a9cd61dea502e363ea6f2fdcaf61e37b9a683bac1ce29bf82c4e193d5","impliedFormat":99},{"version":"080ef68cb739c663b974cc84b33883aeac7839eabade7f77dd760648302ee9f6","signature":"0ac7bb457ac07cb746a4cd0f9056cd13d06ac92515df7f4d04fdb426c0d04789","impliedFormat":99},{"version":"e6846a4494bcc42cd5e18558f269128928206895ae335a1a1f8d8755c0015858","signature":"147dea73a1812befb25fa16d0f35efaff0f17320b901d8f9a22b275eac9e2ebd","impliedFormat":99},{"version":"2415614daaf6621d606c9d0a7bea278e5b505914d47b5fea2832f0be6e348eb1","signature":"230774b131e9cf85d2f9904ca48c6bc42521ca5b085c9601fceaa472b249a63e","impliedFormat":99},{"version":"34f0da1c3e1b1a906ca88a49c9c37e7e976f56ef0d7f7a562f3f459c2d519247","signature":"7a483fb2215b5d16372b26efe149e55ab716c52b752b9af1f5d9c64103c27d10","impliedFormat":99},{"version":"cd590c2da019805851133b25cf44be9c7f99e89a9888dd6d8a68a769512c667c","signature":"46d6995fa6153325dae9fcaf8eb7fdc183936a42a3fb851efcda43cc0bf7edef","impliedFormat":99},{"version":"9b9d70363c327d22ea8e0b8a35dec53ec63ca438c256e010e284a8bb54f3b99e","signature":"8aa95be4a204a0a1df189c4f3c58584c005f19f512dfe0cc664dc73c653da11e","impliedFormat":99},{"version":"8537b931a2666f64673f350100f408d703edb0a35b705099034cdce6a164b335","signature":"9b47d61d6e847112cf7e9f2fb1631d36e81d966b79b46ede120eaf85058f6a97","impliedFormat":99},{"version":"819166128c4a222f29524ed88cb79df43a5b85e8d0186859fdefff5828994559","signature":"775f83aba0a790ff27ad5e6642106c49f74e3918fc405f7d2431e4bd58c60ea9","impliedFormat":99},{"version":"c9eff3fee02c0f60bd21b4472d32e6781dd680e6877c62a268d5842641d38252","signature":"3ea67cb40367de619dc4addce96f4d5e80160ea305c6afe526d44a1b7988a3ea","impliedFormat":99},{"version":"8d59e2583567b1644d515390886f9448e2b74c5807b06953aa1f55581ad3a66e","signature":"05b142f6ee1495a2241cdeb8edebe68ec86f73de919b39c68a6a42dae460a524","impliedFormat":99},{"version":"e7cf2bbaf7bb0a40be7bc08028edb1acd01582c6118adbc304767a8acc2b7d89","signature":"96353d67ad67490f6865d86bd54aa4a5c4d95642d68a77ec545573b759cc0cf1","impliedFormat":99},{"version":"2accc5d167e3f6469fe824a754d75da6673b769ac7871c774ea2b550967f673a","signature":"6033589d06e12b3c3c9847974d7a3d1d2b838f575295611772f427b1e09a9719","impliedFormat":99},{"version":"ade60cf70633551c03e78934872a45ce58866f29171ecab7c71eaccad87734c1","signature":"18ba204a908da4aece7a8e5919ec556f8493e535ca08ed165d53fd72f7f43df0","impliedFormat":99},{"version":"3baf2dee52419bab3dc8e3af0f1a434b4ef3c8c20129112c9210c2e9509daf3f","signature":"211119813e2fc8cccb2630db0a6f889981efe71c55fe89b63a56c7fcc4dd9b1f","impliedFormat":99},{"version":"4c0e6ec19bf21f91b7eea91251655ee8aa8fffc66e44ac3dabe1db1822539823","signature":"e76000bf56e7303a06281974d287fabf1d9219ec9b45e18aa1eef4d6e1026856","impliedFormat":99},{"version":"02598a75c65eb545b30fb97b29a1ec2f6eecd1d8d4709a6776eedd1824bd9b3b","signature":"160bde8c2e4379c48043740eab17a6163842f750e56692052a08d28475181ef0","impliedFormat":99},{"version":"3130d3bd1498fe0fb67e8b70d644a73772b0d9ee4cbaefdf885574c7ddb69ddf","signature":"2291caf1b1e7ec37a1ffd42ea02c88bac063bbe210886ead78056aaa81b117c7","impliedFormat":99},{"version":"6c200ec4f5e1b4282c66c9ba7c3fef3e7d92b46678c1043f08d5ae9728f13b7b","signature":"20166865cbc1461da0c5c09438c8221c83e897918a1d8fa708003b5d3e412bdf","impliedFormat":99},{"version":"80fb1e124b3befd9e215f0585a7587232ca8617623289795d526a54a6c1b2f90","signature":"6b38678a012f8055e5f0a8aa9c1ca13d8a6d60110541d60e244a132b31f1fec2","impliedFormat":99},{"version":"e3d6ae9f282b044965d33d9ac07a2ff7a9740ac18ec120a1108322b1b10af0a4","signature":"a13bbfb6077d7cb71485da903e99986a83312876720b182476136dcce73775d5","impliedFormat":99},{"version":"fcf7e7036b5f6414b3ed3329784ff67013ccec57c3e9e3f947a5989820e8f398","signature":"47e1b725b6d55b6284e63568e9074f195005f8b79e066b28449663aef9aed95c","impliedFormat":99},{"version":"fd4726084fc420f22d41ed89924588eb763d505dad1e962cb7342262f3768a9b","signature":"42e936ecc3b9b7ad5a489eeaea7c25af8d7b71162a08e00ad638648e87a7ee51","impliedFormat":99},{"version":"a98565fe3f6544349391fcfa5b85228a7c930432e7cb0ece5836e0bb3bcc4df2","signature":"e6f972dc162ead1d86897a3488316aab8b034472695d40eac74b6557e184919d","impliedFormat":99},{"version":"6778505747ca2fe895398a950e1b7ae1ec2082598ab40f4747ed92b38f432486","signature":"d91415fa00b3eef01ae2e08e8ffaf7cef9fa568515c83ac1474a22cc55bb3718","impliedFormat":99},{"version":"4c07cb4af489aa7e5386c5c71589b9c1dc19d6cd844a40fff43b306c2595d302","signature":"912202a19d5e8972357af639e5e65d06c9171e30d4bf077fcdfe184c30effc7c","impliedFormat":99},{"version":"732171c867502bf996c071ca99ebd61b81b3c9180c764e8487923afbfd923c43","signature":"16ea4109bf543dd521c2e9cd4ff0f8c498250ce26f6fe55739e077e0761c8807","impliedFormat":99},{"version":"559e7d0c8fc59a863ab372f153cac32ed9b8a491cecbb55ae99eae5dafb63183","signature":"9ab0406e79c8ae7a4f552c6609b8ce436242d74abbeebd1f4303a63c53ccb56a","impliedFormat":99},{"version":"7ece36a110abd08f05dd49a92252701bcbddf4fe293ae01cbf9c601016d7bba1","signature":"76fdce1e19f5cf3a2243a37f1778f534dc527e73c25100a14d63994c2f0b8760","impliedFormat":99},{"version":"2090d0eca18e731bd8d969d2cba352c8df8cf90ba868f4cfa283dad83808bb08","signature":"4dcaec244d4486f21fa7800fd6853c914df66154d4ca6b7cf0aa0370c5e6a656","impliedFormat":99},{"version":"9b0ff49d36b7824d21256ddb1ba4768b457813540c0d62f554cea3dc9c64f216","signature":"5111e2e2ffb1264243951a0c15fa3498e2c0c23e74599f535ad2227a16d8c503","impliedFormat":99},{"version":"2ec552907133a2cf71b3ac6691c4c967b9812c55fb4aae93c84b244dec1f1138","signature":"6a0b240c302708869a73e229cd379d6604160cb4eea371f0a24b1cc44fd710fd","impliedFormat":99},{"version":"2439c9e3342755a2b1f94156bb03be2b0a5e3eb5348455bfb818cf6ec1810b30","signature":"b6c5cb675d41673f3d27982b79d6b96033d9f0976ff9c62a49b4d61bbfc71b1f","impliedFormat":99},{"version":"0e7d1baa841b8ce02d9b4c0e2cc28ba995c002d931bd0858613ea0d18c7ee69c","signature":"db5ff6f8ae2b0a4ff8cb16b43646b5561304b219fcc10ab1c470965743fe7662","impliedFormat":99},{"version":"7749ed7783d1b596ff2a559c6f1791c26663aa481de28c7f1f1088da957b4c19","signature":"e4bf9388266333a7b08b77dfc53f0bd5cc25da0e148c7a896aaac443c6becb47","impliedFormat":99},{"version":"5fdf113dbbe850c8aa72bae575e5e3b16d721b6aff1a9403b891ecc142f2e1c9","signature":"986c6fa0b20de6185466d165274d7896f8734b92302b70ffccf4614be069db61","impliedFormat":99},{"version":"f01a50cf37609b6fd68a162f19d1399ea4d6e784b53fa93d445f4192ba2227c1","signature":"02fad959da0f7217696defb6dead5557228c3ef9791e4cbb28164d4bea2a8245","impliedFormat":99},{"version":"a6f783cd14b1236fd93670f8bd6b5240f071360ac6b0e45a50162328e18076bb","signature":"43065306646acc1b02890238154e075cb4e2a6cbc73e213e1f56fcc6ad568d37","impliedFormat":99},{"version":"70abff315bc54a5d05ea49691b7c87d88510d6fb501a2988f728052a8c3a9b70","signature":"ccd53c52eddd8eaa19baaf4ac4224f18b3c9ee90cbdb62001f1477e59c5006be","impliedFormat":99},{"version":"5ce2ef299565dd538dbae555e49d9165607c98b4623894bdcd57defa75d5aa66","signature":"fc4560cb792ceead9e3fea2f6af6cfc1f6c3ae85091f1857c7d268a11c01b948","impliedFormat":99},{"version":"c7205820e804b0a2e14ca3aa30af92887627dcef8944fe3e260a9fd0e4bff6bd","signature":"3cdbb5ee633613ec6a9f05133cb58f37dc9600addb234645c281fa12bbec37ff","impliedFormat":99},{"version":"dea2f44cd31947f991cba9799e0b2c32fb505e334eac1c2bbef841366c7cce26","signature":"e7f707dc443bc70c46576168b519c3ba5479373575af4399855ca8b0b3013a02","impliedFormat":99},{"version":"2a2f055ec91fd4a2da87bc5f8ab27116ad452b64527116ea70ca6b9acf0dcaec","signature":"8b97d49f33fb21b2b6616c0600cb2e3968deede70049dd50e38e7d5e60258e48","impliedFormat":99},{"version":"4fb42330f9a63d62f635ecd7875cd137ca0768a72dd2d77a8e499b2d865b1339","signature":"a61270eb38bce478ba85ad3126a149e7d178fdfc02d91d901ec450ca2a08a3c9","impliedFormat":99},{"version":"989f0349d96b3f6dfcd6c14980fd7fb88ad6f7030183e6aa3ab737633dd6b648","signature":"b02e020e0ad1378e97a9e1d26795695ac5527087e5c174e8aea70ec0d00192e9","impliedFormat":99},{"version":"0b7f4df70b2fbc7e90c94a703d809030b24fd121445d07eb735e32286ef46d06","signature":"b34ecdba664a2ec3b8dbf9e941b6dbe316902ba0e406a7c31299e7eb959fb7e9","impliedFormat":99},{"version":"d87858efdb535b05d169b22601f65d8ca82d6e3b7ddd7f38645373f0936827ea","signature":"66fc58d212375c49354827feb93cf399644bddf49c6d5aa7cd716cd81cf5b691","impliedFormat":99},{"version":"30d55aeaa2023bf1741360ae54ded373993ad84fac37a0c51da15e1fd4bae5a0","signature":"5cf4cc52274a28bd8ab9406ed3e98fa53551f4b4cf1a34bd65b78b5e1439414f","impliedFormat":99},{"version":"6bd4ee1a9b711e709fcea6caace0391f479d7de7d01227f6c61ef1d71be801c1","signature":"0c184d4bfd1585aefffd168cf5f09cd420bebc653e912e418c24cab332f186e3","impliedFormat":99},{"version":"f1e93bcf479bf169e1d6702475e03d9674246683fc867e399b8efa99f6a410bc","signature":"d4ddbde0ad7387fe5129919e6f01803225906697af15bb29e0a2c5d0ec6056f4","impliedFormat":99},{"version":"52da757ac1c31ce1d39cbdd9fc2a6b7536ca57ed7c8d4820766f1f2a20233c25","signature":"48706ca10c8d5d293d1546c75598d177ec2e218aadc913c0c0e22d140788e167","impliedFormat":99},{"version":"8ca170400622ef866364e492266f8241db0ae20cbc57912931ca39545a416504","signature":"c430ada62ab9935c53a79e6d72008eee291d10a6b38380e016217a1ddbd876d7","impliedFormat":99},{"version":"d0abfa19ac6ceecf5e54008ba6358f55a31e5ac4aa5171cb5572f43a85c95f21","signature":"9a9f677f1c5a10068fe5bd9492449d3286c81009410a4efbc0c01720e76fccd9","impliedFormat":99},{"version":"c443bb9d05382282847c545e15e25203a6812b4394b67ebc9ef74a0a2a13a4ed","signature":"ce43e2dd65f632ef9507b64db36a0f6b3d5e1629660b4a1e3b68463519b56f52","impliedFormat":99},{"version":"faacc70541be78ade9a20c8e90b169bdf2799b05065753f35466025cdc60cc41","signature":"ddc749b51a994ebd89f4e034e43c3d63194cd79d38b9f4ff9eca1e9691fdf7ab","impliedFormat":99},{"version":"1095592be3f7630f67edb2a1681e8c5873bb823d622fb13c16812d4471f95060","signature":"5779a3beccd25719ed449aa5b36496c690aedf1513bb4b9d0f62a06d15065aa9","impliedFormat":99},{"version":"c13ae93c52c5c83574356ce89ca352e1678f8e83d108ff889c148c7d9e647046","signature":"dad66df5c6f61ed2d640e4b1bd1c251ea8baf76e41b504c328a64519dcb457a4","impliedFormat":99},{"version":"a7193152de3eae35775571c6c8d797e9d46ffa5ee8a9d2f111ca1e8338b80ecc","signature":"a34189c39e64e75e77d978d1c1705f53c585e7598705ffb45487f46c26b2cae1","impliedFormat":99},{"version":"756acb82b79db98fe9bd034fead6f2acbdc4a5fdd18bf080654a54111dc577f1","signature":"b5e7dc922a6ba13fd0816be1fd36301ed2ff7b8701c967c6b31efddc6d979caf","impliedFormat":99},{"version":"56148315ae495bfcc65aa8cb1488068051ac0542cf16746766c4d20304d9cfb1","signature":"db959774546bdddc7101c53894e3138cd245b33175f7c9377f9343eec1a8d680","impliedFormat":99},{"version":"ced59bb0807ff89b09ceab247bb3e96eb92b749f76ba345a11ee0847bc69bf21","signature":"708983bc2119bb450def1cad417be1837a1585939e468ecef67105deae1b40b3","impliedFormat":99},{"version":"4d6cde6ff7c07288b8fd15eac68eb57fffcede2d34746d57bd7001f0a87d38c1","signature":"8c826192b6757cbc3ffc140a36dc8ada7957796bd2242467287ae231450b4f99","impliedFormat":99},{"version":"438b4f6cce10e0fe41c399013be35aebf81afc03a4eaa7545c7cbc1c44999cbf","signature":"2560d1b3b4dd06af6b5163953192a0577ee86f1a9a8aed2ca429012b15084e93","impliedFormat":99},{"version":"b28aeeacae8001059b0d56fdcde97ce729184c69fa2a79959860460d06dca6de","signature":"10c7bdc6518b5f312287ce56e2ad08318c9c6a205f70fc51138764c9f0579ccd","impliedFormat":99}],"root":[[59,174]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"experimentalDecorators":true,"module":100,"noImplicitAny":false,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[167,1],[168,2],[169,3],[170,4],[171,5],[172,6],[173,7],[174,8],[123,9],[63,10],[93,10],[120,11],[122,12],[68,13],[83,14],[117,15],[114,16],[75,17],[65,18],[64,19],[119,20],[121,21],[97,22],[81,23],[79,24],[71,25],[70,26],[92,27],[125,28],[127,29],[128,30],[88,31],[72,32],[91,33],[76,34],[115,35],[66,36],[99,37],[98,38],[96,39],[107,40],[110,41],[108,42],[102,43],[111,44],[106,45],[105,46],[103,23],[101,47],[80,47],[132,48],[135,49],[137,50],[139,51],[141,52],[143,53],[147,54],[149,55],[146,56],[134,23],[131,57],[133,58],[136,59],[138,59],[140,57],[145,60],[142,61],[148,62],[144,58],[130,63],[150,64],[104,65],[151,65],[152,66],[153,67],[154,68],[155,69],[156,70],[157,71],[159,72],[160,73],[158,74],[163,75],[164,76],[165,77],[166,78],[162,79],[84,80],[161,79],[87,81],[73,82],[116,81],[109,81],[74,83],[78,84],[94,85],[112,86],[113,87],[86,21]],"latestChangedDtsFile":"./src/core/text-rendering/SdfTextRenderer.d.ts","version":"5.9.2"}
|
package/package.json
CHANGED
package/src/core/CoreTextNode.ts
CHANGED
|
@@ -284,6 +284,15 @@ export class CoreTextNode extends CoreNode implements CoreTextNodeProps {
|
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
+
// Handle zero-dimension case (can happen with certain text inputs or font issues)
|
|
288
|
+
if (width === 0 || height === 0) {
|
|
289
|
+
this.emit('failed', {
|
|
290
|
+
type: 'text',
|
|
291
|
+
error: new Error('Text rendering failed, width or height zero'),
|
|
292
|
+
} satisfies NodeTextFailedPayload);
|
|
293
|
+
return;
|
|
294
|
+
}
|
|
295
|
+
|
|
287
296
|
this._cachedLayout = result.layout || null;
|
|
288
297
|
this.props.w = width;
|
|
289
298
|
this.props.h = height;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* If not stated otherwise in this file or this component's LICENSE file the
|
|
3
|
+
* following copyright and licenses apply:
|
|
4
|
+
*
|
|
5
|
+
* Copyright 2026 Comcast Cable Communications Management, LLC.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the License);
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Tests proving the WebGL OOM / ctxTexture undefined crash scenario.
|
|
22
|
+
*
|
|
23
|
+
* Crash chain being simulated:
|
|
24
|
+
* GL_OUT_OF_MEMORY from texImage2D
|
|
25
|
+
* → Texture.release() sets ctxTexture = undefined (via microtask)
|
|
26
|
+
* → WebGlRenderer.addQuad() reads tx.ctxTexture as WebGlCtxTexture (undefined)
|
|
27
|
+
* → CoreNode.addTexture(undefined) pushes undefined into renderOpTextures
|
|
28
|
+
* → WebGlShaderProgram.bindTextures() reads textures[0]!.ctxTexture
|
|
29
|
+
* → TypeError: Cannot read property 'ctxTexture' of undefined ← CRASH
|
|
30
|
+
*
|
|
31
|
+
* All tests here are RED before the fix and GREEN after.
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
import { describe, expect, it, vi } from 'vitest';
|
|
35
|
+
import { WebGlShaderProgram } from './WebGlShaderProgram.js';
|
|
36
|
+
import { CoreNode } from '../../CoreNode.js';
|
|
37
|
+
import type { WebGlCtxTexture } from './WebGlCtxTexture.js';
|
|
38
|
+
|
|
39
|
+
// ---------------------------------------------------------------------------
|
|
40
|
+
// Test 1 — bindTextures crashes when textures[0] is undefined
|
|
41
|
+
//
|
|
42
|
+
// Directly mirrors the crash from the production stack trace:
|
|
43
|
+
// fb.bindTextures → textures[0]!.ctxTexture
|
|
44
|
+
// → TypeError: Cannot read property 'ctxTexture' of undefined
|
|
45
|
+
// ---------------------------------------------------------------------------
|
|
46
|
+
describe('WebGlShaderProgram.bindTextures', () => {
|
|
47
|
+
it('does not throw when textures[0] is undefined', () => {
|
|
48
|
+
// Create a minimal instance that bypasses the GL-context-requiring constructor
|
|
49
|
+
const instance = Object.create(
|
|
50
|
+
WebGlShaderProgram.prototype,
|
|
51
|
+
) as WebGlShaderProgram;
|
|
52
|
+
(instance as any).glw = { activeTexture: vi.fn(), bindTexture: vi.fn() };
|
|
53
|
+
|
|
54
|
+
// After Fix B: bindTextures returns early instead of crashing
|
|
55
|
+
expect(() =>
|
|
56
|
+
instance.bindTextures([undefined as unknown as WebGlCtxTexture]),
|
|
57
|
+
).not.toThrow();
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
// ---------------------------------------------------------------------------
|
|
62
|
+
// Test 2 — addTexture silently accepts undefined and stores it
|
|
63
|
+
//
|
|
64
|
+
// The crash is silent at this layer: passing an undefined ctxTexture to
|
|
65
|
+
// CoreNode.addTexture does NOT throw — it quietly pushes undefined into
|
|
66
|
+
// renderOpTextures, poisoning the array for bindTextures later.
|
|
67
|
+
// ---------------------------------------------------------------------------
|
|
68
|
+
describe('CoreNode.addTexture with undefined ctxTexture', () => {
|
|
69
|
+
it('accepts undefined without throwing and stores it in renderOpTextures', () => {
|
|
70
|
+
// Call via prototype to avoid the complex CoreNode constructor
|
|
71
|
+
const fakeCtx = { renderOpTextures: [] as WebGlCtxTexture[] };
|
|
72
|
+
const idx = CoreNode.prototype.addTexture.call(
|
|
73
|
+
fakeCtx,
|
|
74
|
+
undefined as unknown as WebGlCtxTexture,
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
// No error raised here — that is the problem
|
|
78
|
+
expect(idx).toBe(0);
|
|
79
|
+
// undefined is now stored; any subsequent bindTextures call will crash
|
|
80
|
+
expect(fakeCtx.renderOpTextures[0]).toBeUndefined();
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
// ---------------------------------------------------------------------------
|
|
85
|
+
// Test 3 — full crash chain: undefined ctxTexture → addTexture → bindTextures
|
|
86
|
+
//
|
|
87
|
+
// End-to-end proof that the chain fails before any fix is applied.
|
|
88
|
+
// ---------------------------------------------------------------------------
|
|
89
|
+
describe('full OOM crash chain: undefined ctxTexture → bindTextures crash', () => {
|
|
90
|
+
it('does not crash when undefined ctxTexture propagates to bindTextures', () => {
|
|
91
|
+
// Simulate: GPU OOM causes Texture.release() → ctxTexture = undefined
|
|
92
|
+
const undefinedCtxTexture = undefined as unknown as WebGlCtxTexture;
|
|
93
|
+
|
|
94
|
+
// Simulate: WebGlRenderer.addQuad reads tx.ctxTexture (undefined) and
|
|
95
|
+
// passes it to curRenderOp.addTexture — no error thrown here
|
|
96
|
+
const fakeRenderOp = { renderOpTextures: [] as WebGlCtxTexture[] };
|
|
97
|
+
CoreNode.prototype.addTexture.call(fakeRenderOp, undefinedCtxTexture);
|
|
98
|
+
|
|
99
|
+
// Confirm undefined is still sitting in renderOpTextures (addTexture is unchanged)
|
|
100
|
+
expect(fakeRenderOp.renderOpTextures[0]).toBeUndefined();
|
|
101
|
+
|
|
102
|
+
// Simulate: bindRenderOp calls bindTextures with the poisoned array
|
|
103
|
+
const program = Object.create(
|
|
104
|
+
WebGlShaderProgram.prototype,
|
|
105
|
+
) as WebGlShaderProgram;
|
|
106
|
+
(program as any).glw = { activeTexture: vi.fn(), bindTexture: vi.fn() };
|
|
107
|
+
|
|
108
|
+
// After Fix B: bindTextures returns early — the draw loop is protected
|
|
109
|
+
expect(() =>
|
|
110
|
+
program.bindTextures(fakeRenderOp.renderOpTextures),
|
|
111
|
+
).not.toThrow();
|
|
112
|
+
});
|
|
113
|
+
});
|