@contember/typesafe 2.1.0-alpha.37 → 2.1.0-alpha.39
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/development/index.cjs +355 -0
- package/dist/development/index.cjs.map +1 -0
- package/dist/development/index.js +355 -0
- package/dist/development/index.js.map +1 -0
- package/dist/production/index.cjs +355 -0
- package/dist/production/index.cjs.map +1 -0
- package/dist/production/index.js +355 -0
- package/dist/production/index.js.map +1 -0
- package/dist/types/index.d.ts +66 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
class ParseError extends Error {
|
|
2
|
+
constructor(path, reason, expected) {
|
|
3
|
+
super(`value at ${path.length ? `path /${path.join("/")}` : "root"}: ${reason}`);
|
|
4
|
+
this.path = path;
|
|
5
|
+
this.reason = reason;
|
|
6
|
+
this.expected = expected;
|
|
7
|
+
}
|
|
8
|
+
static format(input, path, expected) {
|
|
9
|
+
return new ParseError(path, `must be ${expected}, ${input === "undefined" ? "undefined" : JSON.stringify(input)} given`, expected);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const fail = (path, reason = "unknown reason") => {
|
|
13
|
+
throw new ParseError(path, reason);
|
|
14
|
+
};
|
|
15
|
+
const string = /* @__PURE__ */ (() => {
|
|
16
|
+
return (input, path = []) => {
|
|
17
|
+
if (typeof input !== "string") throw ParseError.format(input, path, "string");
|
|
18
|
+
return input;
|
|
19
|
+
};
|
|
20
|
+
})();
|
|
21
|
+
const number = /* @__PURE__ */ (() => {
|
|
22
|
+
return (input, path = []) => {
|
|
23
|
+
if (typeof input !== "number") throw ParseError.format(input, path, "number");
|
|
24
|
+
return input;
|
|
25
|
+
};
|
|
26
|
+
})();
|
|
27
|
+
const integer = /* @__PURE__ */ (() => {
|
|
28
|
+
return (input, path = []) => {
|
|
29
|
+
if (typeof input !== "number" || !Number.isInteger(input)) throw ParseError.format(input, path, "integer");
|
|
30
|
+
return input;
|
|
31
|
+
};
|
|
32
|
+
})();
|
|
33
|
+
const boolean = /* @__PURE__ */ (() => {
|
|
34
|
+
return (input, path = []) => {
|
|
35
|
+
if (typeof input !== "boolean") throw ParseError.format(input, path, "boolean");
|
|
36
|
+
return input;
|
|
37
|
+
};
|
|
38
|
+
})();
|
|
39
|
+
const scalar = /* @__PURE__ */ (() => {
|
|
40
|
+
return (input, path = []) => {
|
|
41
|
+
if (input === null) {
|
|
42
|
+
return null;
|
|
43
|
+
}
|
|
44
|
+
switch (typeof input) {
|
|
45
|
+
case "string":
|
|
46
|
+
case "boolean":
|
|
47
|
+
return input;
|
|
48
|
+
case "number":
|
|
49
|
+
if (!Number.isFinite(input)) {
|
|
50
|
+
throw new ParseError(path, "must be finite number", "number");
|
|
51
|
+
}
|
|
52
|
+
return input;
|
|
53
|
+
default:
|
|
54
|
+
throw ParseError.format(input, path, "string|boolean|number");
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
})();
|
|
58
|
+
const anyJson = /* @__PURE__ */ (() => {
|
|
59
|
+
return (input, path = []) => {
|
|
60
|
+
switch (typeof input) {
|
|
61
|
+
case "string":
|
|
62
|
+
case "boolean":
|
|
63
|
+
return input;
|
|
64
|
+
case "number":
|
|
65
|
+
if (!Number.isFinite(input)) {
|
|
66
|
+
throw new ParseError(path, "must be finite number", "number");
|
|
67
|
+
}
|
|
68
|
+
return input;
|
|
69
|
+
case "object":
|
|
70
|
+
if (input === null) {
|
|
71
|
+
return null;
|
|
72
|
+
}
|
|
73
|
+
if (Array.isArray(input)) {
|
|
74
|
+
return input.map((it, index) => anyJson(it, [...path, index]));
|
|
75
|
+
}
|
|
76
|
+
return anyJsonObject(input, path);
|
|
77
|
+
default:
|
|
78
|
+
throw ParseError.format(input, path, "string|boolean|number|object");
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
})();
|
|
82
|
+
const anyJsonObject = /* @__PURE__ */ (() => {
|
|
83
|
+
return (input, path = []) => {
|
|
84
|
+
if (input === null || typeof input !== "object") throw ParseError.format(input, path, "object");
|
|
85
|
+
return Object.fromEntries(
|
|
86
|
+
Object.entries(input).map(([key, value]) => {
|
|
87
|
+
return [key, anyJson(value, [...path, key])];
|
|
88
|
+
})
|
|
89
|
+
);
|
|
90
|
+
};
|
|
91
|
+
})();
|
|
92
|
+
const literal = (inner) => {
|
|
93
|
+
const type = (input, path = []) => {
|
|
94
|
+
if (input !== inner) throw ParseError.format(input, path, JSON.stringify(inner));
|
|
95
|
+
return inner;
|
|
96
|
+
};
|
|
97
|
+
type.inner = inner;
|
|
98
|
+
return type;
|
|
99
|
+
};
|
|
100
|
+
const array = (inner) => {
|
|
101
|
+
const type = (input, path = []) => {
|
|
102
|
+
if (!Array.isArray(input)) throw ParseError.format(input, path, "array");
|
|
103
|
+
return input.map((v, i) => inner(v, [...path, i]));
|
|
104
|
+
};
|
|
105
|
+
type.inner = type;
|
|
106
|
+
return type;
|
|
107
|
+
};
|
|
108
|
+
const object = (inner) => {
|
|
109
|
+
const type = (input, path = []) => {
|
|
110
|
+
if (input === null || typeof input !== "object") throw ParseError.format(input, path, "object");
|
|
111
|
+
return Object.fromEntries(
|
|
112
|
+
Object.entries(inner).map(([k, v]) => {
|
|
113
|
+
const newPath = [...path, k];
|
|
114
|
+
const result = v(input[k], newPath);
|
|
115
|
+
if (result === void 0 && !(k in input)) {
|
|
116
|
+
throw ParseError.format(void 0, newPath, "defined");
|
|
117
|
+
}
|
|
118
|
+
return [k, result];
|
|
119
|
+
})
|
|
120
|
+
);
|
|
121
|
+
};
|
|
122
|
+
type.inner = inner;
|
|
123
|
+
return type;
|
|
124
|
+
};
|
|
125
|
+
const partial = (inner) => {
|
|
126
|
+
const type = (input, path = []) => {
|
|
127
|
+
if (input === null || typeof input !== "object") throw ParseError.format(input, path, "object");
|
|
128
|
+
return Object.fromEntries(
|
|
129
|
+
Object.entries(inner ?? {}).flatMap(([k, v]) => {
|
|
130
|
+
const newPath = [...path, k];
|
|
131
|
+
if (!(k in input) || input[k] === void 0) {
|
|
132
|
+
return [];
|
|
133
|
+
}
|
|
134
|
+
const val = v(input[k], newPath);
|
|
135
|
+
if (val === void 0) {
|
|
136
|
+
return [];
|
|
137
|
+
}
|
|
138
|
+
return [[k, val]];
|
|
139
|
+
})
|
|
140
|
+
);
|
|
141
|
+
};
|
|
142
|
+
type.inner = inner;
|
|
143
|
+
return type;
|
|
144
|
+
};
|
|
145
|
+
const noExtraProps = (inner) => {
|
|
146
|
+
const type = (input, path = []) => {
|
|
147
|
+
const result = inner(input, path);
|
|
148
|
+
if (!(typeof input === "object" && input !== null && typeof result === "object" && result !== null)) {
|
|
149
|
+
return result;
|
|
150
|
+
}
|
|
151
|
+
const resultProps = new Set(Object.keys(result));
|
|
152
|
+
for (const key in input) {
|
|
153
|
+
if (!resultProps.has(key)) {
|
|
154
|
+
throw fail(path, `extra property ${key} found`);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
return result;
|
|
158
|
+
};
|
|
159
|
+
type.inner = inner;
|
|
160
|
+
return type;
|
|
161
|
+
};
|
|
162
|
+
const record = (key, value) => {
|
|
163
|
+
const type = (input, path = []) => {
|
|
164
|
+
if (input === null || typeof input !== "object") {
|
|
165
|
+
throw ParseError.format(input, path, "object");
|
|
166
|
+
}
|
|
167
|
+
return Object.fromEntries(
|
|
168
|
+
Object.entries(input).map(([k, v]) => {
|
|
169
|
+
const newPath = [...path, k];
|
|
170
|
+
return [key(k, newPath), value(v, newPath)];
|
|
171
|
+
})
|
|
172
|
+
);
|
|
173
|
+
};
|
|
174
|
+
type.inner = { key, value };
|
|
175
|
+
return type;
|
|
176
|
+
};
|
|
177
|
+
const union = (...inner) => {
|
|
178
|
+
const type = (input, path = []) => {
|
|
179
|
+
const errors = [];
|
|
180
|
+
for (const innerInner of inner) {
|
|
181
|
+
try {
|
|
182
|
+
return innerInner(input, path);
|
|
183
|
+
} catch (e) {
|
|
184
|
+
if (e instanceof ParseError) {
|
|
185
|
+
errors.push(" ".repeat("ParseError: ".length) + e.message);
|
|
186
|
+
} else {
|
|
187
|
+
throw e;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
throw new ParseError(path, "all variants of union has failed:\n" + errors.join("\n"));
|
|
192
|
+
};
|
|
193
|
+
type.inner = inner;
|
|
194
|
+
return type;
|
|
195
|
+
};
|
|
196
|
+
const isSamePath = (a, b) => {
|
|
197
|
+
if (a.length !== b.length) {
|
|
198
|
+
return false;
|
|
199
|
+
}
|
|
200
|
+
for (let i = 0; i < a.length; i++) {
|
|
201
|
+
if (a[i] !== b[i]) {
|
|
202
|
+
return false;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
return true;
|
|
206
|
+
};
|
|
207
|
+
const partiallyDiscriminatedUnion = (field, ...inner) => {
|
|
208
|
+
const type = (input, path = []) => {
|
|
209
|
+
const errors = [];
|
|
210
|
+
for (const innerInner of inner) {
|
|
211
|
+
try {
|
|
212
|
+
return innerInner(input, path);
|
|
213
|
+
} catch (e) {
|
|
214
|
+
if (e instanceof ParseError) {
|
|
215
|
+
if (isSamePath(e.path, [...path, field])) {
|
|
216
|
+
continue;
|
|
217
|
+
}
|
|
218
|
+
errors.push(" ".repeat("ParseError: ".length) + e.message);
|
|
219
|
+
} else {
|
|
220
|
+
throw e;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
throw new ParseError(path, "all variants of union has failed:\n" + errors.join("\n"));
|
|
225
|
+
};
|
|
226
|
+
type.inner = inner;
|
|
227
|
+
return type;
|
|
228
|
+
};
|
|
229
|
+
const discriminatedUnion = (field, inner) => {
|
|
230
|
+
const type = (input, path = []) => {
|
|
231
|
+
if (input === null || typeof input !== "object") throw ParseError.format(input, path, "object");
|
|
232
|
+
const key = input[field];
|
|
233
|
+
if (typeof key !== "string") throw ParseError.format(key, [...path, field], "string");
|
|
234
|
+
const discriminatedType = inner[key];
|
|
235
|
+
if (discriminatedType === void 0) throw ParseError.format(key, [...path, field], Object.keys(inner).join("|"));
|
|
236
|
+
const { [field]: _, ...inputWithoutDiscr } = input;
|
|
237
|
+
return { [field]: key, ...discriminatedType(inputWithoutDiscr, path) };
|
|
238
|
+
};
|
|
239
|
+
type.inner = inner;
|
|
240
|
+
return type;
|
|
241
|
+
};
|
|
242
|
+
const tuple = (...inner) => {
|
|
243
|
+
const type = (input, path = []) => {
|
|
244
|
+
if (!Array.isArray(input)) throw ParseError.format(input, path, "array");
|
|
245
|
+
if (input.length !== inner.length) throw ParseError.format(input, path, `array with length ${inner.length}`);
|
|
246
|
+
return Object.entries(inner).map(([k, v]) => {
|
|
247
|
+
const newPath = [...path, k];
|
|
248
|
+
if (!(k in input)) {
|
|
249
|
+
throw ParseError.format(void 0, newPath, "defined");
|
|
250
|
+
}
|
|
251
|
+
return v(input[k], newPath);
|
|
252
|
+
});
|
|
253
|
+
};
|
|
254
|
+
type.inner = inner;
|
|
255
|
+
return type;
|
|
256
|
+
};
|
|
257
|
+
const discriminatedTupleUnion = (inner) => {
|
|
258
|
+
const type = (input, path = []) => {
|
|
259
|
+
if (!Array.isArray(input)) throw ParseError.format(input, path, "array");
|
|
260
|
+
if (input.length === 0) throw ParseError.format(input, path, `non-empty array`);
|
|
261
|
+
const tupleType = inner[input[0]];
|
|
262
|
+
if (tupleType === void 0) throw ParseError.format(input, [...path, 0], `one of ${Object.keys(inner).join(", ")}`);
|
|
263
|
+
if (input.length !== tupleType.length + 1) throw ParseError.format(input, path, `array with length ${tupleType.length + 1}`);
|
|
264
|
+
for (let i = 0; i < tupleType.length; i++) {
|
|
265
|
+
tupleType[i](input[i + 1], [...path, i + 1]);
|
|
266
|
+
}
|
|
267
|
+
return input;
|
|
268
|
+
};
|
|
269
|
+
type.inner = inner;
|
|
270
|
+
return type;
|
|
271
|
+
};
|
|
272
|
+
const intersection = (inner1, inner2) => {
|
|
273
|
+
const type = (input, path = []) => {
|
|
274
|
+
return {
|
|
275
|
+
...inner1(input, path),
|
|
276
|
+
...inner2(input, path)
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
type.inner = [inner1, inner2];
|
|
280
|
+
return type;
|
|
281
|
+
};
|
|
282
|
+
const enumeration = (...values) => {
|
|
283
|
+
const type = (input, path = []) => {
|
|
284
|
+
if (typeof input !== "string" || !values.includes(input)) throw ParseError.format(input, path, values.join("|"));
|
|
285
|
+
return input;
|
|
286
|
+
};
|
|
287
|
+
type.inner = values;
|
|
288
|
+
return type;
|
|
289
|
+
};
|
|
290
|
+
const null_ = literal(null);
|
|
291
|
+
const true_ = literal(true);
|
|
292
|
+
const false_ = literal(false);
|
|
293
|
+
const nullable = (inner) => {
|
|
294
|
+
const type = (input, path = []) => {
|
|
295
|
+
return input === null ? input : inner(input, path);
|
|
296
|
+
};
|
|
297
|
+
type.inner = inner;
|
|
298
|
+
return type;
|
|
299
|
+
};
|
|
300
|
+
const preprocess = (inner, transform2) => (input, path = []) => {
|
|
301
|
+
return inner(transform2(input), path);
|
|
302
|
+
};
|
|
303
|
+
const transform = (inner, transform2) => (input, path = []) => {
|
|
304
|
+
return transform2(inner(input, path), input, path);
|
|
305
|
+
};
|
|
306
|
+
const coalesce = (inner, fallback) => {
|
|
307
|
+
const type = (input, path = []) => {
|
|
308
|
+
return inner(input ?? fallback, path);
|
|
309
|
+
};
|
|
310
|
+
type.inner = inner;
|
|
311
|
+
return type;
|
|
312
|
+
};
|
|
313
|
+
const valueAt = (input, path) => {
|
|
314
|
+
let value = input;
|
|
315
|
+
for (const key of path) {
|
|
316
|
+
if (typeof value !== "object" || value === null) {
|
|
317
|
+
return void 0;
|
|
318
|
+
}
|
|
319
|
+
value = value[key];
|
|
320
|
+
}
|
|
321
|
+
return value;
|
|
322
|
+
};
|
|
323
|
+
export {
|
|
324
|
+
ParseError,
|
|
325
|
+
anyJson,
|
|
326
|
+
anyJsonObject,
|
|
327
|
+
array,
|
|
328
|
+
boolean,
|
|
329
|
+
coalesce,
|
|
330
|
+
discriminatedTupleUnion,
|
|
331
|
+
discriminatedUnion,
|
|
332
|
+
enumeration,
|
|
333
|
+
fail,
|
|
334
|
+
false_,
|
|
335
|
+
integer,
|
|
336
|
+
intersection,
|
|
337
|
+
literal,
|
|
338
|
+
noExtraProps,
|
|
339
|
+
null_,
|
|
340
|
+
nullable,
|
|
341
|
+
number,
|
|
342
|
+
object,
|
|
343
|
+
partial,
|
|
344
|
+
partiallyDiscriminatedUnion,
|
|
345
|
+
preprocess,
|
|
346
|
+
record,
|
|
347
|
+
scalar,
|
|
348
|
+
string,
|
|
349
|
+
transform,
|
|
350
|
+
true_,
|
|
351
|
+
tuple,
|
|
352
|
+
union,
|
|
353
|
+
valueAt
|
|
354
|
+
};
|
|
355
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../packages/typesafe/src/index.ts"],"sourcesContent":["type Unpacked<T> = T extends readonly (infer U)[] ? U : never\n\nexport type JsonObject = {\n\treadonly [P in string]?: Json\n}\nexport type Scalar =\n\t| string\n\t| number\n\t| boolean\n\t| null\nexport type Json =\n\t| Scalar\n\t| readonly Json[]\n\t| JsonObject\n\nexport interface Type<T extends Json | { readonly [K in string]?: Json } | undefined = Json> {\n\t(input: unknown, path?: PropertyKey[]): T\n\treadonly inner?: any\n}\n\nexport class ParseError extends Error {\n\tconstructor(readonly path: PropertyKey[], readonly reason: string, readonly expected?: string) {\n\t\tsuper(`value at ${path.length ? `path /${path.join('/')}` : 'root'}: ${reason}`)\n\t}\n\n\tstatic format(input: unknown, path: PropertyKey[], expected: string) {\n\t\treturn new ParseError(path, `must be ${expected}, ${input === 'undefined' ? 'undefined' : JSON.stringify(input)} given`, expected)\n\t}\n}\n\nexport const fail = (path: PropertyKey[], reason: string = 'unknown reason'): never => {\n\tthrow new ParseError(path, reason)\n}\n\nexport const string = ((): Type<string> => {\n\treturn (input: unknown, path: PropertyKey[] = []) => {\n\t\tif (typeof input !== 'string') throw ParseError.format(input, path, 'string')\n\t\treturn input\n\t}\n})()\n\nexport const number = ((): Type<number> => {\n\treturn (input: unknown, path: PropertyKey[] = []) => {\n\t\tif (typeof input !== 'number') throw ParseError.format(input, path, 'number')\n\t\treturn input\n\t}\n})()\n\nexport const integer = ((): Type<number> => {\n\treturn (input: unknown, path: PropertyKey[] = []) => {\n\t\tif (typeof input !== 'number' || !Number.isInteger(input)) throw ParseError.format(input, path, 'integer')\n\t\treturn input\n\t}\n})()\n\nexport const boolean = ((): Type<boolean> => {\n\treturn (input: unknown, path: PropertyKey[] = []) => {\n\t\tif (typeof input !== 'boolean') throw ParseError.format(input, path, 'boolean')\n\t\treturn input\n\t}\n})()\n\nexport const scalar = ((): Type<Scalar> => {\n\treturn (input: unknown, path: PropertyKey[] = []): Scalar => {\n\t\tif (input === null) {\n\t\t\treturn null\n\t\t}\n\t\tswitch (typeof input) {\n\t\t\tcase 'string':\n\t\t\tcase 'boolean':\n\t\t\t\treturn input\n\t\t\tcase 'number':\n\t\t\t\tif (!Number.isFinite(input)) {\n\t\t\t\t\tthrow new ParseError(path, 'must be finite number', 'number')\n\t\t\t\t}\n\t\t\t\treturn input\n\t\t\tdefault:\n\t\t\t\tthrow ParseError.format(input, path, 'string|boolean|number')\n\t\t}\n\t}\n})()\n\nexport const anyJson = ((): Type<Json> => {\n\treturn (input: unknown, path: PropertyKey[] = []): Json => {\n\t\tswitch (typeof input) {\n\t\t\tcase 'string':\n\t\t\tcase 'boolean':\n\t\t\t\treturn input\n\t\t\tcase 'number':\n\t\t\t\tif (!Number.isFinite(input)) {\n\t\t\t\t\tthrow new ParseError(path, 'must be finite number', 'number')\n\t\t\t\t}\n\t\t\t\treturn input\n\t\t\tcase 'object':\n\t\t\t\tif (input === null) {\n\t\t\t\t\treturn null\n\t\t\t\t}\n\t\t\t\tif (Array.isArray(input)) {\n\t\t\t\t\treturn input.map((it, index) => anyJson(it, [...path, index]))\n\t\t\t\t}\n\t\t\t\treturn anyJsonObject(input, path)\n\t\t\tdefault:\n\t\t\t\tthrow ParseError.format(input, path, 'string|boolean|number|object')\n\t\t}\n\t}\n})()\n\nexport const anyJsonObject = ((): Type<JsonObject> => {\n\treturn (input: unknown, path: PropertyKey[] = []): JsonObject => {\n\t\tif (input === null || typeof input !== 'object') throw ParseError.format(input, path, 'object')\n\t\treturn Object.fromEntries(\n\t\t\tObject.entries(input).map(([key, value]) => {\n\t\t\t\treturn [key, anyJson(value, [...path, key])]\n\t\t\t}),\n\t\t)\n\t}\n})()\n\nexport const literal = <T extends Json>(inner: T): Type<T> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): T => {\n\t\tif (input !== inner) throw ParseError.format(input, path, JSON.stringify(inner))\n\t\treturn inner\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const array = <T extends Json>(inner: Type<T>): Type<readonly T[]> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): readonly T[] => {\n\t\tif (!Array.isArray(input)) throw ParseError.format(input, path, 'array')\n\t\treturn input.map((v, i) => inner(v, [...path, i]))\n\t}\n\n\ttype.inner = type\n\n\treturn type\n}\n\nexport const object = <T extends Record<string, Type<Json>>>(inner: T): Type<{ readonly [P in keyof T]: ReturnType<T[P]> }> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): { readonly [P in keyof T]: ReturnType<T[P]> } => {\n\t\tif (input === null || typeof input !== 'object') throw ParseError.format(input, path, 'object')\n\t\treturn Object.fromEntries(\n\t\t\tObject.entries(inner).map(([k, v]) => {\n\t\t\t\tconst newPath = [...path, k]\n\t\t\t\tconst result = v((input as any)[k], newPath)\n\t\t\t\tif (result === undefined && !(k in (input as object))) {\n\t\t\t\t\tthrow ParseError.format(undefined, newPath, 'defined')\n\t\t\t\t}\n\t\t\t\treturn [k, result]\n\t\t\t}),\n\t\t) as any\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const partial = <T extends Record<string, Type<Json | undefined>>>(inner: T) => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): { readonly [P in keyof T]?: Exclude<ReturnType<T[P]>, undefined> } => {\n\t\tif (input === null || typeof input !== 'object') throw ParseError.format(input, path, 'object')\n\t\treturn Object.fromEntries(\n\t\t\tObject.entries(inner ?? {}).flatMap(([k, v]) => {\n\t\t\t\tconst newPath = [...path, k]\n\t\t\t\tif (!(k in (input as object)) || (input as any)[k] === undefined) {\n\t\t\t\t\treturn []\n\t\t\t\t}\n\t\t\t\tconst val = v((input as any)[k], newPath)\n\t\t\t\tif (val === undefined) {\n\t\t\t\t\treturn []\n\t\t\t\t}\n\t\t\t\treturn [[k, val]]\n\t\t\t}),\n\t\t) as any\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const noExtraProps = <T extends JsonObject>(inner: Type<T>) => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): T => {\n\t\tconst result = inner(input, path)\n\t\tif (!(typeof input === 'object' && input !== null && typeof result === 'object' && result !== null)) {\n\t\t\treturn result\n\t\t}\n\t\tconst resultProps = new Set(Object.keys(result))\n\t\tfor (const key in input) {\n\t\t\tif (!resultProps.has(key)) {\n\t\t\t\tthrow fail(path, `extra property ${key} found`)\n\t\t\t}\n\t\t}\n\t\treturn result\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const record = <K extends Type<string>, T extends Type<Json>>(key: K, value: T): Type<{ readonly [P in ReturnType<K>]: ReturnType<T> }> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): { readonly [P in ReturnType<K>]: ReturnType<T> } => {\n\t\tif (input === null || typeof input !== 'object') {\n\t\t\tthrow ParseError.format(input, path, 'object')\n\t\t}\n\t\treturn Object.fromEntries(\n\t\t\tObject.entries(input as any).map(([k, v]) => {\n\t\t\t\tconst newPath = [...path, k]\n\t\t\t\treturn [key(k, newPath), value(v, newPath)]\n\t\t\t}),\n\t\t) as any\n\t}\n\n\ttype.inner = { key, value }\n\n\treturn type\n}\n\nexport const union = <T extends Type<Json>[]>(...inner: T): Type<ReturnType<Unpacked<T>>> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): ReturnType<Unpacked<T>> => {\n\t\tconst errors = []\n\t\tfor (const innerInner of inner) {\n\t\t\ttry {\n\t\t\t\treturn innerInner(input, path) as any\n\t\t\t} catch (e) {\n\t\t\t\tif (e instanceof ParseError) {\n\t\t\t\t\terrors.push(' '.repeat('ParseError: '.length) + e.message)\n\t\t\t\t} else {\n\t\t\t\t\tthrow e\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tthrow new ParseError(path, 'all variants of union has failed:\\n' + errors.join('\\n'))\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nconst isSamePath = (a: PropertyKey[], b: PropertyKey[]) => {\n\tif (a.length !== b.length) {\n\t\treturn false\n\t}\n\tfor (let i = 0; i < a.length; i++) {\n\t\tif (a[i] !== b[i]) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nexport const partiallyDiscriminatedUnion = <T extends Type<JsonObject>[]>(field: string, ...inner: T): Type<ReturnType<Unpacked<T>>> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): ReturnType<Unpacked<T>> => {\n\t\tconst errors = []\n\t\tfor (const innerInner of inner) {\n\t\t\ttry {\n\t\t\t\treturn innerInner(input, path) as any\n\t\t\t} catch (e) {\n\t\t\t\tif (e instanceof ParseError) {\n\t\t\t\t\tif (isSamePath(e.path, [...path, field])) {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\terrors.push(' '.repeat('ParseError: '.length) + e.message)\n\t\t\t\t} else {\n\t\t\t\t\tthrow e\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tthrow new ParseError(path, 'all variants of union has failed:\\n' + errors.join('\\n'))\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const discriminatedUnion = <F extends string, T extends { [key: string]: JsonObject }>(\n\tfield: F,\n\tinner: { [K in keyof T]: Type<T[K]> },\n): Type<{ [K in keyof T]: { [X in F]: K } & T[K] }[keyof T]> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): { [K in keyof T]: { [X in F]: K } & T[K] }[keyof T] => {\n\t\tif (input === null || typeof input !== 'object') throw ParseError.format(input, path, 'object')\n\t\tconst key = (input as any)[field]\n\t\tif (typeof key !== 'string') throw ParseError.format(key, [...path, field], 'string')\n\n\t\tconst discriminatedType = inner[key]\n\t\tif (discriminatedType === undefined) throw ParseError.format(key, [...path, field], Object.keys(inner).join('|'))\n\n\t\tconst { [field]: _, ...inputWithoutDiscr } = input\n\n\t\treturn { [field]: key, ...discriminatedType(inputWithoutDiscr, path) }\n\t}\n\ttype.inner = inner\n\n\treturn type\n}\n\ntype TupleFromTupledType<T extends Type<Json>[]> = T extends [Type<infer X>, ...infer Y]\n\t? (Y extends Type<Json>[] ? readonly [X, ...TupleFromTupledType<Y>] : readonly [])\n\t: readonly []\n\nexport const tuple = <T extends Type<Json>[]>(...inner: T): Type<TupleFromTupledType<T>> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): TupleFromTupledType<T> => {\n\t\tif (!Array.isArray(input)) throw ParseError.format(input, path, 'array')\n\t\tif (input.length !== inner.length) throw ParseError.format(input, path, `array with length ${inner.length}`)\n\t\treturn Object.entries(inner).map(([k, v]) => {\n\t\t\tconst newPath = [...path, k]\n\t\t\tif (!(k in input)) {\n\t\t\t\tthrow ParseError.format(undefined, newPath, 'defined')\n\t\t\t}\n\t\t\treturn v(input[k as unknown as number], newPath)\n\t\t}) as any\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\ntype DiscriminatedTupleUnionType<T extends Record<string, Type<Json>[]>> = {\n\t[K in keyof T]: (readonly [K, ...TupleFromTupledType<T[K]>])\n}[keyof T & string]\n\nexport const discriminatedTupleUnion = <T extends Record<string, Type<Json>[]>>(inner: T): Type<DiscriminatedTupleUnionType<T>> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): DiscriminatedTupleUnionType<T> => {\n\t\tif (!Array.isArray(input)) throw ParseError.format(input, path, 'array')\n\t\tif (input.length === 0) throw ParseError.format(input, path, `non-empty array`)\n\n\t\tconst tupleType = inner[input[0]]\n\t\tif (tupleType === undefined) throw ParseError.format(input, [...path, 0], `one of ${Object.keys(inner).join(', ')}`)\n\t\tif (input.length !== tupleType.length + 1) throw ParseError.format(input, path, `array with length ${tupleType.length + 1}`)\n\n\t\tfor (let i = 0; i < tupleType.length; i++) {\n\t\t\ttupleType[i](input[i + 1], [...path, i + 1])\n\t\t}\n\n\t\treturn input as any\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const intersection = <T1 extends JsonObject, T2 extends JsonObject>(inner1: Type<T1>, inner2: Type<T2>): Type<T1 & T2> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): T1 & T2 => {\n\t\treturn {\n\t\t\t...inner1(input, path),\n\t\t\t...inner2(input, path),\n\t\t}\n\t}\n\n\ttype.inner = [inner1, inner2]\n\n\treturn type\n}\n\nexport const enumeration = <T extends string>(...values: T[]): Type<T> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): T => {\n\t\tif (typeof input !== 'string' || !values.includes(input as T)) throw ParseError.format(input, path, values.join('|'))\n\t\treturn input as T\n\t}\n\ttype.inner = values\n\treturn type\n}\n\nexport const null_ = literal(null)\nexport const true_ = literal(true)\nexport const false_ = literal(false)\n\nexport const nullable = <T extends Json>(inner: Type<T>): Type<T | null> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []) => {\n\t\treturn input === null ? input : inner(input, path)\n\t}\n\n\ttype.inner = inner\n\treturn type\n}\n\nexport const preprocess =\n\t<Input extends Json>(inner: Type<Input>, transform: (input: unknown) => unknown) => (input: unknown, path: PropertyKey[] = []): Input => {\n\t\treturn inner(transform(input), path)\n\t}\n\nexport const transform =\n\t<Input extends Json, Result extends Json>(inner: Type<Input>, transform: (value: Input, input: unknown, path: PropertyKey[]) => Result) =>\n\t(input: unknown, path: PropertyKey[] = []): Result => {\n\t\treturn transform(inner(input, path), input, path)\n\t}\n\nexport const coalesce = <T extends Json, F extends Json>(inner: Type<T>, fallback: F): Type<T | F> => {\n\tconst type = (input: unknown, path: PropertyKey[] = []): T | F => {\n\t\treturn inner(input ?? fallback, path)\n\t}\n\n\ttype.inner = inner\n\n\treturn type\n}\n\nexport const valueAt = (input: any, path: PropertyKey[]): unknown | undefined => {\n\tlet value = input\n\tfor (const key of path) {\n\t\tif (typeof value !== 'object' || value === null) {\n\t\t\treturn undefined\n\t\t}\n\t\tvalue = (value as any)[key]\n\t}\n\treturn value\n}\n\ntype EqualsWrapped<T> = T extends infer R & {} ? {\n\t\t[P in keyof R]: R[P]\n\t}\n\t: never\n\nexport type Equals<A, B> = (<T>() => T extends EqualsWrapped<A> ? 1 : 2) extends <T>() => T extends EqualsWrapped<B> ? 1 : 2 ? true\n\t: false\n"],"names":["transform"],"mappings":"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"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
type Unpacked<T> = T extends readonly (infer U)[] ? U : never;
|
|
2
|
+
export type JsonObject = {
|
|
3
|
+
readonly [P in string]?: Json;
|
|
4
|
+
};
|
|
5
|
+
export type Scalar = string | number | boolean | null;
|
|
6
|
+
export type Json = Scalar | readonly Json[] | JsonObject;
|
|
7
|
+
export interface Type<T extends Json | {
|
|
8
|
+
readonly [K in string]?: Json;
|
|
9
|
+
} | undefined = Json> {
|
|
10
|
+
(input: unknown, path?: PropertyKey[]): T;
|
|
11
|
+
readonly inner?: any;
|
|
12
|
+
}
|
|
13
|
+
export declare class ParseError extends Error {
|
|
14
|
+
readonly path: PropertyKey[];
|
|
15
|
+
readonly reason: string;
|
|
16
|
+
readonly expected?: string | undefined;
|
|
17
|
+
constructor(path: PropertyKey[], reason: string, expected?: string | undefined);
|
|
18
|
+
static format(input: unknown, path: PropertyKey[], expected: string): ParseError;
|
|
19
|
+
}
|
|
20
|
+
export declare const fail: (path: PropertyKey[], reason?: string) => never;
|
|
21
|
+
export declare const string: Type<string>;
|
|
22
|
+
export declare const number: Type<number>;
|
|
23
|
+
export declare const integer: Type<number>;
|
|
24
|
+
export declare const boolean: Type<boolean>;
|
|
25
|
+
export declare const scalar: Type<Scalar>;
|
|
26
|
+
export declare const anyJson: Type<Json>;
|
|
27
|
+
export declare const anyJsonObject: Type<JsonObject>;
|
|
28
|
+
export declare const literal: <T extends Json>(inner: T) => Type<T>;
|
|
29
|
+
export declare const array: <T extends Json>(inner: Type<T>) => Type<readonly T[]>;
|
|
30
|
+
export declare const object: <T extends Record<string, Type<Json>>>(inner: T) => Type<{ readonly [P in keyof T]: ReturnType<T[P]>; }>;
|
|
31
|
+
export declare const partial: <T extends Record<string, Type<Json | undefined>>>(inner: T) => {
|
|
32
|
+
(input: unknown, path?: PropertyKey[]): { readonly [P in keyof T]?: Exclude<ReturnType<T[P]>, undefined>; };
|
|
33
|
+
inner: T;
|
|
34
|
+
};
|
|
35
|
+
export declare const noExtraProps: <T extends JsonObject>(inner: Type<T>) => {
|
|
36
|
+
(input: unknown, path?: PropertyKey[]): T;
|
|
37
|
+
inner: Type<T>;
|
|
38
|
+
};
|
|
39
|
+
export declare const record: <K extends Type<string>, T extends Type<Json>>(key: K, value: T) => Type<{ readonly [P in ReturnType<K>]: ReturnType<T>; }>;
|
|
40
|
+
export declare const union: <T extends Type<Json>[]>(...inner: T) => Type<ReturnType<Unpacked<T>>>;
|
|
41
|
+
export declare const partiallyDiscriminatedUnion: <T extends Type<JsonObject>[]>(field: string, ...inner: T) => Type<ReturnType<Unpacked<T>>>;
|
|
42
|
+
export declare const discriminatedUnion: <F extends string, T extends {
|
|
43
|
+
[key: string]: JsonObject;
|
|
44
|
+
}>(field: F, inner: { [K in keyof T]: Type<T[K]>; }) => Type<{ [K in keyof T]: { [X in F]: K; } & T[K]; }[keyof T]>;
|
|
45
|
+
type TupleFromTupledType<T extends Type<Json>[]> = T extends [Type<infer X>, ...infer Y] ? (Y extends Type<Json>[] ? readonly [X, ...TupleFromTupledType<Y>] : readonly []) : readonly [];
|
|
46
|
+
export declare const tuple: <T extends Type<Json>[]>(...inner: T) => Type<TupleFromTupledType<T>>;
|
|
47
|
+
type DiscriminatedTupleUnionType<T extends Record<string, Type<Json>[]>> = {
|
|
48
|
+
[K in keyof T]: (readonly [K, ...TupleFromTupledType<T[K]>]);
|
|
49
|
+
}[keyof T & string];
|
|
50
|
+
export declare const discriminatedTupleUnion: <T extends Record<string, Type<Json>[]>>(inner: T) => Type<DiscriminatedTupleUnionType<T>>;
|
|
51
|
+
export declare const intersection: <T1 extends JsonObject, T2 extends JsonObject>(inner1: Type<T1>, inner2: Type<T2>) => Type<T1 & T2>;
|
|
52
|
+
export declare const enumeration: <T extends string>(...values: T[]) => Type<T>;
|
|
53
|
+
export declare const null_: Type<null>;
|
|
54
|
+
export declare const true_: Type<true>;
|
|
55
|
+
export declare const false_: Type<false>;
|
|
56
|
+
export declare const nullable: <T extends Json>(inner: Type<T>) => Type<T | null>;
|
|
57
|
+
export declare const preprocess: <Input extends Json>(inner: Type<Input>, transform: (input: unknown) => unknown) => (input: unknown, path?: PropertyKey[]) => Input;
|
|
58
|
+
export declare const transform: <Input extends Json, Result extends Json>(inner: Type<Input>, transform: (value: Input, input: unknown, path: PropertyKey[]) => Result) => (input: unknown, path?: PropertyKey[]) => Result;
|
|
59
|
+
export declare const coalesce: <T extends Json, F extends Json>(inner: Type<T>, fallback: F) => Type<T | F>;
|
|
60
|
+
export declare const valueAt: (input: any, path: PropertyKey[]) => unknown | undefined;
|
|
61
|
+
type EqualsWrapped<T> = T extends infer R & {} ? {
|
|
62
|
+
[P in keyof R]: R[P];
|
|
63
|
+
} : never;
|
|
64
|
+
export type Equals<A, B> = (<T>() => T extends EqualsWrapped<A> ? 1 : 2) extends <T>() => T extends EqualsWrapped<B> ? 1 : 2 ? true : false;
|
|
65
|
+
export {};
|
|
66
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +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.es2024.d.ts","../../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.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.es2024.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../src/index.ts","../../../../node_modules/@types/node/compatibility/iterators.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/crypto.d.ts","../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.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-stats.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/h2c-client.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-call-history.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/snapshot-agent.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/cache-interceptor.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/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/bun-types/globals.d.ts","../../../../node_modules/bun-types/s3.d.ts","../../../../node_modules/bun-types/fetch.d.ts","../../../../node_modules/bun-types/jsx.d.ts","../../../../node_modules/bun-types/bun.d.ts","../../../../node_modules/bun-types/extensions.d.ts","../../../../node_modules/bun-types/devserver.d.ts","../../../../node_modules/bun-types/ffi.d.ts","../../../../node_modules/bun-types/html-rewriter.d.ts","../../../../node_modules/bun-types/jsc.d.ts","../../../../node_modules/bun-types/sqlite.d.ts","../../../../node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../../node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../../node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../../node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../../node_modules/bun-types/vendor/expect-type/index.d.ts","../../../../node_modules/bun-types/test.d.ts","../../../../node_modules/bun-types/wasm.d.ts","../../../../node_modules/bun-types/overrides.d.ts","../../../../node_modules/bun-types/deprecated.d.ts","../../../../node_modules/bun-types/redis.d.ts","../../../../node_modules/bun-types/shell.d.ts","../../../../node_modules/bun-types/serve.d.ts","../../../../node_modules/bun-types/sql.d.ts","../../../../node_modules/bun-types/security.d.ts","../../../../node_modules/bun-types/bundle.d.ts","../../../../node_modules/bun-types/bun.ns.d.ts","../../../../node_modules/bun-types/index.d.ts","../../../../node_modules/@types/bun/index.d.ts"],"fileIdsList":[[97,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227,230],[97,149,150,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,151,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,157,169,170,187,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,153,158,163,169,170,172,184,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,153,154,163,169,170,172,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,155,169,170,196,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,156,157,164,169,170,173,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,157,169,170,184,192,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,158,160,163,169,170,172,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,151,152,159,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,160,161,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,162,163,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,151,152,163,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,164,165,169,170,184,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,164,165,169,170,179,184,187,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,144,152,160,163,166,169,170,172,184,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,164,166,167,169,170,172,184,192,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,166,168,169,170,184,192,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[95,96,97,98,99,100,101,102,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,201,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,171,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,160,163,169,170,172,184,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,173,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,174,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,151,152,169,170,175,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,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,201,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,177,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,178,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,169,170,179,180,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,179,181,196,198,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,164,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,169,170,184,185,187,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,186,187,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,184,185,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,187,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,188,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,149,152,169,170,184,189,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,163,169,170,190,191,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,190,191,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,157,169,170,172,184,192,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,193,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,172,194,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,166,169,170,178,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,157,169,170,196,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,184,197,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,171,198,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,199,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,157,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,144,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,200,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,144,152,163,165,169,170,175,184,187,195,197,198,200,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,184,201,203,204,205,207,209,220,221,222,223,224,225,226,227],[90,91,97,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[92,97,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,144,152,157,164,166,169,170,192,196,200,203,204,205,206,209,210,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,220,221,223,224,225,226,227],[97,152,169,170,203,204,205,207,220,221,222,223,224,225,226,227],[97,144,152,169,170,203,204,207,209,220,221,222,223,224,225,226,227],[97,144,152,157,169,170,175,184,187,192,196,200,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,202,203,204,205,207,208,209,210,211,212,213,219,220,221,222,223,224,225,226,227,228,229],[14,97,98,152,155,157,164,165,169,170,173,187,192,195,201,203,204,205,207,209,220,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,220,221,222,224,225,226,227],[97,152,164,169,170,203,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226],[97,152,169,170,203,204,205,207,209,220,221,222,223,224,226,227],[97,152,169,170,203,204,205,207,209,220,221,222,223,225,226,227],[97,152,169,170,203,204,205,207,209,213,220,221,222,223,224,225,227],[97,152,169,170,203,204,205,207,209,218,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,214,215,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,214,215,216,217,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,214,216,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,214,220,221,222,223,224,225,226,227],[97,152,169,170,203,204,205,207,209,221,222,223,224,225,226,227],[97,110,113,116,117,152,169,170,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,152,169,170,184,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,117,152,169,170,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,184,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,107,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,111,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,109,110,113,152,169,170,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,172,192,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,152,169,170,202,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,107,152,169,170,202,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,109,113,152,169,170,172,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,104,105,106,108,112,152,163,169,170,184,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,121,129,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,105,111,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,138,139,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,105,108,113,152,169,170,187,195,202,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,109,113,152,169,170,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,104,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,107,108,109,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,131,134,152,160,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,121,122,123,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,111,113,122,124,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,112,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,105,107,113,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,117,122,124,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,117,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,111,113,116,152,169,170,195,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,105,109,113,121,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,113,131,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,124,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227],[97,107,113,138,152,169,170,187,200,202,203,204,205,207,209,220,221,222,223,224,225,226,227],[93,97,152,169,170,203,204,205,207,209,220,221,222,223,224,225,226,227]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"09dd84174216fda2fc7e97303031ce0fa2d9f94d66ffce7efbd42134728b710c","signature":"5dba60c20c6ba4771fced29dae4f4f3e5b9506b11b07457019d4dab99bccabad"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"0904660ae854e6d41f6ff25356db1d654436c6305b0f0aa89d1532df0253486e","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"0e5974dfff7a97181c7c376545f126b20acf2f1341db7d3fccea4977bf3ce19c","impliedFormat":1},{"version":"c7f977ea78a1b060a30554c1c4ec0e2269c6e305a349ca2ada14931ac27ecc0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bf3fe89ec8baa335f6370b9fa36308e1bc7a72e2eb2dad1e94f31e27fa28b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"35390d6fa94bdb432c5d0bcb6547bdd11406c2692a6b90b9e47be2105ea19bd6","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"8d117798e5228c7fdff887f44851d07320739c5cc0d511afae8f250c51809a36","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"8e7c3bed5f19ade8f911677ddc83052e2283e25b0a8654cd89db9079d4b323c7","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ccf3afaeebbeee4ca9092101e99fd6abd681116b6e5ec23e381bbb1e1f32262c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"ab7818a9d57a9297b90e456fc68b77f84d74395a9210a3cfa9d87db33aff8b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb08062718a5470cd864c1fae0eb5b3a3adc5bcd05dcf87608d6f60b65eca3f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3a815b7d1aebc0646b91548eab2fc19dada09ff255d04c71ced00bbd3058c8eb","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"836b36913830645ac3b28fe33731aac3fdb3524ee8adbb4cdab9a5c189f41943","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"314607151cc203975193d5f44765f38597be3b0a43f466d3c1bfb17176dd3bd3","impliedFormat":1},{"version":"c0aefa42fc76bf16b3d00c983405a9ad7bcde623caabc598d66d93d3c4aa7c54","impliedFormat":1},{"version":"f40aad6c91017f20fc542f5701ec41e0f6aeba63c61bbf7aa13266ec29a50a3b","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"998da6b85ebace9ebea67040dd1a640f0156064e3d28dbe9bd9c0229b6f72347","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[94],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[231,1],[149,2],[150,2],[151,3],[97,4],[152,5],[153,6],[154,7],[95,8],[155,9],[156,10],[157,11],[158,12],[159,13],[160,14],[161,14],[162,15],[163,16],[164,17],[165,18],[98,8],[96,8],[166,19],[167,20],[168,21],[202,22],[169,23],[170,8],[171,24],[172,25],[173,26],[174,27],[175,28],[176,29],[177,30],[178,31],[179,32],[180,32],[181,33],[182,8],[183,34],[184,35],[186,36],[185,37],[187,38],[188,39],[189,40],[190,41],[191,42],[192,43],[193,44],[194,45],[195,46],[196,47],[197,48],[198,49],[199,50],[99,8],[100,51],[101,8],[102,8],[145,52],[146,53],[147,8],[148,38],[200,54],[201,55],[90,8],[92,56],[93,57],[103,8],[207,58],[229,8],[228,8],[222,59],[209,60],[208,8],[205,61],[210,8],[203,62],[211,8],[230,63],[212,8],[206,8],[221,64],[223,65],[204,66],[227,67],[225,68],[224,69],[226,70],[213,8],[219,71],[216,72],[218,73],[217,74],[215,75],[214,8],[220,76],[91,8],[88,8],[89,8],[14,8],[15,8],[17,8],[16,8],[2,8],[18,8],[19,8],[20,8],[21,8],[22,8],[23,8],[24,8],[25,8],[3,8],[26,8],[27,8],[4,8],[28,8],[32,8],[29,8],[30,8],[31,8],[33,8],[34,8],[35,8],[5,8],[36,8],[37,8],[38,8],[39,8],[6,8],[43,8],[40,8],[41,8],[42,8],[44,8],[7,8],[45,8],[50,8],[51,8],[46,8],[47,8],[48,8],[49,8],[8,8],[55,8],[52,8],[53,8],[54,8],[56,8],[9,8],[57,8],[58,8],[59,8],[61,8],[60,8],[62,8],[63,8],[10,8],[64,8],[65,8],[66,8],[11,8],[67,8],[68,8],[69,8],[70,8],[71,8],[72,8],[12,8],[73,8],[74,8],[75,8],[76,8],[77,8],[1,8],[78,8],[79,8],[13,8],[80,8],[81,8],[82,8],[83,8],[84,8],[85,8],[86,8],[87,8],[121,77],[133,78],[119,79],[134,80],[143,81],[110,82],[111,83],[109,84],[142,85],[137,86],[141,87],[113,88],[130,89],[112,90],[140,91],[107,92],[108,86],[114,93],[115,8],[120,94],[118,93],[105,95],[144,96],[135,97],[124,98],[123,93],[125,99],[128,100],[122,101],[126,102],[138,85],[116,103],[117,104],[129,105],[106,80],[132,106],[131,93],[127,107],[136,8],[104,8],[139,108],[94,109]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.1-rc"}
|