@contember/react-utils 1.1.0-beta.4 → 1.1.0-rc.12
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/hooks/useConstantLengthInvariant.js.map +1 -1
- package/dist/development/hooks/useConstantValueInvariant.js.map +1 -1
- package/dist/development/hooks/useDebounceCallback.js +19 -0
- package/dist/development/hooks/useDebounceCallback.js.map +1 -0
- package/dist/development/index.js +2 -0
- package/dist/development/index.js.map +1 -1
- package/dist/production/hooks/useConstantLengthInvariant.js.map +1 -1
- package/dist/production/hooks/useConstantValueInvariant.js.map +1 -1
- package/dist/production/hooks/useDebounceCallback.js +19 -0
- package/dist/production/hooks/useDebounceCallback.js.map +1 -0
- package/dist/production/index.js +2 -0
- package/dist/production/index.js.map +1 -1
- package/dist/types/hooks/index.d.ts +1 -0
- package/dist/types/hooks/index.d.ts.map +1 -1
- package/dist/types/hooks/useConstantLengthInvariant.d.ts +1 -1
- package/dist/types/hooks/useConstantLengthInvariant.d.ts.map +1 -1
- package/dist/types/hooks/useConstantValueInvariant.d.ts +1 -1
- package/dist/types/hooks/useConstantValueInvariant.d.ts.map +1 -1
- package/dist/types/hooks/useDebounceCallback.d.ts +2 -0
- package/dist/types/hooks/useDebounceCallback.d.ts.map +1 -0
- package/dist/types/hooks/useForceRender.d.ts +1 -0
- package/dist/types/hooks/useForceRender.d.ts.map +1 -1
- package/dist/types/hooks/useIsMounted.d.ts +1 -0
- package/dist/types/hooks/useIsMounted.d.ts.map +1 -1
- package/dist/types/hooks/useStoredState.d.ts +2 -2
- package/dist/types/hooks/useStoredState.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/types/types.d.ts +1 -1
- package/dist/types/types.d.ts.map +1 -1
- package/package.json +9 -7
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useConstantLengthInvariant.ts +2 -3
- package/src/hooks/useConstantValueInvariant.ts +1 -1
- package/src/hooks/useDebounceCallback.ts +19 -0
- package/LICENSE +0 -186
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item
|
|
1
|
+
{"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item>(items: Item[], message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(items)\n\t\tif (previous.length !== items.length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing the length of an array whose length must remain constant between renders.'\n\t\t\t\t}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";AAGa,MAAA,6BAA6B,CAAO,OAAe,YAAqB;AAC3D;AAElB,UAAA,WAAW,iBAAiB,KAAK;AACnC,QAAA,SAAS,WAAW,MAAM,QAAQ;AACrC,YAAM,IAAI;AAAA,QACT,wBAAwB,WAAW;AAAA,MAAA;AAAA,IAGrC;AAAA,EACD;AACD;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value
|
|
1
|
+
{"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value>(value: Value, message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(value)\n\t\tif (previous !== value) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";AAGa,MAAA,4BAA4B,CAAQ,OAAc,YAAqB;AAC1D;AAElB,UAAA,WAAW,iBAAiB,KAAK;AACvC,QAAI,aAAa,OAAO;AACvB,YAAM,IAAI;AAAA,QACT,wBAAwB,WAAW;AAAA,MAAA;AAAA,IAErC;AAAA,EACD;AACD;"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useRef, useEffect, useCallback } from "react";
|
|
2
|
+
const useDebounceCallback = (cb, debounceMs) => {
|
|
3
|
+
const timerRef = useRef();
|
|
4
|
+
const cbRef = useRef(cb);
|
|
5
|
+
cbRef.current = cb;
|
|
6
|
+
useEffect(() => {
|
|
7
|
+
return () => timerRef.current && clearTimeout(timerRef.current);
|
|
8
|
+
}, []);
|
|
9
|
+
return useCallback(() => {
|
|
10
|
+
timerRef.current && clearTimeout(timerRef.current);
|
|
11
|
+
timerRef.current = setTimeout(() => {
|
|
12
|
+
cbRef.current();
|
|
13
|
+
}, debounceMs);
|
|
14
|
+
}, [debounceMs]);
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
useDebounceCallback
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=useDebounceCallback.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useDebounceCallback.js","sources":["../../../src/hooks/useDebounceCallback.ts"],"sourcesContent":["import { useCallback, useEffect, useRef } from 'react'\n\nexport const useDebounceCallback = (cb: () => any, debounceMs: number) => {\n\tconst timerRef = useRef<ReturnType<typeof setTimeout>>()\n\tconst cbRef = useRef(cb)\n\tcbRef.current = cb\n\n\tuseEffect(() => {\n\t\treturn () => timerRef.current && clearTimeout(timerRef.current)\n\t}, [])\n\n\treturn useCallback(() => {\n\t\ttimerRef.current && clearTimeout(timerRef.current)\n\n\t\ttimerRef.current = setTimeout(() => {\n\t\t\tcbRef.current()\n\t\t}, debounceMs)\n\t}, [debounceMs])\n}\n"],"names":[],"mappings":";AAEa,MAAA,sBAAsB,CAAC,IAAe,eAAuB;AACzE,QAAM,WAAW;AACX,QAAA,QAAQ,OAAO,EAAE;AACvB,QAAM,UAAU;AAEhB,YAAU,MAAM;AACf,WAAO,MAAM,SAAS,WAAW,aAAa,SAAS,OAAO;AAAA,EAC/D,GAAG,CAAE,CAAA;AAEL,SAAO,YAAY,MAAM;AACf,aAAA,WAAW,aAAa,SAAS,OAAO;AAExC,aAAA,UAAU,WAAW,MAAM;AACnC,YAAM,QAAQ;AAAA,OACZ,UAAU;AAAA,EAAA,GACX,CAAC,UAAU,CAAC;AAChB;"}
|
|
@@ -3,6 +3,7 @@ import { useArrayMapMemo } from "./hooks/useArrayMapMemo.js";
|
|
|
3
3
|
import { useConstantLengthInvariant } from "./hooks/useConstantLengthInvariant.js";
|
|
4
4
|
import { useConstantValueInvariant } from "./hooks/useConstantValueInvariant.js";
|
|
5
5
|
import { useDebounce } from "./hooks/useDebounce.js";
|
|
6
|
+
import { useDebounceCallback } from "./hooks/useDebounceCallback.js";
|
|
6
7
|
import { useForceRender } from "./hooks/useForceRender.js";
|
|
7
8
|
import { useIsMounted } from "./hooks/useIsMounted.js";
|
|
8
9
|
import { useObjectMemo } from "./hooks/useObjectMemo.js";
|
|
@@ -26,6 +27,7 @@ export {
|
|
|
26
27
|
useConstantLengthInvariant,
|
|
27
28
|
useConstantValueInvariant,
|
|
28
29
|
useDebounce,
|
|
30
|
+
useDebounceCallback,
|
|
29
31
|
useForceRender,
|
|
30
32
|
useIsMounted,
|
|
31
33
|
useObjectMemo,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item
|
|
1
|
+
{"version":3,"file":"useConstantLengthInvariant.js","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantLengthInvariant = <Item>(items: Item[], message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(items)\n\t\tif (previous.length !== items.length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing the length of an array whose length must remain constant between renders.'\n\t\t\t\t}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAGa,MAAA,6BAA6B,CAAO,OAAe,YAAqB;AAWrF;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value
|
|
1
|
+
{"version":3,"file":"useConstantValueInvariant.js","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"sourcesContent":["import { usePreviousValue } from './usePreviousValue'\n\n// This entire hook should get optimized away for prod\nexport const useConstantValueInvariant = <Value>(value: Value, message?: string) => {\n\tif (import.meta.env.DEV) {\n\t\t// eslint-disable-next-line react-hooks/rules-of-hooks\n\t\tconst previous = usePreviousValue(value)\n\t\tif (previous !== value) {\n\t\t\tthrow new Error(\n\t\t\t\t`Invariant violation: ${message || 'Changing a value which must remain constant between renders.'}`,\n\t\t\t)\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAGa,MAAA,4BAA4B,CAAQ,OAAc,YAAqB;AAUpF;"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useRef, useEffect, useCallback } from "react";
|
|
2
|
+
const useDebounceCallback = (cb, debounceMs) => {
|
|
3
|
+
const timerRef = useRef();
|
|
4
|
+
const cbRef = useRef(cb);
|
|
5
|
+
cbRef.current = cb;
|
|
6
|
+
useEffect(() => {
|
|
7
|
+
return () => timerRef.current && clearTimeout(timerRef.current);
|
|
8
|
+
}, []);
|
|
9
|
+
return useCallback(() => {
|
|
10
|
+
timerRef.current && clearTimeout(timerRef.current);
|
|
11
|
+
timerRef.current = setTimeout(() => {
|
|
12
|
+
cbRef.current();
|
|
13
|
+
}, debounceMs);
|
|
14
|
+
}, [debounceMs]);
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
useDebounceCallback
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=useDebounceCallback.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useDebounceCallback.js","sources":["../../../src/hooks/useDebounceCallback.ts"],"sourcesContent":["import { useCallback, useEffect, useRef } from 'react'\n\nexport const useDebounceCallback = (cb: () => any, debounceMs: number) => {\n\tconst timerRef = useRef<ReturnType<typeof setTimeout>>()\n\tconst cbRef = useRef(cb)\n\tcbRef.current = cb\n\n\tuseEffect(() => {\n\t\treturn () => timerRef.current && clearTimeout(timerRef.current)\n\t}, [])\n\n\treturn useCallback(() => {\n\t\ttimerRef.current && clearTimeout(timerRef.current)\n\n\t\ttimerRef.current = setTimeout(() => {\n\t\t\tcbRef.current()\n\t\t}, debounceMs)\n\t}, [debounceMs])\n}\n"],"names":[],"mappings":";AAEa,MAAA,sBAAsB,CAAC,IAAe,eAAuB;AACzE,QAAM,WAAW;AACX,QAAA,QAAQ,OAAO,EAAE;AACvB,QAAM,UAAU;AAEhB,YAAU,MAAM;AACf,WAAO,MAAM,SAAS,WAAW,aAAa,SAAS,OAAO;AAAA,EAC/D,GAAG,CAAE,CAAA;AAEL,SAAO,YAAY,MAAM;AACf,aAAA,WAAW,aAAa,SAAS,OAAO;AAExC,aAAA,UAAU,WAAW,MAAM;AACnC,YAAM,QAAQ;AAAA,OACZ,UAAU;AAAA,EAAA,GACX,CAAC,UAAU,CAAC;AAChB;"}
|
package/dist/production/index.js
CHANGED
|
@@ -3,6 +3,7 @@ import { useArrayMapMemo } from "./hooks/useArrayMapMemo.js";
|
|
|
3
3
|
import { useConstantLengthInvariant } from "./hooks/useConstantLengthInvariant.js";
|
|
4
4
|
import { useConstantValueInvariant } from "./hooks/useConstantValueInvariant.js";
|
|
5
5
|
import { useDebounce } from "./hooks/useDebounce.js";
|
|
6
|
+
import { useDebounceCallback } from "./hooks/useDebounceCallback.js";
|
|
6
7
|
import { useForceRender } from "./hooks/useForceRender.js";
|
|
7
8
|
import { useIsMounted } from "./hooks/useIsMounted.js";
|
|
8
9
|
import { useObjectMemo } from "./hooks/useObjectMemo.js";
|
|
@@ -26,6 +27,7 @@ export {
|
|
|
26
27
|
useConstantLengthInvariant,
|
|
27
28
|
useConstantValueInvariant,
|
|
28
29
|
useDebounce,
|
|
30
|
+
useDebounceCallback,
|
|
29
31
|
useForceRender,
|
|
30
32
|
useIsMounted,
|
|
31
33
|
useObjectMemo,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;"}
|
|
@@ -3,6 +3,7 @@ export * from './useArrayMapMemo';
|
|
|
3
3
|
export * from './useConstantLengthInvariant';
|
|
4
4
|
export * from './useConstantValueInvariant';
|
|
5
5
|
export * from './useDebounce';
|
|
6
|
+
export * from './useDebounceCallback';
|
|
6
7
|
export * from './useForceRender';
|
|
7
8
|
export * from './useIsMounted';
|
|
8
9
|
export * from './useObjectMemo';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,oBAAoB,CAAA;AAClC,cAAc,kBAAkB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,kBAAkB,CAAA;AAChC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,oBAAoB,CAAA;AAClC,cAAc,kBAAkB,CAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useConstantLengthInvariant: <Item
|
|
1
|
+
export declare const useConstantLengthInvariant: <Item>(items: Item[], message?: string) => void;
|
|
2
2
|
//# sourceMappingURL=useConstantLengthInvariant.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConstantLengthInvariant.d.ts","sourceRoot":"","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,0BAA0B,
|
|
1
|
+
{"version":3,"file":"useConstantLengthInvariant.d.ts","sourceRoot":"","sources":["../../../src/hooks/useConstantLengthInvariant.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,0BAA0B,kCAAmC,MAAM,SAW/E,CAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useConstantValueInvariant: <Value
|
|
1
|
+
export declare const useConstantValueInvariant: <Value>(value: Value, message?: string) => void;
|
|
2
2
|
//# sourceMappingURL=useConstantValueInvariant.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useConstantValueInvariant.d.ts","sourceRoot":"","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,yBAAyB,
|
|
1
|
+
{"version":3,"file":"useConstantValueInvariant.d.ts","sourceRoot":"","sources":["../../../src/hooks/useConstantValueInvariant.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,yBAAyB,kCAAmC,MAAM,SAU9E,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useDebounceCallback.d.ts","sourceRoot":"","sources":["../../../src/hooks/useDebounceCallback.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,mBAAmB,OAAQ,MAAM,GAAG,cAAc,MAAM,eAgBpE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useForceRender.d.ts","sourceRoot":"","sources":["../../../src/hooks/useForceRender.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,6CAG1B,CAAA"}
|
|
1
|
+
{"version":3,"file":"useForceRender.d.ts","sourceRoot":"","sources":["../../../src/hooks/useForceRender.ts"],"names":[],"mappings":";AAEA,eAAO,MAAM,cAAc,6CAG1B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useIsMounted.d.ts","sourceRoot":"","sources":["../../../src/hooks/useIsMounted.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,iDAYxB,CAAA"}
|
|
1
|
+
{"version":3,"file":"useIsMounted.d.ts","sourceRoot":"","sources":["../../../src/hooks/useIsMounted.ts"],"names":[],"mappings":";AAEA,eAAO,MAAM,YAAY,iDAYxB,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Serializable } from '../types';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
type SetState<V extends Serializable> = (value: V | ((current: V) => V)) => void;
|
|
3
|
+
type ValueInitializer<V extends Serializable> = (storedValue: V | undefined) => V;
|
|
4
4
|
export declare const useSessionStorageState: <V extends Serializable>(key: string, initializeValue: ValueInitializer<V>) => [V, SetState<V>];
|
|
5
5
|
export {};
|
|
6
6
|
//# sourceMappingURL=useStoredState.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useStoredState.d.ts","sourceRoot":"","sources":["../../../src/hooks/useStoredState.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAEvC,
|
|
1
|
+
{"version":3,"file":"useStoredState.d.ts","sourceRoot":"","sources":["../../../src/hooks/useStoredState.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAEvC,KAAK,QAAQ,CAAC,CAAC,SAAS,YAAY,IAAI,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,IAAI,CAAC;AACjF,KAAK,gBAAgB,CAAC,CAAC,SAAS,YAAY,IAAI,CAAC,WAAW,EAAE,CAAC,GAAG,SAAS,KAAK,CAAC,CAAC;AAqBlF,eAAO,MAAM,sBAAsB,gCAlBG,MAAM,2DAkBqC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/customEvent.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/hot.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/importGlob.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/types/importMeta.d.ts","../../../../node_modules/.pnpm/vite@3.1.0_sass@1.49.11/node_modules/vite/client.d.ts","../../src/ambient.d.ts","../../../../node_modules/.pnpm/@types+react@18.0.25/node_modules/@types/react/global.d.ts","../../../../node_modules/.pnpm/csstype@3.1.1/node_modules/csstype/index.d.ts","../../../../node_modules/.pnpm/@types+prop-types@15.7.5/node_modules/@types/prop-types/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/.pnpm/@types+react@18.0.25/node_modules/@types/react/index.d.ts","../../../../node_modules/.pnpm/@types+react@18.0.25/node_modules/@types/react/jsx-runtime.d.ts","../../src/hooks/useAbortController.ts","../../src/hooks/usePreviousValue.ts","../../src/hooks/useConstantLengthInvariant.ts","../../src/hooks/useArrayMapMemo.ts","../../src/hooks/useConstantValueInvariant.ts","../../src/hooks/useDebounce.ts","../../src/hooks/useForceRender.ts","../../src/hooks/useIsMounted.ts","../../src/hooks/useObjectMemo.ts","../../src/types.ts","../../src/hooks/useStoredState.ts","../../src/hooks/index.ts","../../src/referentiallyStable/emptyArray.ts","../../src/referentiallyStable/emptyObject.ts","../../src/referentiallyStable/identityFunction.ts","../../src/referentiallyStable/noop.ts","../../src/referentiallyStable/returnFalse.ts","../../src/referentiallyStable/returnTrue.ts","../../src/referentiallyStable/index.ts","../../src/index.ts","../../../../node_modules/.pnpm/@types+argparse@1.0.38/node_modules/@types/argparse/index.d.ts","../../../../node_modules/.pnpm/@babel+types@7.20.0/node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/.pnpm/@types+babel__generator@7.6.4/node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/.pnpm/@babel+parser@7.20.1/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/index.d.ts","../../../../node_modules/.pnpm/@types+babel__traverse@7.18.2/node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/.pnpm/@types+babel__core@7.1.19/node_modules/@types/babel__core/index.d.ts","../../../../node_modules/.pnpm/@types+blueimp-md5@2.18.0/node_modules/@types/blueimp-md5/index.d.ts","../../../../node_modules/.pnpm/@types+chai@4.3.3/node_modules/@types/chai/index.d.ts","../../../../node_modules/.pnpm/@types+chai-subset@1.3.3/node_modules/@types/chai-subset/index.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/types.d.ts","../../../../node_modules/.pnpm/@types+classnames@2.2.10/node_modules/@types/classnames/index.d.ts","../../../../node_modules/.pnpm/@types+cookie@0.4.1/node_modules/@types/cookie/index.d.ts","../../../../node_modules/.pnpm/@types+debounce@1.2.0/node_modules/@types/debounce/index.d.ts","../../../../node_modules/.pnpm/@types+eslint@8.4.9/node_modules/@types/eslint/helpers.d.ts","../../../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../../../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../../../../node_modules/.pnpm/@types+eslint@8.4.9/node_modules/@types/eslint/index.d.ts","../../../../node_modules/.pnpm/@types+eslint-scope@3.7.4/node_modules/@types/eslint-scope/index.d.ts","../../../../node_modules/.pnpm/@types+geojson@7946.0.10/node_modules/@types/geojson/index.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/assert.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/globals.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/console.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/constants.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/dns.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/domain.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/events.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/fs.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/http.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/http2.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/https.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/module.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/net.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/os.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/path.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/process.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/readline.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/repl.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/stream.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/test.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/timers.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/tls.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/tty.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/url.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/util.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/v8.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/vm.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/globals.global.d.ts","../../../../node_modules/.pnpm/@types+node@16.18.3/node_modules/@types/node/ts4.8/index.d.ts","../../../../node_modules/.pnpm/@types+minimatch@5.1.2/node_modules/@types/minimatch/index.d.ts","../../../../node_modules/.pnpm/@types+glob@8.0.0/node_modules/@types/glob/index.d.ts","../../../../node_modules/.pnpm/@types+graceful-fs@4.1.5/node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/.pnpm/@types+unist@2.0.6/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+hast@2.3.4/node_modules/@types/hast/index.d.ts","../../../../node_modules/.pnpm/@types+html-minifier-terser@5.1.2/node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/.pnpm/@types+is-function@1.0.1/node_modules/@types/is-function/index.d.ts","../../../../node_modules/.pnpm/@types+is-hotkey@0.1.5/node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.4/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-lib-report@3.0.0/node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/.pnpm/@types+istanbul-reports@3.0.1/node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/.pnpm/@types+js-levenshtein@1.1.0/node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/.pnpm/@types+leaflet@1.9.0/node_modules/@types/leaflet/index.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/.pnpm/@types+lodash@4.14.187/node_modules/@types/lodash/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@3.0.10/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/@types+mime@2.0.3/node_modules/@types/mime/index.d.ts","../../../../node_modules/.pnpm/form-data@3.0.1/node_modules/form-data/index.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/.pnpm/@types+normalize-package-data@2.4.1/node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/.pnpm/@types+npmlog@4.1.4/node_modules/@types/npmlog/index.d.ts","../../../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../../../../node_modules/.pnpm/@types+parse5@5.0.3/node_modules/@types/parse5/index.d.ts","../../../../node_modules/.pnpm/pg-types@2.2.0/node_modules/pg-types/index.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/.pnpm/pg-protocol@1.5.0/node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/.pnpm/@types+pg@8.6.5/node_modules/@types/pg/index.d.ts","../../../../node_modules/.pnpm/@types+pretty-hrtime@1.0.1/node_modules/@types/pretty-hrtime/index.d.ts","../../../../node_modules/.pnpm/@types+qs@6.9.7/node_modules/@types/qs/index.d.ts","../../../../node_modules/.pnpm/@types+react-dom@18.0.8/node_modules/@types/react-dom/index.d.ts","../../../../node_modules/.pnpm/@types+react-syntax-highlighter@11.0.5/node_modules/@types/react-syntax-highlighter/index.d.ts","../../../../node_modules/.pnpm/@types+react-test-renderer@18.0.0/node_modules/@types/react-test-renderer/index.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.5/node_modules/@types/react-transition-group/Transition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.5/node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.5/node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.5/node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.5/node_modules/@types/react-transition-group/config.d.ts","../../../../node_modules/.pnpm/@types+react-transition-group@4.4.5/node_modules/@types/react-transition-group/index.d.ts","../../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/index.d.ts","../../../../node_modules/.pnpm/@types+source-list-map@0.1.2/node_modules/@types/source-list-map/index.d.ts","../../../../node_modules/.pnpm/@types+stack-utils@2.0.1/node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/.pnpm/@types+tapable@1.0.8/node_modules/@types/tapable/index.d.ts","../../../../node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+uglify-js@3.17.1/node_modules/@types/uglify-js/index.d.ts","../../../../node_modules/.pnpm/@types+uuid@8.3.1/node_modules/@types/uuid/index.d.ts","../../../../node_modules/.pnpm/anymatch@3.1.2/node_modules/anymatch/index.d.ts","../../../../node_modules/.pnpm/source-map@0.7.4/node_modules/source-map/source-map.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/Source.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../../node_modules/.pnpm/@types+webpack-sources@3.2.0/node_modules/@types/webpack-sources/index.d.ts","../../../../node_modules/.pnpm/@types+webpack@4.41.33/node_modules/@types/webpack/index.d.ts","../../../../node_modules/.pnpm/@types+webpack-env@1.18.0/node_modules/@types/webpack-env/index.d.ts","../../../../node_modules/.pnpm/@types+ws@8.5.3/node_modules/@types/ws/index.d.ts","../../../../node_modules/.pnpm/@types+yargs-parser@21.0.0/node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/.pnpm/@types+yargs@16.0.4/node_modules/@types/yargs/index.d.ts","../../../../node_modules/.pnpm/@types+yauzl@2.10.0/node_modules/@types/yauzl/index.d.ts","../../../../node_modules/.pnpm/@types+node@15.0.2/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","a0b0a059575ca62004fb85797f078a0a1d044da2d5c29993f11e7ce08a1ed3b4","bd668758155705240608e67d5664e5a34f2ec38724c95272dc134ce3c150dfe1","3cead9ca29f12a4887d2000124caaabe24b8146578b8630890001e7a9cdaa735",{"version":"440b4cd1c4971816554d6f424ba4fa23505c25f321681be32f266f87c4583f4d","affectsGlobalScope":true},{"version":"28d6c4339ab97f4c9fa035bfe6e58b16d7367f2eeeba53c8ef159b904381d4e3","affectsGlobalScope":true},"65996936fbb042915f7b74a200fcdde7e410f32a669b1ab9597cfaa4b0faddb5",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"d8d8dd5b60bde2305e6140d63ddb04f82a539d02c8c80fc9651b6db261e7f3be","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"1119fa53c926c20e281cb27ca310a053daee51ff4d4105fbec8c95cbc51deba8","signature":"76e9a763eef4a0ef8a4f50e387b9fad5266d471d8b0f62619f31bbd3d21b9814"},{"version":"8ce84c30ed8e4ff9217beacd12b12344fc733ba4d759e016a6c2df97a172cfda","signature":"2bc449b91944ffae1f59471da701908ff793787f257f23b4ef71759acc97939f"},{"version":"7eac90ef192b864045a6dd3b86335efa4936c760ad79bb59ded05698683f7719","signature":"2fdfd9bf4d96a48a91bd7000ca5f2dece538ac75cb02e3d775b1cab039e3202b"},{"version":"b1096d58f6517057f746012925a47ec2d066d0c4143337982dc7f15467ca747e","signature":"809cd2debef3870c93afe5ddf02db6f18f4e223163bf252af70241de431f4465"},{"version":"5c64002b61cd883d2539c80ff4f245384bf64c33b5d7af40accbfbfe405a6011","signature":"192f0a08bcde6af8d548580b989557cc83d8c80cb297d9e2c98210e2231ad918"},{"version":"e7a67060180f7a26df5eb50bc0d146a97ba95ff352e40053ee133acbb1ec54d2","signature":"19fc07b31d401c27075277ed71154ab13c74ef43ab20898e7ae24de8d16fb172"},{"version":"d0606fc9b7309eef1022f066b55be926544edc47e0b211c60a54367daa7f1320","signature":"2bd4625ce452e0f25677c4d07430710c57d424ec2d33391debae18ea9a67a56a"},{"version":"8e83142922b25c87b8b3d90ecfc44a60a3017129abee86227a71bc2491e79678","signature":"b48798e7ef7f2e4f7bd9e6dbdcb037b24ea8f2effbb4bdd4a9a05930f01d9fc7"},{"version":"e3bac02b563a2ebfb9784935f4a039531c7341c565d1c0707e65623578555e83","signature":"9e9ed85ced77a7b59d07a821d69db8a8e780bcd1caeb5623e6ac04401cba31c4"},{"version":"1ff0b5a9de5dd2ab9af8f3b2b0827aa5d819e2de0ac22ff9e83a4c7dc6971a2d","signature":"5bb98124699923216d110a22b43d9e8b0c43e7ccb2ae1e02a09b6b1b5382fd18"},{"version":"008737134d625686e97c45ca486b4ed4e6c28868558d36f49dba7541a7c66fcb","signature":"8c9dcce22b1ca949060604626499648f0350cd3bc6109d203075e807ebf5e41d"},{"version":"a99c1077087b4abc85ca07dd50900303ec387afad10c5851f0afac8a55552795","signature":"a99512700b64e0f6a2c92c1e684cf086342a092e49939404a3eb9dfaeb7bac7d"},{"version":"6ed0434b66c265567ba50989270a2a406c1c7290de0ca0606424c5209f15c14b","signature":"944cd92c6b59feb32961d560267393f372b1dcff1d6cd71a6230ba03f91036b5"},{"version":"f9dccb27c442d882186eb81a6613368994304a1e19c581ab2d169e449f41a3ba","signature":"314e888c6a1a1cc4d30295ebacece510231e4e4ee7028434aee277abda977baf"},{"version":"ce96cdf4ec7233fd29eef8a8c8236c259997010527d25124c64760e645377271","signature":"f6e30e59f4a1f0d0e6b231c280322ce9b007ff9c54fdb13b707e870430341778"},{"version":"2f377947a423abcfb75b0e27d9986021be894b808ffa7cfcfde8d1e3b8214c90","signature":"58861fcc3db99d3761938fad76882bb93f726eaddbc3342cced707d00f94f5bd"},{"version":"194018367f7ed61f1bdbd2ce5c7ab2f16fb2f235dee82de70510ad132f6d5890","signature":"bda7d503a370f6aef217e2f68a326d4a5c2d4cae43f8131c084f509c8ccb83a7"},{"version":"9a2d06df39b9eb74e5d947dd74943894a9ad56a46c86bf0940e63a550233c376","signature":"6194964a45d631834d96f0c91ea7041d7e15f94db83b217e92466adf1646b894"},{"version":"8ed0aa43fcdb631f96d19eb2d5d13f76c4fe347350d16fae5340b2269a2fa508","signature":"d53878a952ebe4cc9bef9b45b2852a3f9d231f983045488c3b23e86a5ffb5033"},{"version":"72089c32eb9f710aa510a6e8515f6ce34fcc25072156430c7657af8d273130be","signature":"aeaf16b65ffc10aa25e02f0e46f01ef269ce6ebbe637ba4a5fb2bdc532500955"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","497d9c40ac3fbb712314a26d91994a3c0770b0e742918f4f58c722c5514263be","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","7ec238b220ea991b6643e24191b1f552a65956d5f6de4c6144e700b9985265d8","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","5ee005d57eb5b0e887f8451463ac412dc22e6868534f51f061166311f6c8baf5",{"version":"127bf414ca8ced28c9738b91a935121009d03bbc136668db980bd1ba18976b2b","affectsGlobalScope":true},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true},"dc688638e386342faae164e68ac0205274b6731e70ac1a45921f3ce3aa083795","d22e870fef25a052477d24f34356470262881420c8b058c89d86392de6502c42","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","8dc552d17d8515805274740c4902367436a73295c4109bc29f897f35b0604da7",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","3adc8ac088388fd10b0e9cd3fa08abbebed9172577807394a241466ccb98f411","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","a3b6c93a9838b8c94c6998e85646d6f2d07c20ecfe1e235dba62158b29451391","4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","67a12e6c992d3f770078bacc562f767cf6142ae4453759a482f8f5ed30a99027","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","f142151303f0792b81eff90b554081d2b78b146a83a4bc573228338e70afa420","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","a55ca8b5f8c6a8535bb26fac1e10132a5338234ca3d5b9ed739fbc8ef41c8075","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","077b139efd1a6318805a8b24f05e7af37946d9bf9426bcb4866b45b61e6aac90","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","890eadd0631576dc5994a2e12cba56387e20afd8851352c0108e4fe09dc3a308","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","9c41e412e6d07b29d8772641d4016dec5984225f7ecc2008bd8173ff14465047","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","87ed0f84f0691d5c724b23159db96342e6b04ac69201b02c65936f4281ce1fbe","13868c5792808236b17dfe2803eafce911ea4d09d3b2fda95391891a494f988f","0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","fa5c2d3fcd8e227e180815df0a0903ed4b116400452af8a75ac5b68e5e1de9da","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","30688eab034d1aa3bbe4d8f2c7f462ddaec9f30f1a38a306a4728a9a06a58b11","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","5e8db4872785292074b394d821ae2fc10e4f8edc597776368aebbe8aefb24422","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9dcd1a6ae84def6ce3e80b27a367912e5b8e9f15c039143820ab76f7ceb8f3ab","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","1fc49547f60101e7fac0d9113a52c29178be082d46d7525009aebafdbb170a69",{"version":"401845ce10d4d9848a8e39f5004446eef7c3db2de5e9341b8a17c9b00aefcc0a","affectsGlobalScope":true},"b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useDefineForClassFields":true},"fileIdsList":[[89,152],[152],[89,90,91,92,93,152],[89,91,152],[96,152],[98,152],[103,105,152],[102,103,104,152],[123,124,152,159,160],[124,152,159],[152,163],[152,168],[152,169],[107,152],[152,173,175,176,177,178,179,180,181,182,183,184,185],[152,173,174,176,177,178,179,180,181,182,183,184,185],[152,174,175,176,177,178,179,180,181,182,183,184,185],[152,173,174,175,177,178,179,180,181,182,183,184,185],[152,173,174,175,176,178,179,180,181,182,183,184,185],[152,173,174,175,176,177,179,180,181,182,183,184,185],[152,173,174,175,176,177,178,180,181,182,183,184,185],[152,173,174,175,176,177,178,179,181,182,183,184,185],[152,173,174,175,176,177,178,179,180,182,183,184,185],[152,173,174,175,176,177,178,179,180,181,183,184,185],[152,173,174,175,176,177,178,179,180,181,182,184,185],[152,173,174,175,176,177,178,179,180,181,182,183,185],[152,173,174,175,176,177,178,179,180,181,182,183,184],[126,151,152,188,189,239],[108,152],[111,152],[112,117,143,152],[113,123,124,131,140,151,152],[113,114,123,131,152],[115,152],[116,117,124,132,152],[117,140,148,152],[118,120,123,131,152],[119,152],[120,121,152],[122,123,152],[123,152],[123,124,125,140,151,152],[123,124,125,140,152],[126,131,140,151,152],[123,124,126,127,131,140,148,151,152],[126,128,140,148,151,152],[108,109,110,111,112,113,114,115,116,117,118,119,120,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],[123,129,152],[130,151,152],[120,123,131,140,152],[132,152],[133,152],[111,134,152],[135,150,152,156],[136,152],[137,152],[123,138,152],[138,139,152,154],[112,123,140,141,142,152],[112,140,142,152],[140,141,152],[143,152],[144,152],[123,146,147,152],[146,147,152],[117,131,148,152],[149,152],[131,150,152],[112,126,137,151,152],[117,152],[140,152,153],[152,154],[152,155],[112,117,123,125,134,140,151,152,154,156],[140,152,157],[123,140,148,152,159,195,196,199,200],[66,152],[66,152,204],[66,152,206],[152,206,207,208,209,210],[62,63,64,65,152],[152,216],[152,159,221,222,223,224,225,226,227,228,229,230,231],[152,220,221,230],[152,221,230],[152,213,220,221,230],[152,221],[117,152,220,230],[152,220,221,222,223,224,225,226,227,228,229,231],[117,152,159,215,216,217,219,232],[123,126,128,140,148,151,152,157,159],[152,236],[123,140,152,159],[126,140,152,159],[152,159,196,197,198],[152,159],[140,152,159,196],[59,152],[55,152],[56,152],[57,58,152],[60,152],[67,68,69,70,71,72,73,74,75,76,78,152],[66,67,152],[66,67,70,152],[67,69,152],[66,67,77,152],[67,77,79,86,152],[67,152],[67,80,81,82,83,84,85,152],[68,69,70,71,72,73,74,75,76,78],[77],[77,79,86],[80,81,82,83,84,85]],"referencedMap":[[91,1],[89,2],[88,2],[94,3],[90,1],[92,4],[93,1],[95,2],[97,5],[96,2],[99,6],[98,2],[100,2],[101,2],[106,7],[102,2],[105,8],[103,2],[107,2],[161,9],[162,10],[164,11],[165,2],[166,2],[167,2],[168,2],[169,12],[170,13],[171,2],[104,2],[172,14],[174,15],[175,16],[173,17],[176,18],[177,19],[178,20],[179,21],[180,22],[181,23],[182,24],[183,25],[184,26],[185,27],[186,11],[187,2],[160,2],[189,2],[190,28],[108,29],[109,29],[111,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,39],[121,39],[122,40],[123,41],[124,42],[125,43],[110,2],[158,2],[126,44],[127,45],[128,46],[159,47],[129,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[139,58],[140,59],[142,60],[141,61],[143,62],[144,63],[145,2],[146,64],[147,65],[148,66],[149,67],[150,68],[151,69],[152,70],[153,71],[154,72],[155,73],[156,74],[157,75],[191,2],[192,41],[193,2],[194,2],[200,76],[201,2],[64,2],[202,2],[203,77],[204,78],[205,77],[207,79],[209,77],[206,77],[208,79],[210,2],[211,80],[62,2],[66,81],[67,77],[212,2],[65,2],[213,2],[214,2],[215,2],[217,82],[163,2],[218,2],[234,2],[232,83],[231,84],[222,85],[223,86],[224,86],[225,85],[226,85],[227,85],[228,87],[221,88],[229,84],[230,89],[233,90],[235,91],[236,2],[237,92],[238,93],[219,2],[63,2],[188,94],[199,95],[196,96],[198,97],[197,96],[195,2],[216,2],[220,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[8,2],[48,2],[45,2],[46,2],[47,2],[49,2],[9,2],[50,2],[51,2],[52,2],[53,2],[1,2],[10,2],[54,2],[60,98],[56,99],[55,2],[57,100],[58,2],[59,101],[61,102],[79,103],[68,104],[71,105],[70,106],[72,106],[73,104],[74,104],[75,104],[76,104],[69,104],[78,107],[87,108],[80,109],[81,109],[82,109],[86,110],[83,109],[84,109],[85,109],[77,109]],"exportedModulesMap":[[91,1],[89,2],[88,2],[94,3],[90,1],[92,4],[93,1],[95,2],[97,5],[96,2],[99,6],[98,2],[100,2],[101,2],[106,7],[102,2],[105,8],[103,2],[107,2],[161,9],[162,10],[164,11],[165,2],[166,2],[167,2],[168,2],[169,12],[170,13],[171,2],[104,2],[172,14],[174,15],[175,16],[173,17],[176,18],[177,19],[178,20],[179,21],[180,22],[181,23],[182,24],[183,25],[184,26],[185,27],[186,11],[187,2],[160,2],[189,2],[190,28],[108,29],[109,29],[111,30],[112,31],[113,32],[114,33],[115,34],[116,35],[117,36],[118,37],[119,38],[120,39],[121,39],[122,40],[123,41],[124,42],[125,43],[110,2],[158,2],[126,44],[127,45],[128,46],[159,47],[129,48],[130,49],[131,50],[132,51],[133,52],[134,53],[135,54],[136,55],[137,56],[138,57],[139,58],[140,59],[142,60],[141,61],[143,62],[144,63],[145,2],[146,64],[147,65],[148,66],[149,67],[150,68],[151,69],[152,70],[153,71],[154,72],[155,73],[156,74],[157,75],[191,2],[192,41],[193,2],[194,2],[200,76],[201,2],[64,2],[202,2],[203,77],[204,78],[205,77],[207,79],[209,77],[206,77],[208,79],[210,2],[211,80],[62,2],[66,81],[67,77],[212,2],[65,2],[213,2],[214,2],[215,2],[217,82],[163,2],[218,2],[234,2],[232,83],[231,84],[222,85],[223,86],[224,86],[225,85],[226,85],[227,85],[228,87],[221,88],[229,84],[230,89],[233,90],[235,91],[236,2],[237,92],[238,93],[219,2],[63,2],[188,94],[199,95],[196,96],[198,97],[197,96],[195,2],[216,2],[220,2],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[8,2],[48,2],[45,2],[46,2],[47,2],[49,2],[9,2],[50,2],[51,2],[52,2],[53,2],[1,2],[10,2],[54,2],[60,98],[56,99],[55,2],[57,100],[58,2],[59,101],[61,102],[79,111],[78,112],[87,113],[86,114]],"semanticDiagnosticsPerFile":[91,89,88,94,90,92,93,95,97,96,99,98,100,101,106,102,105,103,107,161,162,164,165,166,167,168,169,170,171,104,172,174,175,173,176,177,178,179,180,181,182,183,184,185,186,187,160,189,190,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,110,158,126,127,128,159,129,130,131,132,133,134,135,136,137,138,139,140,142,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,191,192,193,194,200,201,64,202,203,204,205,207,209,206,208,210,211,62,66,67,212,65,213,214,215,217,163,218,234,232,231,222,223,224,225,226,227,228,221,229,230,233,235,236,237,238,219,63,188,199,196,198,197,195,216,220,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,1,10,54,60,56,55,57,58,59,61,79,68,71,70,72,73,74,75,76,69,78,87,80,81,82,86,83,84,85,77]},"version":"4.7.4"}
|
|
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.es2023.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.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.es2023.array.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","../../../../node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/vite/types/customEvent.d.ts","../../../../node_modules/vite/types/hot.d.ts","../../../../node_modules/vite/types/importGlob.d.ts","../../../../node_modules/vite/types/importMeta.d.ts","../../../../node_modules/vite/client.d.ts","../../src/ambient.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../src/hooks/useAbortController.ts","../../src/hooks/usePreviousValue.ts","../../src/hooks/useConstantLengthInvariant.ts","../../src/hooks/useArrayMapMemo.ts","../../src/hooks/useConstantValueInvariant.ts","../../src/hooks/useDebounce.ts","../../src/hooks/useDebounceCallback.ts","../../src/hooks/useForceRender.ts","../../src/hooks/useIsMounted.ts","../../src/hooks/useObjectMemo.ts","../../src/types.ts","../../src/hooks/useStoredState.ts","../../src/hooks/index.ts","../../src/referentiallyStable/emptyArray.ts","../../src/referentiallyStable/emptyObject.ts","../../src/referentiallyStable/identityFunction.ts","../../src/referentiallyStable/noop.ts","../../src/referentiallyStable/returnFalse.ts","../../src/referentiallyStable/returnTrue.ts","../../src/referentiallyStable/index.ts","../../src/index.ts","../../../../node_modules/@types/argparse/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/blueimp-md5/index.d.ts","../../../../node_modules/@types/braces/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/chai-subset/index.d.ts","../../../../node_modules/@types/classnames/types.d.ts","../../../../node_modules/@types/classnames/index.d.ts","../../../../node_modules/@types/cookie/index.d.ts","../../../../node_modules/@types/eslint/helpers.d.ts","../../../../node_modules/@types/eslint/node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/eslint/index.d.ts","../../../../node_modules/@types/eslint-scope/node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/eslint-scope/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/geojson/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.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/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/repl.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/index.d.ts","../../../../node_modules/@types/minimatch/index.d.ts","../../../../node_modules/@types/glob/index.d.ts","../../../../node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/@types/unist/index.d.ts","../../../../node_modules/@types/hast/index.d.ts","../../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/@types/is-function/index.d.ts","../../../../node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/@types/leaflet/index.d.ts","../../../../node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/@types/lodash/index.d.ts","../../../../node_modules/@types/mdast/index.d.ts","../../../../node_modules/@types/micromatch/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../../node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/@types/npmlog/index.d.ts","../../../../node_modules/@types/parse-json/index.d.ts","../../../../node_modules/@types/parse5/index.d.ts","../../../../node_modules/pg-types/index.d.ts","../../../../node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/@types/pg/index.d.ts","../../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../../../node_modules/@types/react-test-renderer/index.d.ts","../../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../../node_modules/@types/react-transition-group/config.d.ts","../../../../node_modules/@types/react-transition-group/index.d.ts","../../../../node_modules/@types/scheduler/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts","../../../../node_modules/@types/source-list-map/index.d.ts","../../../../node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/@types/tapable/index.d.ts","../../../../node_modules/source-map/source-map.d.ts","../../../../node_modules/@types/uglify-js/index.d.ts","../../../../node_modules/@types/uuid/index.d.ts","../../../../node_modules/anymatch/index.d.ts","../../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../../node_modules/@types/webpack-sources/index.d.ts","../../../../node_modules/@types/webpack/index.d.ts","../../../../node_modules/@types/webpack-env/index.d.ts","../../../../node_modules/@types/ws/index.d.ts","../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/@types/yargs/index.d.ts","../../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true},"bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","a0b0a059575ca62004fb85797f078a0a1d044da2d5c29993f11e7ce08a1ed3b4","bd668758155705240608e67d5664e5a34f2ec38724c95272dc134ce3c150dfe1","3cead9ca29f12a4887d2000124caaabe24b8146578b8630890001e7a9cdaa735",{"version":"440b4cd1c4971816554d6f424ba4fa23505c25f321681be32f266f87c4583f4d","affectsGlobalScope":true},{"version":"28d6c4339ab97f4c9fa035bfe6e58b16d7367f2eeeba53c8ef159b904381d4e3","affectsGlobalScope":true},"65996936fbb042915f7b74a200fcdde7e410f32a669b1ab9597cfaa4b0faddb5",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"7fb6faf1006c3503d44e4922c8c65772ddc98e92bad7c2ae2d5db123f3e297b3","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"1119fa53c926c20e281cb27ca310a053daee51ff4d4105fbec8c95cbc51deba8","signature":"76e9a763eef4a0ef8a4f50e387b9fad5266d471d8b0f62619f31bbd3d21b9814"},{"version":"8ce84c30ed8e4ff9217beacd12b12344fc733ba4d759e016a6c2df97a172cfda","signature":"2bc449b91944ffae1f59471da701908ff793787f257f23b4ef71759acc97939f"},{"version":"1ec802e9ffbe86a6164b5809ed7819d11fb3e29f7b744827bc33830141718c74","signature":"572d37a64f63ea48d1e50cc50a3ffb9dea5fb130926dc53f9eef8e867c6982d5"},{"version":"b1096d58f6517057f746012925a47ec2d066d0c4143337982dc7f15467ca747e","signature":"809cd2debef3870c93afe5ddf02db6f18f4e223163bf252af70241de431f4465"},{"version":"4e9b248518009250ac32d8d2a7537f8915067b27c385b19a9693206e3493d0be","signature":"5d05ccc4198e13f67f653cb968b468bb81cf3e65ae591cf59cf30f8ab6450237"},{"version":"e7a67060180f7a26df5eb50bc0d146a97ba95ff352e40053ee133acbb1ec54d2","signature":"19fc07b31d401c27075277ed71154ab13c74ef43ab20898e7ae24de8d16fb172"},{"version":"fadab96a7c395023a719dec64dd1a94a501e1164552c48734fd9f568e0132aca","signature":"807c0151462ab7b02b0a3bf439c110128ebef4644850d10b95a280efad9241fd"},{"version":"d0606fc9b7309eef1022f066b55be926544edc47e0b211c60a54367daa7f1320","signature":"fc9a8cb8b917cf34cb0a3dbd776dd49c59dc39570347e5cf474414f7202fc9ea"},{"version":"8e83142922b25c87b8b3d90ecfc44a60a3017129abee86227a71bc2491e79678","signature":"1dff877fb3826a2fd45c017bb331f5c3c85da2498d72a64c6e4c08bd09c6ae95"},{"version":"e3bac02b563a2ebfb9784935f4a039531c7341c565d1c0707e65623578555e83","signature":"9e9ed85ced77a7b59d07a821d69db8a8e780bcd1caeb5623e6ac04401cba31c4"},{"version":"1ff0b5a9de5dd2ab9af8f3b2b0827aa5d819e2de0ac22ff9e83a4c7dc6971a2d","signature":"8b4adeab24aaca65cf5145650e670147494fbd9aa71ac29de6685b0bfbf4be05"},{"version":"008737134d625686e97c45ca486b4ed4e6c28868558d36f49dba7541a7c66fcb","signature":"1fca40d5ebdbcbda4a747741ec4626b13bd067b9340a4e711064926b20bda20e"},{"version":"928124d2fce3c85daa8d03f7d05ff6c4b619412e686a19f6d1974664a0dba46b","signature":"cc79ee3dc62774333ba535fc24864316b6d4374990e0b1414e4b88718ae5b940"},{"version":"6ed0434b66c265567ba50989270a2a406c1c7290de0ca0606424c5209f15c14b","signature":"944cd92c6b59feb32961d560267393f372b1dcff1d6cd71a6230ba03f91036b5"},{"version":"f9dccb27c442d882186eb81a6613368994304a1e19c581ab2d169e449f41a3ba","signature":"314e888c6a1a1cc4d30295ebacece510231e4e4ee7028434aee277abda977baf"},{"version":"ce96cdf4ec7233fd29eef8a8c8236c259997010527d25124c64760e645377271","signature":"f6e30e59f4a1f0d0e6b231c280322ce9b007ff9c54fdb13b707e870430341778"},{"version":"2f377947a423abcfb75b0e27d9986021be894b808ffa7cfcfde8d1e3b8214c90","signature":"58861fcc3db99d3761938fad76882bb93f726eaddbc3342cced707d00f94f5bd"},{"version":"194018367f7ed61f1bdbd2ce5c7ab2f16fb2f235dee82de70510ad132f6d5890","signature":"bda7d503a370f6aef217e2f68a326d4a5c2d4cae43f8131c084f509c8ccb83a7"},{"version":"9a2d06df39b9eb74e5d947dd74943894a9ad56a46c86bf0940e63a550233c376","signature":"6194964a45d631834d96f0c91ea7041d7e15f94db83b217e92466adf1646b894"},{"version":"8ed0aa43fcdb631f96d19eb2d5d13f76c4fe347350d16fae5340b2269a2fa508","signature":"d53878a952ebe4cc9bef9b45b2852a3f9d231f983045488c3b23e86a5ffb5033"},{"version":"72089c32eb9f710aa510a6e8515f6ce34fcc25072156430c7657af8d273130be","signature":"aeaf16b65ffc10aa25e02f0e46f01ef269ce6ebbe637ba4a5fb2bdc532500955"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","5ee005d57eb5b0e887f8451463ac412dc22e6868534f51f061166311f6c8baf5","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true},"dc688638e386342faae164e68ac0205274b6731e70ac1a45921f3ce3aa083795","d22e870fef25a052477d24f34356470262881420c8b058c89d86392de6502c42","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","4e75a89a181f3b091173e4c0828dec3fb1c24087d3bb4f37b4a31e0619e8336f","946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","a3b6c93a9838b8c94c6998e85646d6f2d07c20ecfe1e235dba62158b29451391","4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"4f6463a60e5754bbc4a864b2aaf8fecb7706b96a21b88f27b534589b801978b6","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"2534e46a52653b55dfb5a41ce427ec430c4afbaaf3bfcb1ae09b185c5d6bf169","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","83014f04136e78f7b8309637172ed40e05cdbf27ccdc8bf751aaec73f1d6da96","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","8bd106053ee0345dde7f626ed1f6100a89fb85f13ea65352627cf78c5f30c553","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","288dd0c774a5c6e3964084c7a2bc8cc6b746d70f44a9892d028d04f915cf7ebc","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"f7011a8d17a06e60dc591fd89b7bf40507d36a5a4d5913fa0eff4e18da001759","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","95518ff86843e226b62a800f679f6968ad8dac8ccbe30fbfe63de3afb13761a2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"88003d9ab15507806f41b120be6d407c1afe566c2f6689ebe3a034dd5ec0c8dc","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","077b139efd1a6318805a8b24f05e7af37946d9bf9426bcb4866b45b61e6aac90","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","25ee2170c6620d3007914b9a1a93480a4f0f76dccb3631ea4a92a22611ed5ea5","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","1a255ad66d2b50f7b42eca69228b9587878cf06900780ad57a306a933c6eaeb4","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","87ed0f84f0691d5c724b23159db96342e6b04ac69201b02c65936f4281ce1fbe","13868c5792808236b17dfe2803eafce911ea4d09d3b2fda95391891a494f988f","0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","eee8abb8503852554eec94e4f77339dbe8927f5f7dfecac41d9479d64bbfc475","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","d035565d969404edfb3dfce8a2e762fbed98f6dfd7388ac01af173aa1ef665bd",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","30688eab034d1aa3bbe4d8f2c7f462ddaec9f30f1a38a306a4728a9a06a58b11","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","5e8db4872785292074b394d821ae2fc10e4f8edc597776368aebbe8aefb24422","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9dcd1a6ae84def6ce3e80b27a367912e5b8e9f15c039143820ab76f7ceb8f3ab","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","eac647a94fb1f09789e12dfecb52dcd678d05159a4796b4e415aa15892f3b103","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","1fc49547f60101e7fac0d9113a52c29178be082d46d7525009aebafdbb170a69",{"version":"401845ce10d4d9848a8e39f5004446eef7c3db2de5e9341b8a17c9b00aefcc0a","affectsGlobalScope":true},"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"root":[68,[75,95]],"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},"fileIdsList":[[97,162],[162],[97,98,99,100,101,162],[97,99,162],[105,162],[107,162],[111,113,162],[110,111,112,162],[133,134,162,169,170],[134,162,169],[162,173],[162,178],[162,179],[117,162],[162,183,185,186,187,188,189,190,191,192,193,194,195],[162,183,184,186,187,188,189,190,191,192,193,194,195],[162,184,185,186,187,188,189,190,191,192,193,194,195],[162,183,184,185,187,188,189,190,191,192,193,194,195],[162,183,184,185,186,188,189,190,191,192,193,194,195],[162,183,184,185,186,187,189,190,191,192,193,194,195],[162,183,184,185,186,187,188,190,191,192,193,194,195],[162,183,184,185,186,187,188,189,191,192,193,194,195],[162,183,184,185,186,187,188,189,190,192,193,194,195],[162,183,184,185,186,187,188,189,190,191,193,194,195],[162,183,184,185,186,187,188,189,190,191,192,194,195],[162,183,184,185,186,187,188,189,190,191,192,193,195],[162,183,184,185,186,187,188,189,190,191,192,193,194],[104,162],[136,161,162,169,199,200],[136,150,162,169],[118,162],[121,162],[122,127,153,162],[123,133,134,141,150,161,162],[123,124,133,141,162],[125,162],[126,127,134,142,162],[127,150,158,162],[128,130,133,141,162],[129,162],[130,131,162],[132,133,162],[133,162],[133,134,135,150,161,162],[133,134,135,150,162],[136,141,150,161,162],[133,134,136,137,141,150,158,161,162],[136,138,150,158,161,162],[118,119,120,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],[133,139,162],[140,161,162],[130,133,141,150,162],[142,162],[143,162],[121,144,162],[145,160,162,166],[146,162],[147,162],[133,148,162],[148,149,162,164],[122,133,150,151,152,162],[122,150,152,162],[150,151,162],[153,162],[154,162],[133,156,157,162],[156,157,162],[127,141,158,162],[159,162],[141,160,162],[122,136,147,161,162],[127,162],[150,162,163],[162,164],[162,165],[122,127,133,135,144,150,161,162,164,166],[150,162,167],[133,150,158,162,169,206,207,210,211],[73,162],[73,162,215],[73,162,217],[162,217,218,219,220,221],[69,70,71,72,162],[162,224,263],[162,224,248,263],[162,263],[162,224],[162,224,249,263],[162,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262],[162,249,263],[162,267],[162,169,272,273,274,275,276,277,278,279,280,281,282],[162,271,272,281],[162,272,281],[162,264,271,272,281],[162,272],[127,162,271,281],[162,271,272,273,274,275,276,277,278,279,280,282],[127,162,169,266,267,268,270,283],[133,136,138,150,158,161,162,167,169],[162,287],[133,150,162,169],[162,169,207,208,209],[162,169],[150,162,169,207],[66,162],[62,162],[63,162],[64,65,162],[67,162],[74,75,76,77,78,79,80,81,82,83,84,86,162],[73,74,162],[73,74,77,162],[74,76,162],[73,74,85,162],[74,85,87,94,162],[74,162],[74,88,89,90,91,92,93,162],[75,76,77,78,79,80,81,82,83,84,86],[73],[85],[85,87,94],[88,89,90,91,92,93]],"referencedMap":[[99,1],[97,2],[96,2],[102,3],[98,1],[100,4],[101,1],[103,2],[104,2],[106,5],[105,2],[108,6],[107,2],[109,2],[115,7],[114,2],[110,2],[113,8],[111,2],[116,2],[117,2],[171,9],[172,10],[174,11],[175,2],[176,2],[177,2],[178,2],[179,12],[180,13],[181,2],[112,2],[182,14],[184,15],[185,16],[183,17],[186,18],[187,19],[188,20],[189,21],[190,22],[191,23],[192,24],[193,25],[194,26],[195,27],[196,11],[197,28],[198,2],[170,2],[200,2],[201,29],[199,30],[118,31],[119,31],[121,32],[122,33],[123,34],[124,35],[125,36],[126,37],[127,38],[128,39],[129,40],[130,41],[131,41],[132,42],[133,43],[134,44],[135,45],[120,2],[168,2],[136,46],[137,47],[138,48],[169,49],[139,50],[140,51],[141,52],[142,53],[143,54],[144,55],[145,56],[146,57],[147,58],[148,59],[149,60],[150,61],[152,62],[151,63],[153,64],[154,65],[155,2],[156,66],[157,67],[158,68],[159,69],[160,70],[161,71],[162,72],[163,73],[164,74],[165,75],[166,76],[167,77],[202,2],[203,43],[204,2],[205,2],[211,78],[212,2],[71,2],[213,2],[214,79],[215,80],[216,79],[218,81],[220,79],[217,79],[219,81],[221,2],[222,82],[69,2],[73,83],[74,79],[70,2],[223,2],[72,2],[248,84],[249,85],[224,86],[227,86],[246,84],[247,84],[237,84],[236,87],[234,84],[229,84],[242,84],[240,84],[244,84],[228,84],[241,84],[245,84],[230,84],[231,84],[243,84],[225,84],[232,84],[233,84],[235,84],[239,84],[250,88],[238,84],[226,84],[263,89],[262,2],[257,88],[259,90],[258,88],[251,88],[252,88],[254,88],[256,88],[260,90],[261,90],[253,90],[255,90],[264,2],[265,2],[266,2],[268,91],[173,2],[269,2],[285,2],[283,92],[282,93],[273,94],[274,95],[275,95],[276,94],[277,94],[278,94],[279,96],[272,97],[280,93],[281,98],[271,2],[284,99],[286,100],[287,2],[288,101],[289,102],[270,2],[210,103],[207,104],[209,105],[208,104],[206,2],[267,2],[60,2],[61,2],[12,2],[13,2],[15,2],[14,2],[2,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[3,2],[4,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[5,2],[31,2],[32,2],[33,2],[34,2],[6,2],[38,2],[35,2],[36,2],[37,2],[39,2],[7,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[8,2],[50,2],[47,2],[48,2],[49,2],[51,2],[9,2],[52,2],[53,2],[54,2],[57,2],[55,2],[56,2],[58,2],[10,2],[1,2],[11,2],[59,2],[67,106],[63,107],[62,2],[64,108],[65,2],[66,109],[68,110],[87,111],[75,112],[78,113],[77,114],[79,114],[80,112],[81,112],[82,112],[83,112],[84,112],[76,112],[86,115],[95,116],[88,117],[89,117],[90,117],[94,118],[91,117],[92,117],[93,117],[85,117]],"exportedModulesMap":[[99,1],[97,2],[96,2],[102,3],[98,1],[100,4],[101,1],[103,2],[104,2],[106,5],[105,2],[108,6],[107,2],[109,2],[115,7],[114,2],[110,2],[113,8],[111,2],[116,2],[117,2],[171,9],[172,10],[174,11],[175,2],[176,2],[177,2],[178,2],[179,12],[180,13],[181,2],[112,2],[182,14],[184,15],[185,16],[183,17],[186,18],[187,19],[188,20],[189,21],[190,22],[191,23],[192,24],[193,25],[194,26],[195,27],[196,11],[197,28],[198,2],[170,2],[200,2],[201,29],[199,30],[118,31],[119,31],[121,32],[122,33],[123,34],[124,35],[125,36],[126,37],[127,38],[128,39],[129,40],[130,41],[131,41],[132,42],[133,43],[134,44],[135,45],[120,2],[168,2],[136,46],[137,47],[138,48],[169,49],[139,50],[140,51],[141,52],[142,53],[143,54],[144,55],[145,56],[146,57],[147,58],[148,59],[149,60],[150,61],[152,62],[151,63],[153,64],[154,65],[155,2],[156,66],[157,67],[158,68],[159,69],[160,70],[161,71],[162,72],[163,73],[164,74],[165,75],[166,76],[167,77],[202,2],[203,43],[204,2],[205,2],[211,78],[212,2],[71,2],[213,2],[214,79],[215,80],[216,79],[218,81],[220,79],[217,79],[219,81],[221,2],[222,82],[69,2],[73,83],[74,79],[70,2],[223,2],[72,2],[248,84],[249,85],[224,86],[227,86],[246,84],[247,84],[237,84],[236,87],[234,84],[229,84],[242,84],[240,84],[244,84],[228,84],[241,84],[245,84],[230,84],[231,84],[243,84],[225,84],[232,84],[233,84],[235,84],[239,84],[250,88],[238,84],[226,84],[263,89],[262,2],[257,88],[259,90],[258,88],[251,88],[252,88],[254,88],[256,88],[260,90],[261,90],[253,90],[255,90],[264,2],[265,2],[266,2],[268,91],[173,2],[269,2],[285,2],[283,92],[282,93],[273,94],[274,95],[275,95],[276,94],[277,94],[278,94],[279,96],[272,97],[280,93],[281,98],[271,2],[284,99],[286,100],[287,2],[288,101],[289,102],[270,2],[210,103],[207,104],[209,105],[208,104],[206,2],[267,2],[60,2],[61,2],[12,2],[13,2],[15,2],[14,2],[2,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[3,2],[4,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[5,2],[31,2],[32,2],[33,2],[34,2],[6,2],[38,2],[35,2],[36,2],[37,2],[39,2],[7,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[8,2],[50,2],[47,2],[48,2],[49,2],[51,2],[9,2],[52,2],[53,2],[54,2],[57,2],[55,2],[56,2],[58,2],[10,2],[1,2],[11,2],[59,2],[67,106],[63,107],[62,2],[64,108],[65,2],[66,109],[68,110],[87,119],[82,120],[83,120],[86,121],[95,122],[94,123]],"semanticDiagnosticsPerFile":[99,97,96,102,98,100,101,103,104,106,105,108,107,109,115,114,110,113,111,116,117,171,172,174,175,176,177,178,179,180,181,112,182,184,185,183,186,187,188,189,190,191,192,193,194,195,196,197,198,170,200,201,199,118,119,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,120,168,136,137,138,169,139,140,141,142,143,144,145,146,147,148,149,150,152,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,202,203,204,205,211,212,71,213,214,215,216,218,220,217,219,221,222,69,73,74,70,223,72,248,249,224,227,246,247,237,236,234,229,242,240,244,228,241,245,230,231,243,225,232,233,235,239,250,238,226,263,262,257,259,258,251,252,254,256,260,261,253,255,264,265,266,268,173,269,285,283,282,273,274,275,276,277,278,279,272,280,281,271,284,286,287,288,289,270,210,207,209,208,206,267,60,61,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,10,1,11,59,67,63,62,64,65,66,68,87,75,78,77,79,80,81,82,83,84,76,86,95,88,89,90,94,91,92,93,85],"latestChangedDtsFile":"./index.d.ts"},"version":"5.0.2"}
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Serializable = string | number | boolean | null | readonly Serializable[] | {
|
|
2
2
|
readonly [K in string]?: Serializable;
|
|
3
3
|
};
|
|
4
4
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GACrB,MAAM,GACN,MAAM,GACN,OAAO,GACP,IAAI,GACJ,SAAS,YAAY,EAAE,GACvB;IAAE,QAAQ,EAAE,CAAC,IAAI,MAAM,CAAC,CAAC,EAAE,YAAY;CAAE,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contember/react-utils",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "1.1.0-
|
|
4
|
+
"version": "1.1.0-rc.12",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/production/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
".": {
|
|
10
10
|
"import": {
|
|
11
11
|
"development": "./dist/development/index.js",
|
|
12
|
-
"production": "./dist/production/index.js"
|
|
12
|
+
"production": "./dist/production/index.js",
|
|
13
|
+
"default": "./dist/production/index.js"
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
},
|
|
@@ -18,14 +19,15 @@
|
|
|
18
19
|
"src/"
|
|
19
20
|
],
|
|
20
21
|
"typings": "./dist/types/index.d.ts",
|
|
21
|
-
"peerDependencies": {
|
|
22
|
-
"react": "^17 || ^18"
|
|
23
|
-
},
|
|
24
22
|
"scripts": {
|
|
25
|
-
"build": "
|
|
23
|
+
"build": "yarn build:js:dev && yarn build:js:prod",
|
|
26
24
|
"build:js:dev": "vite build --mode development",
|
|
27
25
|
"build:js:prod": "vite build --mode production",
|
|
28
26
|
"ae:build": "api-extractor run --local",
|
|
29
27
|
"ae:test": "api-extractor run"
|
|
30
|
-
}
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"react": "^17 || ^18"
|
|
31
|
+
},
|
|
32
|
+
"stableVersion": "0.0.0"
|
|
31
33
|
}
|
package/src/hooks/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './useArrayMapMemo'
|
|
|
3
3
|
export * from './useConstantLengthInvariant'
|
|
4
4
|
export * from './useConstantValueInvariant'
|
|
5
5
|
export * from './useDebounce'
|
|
6
|
+
export * from './useDebounceCallback'
|
|
6
7
|
export * from './useForceRender'
|
|
7
8
|
export * from './useIsMounted'
|
|
8
9
|
export * from './useObjectMemo'
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { usePreviousValue } from './usePreviousValue'
|
|
2
2
|
|
|
3
3
|
// This entire hook should get optimized away for prod
|
|
4
|
-
export const useConstantLengthInvariant = <Item
|
|
4
|
+
export const useConstantLengthInvariant = <Item>(items: Item[], message?: string) => {
|
|
5
5
|
if (import.meta.env.DEV) {
|
|
6
6
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
7
7
|
const previous = usePreviousValue(items)
|
|
8
8
|
if (previous.length !== items.length) {
|
|
9
9
|
throw new Error(
|
|
10
|
-
`Invariant violation: ${
|
|
11
|
-
message || 'Changing the length of an array whose length must remain constant between renders.'
|
|
10
|
+
`Invariant violation: ${message || 'Changing the length of an array whose length must remain constant between renders.'
|
|
12
11
|
}`,
|
|
13
12
|
)
|
|
14
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { usePreviousValue } from './usePreviousValue'
|
|
2
2
|
|
|
3
3
|
// This entire hook should get optimized away for prod
|
|
4
|
-
export const useConstantValueInvariant = <Value
|
|
4
|
+
export const useConstantValueInvariant = <Value>(value: Value, message?: string) => {
|
|
5
5
|
if (import.meta.env.DEV) {
|
|
6
6
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
7
7
|
const previous = usePreviousValue(value)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useCallback, useEffect, useRef } from 'react'
|
|
2
|
+
|
|
3
|
+
export const useDebounceCallback = (cb: () => any, debounceMs: number) => {
|
|
4
|
+
const timerRef = useRef<ReturnType<typeof setTimeout>>()
|
|
5
|
+
const cbRef = useRef(cb)
|
|
6
|
+
cbRef.current = cb
|
|
7
|
+
|
|
8
|
+
useEffect(() => {
|
|
9
|
+
return () => timerRef.current && clearTimeout(timerRef.current)
|
|
10
|
+
}, [])
|
|
11
|
+
|
|
12
|
+
return useCallback(() => {
|
|
13
|
+
timerRef.current && clearTimeout(timerRef.current)
|
|
14
|
+
|
|
15
|
+
timerRef.current = setTimeout(() => {
|
|
16
|
+
cbRef.current()
|
|
17
|
+
}, debounceMs)
|
|
18
|
+
}, [debounceMs])
|
|
19
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2022 Contember Limited
|
|
2
|
-
|
|
3
|
-
Portions of this software are licensed as follows:
|
|
4
|
-
|
|
5
|
-
* All content that resides under the "EE/" directory of this repository, if that directory exists, is licensed under the license defined in "EE/LICENSE".
|
|
6
|
-
* All third party components incorporated into the Contember/Admin are licensed under the original license provided by the owner of the applicable component.
|
|
7
|
-
* Content outside of the above mentioned directories or restrictions above is available under the Apache License, Version 2.0 (the "License") as defined below.
|
|
8
|
-
|
|
9
|
-
-------------------------------------------------------------------------
|
|
10
|
-
Apache License
|
|
11
|
-
Version 2.0, January 2004
|
|
12
|
-
http://www.apache.org/licenses/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
16
|
-
|
|
17
|
-
1. Definitions.
|
|
18
|
-
|
|
19
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
20
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
21
|
-
|
|
22
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
23
|
-
the copyright owner that is granting the License.
|
|
24
|
-
|
|
25
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
26
|
-
other entities that control, are controlled by, or are under common
|
|
27
|
-
control with that entity. For the purposes of this definition,
|
|
28
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
29
|
-
direction or management of such entity, whether by contract or
|
|
30
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
31
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
32
|
-
|
|
33
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
34
|
-
exercising permissions granted by this License.
|
|
35
|
-
|
|
36
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
37
|
-
including but not limited to software source code, documentation
|
|
38
|
-
source, and configuration files.
|
|
39
|
-
|
|
40
|
-
"Object" form shall mean any form resulting from mechanical
|
|
41
|
-
transformation or translation of a Source form, including but
|
|
42
|
-
not limited to compiled object code, generated documentation,
|
|
43
|
-
and conversions to other media types.
|
|
44
|
-
|
|
45
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
46
|
-
Object form, made available under the License, as indicated by a
|
|
47
|
-
copyright notice that is included in or attached to the work
|
|
48
|
-
(an example is provided in the Appendix below).
|
|
49
|
-
|
|
50
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
51
|
-
form, that is based on (or derived from) the Work and for which the
|
|
52
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
53
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
54
|
-
of this License, Derivative Works shall not include works that remain
|
|
55
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
56
|
-
the Work and Derivative Works thereof.
|
|
57
|
-
|
|
58
|
-
"Contribution" shall mean any work of authorship, including
|
|
59
|
-
the original version of the Work and any modifications or additions
|
|
60
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
61
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
62
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
63
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
64
|
-
means any form of electronic, verbal, or written communication sent
|
|
65
|
-
to the Licensor or its representatives, including but not limited to
|
|
66
|
-
communication on electronic mailing lists, source code control systems,
|
|
67
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
68
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
69
|
-
excluding communication that is conspicuously marked or otherwise
|
|
70
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
71
|
-
|
|
72
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
73
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
74
|
-
subsequently incorporated within the Work.
|
|
75
|
-
|
|
76
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
77
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
78
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
79
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
80
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
81
|
-
Work and such Derivative Works in Source or Object form.
|
|
82
|
-
|
|
83
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
84
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
85
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
86
|
-
(except as stated in this section) patent license to make, have made,
|
|
87
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
88
|
-
where such license applies only to those patent claims licensable
|
|
89
|
-
by such Contributor that are necessarily infringed by their
|
|
90
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
91
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
92
|
-
institute patent litigation against any entity (including a
|
|
93
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
94
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
95
|
-
or contributory patent infringement, then any patent licenses
|
|
96
|
-
granted to You under this License for that Work shall terminate
|
|
97
|
-
as of the date such litigation is filed.
|
|
98
|
-
|
|
99
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
100
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
101
|
-
modifications, and in Source or Object form, provided that You
|
|
102
|
-
meet the following conditions:
|
|
103
|
-
|
|
104
|
-
(a) You must give any other recipients of the Work or
|
|
105
|
-
Derivative Works a copy of this License; and
|
|
106
|
-
|
|
107
|
-
(b) You must cause any modified files to carry prominent notices
|
|
108
|
-
stating that You changed the files; and
|
|
109
|
-
|
|
110
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
111
|
-
that You distribute, all copyright, patent, trademark, and
|
|
112
|
-
attribution notices from the Source form of the Work,
|
|
113
|
-
excluding those notices that do not pertain to any part of
|
|
114
|
-
the Derivative Works; and
|
|
115
|
-
|
|
116
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
117
|
-
distribution, then any Derivative Works that You distribute must
|
|
118
|
-
include a readable copy of the attribution notices contained
|
|
119
|
-
within such NOTICE file, excluding those notices that do not
|
|
120
|
-
pertain to any part of the Derivative Works, in at least one
|
|
121
|
-
of the following places: within a NOTICE text file distributed
|
|
122
|
-
as part of the Derivative Works; within the Source form or
|
|
123
|
-
documentation, if provided along with the Derivative Works; or,
|
|
124
|
-
within a display generated by the Derivative Works, if and
|
|
125
|
-
wherever such third-party notices normally appear. The contents
|
|
126
|
-
of the NOTICE file are for informational purposes only and
|
|
127
|
-
do not modify the License. You may add Your own attribution
|
|
128
|
-
notices within Derivative Works that You distribute, alongside
|
|
129
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
130
|
-
that such additional attribution notices cannot be construed
|
|
131
|
-
as modifying the License.
|
|
132
|
-
|
|
133
|
-
You may add Your own copyright statement to Your modifications and
|
|
134
|
-
may provide additional or different license terms and conditions
|
|
135
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
136
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
137
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
138
|
-
the conditions stated in this License.
|
|
139
|
-
|
|
140
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
141
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
142
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
143
|
-
this License, without any additional terms or conditions.
|
|
144
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
145
|
-
the terms of any separate license agreement you may have executed
|
|
146
|
-
with Licensor regarding such Contributions.
|
|
147
|
-
|
|
148
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
149
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
150
|
-
except as required for reasonable and customary use in describing the
|
|
151
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
152
|
-
|
|
153
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
154
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
155
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
156
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
157
|
-
implied, including, without limitation, any warranties or conditions
|
|
158
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
159
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
160
|
-
appropriateness of using or redistributing the Work and assume any
|
|
161
|
-
risks associated with Your exercise of permissions under this License.
|
|
162
|
-
|
|
163
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
164
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
165
|
-
unless required by applicable law (such as deliberate and grossly
|
|
166
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
167
|
-
liable to You for damages, including any direct, indirect, special,
|
|
168
|
-
incidental, or consequential damages of any character arising as a
|
|
169
|
-
result of this License or out of the use or inability to use the
|
|
170
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
171
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
172
|
-
other commercial damages or losses), even if such Contributor
|
|
173
|
-
has been advised of the possibility of such damages.
|
|
174
|
-
|
|
175
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
176
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
177
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
178
|
-
or other liability obligations and/or rights consistent with this
|
|
179
|
-
License. However, in accepting such obligations, You may act only
|
|
180
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
181
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
182
|
-
defend, and hold each Contributor harmless for any liability
|
|
183
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
184
|
-
of your accepting any such warranty or additional liability.
|
|
185
|
-
|
|
186
|
-
END OF TERMS AND CONDITIONS
|