@atlaspack/utils 2.19.4-dev-ts-project-refs-d30e9754f.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/dist/prettyDiagnostic.js +12 -1
- package/dist/sourcemap.js +9 -2
- package/lib/prettyDiagnostic.js +17 -1
- package/lib/sourcemap.js +13 -2
- package/lib/types/sourcemap.d.ts +1 -1
- package/package.json +14 -15
- package/src/prettyDiagnostic.ts +11 -1
- package/src/sourcemap.ts +10 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/LICENSE +0 -201
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaspack/utils
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#800](https://github.com/atlassian-labs/atlaspack/pull/800) [`1180103`](https://github.com/atlassian-labs/atlaspack/commit/118010351ed444f8178988afb3f77807154dd933) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Fix errors when creating diagnostics with relative file paths
|
|
8
|
+
|
|
9
|
+
BREAKING CHANGE: The `remapSourceLocation` API in `@atlaspack/utils` now requires the project root
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`0207171`](https://github.com/atlassian-labs/atlaspack/commit/0207171e59e985c51e105aec2e0a99de174374bd), [`10ee3fa`](https://github.com/atlassian-labs/atlaspack/commit/10ee3fa5b75a92acde8973673d9b3c5b6f3958e5), [`bbe4e28`](https://github.com/atlassian-labs/atlaspack/commit/bbe4e28c89e5e9284bd730075d4d6f2a3cb37b21), [`1180103`](https://github.com/atlassian-labs/atlaspack/commit/118010351ed444f8178988afb3f77807154dd933), [`2bc93b1`](https://github.com/atlassian-labs/atlaspack/commit/2bc93b17cea07fd7cbb68acec84d8471345a22b4)]:
|
|
14
|
+
- @atlaspack/feature-flags@2.25.2
|
|
15
|
+
- @atlaspack/rust@3.8.2
|
|
16
|
+
- @atlaspack/types-internal@2.20.2
|
|
17
|
+
- @atlaspack/logger@2.14.24
|
|
18
|
+
- @atlaspack/codeframe@2.13.14
|
|
19
|
+
|
|
3
20
|
## 2.19.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/prettyDiagnostic.js
CHANGED
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.default = prettyDiagnostic;
|
|
7
7
|
const codeframe_1 = __importDefault(require("@atlaspack/codeframe"));
|
|
8
|
+
const logger_1 = __importDefault(require("@atlaspack/logger"));
|
|
8
9
|
const markdown_ansi_1 = __importDefault(require("@atlaspack/markdown-ansi"));
|
|
9
10
|
const chalk_1 = __importDefault(require("chalk"));
|
|
10
11
|
const path_1 = __importDefault(require("path"));
|
|
@@ -43,7 +44,17 @@ async function prettyDiagnostic(diagnostic, options, terminalWidth, format = 'an
|
|
|
43
44
|
let highlights = codeFrame.codeHighlights;
|
|
44
45
|
let code = codeFrame.code;
|
|
45
46
|
if (code == null && options && filePath != null) {
|
|
46
|
-
|
|
47
|
+
try {
|
|
48
|
+
code = await options.inputFS.readFile(filePath, 'utf8');
|
|
49
|
+
}
|
|
50
|
+
catch (e) {
|
|
51
|
+
// In strange cases this can fail and hide the underlying error.
|
|
52
|
+
logger_1.default.warn({
|
|
53
|
+
origin: '@atlaspack/utils',
|
|
54
|
+
message: `Failed to read file for generating codeframe: "${filePath}"`,
|
|
55
|
+
skipFormatting: true,
|
|
56
|
+
});
|
|
57
|
+
}
|
|
47
58
|
}
|
|
48
59
|
let formattedCodeFrame = '';
|
|
49
60
|
if (code != null) {
|
package/dist/sourcemap.js
CHANGED
|
@@ -8,6 +8,7 @@ exports.matchSourceMappingURL = matchSourceMappingURL;
|
|
|
8
8
|
exports.loadSourceMapUrl = loadSourceMapUrl;
|
|
9
9
|
exports.loadSourceMap = loadSourceMap;
|
|
10
10
|
exports.remapSourceLocation = remapSourceLocation;
|
|
11
|
+
const feature_flags_1 = require("@atlaspack/feature-flags");
|
|
11
12
|
const source_map_1 = __importDefault(require("@parcel/source-map"));
|
|
12
13
|
const path_1 = __importDefault(require("path"));
|
|
13
14
|
const path_2 = require("./path");
|
|
@@ -68,7 +69,7 @@ async function loadSourceMap(filename, contents, options) {
|
|
|
68
69
|
return sourcemapInstance;
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
|
-
function remapSourceLocation(loc, originalMap) {
|
|
72
|
+
function remapSourceLocation(loc, originalMap, projectRoot) {
|
|
72
73
|
let { filePath, start: { line: startLine, column: startCol }, end: { line: endLine, column: endCol }, } = loc;
|
|
73
74
|
let lineDiff = endLine - startLine;
|
|
74
75
|
let colDiff = endCol - startCol;
|
|
@@ -76,7 +77,13 @@ function remapSourceLocation(loc, originalMap) {
|
|
|
76
77
|
let end = originalMap.findClosestMapping(endLine, endCol - 1);
|
|
77
78
|
if (start?.original) {
|
|
78
79
|
if (start.source) {
|
|
79
|
-
|
|
80
|
+
if ((0, feature_flags_1.getFeatureFlag)('symbolLocationFix') &&
|
|
81
|
+
!path_1.default.isAbsolute(start.source)) {
|
|
82
|
+
filePath = path_1.default.join(projectRoot, start.source);
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
filePath = start.source;
|
|
86
|
+
}
|
|
80
87
|
}
|
|
81
88
|
({ line: startLine, column: startCol } = start.original);
|
|
82
89
|
startCol++; // source map columns are 0-based
|
package/lib/prettyDiagnostic.js
CHANGED
|
@@ -11,6 +11,13 @@ function _codeframe() {
|
|
|
11
11
|
};
|
|
12
12
|
return data;
|
|
13
13
|
}
|
|
14
|
+
function _logger() {
|
|
15
|
+
const data = _interopRequireDefault(require("@atlaspack/logger"));
|
|
16
|
+
_logger = function () {
|
|
17
|
+
return data;
|
|
18
|
+
};
|
|
19
|
+
return data;
|
|
20
|
+
}
|
|
14
21
|
function _markdownAnsi() {
|
|
15
22
|
const data = _interopRequireDefault(require("@atlaspack/markdown-ansi"));
|
|
16
23
|
_markdownAnsi = function () {
|
|
@@ -87,7 +94,16 @@ async function prettyDiagnostic(diagnostic, options, terminalWidth, format = 'an
|
|
|
87
94
|
let highlights = codeFrame.codeHighlights;
|
|
88
95
|
let code = codeFrame.code;
|
|
89
96
|
if (code == null && options && filePath != null) {
|
|
90
|
-
|
|
97
|
+
try {
|
|
98
|
+
code = await options.inputFS.readFile(filePath, 'utf8');
|
|
99
|
+
} catch (e) {
|
|
100
|
+
// In strange cases this can fail and hide the underlying error.
|
|
101
|
+
_logger().default.warn({
|
|
102
|
+
origin: '@atlaspack/utils',
|
|
103
|
+
message: `Failed to read file for generating codeframe: "${filePath}"`,
|
|
104
|
+
skipFormatting: true
|
|
105
|
+
});
|
|
106
|
+
}
|
|
91
107
|
}
|
|
92
108
|
let formattedCodeFrame = '';
|
|
93
109
|
if (code != null) {
|
package/lib/sourcemap.js
CHANGED
|
@@ -8,6 +8,13 @@ exports.loadSourceMap = loadSourceMap;
|
|
|
8
8
|
exports.loadSourceMapUrl = loadSourceMapUrl;
|
|
9
9
|
exports.matchSourceMappingURL = matchSourceMappingURL;
|
|
10
10
|
exports.remapSourceLocation = remapSourceLocation;
|
|
11
|
+
function _featureFlags() {
|
|
12
|
+
const data = require("@atlaspack/feature-flags");
|
|
13
|
+
_featureFlags = function () {
|
|
14
|
+
return data;
|
|
15
|
+
};
|
|
16
|
+
return data;
|
|
17
|
+
}
|
|
11
18
|
function _sourceMap() {
|
|
12
19
|
const data = _interopRequireDefault(require("@parcel/source-map"));
|
|
13
20
|
_sourceMap = function () {
|
|
@@ -66,7 +73,7 @@ async function loadSourceMap(filename, contents, options) {
|
|
|
66
73
|
return sourcemapInstance;
|
|
67
74
|
}
|
|
68
75
|
}
|
|
69
|
-
function remapSourceLocation(loc, originalMap) {
|
|
76
|
+
function remapSourceLocation(loc, originalMap, projectRoot) {
|
|
70
77
|
let {
|
|
71
78
|
filePath,
|
|
72
79
|
start: {
|
|
@@ -84,7 +91,11 @@ function remapSourceLocation(loc, originalMap) {
|
|
|
84
91
|
let end = originalMap.findClosestMapping(endLine, endCol - 1);
|
|
85
92
|
if (start !== null && start !== void 0 && start.original) {
|
|
86
93
|
if (start.source) {
|
|
87
|
-
|
|
94
|
+
if ((0, _featureFlags().getFeatureFlag)('symbolLocationFix') && !_path().default.isAbsolute(start.source)) {
|
|
95
|
+
filePath = _path().default.join(projectRoot, start.source);
|
|
96
|
+
} else {
|
|
97
|
+
filePath = start.source;
|
|
98
|
+
}
|
|
88
99
|
}
|
|
89
100
|
({
|
|
90
101
|
line: startLine,
|
package/lib/types/sourcemap.d.ts
CHANGED
|
@@ -12,4 +12,4 @@ export declare function loadSourceMap(filename: string, contents: string, option
|
|
|
12
12
|
fs: FileSystem;
|
|
13
13
|
projectRoot: string;
|
|
14
14
|
}): Promise<SourceMap | null | undefined>;
|
|
15
|
-
export declare function remapSourceLocation(loc: SourceLocation, originalMap: SourceMap): SourceLocation;
|
|
15
|
+
export declare function remapSourceLocation(loc: SourceLocation, originalMap: SourceMap, projectRoot: string): SourceLocation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/utils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"main": "./lib/index.js",
|
|
14
14
|
"source": "./src/index.ts",
|
|
15
|
-
"types": "./lib/types/
|
|
15
|
+
"types": "./lib/types/index.d.ts",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">= 16.0.0"
|
|
18
18
|
},
|
|
@@ -31,19 +31,20 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaspack/codeframe": "2.13.14
|
|
35
|
-
"@atlaspack/diagnostic": "2.14.
|
|
36
|
-
"@atlaspack/feature-flags": "2.25.2
|
|
37
|
-
"@atlaspack/logger": "2.14.24
|
|
38
|
-
"@atlaspack/markdown-ansi": "2.14.
|
|
39
|
-
"@atlaspack/
|
|
40
|
-
"@atlaspack/
|
|
41
|
-
"@iarna/toml": "^2.2.0",
|
|
34
|
+
"@atlaspack/codeframe": "2.13.14",
|
|
35
|
+
"@atlaspack/diagnostic": "2.14.4",
|
|
36
|
+
"@atlaspack/feature-flags": "2.25.2",
|
|
37
|
+
"@atlaspack/logger": "2.14.24",
|
|
38
|
+
"@atlaspack/markdown-ansi": "2.14.4",
|
|
39
|
+
"@atlaspack/types-internal": "2.20.2",
|
|
40
|
+
"@atlaspack/rust": "3.8.2",
|
|
42
41
|
"@parcel/source-map": "^2.1.1",
|
|
43
42
|
"@types/micromatch": "^4.0.9",
|
|
44
43
|
"@types/node-forge": "^1.3.13",
|
|
45
|
-
"ansi-html-community": "0.0.8",
|
|
46
44
|
"chalk": "^4.1.0",
|
|
45
|
+
"nullthrows": "^1.1.1",
|
|
46
|
+
"@iarna/toml": "^2.2.0",
|
|
47
|
+
"ansi-html-community": "0.0.8",
|
|
47
48
|
"clone": "^2.1.1",
|
|
48
49
|
"fast-glob": "^3.2.12",
|
|
49
50
|
"fastest-levenshtein": "^1.0.16",
|
|
@@ -53,14 +54,13 @@
|
|
|
53
54
|
"lru-cache": "^6.0.0",
|
|
54
55
|
"micromatch": "^4.0.4",
|
|
55
56
|
"node-forge": "^1.2.1",
|
|
56
|
-
"nullthrows": "^1.1.1",
|
|
57
57
|
"open": "^7.0.3",
|
|
58
58
|
"snarkdown": "^2.0.0",
|
|
59
59
|
"strip-ansi": "^6.0.0",
|
|
60
60
|
"terminal-link": "^2.1.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@atlaspack/babel-register": "2.14.
|
|
63
|
+
"@atlaspack/babel-register": "2.14.4",
|
|
64
64
|
"benny": "^3.7.1",
|
|
65
65
|
"random-int": "^1.0.0"
|
|
66
66
|
},
|
|
@@ -73,6 +73,5 @@
|
|
|
73
73
|
"type": "commonjs",
|
|
74
74
|
"scripts": {
|
|
75
75
|
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
|
|
76
|
-
}
|
|
77
|
-
"gitHead": "d30e9754f8d423d53261ec54ec87e6fa1299578a"
|
|
76
|
+
}
|
|
78
77
|
}
|
package/src/prettyDiagnostic.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type {Diagnostic} from '@atlaspack/diagnostic';
|
|
|
2
2
|
import type {PluginOptions} from '@atlaspack/types-internal';
|
|
3
3
|
|
|
4
4
|
import formatCodeFrame from '@atlaspack/codeframe';
|
|
5
|
+
import logger from '@atlaspack/logger';
|
|
5
6
|
import _mdAnsi from '@atlaspack/markdown-ansi';
|
|
6
7
|
import _chalk from 'chalk';
|
|
7
8
|
import path from 'path';
|
|
@@ -86,7 +87,16 @@ export default async function prettyDiagnostic(
|
|
|
86
87
|
let highlights = codeFrame.codeHighlights;
|
|
87
88
|
let code = codeFrame.code;
|
|
88
89
|
if (code == null && options && filePath != null) {
|
|
89
|
-
|
|
90
|
+
try {
|
|
91
|
+
code = await options.inputFS.readFile(filePath, 'utf8');
|
|
92
|
+
} catch (e) {
|
|
93
|
+
// In strange cases this can fail and hide the underlying error.
|
|
94
|
+
logger.warn({
|
|
95
|
+
origin: '@atlaspack/utils',
|
|
96
|
+
message: `Failed to read file for generating codeframe: "${filePath}"`,
|
|
97
|
+
skipFormatting: true,
|
|
98
|
+
});
|
|
99
|
+
}
|
|
90
100
|
}
|
|
91
101
|
|
|
92
102
|
let formattedCodeFrame = '';
|
package/src/sourcemap.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type {SourceLocation, FileSystem} from '@atlaspack/types-internal';
|
|
2
|
+
import {getFeatureFlag} from '@atlaspack/feature-flags';
|
|
2
3
|
import SourceMap from '@parcel/source-map';
|
|
3
4
|
import path from 'path';
|
|
4
5
|
import {normalizeSeparators, isAbsolute} from './path';
|
|
@@ -95,6 +96,7 @@ export async function loadSourceMap(
|
|
|
95
96
|
export function remapSourceLocation(
|
|
96
97
|
loc: SourceLocation,
|
|
97
98
|
originalMap: SourceMap,
|
|
99
|
+
projectRoot: string,
|
|
98
100
|
): SourceLocation {
|
|
99
101
|
let {
|
|
100
102
|
filePath,
|
|
@@ -108,7 +110,14 @@ export function remapSourceLocation(
|
|
|
108
110
|
|
|
109
111
|
if (start?.original) {
|
|
110
112
|
if (start.source) {
|
|
111
|
-
|
|
113
|
+
if (
|
|
114
|
+
getFeatureFlag('symbolLocationFix') &&
|
|
115
|
+
!path.isAbsolute(start.source)
|
|
116
|
+
) {
|
|
117
|
+
filePath = path.join(projectRoot, start.source);
|
|
118
|
+
} else {
|
|
119
|
+
filePath = start.source;
|
|
120
|
+
}
|
|
112
121
|
}
|
|
113
122
|
|
|
114
123
|
({line: startLine, column: startCol} = start.original);
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/DefaultMap.ts","./src/Deferred.ts","./src/PromiseQueue.ts","./src/TapStream.ts","../../../node_modules/@parcel/source-map/index.d.ts","../../../node_modules/@mischnic/json-sourcemap/dist/index.d.ts","../diagnostic/lib/types/diagnostic.d.ts","../feature-flags/lib/types/index.d.ts","../../../node_modules/@parcel/watcher/index.d.ts","../types-internal/lib/types/Cache.d.ts","../types-internal/lib/types/FilePath.d.ts","../types-internal/lib/types/FileSystem.d.ts","../types-internal/lib/types/unsafe.d.ts","../types-internal/lib/types/Glob.d.ts","../types-internal/lib/types/PackageName.d.ts","../types-internal/lib/types/SemverRange.d.ts","../types-internal/lib/types/DependencySpecifier.d.ts","../types-internal/lib/types/PackageManager.d.ts","../types-internal/lib/types/FileCreateInvalidation.d.ts","../types-internal/lib/types/NapiWorkerPool.d.ts","../types-internal/lib/types/index.d.ts","../../../node_modules/nullthrows/nullthrows.d.ts","../../../node_modules/fastest-levenshtein/mod.d.ts","./src/schema.ts","./src/path.ts","../../../node_modules/json5/lib/parse.d.ts","../../../node_modules/json5/lib/stringify.d.ts","../../../node_modules/json5/lib/index.d.ts","../../../node_modules/@iarna/toml/index.d.ts","../../../node_modules/lru-cache/dist/commonjs/index.d.ts","./src/config.ts","./src/alternatives.ts","./src/escape-html.ts","./src/ansi-html.ts","../../../node_modules/buffer/index.d.ts","./src/generateBuildMetrics.ts","./src/http-server.ts","../codeframe/lib/types/codeframe.d.ts","../markdown-ansi/lib/types/markdown-ansi.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/terminal-link/index.d.ts","../../../node_modules/snarkdown/snarkdown.d.ts","./src/prettyDiagnostic.ts","./src/countLines.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/node-forge/index.d.ts","../../utils/events/lib/types/types.d.ts","../../utils/events/lib/types/Disposable.d.ts","../../utils/events/lib/types/ValueEmitter.d.ts","../../utils/events/lib/types/errors.d.ts","../../utils/events/lib/types/index.d.ts","../rust/types.d.ts","../logger/lib/types/tracer.d.ts","../logger/lib/types/Logger.d.ts","./src/generateCertificate.ts","./src/getCertificate.ts","./src/getModuleParts.ts","../../../node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/index.d.ts","./node_modules/fast-glob/out/types/index.d.ts","./node_modules/fast-glob/out/settings.d.ts","./node_modules/fast-glob/out/managers/tasks.d.ts","./node_modules/fast-glob/out/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","./src/glob.ts","./src/getRootDir.ts","./src/isDirectoryInside.ts","./src/is-url.ts","./src/objectHash.ts","./src/prettifyTime.ts","./src/urlJoin.ts","./src/relativeUrl.ts","./src/dependency-location.ts","./src/debounce.ts","./src/throttle.ts","../../../node_modules/open/index.d.ts","./src/openInBrowser.ts","./src/collection.ts","./src/debug-tools.ts","./src/progress-message.ts","./src/hash.ts","./src/shared-buffer.ts","./src/replaceBundleReferences.ts","./src/stream.ts","./src/relativeBundlePath.ts","./src/sourcemap.ts","../../../node_modules/strip-ansi/index.d.ts","./src/index.ts","./src/blob.ts","./src/bundle-url.ts","./src/getExisting.ts","./src/parseCSSImport.ts","../../../node_modules/@types/async/index.d.ts","../../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/babel__helper-plugin-utils/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/ejs/index.d.ts","../../../node_modules/@types/fb-watchman/index.d.ts","../../../node_modules/@types/fresh/index.d.ts","../../../node_modules/@types/jsonfile/index.d.ts","../../../node_modules/@types/jsonfile/utils.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/http-proxy/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-cookie/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-dom/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-handler/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sorted-array-functions/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[125,169,201],[125,169],[125,169,236,237],[125,169,237,238,239,240],[125,169,219,237,239],[125,169,236,238],[125,169,182,219],[125,169,182,219,232],[125,169,232,233,234,235],[125,169,232,234],[125,169,233],[125,169,201,219,241,242,243,246],[125,169,242,243,245],[125,169,181,219,241,242,243,244],[125,169,243],[125,169,241,242],[125,169,219,241],[125,169,283,284,286,289,291],[125,169,283],[125,169,292],[125,169,283,286],[125,169,184,219],[125,169,181,219],[125,169,182,219,299,300],[125,169,181,219,302],[125,169,304],[125,169,181,184,186,189,201,212,219],[125,169,308],[125,169,309],[125,169,182,212,219],[125,169,252],[125,169,219],[125,166,169],[125,168,169],[169],[125,169,174,204],[125,169,170,175,181,182,189,201,212],[125,169,170,171,181,189],[125,169,172,213],[125,169,173,174,182,190],[125,169,174,201,209],[125,169,175,177,181,189],[125,168,169,176],[125,169,177,178],[125,169,179,181],[125,168,169,181],[125,169,181,182,183,201,212],[125,169,181,182,183,196,201,204],[125,164,169],[125,164,169,177,181,184,189,201,212],[125,169,181,182,184,185,189,201,209,212],[125,169,184,186,201,209,212],[123,124,125,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218],[125,169,181,187],[125,169,188,212],[125,169,177,181,189,201],[125,169,190],[125,169,191],[125,168,169,192],[125,166,167,168,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218],[125,169,194],[125,169,195],[125,169,181,196,197],[125,169,196,198,213,215],[125,169,181,201,202,204],[125,169,203,204],[125,169,201,202],[125,169,204],[125,169,205],[125,166,169,201,206],[125,169,181,207,208],[125,169,207,208],[125,169,174,189,201,209],[125,169,210],[125,169,189,211],[125,169,184,195,212],[125,169,174,213],[125,169,201,214],[125,169,188,215],[125,169,216],[125,169,181,183,192,201,204,212,214,215,217],[125,169,201,218],[125,169,325],[125,169,321,322,323,324],[125,169,328,367],[125,169,328,352,367],[125,169,367],[125,169,328],[125,169,328,353,367],[125,169,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366],[125,169,353,367],[125,169,182,184,219],[125,169,369],[125,169,374],[104,105,125,169],[125,169,170,219],[125,134,138,169,212],[125,134,169,201,212],[125,129,169],[125,131,134,169,212],[125,169,189,209],[125,129,169,219],[125,131,134,169,189,212],[125,126,127,128,130,133,169,181,201,212],[125,134,142,169],[125,127,132,169],[125,134,158,159,169],[125,127,130,134,169,204,212,219],[125,134,169],[125,126,169],[125,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,169],[125,134,151,154,169,177],[125,134,142,143,144,169],[125,132,134,143,145,169],[125,133,169],[125,127,129,134,169],[125,134,138,143,145,169],[125,138,169],[125,132,134,137,169,212],[125,127,131,134,142,169],[125,134,151,169],[125,129,134,158,169,204,217,219],[85,125,169],[84,125,169],[85,99,125,169,213,225,227],[125,169,226],[89,92,125,169],[87,89,125,169,201],[89,90,94,95,99,125,169],[83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,125,169,201],[125,169,219,248,249,250],[125,169,248,249],[125,169,248],[125,169,219,247],[80,125,169],[99,102,103,109,125,169,191],[111,125,169],[99,125,169,201,277],[85,99,106,107,108,125,169,191],[83,99,100,125,169,191,277],[99,125,169,191,220,228],[99,125,169],[125,169,182],[103,125,169,191],[99,125,169,191,254],[99,103,125,169,251,253],[99,125,169,201,226,267],[99,100,125,169,184,186,189,277],[79,80,81,82,102,103,109,110,111,112,114,115,121,122,125,169,229,230,231,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,272,273,274,275,276,278],[99,125,169,191],[125,169,174],[125,169,170,228,265],[85,99,116,117,118,119,120,125,169,191],[99,103,125,169,191],[125,169,191,212],[83,86,99,100,125,166,169,201,212,226,277],[84,85,100,101,125,169],[83,99,103,125,169,191],[99,125,169,201],[125,169,221],[125,169,222,223,224]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4e4ab613934f65949165ab8d5534630e0b071e4ffd731cc314b7a0f4129b1322","signature":"7c48673f3676cd7aaf37b2373df4b6a5c06dc77026df70bbf5104d56aa51e1c4","impliedFormat":1},{"version":"dea32994d828e2adc37b494ed2c3137c25a5c9eea118e063afc0d9f4844d2f80","signature":"655d636bf419caeb5d53e7cec81fea1e5b02657107e152b2d6751dc117bd987c","impliedFormat":1},{"version":"b0067429d691fd8042dda198d84fecaa2c9695d5fdfcc571d81f76db8741f201","signature":"d846a252347b7a96bb3b3e5561de161d007483cf1834bc5e306f8408f2e61cbf","impliedFormat":1},{"version":"04d104831e37f9539398e3da92279f9437f09ad8942837b6ad52efcd5557593f","signature":"7e22251484f8ab1206aeada0ff289c438b87ede7946153881b748268081e48f1","impliedFormat":1},{"version":"8ca007d04400517e50921bdeb4a378c6d0d12a630cd640b90d03b9b9541f3fdc","impliedFormat":1},{"version":"8da84e5a00b0e27e213493ea75f32b2435f9251f369a9e981dab1a9522f7ab89","impliedFormat":1},{"version":"213968c1def398bf0b52625f4d7d60151253c8e1dfb920db0fde21c0035d34c0","impliedFormat":1},{"version":"4b961cce3e18081b370ffe28de83f709fc83c93487fc97be907fc48e905254b3","impliedFormat":1},{"version":"71bf4520127ac7a7bfd930bf3368695730d566d39af8a93bfdeb24c06b293a8b","impliedFormat":1},{"version":"b85ba9f98483ebf31af7535e01a98f65babe5fbc359c392067f3272c8dcc42dc","impliedFormat":1},{"version":"c1b6e59ab814d0f9e2f1eddd303ece7c686e7f671f310f5c7a2abb6a0526e56c","impliedFormat":1},{"version":"bea3ad64e7805be5968f8c41f3ba9e9bf168e2ff5a84ce51148af59b60c14169","impliedFormat":1},{"version":"683845c1a76952b3d60671a75d0e9fe4fb08a7599d321f0cf8baf898d7abb2b9","impliedFormat":1},{"version":"93d2884225d8551b338a7aa052bc157ebb833f40939e436a3b80b480b2a3aa16","impliedFormat":1},{"version":"1a12168b63d068273543638a093f839b8796cb6a9282b0673d0de6778b297517","impliedFormat":1},{"version":"1c78a8a88ed4808d0b791bbdb660fea9787007a00f08ec792bb14b5d8d069c48","impliedFormat":1},{"version":"08c7e1e8eb5a39ec021d1bfd88d69db509ad673006d4e1ca5af24b3559e670eb","impliedFormat":1},{"version":"5e7374091f910b00b42dc246829f546c9db6c39b3bff4caa0464a293532cba89","impliedFormat":1},{"version":"40f5145f4db198267a7a6c80d6ee86eb5134b15e4cfa0a89af6024bae60e0642","impliedFormat":1},{"version":"c3ffdfee20eceae027dffb7aadde88f8be72853ff3db3d70d8296d4453253e11","impliedFormat":1},{"version":"c3920f435e621a72facfcf79ab3a64cb39cea8ff7b4d7a3d717058d954dd0458","impliedFormat":1},{"version":"7f4c8dc37284728341320e72f05a637ba649b2665db6ce63764d805936f02958","impliedFormat":1},{"version":"b7eece07762a9a944f097ee05d6f6b642b1e2dd87e6fc1b09600d881e5475377","impliedFormat":1},{"version":"3a8efdc4947eb0ac6644a3469fe7e6031428ccf6cfba2f3325e7e737f5e768c8","signature":"0737e3899bf4829a00799c9c61d800cac46d81aacaafaa5d5b7013c3dda3d49f","impliedFormat":1},{"version":"8002eeeb73498c916d3b8dbf2c75b8fde8aeb35069fc9e3cdc461ef02e83c63c","signature":"dbcc75b06921f363f7351dc9b670ce274d6312e53c074106502dcacd3ded49a5","impliedFormat":1},{"version":"88a3a6f8c2a1640d8d5fd30d8d86462f8babd86a1e52fab0e8b7f7c141fb348e","impliedFormat":1},{"version":"345f76c854da724803c96f727a3f9c75e26cf95c6e7b8c1064dbc4e7727b74e6","impliedFormat":1},{"version":"ab7b7a15a5d73eb0cfc2b973e580f357f07492bff6608669d7e899e2d49ac9a3","impliedFormat":1},{"version":"4bf88e5e15846d49caf3477317740df62835f176863267fcfa2523ed02075482","impliedFormat":1},{"version":"0838507efff4f479c6f603ec812810ddfe14ab32abf8f4a8def140be970fe439","impliedFormat":1},{"version":"e04f23a2cddbf05f1ed1e907a048781571a1d28f060151326e7bc42985a01610","signature":"f8f987bfe06f1ef446148c4187232261dca85d4885992561a5eceb454040464b","impliedFormat":1},{"version":"763afa3279c3edff4c7bd20e75863d35ad5cb8372cd782ff7a7f3e993d9c807e","signature":"64fcc57c44a347c66743c3126b3345055646971a389e263e35aa783b70db138e","impliedFormat":1},{"version":"ef6447121da98c9dddfc2ccf5e8193fae3c40824afcb63fe1198a5b948784b76","signature":"c680df9f364076562d9d3c0a73607caa4a1f5723b7fc26b8c469c943a7d511d3","impliedFormat":1},{"version":"9c3f0702257ec18bae168af42ed93acf89f3202784682701ec0e9388b3a4511b","signature":"4490c95b1d6544483fb175e732651fa1896020b285c54181e3e54821897d8890","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"f7c5977066101c32cdb6df4b0aafb21347d1a1195a3cf095b2c191d8f62ee769","signature":"4dc59066ae3e29826f2beef5e57796b50d5fe8fc78c5f7147d349e9bc91828bb","impliedFormat":1},{"version":"42ba318fb9e932bc0589cdc332001d680b9c4aed1c13e02de1729863bfb48cec","signature":"908bbd6b0f65177e0c68c405f08e67613e1450f316eb909d6b329dc197dc5266","impliedFormat":1},{"version":"5cbe1ef1cb606c4e62d6c630d210beacd99303b785e09a51763ada02d82a3523","impliedFormat":1},{"version":"5cef2ed42f458cafac1da1d9833dd90c51f6aa61e15f3087f636074f413de978","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"ff749a87c2b21ed65b30e73002b55fa27131451fbc6db2d7dd2f348140b18dd5","impliedFormat":1},{"version":"27eed9793a0bf593eeaa8f1c648d44fff045bf968edef74bfffba3606734cac2","impliedFormat":1},{"version":"534218c6fa84d59fc14b7f838a01827451f4819fbcd52849aee33b1e5e42c906","signature":"8200a81acdbbbdf4190327b5b900f5ab1c84fa864c562b22c1498c10ef79670f","impliedFormat":1},{"version":"f63575715e5d872a07931e54d775f7644bed003320f2f99d6c379b8c94382e2c","signature":"bc8ec5000f77d67ec73bbd57651786e853b75fa6c678691e8001b63202ed9aea","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"4a48915fb0c07aa96d315dcb98231aa135151fb961cd3c6093cf29d64304c5d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"4ea4cb9f755b97e72fd2f42e2d9786baf9184a8625085a24dc7ea96734d5986b","impliedFormat":1},{"version":"bd1b3b48920e1bd6d52133f95153a5d94aa1b3555e5f30b2154336e52abd29bd","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","impliedFormat":1},{"version":"0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","impliedFormat":1},{"version":"e8c431ccd0dd211303eeeaef6329d70d1ba8d4f6fa23b9c1a625cebd29226c1e","impliedFormat":1},{"version":"161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb","impliedFormat":1},{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","impliedFormat":1},{"version":"d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e","impliedFormat":1},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"a39f2a304ccc39e70914e9db08f971d23b862b6f0e34753fad86b895fe566533","impliedFormat":1},{"version":"2332b4793aca3332cd2a2fa2cb24140ceb7030d3b4e3c5907b5bcfbf61946eae","impliedFormat":1},{"version":"d87a5beaa399cedde8cfbb48269980177593c2023ce70f3974ae3b81e1a85ab5","impliedFormat":1},{"version":"f7a39805cf08f235cd00b27b35ccad473bac9e6b84b39846295ac5e592b0074c","impliedFormat":1},{"version":"0364b263f31c36c9beadbd77277277e7620fa751f62bd8d773cfab9b181f6cf4","impliedFormat":1},{"version":"b6b12ef0fb69e9e308ce0cf23b776323a89aa2f52c69035c772193e575fcef93","impliedFormat":1},{"version":"4e21e90a86c7321e326b4c9aba6f54dd7d3801ff3e0bcc961e39834deee909de","impliedFormat":1},{"version":"4d86b4c96877fd901139dd7d4a5cde4497c99e5dcb51ce23808dd9efe7a51f72","impliedFormat":1},{"version":"96dd668a51ab2467dfa30e4818fe3ab648554bdaa6edfc06c7287eb6df50e896","impliedFormat":1},{"version":"d5c0750023be2d61e07d8363e6dc38f45bdc01926b2430df269a39aa5e99e9b3","signature":"5ae223098a25d694cbb408994202badc3adfd8bdf00c34af692ff9468f4a37e2","impliedFormat":1},{"version":"c81e79f603755d9abc388346d2b2b1977ce7954a5bdf2ff70506b1e8e6a7e9ef","signature":"f4f6308f9aaa5acdb692bd6063669f00e7d6389081ea60f56871f96d99fed33a","impliedFormat":1},{"version":"adb26a3b68c88266a0838a00b1d216a65890580a476e950f54054f05a68e985f","signature":"268d6649494e36fb10139cd1c10e0e3bdd114dde70aa7996e16ce7c2bc85cd7f","impliedFormat":1},{"version":"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","impliedFormat":1},{"version":"d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","impliedFormat":1},{"version":"d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","impliedFormat":1},{"version":"98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","impliedFormat":1},{"version":"ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","impliedFormat":1},{"version":"fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","impliedFormat":1},{"version":"d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","impliedFormat":1},{"version":"9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","impliedFormat":1},{"version":"2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","impliedFormat":1},{"version":"2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","impliedFormat":1},{"version":"b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","impliedFormat":1},{"version":"6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","impliedFormat":1},{"version":"4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","impliedFormat":1},{"version":"04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","impliedFormat":1},{"version":"f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","impliedFormat":1},{"version":"011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","impliedFormat":1},{"version":"4498108732bcb5b7000ff9cdc011058b4155e985271ac3f926468acfed0c79dd","impliedFormat":1},{"version":"36d7b72ed8f35f9e21cc223c06697eca0d4699178fc59cfd3a310e2983fd0fd6","impliedFormat":1},{"version":"5a5cbc7aa7c4f74f49073d747a2a2518d1ec22694c88bc46092b0f25ccb8ebb7","impliedFormat":1},{"version":"51bfe35171efe121cefb2501a6cd674c367d541c4c8b0ae639c126adcc84f37d","impliedFormat":1},{"version":"2b91a6a00be41e4dea6d25220ef9d4d1c843872d1ad6b9f0597c720d2d45c256","impliedFormat":1},{"version":"33a0782502805f6dac67362b4290250e29755139a9c0d93a42e9da3a6e282e85","impliedFormat":1},{"version":"f405a6f3f9b349501ca098b7c3e8dbadb085ef02e9b1fb85376f4e297f9e6d8a","signature":"4c8d079d583e10e358d18a752506231b021adfb6e07e3402cdb34c9cf4f4733a","impliedFormat":1},{"version":"df0f2402648e0fae5b63c77894aacbfba7686cae96a71b3b3732ae87e563bdb5","signature":"69468968f3a6ecce65e980b5f67d3f0a322897c7a3bb4ab827cb9c5d50c3b0fd","impliedFormat":1},{"version":"b29f2fc5472483fdc915cabdc49cef6a88ca5e6c995483d581356d8c61bf9f79","signature":"8d573414349256d7a0ef9ec18c42962304cd425e70cf9c979429428eae948761","impliedFormat":1},{"version":"8cb15b896d37f8cba2cc30e2e5d31d4cb37969d39980f9ac81278a634b808af1","signature":"398f06bfe36056440600b7efcaefd5dde5671424da1083c60a01772ee0b92729","impliedFormat":1},{"version":"1ca43d5dae65f52b4005ea9df4d787bcbdb4709f3e9b358eb2cbe7e7a398cb68","signature":"a5a89bc485ce0f0a688edf82e71b0cb9831cf1832ca53b0f3fdf94cc4b19dc89","impliedFormat":1},{"version":"c0fe12dada222dc1c973dbe31a915d96b3aa83427d0d6caf9ca4f996fe48cd2f","signature":"f2586bba0b246d4e4e3bb4e87fa8a48582f9fe046f466051d49f331e7795d4f9","impliedFormat":1},{"version":"527b41950c9a3759aa045cebc260e1573fba0a248fa7a9af96e87279270b2252","signature":"1849453ff031549d884e9baff2f10f38ff5d57f83b69214a2805fa7eae638d6d","impliedFormat":1},{"version":"55534dd3b5fa62d69e39c2631c5b2bbb2ceb2bec9a6e970a01daefe41e4cc032","signature":"a631ea859eb514869670e97b0dabf001510607c7628af31c0497412296f76b90","impliedFormat":1},{"version":"53e7018d39ae6ed0dd9f393c1be1747d84d1e53f4ad967cda0388ac5d224b00e","signature":"fb50715ec7b2c2ad0f1ae980a6837a43146aea20bf562d854dc7468e272309c1","impliedFormat":1},{"version":"abdacff12057b5f567c50529eaf792931d20b97eb4674f72c1ca291dfa6b6626","signature":"1c87a736b2c3e3e11c5dd44216db10f3e6995366c09385bfcfeaf6473e1138ab","impliedFormat":1},{"version":"3a90cddc6387653470b943155895f97707bfe1380623dc182f0b381e09ec5286","signature":"4e65eb993a8961aa80b885985badfe7236d55e9990335d9ba33bc1e063f9d2ac","impliedFormat":1},{"version":"f690229ba915cbfd82429d3d53b3aab38b2aa357d0b90a6e988ef9cc729154cc","impliedFormat":1},{"version":"d386847771716d1c88a6e49e96fdd7abd6da1b99c7fe24032c3a512fbd47de3e","signature":"c070a39f563926ce29cc29972e672eb07f2eea5bc59a9e99d7b22893506ee66d","impliedFormat":1},{"version":"733e8ce12ff8a84e475e2e9863907f000131be31bfd00d3589cc13e46a075fa2","signature":"dd939aba5486d74b68a4aaecf006e94e4259ca44bfa34dde359f766c62fadd33","impliedFormat":1},{"version":"186adebc4f52185d1b2f1b1fcc2f21595cb5256a16caa692e5cb7968eb67402d","signature":"f3b3b432939b48d731b7c4bd355150973cc5c29832e5721cc6082babe3a118f3","impliedFormat":1},{"version":"711c1103b241ac10bc81f4a4591acdd40ea43ad24e22c01174f66d559ac95762","signature":"ef03831dc9447d32e1cfc0186fa098ca41252ed83f6ea7357e6f0a3447a66c68","impliedFormat":1},{"version":"1de94257ffe44561b35bae99e6044adea43a1538b6bda0f0860de7cc1883a1ff","signature":"f7c23313627956b5d74230e2d02504416270877dc8e4f33d95f5135a61a7fc2d","impliedFormat":1},{"version":"29b1d0d89df6c0833f0ae40c243c0b672b292d47e3332ae5c059290af2da60aa","signature":"27596d1f00c408e116e26b430c264c84c0ee85beca35a3e25939a5c18f77546a","impliedFormat":1},{"version":"f9101dcf8092bd068b859f236a0f58a996d286e62114773eceeafffc6a518cb8","signature":"bd32fd10dfccd741715a998e47771364deb403a62b7877ae0b1230f044ee597a","impliedFormat":1},{"version":"4a0e14c0483fc5e2c3a813ec30caae70d02e08e1858dfc1ec8e397ee5ea04e67","signature":"51f6b88c6eb4855476b24cf383993b37b5e43f44789746b00691dbd51d9c2fa9","impliedFormat":1},{"version":"128d2c2701ca9b09d06ac6452043dca126217c919d3bbed510e0855c7e06913b","signature":"609e07f491fa28da4d30d4c5e4e3f202e7c18121972867da635ab0e8bb6f4013","impliedFormat":1},{"version":"0c633d8b96d6670ec738883c68c190f79202fde70546b46cad68c21e43072ffb","signature":"d7951fbc4ed06ec7a5722ddb5595c47afeab7dcd5c0b198d6a86a3e6855fba66","impliedFormat":1},{"version":"4b0f7f88fc46a672cb59eeb2782af271c203600d602f57a717ef07f96092caf8","impliedFormat":1},{"version":"8d8b29c01c6b99814afa950cf153462844ca6f51fc9a208d3575d3718fbc0011","signature":"101943537a154af1cf3db98b2b0935f42195abf32c204bbccbf6f0253ae8202b","impliedFormat":1},{"version":"c083f3e7001406b9c09e422388a7c8787ad53810ddb9166f1e026b8f3ac4cb48","signature":"0d8017f0d9d7090de386b70bd10294cc3d9b48c5816c092a1cbfea999a7da36b","impliedFormat":1},{"version":"b9708a39e05463fefbad840b43baa9f191e7bcee65111eab749f2af256173963","signature":"e62fc042db8e1a8c88e5547e688232d6cd31a958370569fc928857d54eeca223","impliedFormat":1},{"version":"75373be8795eb50c9f3a1ce8b5109ed8e40d5c910ab0165a0f3107fe4847e91b","signature":"b325456d055e93470834b05d3d77ace5b487c876bd9c296f4b01f3d7daef41e6","impliedFormat":1},{"version":"ade0f64cf71be8d7fb583567ea3bca0d8f4ba43d82ba468249b44a64aa99b393","signature":"69059e2253a7f0cac07f610b773de0def73bce863d594070ad951911c374f9de","impliedFormat":1},{"version":"0d0fdd1c2584f45c60721484924e43736841c8cd57ca353599c1fa4a2972f264","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"5ab6d179a1c49dacd5106af2173d141983d631143a07c65e8e4b9551d688b215","impliedFormat":1},{"version":"f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"f2a60d253f7206372203b736144906bf135762100a2b3d1b415776ebf6575d07","impliedFormat":1},{"version":"475d75b88736de6ea8a812dff16a14aab6b366816c3d85000cd675f1e547a3f6","impliedFormat":1},{"version":"8a4dadb6fad24375ca0c9a94261fec52e876603a2b6c9e1ee932c372baeb438d","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","impliedFormat":1},{"version":"1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","impliedFormat":1},{"version":"b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"b3338366fe1f2c5f978e2ec200f57d35c5bd2c4c90c2191f1e638cfa5621c1f6","impliedFormat":1},{"version":"97106d5b3a6c345498adc0868c24612ecd615b5ee9c4a3da20d199e80a1a6201","impliedFormat":1},{"version":"dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76","impliedFormat":1},{"version":"e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","impliedFormat":1},{"version":"9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","impliedFormat":1},{"version":"3b75495c77f85fef76a898491b2eff2e4eb80a37d798a8ad8b39a578c2303859","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda","impliedFormat":1},{"version":"7e6f46ed7dbebb2b1a5bdfac5a41582dfd266217a30387d9cbdeb2af84a39c52","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a02143a323c05741ec49533d54c4928dbf6618d297d855f12114304c3b69846","impliedFormat":1},{"version":"4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"8bc01182456052de4a5c62a392898b158237072a1419bb0d9558b735db3e07b5","impliedFormat":1},{"version":"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","impliedFormat":1},{"version":"6175dda01fddf3684d6261d97d169d86b024eceb2cc20041936c068789230f8f","impliedFormat":1},{"version":"cebe1e06b45147ae23e72ffc65f766d94587324c9715b7ad378db99dc2c2e929","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"75c579e3d75b075f15c5eb774fc0d8ea08b12f6b1f97b910532376548f9098a0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[79,82],102,103,[109,112],114,115,121,122,[229,231],[254,264],[266,275],[277,281]],"options":{"composite":true,"declaration":true,"declarationDir":"./lib/types","downlevelIteration":true,"erasableSyntaxOnly":true,"esModuleInterop":true,"module":100,"noImplicitAny":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":7},"referencedMap":[[107,1],[84,2],[238,3],[241,4],[240,5],[239,6],[237,7],[233,8],[236,9],[235,10],[234,11],[232,7],[247,12],[246,13],[245,14],[244,15],[243,16],[242,17],[83,2],[87,2],[282,2],[292,18],[286,19],[285,2],[284,19],[283,2],[293,20],[289,21],[287,19],[288,2],[291,19],[290,2],[252,2],[294,2],[295,22],[296,2],[297,23],[298,2],[301,24],[303,25],[305,26],[306,2],[307,27],[308,2],[309,28],[310,29],[311,2],[312,2],[313,2],[314,2],[299,30],[300,2],[315,26],[253,31],[302,2],[316,2],[317,2],[220,32],[166,33],[167,33],[168,34],[125,35],[169,36],[170,37],[171,38],[123,2],[172,39],[173,40],[174,41],[175,42],[176,43],[177,44],[178,44],[180,2],[179,45],[181,46],[182,47],[183,48],[165,49],[124,2],[184,50],[185,51],[186,52],[219,53],[187,54],[188,55],[189,56],[190,57],[191,58],[192,59],[193,60],[194,61],[195,62],[196,63],[197,63],[198,64],[199,2],[200,2],[201,65],[203,66],[202,67],[204,68],[205,69],[206,70],[207,71],[208,72],[209,73],[210,74],[211,75],[212,76],[213,77],[214,78],[215,79],[216,80],[217,81],[218,82],[318,2],[319,2],[320,2],[321,2],[326,83],[322,2],[325,84],[327,2],[324,2],[352,85],[353,86],[328,87],[331,87],[350,85],[351,85],[341,85],[340,88],[338,85],[333,85],[346,85],[344,85],[348,85],[332,85],[345,85],[349,85],[334,85],[335,85],[347,85],[329,85],[336,85],[337,85],[339,85],[343,85],[354,89],[342,85],[330,85],[367,90],[366,2],[361,89],[363,91],[362,89],[355,89],[356,89],[358,89],[360,89],[364,91],[365,91],[357,91],[359,91],[368,92],[370,93],[369,2],[371,2],[372,2],[304,2],[373,2],[374,2],[375,94],[113,2],[118,2],[323,2],[101,2],[106,95],[104,2],[105,2],[108,2],[100,2],[265,96],[120,2],[276,2],[119,2],[77,2],[78,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],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[62,2],[63,2],[11,2],[64,2],[65,2],[66,2],[67,2],[68,2],[1,2],[69,2],[70,2],[12,2],[74,2],[72,2],[76,2],[71,2],[75,2],[73,2],[142,97],[153,98],[140,97],[154,1],[163,99],[132,100],[131,101],[162,32],[157,102],[161,103],[134,104],[150,105],[133,106],[160,107],[129,108],[130,102],[135,109],[136,2],[141,100],[139,109],[127,110],[164,111],[155,112],[145,113],[144,109],[146,114],[148,115],[143,116],[147,117],[158,32],[137,118],[138,119],[149,120],[128,1],[152,121],[151,109],[156,2],[126,2],[159,122],[116,123],[85,124],[86,2],[228,125],[227,126],[117,2],[226,2],[88,1],[95,2],[97,127],[89,2],[90,128],[92,2],[98,2],[96,129],[93,2],[94,2],[99,130],[91,2],[251,131],[250,132],[249,133],[248,134],[79,2],[80,33],[81,135],[82,1],[110,136],[112,137],[278,138],[279,2],[267,2],[109,139],[122,2],[263,2],[268,2],[262,2],[111,2],[114,140],[229,141],[230,142],[280,143],[231,144],[255,145],[254,146],[270,147],[115,148],[277,149],[257,2],[256,150],[258,151],[266,152],[281,2],[103,150],[259,2],[121,153],[269,150],[274,154],[261,155],[272,156],[102,157],[271,2],[275,158],[273,159],[264,2],[260,155],[222,160],[223,160],[224,2],[225,161],[221,2]],"latestChangedDtsFile":"./lib/types/parseCSSImport.d.ts","version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/DefaultMap.ts","./src/Deferred.ts","./src/PromiseQueue.ts","./src/TapStream.ts","../../../node_modules/@parcel/source-map/index.d.ts","../../../node_modules/@mischnic/json-sourcemap/dist/index.d.ts","../diagnostic/lib/types/diagnostic.d.ts","../feature-flags/lib/types/index.d.ts","../../../node_modules/@parcel/watcher/index.d.ts","../types-internal/lib/types/Cache.d.ts","../types-internal/lib/types/FilePath.d.ts","../types-internal/lib/types/FileSystem.d.ts","../types-internal/lib/types/unsafe.d.ts","../types-internal/lib/types/Glob.d.ts","../types-internal/lib/types/PackageName.d.ts","../types-internal/lib/types/SemverRange.d.ts","../types-internal/lib/types/DependencySpecifier.d.ts","../types-internal/lib/types/PackageManager.d.ts","../types-internal/lib/types/FileCreateInvalidation.d.ts","../types-internal/lib/types/NapiWorkerPool.d.ts","../types-internal/lib/types/index.d.ts","../../../node_modules/nullthrows/nullthrows.d.ts","../../../node_modules/fastest-levenshtein/mod.d.ts","./src/schema.ts","./src/path.ts","../../../node_modules/json5/lib/parse.d.ts","../../../node_modules/json5/lib/stringify.d.ts","../../../node_modules/json5/lib/index.d.ts","../../../node_modules/@iarna/toml/index.d.ts","../../../node_modules/lru-cache/dist/commonjs/index.d.ts","./src/config.ts","./src/alternatives.ts","./src/escape-html.ts","./src/ansi-html.ts","../../../node_modules/buffer/index.d.ts","./src/generateBuildMetrics.ts","./src/http-server.ts","../codeframe/lib/types/codeframe.d.ts","../../utils/events/lib/types/types.d.ts","../../utils/events/lib/types/Disposable.d.ts","../../utils/events/lib/types/ValueEmitter.d.ts","../../utils/events/lib/types/errors.d.ts","../../utils/events/lib/types/index.d.ts","../rust/types.d.ts","../logger/lib/types/tracer.d.ts","../logger/lib/types/Logger.d.ts","../markdown-ansi/lib/types/markdown-ansi.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/terminal-link/index.d.ts","../../../node_modules/snarkdown/snarkdown.d.ts","./src/prettyDiagnostic.ts","./src/countLines.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/node-forge/index.d.ts","./src/generateCertificate.ts","./src/getCertificate.ts","./src/getModuleParts.ts","../../../node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/@nodelib/fs.walk/out/index.d.ts","./node_modules/fast-glob/out/types/index.d.ts","./node_modules/fast-glob/out/settings.d.ts","./node_modules/fast-glob/out/managers/tasks.d.ts","./node_modules/fast-glob/out/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","./src/glob.ts","./src/getRootDir.ts","./src/isDirectoryInside.ts","./src/is-url.ts","./src/objectHash.ts","./src/prettifyTime.ts","./src/urlJoin.ts","./src/relativeUrl.ts","./src/dependency-location.ts","./src/debounce.ts","./src/throttle.ts","../../../node_modules/open/index.d.ts","./src/openInBrowser.ts","./src/collection.ts","./src/debug-tools.ts","./src/progress-message.ts","./src/hash.ts","./src/shared-buffer.ts","./src/replaceBundleReferences.ts","./src/stream.ts","./src/relativeBundlePath.ts","./src/sourcemap.ts","../../../node_modules/strip-ansi/index.d.ts","./src/index.ts","./src/blob.ts","./src/bundle-url.ts","./src/getExisting.ts","./src/parseCSSImport.ts","../../../node_modules/@types/async/index.d.ts","../../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/babel__helper-plugin-utils/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/ejs/index.d.ts","../../../node_modules/@types/fb-watchman/index.d.ts","../../../node_modules/@types/fresh/index.d.ts","../../../node_modules/@types/jsonfile/index.d.ts","../../../node_modules/@types/jsonfile/utils.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/http-proxy/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-yaml/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/functions/inc.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/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-handler/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sorted-array-functions/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[133,177,209],[133,177],[133,177,236,237],[133,177,237,238,239,240],[133,177,227,237,239],[133,177,236,238],[133,177,190,227],[133,177,190,227,232],[133,177,232,233,234,235],[133,177,232,234],[133,177,233],[133,177,209,227,241,242,243,246],[133,177,242,243,245],[133,177,189,227,241,242,243,244],[133,177,243],[133,177,241,242],[133,177,227,241],[133,177,283,284,286,289,291],[133,177,283],[133,177,292],[133,177,283,286],[133,177,192,227],[133,177,189,227],[133,177,190,227,299,300],[133,177,189,227,302],[133,177,304],[133,177,189,192,194,197,209,220,227],[133,177,308],[133,177,309],[133,177,190,220,227],[133,177,252],[133,177,227],[133,174,177],[133,176,177],[177],[133,177,182,212],[133,177,178,183,189,190,197,209,220],[133,177,178,179,189,197],[133,177,180,221],[133,177,181,182,190,198],[133,177,182,209,217],[133,177,183,185,189,197],[133,176,177,184],[133,177,185,186],[133,177,187,189],[133,176,177,189],[133,177,189,190,191,209,220],[133,177,189,190,191,204,209,212],[133,172,177],[133,172,177,185,189,192,197,209,220],[133,177,189,190,192,193,197,209,217,220],[133,177,192,194,209,217,220],[131,132,133,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[133,177,189,195],[133,177,196,220],[133,177,185,189,197,209],[133,177,198],[133,177,199],[133,176,177,200],[133,174,175,176,177,178,179,180,181,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[133,177,202],[133,177,203],[133,177,189,204,205],[133,177,204,206,221,223],[133,177,189,209,210,212],[133,177,211,212],[133,177,209,210],[133,177,212],[133,177,213],[133,174,177,209,214],[133,177,189,215,216],[133,177,215,216],[133,177,182,197,209,217],[133,177,218],[133,177,197,219],[133,177,192,203,220],[133,177,182,221],[133,177,209,222],[133,177,196,223],[133,177,224],[133,177,189,191,200,209,212,220,222,223,225],[133,177,209,226],[133,177,323],[133,177,319,320,321,322],[133,177,327,365],[133,177,327,350,365],[133,177,326,365],[133,177,365],[133,177,327],[133,177,327,351,365],[133,177,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364],[133,177,351,365],[133,177,190,192,227],[133,177,367],[133,177,372],[104,105,133,177],[133,177,178,227],[133,142,146,177,220],[133,142,177,209,220],[133,137,177],[133,139,142,177,220],[133,177,197,217],[133,137,177,227],[133,139,142,177,197,220],[133,134,135,136,138,141,177,189,209,220],[133,142,150,177],[133,135,140,177],[133,142,166,167,177],[133,135,138,142,177,212,220,227],[133,142,177],[133,134,177],[133,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,177],[133,142,159,162,177,185],[133,142,150,151,152,177],[133,140,142,151,153,177],[133,141,177],[133,135,137,142,177],[133,142,146,151,153,177],[133,146,177],[133,140,142,145,177,220],[133,135,139,142,150,177],[133,142,159,177],[133,137,142,166,177,212,225,227],[85,133,177],[84,133,177],[85,99,121,123,133,177,221],[122,133,177],[89,92,133,177],[87,89,133,177,209],[89,90,94,95,99,133,177],[83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,133,177,209],[133,177,227,248,249,250],[133,177,248,249],[133,177,248],[133,177,227,247],[80,133,177],[99,102,103,109,133,177,199],[111,133,177],[99,133,177,209,277],[85,99,106,107,108,133,177,199],[83,99,100,133,177,199,277],[99,124,133,177,199,228],[99,133,177],[133,177,190],[103,133,177,199],[99,133,177,199,254],[99,103,133,177,251,253],[99,122,133,177,209,267],[99,100,133,177,192,194,197,277],[79,80,81,82,102,103,109,110,111,112,114,115,129,130,133,177,229,230,231,254,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,272,273,274,275,276,278],[99,133,177,199],[133,177,182],[124,133,177,178,265],[85,99,116,124,125,126,127,128,133,177,199],[99,103,133,177,199],[133,177,199,220],[83,86,99,100,122,133,174,177,209,220,277],[84,85,100,101,133,177],[83,86,99,103,133,177,199],[99,133,177,209],[117,133,177],[118,119,120,133,177]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4e4ab613934f65949165ab8d5534630e0b071e4ffd731cc314b7a0f4129b1322","signature":"7c48673f3676cd7aaf37b2373df4b6a5c06dc77026df70bbf5104d56aa51e1c4","impliedFormat":1},{"version":"dea32994d828e2adc37b494ed2c3137c25a5c9eea118e063afc0d9f4844d2f80","signature":"655d636bf419caeb5d53e7cec81fea1e5b02657107e152b2d6751dc117bd987c","impliedFormat":1},{"version":"b0067429d691fd8042dda198d84fecaa2c9695d5fdfcc571d81f76db8741f201","signature":"d846a252347b7a96bb3b3e5561de161d007483cf1834bc5e306f8408f2e61cbf","impliedFormat":1},{"version":"04d104831e37f9539398e3da92279f9437f09ad8942837b6ad52efcd5557593f","signature":"7e22251484f8ab1206aeada0ff289c438b87ede7946153881b748268081e48f1","impliedFormat":1},{"version":"8ca007d04400517e50921bdeb4a378c6d0d12a630cd640b90d03b9b9541f3fdc","impliedFormat":1},{"version":"8da84e5a00b0e27e213493ea75f32b2435f9251f369a9e981dab1a9522f7ab89","impliedFormat":1},{"version":"213968c1def398bf0b52625f4d7d60151253c8e1dfb920db0fde21c0035d34c0","impliedFormat":1},{"version":"62de6d52bf87279d06e6b30d4ac58168f35e85e9d6b9c382faba64190f13565d","impliedFormat":1},{"version":"71bf4520127ac7a7bfd930bf3368695730d566d39af8a93bfdeb24c06b293a8b","impliedFormat":1},{"version":"b85ba9f98483ebf31af7535e01a98f65babe5fbc359c392067f3272c8dcc42dc","impliedFormat":1},{"version":"c1b6e59ab814d0f9e2f1eddd303ece7c686e7f671f310f5c7a2abb6a0526e56c","impliedFormat":1},{"version":"bea3ad64e7805be5968f8c41f3ba9e9bf168e2ff5a84ce51148af59b60c14169","impliedFormat":1},{"version":"683845c1a76952b3d60671a75d0e9fe4fb08a7599d321f0cf8baf898d7abb2b9","impliedFormat":1},{"version":"93d2884225d8551b338a7aa052bc157ebb833f40939e436a3b80b480b2a3aa16","impliedFormat":1},{"version":"1a12168b63d068273543638a093f839b8796cb6a9282b0673d0de6778b297517","impliedFormat":1},{"version":"1c78a8a88ed4808d0b791bbdb660fea9787007a00f08ec792bb14b5d8d069c48","impliedFormat":1},{"version":"08c7e1e8eb5a39ec021d1bfd88d69db509ad673006d4e1ca5af24b3559e670eb","impliedFormat":1},{"version":"5e7374091f910b00b42dc246829f546c9db6c39b3bff4caa0464a293532cba89","impliedFormat":1},{"version":"40f5145f4db198267a7a6c80d6ee86eb5134b15e4cfa0a89af6024bae60e0642","impliedFormat":1},{"version":"c3ffdfee20eceae027dffb7aadde88f8be72853ff3db3d70d8296d4453253e11","impliedFormat":1},{"version":"c3920f435e621a72facfcf79ab3a64cb39cea8ff7b4d7a3d717058d954dd0458","impliedFormat":1},{"version":"7f4c8dc37284728341320e72f05a637ba649b2665db6ce63764d805936f02958","impliedFormat":1},{"version":"b7eece07762a9a944f097ee05d6f6b642b1e2dd87e6fc1b09600d881e5475377","impliedFormat":1},{"version":"3a8efdc4947eb0ac6644a3469fe7e6031428ccf6cfba2f3325e7e737f5e768c8","signature":"0737e3899bf4829a00799c9c61d800cac46d81aacaafaa5d5b7013c3dda3d49f","impliedFormat":1},{"version":"8002eeeb73498c916d3b8dbf2c75b8fde8aeb35069fc9e3cdc461ef02e83c63c","signature":"dbcc75b06921f363f7351dc9b670ce274d6312e53c074106502dcacd3ded49a5","impliedFormat":1},{"version":"88a3a6f8c2a1640d8d5fd30d8d86462f8babd86a1e52fab0e8b7f7c141fb348e","impliedFormat":1},{"version":"345f76c854da724803c96f727a3f9c75e26cf95c6e7b8c1064dbc4e7727b74e6","impliedFormat":1},{"version":"ab7b7a15a5d73eb0cfc2b973e580f357f07492bff6608669d7e899e2d49ac9a3","impliedFormat":1},{"version":"4bf88e5e15846d49caf3477317740df62835f176863267fcfa2523ed02075482","impliedFormat":1},{"version":"0838507efff4f479c6f603ec812810ddfe14ab32abf8f4a8def140be970fe439","impliedFormat":1},{"version":"e04f23a2cddbf05f1ed1e907a048781571a1d28f060151326e7bc42985a01610","signature":"f8f987bfe06f1ef446148c4187232261dca85d4885992561a5eceb454040464b","impliedFormat":1},{"version":"763afa3279c3edff4c7bd20e75863d35ad5cb8372cd782ff7a7f3e993d9c807e","signature":"64fcc57c44a347c66743c3126b3345055646971a389e263e35aa783b70db138e","impliedFormat":1},{"version":"ef6447121da98c9dddfc2ccf5e8193fae3c40824afcb63fe1198a5b948784b76","signature":"c680df9f364076562d9d3c0a73607caa4a1f5723b7fc26b8c469c943a7d511d3","impliedFormat":1},{"version":"9c3f0702257ec18bae168af42ed93acf89f3202784682701ec0e9388b3a4511b","signature":"4490c95b1d6544483fb175e732651fa1896020b285c54181e3e54821897d8890","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"f7c5977066101c32cdb6df4b0aafb21347d1a1195a3cf095b2c191d8f62ee769","signature":"4dc59066ae3e29826f2beef5e57796b50d5fe8fc78c5f7147d349e9bc91828bb","impliedFormat":1},{"version":"42ba318fb9e932bc0589cdc332001d680b9c4aed1c13e02de1729863bfb48cec","signature":"908bbd6b0f65177e0c68c405f08e67613e1450f316eb909d6b329dc197dc5266","impliedFormat":1},{"version":"5cbe1ef1cb606c4e62d6c630d210beacd99303b785e09a51763ada02d82a3523","impliedFormat":1},{"version":"2332b4793aca3332cd2a2fa2cb24140ceb7030d3b4e3c5907b5bcfbf61946eae","impliedFormat":1},{"version":"d87a5beaa399cedde8cfbb48269980177593c2023ce70f3974ae3b81e1a85ab5","impliedFormat":1},{"version":"f7a39805cf08f235cd00b27b35ccad473bac9e6b84b39846295ac5e592b0074c","impliedFormat":1},{"version":"0364b263f31c36c9beadbd77277277e7620fa751f62bd8d773cfab9b181f6cf4","impliedFormat":1},{"version":"b6b12ef0fb69e9e308ce0cf23b776323a89aa2f52c69035c772193e575fcef93","impliedFormat":1},{"version":"4e21e90a86c7321e326b4c9aba6f54dd7d3801ff3e0bcc961e39834deee909de","impliedFormat":1},{"version":"4d86b4c96877fd901139dd7d4a5cde4497c99e5dcb51ce23808dd9efe7a51f72","impliedFormat":1},{"version":"96dd668a51ab2467dfa30e4818fe3ab648554bdaa6edfc06c7287eb6df50e896","impliedFormat":1},{"version":"5cef2ed42f458cafac1da1d9833dd90c51f6aa61e15f3087f636074f413de978","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"ff749a87c2b21ed65b30e73002b55fa27131451fbc6db2d7dd2f348140b18dd5","impliedFormat":1},{"version":"27eed9793a0bf593eeaa8f1c648d44fff045bf968edef74bfffba3606734cac2","impliedFormat":1},{"version":"a66419507f2505afdbfbaca1d0436f98e6b0493fb8cdcaeb08dd5b33de021707","signature":"8200a81acdbbbdf4190327b5b900f5ab1c84fa864c562b22c1498c10ef79670f","impliedFormat":1},{"version":"f63575715e5d872a07931e54d775f7644bed003320f2f99d6c379b8c94382e2c","signature":"bc8ec5000f77d67ec73bbd57651786e853b75fa6c678691e8001b63202ed9aea","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"4a48915fb0c07aa96d315dcb98231aa135151fb961cd3c6093cf29d64304c5d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"4ea4cb9f755b97e72fd2f42e2d9786baf9184a8625085a24dc7ea96734d5986b","impliedFormat":1},{"version":"bd1b3b48920e1bd6d52133f95153a5d94aa1b3555e5f30b2154336e52abd29bd","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","impliedFormat":1},{"version":"0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","impliedFormat":1},{"version":"e8c431ccd0dd211303eeeaef6329d70d1ba8d4f6fa23b9c1a625cebd29226c1e","impliedFormat":1},{"version":"161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb","impliedFormat":1},{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","impliedFormat":1},{"version":"d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e","impliedFormat":1},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"a39f2a304ccc39e70914e9db08f971d23b862b6f0e34753fad86b895fe566533","impliedFormat":1},{"version":"d5c0750023be2d61e07d8363e6dc38f45bdc01926b2430df269a39aa5e99e9b3","signature":"5ae223098a25d694cbb408994202badc3adfd8bdf00c34af692ff9468f4a37e2","impliedFormat":1},{"version":"c81e79f603755d9abc388346d2b2b1977ce7954a5bdf2ff70506b1e8e6a7e9ef","signature":"f4f6308f9aaa5acdb692bd6063669f00e7d6389081ea60f56871f96d99fed33a","impliedFormat":1},{"version":"adb26a3b68c88266a0838a00b1d216a65890580a476e950f54054f05a68e985f","signature":"268d6649494e36fb10139cd1c10e0e3bdd114dde70aa7996e16ce7c2bc85cd7f","impliedFormat":1},{"version":"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","impliedFormat":1},{"version":"d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","impliedFormat":1},{"version":"d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","impliedFormat":1},{"version":"98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","impliedFormat":1},{"version":"ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","impliedFormat":1},{"version":"fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","impliedFormat":1},{"version":"d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","impliedFormat":1},{"version":"9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","impliedFormat":1},{"version":"2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","impliedFormat":1},{"version":"2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","impliedFormat":1},{"version":"b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","impliedFormat":1},{"version":"6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","impliedFormat":1},{"version":"4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","impliedFormat":1},{"version":"04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","impliedFormat":1},{"version":"f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","impliedFormat":1},{"version":"011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","impliedFormat":1},{"version":"4498108732bcb5b7000ff9cdc011058b4155e985271ac3f926468acfed0c79dd","impliedFormat":1},{"version":"36d7b72ed8f35f9e21cc223c06697eca0d4699178fc59cfd3a310e2983fd0fd6","impliedFormat":1},{"version":"5a5cbc7aa7c4f74f49073d747a2a2518d1ec22694c88bc46092b0f25ccb8ebb7","impliedFormat":1},{"version":"51bfe35171efe121cefb2501a6cd674c367d541c4c8b0ae639c126adcc84f37d","impliedFormat":1},{"version":"2b91a6a00be41e4dea6d25220ef9d4d1c843872d1ad6b9f0597c720d2d45c256","impliedFormat":1},{"version":"33a0782502805f6dac67362b4290250e29755139a9c0d93a42e9da3a6e282e85","impliedFormat":1},{"version":"f405a6f3f9b349501ca098b7c3e8dbadb085ef02e9b1fb85376f4e297f9e6d8a","signature":"4c8d079d583e10e358d18a752506231b021adfb6e07e3402cdb34c9cf4f4733a","impliedFormat":1},{"version":"df0f2402648e0fae5b63c77894aacbfba7686cae96a71b3b3732ae87e563bdb5","signature":"69468968f3a6ecce65e980b5f67d3f0a322897c7a3bb4ab827cb9c5d50c3b0fd","impliedFormat":1},{"version":"b29f2fc5472483fdc915cabdc49cef6a88ca5e6c995483d581356d8c61bf9f79","signature":"8d573414349256d7a0ef9ec18c42962304cd425e70cf9c979429428eae948761","impliedFormat":1},{"version":"8cb15b896d37f8cba2cc30e2e5d31d4cb37969d39980f9ac81278a634b808af1","signature":"398f06bfe36056440600b7efcaefd5dde5671424da1083c60a01772ee0b92729","impliedFormat":1},{"version":"1ca43d5dae65f52b4005ea9df4d787bcbdb4709f3e9b358eb2cbe7e7a398cb68","signature":"a5a89bc485ce0f0a688edf82e71b0cb9831cf1832ca53b0f3fdf94cc4b19dc89","impliedFormat":1},{"version":"c0fe12dada222dc1c973dbe31a915d96b3aa83427d0d6caf9ca4f996fe48cd2f","signature":"f2586bba0b246d4e4e3bb4e87fa8a48582f9fe046f466051d49f331e7795d4f9","impliedFormat":1},{"version":"527b41950c9a3759aa045cebc260e1573fba0a248fa7a9af96e87279270b2252","signature":"1849453ff031549d884e9baff2f10f38ff5d57f83b69214a2805fa7eae638d6d","impliedFormat":1},{"version":"55534dd3b5fa62d69e39c2631c5b2bbb2ceb2bec9a6e970a01daefe41e4cc032","signature":"a631ea859eb514869670e97b0dabf001510607c7628af31c0497412296f76b90","impliedFormat":1},{"version":"53e7018d39ae6ed0dd9f393c1be1747d84d1e53f4ad967cda0388ac5d224b00e","signature":"fb50715ec7b2c2ad0f1ae980a6837a43146aea20bf562d854dc7468e272309c1","impliedFormat":1},{"version":"abdacff12057b5f567c50529eaf792931d20b97eb4674f72c1ca291dfa6b6626","signature":"1c87a736b2c3e3e11c5dd44216db10f3e6995366c09385bfcfeaf6473e1138ab","impliedFormat":1},{"version":"3a90cddc6387653470b943155895f97707bfe1380623dc182f0b381e09ec5286","signature":"4e65eb993a8961aa80b885985badfe7236d55e9990335d9ba33bc1e063f9d2ac","impliedFormat":1},{"version":"f690229ba915cbfd82429d3d53b3aab38b2aa357d0b90a6e988ef9cc729154cc","impliedFormat":1},{"version":"d386847771716d1c88a6e49e96fdd7abd6da1b99c7fe24032c3a512fbd47de3e","signature":"c070a39f563926ce29cc29972e672eb07f2eea5bc59a9e99d7b22893506ee66d","impliedFormat":1},{"version":"733e8ce12ff8a84e475e2e9863907f000131be31bfd00d3589cc13e46a075fa2","signature":"dd939aba5486d74b68a4aaecf006e94e4259ca44bfa34dde359f766c62fadd33","impliedFormat":1},{"version":"186adebc4f52185d1b2f1b1fcc2f21595cb5256a16caa692e5cb7968eb67402d","signature":"f3b3b432939b48d731b7c4bd355150973cc5c29832e5721cc6082babe3a118f3","impliedFormat":1},{"version":"711c1103b241ac10bc81f4a4591acdd40ea43ad24e22c01174f66d559ac95762","signature":"ef03831dc9447d32e1cfc0186fa098ca41252ed83f6ea7357e6f0a3447a66c68","impliedFormat":1},{"version":"1de94257ffe44561b35bae99e6044adea43a1538b6bda0f0860de7cc1883a1ff","signature":"f7c23313627956b5d74230e2d02504416270877dc8e4f33d95f5135a61a7fc2d","impliedFormat":1},{"version":"29b1d0d89df6c0833f0ae40c243c0b672b292d47e3332ae5c059290af2da60aa","signature":"27596d1f00c408e116e26b430c264c84c0ee85beca35a3e25939a5c18f77546a","impliedFormat":1},{"version":"f9101dcf8092bd068b859f236a0f58a996d286e62114773eceeafffc6a518cb8","signature":"bd32fd10dfccd741715a998e47771364deb403a62b7877ae0b1230f044ee597a","impliedFormat":1},{"version":"4a0e14c0483fc5e2c3a813ec30caae70d02e08e1858dfc1ec8e397ee5ea04e67","signature":"51f6b88c6eb4855476b24cf383993b37b5e43f44789746b00691dbd51d9c2fa9","impliedFormat":1},{"version":"128d2c2701ca9b09d06ac6452043dca126217c919d3bbed510e0855c7e06913b","signature":"609e07f491fa28da4d30d4c5e4e3f202e7c18121972867da635ab0e8bb6f4013","impliedFormat":1},{"version":"65c0c035e4640ca62e5b0ac9eec3f8a6221862bcdc577cdabd46dc667f36c711","signature":"73b71fabeb8dcb336e8ba0e3e9163ec065af84a12bd517be0a0c04b9cca28a1f","impliedFormat":1},{"version":"4b0f7f88fc46a672cb59eeb2782af271c203600d602f57a717ef07f96092caf8","impliedFormat":1},{"version":"8d8b29c01c6b99814afa950cf153462844ca6f51fc9a208d3575d3718fbc0011","signature":"101943537a154af1cf3db98b2b0935f42195abf32c204bbccbf6f0253ae8202b","impliedFormat":1},{"version":"c083f3e7001406b9c09e422388a7c8787ad53810ddb9166f1e026b8f3ac4cb48","signature":"0d8017f0d9d7090de386b70bd10294cc3d9b48c5816c092a1cbfea999a7da36b","impliedFormat":1},{"version":"b9708a39e05463fefbad840b43baa9f191e7bcee65111eab749f2af256173963","signature":"e62fc042db8e1a8c88e5547e688232d6cd31a958370569fc928857d54eeca223","impliedFormat":1},{"version":"75373be8795eb50c9f3a1ce8b5109ed8e40d5c910ab0165a0f3107fe4847e91b","signature":"b325456d055e93470834b05d3d77ace5b487c876bd9c296f4b01f3d7daef41e6","impliedFormat":1},{"version":"ade0f64cf71be8d7fb583567ea3bca0d8f4ba43d82ba468249b44a64aa99b393","signature":"69059e2253a7f0cac07f610b773de0def73bce863d594070ad951911c374f9de","impliedFormat":1},{"version":"0d0fdd1c2584f45c60721484924e43736841c8cd57ca353599c1fa4a2972f264","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"5ab6d179a1c49dacd5106af2173d141983d631143a07c65e8e4b9551d688b215","impliedFormat":1},{"version":"f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"f2a60d253f7206372203b736144906bf135762100a2b3d1b415776ebf6575d07","impliedFormat":1},{"version":"475d75b88736de6ea8a812dff16a14aab6b366816c3d85000cd675f1e547a3f6","impliedFormat":1},{"version":"8a4dadb6fad24375ca0c9a94261fec52e876603a2b6c9e1ee932c372baeb438d","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","impliedFormat":1},{"version":"1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","impliedFormat":1},{"version":"b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"97106d5b3a6c345498adc0868c24612ecd615b5ee9c4a3da20d199e80a1a6201","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76","impliedFormat":1},{"version":"e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","impliedFormat":1},{"version":"9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","impliedFormat":1},{"version":"3b75495c77f85fef76a898491b2eff2e4eb80a37d798a8ad8b39a578c2303859","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda","impliedFormat":1},{"version":"7e6f46ed7dbebb2b1a5bdfac5a41582dfd266217a30387d9cbdeb2af84a39c52","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a02143a323c05741ec49533d54c4928dbf6618d297d855f12114304c3b69846","impliedFormat":1},{"version":"4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1},{"version":"8bc01182456052de4a5c62a392898b158237072a1419bb0d9558b735db3e07b5","impliedFormat":1},{"version":"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","impliedFormat":1},{"version":"6175dda01fddf3684d6261d97d169d86b024eceb2cc20041936c068789230f8f","impliedFormat":1},{"version":"cebe1e06b45147ae23e72ffc65f766d94587324c9715b7ad378db99dc2c2e929","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"75c579e3d75b075f15c5eb774fc0d8ea08b12f6b1f97b910532376548f9098a0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[79,82],102,103,[109,112],114,115,129,130,[229,231],[254,264],[266,275],[277,281]],"options":{"composite":true,"declaration":true,"declarationDir":"./lib/types","downlevelIteration":true,"erasableSyntaxOnly":true,"esModuleInterop":true,"module":100,"noImplicitAny":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":7},"referencedMap":[[107,1],[84,2],[238,3],[241,4],[240,5],[239,6],[237,7],[233,8],[236,9],[235,10],[234,11],[232,7],[247,12],[246,13],[245,14],[244,15],[243,16],[242,17],[83,2],[87,2],[282,2],[292,18],[286,19],[285,2],[284,19],[283,2],[293,20],[289,21],[287,19],[288,2],[291,19],[290,2],[252,2],[294,2],[295,22],[296,2],[297,23],[298,2],[301,24],[303,25],[305,26],[306,2],[307,27],[308,2],[309,28],[310,29],[311,2],[312,2],[299,30],[300,2],[313,26],[253,31],[302,2],[314,2],[315,2],[228,32],[174,33],[175,33],[176,34],[133,35],[177,36],[178,37],[179,38],[131,2],[180,39],[181,40],[182,41],[183,42],[184,43],[185,44],[186,44],[188,2],[187,45],[189,46],[190,47],[191,48],[173,49],[132,2],[192,50],[193,51],[194,52],[227,53],[195,54],[196,55],[197,56],[198,57],[199,58],[200,59],[201,60],[202,61],[203,62],[204,63],[205,63],[206,64],[207,2],[208,2],[209,65],[211,66],[210,67],[212,68],[213,69],[214,70],[215,71],[216,72],[217,73],[218,74],[219,75],[220,76],[221,77],[222,78],[223,79],[224,80],[225,81],[226,82],[316,2],[317,2],[318,2],[319,2],[324,83],[320,2],[323,84],[325,2],[322,2],[350,85],[351,86],[327,87],[330,88],[348,85],[349,85],[339,85],[338,89],[336,85],[331,85],[344,85],[342,85],[346,85],[326,85],[343,85],[347,85],[332,85],[333,85],[345,85],[328,85],[334,85],[335,85],[337,85],[341,85],[352,90],[340,85],[329,85],[365,91],[364,2],[359,90],[361,92],[360,90],[353,90],[354,90],[356,90],[358,90],[362,92],[363,92],[355,92],[357,92],[366,93],[368,94],[367,2],[369,2],[370,2],[304,2],[371,2],[372,2],[373,95],[113,2],[126,2],[321,2],[101,2],[106,96],[104,2],[105,2],[108,2],[100,2],[265,97],[128,2],[276,2],[127,2],[77,2],[78,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],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[58,2],[57,2],[59,2],[60,2],[10,2],[61,2],[62,2],[63,2],[11,2],[64,2],[65,2],[66,2],[67,2],[68,2],[1,2],[69,2],[70,2],[12,2],[74,2],[72,2],[76,2],[71,2],[75,2],[73,2],[150,98],[161,99],[148,98],[162,1],[171,100],[140,101],[139,102],[170,32],[165,103],[169,104],[142,105],[158,106],[141,107],[168,108],[137,109],[138,103],[143,110],[144,2],[149,101],[147,110],[135,111],[172,112],[163,113],[153,114],[152,110],[154,115],[156,116],[151,117],[155,118],[166,32],[145,119],[146,120],[157,121],[136,1],[160,122],[159,110],[164,2],[134,2],[167,123],[116,124],[85,125],[86,2],[124,126],[123,127],[125,2],[122,2],[88,1],[95,2],[97,128],[89,2],[90,129],[92,2],[98,2],[96,130],[93,2],[94,2],[99,131],[91,2],[251,132],[250,133],[249,134],[248,135],[79,2],[80,33],[81,136],[82,1],[110,137],[112,138],[278,139],[279,2],[267,2],[109,140],[130,2],[263,2],[268,2],[262,2],[111,2],[114,141],[229,142],[230,143],[280,144],[231,145],[255,146],[254,147],[270,148],[115,149],[277,150],[257,2],[256,151],[258,152],[266,153],[281,2],[103,151],[259,2],[129,154],[269,151],[274,155],[261,156],[272,157],[102,158],[271,2],[275,159],[273,160],[264,2],[260,156],[118,161],[119,161],[120,2],[121,162],[117,2]],"latestChangedDtsFile":"./lib/types/parseCSSImport.d.ts","version":"5.8.3"}
|
package/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright (c) 2024 Atlassian US., Inc.
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|