@aws-sdk/cloudfront-signer 3.186.0 → 3.190.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 +16 -0
- package/dist-es/sign.js +96 -104
- package/package.json +2 -2
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/tsconfig.es.tsbuildinfo +1 -1
- package/tsconfig.types.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.190.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.189.0...v3.190.0) (2022-10-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/cloudfront-signer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/cloudfront-signer
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/cloudfront-signer
|
package/dist-es/sign.js
CHANGED
|
@@ -1,62 +1,60 @@
|
|
|
1
1
|
import { parseUrl } from "@aws-sdk/url-parser";
|
|
2
2
|
import { createSign } from "crypto";
|
|
3
|
-
export function getSignedUrl(
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
privateKey: privateKey,
|
|
3
|
+
export function getSignedUrl({ dateLessThan, dateGreaterThan, url, keyPairId, privateKey, ipAddress, policy, }) {
|
|
4
|
+
const parsedUrl = parseUrl(url);
|
|
5
|
+
const queryParams = [];
|
|
6
|
+
for (const key in parsedUrl.query) {
|
|
7
|
+
queryParams.push(`${key}=${parsedUrl.query[key]}`);
|
|
8
|
+
}
|
|
9
|
+
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
10
|
+
keyPairId,
|
|
11
|
+
privateKey,
|
|
13
12
|
});
|
|
14
13
|
if (policy) {
|
|
15
14
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
16
15
|
}
|
|
17
16
|
else {
|
|
18
17
|
cloudfrontSignBuilder.setPolicyParameters({
|
|
19
|
-
url
|
|
20
|
-
dateLessThan
|
|
21
|
-
dateGreaterThan
|
|
22
|
-
ipAddress
|
|
18
|
+
url,
|
|
19
|
+
dateLessThan,
|
|
20
|
+
dateGreaterThan,
|
|
21
|
+
ipAddress,
|
|
23
22
|
});
|
|
24
23
|
}
|
|
25
|
-
|
|
24
|
+
const cloudfrontQueryParams = cloudfrontSignBuilder.createCloudfrontAttribute();
|
|
26
25
|
if (cloudfrontQueryParams["Expires"]) {
|
|
27
|
-
queryParams.push(
|
|
26
|
+
queryParams.push(`Expires=${cloudfrontQueryParams["Expires"]}`);
|
|
28
27
|
}
|
|
29
28
|
if (cloudfrontQueryParams["Policy"]) {
|
|
30
|
-
queryParams.push(
|
|
29
|
+
queryParams.push(`Policy=${cloudfrontQueryParams["Policy"]}`);
|
|
31
30
|
}
|
|
32
|
-
queryParams.push(
|
|
33
|
-
queryParams.push(
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
queryParams.push(`Key-Pair-Id=${keyPairId}`);
|
|
32
|
+
queryParams.push(`Signature=${cloudfrontQueryParams["Signature"]}`);
|
|
33
|
+
const urlWithNewQueryParams = `${url.split("?")[0]}?${queryParams.join("&")}`;
|
|
34
|
+
const urlParser = new CloudfrontURLParser();
|
|
36
35
|
if (urlParser.determineScheme(url) === "rtmp") {
|
|
37
36
|
return urlParser.getRtmpUrl(urlWithNewQueryParams);
|
|
38
37
|
}
|
|
39
38
|
return urlWithNewQueryParams;
|
|
40
39
|
}
|
|
41
|
-
export function getSignedCookies(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
privateKey: privateKey,
|
|
40
|
+
export function getSignedCookies({ ipAddress, url, privateKey, keyPairId, dateLessThan, dateGreaterThan, policy, }) {
|
|
41
|
+
const cloudfrontSignBuilder = new CloudfrontSignBuilder({
|
|
42
|
+
keyPairId,
|
|
43
|
+
privateKey,
|
|
46
44
|
});
|
|
47
45
|
if (policy) {
|
|
48
46
|
cloudfrontSignBuilder.setCustomPolicy(policy);
|
|
49
47
|
}
|
|
50
48
|
else {
|
|
51
49
|
cloudfrontSignBuilder.setPolicyParameters({
|
|
52
|
-
url
|
|
53
|
-
dateLessThan
|
|
54
|
-
dateGreaterThan
|
|
55
|
-
ipAddress
|
|
50
|
+
url,
|
|
51
|
+
dateLessThan,
|
|
52
|
+
dateGreaterThan,
|
|
53
|
+
ipAddress,
|
|
56
54
|
});
|
|
57
55
|
}
|
|
58
|
-
|
|
59
|
-
|
|
56
|
+
const cloudfrontCookieAttributes = cloudfrontSignBuilder.createCloudfrontAttribute();
|
|
57
|
+
const cookies = {
|
|
60
58
|
"CloudFront-Key-Pair-Id": cloudfrontCookieAttributes["Key-Pair-Id"],
|
|
61
59
|
"CloudFront-Signature": cloudfrontCookieAttributes["Signature"],
|
|
62
60
|
};
|
|
@@ -68,21 +66,19 @@ export function getSignedCookies(_a) {
|
|
|
68
66
|
}
|
|
69
67
|
return cookies;
|
|
70
68
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
CloudfrontURLParser.prototype.determineScheme = function (url) {
|
|
75
|
-
var parts = url.split("://");
|
|
69
|
+
class CloudfrontURLParser {
|
|
70
|
+
determineScheme(url) {
|
|
71
|
+
const parts = url.split("://");
|
|
76
72
|
if (parts.length < 2) {
|
|
77
73
|
throw new Error("Invalid URL.");
|
|
78
74
|
}
|
|
79
75
|
return parts[0].replace("*", "");
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
76
|
+
}
|
|
77
|
+
getRtmpUrl(rtmpUrl) {
|
|
78
|
+
const parsed = new URL(rtmpUrl);
|
|
83
79
|
return parsed.pathname.replace(/^\//, "") + parsed.search + parsed.hash;
|
|
84
|
-
}
|
|
85
|
-
|
|
80
|
+
}
|
|
81
|
+
getResource(url) {
|
|
86
82
|
switch (this.determineScheme(url)) {
|
|
87
83
|
case "http":
|
|
88
84
|
case "https":
|
|
@@ -92,20 +88,18 @@ var CloudfrontURLParser = (function () {
|
|
|
92
88
|
default:
|
|
93
89
|
throw new Error("Invalid URI scheme. Scheme must be one of http, https, or rtmp");
|
|
94
90
|
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
function CloudfrontSignBuilder(_a) {
|
|
100
|
-
var privateKey = _a.privateKey, keyPairId = _a.keyPairId;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
class CloudfrontSignBuilder {
|
|
94
|
+
constructor({ privateKey, keyPairId }) {
|
|
101
95
|
this.customPolicy = false;
|
|
102
96
|
this.urlParser = new CloudfrontURLParser();
|
|
103
97
|
this.keyPairId = keyPairId;
|
|
104
98
|
this.privateKey = privateKey;
|
|
105
99
|
this.policy = "";
|
|
106
100
|
}
|
|
107
|
-
|
|
108
|
-
|
|
101
|
+
buildPolicy(args) {
|
|
102
|
+
const policy = {
|
|
109
103
|
Statement: [
|
|
110
104
|
{
|
|
111
105
|
Resource: args.resource,
|
|
@@ -123,15 +117,15 @@ var CloudfrontSignBuilder = (function () {
|
|
|
123
117
|
};
|
|
124
118
|
}
|
|
125
119
|
if (args.ipAddress) {
|
|
126
|
-
|
|
120
|
+
const cidr = this.parseCIDR(args.ipAddress);
|
|
127
121
|
policy.Statement[0].Condition["IpAddress"] = {
|
|
128
122
|
"AWS:SourceIp": cidr,
|
|
129
123
|
};
|
|
130
124
|
}
|
|
131
125
|
return policy;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
|
|
126
|
+
}
|
|
127
|
+
normalizeBase64(str) {
|
|
128
|
+
const replacements = {
|
|
135
129
|
"+": "-",
|
|
136
130
|
"=": "_",
|
|
137
131
|
"/": "~",
|
|
@@ -139,113 +133,111 @@ var CloudfrontSignBuilder = (function () {
|
|
|
139
133
|
return str.replace(/[+=/]/g, function (match) {
|
|
140
134
|
return replacements[match];
|
|
141
135
|
});
|
|
142
|
-
}
|
|
143
|
-
|
|
136
|
+
}
|
|
137
|
+
encodeToBase64(str) {
|
|
144
138
|
return this.normalizeBase64(Buffer.from(str).toString("base64"));
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
139
|
+
}
|
|
140
|
+
validateIP(ipStr) {
|
|
141
|
+
const octets = ipStr.split(".");
|
|
148
142
|
if (octets.length !== 4) {
|
|
149
|
-
throw new Error(
|
|
143
|
+
throw new Error(`IP does not contain four octets.`);
|
|
150
144
|
}
|
|
151
|
-
|
|
152
|
-
|
|
145
|
+
const isValid = octets.every((octet) => {
|
|
146
|
+
const num = Number(octet);
|
|
153
147
|
return Number.isInteger(num) && num >= 0 && num <= 255;
|
|
154
148
|
});
|
|
155
149
|
if (!isValid) {
|
|
156
150
|
throw new Error("invalid IP octets");
|
|
157
151
|
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
152
|
+
}
|
|
153
|
+
validateMask(maskStr) {
|
|
154
|
+
const mask = Number(maskStr);
|
|
155
|
+
const isValid = Number.isInteger(mask) && mask >= 0 && mask <= 32;
|
|
162
156
|
if (!isValid) {
|
|
163
157
|
throw new Error("invalid mask");
|
|
164
158
|
}
|
|
165
|
-
}
|
|
166
|
-
|
|
159
|
+
}
|
|
160
|
+
parseCIDR(cidrStr) {
|
|
167
161
|
try {
|
|
168
|
-
|
|
169
|
-
if (cidrParts.some(
|
|
162
|
+
const cidrParts = cidrStr.split("/");
|
|
163
|
+
if (cidrParts.some((part) => part.length === 0)) {
|
|
170
164
|
throw new Error("missing ip or mask part of CIDR");
|
|
171
165
|
}
|
|
172
166
|
this.validateIP(cidrParts[0]);
|
|
173
|
-
|
|
167
|
+
let mask = "32";
|
|
174
168
|
if (cidrParts.length === 2) {
|
|
175
169
|
this.validateMask(cidrParts[1]);
|
|
176
170
|
mask = cidrParts[1];
|
|
177
171
|
}
|
|
178
|
-
return
|
|
172
|
+
return `${cidrParts[0]}/${mask}`;
|
|
179
173
|
}
|
|
180
174
|
catch (error) {
|
|
181
|
-
|
|
175
|
+
const errMessage = `IP address "${cidrStr}" is invalid`;
|
|
182
176
|
if (error instanceof Error) {
|
|
183
|
-
throw new Error(
|
|
177
|
+
throw new Error(`${errMessage} due to ${error.message}.`);
|
|
184
178
|
}
|
|
185
179
|
else {
|
|
186
|
-
throw new Error(
|
|
180
|
+
throw new Error(`${errMessage}.`);
|
|
187
181
|
}
|
|
188
182
|
}
|
|
189
|
-
}
|
|
190
|
-
|
|
183
|
+
}
|
|
184
|
+
epochTime(date) {
|
|
191
185
|
return Math.round(date.getTime() / 1000);
|
|
192
|
-
}
|
|
193
|
-
|
|
186
|
+
}
|
|
187
|
+
parseDate(date) {
|
|
194
188
|
if (!date) {
|
|
195
189
|
return undefined;
|
|
196
190
|
}
|
|
197
|
-
|
|
191
|
+
const parsedDate = Date.parse(date);
|
|
198
192
|
return isNaN(parsedDate) ? undefined : this.epochTime(new Date(parsedDate));
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
|
|
193
|
+
}
|
|
194
|
+
parseDateWindow(expiration, start) {
|
|
195
|
+
const dateLessThan = this.parseDate(expiration);
|
|
202
196
|
if (!dateLessThan) {
|
|
203
197
|
throw new Error("dateLessThan is invalid. Ensure the date string is compatible with the Date constructor.");
|
|
204
198
|
}
|
|
205
199
|
return {
|
|
206
|
-
dateLessThan
|
|
200
|
+
dateLessThan,
|
|
207
201
|
dateGreaterThan: this.parseDate(start),
|
|
208
202
|
};
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
|
|
203
|
+
}
|
|
204
|
+
signData(data, privateKey) {
|
|
205
|
+
const sign = createSign("RSA-SHA1");
|
|
212
206
|
sign.update(data);
|
|
213
207
|
return sign.sign(privateKey, "base64");
|
|
214
|
-
}
|
|
215
|
-
|
|
208
|
+
}
|
|
209
|
+
signPolicy(policy, privateKey) {
|
|
216
210
|
return this.normalizeBase64(this.signData(policy, privateKey));
|
|
217
|
-
}
|
|
218
|
-
|
|
211
|
+
}
|
|
212
|
+
setCustomPolicy(policy) {
|
|
219
213
|
this.customPolicy = true;
|
|
220
214
|
this.policy = policy;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
var url = _a.url, dateLessThan = _a.dateLessThan, dateGreaterThan = _a.dateGreaterThan, ipAddress = _a.ipAddress;
|
|
215
|
+
}
|
|
216
|
+
setPolicyParameters({ url, dateLessThan, dateGreaterThan, ipAddress, }) {
|
|
224
217
|
if (!url || !dateLessThan) {
|
|
225
218
|
return false;
|
|
226
219
|
}
|
|
227
|
-
|
|
228
|
-
|
|
220
|
+
const resource = this.urlParser.getResource(url);
|
|
221
|
+
const parsedDates = this.parseDateWindow(dateLessThan, dateGreaterThan);
|
|
229
222
|
this.dateLessThan = parsedDates.dateLessThan;
|
|
230
223
|
this.customPolicy = Boolean(parsedDates.dateGreaterThan) || Boolean(ipAddress);
|
|
231
224
|
this.policy = JSON.stringify(this.buildPolicy({
|
|
232
|
-
resource
|
|
233
|
-
ipAddress
|
|
225
|
+
resource,
|
|
226
|
+
ipAddress,
|
|
234
227
|
dateLessThan: parsedDates.dateLessThan,
|
|
235
228
|
dateGreaterThan: parsedDates.dateGreaterThan,
|
|
236
229
|
}));
|
|
237
|
-
}
|
|
238
|
-
|
|
230
|
+
}
|
|
231
|
+
createCloudfrontAttribute() {
|
|
239
232
|
if (!Boolean(this.policy)) {
|
|
240
233
|
throw new Error("Invalid policy");
|
|
241
234
|
}
|
|
242
|
-
|
|
235
|
+
const signature = this.signPolicy(this.policy, this.privateKey);
|
|
243
236
|
return {
|
|
244
237
|
Expires: this.customPolicy ? undefined : this.dateLessThan,
|
|
245
238
|
Policy: this.customPolicy ? this.encodeToBase64(this.policy) : undefined,
|
|
246
239
|
"Key-Pair-Id": this.keyPairId,
|
|
247
240
|
Signature: signature,
|
|
248
241
|
};
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
}());
|
|
242
|
+
}
|
|
243
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/cloudfront-signer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.190.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/url-parser": "3.190.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@tsconfig/recommended": "1.0.1",
|
package/tsconfig.cjs.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.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/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/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/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","730b1dac2be7c2c5d91e93f9cc862fc24bfa4e763a0ab7dfc68c06dfd7c89f26","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","9264ed7cb143ff49879a98a0c8a9b148a59e5509199c54bc3c32807382ffcad8","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","ceef85af282fc67847364a9ab6f2aa84625d04dbe99c49a88273244f16c9795e","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","7560c3242ec7ed01cf7333b19c41fdeb30053acdfac98708073a7e546c96985b","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"68c807d82c45f798eb41283b9fed81c1e10c56d216536462400cfb53d0f7761b","affectsGlobalScope":true},"56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","41b89bd4d1a6681798d4a71a0699055a64a09244dee6a405ff6667be48ab185b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","a413b4e3c078b9fef6053c1246652b09f45d8790012faa3352d7e66e387937cf","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-cjs","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":5,"useUnknownInCatchVariables":false},"fileIdsList":[[128,137,138,139],[137,138,139],[56,57,59,62,64,137,138,139],[56,137,138,139],[56,59,137,138,139],[66,137,138,139],[81,112,137,138,139],[115,117,137,138,139],[114,115,116,137,138,139],[79,81,112,119,120,137,138,139],[80,112,137,138,139],[124,137,138,139],[125,137,138,139],[130,132,137,138,139],[79,104,112,135,136,138,139],[137,138],[137,139],[137,138,139,141,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,144,145,146,147,148,149,150,151,152,153],[137,138,139,142,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,152],[110,137,138,139],[69,137,138,139],[109,110,137,138,139],[70,137,138,139],[71,79,86,95,137,138,139],[71,72,79,86,137,138,139],[74,137,138,139],[75,95,137,138,139],[76,77,79,86,137,138,139],[77,137,138,139],[78,79,137,138,139],[79,137,138,139],[79,80,95,101,137,138,139],[81,86,95,101,137,138,139],[79,80,81,82,86,95,98,101,137,138,139],[81,83,98,101,137,138,139],[111,137,138,139],[79,84,137,138,139],[77,79,86,95,137,138,139],[87,137,138,139],[88,137,138,139],[69,89,137,138,139],[100,137,138,139],[91,137,138,139],[92,137,138,139],[79,93,137,138,139],[93,94,102,104,137,138,139],[79,95,137,138,139],[96,137,138,139],[97,137,138,139],[86,98,137,138,139],[99,137,138,139],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,137,138,139],[86,100,137,138,139],[92,101,137,138,139],[102,137,138,139],[95,103,137,138,139],[104,137,138,139],[108,137,138,139],[79,80,95,104,105,137,138,139],[95,106,137,138,139],[134,137,138,139],[135,137,138,139],[79,81,83,86,95,98,101,106,112,137,138,139],[137,138,139,162],[79,95,112,137,138,139],[130,137,138,139],[127,131,137,138,139],[129,137,138,139],[29,54,137,138,139],[29,53,75,137,138,139],[35,37,38,137,138,139],[35,37,137,138,139],[36,137,138,139],[31,137,138,139],[34,35,37,137,138,139],[30,137,138,139],[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,137,138,139],[32,33,36,137,138,139],[39,137,138,139],[34,36,45,137,138,139],[34,35,137,138,139],[34,137,138,139],[36,41,137,138,139],[52,137,138,139]],"referencedMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"exportedModulesMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"semanticDiagnosticsPerFile":[129,128,65,59,58,57,56,62,60,61,64,63,67,66,113,118,114,117,115,121,122,123,124,125,126,133,137,139,138,116,140,142,143,141,144,145,146,147,148,149,150,151,152,153,154,155,110,69,111,70,71,72,73,74,75,76,77,78,79,80,68,107,81,82,83,112,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,109,100,101,102,103,104,108,105,106,156,157,135,134,158,120,119,159,136,160,161,162,163,164,127,131,132,130,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,55,54,30,31,39,38,40,41,32,42,34,52,33,37,43,44,35,46,47,48,49,50,45,36,51,53]},"version":"4.6.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.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/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/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/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","d8b5076075a4a5231e7a5c4da89b170c5934bb5f242f05f6237ff94c43bece1f","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","9264ed7cb143ff49879a98a0c8a9b148a59e5509199c54bc3c32807382ffcad8","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","ceef85af282fc67847364a9ab6f2aa84625d04dbe99c49a88273244f16c9795e","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","7560c3242ec7ed01cf7333b19c41fdeb30053acdfac98708073a7e546c96985b","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"64e2041831ec7bba635248570d90508f22865bbeaf4ceef49bf0f945faaf7d32","affectsGlobalScope":true},"56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","41b89bd4d1a6681798d4a71a0699055a64a09244dee6a405ff6667be48ab185b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","a413b4e3c078b9fef6053c1246652b09f45d8790012faa3352d7e66e387937cf","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-cjs","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":5,"useUnknownInCatchVariables":false},"fileIdsList":[[128,137,138,139],[137,138,139],[56,57,59,62,64,137,138,139],[56,137,138,139],[56,59,137,138,139],[66,137,138,139],[81,112,137,138,139],[115,117,137,138,139],[114,115,116,137,138,139],[79,81,112,119,120,137,138,139],[80,112,137,138,139],[124,137,138,139],[125,137,138,139],[130,132,137,138,139],[79,104,112,135,136,138,139],[137,138],[137,139],[137,138,139,141,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,144,145,146,147,148,149,150,151,152,153],[137,138,139,142,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,152],[110,137,138,139],[69,137,138,139],[109,110,137,138,139],[70,137,138,139],[71,79,86,95,137,138,139],[71,72,79,86,137,138,139],[74,137,138,139],[75,95,137,138,139],[76,77,79,86,137,138,139],[77,137,138,139],[78,79,137,138,139],[79,137,138,139],[79,80,95,101,137,138,139],[81,86,95,101,137,138,139],[79,80,81,82,86,95,98,101,137,138,139],[81,83,98,101,137,138,139],[111,137,138,139],[79,84,137,138,139],[77,79,86,95,137,138,139],[87,137,138,139],[88,137,138,139],[69,89,137,138,139],[100,137,138,139],[91,137,138,139],[92,137,138,139],[79,93,137,138,139],[93,94,102,104,137,138,139],[79,95,137,138,139],[96,137,138,139],[97,137,138,139],[86,98,137,138,139],[99,137,138,139],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,137,138,139],[86,100,137,138,139],[92,101,137,138,139],[102,137,138,139],[95,103,137,138,139],[104,137,138,139],[108,137,138,139],[79,80,95,104,105,137,138,139],[95,106,137,138,139],[134,137,138,139],[135,137,138,139],[79,81,83,86,95,98,101,106,112,137,138,139],[137,138,139,162],[79,95,112,137,138,139],[130,137,138,139],[127,131,137,138,139],[129,137,138,139],[29,54,137,138,139],[29,53,75,137,138,139],[35,37,38,137,138,139],[35,37,137,138,139],[36,137,138,139],[31,137,138,139],[34,35,37,137,138,139],[30,137,138,139],[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,137,138,139],[32,33,36,137,138,139],[39,137,138,139],[34,36,45,137,138,139],[34,35,137,138,139],[34,137,138,139],[36,41,137,138,139],[52,137,138,139]],"referencedMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"exportedModulesMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"semanticDiagnosticsPerFile":[129,128,65,59,58,57,56,62,60,61,64,63,67,66,113,118,114,117,115,121,122,123,124,125,126,133,137,139,138,116,140,142,143,141,144,145,146,147,148,149,150,151,152,153,154,155,110,69,111,70,71,72,73,74,75,76,77,78,79,80,68,107,81,82,83,112,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,109,100,101,102,103,104,108,105,106,156,157,135,134,158,120,119,159,136,160,161,162,163,164,127,131,132,130,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,55,54,30,31,39,38,40,41,32,42,34,52,33,37,43,44,35,46,47,48,49,50,45,36,51,53]},"version":"4.6.2"}
|
package/tsconfig.es.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.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/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/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/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","730b1dac2be7c2c5d91e93f9cc862fc24bfa4e763a0ab7dfc68c06dfd7c89f26","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","9264ed7cb143ff49879a98a0c8a9b148a59e5509199c54bc3c32807382ffcad8","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","ceef85af282fc67847364a9ab6f2aa84625d04dbe99c49a88273244f16c9795e","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","7560c3242ec7ed01cf7333b19c41fdeb30053acdfac98708073a7e546c96985b","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"68c807d82c45f798eb41283b9fed81c1e10c56d216536462400cfb53d0f7761b","affectsGlobalScope":true},"56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","41b89bd4d1a6681798d4a71a0699055a64a09244dee6a405ff6667be48ab185b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","a413b4e3c078b9fef6053c1246652b09f45d8790012faa3352d7e66e387937cf","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-es","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":1,"useUnknownInCatchVariables":false},"fileIdsList":[[128,137,138,139],[137,138,139],[56,57,59,62,64,137,138,139],[56,137,138,139],[56,59,137,138,139],[66,137,138,139],[81,112,137,138,139],[115,117,137,138,139],[114,115,116,137,138,139],[79,81,112,119,120,137,138,139],[80,112,137,138,139],[124,137,138,139],[125,137,138,139],[130,132,137,138,139],[79,104,112,135,136,138,139],[137,138],[137,139],[137,138,139,141,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,144,145,146,147,148,149,150,151,152,153],[137,138,139,142,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,152],[110,137,138,139],[69,137,138,139],[109,110,137,138,139],[70,137,138,139],[71,79,86,95,137,138,139],[71,72,79,86,137,138,139],[74,137,138,139],[75,95,137,138,139],[76,77,79,86,137,138,139],[77,137,138,139],[78,79,137,138,139],[79,137,138,139],[79,80,95,101,137,138,139],[81,86,95,101,137,138,139],[79,80,81,82,86,95,98,101,137,138,139],[81,83,98,101,137,138,139],[111,137,138,139],[79,84,137,138,139],[77,79,86,95,137,138,139],[87,137,138,139],[88,137,138,139],[69,89,137,138,139],[100,137,138,139],[91,137,138,139],[92,137,138,139],[79,93,137,138,139],[93,94,102,104,137,138,139],[79,95,137,138,139],[96,137,138,139],[97,137,138,139],[86,98,137,138,139],[99,137,138,139],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,137,138,139],[86,100,137,138,139],[92,101,137,138,139],[102,137,138,139],[95,103,137,138,139],[104,137,138,139],[108,137,138,139],[79,80,95,104,105,137,138,139],[95,106,137,138,139],[134,137,138,139],[135,137,138,139],[79,81,83,86,95,98,101,106,112,137,138,139],[137,138,139,162],[79,95,112,137,138,139],[130,137,138,139],[127,131,137,138,139],[129,137,138,139],[29,54,137,138,139],[29,53,75,137,138,139],[35,37,38,137,138,139],[35,37,137,138,139],[36,137,138,139],[31,137,138,139],[34,35,37,137,138,139],[30,137,138,139],[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,137,138,139],[32,33,36,137,138,139],[39,137,138,139],[34,36,45,137,138,139],[34,35,137,138,139],[34,137,138,139],[36,41,137,138,139],[52,137,138,139]],"referencedMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"exportedModulesMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"semanticDiagnosticsPerFile":[129,128,65,59,58,57,56,62,60,61,64,63,67,66,113,118,114,117,115,121,122,123,124,125,126,133,137,139,138,116,140,142,143,141,144,145,146,147,148,149,150,151,152,153,154,155,110,69,111,70,71,72,73,74,75,76,77,78,79,80,68,107,81,82,83,112,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,109,100,101,102,103,104,108,105,106,156,157,135,134,158,120,119,159,136,160,161,162,163,164,127,131,132,130,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,55,54,30,31,39,38,40,41,32,42,34,52,33,37,43,44,35,46,47,48,49,50,45,36,51,53]},"version":"4.6.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.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/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/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/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","d8b5076075a4a5231e7a5c4da89b170c5934bb5f242f05f6237ff94c43bece1f","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","9264ed7cb143ff49879a98a0c8a9b148a59e5509199c54bc3c32807382ffcad8","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","ceef85af282fc67847364a9ab6f2aa84625d04dbe99c49a88273244f16c9795e","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","7560c3242ec7ed01cf7333b19c41fdeb30053acdfac98708073a7e546c96985b","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"64e2041831ec7bba635248570d90508f22865bbeaf4ceef49bf0f945faaf7d32","affectsGlobalScope":true},"56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","41b89bd4d1a6681798d4a71a0699055a64a09244dee6a405ff6667be48ab185b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","a413b4e3c078b9fef6053c1246652b09f45d8790012faa3352d7e66e387937cf","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"outDir":"./dist-es","preserveConstEnums":true,"removeComments":true,"rootDir":"./src","strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[128,137,138,139],[137,138,139],[56,57,59,62,64,137,138,139],[56,137,138,139],[56,59,137,138,139],[66,137,138,139],[81,112,137,138,139],[115,117,137,138,139],[114,115,116,137,138,139],[79,81,112,119,120,137,138,139],[80,112,137,138,139],[124,137,138,139],[125,137,138,139],[130,132,137,138,139],[79,104,112,135,136,138,139],[137,138],[137,139],[137,138,139,141,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,144,145,146,147,148,149,150,151,152,153],[137,138,139,142,143,144,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,145,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,146,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,147,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,148,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,149,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,150,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,151,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,152,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,153],[137,138,139,141,142,143,144,145,146,147,148,149,150,151,152],[110,137,138,139],[69,137,138,139],[109,110,137,138,139],[70,137,138,139],[71,79,86,95,137,138,139],[71,72,79,86,137,138,139],[74,137,138,139],[75,95,137,138,139],[76,77,79,86,137,138,139],[77,137,138,139],[78,79,137,138,139],[79,137,138,139],[79,80,95,101,137,138,139],[81,86,95,101,137,138,139],[79,80,81,82,86,95,98,101,137,138,139],[81,83,98,101,137,138,139],[111,137,138,139],[79,84,137,138,139],[77,79,86,95,137,138,139],[87,137,138,139],[88,137,138,139],[69,89,137,138,139],[100,137,138,139],[91,137,138,139],[92,137,138,139],[79,93,137,138,139],[93,94,102,104,137,138,139],[79,95,137,138,139],[96,137,138,139],[97,137,138,139],[86,98,137,138,139],[99,137,138,139],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,137,138,139],[86,100,137,138,139],[92,101,137,138,139],[102,137,138,139],[95,103,137,138,139],[104,137,138,139],[108,137,138,139],[79,80,95,104,105,137,138,139],[95,106,137,138,139],[134,137,138,139],[135,137,138,139],[79,81,83,86,95,98,101,106,112,137,138,139],[137,138,139,162],[79,95,112,137,138,139],[130,137,138,139],[127,131,137,138,139],[129,137,138,139],[29,54,137,138,139],[29,53,75,137,138,139],[35,37,38,137,138,139],[35,37,137,138,139],[36,137,138,139],[31,137,138,139],[34,35,37,137,138,139],[30,137,138,139],[30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,137,138,139],[32,33,36,137,138,139],[39,137,138,139],[34,36,45,137,138,139],[34,35,137,138,139],[34,137,138,139],[36,41,137,138,139],[52,137,138,139]],"referencedMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"exportedModulesMap":[[129,1],[128,2],[65,3],[59,4],[58,2],[57,4],[56,2],[62,5],[60,4],[61,2],[64,4],[63,2],[67,6],[66,2],[113,7],[118,8],[114,2],[117,9],[115,2],[121,10],[122,11],[123,11],[124,2],[125,12],[126,13],[133,14],[137,15],[139,16],[138,17],[116,2],[140,2],[142,18],[143,19],[141,20],[144,21],[145,22],[146,23],[147,24],[148,25],[149,26],[150,27],[151,28],[152,29],[153,30],[154,2],[155,2],[110,31],[69,32],[111,33],[70,34],[71,35],[72,36],[73,2],[74,37],[75,38],[76,39],[77,40],[78,41],[79,42],[80,43],[68,2],[107,2],[81,44],[82,45],[83,46],[112,47],[84,48],[85,2],[86,49],[87,50],[88,51],[89,52],[90,53],[91,54],[92,55],[93,56],[94,57],[95,58],[96,59],[97,60],[98,61],[99,62],[109,63],[100,64],[101,65],[102,66],[103,67],[104,68],[108,69],[105,70],[106,71],[156,2],[157,2],[135,72],[134,73],[158,2],[120,2],[119,2],[159,2],[136,2],[160,2],[161,74],[162,2],[163,75],[164,76],[127,2],[131,77],[132,78],[130,79],[29,2],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[55,80],[54,81],[30,2],[31,2],[39,82],[38,83],[40,84],[41,2],[32,85],[42,86],[34,87],[52,88],[33,2],[37,89],[43,90],[44,2],[35,2],[46,91],[47,92],[48,93],[49,94],[50,84],[45,2],[36,86],[51,87],[53,95]],"semanticDiagnosticsPerFile":[129,128,65,59,58,57,56,62,60,61,64,63,67,66,113,118,114,117,115,121,122,123,124,125,126,133,137,139,138,116,140,142,143,141,144,145,146,147,148,149,150,151,152,153,154,155,110,69,111,70,71,72,73,74,75,76,77,78,79,80,68,107,81,82,83,112,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,109,100,101,102,103,104,108,105,106,156,157,135,134,158,120,119,159,136,160,161,162,163,164,127,131,132,130,29,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,55,54,30,31,39,38,40,41,32,42,34,52,33,37,43,44,35,46,47,48,49,50,45,36,51,53]},"version":"4.6.2"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.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/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/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/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","730b1dac2be7c2c5d91e93f9cc862fc24bfa4e763a0ab7dfc68c06dfd7c89f26","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","9264ed7cb143ff49879a98a0c8a9b148a59e5509199c54bc3c32807382ffcad8","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","ceef85af282fc67847364a9ab6f2aa84625d04dbe99c49a88273244f16c9795e","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","7560c3242ec7ed01cf7333b19c41fdeb30053acdfac98708073a7e546c96985b","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"68c807d82c45f798eb41283b9fed81c1e10c56d216536462400cfb53d0f7761b","affectsGlobalScope":true},"56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","41b89bd4d1a6681798d4a71a0699055a64a09244dee6a405ff6667be48ab185b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","a413b4e3c078b9fef6053c1246652b09f45d8790012faa3352d7e66e387937cf","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"preserveConstEnums":true,"removeComments":false,"rootDir":"./src","strict":true,"target":1,"useUnknownInCatchVariables":false},"fileIdsList":[[127,136,137,138],[136,137,138],[55,56,58,61,63,136,137,138],[55,136,137,138],[55,58,136,137,138],[65,136,137,138],[80,111,136,137,138],[114,116,136,137,138],[113,114,115,136,137,138],[78,80,111,118,119,136,137,138],[79,111,136,137,138],[123,136,137,138],[124,136,137,138],[129,131,136,137,138],[78,103,111,134,135,137,138],[136,137],[136,138],[136,137,138,140,142,143,144,145,146,147,148,149,150,151,152],[136,137,138,140,141,143,144,145,146,147,148,149,150,151,152],[136,137,138,141,142,143,144,145,146,147,148,149,150,151,152],[136,137,138,140,141,142,144,145,146,147,148,149,150,151,152],[136,137,138,140,141,142,143,145,146,147,148,149,150,151,152],[136,137,138,140,141,142,143,144,146,147,148,149,150,151,152],[136,137,138,140,141,142,143,144,145,147,148,149,150,151,152],[136,137,138,140,141,142,143,144,145,146,148,149,150,151,152],[136,137,138,140,141,142,143,144,145,146,147,149,150,151,152],[136,137,138,140,141,142,143,144,145,146,147,148,150,151,152],[136,137,138,140,141,142,143,144,145,146,147,148,149,151,152],[136,137,138,140,141,142,143,144,145,146,147,148,149,150,152],[136,137,138,140,141,142,143,144,145,146,147,148,149,150,151],[109,136,137,138],[68,136,137,138],[108,109,136,137,138],[69,136,137,138],[70,78,85,94,136,137,138],[70,71,78,85,136,137,138],[73,136,137,138],[74,94,136,137,138],[75,76,78,85,136,137,138],[76,136,137,138],[77,78,136,137,138],[78,136,137,138],[78,79,94,100,136,137,138],[80,85,94,100,136,137,138],[78,79,80,81,85,94,97,100,136,137,138],[80,82,97,100,136,137,138],[110,136,137,138],[78,83,136,137,138],[76,78,85,94,136,137,138],[86,136,137,138],[87,136,137,138],[68,88,136,137,138],[99,136,137,138],[90,136,137,138],[91,136,137,138],[78,92,136,137,138],[92,93,101,103,136,137,138],[78,94,136,137,138],[95,136,137,138],[96,136,137,138],[85,97,136,137,138],[98,136,137,138],[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,136,137,138],[85,99,136,137,138],[91,100,136,137,138],[101,136,137,138],[94,102,136,137,138],[103,136,137,138],[107,136,137,138],[78,79,94,103,104,136,137,138],[94,105,136,137,138],[133,136,137,138],[134,136,137,138],[78,80,82,85,94,97,100,105,111,136,137,138],[136,137,138,161],[78,94,111,136,137,138],[129,136,137,138],[126,130,136,137,138],[128,136,137,138],[53,136,137,138],[52,74,136,137,138],[34,36,37,136,137,138],[34,36,136,137,138],[35,136,137,138],[30,136,137,138],[33,34,36,136,137,138],[29,136,137,138],[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,136,137,138],[31,32,35,136,137,138],[38,136,137,138],[33,35,44,136,137,138],[33,34,136,137,138],[33,136,137,138],[35,40,136,137,138],[51,136,137,138]],"referencedMap":[[128,1],[127,2],[64,3],[58,4],[57,2],[56,4],[55,2],[61,5],[59,4],[60,2],[63,4],[62,2],[66,6],[65,2],[112,7],[117,8],[113,2],[116,9],[114,2],[120,10],[121,11],[122,11],[123,2],[124,12],[125,13],[132,14],[136,15],[138,16],[137,17],[115,2],[139,2],[141,18],[142,19],[140,20],[143,21],[144,22],[145,23],[146,24],[147,25],[148,26],[149,27],[150,28],[151,29],[152,30],[153,2],[154,2],[109,31],[68,32],[110,33],[69,34],[70,35],[71,36],[72,2],[73,37],[74,38],[75,39],[76,40],[77,41],[78,42],[79,43],[67,2],[106,2],[80,44],[81,45],[82,46],[111,47],[83,48],[84,2],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[93,57],[94,58],[95,59],[96,60],[97,61],[98,62],[108,63],[99,64],[100,65],[101,66],[102,67],[103,68],[107,69],[104,70],[105,71],[155,2],[156,2],[134,72],[133,73],[157,2],[119,2],[118,2],[158,2],[135,2],[159,2],[160,74],[161,2],[162,75],[163,76],[126,2],[130,77],[131,78],[129,79],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[54,80],[53,81],[29,2],[30,2],[38,82],[37,83],[39,84],[40,2],[31,85],[41,86],[33,87],[51,88],[32,2],[36,89],[42,90],[43,2],[34,2],[45,91],[46,92],[47,93],[48,94],[49,84],[44,2],[35,86],[50,87],[52,95]],"exportedModulesMap":[[128,1],[127,2],[64,3],[58,4],[57,2],[56,4],[55,2],[61,5],[59,4],[60,2],[63,4],[62,2],[66,6],[65,2],[112,7],[117,8],[113,2],[116,9],[114,2],[120,10],[121,11],[122,11],[123,2],[124,12],[125,13],[132,14],[136,15],[138,16],[137,17],[115,2],[139,2],[141,18],[142,19],[140,20],[143,21],[144,22],[145,23],[146,24],[147,25],[148,26],[149,27],[150,28],[151,29],[152,30],[153,2],[154,2],[109,31],[68,32],[110,33],[69,34],[70,35],[71,36],[72,2],[73,37],[74,38],[75,39],[76,40],[77,41],[78,42],[79,43],[67,2],[106,2],[80,44],[81,45],[82,46],[111,47],[83,48],[84,2],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[93,57],[94,58],[95,59],[96,60],[97,61],[98,62],[108,63],[99,64],[100,65],[101,66],[102,67],[103,68],[107,69],[104,70],[105,71],[155,2],[156,2],[134,72],[133,73],[157,2],[119,2],[118,2],[158,2],[135,2],[159,2],[160,74],[161,2],[162,75],[163,76],[126,2],[130,77],[131,78],[129,79],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[54,80],[53,81],[29,2],[30,2],[38,82],[37,83],[39,84],[40,2],[31,85],[41,86],[33,87],[51,88],[32,2],[36,89],[42,90],[43,2],[34,2],[45,91],[46,92],[47,93],[48,94],[49,84],[44,2],[35,86],[50,87],[52,95]],"semanticDiagnosticsPerFile":[128,127,64,58,57,56,55,61,59,60,63,62,66,65,112,117,113,116,114,120,121,122,123,124,125,132,136,138,137,115,139,141,142,140,143,144,145,146,147,148,149,150,151,152,153,154,109,68,110,69,70,71,72,73,74,75,76,77,78,79,67,106,80,81,82,111,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,108,99,100,101,102,103,107,104,105,155,156,134,133,157,119,118,158,135,159,160,161,162,163,126,130,131,129,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,54,53,29,30,38,37,39,40,31,41,33,51,32,36,42,43,34,45,46,47,48,49,44,35,50,52]},"version":"4.6.2"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../types/dist-types/abort.d.ts","../types/dist-types/auth.d.ts","../types/dist-types/endpoint.d.ts","../types/dist-types/logger.d.ts","../types/dist-types/http.d.ts","../types/dist-types/response.d.ts","../types/dist-types/util.d.ts","../types/dist-types/middleware.d.ts","../types/dist-types/command.d.ts","../types/dist-types/client.d.ts","../types/dist-types/credentials.d.ts","../types/dist-types/crypto.d.ts","../types/dist-types/eventStream.d.ts","../types/dist-types/pagination.d.ts","../types/dist-types/profile.d.ts","../types/dist-types/transfer.d.ts","../types/dist-types/serde.d.ts","../types/dist-types/shapes.d.ts","../types/dist-types/signature.d.ts","../types/dist-types/stream.d.ts","../types/dist-types/token.d.ts","../types/dist-types/waiter.d.ts","../types/dist-types/index.d.ts","../url-parser/dist-types/index.d.ts","./src/sign.ts","./src/index.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/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.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/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/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/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"4f1034eac6404cb69bedb8bb04cf246871d1aaebbb99d5617be54f54323464c7","d8b5076075a4a5231e7a5c4da89b170c5934bb5f242f05f6237ff94c43bece1f","1349f629828b11b27b2c17377c6e7146ec0cd2a2bd1acd91e2f4e8d08e885df5","7cd63564034b5fbd0bd9a2853034440d9f902992d5245cb1c6fb0f3c8b9b1236","9264ed7cb143ff49879a98a0c8a9b148a59e5509199c54bc3c32807382ffcad8","2e04271499caec54dea75e7061de06b2549efbe1d652b9bdab2f74fd2572f61f","98f3adb0f3ecc1ba4ddbce13c935529e2ce47d49c9d8150fb43088d7c9b7ec1b","ceef85af282fc67847364a9ab6f2aa84625d04dbe99c49a88273244f16c9795e","a9367ec48d3b67800c69c890e616337935df67caad5bff99383949af561042a8","5c1a8d6754a7cceee2135728e8ce6a4f984966a2d16ff1cbed879f7527d55864","7560c3242ec7ed01cf7333b19c41fdeb30053acdfac98708073a7e546c96985b","5a7bb8afd0a22b7754275793f5ca5aeea379a2aad6153a6d68af49a60a899f69","755faacced24a8b40622b21a633ebe9b9a8d2819c3a7ebad49581dc691cccb18","1b5cdbebc6c8ba40a1f42a77862f5351335fbff405d80ee2294fccc2b4a94524","80a4392b91f32e0c71cb80f01b7061af617861326e56fe9019a595525a8972c6","b14456a54e15ce24ff9e5ad3b70675b104a36eb35886e3ffaae614292c0908c4",{"version":"64e2041831ec7bba635248570d90508f22865bbeaf4ceef49bf0f945faaf7d32","affectsGlobalScope":true},"56ff5ced4cc63a5d48e5a85a4172422ca4501a8f0ef4dee24c383eadd99f0d8f","8a6c15bfa2a0a9e68005a53fb71b60f3769af0da81001b95e4861310e260b788","e1c3e03bea46253a244d88838f0575b242c3c91145c2291aafa3f3ae2ba38ecc","41b89bd4d1a6681798d4a71a0699055a64a09244dee6a405ff6667be48ab185b","aaffeca0d82a3d862c5186af3ca707801e45cc8b2e7d31e430eb715648ffa839","a413b4e3c078b9fef6053c1246652b09f45d8790012faa3352d7e66e387937cf","be1692ad8c4f71e961e22fc8c340f68c2e3d2b4d9ce1afbac49b0d91a159b8da","a35a5f637f260a51247dd95103c976ffb2cfa0002f2f6e1be6465c7b67027b40","0efa2a0e043f18e3ecda6aa1615a9209e6d44ee9b1adb46cbc225b3e5b602c4a","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",{"version":"e9cf450600c496a87ab96d288157b79be6c193e8623bd93553d5d64755940dea","affectsGlobalScope":true},{"version":"c8a2f72f046b5efb790cc37cfe79dcf11ce8e35e7e7d9430e10e53e0aa05c7a2","affectsGlobalScope":true},{"version":"f7be6b47e03c43fa3ad1224b4fd995f3fd35bb29f0c2da5843c9dc04f4162fb3","affectsGlobalScope":true},"0829c48316ebcd238419d1ba2f142c866fe064a2452b449197dc85a9f43a3612","e63d5487b6d47f8abcbfdc3af9450d56118041805dd043febd249af0502dc9b1","5f505b075956d1c7db95d14e2e7a27d4e4a9d1ffc34b83b8273c51b074d575bd","458d55b08da524f900192dafb5837fcc2471cb59c0c149eea4754c180f943473","65409a1cc0ce6d0e4bc9a4dfd35e7df27b8b2646c9055230fdbb03f694b0cc88","e9339a66a8c672260b9c6b727f6d818c42a8d13bade07dfaf907103928e3c456","51d9197446e865a6919a2f217f4d0ad19f77483e5c7f2ebc520de4dc416dc5a3","b39ae9f0d9d0bdcde86891b047ac912602a59fa188c1d2c4bc201fc7c86cfaa9","f8a7a6d7af6267022984c5604ec31c4539fea5cb749e63ff3a0cf8a42fd19603","6570493ff2552919da1e6480f20d0b623b8007343a777922fca7788b6ce85ea1","d42d0bfd355a4f9f247789676137aec627d0b23122452c388a6c1a83105ae811","5efce49fe6c5e6c7211f4cfb93724adc1cf5783c63d608dca8cb61bfcbee29e6","bb05e8566a80f6e42df974e7523744b0af66aa9fafc721022156b202276c480e","9771ae64c7390ee98639ac79e9fb37b87a17de52b4bb705d48c9fc67af429e64","1939c52bd6e3fe0c5beacd7f5762f9847e86861059685fbdf471bd8afaf87944","d4fa2c2de99b1f4ff83aba4732c33fff918bf5869c04674aa2bfe927adfbd386","9cd5d57333119af9861227e2415a944d23ae7fa67706ac60a4c9a5cfde0a5a05","cf36f4557f363a203e39329aba07cc2f916ae181b4f71c61814db2e9ca6ca30c","b0d1073a8fbdd7b36fd048d82b1f148ce161ed54569a4b4b43007733ee643fff","311f6a6b6c05d334c29eb795d765bfbb596bb43a78fcb72bc23a6121eefb3924","b76f9cfe8fdfe10bb5ab1b540ea866771b89bb0e0acafbe119c9c8cbe398c092",{"version":"7e56a8722b9aeae9496e1278539f1b7da4651614b487346e225beba1c7b29fb5","affectsGlobalScope":true},"a7b43c69f9602d198825e403ee34e5d64f83c48b391b2897e8c0e6f72bca35f8","c567c7d3038a689bd3274285c3a421eaabc3289d38e8441e686a91db97a3d663","ae0784437911149dabe5cd245e5858305ebf2c30d44a80a037aa990b8500c5f3","133c3fe00db1cce01ae605753f88e29aa707c9a22c5f25c48d9d6e2ee6dab0c7","fe7b61b633d3c7ec4ebd8039f40e650adbe7ce872239de15da90d2452849c060","05af2a124f5a9113e7503539a3f1e1c72e92d9c756a2e5ad2e5afab11e0325d7","2f9c94d2805d249de1ed836937ce1c62dd051bae445661e62ecf238b69893b29","c1e031196368cb57b219684032865182384fcd3d60027783a42449f6e0a580d1","0b7733d83619ac4e3963e2a9f7c75dc1e9af6850cb2354c9554977813092c10a","3ce933f0c3955f67f67eb7d6b5c83c2c54a18472c1d6f2bb651e51dd40c84837","911690e5b1cdb5516785d9f811b5f9679fae1a2a1df5fad1f001e8d167c7fd98","bd180a2d4ada8a0e92ad33333933e2c96646ea94837bf80f68ec7f95e79b5e12","121cfafda904699b1abc90b7894128a78692a877380d70a9eca2e2b79207076a","8ef3d66d40dd2b5332b4e84bf591219a04d41a7fdb5237d470f7b2002557e427","e959c2855e83468c9b9f2bb73860f718dd80cc82a6d9b8793b81dedf7b1aa249","ce67e3dcf0f09888d0059fc61017ea22a7e5ac9112c727159fbff7937498e8dd",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"2580346168c485710cca0ae724e081c715dafaba9ee1f735aceecc2432427027","483b37cab381fe1a5c118f86ac931aebc4e1ad76f8867dc60c0f10c5c6a9305c","8ea1394bb5549f22e31c1896fb14d943185b72b14db2f39c8fc00e64e8b67361","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","23dca7e2d421cdf16f12144497b3da31302dfbe88d648eff16bf37944483f3bd","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","2d474dfb84cd28ea43f27fe684da8c00382cbd40cee45e1dad4e9f41f6c437b6","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"5171627120eeb3a7e8afb8ed04ea9be7f0b53ba09bb1fc95172483e0fbb0740c","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","7980bf9d2972585cdf76b5a72105f7817be0723ccb2256090f6335f45b462abe","301d7466eb591139c7d456958f732153b3400f3243f68d3321956b43a64769e9","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2",{"version":"2abad7477cf6761b55c18bea4c21b5a5dcf319748c13696df3736b35f8ac149e","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"preserveConstEnums":true,"removeComments":false,"rootDir":"./src","strict":true,"target":1,"useUnknownInCatchVariables":false},"fileIdsList":[[127,136,137,138],[136,137,138],[55,56,58,61,63,136,137,138],[55,136,137,138],[55,58,136,137,138],[65,136,137,138],[80,111,136,137,138],[114,116,136,137,138],[113,114,115,136,137,138],[78,80,111,118,119,136,137,138],[79,111,136,137,138],[123,136,137,138],[124,136,137,138],[129,131,136,137,138],[78,103,111,134,135,137,138],[136,137],[136,138],[136,137,138,140,142,143,144,145,146,147,148,149,150,151,152],[136,137,138,140,141,143,144,145,146,147,148,149,150,151,152],[136,137,138,141,142,143,144,145,146,147,148,149,150,151,152],[136,137,138,140,141,142,144,145,146,147,148,149,150,151,152],[136,137,138,140,141,142,143,145,146,147,148,149,150,151,152],[136,137,138,140,141,142,143,144,146,147,148,149,150,151,152],[136,137,138,140,141,142,143,144,145,147,148,149,150,151,152],[136,137,138,140,141,142,143,144,145,146,148,149,150,151,152],[136,137,138,140,141,142,143,144,145,146,147,149,150,151,152],[136,137,138,140,141,142,143,144,145,146,147,148,150,151,152],[136,137,138,140,141,142,143,144,145,146,147,148,149,151,152],[136,137,138,140,141,142,143,144,145,146,147,148,149,150,152],[136,137,138,140,141,142,143,144,145,146,147,148,149,150,151],[109,136,137,138],[68,136,137,138],[108,109,136,137,138],[69,136,137,138],[70,78,85,94,136,137,138],[70,71,78,85,136,137,138],[73,136,137,138],[74,94,136,137,138],[75,76,78,85,136,137,138],[76,136,137,138],[77,78,136,137,138],[78,136,137,138],[78,79,94,100,136,137,138],[80,85,94,100,136,137,138],[78,79,80,81,85,94,97,100,136,137,138],[80,82,97,100,136,137,138],[110,136,137,138],[78,83,136,137,138],[76,78,85,94,136,137,138],[86,136,137,138],[87,136,137,138],[68,88,136,137,138],[99,136,137,138],[90,136,137,138],[91,136,137,138],[78,92,136,137,138],[92,93,101,103,136,137,138],[78,94,136,137,138],[95,136,137,138],[96,136,137,138],[85,97,136,137,138],[98,136,137,138],[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,136,137,138],[85,99,136,137,138],[91,100,136,137,138],[101,136,137,138],[94,102,136,137,138],[103,136,137,138],[107,136,137,138],[78,79,94,103,104,136,137,138],[94,105,136,137,138],[133,136,137,138],[134,136,137,138],[78,80,82,85,94,97,100,105,111,136,137,138],[136,137,138,161],[78,94,111,136,137,138],[129,136,137,138],[126,130,136,137,138],[128,136,137,138],[53,136,137,138],[52,74,136,137,138],[34,36,37,136,137,138],[34,36,136,137,138],[35,136,137,138],[30,136,137,138],[33,34,36,136,137,138],[29,136,137,138],[29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,136,137,138],[31,32,35,136,137,138],[38,136,137,138],[33,35,44,136,137,138],[33,34,136,137,138],[33,136,137,138],[35,40,136,137,138],[51,136,137,138]],"referencedMap":[[128,1],[127,2],[64,3],[58,4],[57,2],[56,4],[55,2],[61,5],[59,4],[60,2],[63,4],[62,2],[66,6],[65,2],[112,7],[117,8],[113,2],[116,9],[114,2],[120,10],[121,11],[122,11],[123,2],[124,12],[125,13],[132,14],[136,15],[138,16],[137,17],[115,2],[139,2],[141,18],[142,19],[140,20],[143,21],[144,22],[145,23],[146,24],[147,25],[148,26],[149,27],[150,28],[151,29],[152,30],[153,2],[154,2],[109,31],[68,32],[110,33],[69,34],[70,35],[71,36],[72,2],[73,37],[74,38],[75,39],[76,40],[77,41],[78,42],[79,43],[67,2],[106,2],[80,44],[81,45],[82,46],[111,47],[83,48],[84,2],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[93,57],[94,58],[95,59],[96,60],[97,61],[98,62],[108,63],[99,64],[100,65],[101,66],[102,67],[103,68],[107,69],[104,70],[105,71],[155,2],[156,2],[134,72],[133,73],[157,2],[119,2],[118,2],[158,2],[135,2],[159,2],[160,74],[161,2],[162,75],[163,76],[126,2],[130,77],[131,78],[129,79],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[54,80],[53,81],[29,2],[30,2],[38,82],[37,83],[39,84],[40,2],[31,85],[41,86],[33,87],[51,88],[32,2],[36,89],[42,90],[43,2],[34,2],[45,91],[46,92],[47,93],[48,94],[49,84],[44,2],[35,86],[50,87],[52,95]],"exportedModulesMap":[[128,1],[127,2],[64,3],[58,4],[57,2],[56,4],[55,2],[61,5],[59,4],[60,2],[63,4],[62,2],[66,6],[65,2],[112,7],[117,8],[113,2],[116,9],[114,2],[120,10],[121,11],[122,11],[123,2],[124,12],[125,13],[132,14],[136,15],[138,16],[137,17],[115,2],[139,2],[141,18],[142,19],[140,20],[143,21],[144,22],[145,23],[146,24],[147,25],[148,26],[149,27],[150,28],[151,29],[152,30],[153,2],[154,2],[109,31],[68,32],[110,33],[69,34],[70,35],[71,36],[72,2],[73,37],[74,38],[75,39],[76,40],[77,41],[78,42],[79,43],[67,2],[106,2],[80,44],[81,45],[82,46],[111,47],[83,48],[84,2],[85,49],[86,50],[87,51],[88,52],[89,53],[90,54],[91,55],[92,56],[93,57],[94,58],[95,59],[96,60],[97,61],[98,62],[108,63],[99,64],[100,65],[101,66],[102,67],[103,68],[107,69],[104,70],[105,71],[155,2],[156,2],[134,72],[133,73],[157,2],[119,2],[118,2],[158,2],[135,2],[159,2],[160,74],[161,2],[162,75],[163,76],[126,2],[130,77],[131,78],[129,79],[6,2],[8,2],[7,2],[2,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[3,2],[4,2],[20,2],[17,2],[18,2],[19,2],[21,2],[22,2],[23,2],[5,2],[24,2],[25,2],[26,2],[27,2],[1,2],[28,2],[54,80],[53,81],[29,2],[30,2],[38,82],[37,83],[39,84],[40,2],[31,85],[41,86],[33,87],[51,88],[32,2],[36,89],[42,90],[43,2],[34,2],[45,91],[46,92],[47,93],[48,94],[49,84],[44,2],[35,86],[50,87],[52,95]],"semanticDiagnosticsPerFile":[128,127,64,58,57,56,55,61,59,60,63,62,66,65,112,117,113,116,114,120,121,122,123,124,125,132,136,138,137,115,139,141,142,140,143,144,145,146,147,148,149,150,151,152,153,154,109,68,110,69,70,71,72,73,74,75,76,77,78,79,67,106,80,81,82,111,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,108,99,100,101,102,103,107,104,105,155,156,134,133,157,119,118,158,135,159,160,161,162,163,126,130,131,129,6,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,54,53,29,30,38,37,39,40,31,41,33,51,32,36,42,43,34,45,46,47,48,49,44,35,50,52]},"version":"4.6.2"}
|