@helix3/helix-cli 0.1.6-helix3.36 → 0.1.7-helix3.38
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/glb/glb-summary.d.ts +56 -0
- package/dist/glb/glb-summary.js +340 -0
- package/dist/glb/glb-summary.js.map +1 -0
- package/dist/glb/index.d.ts +10 -0
- package/dist/glb/index.js +16 -0
- package/dist/glb/index.js.map +1 -0
- package/dist/resolve.js +25 -4
- package/dist/resolve.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +12 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dependency-free GLB (binary glTF 2.0) summariser.
|
|
3
|
+
*
|
|
4
|
+
* Parses only the JSON chunk (and minimal image headers from the BIN chunk) to
|
|
5
|
+
* extract the facts asset verification needs: triangle count, skeleton bone
|
|
6
|
+
* names, embedded animations, and texture dimensions. Avoids pulling a heavy
|
|
7
|
+
* glTF runtime into consumers and works the same for avatars and static meshes.
|
|
8
|
+
*
|
|
9
|
+
* CANONICAL COPY. Extracted here (`@hypersoniclabs/helix-cli/glb`) from
|
|
10
|
+
* helix-backend-api, which — like universal-item-validator-worker — now
|
|
11
|
+
* imports this module instead of carrying a verbatim copy; both copies had
|
|
12
|
+
* silently carried the same WebP + Draco parsing bugs because nothing compared
|
|
13
|
+
* them. Fix bugs HERE, bump the version, and update the consumers' lockfiles.
|
|
14
|
+
*/
|
|
15
|
+
export interface GlbTextureInfo {
|
|
16
|
+
width: number;
|
|
17
|
+
height: number;
|
|
18
|
+
format: 'png' | 'jpeg' | 'webp' | 'ktx2' | 'unknown';
|
|
19
|
+
byteLength: number;
|
|
20
|
+
mimeType?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface GlbBoundingBox {
|
|
23
|
+
/** World-space min corner [x, y, z], in glTF units (metres by convention). */
|
|
24
|
+
min: [number, number, number];
|
|
25
|
+
/** World-space max corner [x, y, z]. */
|
|
26
|
+
max: [number, number, number];
|
|
27
|
+
/** Extent along each axis = max - min. glTF is Y-up, so [width, height, depth]. */
|
|
28
|
+
sizeMeters: [number, number, number];
|
|
29
|
+
}
|
|
30
|
+
export interface GlbSummary {
|
|
31
|
+
/** Total file size in bytes. */
|
|
32
|
+
sizeBytes: number;
|
|
33
|
+
glbVersion: number;
|
|
34
|
+
meshCount: number;
|
|
35
|
+
/** Total triangle count across every TRIANGLES primitive. */
|
|
36
|
+
triangleCount: number;
|
|
37
|
+
skinCount: number;
|
|
38
|
+
/** Unique skeleton joint (bone) names, in declaration order. */
|
|
39
|
+
boneNames: string[];
|
|
40
|
+
/** Embedded animation clip names. */
|
|
41
|
+
animationNames: string[];
|
|
42
|
+
materialCount: number;
|
|
43
|
+
textures: GlbTextureInfo[];
|
|
44
|
+
/** Largest texture edge across all embedded textures. */
|
|
45
|
+
maxTextureEdge: number;
|
|
46
|
+
/**
|
|
47
|
+
* World-space axis-aligned bounds, derived from each POSITION accessor's
|
|
48
|
+
* min/max (present even for Draco-compressed meshes) transformed by its
|
|
49
|
+
* node's world matrix. null when no positioned geometry carries bounds.
|
|
50
|
+
*/
|
|
51
|
+
boundingBox: GlbBoundingBox | null;
|
|
52
|
+
}
|
|
53
|
+
export declare class GlbParseError extends Error {
|
|
54
|
+
}
|
|
55
|
+
/** Parse a `.glb` buffer into a verification summary. Throws GlbParseError on malformed input. */
|
|
56
|
+
export declare function summarizeGlb(buf: Buffer): GlbSummary;
|
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Dependency-free GLB (binary glTF 2.0) summariser.
|
|
4
|
+
*
|
|
5
|
+
* Parses only the JSON chunk (and minimal image headers from the BIN chunk) to
|
|
6
|
+
* extract the facts asset verification needs: triangle count, skeleton bone
|
|
7
|
+
* names, embedded animations, and texture dimensions. Avoids pulling a heavy
|
|
8
|
+
* glTF runtime into consumers and works the same for avatars and static meshes.
|
|
9
|
+
*
|
|
10
|
+
* CANONICAL COPY. Extracted here (`@hypersoniclabs/helix-cli/glb`) from
|
|
11
|
+
* helix-backend-api, which — like universal-item-validator-worker — now
|
|
12
|
+
* imports this module instead of carrying a verbatim copy; both copies had
|
|
13
|
+
* silently carried the same WebP + Draco parsing bugs because nothing compared
|
|
14
|
+
* them. Fix bugs HERE, bump the version, and update the consumers' lockfiles.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.GlbParseError = void 0;
|
|
18
|
+
exports.summarizeGlb = summarizeGlb;
|
|
19
|
+
const GLB_MAGIC = 0x46546c67; // "glTF"
|
|
20
|
+
const CHUNK_JSON = 0x4e4f534a; // "JSON"
|
|
21
|
+
const CHUNK_BIN = 0x004e4942; // "BIN\0"
|
|
22
|
+
function mat4Identity() {
|
|
23
|
+
return [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1];
|
|
24
|
+
}
|
|
25
|
+
function mat4Multiply(a, b) {
|
|
26
|
+
const r = new Array(16).fill(0);
|
|
27
|
+
for (let i = 0; i < 4; i++) {
|
|
28
|
+
for (let j = 0; j < 4; j++) {
|
|
29
|
+
let s = 0;
|
|
30
|
+
for (let k = 0; k < 4; k++)
|
|
31
|
+
s += a[i * 4 + k] * b[k * 4 + j];
|
|
32
|
+
r[i * 4 + j] = s;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return r;
|
|
36
|
+
}
|
|
37
|
+
/** Compose a node's local transform. glTF `matrix` is column-major; TRS otherwise. */
|
|
38
|
+
function nodeLocalMatrix(node) {
|
|
39
|
+
if (node.matrix && node.matrix.length === 16) {
|
|
40
|
+
const m = node.matrix; // column-major -> row-major transpose
|
|
41
|
+
return [
|
|
42
|
+
m[0], m[4], m[8], m[12],
|
|
43
|
+
m[1], m[5], m[9], m[13],
|
|
44
|
+
m[2], m[6], m[10], m[14],
|
|
45
|
+
m[3], m[7], m[11], m[15],
|
|
46
|
+
];
|
|
47
|
+
}
|
|
48
|
+
const [tx, ty, tz] = node.translation ?? [0, 0, 0];
|
|
49
|
+
const [x, y, z, w] = node.rotation ?? [0, 0, 0, 1];
|
|
50
|
+
const [sx, sy, sz] = node.scale ?? [1, 1, 1];
|
|
51
|
+
const R = [
|
|
52
|
+
1 - 2 * (y * y + z * z), 2 * (x * y - z * w), 2 * (x * z + y * w), 0,
|
|
53
|
+
2 * (x * y + z * w), 1 - 2 * (x * x + z * z), 2 * (y * z - x * w), 0,
|
|
54
|
+
2 * (x * z - y * w), 2 * (y * z + x * w), 1 - 2 * (x * x + y * y), 0,
|
|
55
|
+
0, 0, 0, 1,
|
|
56
|
+
];
|
|
57
|
+
const S = [sx, 0, 0, 0, 0, sy, 0, 0, 0, 0, sz, 0, 0, 0, 0, 1];
|
|
58
|
+
const T = [1, 0, 0, tx, 0, 1, 0, ty, 0, 0, 1, tz, 0, 0, 0, 1];
|
|
59
|
+
return mat4Multiply(mat4Multiply(T, R), S);
|
|
60
|
+
}
|
|
61
|
+
function transformPoint(m, p) {
|
|
62
|
+
return [
|
|
63
|
+
m[0] * p[0] + m[1] * p[1] + m[2] * p[2] + m[3],
|
|
64
|
+
m[4] * p[0] + m[5] * p[1] + m[6] * p[2] + m[7],
|
|
65
|
+
m[8] * p[0] + m[9] * p[1] + m[10] * p[2] + m[11],
|
|
66
|
+
];
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* World-space AABB from POSITION accessor min/max (present per the glTF spec even
|
|
70
|
+
* when geometry is Draco-compressed), transformed through each node's world
|
|
71
|
+
* matrix. Handles nested nodes; returns null if no usable bounds are found.
|
|
72
|
+
*/
|
|
73
|
+
function computeBoundingBox(gltf) {
|
|
74
|
+
const nodes = gltf.nodes ?? [];
|
|
75
|
+
const meshes = gltf.meshes ?? [];
|
|
76
|
+
const accessors = gltf.accessors ?? [];
|
|
77
|
+
const min = [Infinity, Infinity, Infinity];
|
|
78
|
+
const max = [-Infinity, -Infinity, -Infinity];
|
|
79
|
+
let found = false;
|
|
80
|
+
const roots = gltf.scenes?.[gltf.scene ?? 0]?.nodes ?? nodes.map((_, i) => i);
|
|
81
|
+
const seen = new Set();
|
|
82
|
+
const walk = (idx, parent) => {
|
|
83
|
+
if (seen.has(idx))
|
|
84
|
+
return; // guard against malformed cyclic graphs
|
|
85
|
+
seen.add(idx);
|
|
86
|
+
const node = nodes[idx];
|
|
87
|
+
if (!node)
|
|
88
|
+
return;
|
|
89
|
+
const world = mat4Multiply(parent, nodeLocalMatrix(node));
|
|
90
|
+
if (node.mesh != null) {
|
|
91
|
+
for (const prim of meshes[node.mesh]?.primitives ?? []) {
|
|
92
|
+
const posIdx = prim.attributes?.POSITION;
|
|
93
|
+
if (posIdx == null)
|
|
94
|
+
continue;
|
|
95
|
+
const acc = accessors[posIdx];
|
|
96
|
+
if (!acc?.min || !acc?.max || acc.min.length < 3)
|
|
97
|
+
continue;
|
|
98
|
+
const lo = acc.min;
|
|
99
|
+
const hi = acc.max;
|
|
100
|
+
for (const cx of [lo[0], hi[0]]) {
|
|
101
|
+
for (const cy of [lo[1], hi[1]]) {
|
|
102
|
+
for (const cz of [lo[2], hi[2]]) {
|
|
103
|
+
const w = transformPoint(world, [cx, cy, cz]);
|
|
104
|
+
for (let i = 0; i < 3; i++) {
|
|
105
|
+
if (w[i] < min[i])
|
|
106
|
+
min[i] = w[i];
|
|
107
|
+
if (w[i] > max[i])
|
|
108
|
+
max[i] = w[i];
|
|
109
|
+
}
|
|
110
|
+
found = true;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
for (const c of node.children ?? [])
|
|
117
|
+
walk(c, world);
|
|
118
|
+
};
|
|
119
|
+
for (const r of roots)
|
|
120
|
+
walk(r, mat4Identity());
|
|
121
|
+
if (!found)
|
|
122
|
+
return null;
|
|
123
|
+
const round = (v) => Math.round(v * 1e4) / 1e4;
|
|
124
|
+
return {
|
|
125
|
+
min: min.map(round),
|
|
126
|
+
max: max.map(round),
|
|
127
|
+
sizeMeters: [
|
|
128
|
+
round(max[0] - min[0]),
|
|
129
|
+
round(max[1] - min[1]),
|
|
130
|
+
round(max[2] - min[2]),
|
|
131
|
+
],
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
class GlbParseError extends Error {
|
|
135
|
+
}
|
|
136
|
+
exports.GlbParseError = GlbParseError;
|
|
137
|
+
function readImageSize(bytes) {
|
|
138
|
+
// KTX2 (KHR_texture_basisu — canonical `helix character import` output):
|
|
139
|
+
// 12-byte identifier «KTX 20»\r\n\x1A\n, then vkFormat(u32) typeSize(u32)
|
|
140
|
+
// pixelWidth(u32) pixelHeight(u32), all little-endian. Without this probe a
|
|
141
|
+
// KTX2 texture reads 0×0/'unknown' and silently bypasses the texture-edge
|
|
142
|
+
// limit.
|
|
143
|
+
if (bytes.length >= 28 &&
|
|
144
|
+
bytes[0] === 0xab &&
|
|
145
|
+
bytes[1] === 0x4b &&
|
|
146
|
+
bytes[2] === 0x54 &&
|
|
147
|
+
bytes[3] === 0x58 &&
|
|
148
|
+
bytes[4] === 0x20 &&
|
|
149
|
+
bytes[5] === 0x32 &&
|
|
150
|
+
bytes[6] === 0x30 &&
|
|
151
|
+
bytes[7] === 0xbb) {
|
|
152
|
+
return {
|
|
153
|
+
width: bytes.readUInt32LE(20),
|
|
154
|
+
height: bytes.readUInt32LE(24),
|
|
155
|
+
format: 'ktx2',
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
// PNG: 8-byte signature, then IHDR with width/height as big-endian uint32.
|
|
159
|
+
if (bytes.length >= 24 &&
|
|
160
|
+
bytes[0] === 0x89 &&
|
|
161
|
+
bytes[1] === 0x50 &&
|
|
162
|
+
bytes[2] === 0x4e &&
|
|
163
|
+
bytes[3] === 0x47) {
|
|
164
|
+
return {
|
|
165
|
+
width: bytes.readUInt32BE(16),
|
|
166
|
+
height: bytes.readUInt32BE(20),
|
|
167
|
+
format: 'png',
|
|
168
|
+
};
|
|
169
|
+
}
|
|
170
|
+
// JPEG: scan for a Start-Of-Frame marker (0xFFC0..0xFFCF, excluding DHT/JPG/DAC/RST).
|
|
171
|
+
if (bytes.length >= 4 && bytes[0] === 0xff && bytes[1] === 0xd8) {
|
|
172
|
+
let o = 2;
|
|
173
|
+
while (o + 9 < bytes.length) {
|
|
174
|
+
if (bytes[o] !== 0xff) {
|
|
175
|
+
o++;
|
|
176
|
+
continue;
|
|
177
|
+
}
|
|
178
|
+
const marker = bytes[o + 1];
|
|
179
|
+
const isSof = marker >= 0xc0 &&
|
|
180
|
+
marker <= 0xcf &&
|
|
181
|
+
marker !== 0xc4 &&
|
|
182
|
+
marker !== 0xc8 &&
|
|
183
|
+
marker !== 0xcc;
|
|
184
|
+
if (isSof) {
|
|
185
|
+
return {
|
|
186
|
+
height: bytes.readUInt16BE(o + 5),
|
|
187
|
+
width: bytes.readUInt16BE(o + 7),
|
|
188
|
+
format: 'jpeg',
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
if (o + 3 >= bytes.length)
|
|
192
|
+
break;
|
|
193
|
+
o += 2 + bytes.readUInt16BE(o + 2);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
// WebP (EXT_texture_webp). Container is RIFF: "RIFF" <u32 size> "WEBP" then a
|
|
197
|
+
// fourCC naming the codec. Every Pacifica GLB in the live catalogue is WebP,
|
|
198
|
+
// so without this probe `maxTextureEdge` is 0 for the whole catalogue — the
|
|
199
|
+
// texture-edge limit never fires and texture memory is unknowable.
|
|
200
|
+
if (bytes.length >= 30 &&
|
|
201
|
+
bytes.toString('ascii', 0, 4) === 'RIFF' &&
|
|
202
|
+
bytes.toString('ascii', 8, 12) === 'WEBP') {
|
|
203
|
+
const fourcc = bytes.toString('ascii', 12, 16);
|
|
204
|
+
if (fourcc === 'VP8 ') {
|
|
205
|
+
// Lossy. Chunk payload starts at 20: a 3-byte frame tag, then the 3-byte
|
|
206
|
+
// start code 0x9d 0x01 0x2a, then 14-bit width and 14-bit height (LE).
|
|
207
|
+
const o = 20 + 3 + 3;
|
|
208
|
+
if (bytes.length > o + 4) {
|
|
209
|
+
return {
|
|
210
|
+
width: bytes.readUInt16LE(o) & 0x3fff,
|
|
211
|
+
height: bytes.readUInt16LE(o + 2) & 0x3fff,
|
|
212
|
+
format: 'webp',
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
else if (fourcc === 'VP8L') {
|
|
217
|
+
// Lossless. Signature byte 0x2f at 20, then 14 bits (width-1) and
|
|
218
|
+
// 14 bits (height-1) packed little-endian.
|
|
219
|
+
const b = bytes.readUInt32LE(21);
|
|
220
|
+
return {
|
|
221
|
+
width: (b & 0x3fff) + 1,
|
|
222
|
+
height: ((b >> 14) & 0x3fff) + 1,
|
|
223
|
+
format: 'webp',
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
else if (fourcc === 'VP8X') {
|
|
227
|
+
// Extended. 4 bytes of flags at 20, then canvas (width-1) and
|
|
228
|
+
// (height-1) as 24-bit little-endian.
|
|
229
|
+
const o = 24;
|
|
230
|
+
const w = bytes[o] | (bytes[o + 1] << 8) | (bytes[o + 2] << 16);
|
|
231
|
+
const h = bytes[o + 3] | (bytes[o + 4] << 8) | (bytes[o + 5] << 16);
|
|
232
|
+
return { width: w + 1, height: h + 1, format: 'webp' };
|
|
233
|
+
}
|
|
234
|
+
return { width: 0, height: 0, format: 'webp' };
|
|
235
|
+
}
|
|
236
|
+
return { width: 0, height: 0, format: 'unknown' };
|
|
237
|
+
}
|
|
238
|
+
/** Parse a `.glb` buffer into a verification summary. Throws GlbParseError on malformed input. */
|
|
239
|
+
function summarizeGlb(buf) {
|
|
240
|
+
if (buf.length < 12 || buf.readUInt32LE(0) !== GLB_MAGIC) {
|
|
241
|
+
throw new GlbParseError('File is not a binary glTF (.glb). Export your model as GLB (glTF binary).');
|
|
242
|
+
}
|
|
243
|
+
const glbVersion = buf.readUInt32LE(4);
|
|
244
|
+
let gltf = null;
|
|
245
|
+
let bin = null;
|
|
246
|
+
let off = 12;
|
|
247
|
+
while (off + 8 <= buf.length) {
|
|
248
|
+
const len = buf.readUInt32LE(off);
|
|
249
|
+
const type = buf.readUInt32LE(off + 4);
|
|
250
|
+
const start = off + 8;
|
|
251
|
+
const end = start + len;
|
|
252
|
+
if (end > buf.length)
|
|
253
|
+
break;
|
|
254
|
+
const data = buf.subarray(start, end);
|
|
255
|
+
if (type === CHUNK_JSON) {
|
|
256
|
+
try {
|
|
257
|
+
gltf = JSON.parse(data.toString('utf8'));
|
|
258
|
+
}
|
|
259
|
+
catch {
|
|
260
|
+
throw new GlbParseError('GLB JSON chunk is corrupt or unreadable.');
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
else if (type === CHUNK_BIN) {
|
|
264
|
+
bin = data;
|
|
265
|
+
}
|
|
266
|
+
off = end;
|
|
267
|
+
}
|
|
268
|
+
if (!gltf)
|
|
269
|
+
throw new GlbParseError('GLB is missing its JSON chunk.');
|
|
270
|
+
const nodes = gltf.nodes ?? [];
|
|
271
|
+
const accessors = gltf.accessors ?? [];
|
|
272
|
+
const boneNames = [];
|
|
273
|
+
const seenBones = new Set();
|
|
274
|
+
for (const skin of gltf.skins ?? []) {
|
|
275
|
+
for (const j of skin.joints ?? []) {
|
|
276
|
+
if (seenBones.has(j))
|
|
277
|
+
continue;
|
|
278
|
+
seenBones.add(j);
|
|
279
|
+
boneNames.push(nodes[j]?.name ?? `node_${j}`);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
let triangleCount = 0;
|
|
283
|
+
for (const mesh of gltf.meshes ?? []) {
|
|
284
|
+
for (const prim of mesh.primitives ?? []) {
|
|
285
|
+
const mode = prim.mode ?? 4; // 4 = TRIANGLES (default)
|
|
286
|
+
if (mode !== 4)
|
|
287
|
+
continue;
|
|
288
|
+
const accessorIndex = prim.indices != null ? prim.indices : prim.attributes?.POSITION;
|
|
289
|
+
if (accessorIndex == null)
|
|
290
|
+
continue;
|
|
291
|
+
const count = accessors[accessorIndex]?.count ?? 0;
|
|
292
|
+
triangleCount += Math.floor(count / 3);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
const textures = [];
|
|
296
|
+
for (const img of gltf.images ?? []) {
|
|
297
|
+
if (img.bufferView != null && bin) {
|
|
298
|
+
const bv = gltf.bufferViews?.[img.bufferView];
|
|
299
|
+
if (!bv)
|
|
300
|
+
continue;
|
|
301
|
+
const s = bv.byteOffset ?? 0;
|
|
302
|
+
const bytes = bin.subarray(s, s + (bv.byteLength ?? 0));
|
|
303
|
+
const dim = readImageSize(bytes);
|
|
304
|
+
textures.push({
|
|
305
|
+
...dim,
|
|
306
|
+
byteLength: bv.byteLength ?? 0,
|
|
307
|
+
mimeType: img.mimeType,
|
|
308
|
+
});
|
|
309
|
+
}
|
|
310
|
+
else if (img.uri && !img.uri.startsWith('data:')) {
|
|
311
|
+
// External texture reference — dimensions unknown without the sidecar file.
|
|
312
|
+
textures.push({ width: 0, height: 0, format: 'unknown', byteLength: 0 });
|
|
313
|
+
}
|
|
314
|
+
else if (img.uri?.startsWith('data:')) {
|
|
315
|
+
const b64 = img.uri.slice(img.uri.indexOf(',') + 1);
|
|
316
|
+
const bytes = Buffer.from(b64, 'base64');
|
|
317
|
+
const dim = readImageSize(bytes);
|
|
318
|
+
textures.push({
|
|
319
|
+
...dim,
|
|
320
|
+
byteLength: bytes.length,
|
|
321
|
+
mimeType: img.mimeType,
|
|
322
|
+
});
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
const maxTextureEdge = textures.reduce((m, t) => Math.max(m, t.width, t.height), 0);
|
|
326
|
+
return {
|
|
327
|
+
sizeBytes: buf.length,
|
|
328
|
+
glbVersion,
|
|
329
|
+
meshCount: (gltf.meshes ?? []).length,
|
|
330
|
+
triangleCount,
|
|
331
|
+
skinCount: (gltf.skins ?? []).length,
|
|
332
|
+
boneNames,
|
|
333
|
+
animationNames: (gltf.animations ?? []).map((a, i) => a.name ?? `clip_${i}`),
|
|
334
|
+
materialCount: (gltf.materials ?? []).length,
|
|
335
|
+
textures,
|
|
336
|
+
maxTextureEdge,
|
|
337
|
+
boundingBox: computeBoundingBox(gltf),
|
|
338
|
+
};
|
|
339
|
+
}
|
|
340
|
+
//# sourceMappingURL=glb-summary.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"glb-summary.js","sourceRoot":"","sources":["../../src/glb/glb-summary.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `@hypersoniclabs/helix-cli/glb` — shared GLB pipeline modules.
|
|
3
|
+
*
|
|
4
|
+
* The extraction target for the parser/optimizer code that was duplicated
|
|
5
|
+
* verbatim between helix-backend-api and universal-item-validator-worker
|
|
6
|
+
* (plan: helix-backend-api PR #726). `glb-summary` moved first — it is pure
|
|
7
|
+
* and dependency-free. `asset-verification` and `optimize-glb` follow once
|
|
8
|
+
* their host config/logger coupling is inverted into injected arguments.
|
|
9
|
+
*/
|
|
10
|
+
export { GlbParseError, summarizeGlb, type GlbBoundingBox, type GlbSummary, type GlbTextureInfo, } from './glb-summary';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.summarizeGlb = exports.GlbParseError = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* `@hypersoniclabs/helix-cli/glb` — shared GLB pipeline modules.
|
|
6
|
+
*
|
|
7
|
+
* The extraction target for the parser/optimizer code that was duplicated
|
|
8
|
+
* verbatim between helix-backend-api and universal-item-validator-worker
|
|
9
|
+
* (plan: helix-backend-api PR #726). `glb-summary` moved first — it is pure
|
|
10
|
+
* and dependency-free. `asset-verification` and `optimize-glb` follow once
|
|
11
|
+
* their host config/logger coupling is inverted into injected arguments.
|
|
12
|
+
*/
|
|
13
|
+
var glb_summary_1 = require("./glb-summary");
|
|
14
|
+
Object.defineProperty(exports, "GlbParseError", { enumerable: true, get: function () { return glb_summary_1.GlbParseError; } });
|
|
15
|
+
Object.defineProperty(exports, "summarizeGlb", { enumerable: true, get: function () { return glb_summary_1.summarizeGlb; } });
|
|
16
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/glb/index.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;GAQG;AACH,6CAMuB;AALrB,4GAAA,aAAa,OAAA;AACb,2GAAA,YAAY,OAAA"}
|
package/dist/resolve.js
CHANGED
|
@@ -48,10 +48,31 @@ async function resolveOne(deps, kind, slug, range) {
|
|
|
48
48
|
if (kind === 'ability') {
|
|
49
49
|
return { kind, slug, range, version, codeUrl: detail.codeBaseUrl, codeFiles, assetBaseUrl: detail.assetBaseUrl };
|
|
50
50
|
}
|
|
51
|
-
// A system ships code only; its assets come from a separate asset-pack
|
|
52
|
-
//
|
|
53
|
-
|
|
54
|
-
const
|
|
51
|
+
// A system ships code only; its assets come from a separate asset-pack. A DECLARED envelope
|
|
52
|
+
// assetPack must resolve (fail loudly). Undeclared, we probe the legacy <slug>-assets convention
|
|
53
|
+
// but treat a missing pack as an asset-free system (e.g. engine-core) rather than an error.
|
|
54
|
+
const declared = detail.manifest.assetPack;
|
|
55
|
+
const pin = declared ?? { slug: `${slug}-assets`, range: 'latest' };
|
|
56
|
+
let apVersion;
|
|
57
|
+
try {
|
|
58
|
+
apVersion = await resolveVersion(deps, pin.slug, pin.range);
|
|
59
|
+
}
|
|
60
|
+
catch (err) {
|
|
61
|
+
const missingPack = err instanceof Error && /no (package|active version)/.test(err.message);
|
|
62
|
+
if (!declared && missingPack) {
|
|
63
|
+
return {
|
|
64
|
+
kind,
|
|
65
|
+
slug,
|
|
66
|
+
range,
|
|
67
|
+
version,
|
|
68
|
+
codeUrl: detail.codeBaseUrl,
|
|
69
|
+
codeFiles,
|
|
70
|
+
assetBaseUrl: null,
|
|
71
|
+
...(typeof detail.manifest.three === 'string' ? { three: detail.manifest.three } : {}),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
throw err;
|
|
75
|
+
}
|
|
55
76
|
const apDetail = await deps.getVersion(pin.slug, apVersion);
|
|
56
77
|
if (!apDetail.assetBaseUrl)
|
|
57
78
|
throw new Error(`asset-pack "${pin.slug}@${apVersion}" has no asset base URL`);
|
package/dist/resolve.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolve.js","sourceRoot":"","sources":["../src/resolve.ts"],"names":[],"mappings":";;AAuDA,8CAQC;
|
|
1
|
+
{"version":3,"file":"resolve.js","sourceRoot":"","sources":["../src/resolve.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/ability.ts","../src/browserLogin.ts","../src/config.ts","../src/api.ts","../node_modules/@hypersoniclabs/helix-manifest/dist/src/bundle-rules.d.ts","../node_modules/@hypersoniclabs/helix-manifest/dist/src/index.d.ts","../src/bundle.ts","../src/resolve.ts","../src/install.ts","../src/currency.ts","../node_modules/commander/typings/index.d.ts","../src/package.ts","../src/init.ts","../src/initAbility.ts","../node_modules/property-graph/dist/index.d.mts","../node_modules/@gltf-transform/core/dist/index.d.ts","../node_modules/@gltf-transform/extensions/dist/index.d.ts","../node_modules/@gltf-transform/functions/dist/index.d.ts","../src/character/esm.ts","../src/character/stages/retarget.ts","../src/character/meshyToHelixMap.ts","../src/character/mat4.ts","../src/character/stages/conform.ts","../src/character/canonicalSkeletonData.ts","../src/character/canonicalSkeleton.ts","../src/character/quat.ts","../src/character/stages/retargetClip.ts","../node_modules/meshoptimizer/meshopt_encoder.module.d.ts","../node_modules/meshoptimizer/meshopt_decoder.module.d.ts","../node_modules/meshoptimizer/meshopt_simplifier.module.d.ts","../node_modules/meshoptimizer/meshopt_clusterizer.module.d.ts","../node_modules/meshoptimizer/index.module.d.ts","../src/character/stages/report.ts","../src/character/stages/simplifyMesh.ts","../src/character/stages/weldedSimplify.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@img/colour/index.d.ts","../node_modules/sharp/dist/index.d.mts","../src/character/stages/bakeTexture.ts","../src/character/stages/splitFacePrimitive.ts","../src/character/stages/mergeLods.ts","../src/character/stages/resizeTextures.ts","../src/character/stages/ktx2.ts","../src/character/importCharacter.ts","../node_modules/playwright-core/types/protocol.d.ts","../node_modules/playwright-core/types/structs.d.ts","../node_modules/playwright-core/types/types.d.ts","../node_modules/playwright/index.d.ts","../src/screenshot/staticServe.ts","../src/screenshot/captureScreenshots.ts","../src/screenshot/encodeImagePreview.ts","../src/lib.ts","../src/prompt.ts","../src/index.ts","../src/character/testutil/syntheticRig.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/ndarray/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[102,151,168,169,221],[102,151,168,169],[76,102,151,168,169],[77,102,151,168,169],[66,102,151,168,169],[102,151,168,169,233],[102,151,168,169,221,222,223,224,225],[102,151,168,169,221,223],[102,151,163,168,169,201],[102,151,168,169,228],[102,151,168,169,229],[102,151,168,169,235,238],[102,148,149,151,168,169],[102,150,151,168,169],[151,168,169],[102,151,156,168,169,186],[102,151,152,157,162,168,169,171,183,194],[102,151,152,153,162,168,169,171],[97,98,99,102,151,168,169],[102,151,154,168,169,195],[102,151,155,156,163,168,169,172],[102,151,156,168,169,183,191],[102,151,157,159,162,168,169,171],[102,150,151,158,168,169],[102,151,159,160,168,169],[102,151,161,162,168,169],[102,150,151,162,168,169],[102,151,162,163,164,168,169,183,194],[102,151,162,163,164,168,169,178,183,186],[102,143,151,159,162,165,168,169,171,183,194],[102,151,162,163,165,166,168,169,171,183,191,194],[102,151,165,167,168,169,183,191,194],[100,101,102,103,104,105,106,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[102,151,162,168,169],[102,151,168,169,170,194],[102,151,159,162,168,169,171,183],[102,151,168,169,172],[102,151,168,169,173],[102,150,151,168,169,174],[102,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[102,151,168,169,176],[102,151,168,169,177],[102,151,162,168,169,178,179],[102,151,168,169,178,180,195,197],[102,151,163,168,169],[102,151,162,168,169,183,184,186],[102,151,168,169,185,186],[102,151,168,169,183,184],[102,151,168,169,186],[102,151,168,169,187],[102,148,151,168,169,183,188,194],[102,151,162,168,169,189,190],[102,151,168,169,189,190],[102,151,156,168,169,171,183,191],[102,151,168,169,192],[102,151,168,169,171,193],[102,151,165,168,169,177,194],[102,151,156,168,169,195],[102,151,168,169,183,196],[102,151,168,169,170,197],[102,151,168,169,198],[102,143,151,168,169],[102,143,151,162,164,168,169,174,183,186,194,196,197,199],[102,151,168,169,183,200],[102,151,168,169,242],[102,151,168,169,231,237],[102,151,168,169,235],[102,151,168,169,232,236],[89,90,91,92,102,151,168,169],[102,151,168,169,212],[102,151,152,163,168,169,183,210,211],[102,151,168,169,234],[102,151,168,169,183,201,202],[102,115,119,151,168,169,194],[102,115,151,168,169,183,194],[102,110,151,168,169],[102,112,115,151,168,169,191,194],[102,151,168,169,171,191],[102,151,168,169,201],[102,110,151,168,169,201],[102,112,115,151,168,169,171,194],[102,107,108,111,114,151,162,168,169,183,194],[102,115,122,151,168,169],[102,107,113,151,168,169],[102,115,136,137,151,168,169],[102,111,115,151,168,169,186,194,201],[102,136,151,168,169,201],[102,109,110,151,168,169,201],[102,115,151,168,169],[102,109,110,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,151,168,169],[102,115,130,151,168,169],[102,115,122,123,151,168,169],[102,113,115,123,124,151,168,169],[102,114,151,168,169],[102,107,110,115,151,168,169],[102,115,119,123,124,151,168,169],[102,119,151,168,169],[102,113,115,118,151,168,169,194],[102,107,112,115,122,151,168,169],[102,151,168,169,183],[102,110,115,136,151,168,169,199,201],[102,151,163,168,169,173,194],[64,102,151,168,169],[102,151,152,156,165,168,169,172],[67,102,151,163,168,169,173],[83,84,85,102,151,168,169],[84,102,151,168,169],[70,77,78,79,80,81,82,84,86,88,95,96,102,151,163,168,169,173,204,205,206,207,208],[81,102,151,168,169],[77,102,151,168,169,203],[77,81,83,102,151,168,169],[77,78,80,102,151,168,169,203],[77,79,102,151,168,169],[77,81,83,84,87,102,151,168,169],[77,79,93,94,102,151,168,169],[77,93,94,102,151,168,169],[63,102,151,163,168,169,172,173],[64,69,70,102,151,163,168,169,173],[62,63,64,68,72,74,75,102,151,152,168,169,173,209,215,217,218],[102,151,163,168,169,173],[62,69,102,151,163,168,169,173],[62,63,64,65,68,69,70,71,73,74,75,102,151,163,168,169,173,209,215,216],[62,67,68,102,151,163,168,169,173],[102,151,168,169,178],[62,65,102,151,168,169],[102,151,163,168,169,173,213,214],[102,151,168,169,203],[102,151,163,165,168,169,173]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","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":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2437bece04916fe88b488009d0fd8561a7cd1f32bda35e97da216678ba5710","signature":"5ea8beea2e39335560cd6fad84d4fb4acdabd11000d661beedda0ce0accc9f44"},{"version":"1c8a1d4bfe8ecef358440816a44f92f09b7a78a1638364c34e278ec2798f2859","signature":"c40926f0d5b1f4fca0f9e737a3191738fdc262ff6f49e29454e674f5b0d52ef2"},{"version":"5ed0427f79719c73c325dba9c19fa7cb3023f5ba703dad718a8368b419016f76","signature":"c3c5a949fa6b2f1ea3cee826734f0c1ba9df018cb326cddefcc4376a720c36ff"},{"version":"be98d9fb57914b48221fff30ebb6d46de9020161bb98a622e4a25d3ebf246ae8","signature":"127bcd34d90153bf5e6303969a97947f8e066495c287faaf86acc21813c779fd"},{"version":"23b11f36c8e7539e2470b3d0499e56c758fed3e53b71a66d115a3c62c37e2814","impliedFormat":1},{"version":"48f2d54bcba6efd91028157761bee27c01e1e441c24248f769f0bdfb80f75b7d","impliedFormat":1},{"version":"f860ae15539907d15045278bb812a6eda98f4667852e103126d98bc138b73a5d","signature":"47fe05b92a10e2425a55e292965d0c248376bf30dbb8c29206acb4fca71505c3"},{"version":"48b4b305942952b085d46203ccd51f5f81544616b73837435a51892119e29708","signature":"be33cde402ed650a47fb24fb94d2854b7c86beb8848cf652f47ffcc2cbe0851d"},{"version":"29919598ee21ae0fd08e5b68a1b523031ae711b3f1d49f2b0039472d90594b53","signature":"67142602dfd617c7447a85d9590124edaa0895f77e9d263c2aa6b179fce5e274"},{"version":"9fd502d8ce0bc8a8e3dcb641bf464454c3905d495ebe5bf0fb6bc1470172c5d2","signature":"491cb3ee3fe034ab52be1da9d14f14d07b5cb51950a4d97cd4e92f0e9873b1c9"},{"version":"f70c407d79749859db326d714554c92b6f46bbf00bfdb40a1e2e6f705baa52a0","impliedFormat":1},{"version":"ca64187e1f4759d9442efb5ba20cd16b1340c330ecbc670e4009b2102c2fca75","signature":"88ce01585ac462662d169969b5ee06c136098d601e59631bbeea80fe92648214"},{"version":"4b3308f892327a534bf665ed083dc38ec0770dc397d922579f67c0d3160bd5cd","signature":"b1870514be1c5b6f2d6da24c33747e4a0373265dd4992933058efe38edf1257b"},{"version":"db228389880f9726184f66ca131699c86f25aa65040548c1ffcf7fe29ba1e11a","signature":"7d6d331e6f34d1ace488a40726334280868b0e2d1935b63ecc906508fd1f47fd"},{"version":"96558c6f8d70f7cdbea00aaa2becb19cc07182745780289c04b0bdd06400c969","impliedFormat":99},{"version":"fd36fe872f70871c59737fcb467ad4b81219ca80271fe6789c981055b9b9a4ac","impliedFormat":99},{"version":"0b5027f5e63f0b805339afb16d5c003c431a8772e05f69be95cf718842459dd0","impliedFormat":99},{"version":"a35eb61e7afa6a03a549550449bb70167f670aa2c89330df4c4c614e11b5dd28","impliedFormat":99},{"version":"0a4d5baa8c31b10a6312b5f2236974c5a5a9080c78e55c717c5b4464a4cade6f","signature":"607f51a09f7f2814a3190e3ce4925412df3fd3c04ea6f24cd38e31c1dc247230"},{"version":"bf6ac1e91dc26150f05880bae27c638096ecef38e26426cac8e69237d65a39a6","signature":"5b8c37801a1b7cf26732df9b5de9da68ffe0783b90145fad875e188ceec7fb3b"},{"version":"75e9a2d7b7aaf185ed62b7d28716c2674be641dfa4a107497c3bcd3a3ec79ad6","signature":"f6cdd3e03d077667878f0290ddef5f9cbb8d527a61b543d22209abffbfd8ac98"},{"version":"be3c2142a79a886df8c1c3dd48a1f66c8c14309dacd921a87141b07fa598a34f","signature":"4e732919485f14f5b535ac143afec46a7b743e0a66fe17e01e832951fc7e90c5"},{"version":"e07410ba989d3fd4a91bac8876fe2f6fd71b3c970dbd62256a3b0716fcc7e980","signature":"68fd3c12c49c6d224dad361ec7233098fcba414381d6f2ba2848ade38a6e1446"},{"version":"316d09529047c6aa60f903b27260a17aa31336592ac940198e18b5a4480b46a3","signature":"d15ca267f28600f08ffd3084b2849d1244c6bf4425cd49cdaf44b3b81ab11c8d"},{"version":"1841a02338aea29bca60697d18ea440c9cc33e1676e2574da04ae3ac7cfcb2e3","signature":"0f02c48673d073bee0e3677cb3cf74b2bc5b4585149b4aa0e05fe7c07011e8bb"},{"version":"38fe48c36df22cbd086354db1904bf4e251d825de12fdfa9770fd1b83b60f1e1","signature":"df5105fb3946e047064d35956b5f71eda1ef0841af7f820493b0f032f001090b"},{"version":"a98b7f3439ef3868bc74600cbb084e2cc6bb47c375504d50cd76db41b0e4146d","signature":"37ca1efeacc278f1560d5db83ae5933bc9e8a978b1490da54b5b65089ebdc61a"},{"version":"b04ae28a9977d5183d0194d5a6dd2e7d8355597abd5f347d75bbafa0bdd5dcee","impliedFormat":1},{"version":"eee89e0f13f68b77c2bff15ce52af6c7a5d2933553b51137c41ee2413be19195","impliedFormat":1},{"version":"75bc949852198465c5162d332654e0c4c8083e884160ae51587ed9dc68e2e21d","impliedFormat":1},{"version":"1ff3e381be92fdb298c9f0feef086b87c9bdd4f121b5a80b1ce54dc3b3e5fcce","impliedFormat":1},{"version":"1f8808db763a93dd40822b75adacd0934fb3234fde4b6addfa89fddff6751850","impliedFormat":1},{"version":"bc5fb71df6412e7d7193dcb7b4b1ec5ee7503e9aef6fa6e4d456e90db1536f87","signature":"a453974294bde869ba1f305de9a51313c69becc9d4a28803b8ed30e602d2c009"},{"version":"6d2b61f9e8e1096c8e251b590ad930200e19946484b170e5d02856f762cbd4c3","signature":"f251e41a0f097790ca0498c29d9a90c1a911edb79761ae681adc82ede574799b"},{"version":"43892ada3fcf01458be0b9991d81224b235946ffebd243632d1b908807a9448a","signature":"652df75b88ddcb7df156489043bb4cba7f7d72b4d23f013ded7a44f4d1eebe7e"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"78dbea00e90d2df8ea3dbef0cc379d95b8be9b71cd6bde4c28728f306811803b","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e1e46d0a9837ee058c100501080c920fa98081ea3956af0374308ba6f22a33e","impliedFormat":1},{"version":"272ca407e0c9068bdc5152552d876e68037ceae3de62e529306403e973dec8e1","impliedFormat":1},{"version":"fa7834c715d5357e4540cee40ce96c3250ddb67a7b879a6b7fa0e86d6696f121","impliedFormat":1},{"version":"22dfb07a7ab15b66ac043829056fe70124844636ae719551812ac631ba04985b","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"0cb167c371eaa8c869f8a7656a7296f2e4fae43b4d8b803a680236b24794e5f9","impliedFormat":1},{"version":"0a839dba0287cc0481ad4beedd48a1c64acf1e212ae865d1315f7007ca215161","impliedFormat":1},{"version":"38dc4655376cd1a4bd6bb3763d92949233e33d38d3dd3cbea7bbf218175a38ef","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"d61e0a64cd175208ac0b83670151a9a6b5916f0d1ffcdc5c29c90b1cebfc5045","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"48a679952eefe4cb776d5a0e1ccba2d3eb53b57448bbb7abc1fcebcbd5440188","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2d14da6ecb49bf828d83948765ec2d3a579d476bbb9645e749610baa6ec880ca","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"0aef708fb4c7a6b915e8305cbfac40cd207b032dbaabe9a01889a5fff3254681","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"ad9bdafb4e7abf14cc53ce7970486a84c87831e62891e5dfe798ddcd55e84701","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"71d3ae6a5e73ca4130762560425e00984ebaff64d5353a3333d1bb7eb86ef336","impliedFormat":1},{"version":"2467b00d963828f540f4acd7910f4c04cfe4b489550e6bb682212f65583bca5b","impliedFormat":1},{"version":"854e50b93090b3f8fd6e355b074e1d24dce1ae0240f1ce46563e35fea210a6d5","impliedFormat":99},{"version":"6cb2b04018ad0492e7b2ce566e0b7cbd82265b01dc8e27b1e39f1bc43263265a","signature":"2458d883dcd31a539926334e9484a91039225a0825642973069c4910ba0290d3"},{"version":"54298b6b5c0e96bc0912cf8ee43674b42e7adc43a76d109ac8f687eaab8575dc","signature":"1cb7e7101cbb1cb4ede5c27540acf47c329c69b6c454e8682a9d677724fb1886"},{"version":"e787426aa83b5018bf0ed50132299d2eca2317c52247ba32454677c509c75f2b","signature":"b0231c4df2636e73d200becc22f6916c8379c5c3880a377863f68017f11379b0"},{"version":"86ce8e56c0af9f665f09758f34e6ed16e34bedc0b1b767c72f99c68782c18c3b","signature":"28746a42ca1cf26f3a4c3c2a39b9e6b4cb740b97832b7ee497f3b9f7208176e2"},{"version":"4f212b256b7af98fe18e822c3309613c35ba78bfe353d2c537d16348ab09e9ba","signature":"ab9e317fb9aa3f80f7f8956052ef7dbe0b6925ac4a12f156e409c427556e1213"},{"version":"a4f1a13957178118bd5c31b963d8ce827e6894f69b66fadd0bf5b28dd7a93570","signature":"5000e601f65718e71d18c58fda05b2934e9ec2426cfcb3eb29efe9bb4251a168"},{"version":"17c6561066a9708a09115ad4b49ff23cf81a607f54278c9b9b5865964906f415","impliedFormat":1},{"version":"32727845ab5bd8a9ef3e4844c567c09f6d418fcf0f90d381c00652a6f23e7f6e","impliedFormat":1},{"version":"60200590d8ecf247a6e9c769c6b79bd8e688c3af14ef208072d0c6954b25f125","impliedFormat":1},{"version":"b07f64ff6ec710998a62b07377fbda0ab4c313ba1f0055bfe9faa22cffedd47c","impliedFormat":1},{"version":"4f7428a8e078d6d44528ca19c997cf47cc5ec2206b14bff62a24ca9fd992c728","signature":"2c173a54d09ed8c4056f3d5e414d1ed5a84c750c9c50107f251529e756761901"},{"version":"452af2e5b4d408bec8341ecd308097ae895a71be78d6475716b6904810ff213d","signature":"63020a02f18cef5eeae6be314823f262766e13aa38613163ec132e757664f5d7"},{"version":"5e20040dcce9ae06dd02c784a3f0ee75077b496a8b1ffb0f000bcc2f77ef04b2","signature":"d3a09cf9ee24e063a7d19a6f249b82209aa668ed5c6806d0102f01fb5d3ecc58"},{"version":"9eef3ad7d8baa54cc8a98a4b0b0663a2ef2843ef3326a8744d7a5bcb0f0beac1","signature":"b73d080caf7bc1a633d5f8880cdc8461af2286141bbe4bccb1a34f9aafed81e6"},{"version":"9e8ee61db691d4b9e8fe8f68f21ac38f5540c740f849fcc0e6439d9d71444738","signature":"3686adac8ba744e362a76a5f94b660bc3836ece27c60cbb0a28e470af7ede5d4"},{"version":"8c224f4ba59bc55f7295660bddf2dd57ff797ccba2f0f40e470e944155efaa7c","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"5e0a6a87ced3a8ccfbeb9df6ea7fe090d7923b6ff105a59e26b3345a76827d04","signature":"515c6f78ec3603b6ac708f43416012dc48cf8531e00e859abc3031f7f9510072"},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"08c5f8a855984aaf4b7df847c53ac7e87c32350d4ab151370f262a822fa96d8d","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[62,65],[68,71],[73,75],[80,88],[94,96],[204,209],[214,220]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":10},"referencedMap":[[223,1],[221,2],[77,3],[78,4],[79,4],[66,2],[67,5],[202,2],[231,2],[234,6],[233,2],[226,7],[222,1],[224,8],[225,1],[227,9],[228,2],[229,10],[230,11],[239,12],[240,2],[148,13],[149,13],[150,14],[102,15],[151,16],[152,17],[153,18],[97,2],[100,19],[98,2],[99,2],[154,20],[155,21],[156,22],[157,23],[158,24],[159,25],[160,25],[161,26],[162,27],[163,28],[164,29],[103,2],[101,2],[165,30],[166,31],[167,32],[201,33],[168,34],[169,2],[170,35],[171,36],[172,37],[173,38],[174,39],[175,40],[176,41],[177,42],[178,43],[179,43],[180,44],[181,2],[182,45],[183,46],[185,47],[184,48],[186,49],[187,50],[188,51],[189,52],[190,53],[191,54],[192,55],[193,56],[194,57],[195,58],[196,59],[197,60],[198,61],[104,2],[105,2],[106,2],[144,62],[145,2],[146,2],[147,49],[199,63],[200,64],[241,2],[242,2],[243,65],[232,2],[72,2],[238,66],[236,67],[237,68],[93,69],[92,2],[90,2],[89,2],[91,2],[210,2],[211,70],[212,71],[213,70],[235,72],[76,2],[203,73],[60,2],[61,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[21,2],[22,2],[4,2],[23,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[5,2],[31,2],[32,2],[33,2],[34,2],[6,2],[38,2],[35,2],[36,2],[37,2],[39,2],[7,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[8,2],[50,2],[47,2],[48,2],[49,2],[51,2],[9,2],[52,2],[53,2],[54,2],[56,2],[55,2],[57,2],[58,2],[10,2],[59,2],[1,2],[122,74],[132,75],[121,74],[142,76],[113,77],[112,78],[141,79],[135,80],[140,81],[115,82],[129,83],[114,84],[138,85],[110,86],[109,79],[139,87],[111,88],[116,89],[117,2],[120,89],[107,2],[143,90],[133,91],[124,92],[125,93],[127,94],[123,95],[126,96],[136,79],[118,97],[119,98],[128,99],[108,100],[131,91],[130,89],[134,2],[137,101],[62,102],[65,103],[63,104],[68,105],[86,106],[85,107],[80,2],[209,108],[83,2],[82,109],[87,2],[204,110],[84,111],[208,112],[206,113],[94,4],[207,110],[81,4],[88,114],[95,115],[205,4],[96,116],[220,4],[64,117],[71,118],[219,119],[74,120],[75,120],[70,121],[217,122],[73,123],[218,124],[69,125],[215,126],[216,127],[214,128]],"version":"5.7.3"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/ability.ts","../src/browserLogin.ts","../src/config.ts","../src/api.ts","../node_modules/@hypersoniclabs/helix-manifest/dist/src/bundle-rules.d.ts","../node_modules/@hypersoniclabs/helix-manifest/dist/src/index.d.ts","../src/bundle.ts","../src/resolve.ts","../src/install.ts","../src/currency.ts","../node_modules/commander/typings/index.d.ts","../src/package.ts","../src/init.ts","../src/initAbility.ts","../node_modules/property-graph/dist/index.d.mts","../node_modules/@gltf-transform/core/dist/index.d.ts","../node_modules/@gltf-transform/extensions/dist/index.d.ts","../node_modules/@gltf-transform/functions/dist/index.d.ts","../src/character/esm.ts","../src/character/stages/retarget.ts","../src/character/meshyToHelixMap.ts","../src/character/mat4.ts","../src/character/stages/conform.ts","../src/character/canonicalSkeletonData.ts","../src/character/canonicalSkeleton.ts","../src/character/quat.ts","../src/character/stages/retargetClip.ts","../node_modules/meshoptimizer/meshopt_encoder.module.d.ts","../node_modules/meshoptimizer/meshopt_decoder.module.d.ts","../node_modules/meshoptimizer/meshopt_simplifier.module.d.ts","../node_modules/meshoptimizer/meshopt_clusterizer.module.d.ts","../node_modules/meshoptimizer/index.module.d.ts","../src/character/stages/report.ts","../src/character/stages/simplifyMesh.ts","../src/character/stages/weldedSimplify.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@img/colour/index.d.ts","../node_modules/sharp/dist/index.d.mts","../src/character/stages/bakeTexture.ts","../src/character/stages/splitFacePrimitive.ts","../src/character/stages/mergeLods.ts","../src/character/stages/resizeTextures.ts","../src/character/stages/ktx2.ts","../src/character/importCharacter.ts","../node_modules/playwright-core/types/protocol.d.ts","../node_modules/playwright-core/types/structs.d.ts","../node_modules/playwright-core/types/types.d.ts","../node_modules/playwright/index.d.ts","../src/screenshot/staticServe.ts","../src/screenshot/captureScreenshots.ts","../src/screenshot/encodeImagePreview.ts","../src/lib.ts","../src/prompt.ts","../src/index.ts","../src/character/testutil/syntheticRig.ts","../src/glb/glb-summary.ts","../src/glb/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/ndarray/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[102,151,168,169,223],[102,151,168,169],[76,102,151,168,169],[77,102,151,168,169],[66,102,151,168,169],[102,151,168,169,235],[102,151,168,169,223,224,225,226,227],[102,151,168,169,223,225],[102,151,163,168,169,201],[102,151,168,169,230],[102,151,168,169,231],[102,151,168,169,237,240],[102,148,149,151,168,169],[102,150,151,168,169],[151,168,169],[102,151,156,168,169,186],[102,151,152,157,162,168,169,171,183,194],[102,151,152,153,162,168,169,171],[97,98,99,102,151,168,169],[102,151,154,168,169,195],[102,151,155,156,163,168,169,172],[102,151,156,168,169,183,191],[102,151,157,159,162,168,169,171],[102,150,151,158,168,169],[102,151,159,160,168,169],[102,151,161,162,168,169],[102,150,151,162,168,169],[102,151,162,163,164,168,169,183,194],[102,151,162,163,164,168,169,178,183,186],[102,143,151,159,162,165,168,169,171,183,194],[102,151,162,163,165,166,168,169,171,183,191,194],[102,151,165,167,168,169,183,191,194],[100,101,102,103,104,105,106,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[102,151,162,168,169],[102,151,168,169,170,194],[102,151,159,162,168,169,171,183],[102,151,168,169,172],[102,151,168,169,173],[102,150,151,168,169,174],[102,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[102,151,168,169,176],[102,151,168,169,177],[102,151,162,168,169,178,179],[102,151,168,169,178,180,195,197],[102,151,163,168,169],[102,151,162,168,169,183,184,186],[102,151,168,169,185,186],[102,151,168,169,183,184],[102,151,168,169,186],[102,151,168,169,187],[102,148,151,168,169,183,188,194],[102,151,162,168,169,189,190],[102,151,168,169,189,190],[102,151,156,168,169,171,183,191],[102,151,168,169,192],[102,151,168,169,171,193],[102,151,165,168,169,177,194],[102,151,156,168,169,195],[102,151,168,169,183,196],[102,151,168,169,170,197],[102,151,168,169,198],[102,143,151,168,169],[102,143,151,162,164,168,169,174,183,186,194,196,197,199],[102,151,168,169,183,200],[102,151,168,169,244],[102,151,168,169,233,239],[102,151,168,169,237],[102,151,168,169,234,238],[89,90,91,92,102,151,168,169],[102,151,168,169,212],[102,151,152,163,168,169,183,210,211],[102,151,168,169,236],[102,151,168,169,183,201,202],[102,115,119,151,168,169,194],[102,115,151,168,169,183,194],[102,110,151,168,169],[102,112,115,151,168,169,191,194],[102,151,168,169,171,191],[102,151,168,169,201],[102,110,151,168,169,201],[102,112,115,151,168,169,171,194],[102,107,108,111,114,151,162,168,169,183,194],[102,115,122,151,168,169],[102,107,113,151,168,169],[102,115,136,137,151,168,169],[102,111,115,151,168,169,186,194,201],[102,136,151,168,169,201],[102,109,110,151,168,169,201],[102,115,151,168,169],[102,109,110,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,151,168,169],[102,115,130,151,168,169],[102,115,122,123,151,168,169],[102,113,115,123,124,151,168,169],[102,114,151,168,169],[102,107,110,115,151,168,169],[102,115,119,123,124,151,168,169],[102,119,151,168,169],[102,113,115,118,151,168,169,194],[102,107,112,115,122,151,168,169],[102,151,168,169,183],[102,110,115,136,151,168,169,199,201],[102,151,163,168,169,173,194],[64,102,151,168,169],[102,151,152,156,165,168,169,172],[67,102,151,163,168,169,173],[83,84,85,102,151,168,169],[84,102,151,168,169],[70,77,78,79,80,81,82,84,86,88,95,96,102,151,163,168,169,173,204,205,206,207,208],[81,102,151,168,169],[77,102,151,168,169,203],[77,81,83,102,151,168,169],[77,78,80,102,151,168,169,203],[77,79,102,151,168,169],[77,81,83,84,87,102,151,168,169],[77,79,93,94,102,151,168,169],[77,93,94,102,151,168,169],[63,102,151,163,168,169,172,173],[64,69,70,102,151,163,168,169,173],[102,151,168,169,221],[62,63,64,68,72,74,75,102,151,152,168,169,173,209,215,217,218],[102,151,163,168,169,173],[62,69,102,151,163,168,169,173],[62,63,64,65,68,69,70,71,73,74,75,102,151,163,168,169,173,209,215,216],[62,67,68,102,151,163,168,169,173],[102,151,168,169,178],[62,65,102,151,168,169],[102,151,163,168,169,173,213,214],[102,151,168,169,203],[102,151,163,165,168,169,173]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","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":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2437bece04916fe88b488009d0fd8561a7cd1f32bda35e97da216678ba5710","signature":"5ea8beea2e39335560cd6fad84d4fb4acdabd11000d661beedda0ce0accc9f44"},{"version":"1c8a1d4bfe8ecef358440816a44f92f09b7a78a1638364c34e278ec2798f2859","signature":"c40926f0d5b1f4fca0f9e737a3191738fdc262ff6f49e29454e674f5b0d52ef2"},{"version":"5ed0427f79719c73c325dba9c19fa7cb3023f5ba703dad718a8368b419016f76","signature":"c3c5a949fa6b2f1ea3cee826734f0c1ba9df018cb326cddefcc4376a720c36ff"},{"version":"be98d9fb57914b48221fff30ebb6d46de9020161bb98a622e4a25d3ebf246ae8","signature":"127bcd34d90153bf5e6303969a97947f8e066495c287faaf86acc21813c779fd"},{"version":"23b11f36c8e7539e2470b3d0499e56c758fed3e53b71a66d115a3c62c37e2814","impliedFormat":1},{"version":"48f2d54bcba6efd91028157761bee27c01e1e441c24248f769f0bdfb80f75b7d","impliedFormat":1},{"version":"f860ae15539907d15045278bb812a6eda98f4667852e103126d98bc138b73a5d","signature":"47fe05b92a10e2425a55e292965d0c248376bf30dbb8c29206acb4fca71505c3"},{"version":"80cc3fd545dab905cc946e3cd639179c137d879d020e43dcd4e12b5913d8dfbc","signature":"be33cde402ed650a47fb24fb94d2854b7c86beb8848cf652f47ffcc2cbe0851d"},{"version":"29919598ee21ae0fd08e5b68a1b523031ae711b3f1d49f2b0039472d90594b53","signature":"67142602dfd617c7447a85d9590124edaa0895f77e9d263c2aa6b179fce5e274"},{"version":"9fd502d8ce0bc8a8e3dcb641bf464454c3905d495ebe5bf0fb6bc1470172c5d2","signature":"491cb3ee3fe034ab52be1da9d14f14d07b5cb51950a4d97cd4e92f0e9873b1c9"},{"version":"f70c407d79749859db326d714554c92b6f46bbf00bfdb40a1e2e6f705baa52a0","impliedFormat":1},{"version":"ca64187e1f4759d9442efb5ba20cd16b1340c330ecbc670e4009b2102c2fca75","signature":"88ce01585ac462662d169969b5ee06c136098d601e59631bbeea80fe92648214"},{"version":"4b3308f892327a534bf665ed083dc38ec0770dc397d922579f67c0d3160bd5cd","signature":"b1870514be1c5b6f2d6da24c33747e4a0373265dd4992933058efe38edf1257b"},{"version":"db228389880f9726184f66ca131699c86f25aa65040548c1ffcf7fe29ba1e11a","signature":"7d6d331e6f34d1ace488a40726334280868b0e2d1935b63ecc906508fd1f47fd"},{"version":"96558c6f8d70f7cdbea00aaa2becb19cc07182745780289c04b0bdd06400c969","impliedFormat":99},{"version":"fd36fe872f70871c59737fcb467ad4b81219ca80271fe6789c981055b9b9a4ac","impliedFormat":99},{"version":"0b5027f5e63f0b805339afb16d5c003c431a8772e05f69be95cf718842459dd0","impliedFormat":99},{"version":"a35eb61e7afa6a03a549550449bb70167f670aa2c89330df4c4c614e11b5dd28","impliedFormat":99},{"version":"0a4d5baa8c31b10a6312b5f2236974c5a5a9080c78e55c717c5b4464a4cade6f","signature":"607f51a09f7f2814a3190e3ce4925412df3fd3c04ea6f24cd38e31c1dc247230"},{"version":"bf6ac1e91dc26150f05880bae27c638096ecef38e26426cac8e69237d65a39a6","signature":"5b8c37801a1b7cf26732df9b5de9da68ffe0783b90145fad875e188ceec7fb3b"},{"version":"75e9a2d7b7aaf185ed62b7d28716c2674be641dfa4a107497c3bcd3a3ec79ad6","signature":"f6cdd3e03d077667878f0290ddef5f9cbb8d527a61b543d22209abffbfd8ac98"},{"version":"be3c2142a79a886df8c1c3dd48a1f66c8c14309dacd921a87141b07fa598a34f","signature":"4e732919485f14f5b535ac143afec46a7b743e0a66fe17e01e832951fc7e90c5"},{"version":"e07410ba989d3fd4a91bac8876fe2f6fd71b3c970dbd62256a3b0716fcc7e980","signature":"68fd3c12c49c6d224dad361ec7233098fcba414381d6f2ba2848ade38a6e1446"},{"version":"316d09529047c6aa60f903b27260a17aa31336592ac940198e18b5a4480b46a3","signature":"d15ca267f28600f08ffd3084b2849d1244c6bf4425cd49cdaf44b3b81ab11c8d"},{"version":"1841a02338aea29bca60697d18ea440c9cc33e1676e2574da04ae3ac7cfcb2e3","signature":"0f02c48673d073bee0e3677cb3cf74b2bc5b4585149b4aa0e05fe7c07011e8bb"},{"version":"38fe48c36df22cbd086354db1904bf4e251d825de12fdfa9770fd1b83b60f1e1","signature":"df5105fb3946e047064d35956b5f71eda1ef0841af7f820493b0f032f001090b"},{"version":"a98b7f3439ef3868bc74600cbb084e2cc6bb47c375504d50cd76db41b0e4146d","signature":"37ca1efeacc278f1560d5db83ae5933bc9e8a978b1490da54b5b65089ebdc61a"},{"version":"b04ae28a9977d5183d0194d5a6dd2e7d8355597abd5f347d75bbafa0bdd5dcee","impliedFormat":1},{"version":"eee89e0f13f68b77c2bff15ce52af6c7a5d2933553b51137c41ee2413be19195","impliedFormat":1},{"version":"75bc949852198465c5162d332654e0c4c8083e884160ae51587ed9dc68e2e21d","impliedFormat":1},{"version":"1ff3e381be92fdb298c9f0feef086b87c9bdd4f121b5a80b1ce54dc3b3e5fcce","impliedFormat":1},{"version":"1f8808db763a93dd40822b75adacd0934fb3234fde4b6addfa89fddff6751850","impliedFormat":1},{"version":"bc5fb71df6412e7d7193dcb7b4b1ec5ee7503e9aef6fa6e4d456e90db1536f87","signature":"a453974294bde869ba1f305de9a51313c69becc9d4a28803b8ed30e602d2c009"},{"version":"6d2b61f9e8e1096c8e251b590ad930200e19946484b170e5d02856f762cbd4c3","signature":"f251e41a0f097790ca0498c29d9a90c1a911edb79761ae681adc82ede574799b"},{"version":"43892ada3fcf01458be0b9991d81224b235946ffebd243632d1b908807a9448a","signature":"652df75b88ddcb7df156489043bb4cba7f7d72b4d23f013ded7a44f4d1eebe7e"},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"78dbea00e90d2df8ea3dbef0cc379d95b8be9b71cd6bde4c28728f306811803b","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e1e46d0a9837ee058c100501080c920fa98081ea3956af0374308ba6f22a33e","impliedFormat":1},{"version":"272ca407e0c9068bdc5152552d876e68037ceae3de62e529306403e973dec8e1","impliedFormat":1},{"version":"fa7834c715d5357e4540cee40ce96c3250ddb67a7b879a6b7fa0e86d6696f121","impliedFormat":1},{"version":"22dfb07a7ab15b66ac043829056fe70124844636ae719551812ac631ba04985b","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"0cb167c371eaa8c869f8a7656a7296f2e4fae43b4d8b803a680236b24794e5f9","impliedFormat":1},{"version":"0a839dba0287cc0481ad4beedd48a1c64acf1e212ae865d1315f7007ca215161","impliedFormat":1},{"version":"38dc4655376cd1a4bd6bb3763d92949233e33d38d3dd3cbea7bbf218175a38ef","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"d61e0a64cd175208ac0b83670151a9a6b5916f0d1ffcdc5c29c90b1cebfc5045","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"48a679952eefe4cb776d5a0e1ccba2d3eb53b57448bbb7abc1fcebcbd5440188","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2d14da6ecb49bf828d83948765ec2d3a579d476bbb9645e749610baa6ec880ca","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"0aef708fb4c7a6b915e8305cbfac40cd207b032dbaabe9a01889a5fff3254681","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"ad9bdafb4e7abf14cc53ce7970486a84c87831e62891e5dfe798ddcd55e84701","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"71d3ae6a5e73ca4130762560425e00984ebaff64d5353a3333d1bb7eb86ef336","impliedFormat":1},{"version":"2467b00d963828f540f4acd7910f4c04cfe4b489550e6bb682212f65583bca5b","impliedFormat":1},{"version":"854e50b93090b3f8fd6e355b074e1d24dce1ae0240f1ce46563e35fea210a6d5","impliedFormat":99},{"version":"6cb2b04018ad0492e7b2ce566e0b7cbd82265b01dc8e27b1e39f1bc43263265a","signature":"2458d883dcd31a539926334e9484a91039225a0825642973069c4910ba0290d3"},{"version":"54298b6b5c0e96bc0912cf8ee43674b42e7adc43a76d109ac8f687eaab8575dc","signature":"1cb7e7101cbb1cb4ede5c27540acf47c329c69b6c454e8682a9d677724fb1886"},{"version":"e787426aa83b5018bf0ed50132299d2eca2317c52247ba32454677c509c75f2b","signature":"b0231c4df2636e73d200becc22f6916c8379c5c3880a377863f68017f11379b0"},{"version":"86ce8e56c0af9f665f09758f34e6ed16e34bedc0b1b767c72f99c68782c18c3b","signature":"28746a42ca1cf26f3a4c3c2a39b9e6b4cb740b97832b7ee497f3b9f7208176e2"},{"version":"4f212b256b7af98fe18e822c3309613c35ba78bfe353d2c537d16348ab09e9ba","signature":"ab9e317fb9aa3f80f7f8956052ef7dbe0b6925ac4a12f156e409c427556e1213"},{"version":"a4f1a13957178118bd5c31b963d8ce827e6894f69b66fadd0bf5b28dd7a93570","signature":"5000e601f65718e71d18c58fda05b2934e9ec2426cfcb3eb29efe9bb4251a168"},{"version":"17c6561066a9708a09115ad4b49ff23cf81a607f54278c9b9b5865964906f415","impliedFormat":1},{"version":"32727845ab5bd8a9ef3e4844c567c09f6d418fcf0f90d381c00652a6f23e7f6e","impliedFormat":1},{"version":"60200590d8ecf247a6e9c769c6b79bd8e688c3af14ef208072d0c6954b25f125","impliedFormat":1},{"version":"b07f64ff6ec710998a62b07377fbda0ab4c313ba1f0055bfe9faa22cffedd47c","impliedFormat":1},{"version":"4f7428a8e078d6d44528ca19c997cf47cc5ec2206b14bff62a24ca9fd992c728","signature":"2c173a54d09ed8c4056f3d5e414d1ed5a84c750c9c50107f251529e756761901"},{"version":"452af2e5b4d408bec8341ecd308097ae895a71be78d6475716b6904810ff213d","signature":"63020a02f18cef5eeae6be314823f262766e13aa38613163ec132e757664f5d7"},{"version":"5e20040dcce9ae06dd02c784a3f0ee75077b496a8b1ffb0f000bcc2f77ef04b2","signature":"d3a09cf9ee24e063a7d19a6f249b82209aa668ed5c6806d0102f01fb5d3ecc58"},{"version":"9eef3ad7d8baa54cc8a98a4b0b0663a2ef2843ef3326a8744d7a5bcb0f0beac1","signature":"b73d080caf7bc1a633d5f8880cdc8461af2286141bbe4bccb1a34f9aafed81e6"},{"version":"9e8ee61db691d4b9e8fe8f68f21ac38f5540c740f849fcc0e6439d9d71444738","signature":"3686adac8ba744e362a76a5f94b660bc3836ece27c60cbb0a28e470af7ede5d4"},{"version":"8c224f4ba59bc55f7295660bddf2dd57ff797ccba2f0f40e470e944155efaa7c","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"5e0a6a87ced3a8ccfbeb9df6ea7fe090d7923b6ff105a59e26b3345a76827d04","signature":"515c6f78ec3603b6ac708f43416012dc48cf8531e00e859abc3031f7f9510072"},{"version":"af3b21b76ffb0da1ef2651fa538f6897cef8a0b92028f77b14ab273a43a995ee","signature":"0f0dcc6c244d9a8cc3351f51b07b052c6d8b78fbd3a4600bdb977ecf164c07e5"},{"version":"a4978c19317eee7967a8a465e0687a2ade8e62fc79295eaeba9c4719d9b5f4cf","signature":"bcfc8ffada4abe92dde2c9b4a317e0dad7934b23659af6355a60e45dbe51bccf"},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"08c5f8a855984aaf4b7df847c53ac7e87c32350d4ab151370f262a822fa96d8d","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[62,65],[68,71],[73,75],[80,88],[94,96],[204,209],[214,222]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictPropertyInitialization":false,"target":10},"referencedMap":[[225,1],[223,2],[77,3],[78,4],[79,4],[66,2],[67,5],[202,2],[233,2],[236,6],[235,2],[228,7],[224,1],[226,8],[227,1],[229,9],[230,2],[231,10],[232,11],[241,12],[242,2],[148,13],[149,13],[150,14],[102,15],[151,16],[152,17],[153,18],[97,2],[100,19],[98,2],[99,2],[154,20],[155,21],[156,22],[157,23],[158,24],[159,25],[160,25],[161,26],[162,27],[163,28],[164,29],[103,2],[101,2],[165,30],[166,31],[167,32],[201,33],[168,34],[169,2],[170,35],[171,36],[172,37],[173,38],[174,39],[175,40],[176,41],[177,42],[178,43],[179,43],[180,44],[181,2],[182,45],[183,46],[185,47],[184,48],[186,49],[187,50],[188,51],[189,52],[190,53],[191,54],[192,55],[193,56],[194,57],[195,58],[196,59],[197,60],[198,61],[104,2],[105,2],[106,2],[144,62],[145,2],[146,2],[147,49],[199,63],[200,64],[243,2],[244,2],[245,65],[234,2],[72,2],[240,66],[238,67],[239,68],[93,69],[92,2],[90,2],[89,2],[91,2],[210,2],[211,70],[212,71],[213,70],[237,72],[76,2],[203,73],[60,2],[61,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[21,2],[22,2],[4,2],[23,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[5,2],[31,2],[32,2],[33,2],[34,2],[6,2],[38,2],[35,2],[36,2],[37,2],[39,2],[7,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[8,2],[50,2],[47,2],[48,2],[49,2],[51,2],[9,2],[52,2],[53,2],[54,2],[56,2],[55,2],[57,2],[58,2],[10,2],[59,2],[1,2],[122,74],[132,75],[121,74],[142,76],[113,77],[112,78],[141,79],[135,80],[140,81],[115,82],[129,83],[114,84],[138,85],[110,86],[109,79],[139,87],[111,88],[116,89],[117,2],[120,89],[107,2],[143,90],[133,91],[124,92],[125,93],[127,94],[123,95],[126,96],[136,79],[118,97],[119,98],[128,99],[108,100],[131,91],[130,89],[134,2],[137,101],[62,102],[65,103],[63,104],[68,105],[86,106],[85,107],[80,2],[209,108],[83,2],[82,109],[87,2],[204,110],[84,111],[208,112],[206,113],[94,4],[207,110],[81,4],[88,114],[95,115],[205,4],[96,116],[220,4],[64,117],[71,118],[221,2],[222,119],[219,120],[74,121],[75,121],[70,122],[217,123],[73,124],[218,125],[69,126],[215,127],[216,128],[214,129]],"version":"5.7.3"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helix3/helix-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7-helix3.38",
|
|
4
4
|
"description": "helix — the HELIX creator CLI: scaffold, validate, and publish Instant Worlds",
|
|
5
5
|
"main": "dist/lib.js",
|
|
6
6
|
"types": "dist/lib.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/lib.d.ts",
|
|
10
|
+
"default": "./dist/lib.js"
|
|
11
|
+
},
|
|
12
|
+
"./glb": {
|
|
13
|
+
"types": "./dist/glb/index.d.ts",
|
|
14
|
+
"default": "./dist/glb/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
7
18
|
"bin": {
|
|
8
19
|
"helix": "dist/index.js"
|
|
9
20
|
},
|