@tutao/tutanota-utils 287.250602.0 → 287.250605.0
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/ArrayUtils.d.ts +4 -0
- package/dist/ArrayUtils.js +10 -0
- package/dist/CollectionUtils.d.ts +4 -0
- package/dist/CollectionUtils.js +12 -0
- package/dist/Utils.d.ts +0 -18
- package/dist/Utils.js +0 -48
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -4
- package/dist/memoized.d.ts +19 -0
- package/dist/memoized.js +48 -0
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/ArrayUtils.d.ts
CHANGED
|
@@ -3,6 +3,10 @@ export declare function concat(...arrays: Uint8Array[]): Uint8Array;
|
|
|
3
3
|
* Create an array filled with the numbers min..max (inclusive)
|
|
4
4
|
*/
|
|
5
5
|
export declare function numberRange(min: number, max: number): Array<number>;
|
|
6
|
+
/**
|
|
7
|
+
* Create a generator for integer range in [min; max).
|
|
8
|
+
*/
|
|
9
|
+
export declare function lazyNumberRange(min: number, max: number): Generator<number>;
|
|
6
10
|
/**
|
|
7
11
|
* Compares two arrays for equality based on ===.
|
|
8
12
|
* @param {Array} a1 The first array.
|
package/dist/ArrayUtils.js
CHANGED
|
@@ -16,6 +16,16 @@ export function concat(...arrays) {
|
|
|
16
16
|
export function numberRange(min, max) {
|
|
17
17
|
return [...Array(max + 1).keys()].slice(min);
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* Create a generator for integer range in [min; max).
|
|
21
|
+
*/
|
|
22
|
+
export function* lazyNumberRange(min, max) {
|
|
23
|
+
let current = min;
|
|
24
|
+
while (current < max) {
|
|
25
|
+
yield current;
|
|
26
|
+
current++;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
19
29
|
/**
|
|
20
30
|
* Compares two arrays for equality based on ===.
|
|
21
31
|
* @param {Array} a1 The first array.
|
|
@@ -27,3 +27,7 @@ export declare function trisectingDiff<T>(before: ReadonlyMap<unknown, T>, after
|
|
|
27
27
|
added: Array<T>;
|
|
28
28
|
deleted: Array<T>;
|
|
29
29
|
};
|
|
30
|
+
/**
|
|
31
|
+
* return a new set containing every item from {@param set1} that isn't in {@param set2}
|
|
32
|
+
*/
|
|
33
|
+
export declare function setDifference<T>(set1: ReadonlySet<T>, set2: ReadonlySet<T>): Set<T>;
|
package/dist/CollectionUtils.js
CHANGED
|
@@ -103,3 +103,15 @@ export function trisectingDiff(before, after) {
|
|
|
103
103
|
}
|
|
104
104
|
return { kept, added, deleted };
|
|
105
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* return a new set containing every item from {@param set1} that isn't in {@param set2}
|
|
108
|
+
*/
|
|
109
|
+
export function setDifference(set1, set2) {
|
|
110
|
+
const result = new Set();
|
|
111
|
+
for (const item of set1) {
|
|
112
|
+
if (!set2.has(item)) {
|
|
113
|
+
result.add(item);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
return result;
|
|
117
|
+
}
|
package/dist/Utils.d.ts
CHANGED
|
@@ -72,12 +72,6 @@ export declare function isNotNull<T>(t: T | null | undefined): t is T;
|
|
|
72
72
|
export declare function assert(assertion: MaybeLazy<boolean>, message: string): void;
|
|
73
73
|
export declare function downcast<R = any>(object: any): R;
|
|
74
74
|
export declare function clone<T>(instance: T): T;
|
|
75
|
-
/**
|
|
76
|
-
* Function which accepts another function. On first invocation
|
|
77
|
-
* of this resulting function result will be remembered and returned
|
|
78
|
-
* on consequent invocations.
|
|
79
|
-
*/
|
|
80
|
-
export declare function lazyMemoized<T>(source: () => T): lazy<T>;
|
|
81
75
|
export type Callback<T> = (arg: T) => void;
|
|
82
76
|
/**
|
|
83
77
|
* accept a function taking exactly one argument and returning nothing and return a version of it
|
|
@@ -85,18 +79,6 @@ export type Callback<T> = (arg: T) => void;
|
|
|
85
79
|
* @param fn a function taking one argument and returning nothing
|
|
86
80
|
*/
|
|
87
81
|
export declare function makeSingleUse<T>(fn: Callback<T>): Callback<T>;
|
|
88
|
-
/**
|
|
89
|
-
* Returns a cached version of {@param fn}.
|
|
90
|
-
* Cached function checks that argument is the same (with ===) and if it is then it returns the cached result.
|
|
91
|
-
* If the cached argument has changed then {@param fn} will be called with new argument and result will be cached again.
|
|
92
|
-
* Only remembers the last argument.
|
|
93
|
-
*/
|
|
94
|
-
export declare function memoized<F extends (...args: any[]) => any>(fn: F): F;
|
|
95
|
-
/**
|
|
96
|
-
* Like {@link memoized} but the argument is passed in via {@param argumentProvider}.
|
|
97
|
-
* Useful for the cases where we want to keep only one field around e.g. for lazy getters
|
|
98
|
-
*/
|
|
99
|
-
export declare function memoizedWithHiddenArgument<T, R>(argumentProvider: () => T, computationFunction: (arg: T) => R): () => R;
|
|
100
82
|
/**
|
|
101
83
|
* Function which returns what was passed into it
|
|
102
84
|
*/
|
package/dist/Utils.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { TypeRef } from "./TypeRef.js";
|
|
2
|
-
import { arrayEquals } from "./ArrayUtils.js";
|
|
3
2
|
export function isKeyVersion(version) {
|
|
4
3
|
// we do not check the upper boundary (100) because this is just a limitation of the type system not a real one
|
|
5
4
|
return Number.isInteger(version) && version >= 0;
|
|
@@ -123,25 +122,6 @@ export function clone(instance) {
|
|
|
123
122
|
return instance;
|
|
124
123
|
}
|
|
125
124
|
}
|
|
126
|
-
/**
|
|
127
|
-
* Function which accepts another function. On first invocation
|
|
128
|
-
* of this resulting function result will be remembered and returned
|
|
129
|
-
* on consequent invocations.
|
|
130
|
-
*/
|
|
131
|
-
export function lazyMemoized(source) {
|
|
132
|
-
// Using separate variable for tracking because value can be undefined and we want to the function call only once
|
|
133
|
-
let cached = false;
|
|
134
|
-
let value;
|
|
135
|
-
return () => {
|
|
136
|
-
if (cached) {
|
|
137
|
-
return value;
|
|
138
|
-
}
|
|
139
|
-
else {
|
|
140
|
-
cached = true;
|
|
141
|
-
return (value = source());
|
|
142
|
-
}
|
|
143
|
-
};
|
|
144
|
-
}
|
|
145
125
|
/**
|
|
146
126
|
* accept a function taking exactly one argument and returning nothing and return a version of it
|
|
147
127
|
* that will call the original function on the first call and ignore any further calls.
|
|
@@ -156,34 +136,6 @@ export function makeSingleUse(fn) {
|
|
|
156
136
|
}
|
|
157
137
|
};
|
|
158
138
|
}
|
|
159
|
-
/**
|
|
160
|
-
* Returns a cached version of {@param fn}.
|
|
161
|
-
* Cached function checks that argument is the same (with ===) and if it is then it returns the cached result.
|
|
162
|
-
* If the cached argument has changed then {@param fn} will be called with new argument and result will be cached again.
|
|
163
|
-
* Only remembers the last argument.
|
|
164
|
-
*/
|
|
165
|
-
export function memoized(fn) {
|
|
166
|
-
let lastArgs;
|
|
167
|
-
let lastResult;
|
|
168
|
-
let didCache = false;
|
|
169
|
-
const memoizedFunction = (...args) => {
|
|
170
|
-
if (!didCache || !arrayEquals(lastArgs, args)) {
|
|
171
|
-
lastArgs = args;
|
|
172
|
-
didCache = true;
|
|
173
|
-
lastResult = fn(...args);
|
|
174
|
-
}
|
|
175
|
-
return lastResult;
|
|
176
|
-
};
|
|
177
|
-
return memoizedFunction;
|
|
178
|
-
}
|
|
179
|
-
/**
|
|
180
|
-
* Like {@link memoized} but the argument is passed in via {@param argumentProvider}.
|
|
181
|
-
* Useful for the cases where we want to keep only one field around e.g. for lazy getters
|
|
182
|
-
*/
|
|
183
|
-
export function memoizedWithHiddenArgument(argumentProvider, computationFunction) {
|
|
184
|
-
const memoizedComputation = memoized(computationFunction);
|
|
185
|
-
return () => memoizedComputation(argumentProvider());
|
|
186
|
-
}
|
|
187
139
|
/**
|
|
188
140
|
* Function which returns what was passed into it
|
|
189
141
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { concat, numberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, isNotEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count, zeroOut, compare, collectToMap, } from "./ArrayUtils.js";
|
|
1
|
+
export { concat, numberRange, lazyNumberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, isNotEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count, zeroOut, compare, collectToMap, } from "./ArrayUtils.js";
|
|
2
2
|
export { AsyncResult } from "./AsyncResult.js";
|
|
3
|
-
export { intersection, trisectingDiff, setAddAll, max, maxBy, findBy, min, minBy, mapWith, mapWithout, setEquals, setMap } from "./CollectionUtils.js";
|
|
3
|
+
export { intersection, trisectingDiff, setAddAll, max, maxBy, findBy, min, minBy, mapWith, mapWithout, setEquals, setMap, setDifference, } from "./CollectionUtils.js";
|
|
4
4
|
export { DAY_IN_MILLIS, YEAR_IN_MILLIS, getStartOfNextDay, getEndOfDay, getStartOfDay, getHourOfDay, isStartOfDay, isToday, isSameDay, getDayShifted, incrementDate, incrementMonth, isSameDayOfDate, formatSortableDate, formatSortableDateTime, sortableTimestamp, isValidDate, millisToDays, daysToMillis, TIMESTAMP_ZERO_YEAR, } from "./DateUtils.js";
|
|
5
5
|
export { uint8ArrayToArrayBuffer, hexToBase64, base64ToHex, base64ToBase64Url, base64ToBase64Ext, base64ExtToBase64, base64UrlToBase64, stringToUtf8Uint8Array, utf8Uint8ArrayToString, hexToUint8Array, uint8ArrayToHex, uint8ArrayToBase64, int8ArrayToBase64, base64ToUint8Array, uint8ArrayToString, decodeQuotedPrintable, decodeBase64, stringToBase64, byteArraysToBytes, bytesToByteArrays, } from "./Encoding.js";
|
|
6
6
|
export type { Base64, Base64Ext, Base64Url, Hex } from "./Encoding.js";
|
|
@@ -13,10 +13,11 @@ export type { PromiseMapFn, $Promisable } from "./PromiseUtils.js";
|
|
|
13
13
|
export { SortedArray } from "./SortedArray.js";
|
|
14
14
|
export type { CompareFn } from "./SortedArray.js";
|
|
15
15
|
export { pad, startsWith, capitalizeFirstLetter, endsWith, lazyStringValue, repeat, cleanMatch, NBSP, splitAt, toLowerCase, localeCompare, byteLength, } from "./StringUtils.js";
|
|
16
|
-
export { TypeRef, isSameTypeRefByAttr, isSameTypeRef, getTypeString, isSameTypeRefNullable, AppNameEnum, AppName } from "./TypeRef.js";
|
|
17
|
-
export { defer, deferWithHandler, asyncFind, asyncFindAndMap, executeInGroups, neverNull, assertNotNull, assertNonNull, assert, isNotNull, downcast, clone,
|
|
16
|
+
export { TypeRef, isSameTypeRefByAttr, isSameTypeRef, getTypeString, parseTypeString, isSameTypeRefNullable, AppNameEnum, AppName } from "./TypeRef.js";
|
|
17
|
+
export { defer, deferWithHandler, asyncFind, asyncFindAndMap, executeInGroups, neverNull, assertNotNull, assertNonNull, assert, isNotNull, downcast, clone, makeSingleUse, identity, noOp, debounce, debounceStart, randomIntFromInterval, errorToString, objectEntries, deepEqual, getChangedProps, freezeMap, addressDomain, typedKeys, typedEntries, typedValues, resolveMaybeLazy, getAsLazy, mapLazily, filterInt, insideRect, mapNullable, mapObject, Require, BoundedExecutor, freshVersioned, isKeyVersion, } from "./Utils.js";
|
|
18
18
|
export type { Callback, DeferredObject, lazy, lazyAsync, Thunk, DeferredObjectWithHandler, MaybeLazy, TimeoutSetter, ErrorInfo, Versioned, KeyVersion, } from "./Utils.js";
|
|
19
19
|
export { callWebAssemblyFunctionWithArguments, allocateBuffer, Ptr, ConstPtr, FreeFN, MutableUint8Array, SecureFreeUint8Array, mutableSecureFree, secureFree, mutable, WASMExports, } from "./WebAssembly.js";
|
|
20
20
|
export { mod, clamp } from "./MathUtils.js";
|
|
21
21
|
export { renderCsv } from "./Csv.js";
|
|
22
22
|
export { tokenize } from "./Tokenizer.js";
|
|
23
|
+
export { memoizedWithHiddenArgument, memoized, lazyMemoized } from "./memoized.js";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { concat, numberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, isNotEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count, zeroOut, compare, collectToMap, } from "./ArrayUtils.js";
|
|
1
|
+
export { concat, numberRange, lazyNumberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, isNotEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count, zeroOut, compare, collectToMap, } from "./ArrayUtils.js";
|
|
2
2
|
export { AsyncResult } from "./AsyncResult.js";
|
|
3
|
-
export { intersection, trisectingDiff, setAddAll, max, maxBy, findBy, min, minBy, mapWith, mapWithout, setEquals, setMap } from "./CollectionUtils.js";
|
|
3
|
+
export { intersection, trisectingDiff, setAddAll, max, maxBy, findBy, min, minBy, mapWith, mapWithout, setEquals, setMap, setDifference, } from "./CollectionUtils.js";
|
|
4
4
|
export { DAY_IN_MILLIS, YEAR_IN_MILLIS, getStartOfNextDay, getEndOfDay, getStartOfDay, getHourOfDay, isStartOfDay, isToday, isSameDay, getDayShifted, incrementDate, incrementMonth, isSameDayOfDate, formatSortableDate, formatSortableDateTime, sortableTimestamp, isValidDate, millisToDays, daysToMillis, TIMESTAMP_ZERO_YEAR, } from "./DateUtils.js";
|
|
5
5
|
export { uint8ArrayToArrayBuffer, hexToBase64, base64ToHex, base64ToBase64Url, base64ToBase64Ext, base64ExtToBase64, base64UrlToBase64, stringToUtf8Uint8Array, utf8Uint8ArrayToString, hexToUint8Array, uint8ArrayToHex, uint8ArrayToBase64, int8ArrayToBase64, base64ToUint8Array, uint8ArrayToString, decodeQuotedPrintable, decodeBase64, stringToBase64, byteArraysToBytes, bytesToByteArrays, } from "./Encoding.js";
|
|
6
6
|
export { LazyLoaded } from "./LazyLoaded.js";
|
|
@@ -9,9 +9,10 @@ export { pMap } from "./PromiseMap.js";
|
|
|
9
9
|
export { mapInCallContext, promiseMap, promiseMapCompat, PromisableWrapper, delay, tap, ofClass, promiseFilter, settledThen } from "./PromiseUtils.js";
|
|
10
10
|
export { SortedArray } from "./SortedArray.js";
|
|
11
11
|
export { pad, startsWith, capitalizeFirstLetter, endsWith, lazyStringValue, repeat, cleanMatch, NBSP, splitAt, toLowerCase, localeCompare, byteLength, } from "./StringUtils.js";
|
|
12
|
-
export { TypeRef, isSameTypeRefByAttr, isSameTypeRef, getTypeString, isSameTypeRefNullable, AppNameEnum } from "./TypeRef.js";
|
|
13
|
-
export { defer, deferWithHandler, asyncFind, asyncFindAndMap, executeInGroups, neverNull, assertNotNull, assertNonNull, assert, isNotNull, downcast, clone,
|
|
12
|
+
export { TypeRef, isSameTypeRefByAttr, isSameTypeRef, getTypeString, parseTypeString, isSameTypeRefNullable, AppNameEnum } from "./TypeRef.js";
|
|
13
|
+
export { defer, deferWithHandler, asyncFind, asyncFindAndMap, executeInGroups, neverNull, assertNotNull, assertNonNull, assert, isNotNull, downcast, clone, makeSingleUse, identity, noOp, debounce, debounceStart, randomIntFromInterval, errorToString, objectEntries, deepEqual, getChangedProps, freezeMap, addressDomain, typedKeys, typedEntries, typedValues, resolveMaybeLazy, getAsLazy, mapLazily, filterInt, insideRect, mapNullable, mapObject, BoundedExecutor, freshVersioned, isKeyVersion, } from "./Utils.js";
|
|
14
14
|
export { callWebAssemblyFunctionWithArguments, allocateBuffer, MutableUint8Array, SecureFreeUint8Array, mutableSecureFree, secureFree, mutable, } from "./WebAssembly.js";
|
|
15
15
|
export { mod, clamp } from "./MathUtils.js";
|
|
16
16
|
export { renderCsv } from "./Csv.js";
|
|
17
17
|
export { tokenize } from "./Tokenizer.js";
|
|
18
|
+
export { memoizedWithHiddenArgument, memoized, lazyMemoized } from "./memoized.js";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { lazy } from "./Utils.js";
|
|
2
|
+
/**
|
|
3
|
+
* Function which accepts another function. On first invocation
|
|
4
|
+
* of this resulting function result will be remembered and returned
|
|
5
|
+
* on consequent invocations.
|
|
6
|
+
*/
|
|
7
|
+
export declare function lazyMemoized<T>(source: () => T): lazy<T>;
|
|
8
|
+
/**
|
|
9
|
+
* Returns a cached version of {@param fn}.
|
|
10
|
+
* Cached function checks that argument is the same (with ===) and if it is then it returns the cached result.
|
|
11
|
+
* If the cached argument has changed then {@param fn} will be called with new argument and result will be cached again.
|
|
12
|
+
* Only remembers the last argument.
|
|
13
|
+
*/
|
|
14
|
+
export declare function memoized<F extends (...args: any[]) => any>(fn: F): F;
|
|
15
|
+
/**
|
|
16
|
+
* Like {@link memoized} but the argument is passed in via {@param argumentProvider}.
|
|
17
|
+
* Useful for the cases where we want to keep only one field around e.g. for lazy getters
|
|
18
|
+
*/
|
|
19
|
+
export declare function memoizedWithHiddenArgument<T, R>(argumentProvider: () => T, computationFunction: (arg: T) => R): () => R;
|
package/dist/memoized.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { arrayEquals } from "./ArrayUtils.js";
|
|
2
|
+
/**
|
|
3
|
+
* Function which accepts another function. On first invocation
|
|
4
|
+
* of this resulting function result will be remembered and returned
|
|
5
|
+
* on consequent invocations.
|
|
6
|
+
*/
|
|
7
|
+
export function lazyMemoized(source) {
|
|
8
|
+
// Using separate variable for tracking because value can be undefined and we want to the function call only once
|
|
9
|
+
let cached = false;
|
|
10
|
+
let value;
|
|
11
|
+
return () => {
|
|
12
|
+
if (cached) {
|
|
13
|
+
return value;
|
|
14
|
+
}
|
|
15
|
+
else {
|
|
16
|
+
cached = true;
|
|
17
|
+
return (value = source());
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Returns a cached version of {@param fn}.
|
|
23
|
+
* Cached function checks that argument is the same (with ===) and if it is then it returns the cached result.
|
|
24
|
+
* If the cached argument has changed then {@param fn} will be called with new argument and result will be cached again.
|
|
25
|
+
* Only remembers the last argument.
|
|
26
|
+
*/
|
|
27
|
+
export function memoized(fn) {
|
|
28
|
+
let lastArgs;
|
|
29
|
+
let lastResult;
|
|
30
|
+
let didCache = false;
|
|
31
|
+
const memoizedFunction = (...args) => {
|
|
32
|
+
if (!didCache || !arrayEquals(lastArgs, args)) {
|
|
33
|
+
lastArgs = args;
|
|
34
|
+
didCache = true;
|
|
35
|
+
lastResult = fn(...args);
|
|
36
|
+
}
|
|
37
|
+
return lastResult;
|
|
38
|
+
};
|
|
39
|
+
return memoizedFunction;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Like {@link memoized} but the argument is passed in via {@param argumentProvider}.
|
|
43
|
+
* Useful for the cases where we want to keep only one field around e.g. for lazy getters
|
|
44
|
+
*/
|
|
45
|
+
export function memoizedWithHiddenArgument(argumentProvider, computationFunction) {
|
|
46
|
+
const memoizedComputation = memoized(computationFunction);
|
|
47
|
+
return () => memoizedComputation(argumentProvider());
|
|
48
|
+
}
|
package/dist/tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.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.sharedmemory.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/TypeRef.ts","../lib/Utils.ts","../lib/MapUtils.ts","../lib/ArrayUtils.ts","../lib/AsyncResult.ts","../lib/CollectionUtils.ts","../lib/Csv.ts","../lib/DateUtils.ts","../lib/Encoding.ts","../lib/LazyLoaded.ts","../lib/MathUtils.ts","../lib/PromiseMap.ts","../lib/PromiseUtils.ts","../lib/SortedArray.ts","../lib/StringUtils.ts","../lib/Tokenizer.ts","../lib/WebAssembly.ts","../lib/index.ts","../../../types/globals.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.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/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/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/globals.global.d.ts","../../../node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"5746fca0ef5189a855357e258108524603574457c811ce8143e3279efde9f5b6","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"1a517f574628ade7a4ed5140555289e161bf656e28977de55275421ef930008a","signature":"9dcb1aadce4ea5e865d5a1ce530a702f3bf14324e0ac5466f5faeed7d2937ef7"},{"version":"742324fdc75b428d46f0bde1e827f93024de3edcc59669d320357306956697d8","signature":"f4edb595b98eb8508039ae0d5df1ecf2764132ee85d52622c0da45c332bc0c19"},{"version":"9db05fdd9cc71542ba95142e1a9b5a4d94f0a5d81e31e3ffab12009f20804036","signature":"43353f0a230e916576ebc6316601b47d42250bfe9b11d73ac77e2a49059d6ef0"},{"version":"ded71e5b11ab977050d2f2a8c86fedbb098219f608d50dbcd1eec5324f23eaf1","signature":"3bfcf17c1c8311848e4b08bac1d0d3e0a223a3b4b4f72e0ab03e04d26e237b72"},{"version":"3d111ac9e9c03126fb8fca5d8453c2ba353c0fb699610beeeb83530adb32d0da","signature":"fe357ec2df98dd3099a24e46378e48a962cfc060700a60b956e1edb78fbd6945"},{"version":"02d8d08657c02006d8c63cc8a8726ae8f8c3bd3edb27649e342427c6454956a0","signature":"6ce2a899d9c07481e95ef3b259ebc65ace1c6b8938b94fc1c94237f717740284"},{"version":"e1ad39c041ebe934ecba32093aa1b1032520db0993239d9e83c641898c7e44d7","signature":"e4c70ab653202cf579d697dd9f7c4134c427723c791a760a9ee76593c5201706"},{"version":"afade989af319e98dd75856a70987a2a00eaf453b75efe20046b32a608529012","signature":"9cddd6c237826f36add2decaad02b7f5d2cc9b11967c75e9b03c4346b4a37378"},{"version":"0d36ef407a9c449e510305e4a25b6d6da0204734f4cd59e7b3905e809a6efc47","signature":"b741cdc69204cb608d1a69cbce63f002bd5b45e607e8ee269bd9cdaf5a568c8d"},{"version":"d9b69a349e5a9051cbef921ffaa0f035418cf1d59b30d87625f360d16b50c565","signature":"d00b7ca683f871487761454e06bf22a02ec61822acc203ed3468b64308015c34"},{"version":"f2376cb45d3b18286678b2f98b99be8d518f1ee012da1de285588a6af827cb06","signature":"f2f97bf1d679cf78001b997487a399d624c2eaa3f5783754c08bd3b58c60fadb"},{"version":"19e83bd4d86a1b8ce35a47456eabc3bcd4202ce20b523176715eb487f32f2872","signature":"ddfc56edb0e758326659ad046088e892e1e80e0a60f4179dc742b7e6b1fcc961"},{"version":"af8bf6c94593cf31ebcf1019054d8f5c32d60a1079b91bde31569ca12431629f","signature":"4e1a189df8d26b882701748ae07c5054471b5c67bb5cf2330d26fec0b6a16ed6"},{"version":"c4d9a5c2c13ada6a036dff6ba366d6f5ba4ca96e113f4e7e89f51ce253045a33","signature":"b5f2b568fadab7a51d2ba69199fb0af6d8a13594281ef6f3a561e0f9a82fc483"},{"version":"e93a17f8aff4e338272b6baf00d4dbe33f16e591e085c4e288dcb99c7e8ded58","signature":"a2ce8a142d300930928eadaee5ddd1f724aafc24c8efddce63bbf8787fe82e27"},{"version":"0fdf4c026079edf1d12848918a8b391d9ac9077afeb7bc7ab2e3dcf0d5ff3548","signature":"f597c179836327684f463b6ff8ba92893ce927820051007b297079fde3235601"},{"version":"73a5fc2a1d811ddff6cc976595c14da9392725b94903b0bb4c06abb8a77d515c","signature":"504b66ba4300bb0583b106c0a0128c91933e68fdc68d7acb7aeb01c56b808397"},{"version":"08bd16aa481844c4521995fe7d19292852a284eaf068925948bc4656438fc328","signature":"506ac83f5dacd282628663dc6804e54917a59dad8d1cb3f4b4cde121d3535a8b"},{"version":"effefe6914de0718f5bad1c853cc625eaaf1d6c570aeb666c1bb125dd15622eb","affectsGlobalScope":true},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true},"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true},"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0",{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"42a872b757f365f61369e869f8403ec1e78b5a85418622801011009a1430d87f","affectsGlobalScope":true},"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6",{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true},"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true},"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true},"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true},"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a"],"root":[[60,78]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"checkJs":false,"composite":true,"declaration":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":true,"noImplicitThis":true,"noStrictGenericChecks":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../lib","skipLibCheck":true,"strict":false,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./tsbuildinfo","useUnknownInCatchVariables":false},"fileIdsList":[[80,81,123],[80,122,123],[80,123,128,158],[80,123,124,129,135,136,143,155,166],[80,123,124,125,135,143],[80,123,126,167],[80,123,127,128,136,144],[80,123,128,155,163],[80,123,129,131,135,143],[80,122,123,130],[80,123,131,132],[80,123,135],[80,123,133,135],[80,122,123,135],[80,123,135,136,137,155,166],[80,123,135,136,137,150,155,158],[80,120,123,171],[80,123],[80,120,123,131,135,138,143,155,166],[80,123,135,136,138,139,143,155,163,166],[80,123,138,140,155,163,166],[80,123,135,141],[80,123,142,166,171],[80,123,131,135,143,155],[80,123,144],[80,123,145],[80,122,123,146],[80,81,82,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,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],[80,123,148],[80,123,149],[80,123,135,150,151],[80,123,150,152,167,169],[80,123,135,155,156,157,158],[80,123,155,157],[80,123,155,156],[80,123,158],[80,123,159],[80,81,123,155],[80,123,135,161,162],[80,123,161,162],[80,123,128,143,155,163],[80,123,164],[123],[79,80,81,82,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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],[80,123,143,165],[80,123,138,149,166],[80,123,128,167],[80,123,155,168],[80,123,142,169],[80,123,170],[80,123,128,135,137,146,155,166,169,171],[80,123,155,172],[80,92,96,123,166],[80,92,123,155,166],[80,87,123],[80,89,92,123,163,166],[80,123,143,163],[80,123,174],[80,87,123,174],[80,89,92,123,143,166],[80,84,85,88,91,123,135,155,166],[80,92,99,123],[80,84,90,123],[80,92,113,114,123],[80,88,92,123,158,166,174],[80,113,123,174],[80,86,87,123,174],[80,92,123],[80,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,123],[80,92,107,123],[80,92,99,100,123],[80,90,92,100,101,123],[80,91,123],[80,84,87,92,123],[80,92,96,100,101,123],[80,96,123],[80,90,92,95,123,166],[80,84,89,92,99,123],[80,123,155],[80,87,92,113,123,171,174],[61,62,80,123],[61,80,123],[71,80,123],[63,80,123],[60,63,80,123],[68,80,123],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,80,123],[61],[71],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76]],"referencedMap":[[81,1],[82,1],[122,2],[123,3],[124,4],[125,5],[126,6],[127,7],[128,8],[129,9],[130,10],[131,11],[132,11],[134,12],[133,13],[135,14],[136,15],[137,16],[121,17],[173,18],[138,19],[139,20],[140,21],[141,22],[142,23],[143,24],[144,25],[145,26],[146,27],[147,28],[148,29],[149,30],[150,31],[151,31],[152,32],[153,18],[154,18],[155,33],[157,34],[156,35],[158,36],[159,37],[160,38],[161,39],[162,40],[163,41],[164,42],[80,43],[79,18],[174,44],[165,45],[166,46],[167,47],[168,48],[169,49],[170,50],[171,51],[172,52],[83,18],[58,18],[59,18],[10,18],[13,18],[12,18],[2,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[21,18],[3,18],[4,18],[22,18],[26,18],[23,18],[24,18],[25,18],[27,18],[28,18],[29,18],[5,18],[30,18],[31,18],[32,18],[33,18],[6,18],[37,18],[34,18],[35,18],[36,18],[38,18],[7,18],[39,18],[44,18],[45,18],[40,18],[41,18],[42,18],[43,18],[8,18],[49,18],[46,18],[47,18],[48,18],[50,18],[9,18],[51,18],[52,18],[53,18],[56,18],[54,18],[55,18],[1,18],[57,18],[11,18],[99,53],[109,54],[98,53],[119,55],[90,56],[89,57],[118,58],[112,59],[117,60],[92,61],[106,62],[91,63],[115,64],[87,65],[86,58],[116,66],[88,67],[93,68],[94,18],[97,68],[84,18],[120,69],[110,70],[101,71],[102,72],[104,73],[100,74],[103,75],[113,58],[95,76],[96,77],[105,78],[85,79],[108,70],[107,68],[111,18],[114,80],[63,81],[64,18],[65,82],[66,18],[67,18],[68,18],[69,82],[62,82],[70,18],[71,18],[72,83],[73,84],[74,82],[75,18],[60,18],[61,85],[76,86],[77,87],[78,18]],"exportedModulesMap":[[81,1],[82,1],[122,2],[123,3],[124,4],[125,5],[126,6],[127,7],[128,8],[129,9],[130,10],[131,11],[132,11],[134,12],[133,13],[135,14],[136,15],[137,16],[121,17],[173,18],[138,19],[139,20],[140,21],[141,22],[142,23],[143,24],[144,25],[145,26],[146,27],[147,28],[148,29],[149,30],[150,31],[151,31],[152,32],[153,18],[154,18],[155,33],[157,34],[156,35],[158,36],[159,37],[160,38],[161,39],[162,40],[163,41],[164,42],[80,43],[79,18],[174,44],[165,45],[166,46],[167,47],[168,48],[169,49],[170,50],[171,51],[172,52],[83,18],[58,18],[59,18],[10,18],[13,18],[12,18],[2,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[21,18],[3,18],[4,18],[22,18],[26,18],[23,18],[24,18],[25,18],[27,18],[28,18],[29,18],[5,18],[30,18],[31,18],[32,18],[33,18],[6,18],[37,18],[34,18],[35,18],[36,18],[38,18],[7,18],[39,18],[44,18],[45,18],[40,18],[41,18],[42,18],[43,18],[8,18],[49,18],[46,18],[47,18],[48,18],[50,18],[9,18],[51,18],[52,18],[53,18],[56,18],[54,18],[55,18],[1,18],[57,18],[11,18],[99,53],[109,54],[98,53],[119,55],[90,56],[89,57],[118,58],[112,59],[117,60],[92,61],[106,62],[91,63],[115,64],[87,65],[86,58],[116,66],[88,67],[93,68],[94,18],[97,68],[84,18],[120,69],[110,70],[101,71],[102,72],[104,73],[100,74],[103,75],[113,58],[95,76],[96,77],[105,78],[85,79],[108,70],[107,68],[111,18],[114,80],[69,88],[72,89],[74,88],[77,90],[78,18]],"semanticDiagnosticsPerFile":[81,82,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,121,173,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,156,158,159,160,161,162,163,164,80,79,174,165,166,167,168,169,170,171,172,83,58,59,10,13,12,2,14,15,16,17,18,19,20,21,3,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,57,11,99,109,98,119,90,89,118,112,117,92,106,91,115,87,86,116,88,93,94,97,84,120,110,101,102,104,100,103,113,95,96,105,85,108,107,111,114,63,64,65,66,67,68,69,62,70,71,72,73,74,75,60,61,76,77,78],"latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.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.sharedmemory.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.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/TypeRef.ts","../lib/Utils.ts","../lib/MapUtils.ts","../lib/ArrayUtils.ts","../lib/AsyncResult.ts","../lib/CollectionUtils.ts","../lib/Csv.ts","../lib/DateUtils.ts","../lib/Encoding.ts","../lib/LazyLoaded.ts","../lib/MathUtils.ts","../lib/PromiseMap.ts","../lib/PromiseUtils.ts","../lib/SortedArray.ts","../lib/StringUtils.ts","../lib/Tokenizer.ts","../lib/WebAssembly.ts","../lib/memoized.ts","../lib/index.ts","../../../types/globals.d.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/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/buffer/index.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/globals.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/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/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/ts5.6/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"5746fca0ef5189a855357e258108524603574457c811ce8143e3279efde9f5b6","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"1a517f574628ade7a4ed5140555289e161bf656e28977de55275421ef930008a","signature":"9dcb1aadce4ea5e865d5a1ce530a702f3bf14324e0ac5466f5faeed7d2937ef7"},{"version":"981eb33ba99af43c918de0638e733b5635c1efcc0147272bbb172ce27de18c2b","signature":"8aa9f2cd74eadd0c7915a68d1b2d939aa121da608719d4cfb3007fd224430680"},{"version":"9db05fdd9cc71542ba95142e1a9b5a4d94f0a5d81e31e3ffab12009f20804036","signature":"43353f0a230e916576ebc6316601b47d42250bfe9b11d73ac77e2a49059d6ef0"},{"version":"a3d7187a76be2d914babc0052f90074311f68cf523595c8ed348958373892b98","signature":"49f842234d88ca8ef8f2e2eaea4e72d6d24a61e67aae512d05608dfb2daa6950"},{"version":"3d111ac9e9c03126fb8fca5d8453c2ba353c0fb699610beeeb83530adb32d0da","signature":"fe357ec2df98dd3099a24e46378e48a962cfc060700a60b956e1edb78fbd6945"},{"version":"11040175852b5ac65bc670673b0f02d29e569ee896f4475e3c93b7d8aa0a496a","signature":"bbb8269aca2efda22a8991436e2de3c683519f4e665b7b513e1d6d211cefb929"},{"version":"e1ad39c041ebe934ecba32093aa1b1032520db0993239d9e83c641898c7e44d7","signature":"e4c70ab653202cf579d697dd9f7c4134c427723c791a760a9ee76593c5201706"},{"version":"afade989af319e98dd75856a70987a2a00eaf453b75efe20046b32a608529012","signature":"9cddd6c237826f36add2decaad02b7f5d2cc9b11967c75e9b03c4346b4a37378"},{"version":"0d36ef407a9c449e510305e4a25b6d6da0204734f4cd59e7b3905e809a6efc47","signature":"b741cdc69204cb608d1a69cbce63f002bd5b45e607e8ee269bd9cdaf5a568c8d"},{"version":"d9b69a349e5a9051cbef921ffaa0f035418cf1d59b30d87625f360d16b50c565","signature":"d00b7ca683f871487761454e06bf22a02ec61822acc203ed3468b64308015c34"},{"version":"f2376cb45d3b18286678b2f98b99be8d518f1ee012da1de285588a6af827cb06","signature":"f2f97bf1d679cf78001b997487a399d624c2eaa3f5783754c08bd3b58c60fadb"},{"version":"19e83bd4d86a1b8ce35a47456eabc3bcd4202ce20b523176715eb487f32f2872","signature":"ddfc56edb0e758326659ad046088e892e1e80e0a60f4179dc742b7e6b1fcc961"},{"version":"af8bf6c94593cf31ebcf1019054d8f5c32d60a1079b91bde31569ca12431629f","signature":"4e1a189df8d26b882701748ae07c5054471b5c67bb5cf2330d26fec0b6a16ed6"},{"version":"c4d9a5c2c13ada6a036dff6ba366d6f5ba4ca96e113f4e7e89f51ce253045a33","signature":"b5f2b568fadab7a51d2ba69199fb0af6d8a13594281ef6f3a561e0f9a82fc483"},{"version":"e93a17f8aff4e338272b6baf00d4dbe33f16e591e085c4e288dcb99c7e8ded58","signature":"a2ce8a142d300930928eadaee5ddd1f724aafc24c8efddce63bbf8787fe82e27"},{"version":"0fdf4c026079edf1d12848918a8b391d9ac9077afeb7bc7ab2e3dcf0d5ff3548","signature":"f597c179836327684f463b6ff8ba92893ce927820051007b297079fde3235601"},{"version":"73a5fc2a1d811ddff6cc976595c14da9392725b94903b0bb4c06abb8a77d515c","signature":"504b66ba4300bb0583b106c0a0128c91933e68fdc68d7acb7aeb01c56b808397"},{"version":"4b1d34d607c58c2c590af861c914dfa292bbe1e9e1c14fd1e493e6b7b6cea855","signature":"bea8c67d1a50a25dbe61dfcad7f1c2a61de32ccf698a61f55ee4847fb25d9e5e"},{"version":"17a63c2d0baea2f912b372b898a18629844d3d4e5e3b4353373dcf1c30774e8d","signature":"7b0b4b1cab5776c4cc952983004fe821be24a33dc71c2311346a12e38743a45b"},{"version":"effefe6914de0718f5bad1c853cc625eaaf1d6c570aeb666c1bb125dd15622eb","affectsGlobalScope":true},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"a4ef5ccfd69b5bc2a2c29896aa07daaff7c5924a12e70cb3d9819145c06897db","affectsGlobalScope":true},"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc",{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true},"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true},"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","206a70e72af3e24688397b81304358526ce70d020e4c2606c4acfd1fa1e81fb2","3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2",{"version":"4a1c5b43d4d408cb0df0a6cc82ca7be314553d37e432fc1fd801bae1a9ab2cb8","affectsGlobalScope":true},"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada",{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true},"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true},{"version":"12e8ce658dd17662d82fb0509d2057afc5e6ee30369a2e9e0957eff725b1f11d","affectsGlobalScope":true},"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"c6ab0dd29bf74b71a54ff2bbce509eb8ae3c4294d57cc54940f443c01cd1baae","affectsGlobalScope":true},"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4"],"root":[[59,78]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"checkJs":false,"composite":true,"declaration":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":true,"noImplicitThis":true,"noStrictGenericChecks":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../lib","skipLibCheck":true,"strict":false,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./tsbuildinfo","useUnknownInCatchVariables":false},"fileIdsList":[[84,124,127],[84,126,127],[84,127,132,162],[84,127,128,133,139,140,147,159,170],[84,127,128,129,139,147],[84,127],[79,80,81,84,127],[84,127,130,171],[84,127,131,132,140,148],[84,127,132,159,167],[84,127,133,135,139,147],[84,126,127,134],[84,127,135,136],[84,127,137,139],[84,126,127,139],[84,127,139,140,141,159,170],[84,127,139,140,141,154,159,162],[84,122,127],[84,122,127,135,139,142,147,159,170],[84,127,139,140,142,143,147,159,167,170],[84,127,142,144,159,167,170],[84,127,139,145],[84,127,146,170],[84,127,135,139,147,159],[84,127,148],[84,127,149],[84,126,127,150],[84,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,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],[84,127,152],[84,127,153],[84,127,139,154,155],[84,127,154,156,171,173],[84,127,139,159,160,162],[84,127,161,162],[84,127,159,160],[84,127,162],[84,127,163],[84,124,127,159],[84,127,139,165,166],[84,127,165,166],[84,127,132,147,159,167],[84,127,168],[127],[82,83,84,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,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],[84,127,147,169],[84,127,142,153,170],[84,127,132,171],[84,127,159,172],[84,127,146,173],[84,127,174],[84,127,139,141,150,159,162,170,173,175],[84,127,159,176],[84,94,98,127,170],[84,94,127,159,170],[84,89,127],[84,91,94,127,167,170],[84,127,147,167],[84,127,177],[84,89,127,177],[84,91,94,127,147,170],[84,86,87,90,93,127,139,159,170],[84,94,101,127],[84,86,92,127],[84,94,115,116,127],[84,90,94,127,162,170,177],[84,115,127,177],[84,88,89,127,177],[84,94,127],[84,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,127],[84,94,109,127],[84,94,101,102,127],[84,92,94,102,103,127],[84,93,127],[84,86,89,94,127],[84,94,98,102,103,127],[84,98,127],[84,92,94,97,127,170],[84,86,91,94,101,127],[84,127,159],[84,89,94,115,127,175,177],[60,61,84,127],[60,84,127],[70,84,127],[62,84,127],[59,84,127],[67,84,127],[59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,84,127],[60,62,84,127],[60],[70],[59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76]],"referencedMap":[[124,1],[125,1],[126,2],[127,3],[128,4],[129,5],[79,6],[82,7],[80,6],[81,6],[130,8],[131,9],[132,10],[133,11],[134,12],[135,13],[136,13],[138,6],[137,14],[139,15],[140,16],[141,17],[123,18],[142,19],[143,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,31],[155,31],[156,32],[157,6],[158,6],[159,33],[161,34],[160,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[84,43],[83,6],[177,44],[169,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[85,6],[57,6],[58,6],[10,6],[13,6],[12,6],[2,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[20,6],[21,6],[3,6],[4,6],[22,6],[26,6],[23,6],[24,6],[25,6],[27,6],[28,6],[29,6],[5,6],[30,6],[31,6],[32,6],[33,6],[6,6],[37,6],[34,6],[35,6],[36,6],[38,6],[7,6],[39,6],[44,6],[45,6],[40,6],[41,6],[42,6],[43,6],[8,6],[49,6],[46,6],[47,6],[48,6],[50,6],[9,6],[51,6],[52,6],[53,6],[56,6],[54,6],[55,6],[1,6],[11,6],[101,53],[111,54],[100,53],[121,55],[92,56],[91,57],[120,58],[114,59],[119,60],[94,61],[108,62],[93,63],[117,64],[89,65],[88,58],[118,66],[90,67],[95,68],[96,6],[99,68],[86,6],[122,69],[112,70],[103,71],[104,72],[106,73],[102,74],[105,75],[115,58],[97,76],[98,77],[107,78],[87,79],[110,70],[109,68],[113,6],[116,80],[62,81],[63,6],[64,82],[65,6],[66,6],[67,6],[68,82],[61,82],[69,6],[70,6],[71,83],[72,84],[73,82],[74,6],[59,6],[60,85],[75,86],[77,87],[76,88],[78,6]],"exportedModulesMap":[[124,1],[125,1],[126,2],[127,3],[128,4],[129,5],[79,6],[82,7],[80,6],[81,6],[130,8],[131,9],[132,10],[133,11],[134,12],[135,13],[136,13],[138,6],[137,14],[139,15],[140,16],[141,17],[123,18],[142,19],[143,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,31],[155,31],[156,32],[157,6],[158,6],[159,33],[161,34],[160,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[84,43],[83,6],[177,44],[169,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[85,6],[57,6],[58,6],[10,6],[13,6],[12,6],[2,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[20,6],[21,6],[3,6],[4,6],[22,6],[26,6],[23,6],[24,6],[25,6],[27,6],[28,6],[29,6],[5,6],[30,6],[31,6],[32,6],[33,6],[6,6],[37,6],[34,6],[35,6],[36,6],[38,6],[7,6],[39,6],[44,6],[45,6],[40,6],[41,6],[42,6],[43,6],[8,6],[49,6],[46,6],[47,6],[48,6],[50,6],[9,6],[51,6],[52,6],[53,6],[56,6],[54,6],[55,6],[1,6],[11,6],[101,53],[111,54],[100,53],[121,55],[92,56],[91,57],[120,58],[114,59],[119,60],[94,61],[108,62],[93,63],[117,64],[89,65],[88,58],[118,66],[90,67],[95,68],[96,6],[99,68],[86,6],[122,69],[112,70],[103,71],[104,72],[106,73],[102,74],[105,75],[115,58],[97,76],[98,77],[107,78],[87,79],[110,70],[109,68],[113,6],[116,80],[68,89],[71,90],[73,89],[77,91],[76,89],[78,6]],"semanticDiagnosticsPerFile":[124,125,126,127,128,129,79,82,80,81,130,131,132,133,134,135,136,138,137,139,140,141,123,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,160,162,163,164,165,166,167,168,84,83,177,169,170,171,172,173,174,175,176,85,57,58,10,13,12,2,14,15,16,17,18,19,20,21,3,4,22,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,56,54,55,1,11,101,111,100,121,92,91,120,114,119,94,108,93,117,89,88,118,90,95,96,99,86,122,112,103,104,106,102,105,115,97,98,107,87,110,109,113,116,62,63,64,65,66,67,68,61,69,70,71,72,73,74,59,60,75,77,76,78],"latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutao/tutanota-utils",
|
|
3
|
-
"version": "287.
|
|
3
|
+
"version": "287.250605.0",
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
],
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "5.3.3",
|
|
26
|
-
"@tutao/otest": "287.
|
|
26
|
+
"@tutao/otest": "287.250605.0"
|
|
27
27
|
}
|
|
28
28
|
}
|