@khanacademy/pure-markdown 0.2.13 → 0.2.15

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/src/index.ts DELETED
@@ -1,319 +0,0 @@
1
- /**
2
- * Contains markdown related functions in pure javascript,
3
- * extracted from perseus-markdown.jsx
4
- * Note that this file may be used in stand alone nodejs, thus
5
- * do not import anything from Perseus
6
- */
7
- export {libVersion} from "./version";
8
-
9
- import SimpleMarkdown from "@khanacademy/simple-markdown";
10
-
11
- const rWidgetRule = /^\[\[\u2603 (([a-z-]+) ([0-9]+))\]\]/;
12
-
13
- /**
14
- * This match function matches math in `$`s, such as:
15
- *
16
- * $y = x + 1$
17
- *
18
- * It functions roughly like the following regex:
19
- * /\$([^\$]*)\$/
20
- *
21
- * Unfortunately, math may have other `$`s inside it, as
22
- * long as they are inside `{` braces `}`, mostly for
23
- * `\text{ $math$ }`.
24
- *
25
- * To parse this, we can't use a regex, since we
26
- * should support arbitrary nesting (even though
27
- * MathJax actually only supports two levels of nesting
28
- * here, which we *could* parse with a regex).
29
- *
30
- * Non-regex matchers like this are now a first-class
31
- * concept in simple-markdown. Yay!
32
- *
33
- * This can also match block-math, which is math alone in a paragraph.
34
- */
35
- const mathMatcher = (source: any, state: any, isBlock: boolean) => {
36
- const length = source.length;
37
- let index = 0;
38
-
39
- // When looking for blocks, skip over leading spaces
40
- if (isBlock) {
41
- if (state.inline) {
42
- return null;
43
- }
44
- while (index < length && source[index] === " ") {
45
- index++;
46
- }
47
- }
48
-
49
- // Our source must start with a "$"
50
- if (!(index < length && source[index] === "$")) {
51
- return null;
52
- }
53
-
54
- index++;
55
- const startIndex = index;
56
- let braceLevel = 0;
57
-
58
- // Loop through the source, looking for a closing '$'
59
- // closing '$'s only count if they are not escaped with
60
- // a `\`, and we are not in nested `{}` braces.
61
- while (index < length) {
62
- const character = source[index];
63
-
64
- if (character === "\\") {
65
- // Consume both the `\` and the escaped char as a single
66
- // token.
67
- // This is so that the second `$` in `$\\$` closes
68
- // the math expression, since the first `\` is escaping
69
- // the second `\`, but the second `\` is not escaping
70
- // the second `$`.
71
- // This also handles the case of escaping `$`s or
72
- // braces `\{`
73
- index++;
74
- } else if (braceLevel <= 0 && character === "$") {
75
- let endIndex = index + 1;
76
- if (isBlock) {
77
- // Look for two trailing newlines after the closing `$`
78
- const match = /^(?: *\n){2,}/.exec(source.slice(endIndex));
79
- // @ts-expect-error - TS2322 - Type 'number | null' is not assignable to type 'number'.
80
- endIndex = match ? endIndex + match[0].length : null;
81
- }
82
-
83
- // Return an array that looks like the results of a
84
- // regex's .exec function:
85
- // capture[0] is the whole string
86
- // capture[1] is the first "paren" match, which is the
87
- // content of the math here, as if we wrote the regex
88
- // /\$([^\$]*)\$/
89
- if (endIndex) {
90
- return [
91
- source.substring(0, endIndex),
92
- source.substring(startIndex, index),
93
- ];
94
- }
95
- return null;
96
- } else if (character === "{") {
97
- braceLevel++;
98
- } else if (character === "}") {
99
- braceLevel--;
100
- } else if (character === "\n" && source[index - 1] === "\n") {
101
- // This is a weird case we supported in the old
102
- // math implementation--double newlines break
103
- // math. I'm preserving it for now because content
104
- // creators might have questions with single '$'s
105
- // in paragraphs...
106
- return null;
107
- }
108
-
109
- index++;
110
- }
111
-
112
- // we didn't find a closing `$`
113
- return null;
114
- };
115
- const mathMatch = (source: any, state: any): any =>
116
- mathMatcher(source, state, false);
117
- const blockMathMatch = (source: any, state: any): any =>
118
- mathMatcher(source, state, true);
119
-
120
- const TITLED_TABLE_REGEX = new RegExp(
121
- "^\\|\\| +(.*) +\\|\\| *\\n" +
122
- "(" +
123
- // The simple-markdown nptable regex, without
124
- // the leading `^`
125
- // @ts-expect-error - TS2532 - Object is possibly 'undefined'.
126
- SimpleMarkdown.defaultRules.nptable.match.regex.source.substring(1) +
127
- ")",
128
- );
129
-
130
- const crowdinJiptMatcher = SimpleMarkdown.blockRegex(/^(crwdns.*)\n\s*\n/);
131
-
132
- export const pureMarkdownRules = {
133
- ...SimpleMarkdown.defaultRules,
134
-
135
- // NOTE: basically ignored by JIPT. wraps everything at the outer layer
136
- columns: {
137
- order: -2,
138
- match: SimpleMarkdown.blockRegex(
139
- /^([\s\S]*\n\n)={5,}\n\n([\s\S]*)/,
140
- ) as any,
141
- parse: (capture: any, parse: any, state: any): any => {
142
- return {
143
- col1: parse(capture[1], state),
144
- col2: parse(capture[2], state),
145
- };
146
- },
147
- },
148
- crowdinId: {
149
- order: -1,
150
- match: (source: any, state: any, prevCapture: any): any => {
151
- // Only match on the just-in-place translation site
152
- if (state.isJipt) {
153
- return crowdinJiptMatcher(source, state, prevCapture);
154
- }
155
- return null;
156
- },
157
- parse: (capture: any, parse: any, state: any): any => ({
158
- id: capture[1],
159
- }),
160
- },
161
- // This is pretty much horrible, but we have a regex here to capture an
162
- // entire table + a title. capture[1] is the title. capture[2] of the
163
- // regex is a copy of the simple-markdown nptable regex. Then we turn
164
- // our capture[2] into tableCapture[0], and any further captures in
165
- // our table regex into tableCapture[1..], and we pass tableCapture to
166
- // our nptable regex
167
- titledTable: {
168
- // process immediately before nptables
169
- order: SimpleMarkdown.defaultRules.nptable.order - 0.5,
170
- match: SimpleMarkdown.blockRegex(TITLED_TABLE_REGEX) as any,
171
- parse: (capture: any, parse: any, state: any): any => {
172
- const title = SimpleMarkdown.parseInline(parse, capture[1], state);
173
-
174
- // Remove our [0] and [1] captures, and pass the rest to
175
- // the nptable parser
176
- const tableCapture = capture.slice(2);
177
- const table = SimpleMarkdown.defaultRules.nptable.parse(
178
- tableCapture,
179
- parse,
180
- state,
181
- );
182
- return {
183
- title: title,
184
- table: table,
185
- };
186
- },
187
- },
188
- widget: {
189
- order: SimpleMarkdown.defaultRules.link.order - 0.75,
190
- match: SimpleMarkdown.inlineRegex(rWidgetRule) as any,
191
- parse: (capture: any, parse: any, state: any): any => {
192
- return {
193
- id: capture[1],
194
- widgetType: capture[2],
195
- };
196
- },
197
- },
198
- blockMath: {
199
- order: (SimpleMarkdown.defaultRules.codeBlock.order + 0.5) as any,
200
- match: blockMathMatch,
201
- parse: (capture: any, parse: any, state: any): any => {
202
- return {
203
- content: capture[1],
204
- };
205
- },
206
- },
207
- math: {
208
- order: SimpleMarkdown.defaultRules.link.order - 0.25,
209
- match: mathMatch,
210
- parse: (capture: any, parse: any, state: any): any => {
211
- return {
212
- content: capture[1],
213
- };
214
- },
215
- },
216
- unescapedDollar: {
217
- order: SimpleMarkdown.defaultRules.link.order - 0.24,
218
- match: SimpleMarkdown.inlineRegex(/^(?!\\)\$/) as any,
219
- parse: (capture: any, parse: any, state: any): any => {
220
- return {};
221
- },
222
- },
223
- fence: {
224
- ...SimpleMarkdown.defaultRules.fence,
225
- parse: (capture: any, parse: any, state: any): any => {
226
- const node = SimpleMarkdown.defaultRules.fence.parse(
227
- capture,
228
- parse,
229
- state,
230
- );
231
-
232
- // support screenreader-only text with ```alt
233
- if (node.lang === "alt") {
234
- return {
235
- type: "codeBlock",
236
- lang: "alt",
237
- // default codeBlock parsing doesn't parse the contents.
238
- // We need to parse the contents for things like table
239
- // support :).
240
- // The \n\n is because the inside of the codeblock might
241
- // not end in double newlines for block rules, because
242
- // ordinarily we don't parse this :).
243
- content: parse(node.content + "\n\n", state),
244
- };
245
- }
246
- return node;
247
- },
248
- },
249
- blockQuote: {
250
- ...SimpleMarkdown.defaultRules.blockQuote,
251
- // Replace the less restrictive blockquote regex from SimpleMarkdown
252
- // with a more restrictive one. The only difference should be that
253
- //
254
- // > A blockquote
255
- //
256
- // > Another blockquote
257
- //
258
- // will now match as two different blockQuotes instead of a single
259
- // blockquote with some paragraph breaks in it.
260
- //
261
- // The main motivation for doing this is to provide better support for
262
- // translators translating blockquotes with multiple paragraphs in
263
- // them. When translating articles, we split up paragraphs, translate
264
- // them separately, and then recombine them. We do this so that
265
- // translators don't have to translate an entire article at a time,
266
- // they can instead translate paragraph-by-paragraph.That system
267
- // doesn't understand blockquotes, so it will split up blockquotes into
268
- // more than one paragraph. A way to solve this would be to make that
269
- // system understand blockquotes, but then translators would have to
270
- // translate an entire, multi-paragraph blockquote at a time. Instead,
271
- // we choose to modify our blockquote matching to split up
272
- // multi-paragraph blockquotes into multiple blockquotes.
273
- //
274
- // There is also precedence for doing this splitting up in other
275
- // libraries, for instance CommonMark also splits up blockquotes with
276
- // empty lines into multiple blockquotes:
277
- // https://spec.commonmark.org/0.28/#example-205
278
- match: SimpleMarkdown.blockRegex(
279
- /^ *>[^\n]+(\n( *>)?[^\n]+)*\n{2,}/,
280
- ) as any,
281
- },
282
- list: {
283
- ...SimpleMarkdown.defaultRules.list,
284
- match: (source: any, state: any, prevCapture: any): any => {
285
- // Since lists can contain double newlines and we have special
286
- // handling of double newlines while parsing jipt content, just
287
- // disable the list parser.
288
- if (state.isJipt) {
289
- return null;
290
- }
291
- return SimpleMarkdown.defaultRules.list.match(
292
- source,
293
- state,
294
- prevCapture,
295
- );
296
- },
297
- },
298
- // The lint rule never actually matches anything.
299
- // We check for lint after parsing, and, if we find any, we
300
- // transform the tree to add lint nodes. This rule is here
301
- // just for the react() function
302
- lint: {
303
- order: 1000,
304
- match: (s: any): any => null,
305
- parse: (capture: any, parse: any, state: any): any => ({}),
306
- },
307
- } as const;
308
-
309
- // @ts-expect-error - TS2345 - Argument of type '{ readonly columns: { readonly order: -2; readonly match: any; readonly parse: (capture: any, parse: any, state: any) => any; }; readonly crowdinId: { readonly order: -1; readonly match: (source: any, state: any, prevCapture: any) => any; readonly parse: (capture: any, parse: any, state: any) => any; }; ... 34 more ...' is not assignable to parameter of type 'ParserRules'.
310
- const builtParser = SimpleMarkdown.parserFor(pureMarkdownRules);
311
-
312
- export const parse = (source: string, state?: any): any => {
313
- const paragraphedSource = source + "\n\n";
314
-
315
- return builtParser(paragraphedSource, {
316
- ...state,
317
- inline: false,
318
- });
319
- };
package/src/version.ts DELETED
@@ -1,10 +0,0 @@
1
- // This file is processed by a Rollup plugin (replace) to inject the production
2
- // version number during the release build.
3
- // In dev, you'll never see the version number.
4
-
5
- import {addLibraryVersionToPerseusDebug} from "@khanacademy/perseus-core";
6
-
7
- const libName = "@khanacademy/pure-markdown";
8
- export const libVersion = "__lib_version__";
9
-
10
- addLibraryVersionToPerseusDebug(libName, libVersion);
@@ -1,12 +0,0 @@
1
- {
2
- "extends": "../tsconfig-shared.json",
3
- "compilerOptions": {
4
- "outDir": "./dist",
5
- "rootDir": "src",
6
- },
7
- "references": [
8
- {"path": "../perseus-core/tsconfig-build.json"},
9
- {"path": "../perseus-error/tsconfig-build.json"},
10
- {"path": "../simple-markdown/tsconfig-build.json"},
11
- ]
12
- }
@@ -1 +0,0 @@
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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","../perseus-core/dist/analytics.d.ts","../perseus-core/dist/types.d.ts","../perseus-core/dist/utils/add-library-version-to-perseus-debug.d.ts","../perseus-core/dist/version.d.ts","../perseus-core/dist/index.d.ts","./src/version.ts","../simple-markdown/dist/troublesome-types.d.ts","../../node_modules/@types/react/global.d.ts","../../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","../simple-markdown/dist/version.d.ts","../simple-markdown/dist/index.d.ts","./src/index.ts","./types/aphrodite.d.ts","./types/assets.d.ts","./types/hubble.d.ts","./types/jsdiff.d.ts","./types/raphael.d.ts","./types/utility.d.ts","../../node_modules/@types/aria-query/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/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/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/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/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/bonjour/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/connect-history-api-fallback/node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/detect-port/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/ejs/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/escodegen/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../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/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/mime/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/find-cache-dir/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/is-ci/node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/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/expect/node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/expect/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/expect/node_modules/pretty-format/build/index.d.ts","../../node_modules/expect/node_modules/jest-diff/build/index.d.ts","../../node_modules/expect/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/jquery/JQueryStatic.d.ts","../../node_modules/@types/jquery/JQuery.d.ts","../../node_modules/@types/jquery/misc.d.ts","../../node_modules/@types/jquery/legacy.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/jquery/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/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/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/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/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-dom/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/resolve/index.d.ts","../../node_modules/@types/retry/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/serve-index/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sockjs/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/testing-library__jest-dom/matchers.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/underscore/index.d.ts","../../node_modules/@types/unist/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":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","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":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13","30369d2114b141ecfeb15d64190371cb868a6190b1d80a563bf5816b6772ede6","58b905d0c7f042660b9c9a49400f06515f806b44646f2048308029b524a2c5a6","97d42d4332ec94afd5aae9318a21ac5bbb8fda10c719282d3a0f53d3cef83e32","ddc281c37e4be5c6a450b5d0d74a89fb041ecba2d9bfd34f3869488e92f2a495","952545fecba997842b1c3c573f59356d349c24941216706be8bfcd5fa6e498f4",{"version":"7e178aa1d05d2acc4862aab3e36d0df2b9c2b013f1a6f1fa37a01765a965b760","signature":"ddc281c37e4be5c6a450b5d0d74a89fb041ecba2d9bfd34f3869488e92f2a495"},"e0051a9adfb0f086a22f847d7bc6f58c00870532f4a856a49ed3b2d1ed6f373c",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e","5f8f00356f6a82e21493b2d57b2178f11b00cf8960df00bd37bdcae24c9333ca",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},"ddc281c37e4be5c6a450b5d0d74a89fb041ecba2d9bfd34f3869488e92f2a495","502a36184344dc2d1e0683def45bee7521e3bc6032b50b76dbfd16f1f4d4f3e8",{"version":"afc9d261a66195a1e14502b3efdb631b821e6e0c085e0af2687b112e68beb69d","signature":"c29d52c78e0a73a6f38bb945dc543fe1ff9a617011a3863d57e215e1ec16633d"},"80bf2d65930700aa5ab33d87e073c14e2f92c121ff492a46f7365bc9ad454566",{"version":"d9f662e1ab29cb98ba13723ab3efcbf6c0cad3edc8081071197935cb91dea636","affectsGlobalScope":true},"b04fc8bb50157c7def1b0b87a86a353d4f29b41b01e2d36b1b79ccaf1af83147","b5ae8664ca4f6bea8f4280758ac550f18f6ae1c63e1465f805a85bbec5601025","cc83d06659665af854af51145672028ecf3df00200dab93048c89b5eabb3d0fe",{"version":"ae14b3079eafca36309e6db62f65fc3977e12092cf738eff34f5eca3d139bed2","affectsGlobalScope":true},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f713064ca751dc588bc13832137c418cb70cf0446de92ade60ad631071558fca","7a1f3d0b8dd0e869c58b44848d9f0be3592c3ff6dc77091e7130306f6d2907ed","96c23535f4f9dd15beb767e070559ea672f6a35f103152836a67100605136a96","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","29a46d003ca3c721e6405f00dee7e3de91b14e09701eba5d887bf76fb2d47d38","3df59a50b6fdd703016b81e254633080b3fa1e9035a462e730235876470d0012","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"54ba7456adb777a685250cd144115ea51379784012ba1311255b715c6bdcff2a","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","a5edeccc71da079d52df5b6492f577d0131c102fc6296632a04f3dd07247911b","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","fedd311d427fdafac411b4e0edc0d1014668853679e021e04717a6de45ff5c0c",{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","56a7c3edfea83c399e455abf803b6d9387da5838b1bcb9e34d7e68d4c2d9cb38","72dff7d18139f0d579db7e4b904fb39f5740423f656edc1f84e4baa936b1fac0","febcc45f9517827496659c229a21b058831eef4cf9b71b77fd9a364ae12c3b9e","f2a60d253f7206372203b736144906bf135762100a2b3d1b415776ebf6575d07",{"version":"fa4546e9b67dbdcc0fa8d8653c6b89d49b9e7b637b3340bea78107ca161595fa","affectsGlobalScope":true},"9dffc5c0859e5aeba5e40b079d2f5e8047bdff91d0b3477d77b6fb66ee76c99d",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","df95e00612c1faa5e0e7ef0dba589b18665bbeb3221db2b6cee1fe4d0e61921f","1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a",{"version":"4d0536bbf67bc4301ebb5154eeb38168db0f7b34c490a80b6fa41bc6b751bcb4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","d2a38ad7bb4676e7fd5d058a08105d81ac232c363ee56be0b401fc277d50dbb1","2ac2e08e0d0ed266849cb9da521c3be170a8bc111d25eeeb668c7dbf0ac4171a","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","54c9959f2d8ba97a5fcc4345ac2fca6f1bc20fe5764570b7fef37bea107bc70b","913754f9281683f22d98d0ba7796896cee30c302baefa3dda69f61af8de244d8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","6cffc933aac260d5ac5d45a00b35454c98edbb6c0e80b964871b268cc199a871","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d",{"version":"458e2fd1185e659cb800ef68d01ef77de70dcab8860bedf6d94eaebe736751f1","affectsGlobalScope":true},{"version":"115761f64ad832d1c1d25b6d88968dbcbd9f041f26dcf4fee24c72f1877676ab","affectsGlobalScope":true},{"version":"fa0c33084cd3ff947ba61f0f6e3082eb0642482875d0600e1d555323f40bdb8e","affectsGlobalScope":true},{"version":"201995bd39718f4a520a5e89b0a378bc12821478d4ea46c70520728d6d79e7e4","affectsGlobalScope":true},{"version":"6f1f78e8c2a5c7cd2c38aa9cc5da26d9c039f2bbfa753f2a0a54ce41c4dff8d0","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","2b1af4170f6dfa90f43d2fe3d6c36f95b7fa121aa434a2acefb763d7be460a53","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","32ab25b7b28b24a138d879ca371b18c8fdfdd564ad5107e1333c5aa5d5fea494","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","b82fc740467e59abe3d6170417e461527d2a95610f55915fc59557c4b7be55ba","45b6a651b5e502cdfa93dc2f23779752def4ada323ebcfc34e4a4d22e9589971","54f1d17f9f484650cd49b53d9a6ba75593955a9ead093628888a37407b6ecd51","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","d7c30ea636d7d7cbeba0795baa8ec1bbd06274bd19a23ec0d7c84d0610a5f0c7","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","332c7ccf95426d3156ebedb7295979ef2435bd1c1a940024a4d068da3418718f","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","5e8db4872785292074b394d821ae2fc10e4f8edc597776368aebbe8aefb24422","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","0c681cfae79b859ed0c5ddc1160c0ea0a529f5d81b3488fb0641105bd8757200","cc0700b1b97e18a3d5d9184470502d8762ec85158819d662730c3a8c5d702584","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","f77ff4cd234d3fd18ddd5aeadb6f94374511931976d41f4b9f594cb71f7ce6f3","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","4f18b4e6081e5e980ef53ddf57b9c959d36cffe1eb153865f512a01aeffb5e1e","7f17d4846a88eca5fe71c4474ef687ee89c4acf9b5372ab9b2ee68644b7e0fe0","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","85f8ebd7f245e8bf29da270e8b53dcdd17528826ffd27176c5fc7e426213ef5a","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","bd0f4458d57115491a1dd9fe522fa1d6ffe45a85b12bbd463967f90b50e43c29",{"version":"06279f0df6f368af41fe267319e90b5af9d89ad489d1662164b94ce30a797c79","affectsGlobalScope":true},{"version":"0609dda5350cd6d8c42daef710dffe3b51521ffbd00109e234f7bfb7533194e7","affectsGlobalScope":true},"6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","610960e660271e158ba1656254569c3d72ff172a5eae5999f8970fadab3f86e5","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"noImplicitAny":false,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[69,121,183,184,185],[121,183,184,185],[69,70,71,72,73,121,183,184,185],[69,71,121,183,184,185],[94,121,128,129,183,184,185],[85,121,128,183,184,185],[120,121,128,134,183,184,185],[91,94,121,128,132,133,183,184,185],[94,121,128,183,184,185],[80,121,128,183,184,185],[121,143,145,183,184,185],[121,142,143,144,183,184,185],[91,94,121,128,132,133,148,183,184,185],[121,130,133,149,153,183,184,185],[92,121,128,183,184,185],[91,94,96,99,109,120,121,128,183,184,185],[121,159,183,184,185],[121,161,183,184,185],[121,162,183,184,185],[121,168,171,183,184,185],[121,167,183,184,185],[121,174,175,176,177,178,183,184,185],[91,121,123,128,181,182,184,185],[121,183,184],[121,183,185],[121,183,184,185,187,189,190,191,192,193,194,195,196,197,198,199],[121,183,184,185,187,188,190,191,192,193,194,195,196,197,198,199],[121,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199],[121,183,184,185,187,188,189,191,192,193,194,195,196,197,198,199],[121,183,184,185,187,188,189,190,192,193,194,195,196,197,198,199],[121,183,184,185,187,188,189,190,191,193,194,195,196,197,198,199],[121,183,184,185,187,188,189,190,191,192,194,195,196,197,198,199],[121,183,184,185,187,188,189,190,191,192,193,195,196,197,198,199],[121,183,184,185,187,188,189,190,191,192,193,194,196,197,198,199],[121,183,184,185,187,188,189,190,191,192,193,194,195,197,198,199],[121,183,184,185,187,188,189,190,191,192,193,194,195,196,198,199],[121,183,184,185,187,188,189,190,191,192,193,194,195,196,197,199],[121,183,184,185,187,188,189,190,191,192,193,194,195,196,197,198],[121,183,184,185,200,201],[121,152,183,184,185],[121,151,183,184,185],[94,120,121,128,183,184,185,204,205],[94,109,121,128,183,184,185],[75,121,183,184,185],[78,121,183,184,185],[79,84,112,121,183,184,185],[80,91,92,99,109,120,121,183,184,185],[80,81,91,99,121,183,184,185],[82,121,183,184,185],[83,84,92,100,121,183,184,185],[84,109,117,121,183,184,185],[85,87,91,99,121,183,184,185],[86,121,183,184,185],[87,88,121,183,184,185],[91,121,183,184,185],[89,91,121,183,184,185],[91,92,93,109,120,121,183,184,185],[91,92,93,106,109,112,121,183,184,185],[121,125,183,184,185],[87,94,99,109,120,121,183,184,185],[91,92,94,95,99,109,117,120,121,183,184,185],[94,96,109,117,120,121,183,184,185],[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,183,184,185],[91,97,121,183,184,185],[98,120,121,183,184,185],[87,91,99,109,121,183,184,185],[100,121,183,184,185],[101,121,183,184,185],[78,102,121,183,184,185],[103,119,121,125,183,184,185],[104,121,183,184,185],[105,121,183,184,185],[91,106,107,121,183,184,185],[106,108,121,123,183,184,185],[79,91,109,110,111,112,121,183,184,185],[79,109,111,121,183,184,185],[109,110,121,183,184,185],[112,121,183,184,185],[113,121,183,184,185],[91,115,116,121,183,184,185],[115,116,121,183,184,185],[84,99,109,117,121,183,184,185],[118,121,183,184,185],[99,119,121,183,184,185],[79,94,105,120,121,183,184,185],[84,121,183,184,185],[109,121,122,183,184,185],[121,123,183,184,185],[121,124,183,184,185],[79,84,91,93,102,109,120,121,123,125,183,184,185],[109,121,126,183,184,185],[121,180,183,184,185],[121,181,183,184,185],[58,121,183,184,185],[58,121,183,184,185,212],[121,183,184,185,212,213,214,215,216],[54,55,56,57,121,183,184,185],[121,128,183,184,185],[121,183,184,185,221,260],[121,183,184,185,221,245,260],[121,183,184,185,260],[121,183,184,185,221],[121,183,184,185,221,246,260],[121,183,184,185,221,222,223,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],[121,183,184,185,246,260],[92,109,121,128,147,183,184,185],[92,121,154,183,184,185],[94,121,128,150,152,183,184,185],[121,173,183,184,185,265],[91,94,96,109,117,120,121,126,128,183,184,185],[121,183,184,185,270],[91,109,121,128,183,184,185],[121,164,170,183,184,185],[121,166,183,184,185],[121,168,183,184,185],[121,165,169,183,184,185],[47,48,49,50,121,183,184,185],[52,60,121,183,184,185],[51,121,183,184,185],[53,58,59,121,183,184,185],[52,58,60]],"referencedMap":[[71,1],[69,2],[166,2],[68,2],[74,3],[70,1],[72,4],[73,1],[130,5],[131,6],[135,7],[134,8],[129,9],[136,10],[137,2],[138,2],[139,2],[140,2],[141,2],[146,11],[142,2],[145,12],[143,2],[149,13],[154,14],[155,2],[156,15],[157,2],[150,2],[158,16],[160,17],[159,2],[161,2],[162,18],[163,19],[173,20],[172,21],[175,2],[174,2],[179,22],[177,2],[176,2],[183,23],[185,24],[184,25],[144,2],[186,2],[188,26],[189,27],[187,28],[190,29],[191,30],[192,31],[193,32],[194,33],[195,34],[196,35],[197,36],[198,37],[199,38],[201,39],[200,2],[202,2],[151,40],[152,41],[203,2],[205,2],[206,42],[204,43],[75,44],[76,44],[78,45],[79,46],[80,47],[81,48],[82,49],[83,50],[84,51],[85,52],[86,53],[87,54],[88,54],[90,55],[89,56],[91,55],[92,57],[93,58],[77,59],[127,2],[94,60],[95,61],[96,62],[128,63],[97,64],[98,65],[99,66],[100,67],[101,68],[102,69],[103,70],[104,71],[105,72],[106,73],[107,73],[108,74],[109,75],[111,76],[110,77],[112,78],[113,79],[114,2],[115,80],[116,81],[117,82],[118,83],[119,84],[120,85],[121,86],[122,87],[123,88],[124,89],[125,90],[126,91],[207,2],[208,2],[181,92],[180,93],[209,2],[210,2],[56,2],[133,2],[132,2],[211,94],[213,95],[215,94],[212,94],[214,95],[216,2],[217,96],[54,2],[58,97],[218,98],[219,2],[220,2],[57,2],[245,99],[246,100],[221,101],[224,101],[243,99],[244,99],[234,99],[233,102],[231,99],[226,99],[239,99],[237,99],[241,99],[225,99],[238,99],[242,99],[227,99],[228,99],[240,99],[222,99],[229,99],[230,99],[232,99],[236,99],[247,103],[235,99],[223,99],[260,104],[259,2],[254,103],[256,105],[255,103],[248,103],[249,103],[251,103],[253,103],[257,105],[258,105],[250,105],[252,105],[148,106],[147,2],[261,107],[153,108],[262,2],[178,2],[263,9],[264,2],[266,109],[265,2],[182,2],[267,2],[268,2],[269,110],[270,2],[271,111],[272,112],[165,2],[55,2],[171,113],[164,2],[167,114],[169,115],[170,116],[168,21],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[47,2],[51,117],[48,2],[49,2],[50,2],[61,118],[52,119],[62,94],[63,2],[64,2],[65,2],[66,2],[67,2],[60,120],[53,2],[59,2]],"exportedModulesMap":[[71,1],[69,2],[166,2],[68,2],[74,3],[70,1],[72,4],[73,1],[130,5],[131,6],[135,7],[134,8],[129,9],[136,10],[137,2],[138,2],[139,2],[140,2],[141,2],[146,11],[142,2],[145,12],[143,2],[149,13],[154,14],[155,2],[156,15],[157,2],[150,2],[158,16],[160,17],[159,2],[161,2],[162,18],[163,19],[173,20],[172,21],[175,2],[174,2],[179,22],[177,2],[176,2],[183,23],[185,24],[184,25],[144,2],[186,2],[188,26],[189,27],[187,28],[190,29],[191,30],[192,31],[193,32],[194,33],[195,34],[196,35],[197,36],[198,37],[199,38],[201,39],[200,2],[202,2],[151,40],[152,41],[203,2],[205,2],[206,42],[204,43],[75,44],[76,44],[78,45],[79,46],[80,47],[81,48],[82,49],[83,50],[84,51],[85,52],[86,53],[87,54],[88,54],[90,55],[89,56],[91,55],[92,57],[93,58],[77,59],[127,2],[94,60],[95,61],[96,62],[128,63],[97,64],[98,65],[99,66],[100,67],[101,68],[102,69],[103,70],[104,71],[105,72],[106,73],[107,73],[108,74],[109,75],[111,76],[110,77],[112,78],[113,79],[114,2],[115,80],[116,81],[117,82],[118,83],[119,84],[120,85],[121,86],[122,87],[123,88],[124,89],[125,90],[126,91],[207,2],[208,2],[181,92],[180,93],[209,2],[210,2],[56,2],[133,2],[132,2],[211,94],[213,95],[215,94],[212,94],[214,95],[216,2],[217,96],[54,2],[58,97],[218,98],[219,2],[220,2],[57,2],[245,99],[246,100],[221,101],[224,101],[243,99],[244,99],[234,99],[233,102],[231,99],[226,99],[239,99],[237,99],[241,99],[225,99],[238,99],[242,99],[227,99],[228,99],[240,99],[222,99],[229,99],[230,99],[232,99],[236,99],[247,103],[235,99],[223,99],[260,104],[259,2],[254,103],[256,105],[255,103],[248,103],[249,103],[251,103],[253,103],[257,105],[258,105],[250,105],[252,105],[148,106],[147,2],[261,107],[153,108],[262,2],[178,2],[263,9],[264,2],[266,109],[265,2],[182,2],[267,2],[268,2],[269,110],[270,2],[271,111],[272,112],[165,2],[55,2],[171,113],[164,2],[167,114],[169,115],[170,116],[168,21],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[47,2],[51,117],[48,2],[49,2],[50,2],[61,121],[62,94],[63,2],[64,2],[65,2],[66,2],[67,2],[60,120],[53,2],[59,2]],"semanticDiagnosticsPerFile":[71,69,166,68,74,70,72,73,130,131,135,134,129,136,137,138,139,140,141,146,142,145,143,149,154,155,156,157,150,158,160,159,161,162,163,173,172,175,174,179,177,176,183,185,184,144,186,188,189,187,190,191,192,193,194,195,196,197,198,199,201,200,202,151,152,203,205,206,204,75,76,78,79,80,81,82,83,84,85,86,87,88,90,89,91,92,93,77,127,94,95,96,128,97,98,99,100,101,102,103,104,105,106,107,108,109,111,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,207,208,181,180,209,210,56,133,132,211,213,215,212,214,216,217,54,58,218,219,220,57,245,246,221,224,243,244,234,233,231,226,239,237,241,225,238,242,227,228,240,222,229,230,232,236,247,235,223,260,259,254,256,255,248,249,251,253,257,258,250,252,148,147,261,153,262,178,263,264,266,265,182,267,268,269,270,271,272,165,55,171,164,167,169,170,168,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,47,51,48,49,50,61,52,62,63,64,65,66,67,60,53,59],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"4.9.5"}